@particle-academy/fancy-flow 0.9.0 → 0.10.1
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 +28 -17
- package/dist/{chunk-6GGFEZH7.js → chunk-2DMBJN2O.js} +14 -5
- package/dist/chunk-2DMBJN2O.js.map +1 -0
- package/dist/chunk-F5RPRB7A.js +56 -0
- package/dist/chunk-F5RPRB7A.js.map +1 -0
- package/dist/{chunk-6RHAQ2LP.js → chunk-NCPQDVUE.js} +5 -54
- package/dist/chunk-NCPQDVUE.js.map +1 -0
- package/dist/index.cjs +15 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -4
- package/dist/index.js.map +1 -1
- package/dist/registry/index.d.cts +25 -24
- package/dist/registry/index.d.ts +25 -24
- package/dist/registry.cjs +4 -5
- package/dist/registry.cjs.map +1 -1
- package/dist/registry.js +2 -1
- package/dist/rich-input.cjs +56 -0
- package/dist/rich-input.cjs.map +1 -0
- package/dist/rich-input.d.cts +27 -0
- package/dist/rich-input.d.ts +27 -0
- package/dist/rich-input.js +37 -0
- package/dist/rich-input.js.map +1 -0
- package/dist/schema/index.d.cts +17 -1
- package/dist/schema/index.d.ts +17 -1
- package/dist/schema.cjs +34 -3
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.js +2 -1
- package/package.json +24 -2
- package/dist/chunk-6GGFEZH7.js.map +0 -1
- package/dist/chunk-6RHAQ2LP.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import { useFlowState, useFlowRun, applyStatusesToNodes } from './chunk-VEI743ZX.js';
|
|
2
2
|
export { applyStatusesToNodes, useFlowRun, useFlowState } from './chunk-VEI743ZX.js';
|
|
3
3
|
export { runFlow } from './chunk-HNBO4HP3.js';
|
|
4
|
-
import { buildNodeTypes, registerBuiltinKinds
|
|
5
|
-
export { BUILTIN_KINDS, RegistryNode,
|
|
4
|
+
import { buildNodeTypes, registerBuiltinKinds } from './chunk-NCPQDVUE.js';
|
|
5
|
+
export { BUILTIN_KINDS, RegistryNode, buildNodeTypes, registerBuiltinKinds } from './chunk-NCPQDVUE.js';
|
|
6
6
|
import { ReactFlowProvider, useReactFlow, addEdge, applyEdgeChanges, applyNodeChanges, Position, Handle, index, BackgroundVariant, Background, Controls, MiniMap } from './chunk-NF6NPY5N.js';
|
|
7
|
+
import { workflowToBlob, importWorkflow, exportWorkflow } from './chunk-2DMBJN2O.js';
|
|
8
|
+
export { WORKFLOW_SCHEMA_URL, WORKFLOW_SCHEMA_VERSION, exportWorkflow, importWorkflow, workflowToBlob } from './chunk-2DMBJN2O.js';
|
|
7
9
|
export { resolveNodePorts, resolvePortSpec } from './chunk-TITD5W4Y.js';
|
|
8
|
-
import { workflowToBlob, importWorkflow, exportWorkflow } from './chunk-6GGFEZH7.js';
|
|
9
|
-
export { WORKFLOW_SCHEMA_URL, WORKFLOW_SCHEMA_VERSION, exportWorkflow, importWorkflow, workflowToBlob } from './chunk-6GGFEZH7.js';
|
|
10
10
|
import { onNodeKindsChanged, listNodeKinds, getNodeKind, defaultConfigFor, validateConfig, categoryAccent } from './chunk-CPSOC27D.js';
|
|
11
11
|
export { categoryAccent, defaultConfigFor, getNodeKind, listNodeKinds, onNodeKindsChanged, registerNodeKind, validateConfig } from './chunk-CPSOC27D.js';
|
|
12
|
+
import { getRichInputAdapter } from './chunk-F5RPRB7A.js';
|
|
13
|
+
export { RichInputPreview, getRichInputAdapter, isRichInputEnabled, onRichInputAdapterChanged, registerRichInputAdapter } from './chunk-F5RPRB7A.js';
|
|
12
14
|
import { memo, createContext, forwardRef, useState, useEffect, useMemo, useCallback, useImperativeHandle, useRef, useContext } from 'react';
|
|
13
15
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
14
16
|
|