@prettier-ai/dsh-client-ui-reference 0.1.2-alpha.3 → 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/ui-reference/README.md
5
- README.md: 1f82f4bb30f2ad5d194a70279f9e80885d6a048e
6
- README.zh.md: 03a79ec4ff34431a63d8a7b0de115e3ec63b9392
5
+ README.md: ef836af60febd0519acab61390893115c064347b
6
+ README.zh.md: 85c3a003c51a2fae1f5e678879f9eabe9b5287c6
package/README.md CHANGED
@@ -100,3 +100,5 @@ These limits define when the reference source cannot help; they are current pack
100
100
  None.
101
101
 
102
102
  </details>
103
+
104
+ **Runtime invariant:** No companion is published. A single slash-source registration whose disposal is proven by the HMR-safety spec — it emits no cordis events and owns no cross-plugin mutable state.
package/README.zh.md CHANGED
@@ -100,3 +100,5 @@ kind: "package-reference"
100
100
  无。
101
101
 
102
102
  </details>
103
+
104
+ **运行时不变式:** 不发布伴生入口。插件只注册一个 slash source,HMR 测试覆盖释放;它不发出 Cordis 事件,也不持有跨插件可变状态。
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@prettier-ai/dsh-client-ui-reference",
3
3
  "description": "Unified Web @file and @session reference source",
4
- "version": "0.1.2-alpha.3",
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
  "./client": {
26
22
  "types": "./lib/types/client/index.d.ts",
27
23
  "default": "./lib/client.js"
@@ -46,24 +42,22 @@
46
42
  "@prettier-ai/cordis": "^4.0.2"
47
43
  },
48
44
  "devDependencies": {
49
- "@prettier-ai/dsh-api-remotes": "^0.1.2-alpha.3",
50
- "@prettier-ai/dsh-api-session-controller": "^0.1.2-alpha.3",
51
- "@prettier-ai/dsh-client-connection": "^0.1.2-alpha.3",
52
- "@prettier-ai/dsh-client-locale": "^0.1.2-alpha.3",
53
- "@prettier-ai/dsh-client-test-runtime": "^0.1.2-alpha.3",
54
- "@prettier-ai/dsh-client-ui-input-trigger": "^0.1.2-alpha.3",
55
- "@prettier-ai/dsh-client-ui-primitives": "^0.1.2-alpha.3",
56
- "@prettier-ai/dsh-client-ui-slots": "^0.1.2-alpha.3",
57
- "@prettier-ai/dsh-file-reference": "^0.1.2-alpha.3",
58
- "@prettier-ai/dsh-invariants": "^0.1.2-alpha.3",
59
- "@prettier-ai/dsh-session-reference": "^0.1.2-alpha.3",
60
- "@prettier-ai/dsh-typert-protocol": "^0.1.2-alpha.3",
61
- "@prettier-ai/dsh-util-workspace-path": "^0.1.2-alpha.3",
62
- "@prettier-ai/cordis": "^4.0.2"
45
+ "@prettier-ai/dsh-api-remotes": "^0.1.2-alpha.4",
46
+ "@prettier-ai/dsh-client-connection": "^0.1.2-alpha.4",
47
+ "@prettier-ai/dsh-client-locale": "^0.1.2-alpha.4",
48
+ "@prettier-ai/dsh-api-session-controller": "^0.1.2-alpha.4",
49
+ "@prettier-ai/dsh-client-test-runtime": "^0.1.2-alpha.4",
50
+ "@prettier-ai/dsh-client-ui-input-trigger": "^0.1.2-alpha.4",
51
+ "@prettier-ai/dsh-client-ui-slots": "^0.1.2-alpha.4",
52
+ "@prettier-ai/dsh-file-reference": "^0.1.2-alpha.4",
53
+ "@prettier-ai/dsh-client-ui-primitives": "^0.1.2-alpha.4",
54
+ "@prettier-ai/dsh-session-reference": "^0.1.2-alpha.4",
55
+ "@prettier-ai/dsh-util-workspace-path": "^0.1.2-alpha.4",
56
+ "@prettier-ai/cordis": "^4.0.2",
57
+ "@prettier-ai/dsh-typert-protocol": "^0.1.2-alpha.4"
63
58
  },
64
59
  "files": [
65
60
  "lib/index.js",
66
- "lib/invariant.js",
67
61
  "lib/client.js",
68
62
  "lib/types/**/*.d.ts"
69
63
  ],
package/lib/invariant.js DELETED
@@ -1,24 +0,0 @@
1
- //#region lib/types/invariant.js
2
- /**
3
- * Package-owned invariant companion for `@prettier-ai/dsh-client-ui-reference`.
4
- * @module @prettier-ai/dsh-client-ui-reference/invariant
5
- */
6
- const PACKAGE_NAME = "@prettier-ai/dsh-client-ui-reference";
7
- /** Cordis companion plugin name. */
8
- const name = "client-ui-reference-invariant";
9
- /** Service required before the companion can reserve package ownership. */
10
- const inject = ["invariants"];
11
- /**
12
- * No runtime invariant: a single slash-source registration whose disposal is
13
- * proven by the HMR-safety spec — it emits no cordis events and owns no
14
- * cross-plugin mutable state.
15
- */
16
- const install = () => {};
17
- /**
18
- * Register this package's invariant companion.
19
- * @param ctx - Cordis context carrying the invariant service.
20
- * @returns the installed registration's disposer after setup succeeds.
21
- */
22
- const apply = (ctx) => Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
23
- //#endregion
24
- export { apply, inject, name };
@@ -1,16 +0,0 @@
1
- /**
2
- * Package-owned invariant companion for `@prettier-ai/dsh-client-ui-reference`.
3
- * @module @prettier-ai/dsh-client-ui-reference/invariant
4
- */
5
- import type { Context } from '@prettier-ai/cordis';
6
- /** Cordis companion plugin name. */
7
- export declare const name = "client-ui-reference-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