@dxos/app-graph 0.6.12-main.ed7cda7 → 0.6.12-staging.e11e696

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/app-graph",
3
- "version": "0.6.12-main.ed7cda7",
3
+ "version": "0.6.12-staging.e11e696",
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",
@@ -27,13 +27,13 @@
27
27
  "dependencies": {
28
28
  "@preact/signals-core": "^1.6.0",
29
29
  "main-thread-scheduling": "^14.1.1",
30
- "@dxos/async": "0.6.12-main.ed7cda7",
31
- "@dxos/debug": "0.6.12-main.ed7cda7",
32
- "@dxos/echo-schema": "0.6.12-main.ed7cda7",
33
- "@dxos/echo-signals": "0.6.12-main.ed7cda7",
34
- "@dxos/log": "0.6.12-main.ed7cda7",
35
- "@dxos/util": "0.6.12-main.ed7cda7",
36
- "@dxos/invariant": "0.6.12-main.ed7cda7"
30
+ "@dxos/async": "0.6.12-staging.e11e696",
31
+ "@dxos/debug": "0.6.12-staging.e11e696",
32
+ "@dxos/echo-signals": "0.6.12-staging.e11e696",
33
+ "@dxos/echo-schema": "0.6.12-staging.e11e696",
34
+ "@dxos/invariant": "0.6.12-staging.e11e696",
35
+ "@dxos/log": "0.6.12-staging.e11e696",
36
+ "@dxos/util": "0.6.12-staging.e11e696"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@phosphor-icons/react": "^2.1.5",
@@ -42,13 +42,14 @@
42
42
  "react": "~18.2.0",
43
43
  "react-dom": "~18.2.0",
44
44
  "vite": "5.4.7",
45
- "@dxos/random": "0.6.12-main.ed7cda7",
46
- "@dxos/react-ui": "0.6.12-main.ed7cda7",
47
- "@dxos/react-client": "0.6.12-main.ed7cda7",
48
- "@dxos/react-ui-theme": "0.6.12-main.ed7cda7",
49
- "@dxos/storybook-utils": "0.6.12-main.ed7cda7"
45
+ "@dxos/random": "0.6.12-staging.e11e696",
46
+ "@dxos/react-client": "0.6.12-staging.e11e696",
47
+ "@dxos/react-ui": "0.6.12-staging.e11e696",
48
+ "@dxos/react-ui-theme": "0.6.12-staging.e11e696",
49
+ "@dxos/storybook-utils": "0.6.12-staging.e11e696"
50
50
  },
51
51
  "peerDependencies": {
52
+ "@phosphor-icons/react": "^2.1.5",
52
53
  "react": "~18.2.0",
53
54
  "react-dom": "~18.2.0"
54
55
  },
package/src/graph.test.ts CHANGED
@@ -6,12 +6,12 @@ import { effect } from '@preact/signals-core';
6
6
  import { describe, expect, test } from 'vitest';
7
7
 
8
8
  import { updateCounter } from '@dxos/echo-schema/testing';
9
- import { registerSignalRuntime } from '@dxos/echo-signals';
9
+ import { registerSignalsRuntime } from '@dxos/echo-signals';
10
10
 
11
11
  import { Graph, ROOT_ID, ROOT_TYPE, getGraph } from './graph';
12
12
  import { type Node, type NodeFilter } from './node';
13
13
 
14
- registerSignalRuntime();
14
+ registerSignalsRuntime();
15
15
 
16
16
  const longestPaths = new Map<string, string[]>();
17
17
 
@@ -8,7 +8,7 @@ import { Pause, Play, Plus, Timer } from '@phosphor-icons/react';
8
8
  import React, { useEffect, useState } from 'react';
9
9
 
10
10
  import { type EchoReactiveObject, create } from '@dxos/echo-schema';
11
- import { registerSignalRuntime } from '@dxos/echo-signals';
11
+ import { registerSignalsRuntime } from '@dxos/echo-signals';
12
12
  import { faker } from '@dxos/random';
13
13
  import { type Client, useClient } from '@dxos/react-client';
14
14
  import {
@@ -35,7 +35,7 @@ const DEFAULT_PERIOD = 500;
35
35
 
36
36
  const EMPTY_ARRAY: never[] = [];
37
37
 
38
- registerSignalRuntime();
38
+ registerSignalsRuntime();
39
39
 
40
40
  enum Action {
41
41
  CREATE_SPACE = 'CREATE_SPACE',