@dxos/app-graph 0.3.9-main.501fe30 → 0.3.9-main.52d137d
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,5 +6,6 @@ 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>[];
|
|
9
10
|
};
|
|
10
11
|
//# 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
|
|
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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/app-graph",
|
|
3
|
-
"version": "0.3.9-main.
|
|
3
|
+
"version": "0.3.9-main.52d137d",
|
|
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.
|
|
42
|
-
"@dxos/debug": "0.3.9-main.
|
|
43
|
-
"@dxos/
|
|
44
|
-
"@dxos/
|
|
41
|
+
"@dxos/async": "0.3.9-main.52d137d",
|
|
42
|
+
"@dxos/debug": "0.3.9-main.52d137d",
|
|
43
|
+
"@dxos/invariant": "0.3.9-main.52d137d",
|
|
44
|
+
"@dxos/util": "0.3.9-main.52d137d"
|
|
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.
|
|
58
|
-
"@dxos/
|
|
59
|
-
"@dxos/
|
|
60
|
-
"@dxos/react-ui
|
|
57
|
+
"@dxos/react-client": "0.3.9-main.52d137d",
|
|
58
|
+
"@dxos/storybook-utils": "0.3.9-main.52d137d",
|
|
59
|
+
"@dxos/react-ui-theme": "0.3.9-main.52d137d",
|
|
60
|
+
"@dxos/react-ui": "0.3.9-main.52d137d"
|
|
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 {
|
|
14
|
+
import { ClientDecorator, 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,5 +230,6 @@ const EchoGraphStory = () => {
|
|
|
230
230
|
};
|
|
231
231
|
|
|
232
232
|
export const EchoGraph = {
|
|
233
|
-
render: () => <
|
|
233
|
+
render: () => <EchoGraphStory />,
|
|
234
|
+
decorators: [ClientDecorator({ clients: [client], className: 'flex flex-col' })],
|
|
234
235
|
};
|