@dfosco/storyboard-react 4.2.0-beta.18 → 4.2.0-beta.19
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 +7 -3
- package/src/vite/data-plugin.js +2 -2
package/package.json
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dfosco/storyboard-react",
|
|
3
|
-
"version": "4.2.0-beta.
|
|
3
|
+
"version": "4.2.0-beta.19",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@base-ui/react": "^1.4.0",
|
|
7
|
-
"@dfosco/storyboard-core": "4.2.0-beta.
|
|
8
|
-
"@dfosco/tiny-canvas": "4.2.0-beta.
|
|
7
|
+
"@dfosco/storyboard-core": "4.2.0-beta.19",
|
|
8
|
+
"@dfosco/tiny-canvas": "4.2.0-beta.19",
|
|
9
9
|
"@neodrag/react": "^2.3.1",
|
|
10
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
11
|
+
"@radix-ui/react-visually-hidden": "^1.2.4",
|
|
10
12
|
"ansi-to-html": "^0.7.2",
|
|
13
|
+
"cmdk": "^1.1.1",
|
|
14
|
+
"feather-icons": "^4.29.2",
|
|
11
15
|
"ghostty-web": "^0.4.0",
|
|
12
16
|
"glob": "^11.0.0",
|
|
13
17
|
"jsonc-parser": "^3.3.1",
|
package/src/vite/data-plugin.js
CHANGED
|
@@ -5,9 +5,9 @@ import { globSync } from 'glob'
|
|
|
5
5
|
import { parse as parseJsonc } from 'jsonc-parser'
|
|
6
6
|
import { materializeFromText } from '@dfosco/storyboard-core/canvas/materializer'
|
|
7
7
|
import { toCanvasId } from '@dfosco/storyboard-core/canvas/identity'
|
|
8
|
-
import { isCanvasWriteInFlight } from '
|
|
8
|
+
import { isCanvasWriteInFlight } from '@dfosco/storyboard-core/canvas/writeGuard'
|
|
9
9
|
import { getConfig } from '@dfosco/storyboard-core/config'
|
|
10
|
-
import { list as listRunningServers } from '
|
|
10
|
+
import { list as listRunningServers } from '@dfosco/storyboard-core/worktree/serverRegistry'
|
|
11
11
|
|
|
12
12
|
const VIRTUAL_MODULE_ID = 'virtual:storyboard-data-index'
|
|
13
13
|
const RESOLVED_ID = '\0' + VIRTUAL_MODULE_ID
|