@cascivo/flow 0.1.13 → 0.1.15
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/README.md +6 -0
- package/package.json +4 -4
- package/readme.body.md +6 -0
package/README.md
CHANGED
|
@@ -51,6 +51,12 @@ export function Pipeline() {
|
|
|
51
51
|
}
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
+
> **Vite SSR (TanStack Start, Remix, vite-ssr, workerd)?** The flow CSS ships as side-effect
|
|
55
|
+
> imports a bare server loader can't resolve — mark `ssr: { noExternal: [/^@cascivo\//] }` (the
|
|
56
|
+
> pattern already covers `@cascivo/flow`) and import `@cascivo/flow/styles.css` once in your root
|
|
57
|
+
> entry. Full recipe:
|
|
58
|
+
> [USING-WITH-VITE-SSR.md](https://github.com/cascivo/cascivo/blob/main/docs/USING-WITH-VITE-SSR.md).
|
|
59
|
+
|
|
54
60
|
### Scripted storylines
|
|
55
61
|
|
|
56
62
|
`<FlowStory>` walks the viewer through a graph step by step with fade-in
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cascivo/flow",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Flow & diagram components — CSS-native, signal-driven node/edge graphs with pan/zoom, draggable nodes, animated edges, and scripted storylines, zero dependencies",
|
|
6
6
|
"keywords": [
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"provenance": true
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@cascivo/core": "^0.
|
|
50
|
-
"@cascivo/i18n": "^0.2.
|
|
49
|
+
"@cascivo/core": "^0.5.2",
|
|
50
|
+
"@cascivo/i18n": "^0.2.10"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@testing-library/jest-dom": "^6.9.1",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"vite-plus": "^0.2.1"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
|
-
"@preact/signals-react": ">=
|
|
66
|
+
"@preact/signals-react": ">=3.0.0",
|
|
67
67
|
"react": ">=18.0.0",
|
|
68
68
|
"react-dom": ">=18.0.0"
|
|
69
69
|
},
|
package/readme.body.md
CHANGED
|
@@ -33,6 +33,12 @@ export function Pipeline() {
|
|
|
33
33
|
}
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
+
> **Vite SSR (TanStack Start, Remix, vite-ssr, workerd)?** The flow CSS ships as side-effect
|
|
37
|
+
> imports a bare server loader can't resolve — mark `ssr: { noExternal: [/^@cascivo\//] }` (the
|
|
38
|
+
> pattern already covers `@cascivo/flow`) and import `@cascivo/flow/styles.css` once in your root
|
|
39
|
+
> entry. Full recipe:
|
|
40
|
+
> [USING-WITH-VITE-SSR.md](https://github.com/cascivo/cascivo/blob/main/docs/USING-WITH-VITE-SSR.md).
|
|
41
|
+
|
|
36
42
|
### Scripted storylines
|
|
37
43
|
|
|
38
44
|
`<FlowStory>` walks the viewer through a graph step by step with fade-in
|