@dxos/plugin-debug 0.8.2-staging.7ac8446 → 0.8.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.
Files changed (76) hide show
  1. package/dist/lib/browser/DebugApp-WSEJPCKY.mjs +225 -0
  2. package/dist/lib/browser/{DebugApp-7PFYN52J.mjs.map → DebugApp-WSEJPCKY.mjs.map} +1 -1
  3. package/dist/lib/browser/DevtoolsOverviewContainer-IIIWO77Q.mjs +25 -0
  4. package/dist/lib/browser/DevtoolsOverviewContainer-IIIWO77Q.mjs.map +7 -0
  5. package/dist/lib/browser/{SpaceGenerator-NBOQZ4JF.mjs → SpaceGenerator-RHQLPN44.mjs} +254 -242
  6. package/dist/lib/browser/SpaceGenerator-RHQLPN44.mjs.map +7 -0
  7. package/dist/lib/browser/{app-graph-builder-ALFPRSAR.mjs → app-graph-builder-PIPBIN6P.mjs} +115 -88
  8. package/dist/lib/browser/app-graph-builder-PIPBIN6P.mjs.map +7 -0
  9. package/dist/lib/browser/{chunk-RORUXVAC.mjs → chunk-47JOZTT2.mjs} +1 -4
  10. package/dist/lib/browser/{chunk-RORUXVAC.mjs.map → chunk-47JOZTT2.mjs.map} +3 -3
  11. package/dist/lib/browser/chunk-KS3YBEL7.mjs +68 -0
  12. package/dist/lib/browser/chunk-KS3YBEL7.mjs.map +7 -0
  13. package/dist/lib/browser/index.mjs +7 -5
  14. package/dist/lib/browser/index.mjs.map +2 -2
  15. package/dist/lib/browser/meta.json +1 -1
  16. package/dist/lib/browser/{react-context-ZRLN5KUI.mjs → react-context-ZQRD2WG2.mjs} +2 -2
  17. package/dist/lib/browser/{react-surface-MXXLOQYV.mjs → react-surface-PHUWS5WD.mjs} +318 -288
  18. package/dist/lib/browser/react-surface-PHUWS5WD.mjs.map +7 -0
  19. package/dist/lib/browser/{settings-AP74NCXH.mjs → settings-N4Q6YB7L.mjs} +5 -5
  20. package/dist/lib/browser/settings-N4Q6YB7L.mjs.map +7 -0
  21. package/dist/types/src/capabilities/app-graph-builder.d.ts +2 -179
  22. package/dist/types/src/capabilities/app-graph-builder.d.ts.map +1 -1
  23. package/dist/types/src/capabilities/index.d.ts +2 -178
  24. package/dist/types/src/capabilities/index.d.ts.map +1 -1
  25. package/dist/types/src/capabilities/react-surface.d.ts +2 -2
  26. package/dist/types/src/capabilities/react-surface.d.ts.map +1 -1
  27. package/dist/types/src/components/Container.d.ts.map +1 -1
  28. package/dist/types/src/components/DebugApp/Tree.d.ts.map +1 -1
  29. package/dist/types/src/components/DebugObjectPanel.d.ts +2 -2
  30. package/dist/types/src/components/DebugObjectPanel.d.ts.map +1 -1
  31. package/dist/types/src/components/DebugSettings.d.ts.map +1 -1
  32. package/dist/types/src/components/DebugStatus.d.ts.map +1 -1
  33. package/dist/types/src/components/DevtoolsOverviewContainer.d.ts +4 -0
  34. package/dist/types/src/components/DevtoolsOverviewContainer.d.ts.map +1 -0
  35. package/dist/types/src/components/SpaceGenerator/ObjectGenerator.d.ts +2 -2
  36. package/dist/types/src/components/SpaceGenerator/ObjectGenerator.d.ts.map +1 -1
  37. package/dist/types/src/components/SpaceGenerator/SchemaTable.d.ts.map +1 -1
  38. package/dist/types/src/components/SpaceGenerator/SpaceGenerator.d.ts +2 -2
  39. package/dist/types/src/components/SpaceGenerator/SpaceGenerator.d.ts.map +1 -1
  40. package/dist/types/src/components/SpaceGenerator/draw-util.d.ts.map +1 -1
  41. package/dist/types/src/components/SpaceGenerator/presets.d.ts +1 -1
  42. package/dist/types/src/components/SpaceGenerator/presets.d.ts.map +1 -1
  43. package/dist/types/src/components/Wireframe.d.ts +2 -2
  44. package/dist/types/src/components/Wireframe.d.ts.map +1 -1
  45. package/dist/types/src/components/index.d.ts +1 -0
  46. package/dist/types/src/components/index.d.ts.map +1 -1
  47. package/dist/types/src/meta.d.ts.map +1 -1
  48. package/dist/types/src/translations.d.ts +2 -0
  49. package/dist/types/src/translations.d.ts.map +1 -1
  50. package/dist/types/src/types.d.ts +5 -4
  51. package/dist/types/src/types.d.ts.map +1 -1
  52. package/dist/types/tsconfig.tsbuildinfo +1 -1
  53. package/package.json +60 -53
  54. package/src/capabilities/app-graph-builder.ts +418 -374
  55. package/src/capabilities/react-surface.tsx +43 -19
  56. package/src/capabilities/settings.ts +2 -2
  57. package/src/components/DebugObjectPanel.tsx +2 -2
  58. package/src/components/DebugStatus.tsx +4 -29
  59. package/src/components/DevtoolsOverviewContainer.tsx +20 -0
  60. package/src/components/SpaceGenerator/ObjectGenerator.tsx +11 -16
  61. package/src/components/SpaceGenerator/SpaceGenerator.stories.tsx +1 -1
  62. package/src/components/SpaceGenerator/SpaceGenerator.tsx +9 -9
  63. package/src/components/SpaceGenerator/presets.ts +20 -18
  64. package/src/components/Wireframe.tsx +2 -2
  65. package/src/components/index.ts +1 -0
  66. package/src/meta.ts +0 -1
  67. package/src/translations.ts +2 -0
  68. package/src/types.ts +6 -5
  69. package/dist/lib/browser/DebugApp-7PFYN52J.mjs +0 -182
  70. package/dist/lib/browser/SpaceGenerator-NBOQZ4JF.mjs.map +0 -7
  71. package/dist/lib/browser/app-graph-builder-ALFPRSAR.mjs.map +0 -7
  72. package/dist/lib/browser/chunk-TCEHALD4.mjs +0 -73
  73. package/dist/lib/browser/chunk-TCEHALD4.mjs.map +0 -7
  74. package/dist/lib/browser/react-surface-MXXLOQYV.mjs.map +0 -7
  75. package/dist/lib/browser/settings-AP74NCXH.mjs.map +0 -7
  76. /package/dist/lib/browser/{react-context-ZRLN5KUI.mjs.map → react-context-ZQRD2WG2.mjs.map} +0 -0
@@ -1,7 +1,7 @@
1
1
  import { type BaseObject, type TypedObject } from '@dxos/echo-schema';
2
- import { type ReactiveObject } from '@dxos/live-object';
2
+ import { type Live } from '@dxos/live-object';
3
3
  import { type Space } from '@dxos/react-client/echo';
4
- export type ObjectGenerator<T extends BaseObject> = (space: Space, n: number, cb?: (objects: ReactiveObject<any>[]) => void) => Promise<ReactiveObject<T>[]>;
4
+ export type ObjectGenerator<T extends BaseObject> = (space: Space, n: number, cb?: (objects: Live<any>[]) => void) => Promise<Live<T>[]>;
5
5
  export declare const staticGenerators: Map<string, ObjectGenerator<any>>;
6
6
  export declare const createGenerator: <T extends BaseObject>(type: TypedObject<T>) => ObjectGenerator<T>;
7
7
  //# sourceMappingURL=ObjectGenerator.d.ts.map
@@ -1 +1 @@
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
+ {"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,EAAiB,KAAK,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAM7D,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,IAAI,CAAC,GAAG,CAAC,EAAE,KAAK,IAAI,KAChC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;AAExB,eAAO,MAAM,gBAAgB,mCAqG3B,CAAC;AAEH,eAAO,MAAM,eAAe,GAAI,CAAC,SAAS,UAAU,EAAE,MAAM,WAAW,CAAC,CAAC,CAAC,KAAG,eAAe,CAAC,CAAC,CAuB7F,CAAC"}
@@ -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":"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,GAAI,oCAAyC,gBAAgB,sBAsBpF,CAAC"}
@@ -1,9 +1,9 @@
1
1
  import React from 'react';
2
- import { type ReactiveObject } from '@dxos/live-object';
2
+ import { type Live } from '@dxos/live-object';
3
3
  import { type Space } from '@dxos/react-client/echo';
4
4
  export type SpaceGeneratorProps = {
5
5
  space: Space;
6
- onCreateObjects?: (objects: ReactiveObject<any>[]) => void;
6
+ onCreateObjects?: (objects: Live<any>[]) => void;
7
7
  };
8
8
  export declare const SpaceGenerator: ({ space, onCreateObjects }: SpaceGeneratorProps) => React.JSX.Element;
9
9
  //# 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;AAK9D,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,sBA+I7E,CAAC"}
1
+ {"version":3,"file":"SpaceGenerator.d.ts","sourceRoot":"","sources":["../../../../../src/components/SpaceGenerator/SpaceGenerator.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAyC,MAAM,OAAO,CAAC;AAK9D,OAAO,EAAQ,KAAK,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAOpD,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,IAAI,CAAC,GAAG,CAAC,EAAE,KAAK,IAAI,CAAC;CAClD,CAAC;AAEF,eAAO,MAAM,cAAc,GAAI,4BAA4B,mBAAmB,sBA+I7E,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"draw-util.d.ts","sourceRoot":"","sources":["../../../../../src/components/SpaceGenerator/draw-util.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,EAAa,KAAK,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAUpE,OAAO,EAAkC,KAAK,MAAM,EAAE,KAAK,eAAe,EAAE,KAAK,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAalH;;GAEG;AAGH,eAAO,MAAM,aAAa,QAAO,KAAK,CAAC,WAAW,EAAE,WAAW,CAiD9D,CAAC;AAEF,eAAO,MAAM,SAAS,WACZ,MAAM,SACP,KAAK,CAAC,WAAW,EAAE,WAAW,CAAC,KACrC,OAAO,CAAC,eAAe,CAAC,QAAQ,CAAC,CAuGnC,CAAC"}
1
+ {"version":3,"file":"draw-util.d.ts","sourceRoot":"","sources":["../../../../../src/components/SpaceGenerator/draw-util.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,EAAa,KAAK,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAUpE,OAAO,EAAkC,KAAK,MAAM,EAAE,KAAK,eAAe,EAAE,KAAK,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAalH;;GAEG;AAGH,eAAO,MAAM,aAAa,QAAO,KAAK,CAAC,WAAW,EAAE,WAAW,CAiD9D,CAAC;AAEF,eAAO,MAAM,SAAS,GACpB,QAAQ,MAAM,EACd,OAAO,KAAK,CAAC,WAAW,EAAE,WAAW,CAAC,KACrC,OAAO,CAAC,eAAe,CAAC,QAAQ,CAAC,CAuGnC,CAAC"}
@@ -1,4 +1,4 @@
1
- import { FunctionTrigger } from '@dxos/functions/types';
1
+ import { FunctionTrigger } from '@dxos/functions';
2
2
  import { CanvasBoardType } from '@dxos/react-ui-canvas-editor';
3
3
  import { type ObjectGenerator } from './ObjectGenerator';
4
4
  export declare enum PresetName {
@@ -1 +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
+ {"version":3,"file":"presets.d.ts","sourceRoot":"","sources":["../../../../../src/components/SpaceGenerator/presets.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,eAAe,EAAqD,MAAM,iBAAiB,CAAC;AAoBrG,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,9 @@
1
1
  import React from 'react';
2
- import { type ReactiveEchoObject } from '@dxos/react-client/echo';
2
+ import { type AnyLiveObject } from '@dxos/react-client/echo';
3
3
  import { type ThemedClassName } from '@dxos/react-ui';
4
4
  export type WireframeProps = ThemedClassName<{
5
5
  label?: string;
6
- object: ReactiveEchoObject<any>;
6
+ object: AnyLiveObject<any>;
7
7
  }>;
8
8
  export declare const Wireframe: ({ classNames, label, object }: WireframeProps) => React.JSX.Element;
9
9
  //# 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":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAoB,KAAK,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAC/E,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAMtD,MAAM,MAAM,cAAc,GAAG,eAAe,CAAC;IAC3C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,aAAa,CAAC,GAAG,CAAC,CAAC;CAC5B,CAAC,CAAC;AAGH,eAAO,MAAM,SAAS,GAAI,+BAA+B,cAAc,sBAuBtE,CAAC"}
@@ -1,6 +1,7 @@
1
1
  export declare const DebugApp: import("react").LazyExoticComponent<import("react").FC<{
2
2
  graph: import("@dxos/app-graph").Graph;
3
3
  }>>;
4
+ export declare const DevtoolsOverviewContainer: import("react").LazyExoticComponent<() => import("react").JSX.Element>;
4
5
  export declare const SpaceGenerator: import("react").LazyExoticComponent<({ space, onCreateObjects }: import("./SpaceGenerator/SpaceGenerator").SpaceGeneratorProps) => import("react").JSX.Element>;
5
6
  export * from './DebugObjectPanel';
6
7
  export * from './DebugSettings';
@@ -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,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,yBAAyB,wEAAoD,CAAC;AAC3F,eAAO,MAAM,cAAc,iKAAyC,CAAC;AAErE,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"meta.d.ts","sourceRoot":"","sources":["../../../src/meta.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEtD,eAAO,MAAM,YAAY,0BAA0B,CAAC;AAEpD,eAAO,MAAM,IAAI,EAAE,UASlB,CAAC"}
1
+ {"version":3,"file":"meta.d.ts","sourceRoot":"","sources":["../../../src/meta.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEtD,eAAO,MAAM,YAAY,0BAA0B,CAAC;AAEpD,eAAO,MAAM,IAAI,EAAE,UAQlB,CAAC"}
@@ -6,6 +6,7 @@ declare const _default: {
6
6
  'mutation period': string;
7
7
  'open devtools label': string;
8
8
  'devtools label': string;
9
+ 'devtools overview label': string;
9
10
  'debug label': string;
10
11
  'settings show debug panel': string;
11
12
  'settings show devtools panel': string;
@@ -39,6 +40,7 @@ declare const _default: {
39
40
  'space label': string;
40
41
  'feeds label': string;
41
42
  'objects label': string;
43
+ 'schema label': string;
42
44
  'automerge label': string;
43
45
  'queues label': string;
44
46
  'members label': string;
@@ -1 +1 @@
1
- {"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../src/translations.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,wBA6DE"}
1
+ {"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../src/translations.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,wBA+DE"}
@@ -1,16 +1,16 @@
1
+ import { Schema } from 'effect';
1
2
  import { type Context } from 'react';
2
3
  import type { TimerCallback, TimerOptions } from '@dxos/async';
3
- import { S } from '@dxos/echo-schema';
4
4
  export type DebugContextType = {
5
5
  running: boolean;
6
6
  start: (cb: TimerCallback, options: TimerOptions) => void;
7
7
  stop: () => void;
8
8
  };
9
9
  export declare const DebugContext: Context<DebugContextType>;
10
- export declare const DebugSettingsSchema: S.mutable<S.Struct<{
11
- wireframe: S.optional<typeof S.Boolean>;
10
+ export declare const DebugSettingsSchema: Schema.mutable<Schema.Struct<{
11
+ wireframe: Schema.optional<typeof Schema.Boolean>;
12
12
  }>>;
13
- export interface DebugSettingsProps extends S.Schema.Type<typeof DebugSettingsSchema> {
13
+ export interface DebugSettingsProps extends Schema.Schema.Type<typeof DebugSettingsSchema> {
14
14
  }
15
15
  export declare namespace Devtools {
16
16
  const id = "dxos.org.plugin.debug.devtools";
@@ -35,6 +35,7 @@ export declare namespace Devtools {
35
35
  const Space = "dxos.org.plugin.debug.devtools.echo.space";
36
36
  const Feeds = "dxos.org.plugin.debug.devtools.echo.feeds";
37
37
  const Objects = "dxos.org.plugin.debug.devtools.echo.objects";
38
+ const Schema = "dxos.org.plugin.debug.devtools.echo.schema";
38
39
  const Automerge = "dxos.org.plugin.debug.devtools.echo.automerge";
39
40
  const Queues = "dxos.org.plugin.debug.devtools.echo.queues";
40
41
  const Members = "dxos.org.plugin.debug.devtools.echo.members";
@@ -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,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;;GAI/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,MAAM,+CAA+B,CAAC;QAC5C,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;QAClD,MAAM,MAAM,+CAA+B,CAAC;QAC5C,MAAM,OAAO,gDAAgC,CAAC;KACtD;CACF"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,KAAK,OAAO,EAAiB,MAAM,OAAO,CAAC;AAEpD,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE/D,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;;GAI/B,CAAC;AAEF,MAAM,WAAW,kBAAmB,SAAQ,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,mBAAmB,CAAC;CAAG;AAE7F,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,MAAM,+CAA+B,CAAC;QAC5C,MAAM,SAAS,kDAAkC,CAAC;QAClD,MAAM,MAAM,+CAA+B,CAAC;QAC5C,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;QAClD,MAAM,MAAM,+CAA+B,CAAC;QAC5C,MAAM,OAAO,gDAAgC,CAAC;KACtD;CACF"}
@@ -1 +1 @@
1
- {"version":"5.7.3"}
1
+ {"version":"5.8.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/plugin-debug",
3
- "version": "0.8.2-staging.7ac8446",
3
+ "version": "0.8.2",
4
4
  "description": "DXOS Surface plugin for testing.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -25,76 +25,83 @@
25
25
  "dependencies": {
26
26
  "@antv/graphlib": "^2.0.4",
27
27
  "@antv/layout": "^1.2.13",
28
- "@preact/signals-core": "^1.6.0",
28
+ "@automerge/automerge": "3.0.0-beta.4",
29
+ "@preact-signals/safe-react": "^0.9.0",
30
+ "@preact/signals-core": "^1.9.0",
29
31
  "@tldraw/tldraw": "^3.0.0",
30
32
  "date-fns": "^3.3.1",
31
- "effect": "3.13.3",
32
- "lodash.get": "^4.4.2",
33
33
  "react-json-tree": "^0.18.0",
34
34
  "react-resize-detector": "^11.0.1",
35
35
  "workerize-loader": "^2.0.2",
36
- "@dxos/app-framework": "0.8.2-staging.7ac8446",
37
- "@dxos/async": "0.8.2-staging.7ac8446",
38
- "@dxos/automerge": "0.8.2-staging.7ac8446",
39
- "@dxos/client-services": "0.8.2-staging.7ac8446",
40
- "@dxos/compute": "0.8.2-staging.7ac8446",
41
- "@dxos/conductor": "0.8.2-staging.7ac8446",
42
- "@dxos/config": "0.8.2-staging.7ac8446",
43
- "@dxos/devtools": "0.8.2-staging.7ac8446",
44
- "@dxos/echo-pipeline": "0.8.2-staging.7ac8446",
45
- "@dxos/echo-generator": "0.8.2-staging.7ac8446",
46
- "@dxos/invariant": "0.8.2-staging.7ac8446",
47
- "@dxos/functions": "0.8.2-staging.7ac8446",
48
- "@dxos/keys": "0.8.2-staging.7ac8446",
49
- "@dxos/echo-schema": "0.8.2-staging.7ac8446",
50
- "@dxos/local-storage": "0.8.2-staging.7ac8446",
51
- "@dxos/live-object": "0.8.2-staging.7ac8446",
52
- "@dxos/log": "0.8.2-staging.7ac8446",
53
- "@dxos/plugin-deck": "0.8.2-staging.7ac8446",
54
- "@dxos/plugin-graph": "0.8.2-staging.7ac8446",
55
- "@dxos/plugin-markdown": "0.8.2-staging.7ac8446",
56
- "@dxos/plugin-client": "0.8.2-staging.7ac8446",
57
- "@dxos/plugin-script": "0.8.2-staging.7ac8446",
58
- "@dxos/plugin-sketch": "0.8.2-staging.7ac8446",
59
- "@dxos/plugin-space": "0.8.2-staging.7ac8446",
60
- "@dxos/plugin-sheet": "0.8.2-staging.7ac8446",
61
- "@dxos/plugin-status-bar": "0.8.2-staging.7ac8446",
62
- "@dxos/plugin-theme": "0.8.2-staging.7ac8446",
63
- "@dxos/plugin-table": "0.8.2-staging.7ac8446",
64
- "@dxos/random": "0.8.2-staging.7ac8446",
65
- "@dxos/protocols": "0.8.2-staging.7ac8446",
66
- "@dxos/react-client": "0.8.2-staging.7ac8446",
67
- "@dxos/react-ui-attention": "0.8.2-staging.7ac8446",
68
- "@dxos/react-hooks": "0.8.2-staging.7ac8446",
69
- "@dxos/react-ui-canvas-compute": "0.8.2-staging.7ac8446",
70
- "@dxos/react-ui-form": "0.8.2-staging.7ac8446",
71
- "@dxos/react-ui-stack": "0.8.2-staging.7ac8446",
72
- "@dxos/react-ui-canvas-editor": "0.8.2-staging.7ac8446",
73
- "@dxos/react-ui-kanban": "0.8.2-staging.7ac8446",
74
- "@dxos/react-ui-syntax-highlighter": "0.8.2-staging.7ac8446",
75
- "@dxos/react-ui-table": "0.8.2-staging.7ac8446",
76
- "@dxos/schema": "0.8.2-staging.7ac8446",
77
- "@dxos/util": "0.8.2-staging.7ac8446"
36
+ "@dxos/async": "0.8.2",
37
+ "@dxos/app-framework": "0.8.2",
38
+ "@dxos/client-services": "0.8.2",
39
+ "@dxos/compute": "0.8.2",
40
+ "@dxos/conductor": "0.8.2",
41
+ "@dxos/config": "0.8.2",
42
+ "@dxos/devtools": "0.8.2",
43
+ "@dxos/context": "0.8.2",
44
+ "@dxos/echo": "0.8.2",
45
+ "@dxos/echo-generator": "0.8.2",
46
+ "@dxos/echo-schema": "0.8.2",
47
+ "@dxos/invariant": "0.8.2",
48
+ "@dxos/keys": "0.8.2",
49
+ "@dxos/functions": "0.8.2",
50
+ "@dxos/echo-pipeline": "0.8.2",
51
+ "@dxos/live-object": "0.8.2",
52
+ "@dxos/local-storage": "0.8.2",
53
+ "@dxos/log": "0.8.2",
54
+ "@dxos/plugin-client": "0.8.2",
55
+ "@dxos/plugin-deck": "0.8.2",
56
+ "@dxos/plugin-graph": "0.8.2",
57
+ "@dxos/plugin-meeting": "0.8.2",
58
+ "@dxos/plugin-script": "0.8.2",
59
+ "@dxos/plugin-markdown": "0.8.2",
60
+ "@dxos/plugin-space": "0.8.2",
61
+ "@dxos/plugin-sheet": "0.8.2",
62
+ "@dxos/plugin-sketch": "0.8.2",
63
+ "@dxos/plugin-table": "0.8.2",
64
+ "@dxos/plugin-theme": "0.8.2",
65
+ "@dxos/random": "0.8.2",
66
+ "@dxos/plugin-status-bar": "0.8.2",
67
+ "@dxos/protocols": "0.8.2",
68
+ "@dxos/react-client": "0.8.2",
69
+ "@dxos/react-hooks": "0.8.2",
70
+ "@dxos/react-ui-attention": "0.8.2",
71
+ "@dxos/react-ui-canvas-compute": "0.8.2",
72
+ "@dxos/react-ui-canvas-editor": "0.8.2",
73
+ "@dxos/react-ui-form": "0.8.2",
74
+ "@dxos/react-ui-kanban": "0.8.2",
75
+ "@dxos/react-ui-stack": "0.8.2",
76
+ "@dxos/react-ui-syntax-highlighter": "0.8.2",
77
+ "@dxos/react-ui-table": "0.8.2",
78
+ "@dxos/schema": "0.8.2",
79
+ "@dxos/util": "0.8.2"
78
80
  },
79
81
  "devDependencies": {
82
+ "@effect-rx/rx-react": "^0.34.1",
83
+ "@effect/platform": "0.80.12",
80
84
  "@phosphor-icons/react": "^2.1.5",
81
- "@types/lodash.get": "^4.4.7",
82
85
  "@types/react": "~18.2.0",
83
86
  "@types/react-dom": "~18.2.0",
87
+ "effect": "3.14.21",
84
88
  "react": "~18.2.0",
85
89
  "react-dom": "~18.2.0",
86
90
  "vite": "5.4.7",
87
- "@dxos/react-ui-theme": "0.8.2-staging.7ac8446",
88
- "@dxos/react-ui": "0.8.2-staging.7ac8446",
89
- "@dxos/storybook-utils": "0.8.2-staging.7ac8446"
91
+ "@dxos/react-ui": "0.8.2",
92
+ "@dxos/storybook-utils": "0.8.2",
93
+ "@dxos/react-ui-theme": "0.8.2"
90
94
  },
91
95
  "peerDependencies": {
96
+ "@effect-rx/rx-react": "^0.34.1",
97
+ "@effect/platform": "0.80.12",
92
98
  "@phosphor-icons/react": "^2.1.5",
99
+ "effect": "^3.13.3",
93
100
  "react": "~18.2.0",
94
101
  "react-dom": "~18.2.0",
95
- "@dxos/random": "0.8.2-staging.7ac8446",
96
- "@dxos/react-ui-theme": "0.8.2-staging.7ac8446",
97
- "@dxos/react-ui": "0.8.2-staging.7ac8446"
102
+ "@dxos/random": "0.8.2",
103
+ "@dxos/react-ui-theme": "0.8.2",
104
+ "@dxos/react-ui": "0.8.2"
98
105
  },
99
106
  "publishConfig": {
100
107
  "access": "public"