Sign In

@ultimat3/admin

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ultimat3/admin - npm Package Compare versions

Comparing version
6.0.0
to
7.0.0
+16
-16
package.json
{
"name": "@ultimat3/admin",
"version": "6.0.0",
"version": "7.0.0",
"description": "Two dashboards: the /_x framework dev panels and the generated, AI-first app admin",

@@ -35,18 +35,18 @@ "license": "MIT",

"dependencies": {
"@ultimat3/action": "6.0.0",
"@ultimat3/ai": "6.0.0",
"@ultimat3/cache": "6.0.0",
"@ultimat3/core": "6.0.0",
"@ultimat3/db": "6.0.0",
"@ultimat3/entity": "6.0.0",
"@ultimat3/i18n": "6.0.0",
"@ultimat3/jobs": "6.0.0",
"@ultimat3/mcp": "6.0.0",
"@ultimat3/money": "6.0.0",
"@ultimat3/policy": "6.0.0",
"@ultimat3/query": "6.0.0",
"@ultimat3/render": "6.0.0",
"@ultimat3/schema": "6.0.0",
"@ultimat3/ui": "6.0.0"
"@ultimat3/action": "7.0.0",
"@ultimat3/ai": "7.0.0",
"@ultimat3/cache": "7.0.0",
"@ultimat3/core": "7.0.0",
"@ultimat3/db": "7.0.0",
"@ultimat3/entity": "7.0.0",
"@ultimat3/i18n": "7.0.0",
"@ultimat3/jobs": "7.0.0",
"@ultimat3/mcp": "7.0.0",
"@ultimat3/money": "7.0.0",
"@ultimat3/policy": "7.0.0",
"@ultimat3/query": "7.0.0",
"@ultimat3/render": "7.0.0",
"@ultimat3/schema": "7.0.0",
"@ultimat3/ui": "7.0.0"
}
}

@@ -53,5 +53,7 @@ // The one bridge from the admin's route table to @ultimat3/render, and the one place a policy

// generated view served an empty `<div id="x-root">`. `ssr` renders the same rows behind the
// same guard, and the interactive part of a screen arrives as an `island({ src })`, budgeted
// in real bytes. `hydrate: 'never'` follows from that: an admin view is a pure function of
// its props (no `createSignal`, no local state), so the page level has nothing to hydrate.
// same guard, once per request, and `hydrate: 'never'` means the screen ships no JS at all:
// an admin view is a pure function of its props (no `createSignal`, no local state), so
// there is nothing to hydrate. `never` is a REFUSAL and not just a default — an `island()`
// rendered on this route throws `X_ISLAND_NOT_HYDRATED` (`@ultimat3/render`'s
// `island-collector.ts`), and no admin module declares one.
render: 'ssr',

@@ -58,0 +60,0 @@ offline: 'network-only',