@particle-academy/fancy-flow 0.37.0 → 0.39.0
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/index.cjs +26 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +69 -1
- package/dist/index.d.ts +69 -1
- package/dist/index.js +25 -1
- package/dist/index.js.map +1 -1
- package/package.json +14 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@particle-academy/fancy-flow",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.39.0",
|
|
4
4
|
"description": "Workflow editor + runner. Six built-in node kits (trigger / action / decision / output / note / subgraph), tokenized theme, topological execution with per-node status. React-flow bundled; consumers npm install fancy-flow and get nothing extra.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -148,11 +148,11 @@
|
|
|
148
148
|
],
|
|
149
149
|
"peerDependencies": {
|
|
150
150
|
"@particle-academy/fancy-cms-ui": ">=0.2",
|
|
151
|
+
"@particle-academy/fancy-screens": ">=0.4 <2.0",
|
|
151
152
|
"@particle-academy/react-fancy": ">=3",
|
|
152
153
|
"ai": ">=5",
|
|
153
|
-
"react": "^
|
|
154
|
-
"react-dom": "^
|
|
155
|
-
"@particle-academy/fancy-screens": ">=0.4 <2.0"
|
|
154
|
+
"react": "^19.0.0",
|
|
155
|
+
"react-dom": "^19.0.0"
|
|
156
156
|
},
|
|
157
157
|
"dependencies": {
|
|
158
158
|
"@particle-academy/fancy-auto-common": ">=0.1 <2.0"
|
|
@@ -160,25 +160,26 @@
|
|
|
160
160
|
"devDependencies": {
|
|
161
161
|
"@dagrejs/dagre": "^3.0.0",
|
|
162
162
|
"@particle-academy/fancy-cms-ui": "^0.2.0",
|
|
163
|
+
"@particle-academy/fancy-query": "^0.8.0",
|
|
164
|
+
"@particle-academy/fancy-screens": "^0.4.3",
|
|
163
165
|
"@particle-academy/react-fancy": "^4.15.0",
|
|
164
166
|
"@testing-library/dom": "^10.4.1",
|
|
165
167
|
"@testing-library/react": "^16.3.2",
|
|
166
|
-
"@types/react": "^19.
|
|
167
|
-
"@types/react-dom": "^19.
|
|
168
|
+
"@types/react": "^19.2.0",
|
|
169
|
+
"@types/react-dom": "^19.2.0",
|
|
168
170
|
"@xyflow/react": "^12.4.0",
|
|
169
171
|
"ai": "^7.0.31",
|
|
170
172
|
"clsx": "^2.1.0",
|
|
171
173
|
"eslint": "^10.8.0",
|
|
172
174
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
173
175
|
"jsdom": "^29.1.1",
|
|
174
|
-
"react": "^19.
|
|
175
|
-
"react-dom": "^19.
|
|
176
|
+
"react": "^19.2.0",
|
|
177
|
+
"react-dom": "^19.2.0",
|
|
176
178
|
"tsup": "^8.0.0",
|
|
177
179
|
"typescript": "^5.7.0",
|
|
178
180
|
"typescript-eslint": "^8.65.0",
|
|
179
181
|
"vitest": "^3.2.6",
|
|
180
|
-
"zod": "^4.4.3"
|
|
181
|
-
"@particle-academy/fancy-screens": "^0.4.3"
|
|
182
|
+
"zod": "^4.4.3"
|
|
182
183
|
},
|
|
183
184
|
"publishConfig": {
|
|
184
185
|
"access": "public"
|
|
@@ -203,5 +204,8 @@
|
|
|
203
204
|
"@particle-academy/fancy-screens": {
|
|
204
205
|
"optional": true
|
|
205
206
|
}
|
|
207
|
+
},
|
|
208
|
+
"engines": {
|
|
209
|
+
"node": ">=22"
|
|
206
210
|
}
|
|
207
211
|
}
|