@forgeax/app-shell 0.9.0 → 0.9.1

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.
Files changed (2) hide show
  1. package/dist/dock.d.ts +0 -3
  2. package/package.json +1 -1
package/dist/dock.d.ts CHANGED
@@ -31,15 +31,12 @@ declare function isDockPanelVisible(panelId: string): boolean;
31
31
  declare function hasMountedPanelPlacement(panelIds: readonly string[], mountedPanelIds: ReadonlySet<string>): boolean;
32
32
  interface SerializedDockPanelLike {
33
33
  readonly contentComponent?: string;
34
- readonly [key: string]: unknown;
35
34
  }
36
35
  interface SerializedDockLayoutLike {
37
36
  readonly panels?: Readonly<Record<string, SerializedDockPanelLike>>;
38
37
  readonly grid?: Readonly<{
39
38
  readonly root?: unknown;
40
- readonly [key: string]: unknown;
41
39
  }>;
42
- readonly [key: string]: unknown;
43
40
  }
44
41
  /**
45
42
  * Remove panels that the current shell cannot render, then prune empty grid
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forgeax/app-shell",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Generic Dock, Panel, Window, and Slot composition primitives",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",