@dxos/app-graph 0.3.9-main.ec541d7 → 0.3.9-main.ee839a8

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.
@@ -6,6 +6,5 @@ declare const _default: {
6
6
  export default _default;
7
7
  export declare const EchoGraph: {
8
8
  render: () => JSX.Element;
9
- decorators: import("@storybook/csf").DecoratorFunction<import("@storybook/react/dist/types-0fc72a6d").R, any>[];
10
9
  };
11
10
  //# sourceMappingURL=EchoGraph.stories.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"EchoGraph.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/EchoGraph.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,YAAY,CAAC;;;;;AAmBpB,wBAGE;AA6MF,eAAO,MAAM,SAAS;;;CAGrB,CAAC"}
1
+ {"version":3,"file":"EchoGraph.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/EchoGraph.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,YAAY,CAAC;;;;;AAmBpB,wBAGE;AA6MF,eAAO,MAAM,SAAS;;CAErB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/app-graph",
3
- "version": "0.3.9-main.ec541d7",
3
+ "version": "0.3.9-main.ee839a8",
4
4
  "description": "Constructs knowledge graphs for the purpose of building applications on top of",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -38,10 +38,10 @@
38
38
  "lodash.get": "^4.4.2",
39
39
  "lodash.set": "^4.3.2",
40
40
  "mousetrap": "^1.6.5",
41
- "@dxos/async": "0.3.9-main.ec541d7",
42
- "@dxos/debug": "0.3.9-main.ec541d7",
43
- "@dxos/invariant": "0.3.9-main.ec541d7",
44
- "@dxos/util": "0.3.9-main.ec541d7"
41
+ "@dxos/async": "0.3.9-main.ee839a8",
42
+ "@dxos/invariant": "0.3.9-main.ee839a8",
43
+ "@dxos/debug": "0.3.9-main.ee839a8",
44
+ "@dxos/util": "0.3.9-main.ee839a8"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@faker-js/faker": "^8.0.2",
@@ -54,10 +54,10 @@
54
54
  "react": "^18.2.0",
55
55
  "react-dom": "^18.2.0",
56
56
  "vite": "^4.3.9",
57
- "@dxos/react-client": "0.3.9-main.ec541d7",
58
- "@dxos/react-ui-theme": "0.3.9-main.ec541d7",
59
- "@dxos/react-ui": "0.3.9-main.ec541d7",
60
- "@dxos/storybook-utils": "0.3.9-main.ec541d7"
57
+ "@dxos/react-client": "0.3.9-main.ee839a8",
58
+ "@dxos/react-ui": "0.3.9-main.ee839a8",
59
+ "@dxos/react-ui-theme": "0.3.9-main.ee839a8",
60
+ "@dxos/storybook-utils": "0.3.9-main.ee839a8"
61
61
  },
62
62
  "peerDependencies": {
63
63
  "@phosphor-icons/react": "^2.0.5",
@@ -11,7 +11,7 @@ import React, { useEffect, useState } from 'react';
11
11
  import { EventSubscriptions } from '@dxos/async';
12
12
  import { Client } from '@dxos/react-client';
13
13
  import { Expando, type Space, SpaceProxy, SpaceState } from '@dxos/react-client/echo';
14
- import { ClientDecorator, TestBuilder } from '@dxos/react-client/testing';
14
+ import { ClientRepeater, TestBuilder } from '@dxos/react-client/testing';
15
15
  import { Button, DensityProvider, Input, Select } from '@dxos/react-ui';
16
16
  import { getSize, mx } from '@dxos/react-ui-theme';
17
17
  import { withTheme } from '@dxos/storybook-utils';
@@ -230,6 +230,5 @@ const EchoGraphStory = () => {
230
230
  };
231
231
 
232
232
  export const EchoGraph = {
233
- render: () => <EchoGraphStory />,
234
- decorators: [ClientDecorator({ clients: [client], className: 'flex flex-col' })],
233
+ render: () => <ClientRepeater Component={EchoGraphStory} clients={[client]} className='flex flex-col' />,
235
234
  };