@particle-academy/fancy-flow 0.22.0 → 0.23.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/{chunk-YZTBRXBZ.js → chunk-AUL4LU63.js} +3 -3
- package/dist/{chunk-YZTBRXBZ.js.map → chunk-AUL4LU63.js.map} +1 -1
- package/dist/engine.js +1 -1
- package/dist/index.cjs +2201 -473
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +16 -3
- package/dist/index.js.map +1 -1
- package/dist/layout/index.d.cts +30 -0
- package/dist/layout/index.d.ts +30 -0
- package/dist/layout.cjs +1693 -0
- package/dist/layout.cjs.map +1 -0
- package/dist/layout.js +1691 -0
- package/dist/layout.js.map +1 -0
- package/dist/registry.js +2 -2
- package/package.json +12 -1
package/dist/registry.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { ANY_PORT_TYPE, BUILTIN_KINDS, DEFAULT_MAX_DEPTH, RegistryNode, buildNodeTypes, createConnectionValidator, declaredRoutes, defaultPortCompatibility, llmRouterExecutor as llmBranchExecutor, llmRouterExecutor, registerBuiltinKinds, resolveFallbackPort, subflowExecutor, subflowMode, subflowPorts } from './chunk-
|
|
1
|
+
export { ANY_PORT_TYPE, BUILTIN_KINDS, DEFAULT_MAX_DEPTH, RegistryNode, buildNodeTypes, createConnectionValidator, declaredRoutes, defaultPortCompatibility, llmRouterExecutor as llmBranchExecutor, llmRouterExecutor, registerBuiltinKinds, resolveFallbackPort, subflowExecutor, subflowMode, subflowPorts } from './chunk-AUL4LU63.js';
|
|
2
2
|
import './chunk-ZB4HHQMR.js';
|
|
3
3
|
export { LEGACY_PAUSE_PREFIXES, PAUSE_PREFIX, decodePause, encodePause, isPause, pauseForHuman } from './chunk-UEOE6B52.js';
|
|
4
|
+
export { capabilityStatus, getLlmClient, getWorkflowResolver, isResolutionFailure, registerLlmClient, registerWorkflowResolver } from './chunk-USL4FMFU.js';
|
|
4
5
|
import './chunk-KDHLKBL2.js';
|
|
5
6
|
export { nodeConfig, resolveNodePorts, resolvePortSpec } from './chunk-TITD5W4Y.js';
|
|
6
7
|
export { categoryAccent, defaultConfigFor, getNodeKind, kindIds, listNodeKinds, onNodeKindsChanged, registerNodeKind, resolveKindId, validateConfig } from './chunk-YXRLIV7A.js';
|
|
7
8
|
export { RichInputPreview, getRichInputAdapter, isRichInputEnabled, onRichInputAdapterChanged, registerRichInputAdapter } from './chunk-F5RPRB7A.js';
|
|
8
|
-
export { capabilityStatus, getLlmClient, getWorkflowResolver, isResolutionFailure, registerLlmClient, registerWorkflowResolver } from './chunk-USL4FMFU.js';
|
|
9
9
|
//# sourceMappingURL=registry.js.map
|
|
10
10
|
//# sourceMappingURL=registry.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@particle-academy/fancy-flow",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.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",
|
|
@@ -53,6 +53,16 @@
|
|
|
53
53
|
"default": "./dist/schema.cjs"
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
|
+
"./layout": {
|
|
57
|
+
"import": {
|
|
58
|
+
"types": "./dist/layout/index.d.ts",
|
|
59
|
+
"default": "./dist/layout.js"
|
|
60
|
+
},
|
|
61
|
+
"require": {
|
|
62
|
+
"types": "./dist/layout/index.d.cts",
|
|
63
|
+
"default": "./dist/layout.cjs"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
56
66
|
"./engine": {
|
|
57
67
|
"import": {
|
|
58
68
|
"types": "./dist/engine.d.ts",
|
|
@@ -127,6 +137,7 @@
|
|
|
127
137
|
"@particle-academy/fancy-auto-common": "^0.1.0"
|
|
128
138
|
},
|
|
129
139
|
"devDependencies": {
|
|
140
|
+
"@dagrejs/dagre": "^3.0.0",
|
|
130
141
|
"@particle-academy/fancy-cms-ui": "^0.2.0",
|
|
131
142
|
"@particle-academy/react-fancy": "^4.15.0",
|
|
132
143
|
"@testing-library/dom": "^10.4.1",
|