@dxos/plugin-graph 0.8.1-staging.391c573 → 0.8.1-staging.5be625a
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.
- package/dist/lib/browser/{chunk-7LNMG3EB.mjs → chunk-L263B77P.mjs} +3 -2
- package/dist/lib/browser/chunk-L263B77P.mjs.map +7 -0
- package/dist/lib/browser/{graph-U2AHH24Q.mjs → graph-UYXVVZ2I.mjs} +2 -2
- package/dist/lib/browser/index.mjs +2 -2
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/node/{chunk-KHIPMH35.cjs → chunk-AKNWBLRY.cjs} +6 -5
- package/dist/lib/node/{chunk-KHIPMH35.cjs.map → chunk-AKNWBLRY.cjs.map} +3 -3
- package/dist/lib/node/{graph-AOAAITHV.cjs → graph-GCGIYOGJ.cjs} +6 -6
- package/dist/lib/node/index.cjs +6 -6
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node-esm/{chunk-IHM26RSC.mjs → chunk-RJQY6JZL.mjs} +3 -2
- package/dist/lib/node-esm/chunk-RJQY6JZL.mjs.map +7 -0
- package/dist/lib/node-esm/{graph-VC422POI.mjs → graph-NUZMWBDN.mjs} +2 -2
- package/dist/lib/node-esm/index.mjs +2 -2
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/types/src/meta.d.ts +2 -3
- package/dist/types/src/meta.d.ts.map +1 -1
- package/package.json +7 -7
- package/src/meta.ts +3 -2
- package/dist/lib/browser/chunk-7LNMG3EB.mjs.map +0 -7
- package/dist/lib/node-esm/chunk-IHM26RSC.mjs.map +0 -7
- /package/dist/lib/browser/{graph-U2AHH24Q.mjs.map → graph-UYXVVZ2I.mjs.map} +0 -0
- /package/dist/lib/node/{graph-AOAAITHV.cjs.map → graph-GCGIYOGJ.cjs.map} +0 -0
- /package/dist/lib/node-esm/{graph-VC422POI.mjs.map → graph-NUZMWBDN.mjs.map} +0 -0
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
// packages/plugins/plugin-graph/src/meta.ts
|
|
2
2
|
var GRAPH_PLUGIN = "dxos.org/plugin/graph";
|
|
3
3
|
var meta = {
|
|
4
|
-
id: GRAPH_PLUGIN
|
|
4
|
+
id: GRAPH_PLUGIN,
|
|
5
|
+
name: "Graph"
|
|
5
6
|
};
|
|
6
7
|
|
|
7
8
|
export {
|
|
8
9
|
GRAPH_PLUGIN,
|
|
9
10
|
meta
|
|
10
11
|
};
|
|
11
|
-
//# sourceMappingURL=chunk-
|
|
12
|
+
//# sourceMappingURL=chunk-L263B77P.mjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/meta.ts"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type PluginMeta } from '@dxos/app-framework';\n\nexport const GRAPH_PLUGIN = 'dxos.org/plugin/graph';\n\nexport const meta: PluginMeta = {\n id: GRAPH_PLUGIN,\n name: 'Graph',\n};\n"],
|
|
5
|
+
"mappings": ";AAMO,IAAMA,eAAe;AAErB,IAAMC,OAAmB;EAC9BC,IAAIF;EACJG,MAAM;AACR;",
|
|
6
|
+
"names": ["GRAPH_PLUGIN", "meta", "id", "name"]
|
|
7
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
GRAPH_PLUGIN
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-L263B77P.mjs";
|
|
4
4
|
|
|
5
5
|
// packages/plugins/plugin-graph/src/graph.ts
|
|
6
6
|
import { batch, effect, untracked } from "@preact/signals-core";
|
|
@@ -39,4 +39,4 @@ var setupDevtools = (graph) => {
|
|
|
39
39
|
export {
|
|
40
40
|
graph_default as default
|
|
41
41
|
};
|
|
42
|
-
//# sourceMappingURL=graph-
|
|
42
|
+
//# sourceMappingURL=graph-UYXVVZ2I.mjs.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
GRAPH_PLUGIN,
|
|
3
3
|
meta
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-L263B77P.mjs";
|
|
5
5
|
|
|
6
6
|
// packages/plugins/plugin-graph/src/index.ts
|
|
7
7
|
export * from "@dxos/app-graph";
|
|
@@ -19,7 +19,7 @@ var GraphPlugin = () => definePlugin(meta, [
|
|
|
19
19
|
activatesAfter: [
|
|
20
20
|
Events.AppGraphReady
|
|
21
21
|
],
|
|
22
|
-
activate: lazy(() => import("./graph-
|
|
22
|
+
activate: lazy(() => import("./graph-UYXVVZ2I.mjs"))
|
|
23
23
|
})
|
|
24
24
|
]);
|
|
25
25
|
export {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"packages/plugins/plugin-graph/src/meta.ts":{"bytes":
|
|
1
|
+
{"inputs":{"packages/plugins/plugin-graph/src/meta.ts":{"bytes":950,"imports":[],"format":"esm"},"packages/plugins/plugin-graph/src/graph.ts":{"bytes":6242,"imports":[{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-graph","kind":"import-statement","external":true},{"path":"packages/plugins/plugin-graph/src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"},"packages/plugins/plugin-graph/src/GraphPlugin.ts":{"bytes":2810,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"packages/plugins/plugin-graph/src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"packages/plugins/plugin-graph/src/graph.ts","kind":"dynamic-import","original":"./graph"}],"format":"esm"},"packages/plugins/plugin-graph/src/index.ts":{"bytes":697,"imports":[{"path":"@dxos/app-graph","kind":"import-statement","external":true},{"path":"packages/plugins/plugin-graph/src/GraphPlugin.ts","kind":"import-statement","original":"./GraphPlugin"},{"path":"packages/plugins/plugin-graph/src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"}},"outputs":{"packages/plugins/plugin-graph/dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1499},"packages/plugins/plugin-graph/dist/lib/browser/index.mjs":{"imports":[{"path":"packages/plugins/plugin-graph/dist/lib/browser/chunk-L263B77P.mjs","kind":"import-statement"},{"path":"@dxos/app-graph","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"packages/plugins/plugin-graph/dist/lib/browser/graph-UYXVVZ2I.mjs","kind":"dynamic-import"}],"exports":["GRAPH_PLUGIN","GraphPlugin","meta"],"entryPoint":"packages/plugins/plugin-graph/src/index.ts","inputs":{"packages/plugins/plugin-graph/src/index.ts":{"bytesInOutput":33},"packages/plugins/plugin-graph/src/GraphPlugin.ts":{"bytesInOutput":417}},"bytes":698},"packages/plugins/plugin-graph/dist/lib/browser/graph-UYXVVZ2I.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3429},"packages/plugins/plugin-graph/dist/lib/browser/graph-UYXVVZ2I.mjs":{"imports":[{"path":"packages/plugins/plugin-graph/dist/lib/browser/chunk-L263B77P.mjs","kind":"import-statement"},{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-graph","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"packages/plugins/plugin-graph/src/graph.ts","inputs":{"packages/plugins/plugin-graph/src/graph.ts":{"bytesInOutput":1331}},"bytes":1516},"packages/plugins/plugin-graph/dist/lib/browser/chunk-L263B77P.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":447},"packages/plugins/plugin-graph/dist/lib/browser/chunk-L263B77P.mjs":{"imports":[],"exports":["GRAPH_PLUGIN","meta"],"inputs":{"packages/plugins/plugin-graph/src/meta.ts":{"bytesInOutput":96}},"bytes":221}}}
|
|
@@ -16,19 +16,20 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var
|
|
20
|
-
__export(
|
|
19
|
+
var chunk_AKNWBLRY_exports = {};
|
|
20
|
+
__export(chunk_AKNWBLRY_exports, {
|
|
21
21
|
GRAPH_PLUGIN: () => GRAPH_PLUGIN,
|
|
22
22
|
meta: () => meta
|
|
23
23
|
});
|
|
24
|
-
module.exports = __toCommonJS(
|
|
24
|
+
module.exports = __toCommonJS(chunk_AKNWBLRY_exports);
|
|
25
25
|
var GRAPH_PLUGIN = "dxos.org/plugin/graph";
|
|
26
26
|
var meta = {
|
|
27
|
-
id: GRAPH_PLUGIN
|
|
27
|
+
id: GRAPH_PLUGIN,
|
|
28
|
+
name: "Graph"
|
|
28
29
|
};
|
|
29
30
|
// Annotate the CommonJS export names for ESM import in node:
|
|
30
31
|
0 && (module.exports = {
|
|
31
32
|
GRAPH_PLUGIN,
|
|
32
33
|
meta
|
|
33
34
|
});
|
|
34
|
-
//# sourceMappingURL=chunk-
|
|
35
|
+
//# sourceMappingURL=chunk-AKNWBLRY.cjs.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/meta.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type PluginMeta } from '@dxos/app-framework';\n\nexport const GRAPH_PLUGIN = 'dxos.org/plugin/graph';\n\nexport const meta = {\n id: GRAPH_PLUGIN,\n}
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAMO,IAAMA,eAAe;AAErB,IAAMC,
|
|
6
|
-
"names": ["GRAPH_PLUGIN", "meta", "id"]
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type PluginMeta } from '@dxos/app-framework';\n\nexport const GRAPH_PLUGIN = 'dxos.org/plugin/graph';\n\nexport const meta: PluginMeta = {\n id: GRAPH_PLUGIN,\n name: 'Graph',\n};\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAMO,IAAMA,eAAe;AAErB,IAAMC,OAAmB;EAC9BC,IAAIF;EACJG,MAAM;AACR;",
|
|
6
|
+
"names": ["GRAPH_PLUGIN", "meta", "id", "name"]
|
|
7
7
|
}
|
|
@@ -16,16 +16,16 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var
|
|
20
|
-
__export(
|
|
19
|
+
var graph_GCGIYOGJ_exports = {};
|
|
20
|
+
__export(graph_GCGIYOGJ_exports, {
|
|
21
21
|
default: () => graph_default
|
|
22
22
|
});
|
|
23
|
-
module.exports = __toCommonJS(
|
|
24
|
-
var
|
|
23
|
+
module.exports = __toCommonJS(graph_GCGIYOGJ_exports);
|
|
24
|
+
var import_chunk_AKNWBLRY = require("./chunk-AKNWBLRY.cjs");
|
|
25
25
|
var import_signals_core = require("@preact/signals-core");
|
|
26
26
|
var import_app_framework = require("@dxos/app-framework");
|
|
27
27
|
var import_app_graph = require("@dxos/app-graph");
|
|
28
|
-
var KEY = `${
|
|
28
|
+
var KEY = `${import_chunk_AKNWBLRY.GRAPH_PLUGIN}/app-graph`;
|
|
29
29
|
var graph_default = async (context) => {
|
|
30
30
|
const builder = import_app_graph.GraphBuilder.from(localStorage.getItem(KEY) ?? void 0);
|
|
31
31
|
const interval = setInterval(() => {
|
|
@@ -55,4 +55,4 @@ var setupDevtools = (graph) => {
|
|
|
55
55
|
globalThis.composer ??= {};
|
|
56
56
|
globalThis.composer.graph = graph;
|
|
57
57
|
};
|
|
58
|
-
//# sourceMappingURL=graph-
|
|
58
|
+
//# sourceMappingURL=graph-GCGIYOGJ.cjs.map
|
package/dist/lib/node/index.cjs
CHANGED
|
@@ -29,17 +29,17 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
29
29
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
30
30
|
var node_exports = {};
|
|
31
31
|
__export(node_exports, {
|
|
32
|
-
GRAPH_PLUGIN: () =>
|
|
32
|
+
GRAPH_PLUGIN: () => import_chunk_AKNWBLRY.GRAPH_PLUGIN,
|
|
33
33
|
GraphPlugin: () => GraphPlugin,
|
|
34
|
-
meta: () =>
|
|
34
|
+
meta: () => import_chunk_AKNWBLRY.meta
|
|
35
35
|
});
|
|
36
36
|
module.exports = __toCommonJS(node_exports);
|
|
37
|
-
var
|
|
37
|
+
var import_chunk_AKNWBLRY = require("./chunk-AKNWBLRY.cjs");
|
|
38
38
|
__reExport(node_exports, require("@dxos/app-graph"), module.exports);
|
|
39
39
|
var import_app_framework = require("@dxos/app-framework");
|
|
40
|
-
var GraphPlugin = () => (0, import_app_framework.definePlugin)(
|
|
40
|
+
var GraphPlugin = () => (0, import_app_framework.definePlugin)(import_chunk_AKNWBLRY.meta, [
|
|
41
41
|
(0, import_app_framework.defineModule)({
|
|
42
|
-
id: `${
|
|
42
|
+
id: `${import_chunk_AKNWBLRY.meta.id}/module/graph`,
|
|
43
43
|
activatesOn: import_app_framework.Events.Startup,
|
|
44
44
|
activatesBefore: [
|
|
45
45
|
import_app_framework.Events.SetupAppGraph,
|
|
@@ -48,7 +48,7 @@ var GraphPlugin = () => (0, import_app_framework.definePlugin)(import_chunk_KHIP
|
|
|
48
48
|
activatesAfter: [
|
|
49
49
|
import_app_framework.Events.AppGraphReady
|
|
50
50
|
],
|
|
51
|
-
activate: (0, import_app_framework.lazy)(() => import("./graph-
|
|
51
|
+
activate: (0, import_app_framework.lazy)(() => import("./graph-GCGIYOGJ.cjs"))
|
|
52
52
|
})
|
|
53
53
|
]);
|
|
54
54
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/lib/node/meta.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"packages/plugins/plugin-graph/src/meta.ts":{"bytes":
|
|
1
|
+
{"inputs":{"packages/plugins/plugin-graph/src/meta.ts":{"bytes":950,"imports":[],"format":"esm"},"packages/plugins/plugin-graph/src/graph.ts":{"bytes":6242,"imports":[{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-graph","kind":"import-statement","external":true},{"path":"packages/plugins/plugin-graph/src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"},"packages/plugins/plugin-graph/src/GraphPlugin.ts":{"bytes":2810,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"packages/plugins/plugin-graph/src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"packages/plugins/plugin-graph/src/graph.ts","kind":"dynamic-import","original":"./graph"}],"format":"esm"},"packages/plugins/plugin-graph/src/index.ts":{"bytes":697,"imports":[{"path":"@dxos/app-graph","kind":"import-statement","external":true},{"path":"packages/plugins/plugin-graph/src/GraphPlugin.ts","kind":"import-statement","original":"./GraphPlugin"},{"path":"packages/plugins/plugin-graph/src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"}},"outputs":{"packages/plugins/plugin-graph/dist/lib/node/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1499},"packages/plugins/plugin-graph/dist/lib/node/index.cjs":{"imports":[{"path":"packages/plugins/plugin-graph/dist/lib/node/chunk-AKNWBLRY.cjs","kind":"import-statement"},{"path":"@dxos/app-graph","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"packages/plugins/plugin-graph/dist/lib/node/graph-GCGIYOGJ.cjs","kind":"dynamic-import"}],"exports":["GRAPH_PLUGIN","GraphPlugin","meta"],"entryPoint":"packages/plugins/plugin-graph/src/index.ts","inputs":{"packages/plugins/plugin-graph/src/index.ts":{"bytesInOutput":33},"packages/plugins/plugin-graph/src/GraphPlugin.ts":{"bytesInOutput":417}},"bytes":698},"packages/plugins/plugin-graph/dist/lib/node/graph-GCGIYOGJ.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3429},"packages/plugins/plugin-graph/dist/lib/node/graph-GCGIYOGJ.cjs":{"imports":[{"path":"packages/plugins/plugin-graph/dist/lib/node/chunk-AKNWBLRY.cjs","kind":"import-statement"},{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-graph","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"packages/plugins/plugin-graph/src/graph.ts","inputs":{"packages/plugins/plugin-graph/src/graph.ts":{"bytesInOutput":1331}},"bytes":1516},"packages/plugins/plugin-graph/dist/lib/node/chunk-AKNWBLRY.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":447},"packages/plugins/plugin-graph/dist/lib/node/chunk-AKNWBLRY.cjs":{"imports":[],"exports":["GRAPH_PLUGIN","meta"],"inputs":{"packages/plugins/plugin-graph/src/meta.ts":{"bytesInOutput":96}},"bytes":221}}}
|
|
@@ -3,11 +3,12 @@ import { createRequire } from 'node:module';const require = createRequire(import
|
|
|
3
3
|
// packages/plugins/plugin-graph/src/meta.ts
|
|
4
4
|
var GRAPH_PLUGIN = "dxos.org/plugin/graph";
|
|
5
5
|
var meta = {
|
|
6
|
-
id: GRAPH_PLUGIN
|
|
6
|
+
id: GRAPH_PLUGIN,
|
|
7
|
+
name: "Graph"
|
|
7
8
|
};
|
|
8
9
|
|
|
9
10
|
export {
|
|
10
11
|
GRAPH_PLUGIN,
|
|
11
12
|
meta
|
|
12
13
|
};
|
|
13
|
-
//# sourceMappingURL=chunk-
|
|
14
|
+
//# sourceMappingURL=chunk-RJQY6JZL.mjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/meta.ts"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type PluginMeta } from '@dxos/app-framework';\n\nexport const GRAPH_PLUGIN = 'dxos.org/plugin/graph';\n\nexport const meta: PluginMeta = {\n id: GRAPH_PLUGIN,\n name: 'Graph',\n};\n"],
|
|
5
|
+
"mappings": ";;;AAMO,IAAMA,eAAe;AAErB,IAAMC,OAAmB;EAC9BC,IAAIF;EACJG,MAAM;AACR;",
|
|
6
|
+
"names": ["GRAPH_PLUGIN", "meta", "id", "name"]
|
|
7
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
GRAPH_PLUGIN
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-RJQY6JZL.mjs";
|
|
5
5
|
|
|
6
6
|
// packages/plugins/plugin-graph/src/graph.ts
|
|
7
7
|
import { batch, effect, untracked } from "@preact/signals-core";
|
|
@@ -40,4 +40,4 @@ var setupDevtools = (graph) => {
|
|
|
40
40
|
export {
|
|
41
41
|
graph_default as default
|
|
42
42
|
};
|
|
43
|
-
//# sourceMappingURL=graph-
|
|
43
|
+
//# sourceMappingURL=graph-NUZMWBDN.mjs.map
|
|
@@ -2,7 +2,7 @@ import { createRequire } from 'node:module';const require = createRequire(import
|
|
|
2
2
|
import {
|
|
3
3
|
GRAPH_PLUGIN,
|
|
4
4
|
meta
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-RJQY6JZL.mjs";
|
|
6
6
|
|
|
7
7
|
// packages/plugins/plugin-graph/src/index.ts
|
|
8
8
|
export * from "@dxos/app-graph";
|
|
@@ -20,7 +20,7 @@ var GraphPlugin = () => definePlugin(meta, [
|
|
|
20
20
|
activatesAfter: [
|
|
21
21
|
Events.AppGraphReady
|
|
22
22
|
],
|
|
23
|
-
activate: lazy(() => import("./graph-
|
|
23
|
+
activate: lazy(() => import("./graph-NUZMWBDN.mjs"))
|
|
24
24
|
})
|
|
25
25
|
]);
|
|
26
26
|
export {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"packages/plugins/plugin-graph/src/meta.ts":{"bytes":
|
|
1
|
+
{"inputs":{"packages/plugins/plugin-graph/src/meta.ts":{"bytes":950,"imports":[],"format":"esm"},"packages/plugins/plugin-graph/src/graph.ts":{"bytes":6242,"imports":[{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-graph","kind":"import-statement","external":true},{"path":"packages/plugins/plugin-graph/src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"},"packages/plugins/plugin-graph/src/GraphPlugin.ts":{"bytes":2810,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"packages/plugins/plugin-graph/src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"packages/plugins/plugin-graph/src/graph.ts","kind":"dynamic-import","original":"./graph"}],"format":"esm"},"packages/plugins/plugin-graph/src/index.ts":{"bytes":697,"imports":[{"path":"@dxos/app-graph","kind":"import-statement","external":true},{"path":"packages/plugins/plugin-graph/src/GraphPlugin.ts","kind":"import-statement","original":"./GraphPlugin"},{"path":"packages/plugins/plugin-graph/src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"}},"outputs":{"packages/plugins/plugin-graph/dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1500},"packages/plugins/plugin-graph/dist/lib/node-esm/index.mjs":{"imports":[{"path":"packages/plugins/plugin-graph/dist/lib/node-esm/chunk-RJQY6JZL.mjs","kind":"import-statement"},{"path":"@dxos/app-graph","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"packages/plugins/plugin-graph/dist/lib/node-esm/graph-NUZMWBDN.mjs","kind":"dynamic-import"}],"exports":["GRAPH_PLUGIN","GraphPlugin","meta"],"entryPoint":"packages/plugins/plugin-graph/src/index.ts","inputs":{"packages/plugins/plugin-graph/src/index.ts":{"bytesInOutput":33},"packages/plugins/plugin-graph/src/GraphPlugin.ts":{"bytesInOutput":417}},"bytes":790},"packages/plugins/plugin-graph/dist/lib/node-esm/graph-NUZMWBDN.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3430},"packages/plugins/plugin-graph/dist/lib/node-esm/graph-NUZMWBDN.mjs":{"imports":[{"path":"packages/plugins/plugin-graph/dist/lib/node-esm/chunk-RJQY6JZL.mjs","kind":"import-statement"},{"path":"@preact/signals-core","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-graph","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"packages/plugins/plugin-graph/src/graph.ts","inputs":{"packages/plugins/plugin-graph/src/graph.ts":{"bytesInOutput":1331}},"bytes":1608},"packages/plugins/plugin-graph/dist/lib/node-esm/chunk-RJQY6JZL.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":449},"packages/plugins/plugin-graph/dist/lib/node-esm/chunk-RJQY6JZL.mjs":{"imports":[],"exports":["GRAPH_PLUGIN","meta"],"inputs":{"packages/plugins/plugin-graph/src/meta.ts":{"bytesInOutput":96}},"bytes":314}}}
|
package/dist/types/src/meta.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"meta.d.ts","sourceRoot":"","sources":["../../../src/meta.ts"],"names":[],"mappings":"
|
|
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,UAGlB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/plugin-graph",
|
|
3
|
-
"version": "0.8.1-staging.
|
|
3
|
+
"version": "0.8.1-staging.5be625a",
|
|
4
4
|
"description": "DXOS Surface plugin for constructing knowledge graphs",
|
|
5
5
|
"homepage": "https://dxos.org",
|
|
6
6
|
"bugs": "https://github.com/dxos/dxos/issues",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@preact/signals-core": "^1.6.0",
|
|
28
|
-
"@dxos/app-framework": "0.8.1-staging.
|
|
29
|
-
"@dxos/
|
|
30
|
-
"@dxos/
|
|
31
|
-
"@dxos/
|
|
28
|
+
"@dxos/app-framework": "0.8.1-staging.5be625a",
|
|
29
|
+
"@dxos/app-graph": "0.8.1-staging.5be625a",
|
|
30
|
+
"@dxos/async": "0.8.1-staging.5be625a",
|
|
31
|
+
"@dxos/debug": "0.8.1-staging.5be625a"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/react": "~18.2.0",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"react": "~18.2.0",
|
|
37
37
|
"react-dom": "~18.2.0",
|
|
38
38
|
"vite": "5.4.7",
|
|
39
|
-
"@dxos/react-client": "0.8.1-staging.
|
|
40
|
-
"@dxos/storybook-utils": "0.8.1-staging.
|
|
39
|
+
"@dxos/react-client": "0.8.1-staging.5be625a",
|
|
40
|
+
"@dxos/storybook-utils": "0.8.1-staging.5be625a"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": "~18.2.0",
|
package/src/meta.ts
CHANGED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../src/meta.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type PluginMeta } from '@dxos/app-framework';\n\nexport const GRAPH_PLUGIN = 'dxos.org/plugin/graph';\n\nexport const meta = {\n id: GRAPH_PLUGIN,\n} satisfies PluginMeta;\n"],
|
|
5
|
-
"mappings": ";AAMO,IAAMA,eAAe;AAErB,IAAMC,OAAO;EAClBC,IAAIF;AACN;",
|
|
6
|
-
"names": ["GRAPH_PLUGIN", "meta", "id"]
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../src/meta.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type PluginMeta } from '@dxos/app-framework';\n\nexport const GRAPH_PLUGIN = 'dxos.org/plugin/graph';\n\nexport const meta = {\n id: GRAPH_PLUGIN,\n} satisfies PluginMeta;\n"],
|
|
5
|
-
"mappings": ";;;AAMO,IAAMA,eAAe;AAErB,IAAMC,OAAO;EAClBC,IAAIF;AACN;",
|
|
6
|
-
"names": ["GRAPH_PLUGIN", "meta", "id"]
|
|
7
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|