@deepseek-ai/dsh-client-web 0.1.2-alpha.2 → 0.1.2-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.i18n.yaml CHANGED
@@ -2,5 +2,5 @@
2
2
  # side as of the last confirmed-consistent state. Both languages carry equal authority;
3
3
  # after editing either side, bring the other along and re-record with:
4
4
  # pnpm run verify-translation-pairing --write packages/client/web/README.md
5
- README.md: c505698413b29aebe5c91d05311305c36bd7949a
6
- README.zh.md: 176679338c0e824afe917b834293ceea0fb392a3
5
+ README.md: e99c83af3a0226ff4091509c300bd8e7d085a25a
6
+ README.zh.md: 9a15ca0df65ac7fffe78f5fed49dd08281260b2b
package/README.md CHANGED
@@ -121,3 +121,5 @@ These limits define what the boot kernel does not support. They are current pack
121
121
  None.
122
122
 
123
123
  </details>
124
+
125
+ **Runtime invariant:** No companion is published. The vite entry shell — boot glue and module-table seeding with no cordis events and no cross-plugin mutable state; the boot chain (loading page → settled → one-flip UI) is asserted by the web smoke e2e against the real carrier.
package/README.zh.md CHANGED
@@ -121,3 +121,5 @@ kind: "package-library"
121
121
  无。
122
122
 
123
123
  </details>
124
+
125
+ **运行时不变式:** 不发布伴生入口。这是 Vite entry shell,只负责 boot glue 与 module-table seeding,不发出 Cordis 事件或持有跨插件可变状态;boot chain 由真实 carrier 的 web smoke e2e 覆盖。
@@ -49,6 +49,7 @@
49
49
  width: 20px;
50
50
  height: 20px;
51
51
  border-radius: 50%;
52
+ corner-shape: round;
52
53
  border: 2px solid var(--dsw-alias-border-l2, var(--dsh-boot-border));
53
54
  animation: spin 0.8s linear infinite;
54
55
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-client-web",
3
3
  "description": "Web boot kernel: static module table, Cordis loader, framework-free boot page, and UI-renderer handoff",
4
- "version": "0.1.2-alpha.2",
4
+ "version": "0.1.2-alpha.4",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -18,10 +18,6 @@
18
18
  "types": "./lib/types/index.d.ts",
19
19
  "default": "./lib/index.js"
20
20
  },
21
- "./invariant": {
22
- "types": "./lib/types/invariant.d.ts",
23
- "default": "./lib/invariant.js"
24
- },
25
21
  "./src/*": "./src/*",
26
22
  "./package.json": "./package.json"
27
23
  },
@@ -33,12 +29,11 @@
33
29
  "react-dom": "^18.2.0",
34
30
  "typescript": "^6.0.3",
35
31
  "@deepseek-ai/cordis-plugin-loader": "^1.0.3",
36
- "@deepseek-ai/dsh-client-modules": "^0.1.2-alpha.2",
37
- "@deepseek-ai/dsh-client-store": "^0.1.2-alpha.2",
38
- "@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.2",
39
- "@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-alpha.2",
40
- "@deepseek-ai/dsh-client-ui-slots": "^0.1.2-alpha.2",
41
- "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.2",
32
+ "@deepseek-ai/dsh-client-modules": "^0.1.2-alpha.4",
33
+ "@deepseek-ai/dsh-client-store": "^0.1.2-alpha.4",
34
+ "@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-alpha.4",
35
+ "@deepseek-ai/dsh-client-ui-slots": "^0.1.2-alpha.4",
36
+ "@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.4",
42
37
  "@deepseek-ai/cordis": "^4.0.2"
43
38
  },
44
39
  "peerDependencies": {
@@ -46,7 +41,6 @@
46
41
  },
47
42
  "files": [
48
43
  "lib/index.js",
49
- "lib/invariant.js",
50
44
  "lib/**/*.css",
51
45
  "lib/types/**/*.d.ts"
52
46
  ]
package/lib/invariant.js DELETED
@@ -1,27 +0,0 @@
1
- //#region lib/types/invariant.js
2
- /**
3
- * Package-owned invariant companion for `@deepseek-ai/dsh-client-web`.
4
- * @module @deepseek-ai/dsh-client-web/invariant
5
- */
6
- const PACKAGE_NAME = "@deepseek-ai/dsh-client-web";
7
- /** Cordis companion plugin name. */
8
- const name = "client-web-invariant";
9
- /** Service required before the companion can reserve package ownership. */
10
- const inject = ["invariants"];
11
- /**
12
- * No runtime invariant: the vite entry shell — boot glue and module-table
13
- * seeding with no cordis events and no cross-plugin mutable state; the boot
14
- * chain (loading page → settled → one-flip UI) is asserted by the web smoke
15
- * e2e against the real carrier.
16
- */
17
- const install = () => {};
18
- /**
19
- * Register this package's invariant companion.
20
- * @param ctx - Cordis context carrying the invariant service.
21
- * @returns the installed registration's disposer after setup succeeds.
22
- */
23
- const apply = (ctx) => Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
24
- //#endregion
25
- export { apply, inject, name };
26
-
27
- //# sourceMappingURL=invariant.js.map
@@ -1,16 +0,0 @@
1
- /**
2
- * Package-owned invariant companion for `@deepseek-ai/dsh-client-web`.
3
- * @module @deepseek-ai/dsh-client-web/invariant
4
- */
5
- import type { Context } from '@deepseek-ai/cordis';
6
- /** Cordis companion plugin name. */
7
- export declare const name = "client-web-invariant";
8
- /** Service required before the companion can reserve package ownership. */
9
- export declare const inject: string[];
10
- /**
11
- * Register this package's invariant companion.
12
- * @param ctx - Cordis context carrying the invariant service.
13
- * @returns the installed registration's disposer after setup succeeds.
14
- */
15
- export declare const apply: (ctx: Context) => Promise<() => void>;
16
- //# sourceMappingURL=invariant.d.ts.map