@particle-academy/fancy-flow 0.48.0 → 0.48.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 (38) hide show
  1. package/dist/{chunk-7DTUZUTB.js → chunk-54SN6LML.js} +3 -3
  2. package/dist/{chunk-7DTUZUTB.js.map → chunk-54SN6LML.js.map} +1 -1
  3. package/dist/{chunk-E6T3FZZP.js → chunk-6HGXAU5L.js} +3 -3
  4. package/dist/{chunk-E6T3FZZP.js.map → chunk-6HGXAU5L.js.map} +1 -1
  5. package/dist/{chunk-KTGXZBUM.js → chunk-ACGCHWCM.js} +3 -3
  6. package/dist/{chunk-KTGXZBUM.js.map → chunk-ACGCHWCM.js.map} +1 -1
  7. package/dist/{chunk-UVP43XU2.js → chunk-FCCGV52I.js} +4 -4
  8. package/dist/{chunk-UVP43XU2.js.map → chunk-FCCGV52I.js.map} +1 -1
  9. package/dist/{chunk-DRRZEAYB.js → chunk-HHGU7JXJ.js} +3 -3
  10. package/dist/{chunk-DRRZEAYB.js.map → chunk-HHGU7JXJ.js.map} +1 -1
  11. package/dist/{chunk-MJ3A3TAI.js → chunk-M7H3ASBI.js} +6 -3
  12. package/dist/chunk-M7H3ASBI.js.map +1 -0
  13. package/dist/durable.cjs +4 -1
  14. package/dist/durable.cjs.map +1 -1
  15. package/dist/durable.js +1 -1
  16. package/dist/engine.cjs +4 -1
  17. package/dist/engine.cjs.map +1 -1
  18. package/dist/engine.js +3 -3
  19. package/dist/index.cjs +4 -1
  20. package/dist/index.cjs.map +1 -1
  21. package/dist/index.js +11 -11
  22. package/dist/registry.cjs +4 -1
  23. package/dist/registry.cjs.map +1 -1
  24. package/dist/registry.js +2 -2
  25. package/dist/runtime.cjs +4 -1
  26. package/dist/runtime.cjs.map +1 -1
  27. package/dist/runtime.js +3 -3
  28. package/dist/schema.cjs +4 -1
  29. package/dist/schema.cjs.map +1 -1
  30. package/dist/schema.js +2 -2
  31. package/dist/screens.cjs +4 -1
  32. package/dist/screens.cjs.map +1 -1
  33. package/dist/screens.js +4 -4
  34. package/dist/ux.cjs +4 -1
  35. package/dist/ux.cjs.map +1 -1
  36. package/dist/ux.js +1 -1
  37. package/package.json +1 -1
  38. package/dist/chunk-MJ3A3TAI.js.map +0 -1
package/dist/screens.js CHANGED
@@ -1,8 +1,8 @@
1
- import { FlowViewer } from './chunk-UVP43XU2.js';
2
- export { FlowViewer } from './chunk-UVP43XU2.js';
3
- import './chunk-DRRZEAYB.js';
1
+ import { FlowViewer } from './chunk-FCCGV52I.js';
2
+ export { FlowViewer } from './chunk-FCCGV52I.js';
3
+ import './chunk-HHGU7JXJ.js';
4
4
  import './chunk-UEOE6B52.js';
5
- import './chunk-MJ3A3TAI.js';
5
+ import './chunk-M7H3ASBI.js';
6
6
  import './chunk-F5RPRB7A.js';
7
7
  import './chunk-USL4FMFU.js';
8
8
  import { registerSchemaComponents } from '@particle-academy/fancy-screens';
package/dist/ux.cjs CHANGED
@@ -9370,7 +9370,10 @@ function collectInputs(node, incoming, portValues, initial) {
9370
9370
  function pickExecutor(executors, node) {
9371
9371
  if (executors[node.id]) return executors[node.id];
9372
9372
  if (node.type && executors[node.type]) return executors[node.type];
9373
- const kind = node.type ? getNodeKind(node.type) : null;
9373
+ const declared = node.data?.kind;
9374
+ const kindName = typeof declared === "string" && declared !== "" ? declared : node.type;
9375
+ if (kindName && kindName !== node.type && executors[kindName]) return executors[kindName];
9376
+ const kind = kindName ? getNodeKind(kindName) : null;
9374
9377
  if (kind) {
9375
9378
  for (const id2 of kindIds(kind)) {
9376
9379
  if (executors[id2]) return executors[id2];