@particle-academy/fancy-flow 0.66.0 → 0.66.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/dist/chunk-27RZJAE2.js +2586 -0
- package/dist/chunk-27RZJAE2.js.map +1 -0
- package/dist/{chunk-FNYLKSFJ.js → chunk-2QTEELJE.js} +4 -3
- package/dist/chunk-2QTEELJE.js.map +1 -0
- package/dist/{chunk-MTONBM53.js → chunk-6AYC3BWI.js} +4 -4
- package/dist/{chunk-MTONBM53.js.map → chunk-6AYC3BWI.js.map} +1 -1
- package/dist/{chunk-IEYCNFXZ.js → chunk-6TH646CS.js} +127 -5
- package/dist/chunk-6TH646CS.js.map +1 -0
- package/dist/{chunk-UCCTXJXL.js → chunk-BUNFPBTF.js} +5 -4
- package/dist/chunk-BUNFPBTF.js.map +1 -0
- package/dist/{chunk-B7HKJJVV.js → chunk-FV3D366L.js} +3 -3
- package/dist/{chunk-B7HKJJVV.js.map → chunk-FV3D366L.js.map} +1 -1
- package/dist/{chunk-HQGOFGAL.js → chunk-OWENS2H5.js} +64 -2754
- package/dist/chunk-OWENS2H5.js.map +1 -0
- package/dist/{chunk-PNHZHEWE.js → chunk-RE3XNVSB.js} +3 -3
- package/dist/{chunk-PNHZHEWE.js.map → chunk-RE3XNVSB.js.map} +1 -1
- package/dist/durable.cjs +153 -9213
- package/dist/durable.cjs.map +1 -1
- package/dist/durable.js +1 -2
- package/dist/durable.js.map +1 -1
- package/dist/engine.cjs +103 -9165
- package/dist/engine.cjs.map +1 -1
- package/dist/engine.js +4 -5
- package/dist/engine.js.map +1 -1
- package/dist/index.cjs +11135 -11121
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +15 -13
- package/dist/index.js.map +1 -1
- package/dist/registry/index.d.cts +15 -3
- package/dist/registry/index.d.ts +15 -3
- package/dist/registry.cjs +11166 -11153
- package/dist/registry.cjs.map +1 -1
- package/dist/registry.js +4 -3
- package/dist/runtime.cjs +10772 -10924
- package/dist/runtime.cjs.map +1 -1
- package/dist/runtime.js +4 -4
- package/dist/schema.cjs +85 -9147
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.js +3 -4
- package/dist/screens.cjs +7 -52
- package/dist/screens.cjs.map +1 -1
- package/dist/screens.js +6 -5
- package/dist/screens.js.map +1 -1
- package/dist/ux.cjs +89 -9147
- package/dist/ux.cjs.map +1 -1
- package/dist/ux.js +1 -2
- package/dist/ux.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-FNYLKSFJ.js.map +0 -1
- package/dist/chunk-HQGOFGAL.js.map +0 -1
- package/dist/chunk-IEYCNFXZ.js.map +0 -1
- package/dist/chunk-UCCTXJXL.js.map +0 -1
|
@@ -226,10 +226,22 @@ declare function RichInputPreview({ config }: {
|
|
|
226
226
|
declare function RegistryNodeInner(props: NodeProps<FlowNode>): react.JSX.Element;
|
|
227
227
|
declare const RegistryNode: react.MemoExoticComponent<typeof RegistryNodeInner>;
|
|
228
228
|
|
|
229
|
-
/**
|
|
230
|
-
|
|
231
|
-
|
|
229
|
+
/**
|
|
230
|
+
* Every builtin, with renderers attached to the four that have one.
|
|
231
|
+
*
|
|
232
|
+
* A kind with no renderer is passed through by identity rather than copied, so
|
|
233
|
+
* `BUILTIN_KINDS` and `BUILTIN_KIND_DATA` share objects wherever there is
|
|
234
|
+
* nothing to add.
|
|
235
|
+
*/
|
|
232
236
|
declare const BUILTIN_KINDS: NodeKindDefinition[];
|
|
237
|
+
/**
|
|
238
|
+
* Register every built-in kind, renderers included.
|
|
239
|
+
*
|
|
240
|
+
* Idempotent, and safe to call after `registry.ts` has already self-populated
|
|
241
|
+
* the plain table: `registerNodeKind` replaces by name, so this UPGRADES the
|
|
242
|
+
* four kinds in place rather than duplicating anything.
|
|
243
|
+
*/
|
|
244
|
+
declare function registerBuiltinKinds(): void;
|
|
233
245
|
|
|
234
246
|
/**
|
|
235
247
|
* Build an xyflow `nodeTypes` map from the registry — every registered
|
package/dist/registry/index.d.ts
CHANGED
|
@@ -226,10 +226,22 @@ declare function RichInputPreview({ config }: {
|
|
|
226
226
|
declare function RegistryNodeInner(props: NodeProps<FlowNode>): react.JSX.Element;
|
|
227
227
|
declare const RegistryNode: react.MemoExoticComponent<typeof RegistryNodeInner>;
|
|
228
228
|
|
|
229
|
-
/**
|
|
230
|
-
|
|
231
|
-
|
|
229
|
+
/**
|
|
230
|
+
* Every builtin, with renderers attached to the four that have one.
|
|
231
|
+
*
|
|
232
|
+
* A kind with no renderer is passed through by identity rather than copied, so
|
|
233
|
+
* `BUILTIN_KINDS` and `BUILTIN_KIND_DATA` share objects wherever there is
|
|
234
|
+
* nothing to add.
|
|
235
|
+
*/
|
|
232
236
|
declare const BUILTIN_KINDS: NodeKindDefinition[];
|
|
237
|
+
/**
|
|
238
|
+
* Register every built-in kind, renderers included.
|
|
239
|
+
*
|
|
240
|
+
* Idempotent, and safe to call after `registry.ts` has already self-populated
|
|
241
|
+
* the plain table: `registerNodeKind` replaces by name, so this UPGRADES the
|
|
242
|
+
* four kinds in place rather than duplicating anything.
|
|
243
|
+
*/
|
|
244
|
+
declare function registerBuiltinKinds(): void;
|
|
233
245
|
|
|
234
246
|
/**
|
|
235
247
|
* Build an xyflow `nodeTypes` map from the registry — every registered
|