@deepseek-ai/dsh-client-web 0.1.3-alpha.2 → 0.1.5-alpha.2

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/lib/index.js CHANGED
@@ -9,6 +9,7 @@ import * as ReactDomClient from "react-dom/client";
9
9
  import * as ClientStore from "@deepseek-ai/dsh-client-store";
10
10
  import * as UiSlots from "@deepseek-ai/dsh-client-ui-slots";
11
11
  import * as UiPrimitives from "@deepseek-ai/dsh-client-ui-primitives";
12
+ import * as UiDockkit from "@deepseek-ai/dsh-client-ui-dockkit";
12
13
  import "./base.css";
13
14
  //#region lib/types/boot-page.js
14
15
  /** Create a div with one module class and optional text. */
@@ -119,7 +120,8 @@ function getStaticModules() {
119
120
  "@deepseek-ai/cordis": Cordis,
120
121
  "@deepseek-ai/dsh-client-store": ClientStore,
121
122
  "@deepseek-ai/dsh-client-ui-slots": UiSlots,
122
- "@deepseek-ai/dsh-client-ui-primitives": UiPrimitives
123
+ "@deepseek-ai/dsh-client-ui-primitives": UiPrimitives,
124
+ "@deepseek-ai/dsh-client-ui-dockkit": UiDockkit
123
125
  };
124
126
  }
125
127
  //#endregion
@@ -275,7 +277,8 @@ const PLATFORM_MODULES = [
275
277
  "@deepseek-ai/cordis",
276
278
  "@deepseek-ai/dsh-client-store",
277
279
  "@deepseek-ai/dsh-client-ui-slots",
278
- "@deepseek-ai/dsh-client-ui-primitives"
280
+ "@deepseek-ai/dsh-client-ui-primitives",
281
+ "@deepseek-ai/dsh-client-ui-dockkit"
279
282
  ];
280
283
  /** Client-bundle specifiers whose factories the parser preloads before the shell starts. */
281
284
  const PRELOADED_CLIENT_EXTERNALS = [];
@@ -4,7 +4,7 @@
4
4
  * @module @deepseek-ai/dsh-client-web/src/platform
5
5
  */
6
6
  /** The module specifiers the shell shares into the frozen module table. */
7
- export declare const PLATFORM_MODULES: readonly ["react", "react/jsx-runtime", "react-dom", "react-dom/client", "@deepseek-ai/cordis", "@deepseek-ai/dsh-client-store", "@deepseek-ai/dsh-client-ui-slots", "@deepseek-ai/dsh-client-ui-primitives"];
7
+ export declare const PLATFORM_MODULES: readonly ["react", "react/jsx-runtime", "react-dom", "react-dom/client", "@deepseek-ai/cordis", "@deepseek-ai/dsh-client-store", "@deepseek-ai/dsh-client-ui-slots", "@deepseek-ai/dsh-client-ui-primitives", "@deepseek-ai/dsh-client-ui-dockkit"];
8
8
  /** Client-bundle specifiers whose factories the parser preloads before the shell starts. */
9
9
  export declare const PRELOADED_CLIENT_EXTERNALS: readonly [];
10
10
  /** One platform module specifier (a seed-table key). */
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.3-alpha.2",
4
+ "version": "0.1.5-alpha.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -28,13 +28,14 @@
28
28
  "react": "^18.2.0",
29
29
  "react-dom": "^18.2.0",
30
30
  "typescript": "^6.0.3",
31
- "@deepseek-ai/dsh-client-store": "^0.1.3-alpha.2",
32
- "@deepseek-ai/dsh-client-ui-renderer": "^0.1.3-alpha.2",
33
- "@deepseek-ai/dsh-client-ui-slots": "^0.1.3-alpha.2",
34
- "@deepseek-ai/dsh-client-ui-primitives": "^0.1.3-alpha.2",
35
- "@deepseek-ai/dsh-client-modules": "^0.1.3-alpha.2",
36
- "@deepseek-ai/cordis-plugin-loader": "^1.0.3",
37
- "@deepseek-ai/cordis": "^4.0.2"
31
+ "@deepseek-ai/dsh-client-modules": "^0.1.5-alpha.2",
32
+ "@deepseek-ai/dsh-client-store": "^0.1.5-alpha.2",
33
+ "@deepseek-ai/dsh-client-ui-primitives": "^0.1.5-alpha.2",
34
+ "@deepseek-ai/dsh-client-ui-slots": "^0.1.5-alpha.2",
35
+ "@deepseek-ai/dsh-client-ui-renderer": "^0.1.5-alpha.2",
36
+ "@deepseek-ai/cordis": "^4.0.2",
37
+ "@deepseek-ai/dsh-client-ui-dockkit": "^0.1.5-alpha.2",
38
+ "@deepseek-ai/cordis-plugin-loader": "^1.0.3"
38
39
  },
39
40
  "peerDependencies": {
40
41
  "@deepseek-ai/cordis": "^4.0.2"