@dxos/app-graph 0.3.10-main.fe592a2 → 0.3.10-next.3597a2d

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.
@@ -4,7 +4,7 @@ declare const _default: {
4
4
  decorators: import("@storybook/react").Decorator[];
5
5
  };
6
6
  export default _default;
7
- export declare const EchoGraph: {
7
+ export declare const Default: {
8
8
  render: () => JSX.Element;
9
9
  };
10
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;;;;;AAoBpB,wBAGE;AA6MF,eAAO,MAAM,SAAS;;CAErB,CAAC"}
1
+ {"version":3,"file":"EchoGraph.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/EchoGraph.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,YAAY,CAAC;;;;;AAoBpB,wBAGE;AA6MF,eAAO,MAAM,OAAO;;CAEnB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/app-graph",
3
- "version": "0.3.10-main.fe592a2",
3
+ "version": "0.3.10-next.3597a2d",
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",
@@ -37,11 +37,11 @@
37
37
  "deepsignal": "1.4.0-shallow.0",
38
38
  "lodash.get": "^4.4.2",
39
39
  "lodash.set": "^4.3.2",
40
- "@dxos/debug": "0.3.10-main.fe592a2",
41
- "@dxos/async": "0.3.10-main.fe592a2",
42
- "@dxos/invariant": "0.3.10-main.fe592a2",
43
- "@dxos/util": "0.3.10-main.fe592a2",
44
- "@dxos/keyboard": "0.3.10-main.fe592a2"
40
+ "@dxos/async": "0.3.10-next.3597a2d",
41
+ "@dxos/invariant": "0.3.10-next.3597a2d",
42
+ "@dxos/keyboard": "0.3.10-next.3597a2d",
43
+ "@dxos/debug": "0.3.10-next.3597a2d",
44
+ "@dxos/util": "0.3.10-next.3597a2d"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@faker-js/faker": "^8.0.2",
@@ -53,10 +53,10 @@
53
53
  "react": "^18.2.0",
54
54
  "react-dom": "^18.2.0",
55
55
  "vite": "^4.3.9",
56
- "@dxos/react-client": "0.3.10-main.fe592a2",
57
- "@dxos/react-ui": "0.3.10-main.fe592a2",
58
- "@dxos/react-ui-theme": "0.3.10-main.fe592a2",
59
- "@dxos/storybook-utils": "0.3.10-main.fe592a2"
56
+ "@dxos/react-client": "0.3.10-next.3597a2d",
57
+ "@dxos/storybook-utils": "0.3.10-next.3597a2d",
58
+ "@dxos/react-ui": "0.3.10-next.3597a2d",
59
+ "@dxos/react-ui-theme": "0.3.10-next.3597a2d"
60
60
  },
61
61
  "peerDependencies": {
62
62
  "@phosphor-icons/react": "^2.0.5",
@@ -23,7 +23,7 @@ import { GraphBuilder } from '../graph-builder';
23
23
  import { type Node } from '../node';
24
24
 
25
25
  export default {
26
- title: 'Echo Graph',
26
+ title: 'app-graph/EchoGraph',
27
27
  decorators: [withTheme],
28
28
  };
29
29
 
@@ -230,6 +230,6 @@ const EchoGraphStory = () => {
230
230
  );
231
231
  };
232
232
 
233
- export const EchoGraph = {
233
+ export const Default = {
234
234
  render: () => <ClientRepeater Component={EchoGraphStory} clients={[client]} className='flex flex-col' />,
235
235
  };