@dxos/plugin-debug 0.7.5-main.9d26e3a → 0.7.5-main.b19bfc8

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 (93) hide show
  1. package/dist/lib/browser/{DebugApp-HCHR6GKO.mjs → DebugApp-LQHFFK3Y.mjs} +4 -2
  2. package/dist/lib/browser/{DebugApp-HCHR6GKO.mjs.map → DebugApp-LQHFFK3Y.mjs.map} +3 -3
  3. package/dist/lib/browser/{DebugSpace-V3K3PQP6.mjs → DebugSpace-BTMTVZ6C.mjs} +7 -5
  4. package/dist/lib/browser/{DebugSpace-V3K3PQP6.mjs.map → DebugSpace-BTMTVZ6C.mjs.map} +3 -3
  5. package/dist/lib/browser/SpaceGenerator-BPZGOSH4.mjs +1238 -0
  6. package/dist/lib/browser/SpaceGenerator-BPZGOSH4.mjs.map +7 -0
  7. package/dist/lib/browser/app-graph-builder-BZFZ6UG6.mjs +533 -0
  8. package/dist/lib/browser/app-graph-builder-BZFZ6UG6.mjs.map +7 -0
  9. package/dist/lib/browser/chunk-EF3UVAVI.mjs +21 -0
  10. package/dist/lib/browser/chunk-EF3UVAVI.mjs.map +7 -0
  11. package/dist/lib/browser/chunk-UASI2CRI.mjs +72 -0
  12. package/dist/lib/browser/chunk-UASI2CRI.mjs.map +7 -0
  13. package/dist/lib/browser/index.mjs +97 -713
  14. package/dist/lib/browser/index.mjs.map +4 -4
  15. package/dist/lib/browser/meta.json +1 -1
  16. package/dist/lib/browser/react-context-TCD3MNIT.mjs +16 -0
  17. package/dist/lib/browser/react-context-TCD3MNIT.mjs.map +7 -0
  18. package/dist/lib/browser/react-surface-W6QLG4YJ.mjs +641 -0
  19. package/dist/lib/browser/react-surface-W6QLG4YJ.mjs.map +7 -0
  20. package/dist/lib/browser/settings-INPXR64L.mjs +24 -0
  21. package/dist/lib/browser/settings-INPXR64L.mjs.map +7 -0
  22. package/dist/types/src/DebugPlugin.d.ts +1 -2
  23. package/dist/types/src/DebugPlugin.d.ts.map +1 -1
  24. package/dist/types/src/capabilities/app-graph-builder.d.ts +181 -0
  25. package/dist/types/src/capabilities/app-graph-builder.d.ts.map +1 -0
  26. package/dist/types/src/capabilities/index.d.ts +185 -0
  27. package/dist/types/src/capabilities/index.d.ts.map +1 -0
  28. package/dist/types/src/capabilities/react-context.d.ts +8 -0
  29. package/dist/types/src/capabilities/react-context.d.ts.map +1 -0
  30. package/dist/types/src/capabilities/react-surface.d.ts +4 -0
  31. package/dist/types/src/capabilities/react-surface.d.ts.map +1 -0
  32. package/dist/types/src/capabilities/settings.d.ts +4 -0
  33. package/dist/types/src/capabilities/settings.d.ts.map +1 -0
  34. package/dist/types/src/components/Container.d.ts +2 -2
  35. package/dist/types/src/components/Container.d.ts.map +1 -1
  36. package/dist/types/src/components/DebugObjectPanel.d.ts +1 -2
  37. package/dist/types/src/components/DebugObjectPanel.d.ts.map +1 -1
  38. package/dist/types/src/components/DebugSettings.d.ts +1 -2
  39. package/dist/types/src/components/DebugSettings.d.ts.map +1 -1
  40. package/dist/types/src/components/DebugSpace/ObjectCreator.d.ts +1 -2
  41. package/dist/types/src/components/DebugSpace/ObjectCreator.d.ts.map +1 -1
  42. package/dist/types/src/components/DebugStatus.d.ts +1 -2
  43. package/dist/types/src/components/DebugStatus.d.ts.map +1 -1
  44. package/dist/types/src/components/SpaceGenerator/ObjectGenerator.d.ts.map +1 -1
  45. package/dist/types/src/components/SpaceGenerator/SchemaTable.d.ts +1 -2
  46. package/dist/types/src/components/SpaceGenerator/SchemaTable.d.ts.map +1 -1
  47. package/dist/types/src/components/SpaceGenerator/SpaceGenerator.d.ts +1 -2
  48. package/dist/types/src/components/SpaceGenerator/SpaceGenerator.d.ts.map +1 -1
  49. package/dist/types/src/components/SpaceGenerator/presets.d.ts +22 -0
  50. package/dist/types/src/components/SpaceGenerator/presets.d.ts.map +1 -0
  51. package/dist/types/src/components/Wireframe.d.ts +1 -2
  52. package/dist/types/src/components/Wireframe.d.ts.map +1 -1
  53. package/dist/types/src/components/index.d.ts +4 -4
  54. package/dist/types/src/components/index.d.ts.map +1 -1
  55. package/dist/types/src/index.d.ts +1 -2
  56. package/dist/types/src/index.d.ts.map +1 -1
  57. package/dist/types/src/meta.d.ts +2 -2
  58. package/dist/types/src/meta.d.ts.map +1 -1
  59. package/dist/types/src/translations.d.ts +28 -0
  60. package/dist/types/src/translations.d.ts.map +1 -1
  61. package/dist/types/src/types.d.ts +44 -4
  62. package/dist/types/src/types.d.ts.map +1 -1
  63. package/dist/types/tsconfig.tsbuildinfo +1 -1
  64. package/package.json +51 -52
  65. package/src/DebugPlugin.tsx +61 -345
  66. package/src/capabilities/app-graph-builder.ts +385 -0
  67. package/src/capabilities/index.ts +10 -0
  68. package/src/capabilities/react-context.tsx +16 -0
  69. package/src/capabilities/react-surface.tsx +307 -0
  70. package/src/capabilities/settings.ts +17 -0
  71. package/src/components/DebugApp/DebugApp.tsx +1 -1
  72. package/src/components/DebugObjectPanel.tsx +17 -5
  73. package/src/components/DebugSettings.tsx +11 -16
  74. package/src/components/DebugSpace/DebugSpace.tsx +1 -1
  75. package/src/components/DebugStatus.tsx +17 -27
  76. package/src/components/SpaceGenerator/ObjectGenerator.tsx +34 -7
  77. package/src/components/SpaceGenerator/SpaceGenerator.tsx +76 -7
  78. package/src/components/SpaceGenerator/presets.ts +563 -0
  79. package/src/index.ts +1 -4
  80. package/src/meta.ts +4 -2
  81. package/src/translations.ts +28 -0
  82. package/src/types.ts +51 -13
  83. package/dist/lib/browser/SpaceGenerator-Y2NXBQVR.mjs +0 -277
  84. package/dist/lib/browser/SpaceGenerator-Y2NXBQVR.mjs.map +0 -7
  85. package/dist/lib/browser/chunk-6CGQHKET.mjs +0 -21
  86. package/dist/lib/browser/chunk-6CGQHKET.mjs.map +0 -7
  87. package/dist/lib/browser/chunk-CAENAAHY.mjs +0 -18
  88. package/dist/lib/browser/chunk-CAENAAHY.mjs.map +0 -7
  89. package/dist/lib/browser/meta.mjs +0 -9
  90. package/dist/lib/browser/meta.mjs.map +0 -7
  91. package/dist/types/src/components/DebugSurface.d.ts +0 -9
  92. package/dist/types/src/components/DebugSurface.d.ts.map +0 -1
  93. package/src/components/DebugSurface.tsx +0 -55
@@ -1 +1 @@
1
- {"version":3,"file":"DebugSettings.d.ts","sourceRoot":"","sources":["../../../../src/components/DebugSettings.tsx"],"names":[],"mappings":"AAKA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAYnD,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAYnD,eAAO,MAAM,aAAa,iBAAkB;IAAE,QAAQ,EAAE,kBAAkB,CAAA;CAAE,sBAwH3E,CAAC"}
1
+ {"version":3,"file":"DebugSettings.d.ts","sourceRoot":"","sources":["../../../../src/components/DebugSettings.tsx"],"names":[],"mappings":"AAeA,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAYnD,eAAO,MAAM,aAAa,iBAAkB;IAAE,QAAQ,EAAE,kBAAkB,CAAA;CAAE,4CAqH3E,CAAC"}
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import { type MutationsProviderParams } from '@dxos/echo-generator';
3
2
  import { type ReactiveObject, type Space } from '@dxos/react-client/echo';
4
3
  export type CreateObjectsParams = {
@@ -11,5 +10,5 @@ export type ObjectCreatorProps = {
11
10
  space: Space;
12
11
  onAddObjects?: (objects: ReactiveObject<any>[]) => void;
13
12
  };
14
- export declare const ObjectCreator: ({ space, onAddObjects }: ObjectCreatorProps) => React.JSX.Element;
13
+ export declare const ObjectCreator: ({ space, onAddObjects }: ObjectCreatorProps) => import("react/jsx-runtime").JSX.Element;
15
14
  //# sourceMappingURL=ObjectCreator.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ObjectCreator.d.ts","sourceRoot":"","sources":["../../../../../src/components/DebugSpace/ObjectCreator.tsx"],"names":[],"mappings":"AAIA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAEjD,OAAO,EAAE,KAAK,uBAAuB,EAA8C,MAAM,sBAAsB,CAAC;AAChH,OAAO,EAA2B,KAAK,cAAc,EAAE,KAAK,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAMnG,MAAM,MAAM,mBAAmB,GAAG;IAChC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC,uBAAuB,EAAE,OAAO,GAAG,cAAc,GAAG,kBAAkB,CAAC,CAAC;CACzF,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,KAAK,EAAE,KAAK,CAAC;IACb,YAAY,CAAC,EAAE,CAAC,OAAO,EAAE,cAAc,CAAC,GAAG,CAAC,EAAE,KAAK,IAAI,CAAC;CACzD,CAAC;AAEF,eAAO,MAAM,aAAa,4BAA6B,kBAAkB,sBA0ExE,CAAC"}
1
+ {"version":3,"file":"ObjectCreator.d.ts","sourceRoot":"","sources":["../../../../../src/components/DebugSpace/ObjectCreator.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,uBAAuB,EAA8C,MAAM,sBAAsB,CAAC;AAChH,OAAO,EAA2B,KAAK,cAAc,EAAE,KAAK,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAMnG,MAAM,MAAM,mBAAmB,GAAG;IAChC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC,uBAAuB,EAAE,OAAO,GAAG,cAAc,GAAG,kBAAkB,CAAC,CAAC;CACzF,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,KAAK,EAAE,KAAK,CAAC;IACb,YAAY,CAAC,EAAE,CAAC,OAAO,EAAE,cAAc,CAAC,GAAG,CAAC,EAAE,KAAK,IAAI,CAAC;CACzD,CAAC;AAEF,eAAO,MAAM,aAAa,4BAA6B,kBAAkB,4CA0ExE,CAAC"}
@@ -1,3 +1,2 @@
1
- import React from 'react';
2
- export declare const DebugStatus: () => React.JSX.Element;
1
+ export declare const DebugStatus: () => import("react/jsx-runtime").JSX.Element;
3
2
  //# sourceMappingURL=DebugStatus.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DebugStatus.d.ts","sourceRoot":"","sources":["../../../../src/components/DebugStatus.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAmN3D,eAAO,MAAM,WAAW,yBAQvB,CAAC"}
1
+ {"version":3,"file":"DebugStatus.d.ts","sourceRoot":"","sources":["../../../../src/components/DebugStatus.tsx"],"names":[],"mappings":"AA6MA,eAAO,MAAM,WAAW,+CAQvB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"ObjectGenerator.d.ts","sourceRoot":"","sources":["../../../../../src/components/SpaceGenerator/ObjectGenerator.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,UAAU,EAAE,KAAK,WAAW,EAAE,MAAM,mBAAmB,CAAC;AACtE,OAAO,EAAmB,KAAK,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAMzE,OAAO,EAAU,KAAK,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAgB7D,MAAM,MAAM,eAAe,CAAC,CAAC,SAAS,UAAU,IAAI,CAClD,KAAK,EAAE,KAAK,EACZ,CAAC,EAAE,MAAM,EACT,EAAE,CAAC,EAAE,CAAC,OAAO,EAAE,cAAc,CAAC,GAAG,CAAC,EAAE,KAAK,IAAI,KAC1C,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;AAElC,eAAO,MAAM,gBAAgB,mCA6E3B,CAAC;AAEH,eAAO,MAAM,eAAe,GAAI,CAAC,SAAS,UAAU,QAAQ,WAAW,CAAC,CAAC,CAAC,KAAG,eAAe,CAAC,CAAC,CA2B7F,CAAC"}
1
+ {"version":3,"file":"ObjectGenerator.d.ts","sourceRoot":"","sources":["../../../../../src/components/SpaceGenerator/ObjectGenerator.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAY,KAAK,UAAU,EAAE,KAAK,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAEhF,OAAO,EAAmB,KAAK,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAMzE,OAAO,EAAU,KAAK,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAgB7D,MAAM,MAAM,eAAe,CAAC,CAAC,SAAS,UAAU,IAAI,CAClD,KAAK,EAAE,KAAK,EACZ,CAAC,EAAE,MAAM,EACT,EAAE,CAAC,EAAE,CAAC,OAAO,EAAE,cAAc,CAAC,GAAG,CAAC,EAAE,KAAK,IAAI,KAC1C,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;AAElC,eAAO,MAAM,gBAAgB,mCAsG3B,CAAC;AAEH,eAAO,MAAM,eAAe,GAAI,CAAC,SAAS,UAAU,QAAQ,WAAW,CAAC,CAAC,CAAC,KAAG,eAAe,CAAC,CAAC,CA2B7F,CAAC"}
@@ -1,9 +1,8 @@
1
- import React from 'react';
2
1
  export type SchemaTableProps = {
3
2
  types: any[];
4
3
  objects?: Record<string, number | undefined>;
5
4
  label: string;
6
5
  onClick: (typename: string) => void;
7
6
  };
8
- export declare const SchemaTable: ({ types, objects, label, onClick }: SchemaTableProps) => React.JSX.Element;
7
+ export declare const SchemaTable: ({ types, objects, label, onClick }: SchemaTableProps) => import("react/jsx-runtime").JSX.Element;
9
8
  //# sourceMappingURL=SchemaTable.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SchemaTable.d.ts","sourceRoot":"","sources":["../../../../../src/components/SpaceGenerator/SchemaTable.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,MAAM,gBAAgB,GAAG;IAC7B,KAAK,EAAE,GAAG,EAAE,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC,CAAC;AAEF,eAAO,MAAM,WAAW,uCAA6C,gBAAgB,sBAsBpF,CAAC"}
1
+ {"version":3,"file":"SchemaTable.d.ts","sourceRoot":"","sources":["../../../../../src/components/SpaceGenerator/SchemaTable.tsx"],"names":[],"mappings":"AAQA,MAAM,MAAM,gBAAgB,GAAG;IAC7B,KAAK,EAAE,GAAG,EAAE,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC,CAAC;AAEF,eAAO,MAAM,WAAW,uCAA6C,gBAAgB,4CAsBpF,CAAC"}
@@ -1,9 +1,8 @@
1
- import React from 'react';
2
1
  import { type ReactiveObject } from '@dxos/live-object';
3
2
  import { type Space } from '@dxos/react-client/echo';
4
3
  export type SpaceGeneratorProps = {
5
4
  space: Space;
6
5
  onCreateObjects?: (objects: ReactiveObject<any>[]) => void;
7
6
  };
8
- export declare const SpaceGenerator: ({ space, onCreateObjects }: SpaceGeneratorProps) => React.JSX.Element;
7
+ export declare const SpaceGenerator: ({ space, onCreateObjects }: SpaceGeneratorProps) => import("react/jsx-runtime").JSX.Element;
9
8
  //# sourceMappingURL=SpaceGenerator.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SpaceGenerator.d.ts","sourceRoot":"","sources":["../../../../../src/components/SpaceGenerator/SpaceGenerator.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAyC,MAAM,OAAO,CAAC;AAE9D,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAKxD,OAAO,EAAe,KAAK,KAAK,EAAE,MAAM,yBAAyB,CAAC;AASlE,MAAM,MAAM,mBAAmB,GAAG;IAChC,KAAK,EAAE,KAAK,CAAC;IACb,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,cAAc,CAAC,GAAG,CAAC,EAAE,KAAK,IAAI,CAAC;CAC5D,CAAC;AAEF,eAAO,MAAM,cAAc,+BAAgC,mBAAmB,sBAuF7E,CAAC"}
1
+ {"version":3,"file":"SpaceGenerator.d.ts","sourceRoot":"","sources":["../../../../../src/components/SpaceGenerator/SpaceGenerator.tsx"],"names":[],"mappings":"AASA,OAAO,EAAU,KAAK,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAOhE,OAAO,EAAe,KAAK,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAWlE,MAAM,MAAM,mBAAmB,GAAG;IAChC,KAAK,EAAE,KAAK,CAAC;IACb,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,cAAc,CAAC,GAAG,CAAC,EAAE,KAAK,IAAI,CAAC;CAC5D,CAAC;AAEF,eAAO,MAAM,cAAc,+BAAgC,mBAAmB,4CAqJ7E,CAAC"}
@@ -0,0 +1,22 @@
1
+ import { FunctionTrigger } from '@dxos/functions/types';
2
+ import { CanvasBoardType } from '@dxos/react-ui-canvas-editor';
3
+ import { type ObjectGenerator } from './ObjectGenerator';
4
+ export declare enum PresetName {
5
+ EMAIL_TABLE = "email-table",
6
+ GPT_QUEUE = "webhook-gpt-queue",
7
+ CHAT_GPT = "chat-gpt-text",
8
+ EMAIL_WITH_SUMMARY = "email-gptSummary-table",
9
+ OBJECT_CHANGE_QUEUE = "objectChange-queue",
10
+ FOREX_FUNCTION_CALL = "forex-function-call",
11
+ TIMER_TICK_QUEUE = "timerTick-queue",
12
+ DISCORD_MESSAGES = "discord-messages",
13
+ KANBAN_QUEUE = "kanban-queue"
14
+ }
15
+ export declare const presets: {
16
+ schemas: (typeof CanvasBoardType | typeof FunctionTrigger)[];
17
+ types: {
18
+ typename: PresetName;
19
+ }[];
20
+ items: [PresetName, ObjectGenerator<any>][];
21
+ };
22
+ //# sourceMappingURL=presets.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"presets.d.ts","sourceRoot":"","sources":["../../../../../src/components/SpaceGenerator/presets.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,eAAe,EAAiC,MAAM,uBAAuB,CAAC;AAoBvF,OAAO,EACL,eAAe,EAKhB,MAAM,8BAA8B,CAAC;AAItC,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEzD,oBAAY,UAAU;IACpB,WAAW,gBAAgB;IAC3B,SAAS,sBAAsB;IAC/B,QAAQ,kBAAkB;IAC1B,kBAAkB,2BAA2B;IAC7C,mBAAmB,uBAAuB;IAC1C,mBAAmB,wBAAwB;IAC3C,gBAAgB,oBAAoB;IACpC,gBAAgB,qBAAqB;IACrC,YAAY,iBAAiB;CAC9B;AAED,eAAO,MAAM,OAAO;;;;;WA2Yb,CAAC,UAAU,EAAE,eAAe,CAAC,GAAG,CAAC,CAAC,EAAE;CAC1C,CAAC"}
@@ -1,9 +1,8 @@
1
- import React from 'react';
2
1
  import { type ReactiveEchoObject } from '@dxos/react-client/echo';
3
2
  import { type ThemedClassName } from '@dxos/react-ui';
4
3
  export type WireframeProps = ThemedClassName<{
5
4
  label?: string;
6
5
  object: ReactiveEchoObject<any>;
7
6
  }>;
8
- export declare const Wireframe: ({ classNames, label, object }: WireframeProps) => React.JSX.Element;
7
+ export declare const Wireframe: ({ classNames, label, object }: WireframeProps) => import("react/jsx-runtime").JSX.Element;
9
8
  //# sourceMappingURL=Wireframe.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Wireframe.d.ts","sourceRoot":"","sources":["../../../../src/components/Wireframe.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAoB,KAAK,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AACpF,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAMtD,MAAM,MAAM,cAAc,GAAG,eAAe,CAAC;IAC3C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,kBAAkB,CAAC,GAAG,CAAC,CAAC;CACjC,CAAC,CAAC;AAGH,eAAO,MAAM,SAAS,kCAAmC,cAAc,sBAuBtE,CAAC"}
1
+ {"version":3,"file":"Wireframe.d.ts","sourceRoot":"","sources":["../../../../src/components/Wireframe.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAoB,KAAK,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AACpF,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAMtD,MAAM,MAAM,cAAc,GAAG,eAAe,CAAC;IAC3C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,kBAAkB,CAAC,GAAG,CAAC,CAAC;CACjC,CAAC,CAAC;AAGH,eAAO,MAAM,SAAS,kCAAmC,cAAc,4CAuBtE,CAAC"}
@@ -1,11 +1,11 @@
1
1
  export declare const DebugApp: import("react").LazyExoticComponent<import("react").FC<{
2
- graph: import("packages/sdk/app-graph/dist/types/src").Graph;
2
+ graph: import("@dxos/app-graph").Graph;
3
3
  }>>;
4
4
  export declare const DebugSpace: import("react").LazyExoticComponent<import("react").FC<{
5
- space: import("packages/sdk/client-protocol/dist/types/src").Space;
6
- onAddObjects?: (objects: import("packages/core/echo/live-object/dist/types/src").ReactiveObject<any>[]) => void;
5
+ space: import("@dxos/client-protocol").Space;
6
+ onAddObjects?: (objects: import("@dxos/live-object").ReactiveObject<any>[]) => void;
7
7
  }>>;
8
- export declare const SpaceGenerator: import("react").LazyExoticComponent<({ space, onCreateObjects }: import("./SpaceGenerator/SpaceGenerator").SpaceGeneratorProps) => import("react").JSX.Element>;
8
+ export declare const SpaceGenerator: import("react").LazyExoticComponent<({ space, onCreateObjects }: import("./SpaceGenerator/SpaceGenerator").SpaceGeneratorProps) => import("react/jsx-runtime").JSX.Element>;
9
9
  export * from './DebugObjectPanel';
10
10
  export * from './DebugSettings';
11
11
  export * from './DebugStatus';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,QAAQ;;GAAmC,CAAC;AACzD,eAAO,MAAM,UAAU;;;GAAqC,CAAC;AAC7D,eAAO,MAAM,cAAc,iKAAyC,CAAC;AAErE,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,QAAQ;;GAAmC,CAAC;AACzD,eAAO,MAAM,UAAU;;;GAAqC,CAAC;AAC7D,eAAO,MAAM,cAAc,6KAAyC,CAAC;AAErE,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC"}
@@ -1,4 +1,3 @@
1
- import { DebugPlugin } from './DebugPlugin';
2
1
  export * from './DebugPlugin';
3
- export default DebugPlugin;
2
+ export * from './meta';
4
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,cAAc,eAAe,CAAC;AAE9B,eAAe,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAIA,cAAc,eAAe,CAAC;AAC9B,cAAc,QAAQ,CAAC"}
@@ -1,11 +1,11 @@
1
1
  export declare const DEBUG_PLUGIN = "dxos.org/plugin/debug";
2
- declare const _default: {
2
+ export declare const meta: {
3
3
  id: string;
4
4
  name: string;
5
5
  description: string;
6
6
  icon: string;
7
7
  source: string;
8
8
  tags: string[];
9
+ screenshots: string[];
9
10
  };
10
- export default _default;
11
11
  //# sourceMappingURL=meta.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"meta.d.ts","sourceRoot":"","sources":["../../../src/meta.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,YAAY,0BAA0B,CAAC;;;;;;;;;AAEpD,wBAOuB"}
1
+ {"version":3,"file":"meta.d.ts","sourceRoot":"","sources":["../../../src/meta.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,YAAY,0BAA0B,CAAC;AAEpD,eAAO,MAAM,IAAI;;;;;;;;CASK,CAAC"}
@@ -23,6 +23,34 @@ declare const _default: {
23
23
  'settings storage adapter changed alert': string;
24
24
  'settings space fragmentation': string;
25
25
  'open debug panel label': string;
26
+ 'client label': string;
27
+ 'config label': string;
28
+ 'storage label': string;
29
+ 'logs label': string;
30
+ 'diagnostics label': string;
31
+ 'tracing label': string;
32
+ 'halo label': string;
33
+ 'identity label': string;
34
+ 'devices label': string;
35
+ 'keyring label': string;
36
+ 'credentials label': string;
37
+ 'echo label': string;
38
+ 'spaces label': string;
39
+ 'space label': string;
40
+ 'feeds label': string;
41
+ 'objects label': string;
42
+ 'automerge label': string;
43
+ 'members label': string;
44
+ 'metadata label': string;
45
+ 'mesh label': string;
46
+ 'signal label': string;
47
+ 'swarm label': string;
48
+ 'network label': string;
49
+ 'agent label': string;
50
+ 'dashboard label': string;
51
+ 'search label': string;
52
+ 'edge label': string;
53
+ 'workflows label': string;
26
54
  };
27
55
  };
28
56
  }[];
@@ -1 +1 @@
1
- {"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../src/translations.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,wBA8BE"}
1
+ {"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../src/translations.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,wBA0DE"}
@@ -1,8 +1,6 @@
1
1
  import { type Context } from 'react';
2
- import type { GraphBuilderProvides, SettingsProvides, SurfaceProvides, TranslationsProvides } from '@dxos/app-framework';
3
2
  import type { TimerCallback, TimerOptions } from '@dxos/async';
4
3
  import { S } from '@dxos/echo-schema';
5
- import { type PanelProvides } from '@dxos/plugin-deck/types';
6
4
  export type DebugContextType = {
7
5
  running: boolean;
8
6
  start: (cb: TimerCallback, options: TimerOptions) => void;
@@ -10,11 +8,53 @@ export type DebugContextType = {
10
8
  };
11
9
  export declare const DebugContext: Context<DebugContextType>;
12
10
  export declare const DebugSettingsSchema: S.mutable<S.Struct<{
13
- devtools: S.optional<typeof S.Boolean>;
14
11
  debug: S.optional<typeof S.Boolean>;
15
12
  wireframe: S.optional<typeof S.Boolean>;
16
13
  }>>;
17
14
  export interface DebugSettingsProps extends S.Schema.Type<typeof DebugSettingsSchema> {
18
15
  }
19
- export type DebugPluginProvides = SurfaceProvides & GraphBuilderProvides & SettingsProvides<DebugSettingsProps> & TranslationsProvides & PanelProvides;
16
+ export declare namespace Devtools {
17
+ const id = "dxos.org.plugin.debug.devtools";
18
+ namespace Client {
19
+ const id = "dxos.org.plugin.debug.devtools.client";
20
+ const Config = "dxos.org.plugin.debug.devtools.client.config";
21
+ const Storage = "dxos.org.plugin.debug.devtools.client.storage";
22
+ const Logs = "dxos.org.plugin.debug.devtools.client.logs";
23
+ const Diagnostics = "dxos.org.plugin.debug.devtools.client.diagnostics";
24
+ const Tracing = "dxos.org.plugin.debug.devtools.client.tracing";
25
+ }
26
+ namespace Halo {
27
+ const id = "dxos.org.plugin.debug.devtools.halo";
28
+ const Identity = "dxos.org.plugin.debug.devtools.halo.identity";
29
+ const Devices = "dxos.org.plugin.debug.devtools.halo.devices";
30
+ const Keyring = "dxos.org.plugin.debug.devtools.halo.keyring";
31
+ const Credentials = "dxos.org.plugin.debug.devtools.halo.credentials";
32
+ }
33
+ namespace Echo {
34
+ const id = "dxos.org.plugin.debug.devtools.echo";
35
+ const Spaces = "dxos.org.plugin.debug.devtools.echo.spaces";
36
+ const Space = "dxos.org.plugin.debug.devtools.echo.space";
37
+ const Feeds = "dxos.org.plugin.debug.devtools.echo.feeds";
38
+ const Objects = "dxos.org.plugin.debug.devtools.echo.objects";
39
+ const Automerge = "dxos.org.plugin.debug.devtools.echo.automerge";
40
+ const Members = "dxos.org.plugin.debug.devtools.echo.members";
41
+ const Metadata = "dxos.org.plugin.debug.devtools.echo.metadata";
42
+ }
43
+ namespace Mesh {
44
+ const id = "dxos.org.plugin.debug.devtools.mesh";
45
+ const Signal = "dxos.org.plugin.debug.devtools.mesh.signal";
46
+ const Swarm = "dxos.org.plugin.debug.devtools.mesh.swarm";
47
+ const Network = "dxos.org.plugin.debug.devtools.mesh.network";
48
+ }
49
+ namespace Agent {
50
+ const id = "dxos.org.plugin.debug.devtools.agent";
51
+ const Dashboard = "dxos.org.plugin.debug.devtools.agent.dashboard";
52
+ const Search = "dxos.org.plugin.debug.devtools.agent.search";
53
+ }
54
+ namespace Edge {
55
+ const id = "dxos.org.plugin.debug.devtools.edge";
56
+ const Dashboard = "dxos.org.plugin.debug.devtools.edge.dashboard";
57
+ const Workflows = "dxos.org.plugin.debug.devtools.edge.workflows";
58
+ }
59
+ }
20
60
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,OAAO,EAAiB,MAAM,OAAO,CAAC;AAEpD,OAAO,KAAK,EACV,oBAAoB,EACpB,gBAAgB,EAChB,eAAe,EACf,oBAAoB,EACrB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC/D,OAAO,EAAE,CAAC,EAAE,MAAM,mBAAmB,CAAC;AACtC,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAE7D,MAAM,MAAM,gBAAgB,GAAG;IAC7B,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,CAAC,EAAE,EAAE,aAAa,EAAE,OAAO,EAAE,YAAY,KAAK,IAAI,CAAC;IAC1D,IAAI,EAAE,MAAM,IAAI,CAAC;CAClB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,OAAO,CAAC,gBAAgB,CAIjD,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;GAM/B,CAAC;AAEF,MAAM,WAAW,kBAAmB,SAAQ,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,mBAAmB,CAAC;CAAG;AAExF,MAAM,MAAM,mBAAmB,GAAG,eAAe,GAC/C,oBAAoB,GACpB,gBAAgB,CAAC,kBAAkB,CAAC,GACpC,oBAAoB,GACpB,aAAa,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,OAAO,EAAiB,MAAM,OAAO,CAAC;AAEpD,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC/D,OAAO,EAAE,CAAC,EAAE,MAAM,mBAAmB,CAAC;AAEtC,MAAM,MAAM,gBAAgB,GAAG;IAC7B,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,CAAC,EAAE,EAAE,aAAa,EAAE,OAAO,EAAE,YAAY,KAAK,IAAI,CAAC;IAC1D,IAAI,EAAE,MAAM,IAAI,CAAC;CAClB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,OAAO,CAAC,gBAAgB,CAIjD,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;GAK/B,CAAC;AAEF,MAAM,WAAW,kBAAmB,SAAQ,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,mBAAmB,CAAC;CAAG;AAExF,yBAAiB,QAAQ,CAAC;IAEjB,MAAM,EAAE,mCAAmC,CAAC;IAEnD,UAAiB,MAAM,CAAC;QACf,MAAM,EAAE,0CAA0B,CAAC;QACnC,MAAM,MAAM,iDAAiC,CAAC;QAC9C,MAAM,OAAO,kDAAkC,CAAC;QAChD,MAAM,IAAI,+CAA+B,CAAC;QAC1C,MAAM,WAAW,sDAAsC,CAAC;QACxD,MAAM,OAAO,kDAAkC,CAAC;KACxD;IAED,UAAiB,IAAI,CAAC;QACb,MAAM,EAAE,wCAAwB,CAAC;QACjC,MAAM,QAAQ,iDAAiC,CAAC;QAChD,MAAM,OAAO,gDAAgC,CAAC;QAC9C,MAAM,OAAO,gDAAgC,CAAC;QAC9C,MAAM,WAAW,oDAAoC,CAAC;KAC9D;IAED,UAAiB,IAAI,CAAC;QACb,MAAM,EAAE,wCAAwB,CAAC;QACjC,MAAM,MAAM,+CAA+B,CAAC;QAC5C,MAAM,KAAK,8CAA8B,CAAC;QAC1C,MAAM,KAAK,8CAA8B,CAAC;QAC1C,MAAM,OAAO,gDAAgC,CAAC;QAC9C,MAAM,SAAS,kDAAkC,CAAC;QAClD,MAAM,OAAO,gDAAgC,CAAC;QAC9C,MAAM,QAAQ,iDAAiC,CAAC;KACxD;IAED,UAAiB,IAAI,CAAC;QACb,MAAM,EAAE,wCAAwB,CAAC;QACjC,MAAM,MAAM,+CAA+B,CAAC;QAC5C,MAAM,KAAK,8CAA8B,CAAC;QAC1C,MAAM,OAAO,gDAAgC,CAAC;KACtD;IAED,UAAiB,KAAK,CAAC;QACd,MAAM,EAAE,yCAAyB,CAAC;QAClC,MAAM,SAAS,mDAAmC,CAAC;QACnD,MAAM,MAAM,gDAAgC,CAAC;KACrD;IAED,UAAiB,IAAI,CAAC;QACb,MAAM,EAAE,wCAAwB,CAAC;QACjC,MAAM,SAAS,kDAAkC,CAAC;QAClD,MAAM,SAAS,kDAAkC,CAAC;KAC1D;CACF"}
@@ -1 +1 @@
1
- {"version":"5.7.2"}
1
+ {"version":"5.7.3"}
package/package.json CHANGED
@@ -1,29 +1,22 @@
1
1
  {
2
2
  "name": "@dxos/plugin-debug",
3
- "version": "0.7.5-main.9d26e3a",
3
+ "version": "0.7.5-main.b19bfc8",
4
4
  "description": "DXOS Surface plugin for testing.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
7
7
  "license": "MIT",
8
8
  "author": "DXOS.org",
9
9
  "sideEffects": true,
10
+ "type": "module",
10
11
  "exports": {
11
12
  ".": {
12
13
  "types": "./dist/types/src/index.d.ts",
13
14
  "browser": "./dist/lib/browser/index.mjs"
14
- },
15
- "./meta": {
16
- "types": "./dist/types/src/meta.d.ts",
17
- "browser": "./dist/lib/browser/meta.mjs"
18
15
  }
19
16
  },
20
17
  "types": "dist/types/src/index.d.ts",
21
18
  "typesVersions": {
22
- "*": {
23
- "meta": [
24
- "dist/types/src/meta.d.ts"
25
- ]
26
- }
19
+ "*": {}
27
20
  },
28
21
  "files": [
29
22
  "dist",
@@ -35,46 +28,52 @@
35
28
  "@preact/signals-core": "^1.6.0",
36
29
  "@tldraw/tldraw": "^3.0.0",
37
30
  "date-fns": "^3.3.1",
38
- "effect": "^3.12.1",
31
+ "effect": "^3.12.3",
39
32
  "lodash.get": "^4.4.2",
40
33
  "react-json-tree": "^0.18.0",
41
34
  "react-resize-detector": "^11.0.1",
42
35
  "workerize-loader": "^2.0.2",
43
- "@dxos/app-framework": "0.7.5-main.9d26e3a",
44
- "@dxos/async": "0.7.5-main.9d26e3a",
45
- "@dxos/automerge": "0.7.5-main.9d26e3a",
46
- "@dxos/client-services": "0.7.5-main.9d26e3a",
47
- "@dxos/compute": "0.7.5-main.9d26e3a",
48
- "@dxos/config": "0.7.5-main.9d26e3a",
49
- "@dxos/devtools": "0.7.5-main.9d26e3a",
50
- "@dxos/echo-generator": "0.7.5-main.9d26e3a",
51
- "@dxos/echo-pipeline": "0.7.5-main.9d26e3a",
52
- "@dxos/keys": "0.7.5-main.9d26e3a",
53
- "@dxos/live-object": "0.7.5-main.9d26e3a",
54
- "@dxos/invariant": "0.7.5-main.9d26e3a",
55
- "@dxos/local-storage": "0.7.5-main.9d26e3a",
56
- "@dxos/echo-schema": "0.7.5-main.9d26e3a",
57
- "@dxos/log": "0.7.5-main.9d26e3a",
58
- "@dxos/plugin-client": "0.7.5-main.9d26e3a",
59
- "@dxos/plugin-deck": "0.7.5-main.9d26e3a",
60
- "@dxos/plugin-graph": "0.7.5-main.9d26e3a",
61
- "@dxos/plugin-markdown": "0.7.5-main.9d26e3a",
62
- "@dxos/plugin-sketch": "0.7.5-main.9d26e3a",
63
- "@dxos/plugin-space": "0.7.5-main.9d26e3a",
64
- "@dxos/plugin-sheet": "0.7.5-main.9d26e3a",
65
- "@dxos/plugin-status-bar": "0.7.5-main.9d26e3a",
66
- "@dxos/plugin-table": "0.7.5-main.9d26e3a",
67
- "@dxos/protocols": "0.7.5-main.9d26e3a",
68
- "@dxos/plugin-theme": "0.7.5-main.9d26e3a",
69
- "@dxos/random": "0.7.5-main.9d26e3a",
70
- "@dxos/react-client": "0.7.5-main.9d26e3a",
71
- "@dxos/react-hooks": "0.7.5-main.9d26e3a",
72
- "@dxos/react-ui-attention": "0.7.5-main.9d26e3a",
73
- "@dxos/react-ui-form": "0.7.5-main.9d26e3a",
74
- "@dxos/react-ui-table": "0.7.5-main.9d26e3a",
75
- "@dxos/schema": "0.7.5-main.9d26e3a",
76
- "@dxos/react-ui-syntax-highlighter": "0.7.5-main.9d26e3a",
77
- "@dxos/util": "0.7.5-main.9d26e3a"
36
+ "@dxos/app-framework": "0.7.5-main.b19bfc8",
37
+ "@dxos/automerge": "0.7.5-main.b19bfc8",
38
+ "@dxos/async": "0.7.5-main.b19bfc8",
39
+ "@dxos/compute": "0.7.5-main.b19bfc8",
40
+ "@dxos/conductor": "0.7.5-main.b19bfc8",
41
+ "@dxos/config": "0.7.5-main.b19bfc8",
42
+ "@dxos/client-services": "0.7.5-main.b19bfc8",
43
+ "@dxos/devtools": "0.7.5-main.b19bfc8",
44
+ "@dxos/echo-generator": "0.7.5-main.b19bfc8",
45
+ "@dxos/echo-pipeline": "0.7.5-main.b19bfc8",
46
+ "@dxos/invariant": "0.7.5-main.b19bfc8",
47
+ "@dxos/functions": "0.7.5-main.b19bfc8",
48
+ "@dxos/echo-schema": "0.7.5-main.b19bfc8",
49
+ "@dxos/keys": "0.7.5-main.b19bfc8",
50
+ "@dxos/live-object": "0.7.5-main.b19bfc8",
51
+ "@dxos/local-storage": "0.7.5-main.b19bfc8",
52
+ "@dxos/log": "0.7.5-main.b19bfc8",
53
+ "@dxos/plugin-graph": "0.7.5-main.b19bfc8",
54
+ "@dxos/plugin-deck": "0.7.5-main.b19bfc8",
55
+ "@dxos/plugin-client": "0.7.5-main.b19bfc8",
56
+ "@dxos/plugin-sheet": "0.7.5-main.b19bfc8",
57
+ "@dxos/plugin-markdown": "0.7.5-main.b19bfc8",
58
+ "@dxos/plugin-sketch": "0.7.5-main.b19bfc8",
59
+ "@dxos/plugin-space": "0.7.5-main.b19bfc8",
60
+ "@dxos/plugin-status-bar": "0.7.5-main.b19bfc8",
61
+ "@dxos/plugin-theme": "0.7.5-main.b19bfc8",
62
+ "@dxos/plugin-table": "0.7.5-main.b19bfc8",
63
+ "@dxos/protocols": "0.7.5-main.b19bfc8",
64
+ "@dxos/random": "0.7.5-main.b19bfc8",
65
+ "@dxos/react-client": "0.7.5-main.b19bfc8",
66
+ "@dxos/react-ui-attention": "0.7.5-main.b19bfc8",
67
+ "@dxos/react-ui-canvas-compute": "0.7.5-main.b19bfc8",
68
+ "@dxos/react-hooks": "0.7.5-main.b19bfc8",
69
+ "@dxos/react-ui-canvas-editor": "0.7.5-main.b19bfc8",
70
+ "@dxos/react-ui-stack": "0.7.5-main.b19bfc8",
71
+ "@dxos/react-ui-form": "0.7.5-main.b19bfc8",
72
+ "@dxos/react-ui-syntax-highlighter": "0.7.5-main.b19bfc8",
73
+ "@dxos/react-ui-kanban": "0.7.5-main.b19bfc8",
74
+ "@dxos/schema": "0.7.5-main.b19bfc8",
75
+ "@dxos/react-ui-table": "0.7.5-main.b19bfc8",
76
+ "@dxos/util": "0.7.5-main.b19bfc8"
78
77
  },
79
78
  "devDependencies": {
80
79
  "@phosphor-icons/react": "^2.1.5",
@@ -84,17 +83,17 @@
84
83
  "react": "~18.2.0",
85
84
  "react-dom": "~18.2.0",
86
85
  "vite": "5.4.7",
87
- "@dxos/react-ui-theme": "0.7.5-main.9d26e3a",
88
- "@dxos/react-ui": "0.7.5-main.9d26e3a",
89
- "@dxos/storybook-utils": "0.7.5-main.9d26e3a"
86
+ "@dxos/react-ui": "0.7.5-main.b19bfc8",
87
+ "@dxos/storybook-utils": "0.7.5-main.b19bfc8",
88
+ "@dxos/react-ui-theme": "0.7.5-main.b19bfc8"
90
89
  },
91
90
  "peerDependencies": {
92
91
  "@phosphor-icons/react": "^2.1.5",
93
92
  "react": "~18.2.0",
94
93
  "react-dom": "~18.2.0",
95
- "@dxos/random": "0.7.5-main.9d26e3a",
96
- "@dxos/react-ui-theme": "0.7.5-main.9d26e3a",
97
- "@dxos/react-ui": "0.7.5-main.9d26e3a"
94
+ "@dxos/random": "0.7.5-main.b19bfc8",
95
+ "@dxos/react-ui": "0.7.5-main.b19bfc8",
96
+ "@dxos/react-ui-theme": "0.7.5-main.b19bfc8"
98
97
  },
99
98
  "publishConfig": {
100
99
  "access": "public"