@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.
Files changed (52) hide show
  1. package/dist/chunk-27RZJAE2.js +2586 -0
  2. package/dist/chunk-27RZJAE2.js.map +1 -0
  3. package/dist/{chunk-FNYLKSFJ.js → chunk-2QTEELJE.js} +4 -3
  4. package/dist/chunk-2QTEELJE.js.map +1 -0
  5. package/dist/{chunk-MTONBM53.js → chunk-6AYC3BWI.js} +4 -4
  6. package/dist/{chunk-MTONBM53.js.map → chunk-6AYC3BWI.js.map} +1 -1
  7. package/dist/{chunk-IEYCNFXZ.js → chunk-6TH646CS.js} +127 -5
  8. package/dist/chunk-6TH646CS.js.map +1 -0
  9. package/dist/{chunk-UCCTXJXL.js → chunk-BUNFPBTF.js} +5 -4
  10. package/dist/chunk-BUNFPBTF.js.map +1 -0
  11. package/dist/{chunk-B7HKJJVV.js → chunk-FV3D366L.js} +3 -3
  12. package/dist/{chunk-B7HKJJVV.js.map → chunk-FV3D366L.js.map} +1 -1
  13. package/dist/{chunk-HQGOFGAL.js → chunk-OWENS2H5.js} +64 -2754
  14. package/dist/chunk-OWENS2H5.js.map +1 -0
  15. package/dist/{chunk-PNHZHEWE.js → chunk-RE3XNVSB.js} +3 -3
  16. package/dist/{chunk-PNHZHEWE.js.map → chunk-RE3XNVSB.js.map} +1 -1
  17. package/dist/durable.cjs +153 -9213
  18. package/dist/durable.cjs.map +1 -1
  19. package/dist/durable.js +1 -2
  20. package/dist/durable.js.map +1 -1
  21. package/dist/engine.cjs +103 -9165
  22. package/dist/engine.cjs.map +1 -1
  23. package/dist/engine.js +4 -5
  24. package/dist/engine.js.map +1 -1
  25. package/dist/index.cjs +11135 -11121
  26. package/dist/index.cjs.map +1 -1
  27. package/dist/index.js +15 -13
  28. package/dist/index.js.map +1 -1
  29. package/dist/registry/index.d.cts +15 -3
  30. package/dist/registry/index.d.ts +15 -3
  31. package/dist/registry.cjs +11166 -11153
  32. package/dist/registry.cjs.map +1 -1
  33. package/dist/registry.js +4 -3
  34. package/dist/runtime.cjs +10772 -10924
  35. package/dist/runtime.cjs.map +1 -1
  36. package/dist/runtime.js +4 -4
  37. package/dist/schema.cjs +85 -9147
  38. package/dist/schema.cjs.map +1 -1
  39. package/dist/schema.js +3 -4
  40. package/dist/screens.cjs +7 -52
  41. package/dist/screens.cjs.map +1 -1
  42. package/dist/screens.js +6 -5
  43. package/dist/screens.js.map +1 -1
  44. package/dist/ux.cjs +89 -9147
  45. package/dist/ux.cjs.map +1 -1
  46. package/dist/ux.js +1 -2
  47. package/dist/ux.js.map +1 -1
  48. package/package.json +1 -1
  49. package/dist/chunk-FNYLKSFJ.js.map +0 -1
  50. package/dist/chunk-HQGOFGAL.js.map +0 -1
  51. package/dist/chunk-IEYCNFXZ.js.map +0 -1
  52. 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
- /** Register every built-in kind. Idempotent via the registry. */
230
- declare function registerBuiltinKinds(): void;
231
- /** Exported list for hosts that want to selectively re-register. */
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
@@ -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
- /** Register every built-in kind. Idempotent via the registry. */
230
- declare function registerBuiltinKinds(): void;
231
- /** Exported list for hosts that want to selectively re-register. */
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