@particle-academy/fancy-flow 0.51.0 → 0.52.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.
Files changed (38) hide show
  1. package/dist/{chunk-6AI6CBNL.js → chunk-I7ZDPY7C.js} +3 -3
  2. package/dist/{chunk-6AI6CBNL.js.map → chunk-I7ZDPY7C.js.map} +1 -1
  3. package/dist/{chunk-XCT2CJ5O.js → chunk-JOXMAWAI.js} +27 -14
  4. package/dist/chunk-JOXMAWAI.js.map +1 -0
  5. package/dist/{chunk-HXGGCMR7.js → chunk-PEX3ZGCO.js} +3 -3
  6. package/dist/{chunk-HXGGCMR7.js.map → chunk-PEX3ZGCO.js.map} +1 -1
  7. package/dist/{chunk-LH76EIFL.js → chunk-PU3CLTAG.js} +3 -3
  8. package/dist/{chunk-LH76EIFL.js.map → chunk-PU3CLTAG.js.map} +1 -1
  9. package/dist/{chunk-7XTTXMGB.js → chunk-PWIHOR57.js} +4 -4
  10. package/dist/{chunk-7XTTXMGB.js.map → chunk-PWIHOR57.js.map} +1 -1
  11. package/dist/{chunk-SKEZ5AGI.js → chunk-RR7A6IUW.js} +3 -3
  12. package/dist/{chunk-SKEZ5AGI.js.map → chunk-RR7A6IUW.js.map} +1 -1
  13. package/dist/durable.cjs +26 -13
  14. package/dist/durable.cjs.map +1 -1
  15. package/dist/durable.js +1 -1
  16. package/dist/engine.cjs +26 -13
  17. package/dist/engine.cjs.map +1 -1
  18. package/dist/engine.js +3 -3
  19. package/dist/index.cjs +26 -13
  20. package/dist/index.cjs.map +1 -1
  21. package/dist/index.js +11 -11
  22. package/dist/registry.cjs +26 -13
  23. package/dist/registry.cjs.map +1 -1
  24. package/dist/registry.js +2 -2
  25. package/dist/runtime.cjs +26 -13
  26. package/dist/runtime.cjs.map +1 -1
  27. package/dist/runtime.js +3 -3
  28. package/dist/schema.cjs +26 -13
  29. package/dist/schema.cjs.map +1 -1
  30. package/dist/schema.js +2 -2
  31. package/dist/screens.cjs +26 -13
  32. package/dist/screens.cjs.map +1 -1
  33. package/dist/screens.js +4 -4
  34. package/dist/ux.cjs +26 -13
  35. package/dist/ux.cjs.map +1 -1
  36. package/dist/ux.js +1 -1
  37. package/package.json +2 -2
  38. package/dist/chunk-XCT2CJ5O.js.map +0 -1
package/dist/runtime.js CHANGED
@@ -1,6 +1,6 @@
1
- export { applyOutputsToNodes, applyStatusesToNodes, createHistory, useFlowHistory, useFlowRun, useFlowState } from './chunk-HXGGCMR7.js';
2
- export { runCohort } from './chunk-SKEZ5AGI.js';
3
- export { RunIdentity, escapeSegment, runFlow } from './chunk-XCT2CJ5O.js';
1
+ export { applyOutputsToNodes, applyStatusesToNodes, createHistory, useFlowHistory, useFlowRun, useFlowState } from './chunk-PEX3ZGCO.js';
2
+ export { runCohort } from './chunk-RR7A6IUW.js';
3
+ export { RunIdentity, escapeSegment, runFlow } from './chunk-JOXMAWAI.js';
4
4
  import './chunk-F5RPRB7A.js';
5
5
  import './chunk-USL4FMFU.js';
6
6
  //# sourceMappingURL=runtime.js.map
package/dist/schema.cjs CHANGED
@@ -9347,7 +9347,8 @@ async function runFlow(graph, executors, onEvent = () => {
9347
9347
  const inputs = collectInputs(node, incoming, portValues, initialInputs, props, declaresProps);
9348
9348
  const exec = pickExecutor(executors, node);
9349
9349
  if (!exec) {
9350
- const msg = `No executor registered for kind=${node.type}`;
9350
+ const tried = executorLookupIds(node);
9351
+ const msg = `No executor registered for kind=${node.type} \u2014 tried ${tried.map((id2) => `"${id2}"`).join(", ")}. Key your registry by one of those.`;
9351
9352
  errors.push(msg);
9352
9353
  onEvent({ type: "node-status", nodeId: node.id, status: "error", text: msg });
9353
9354
  onEvent({ type: "log", nodeId: node.id, level: "error", message: msg });
@@ -9440,19 +9441,31 @@ function collectInputs(node, incoming, portValues, initial, props, declaresProps
9440
9441
  if (declaresProps) inputs.$props = props;
9441
9442
  return inputs;
9442
9443
  }
9444
+ function executorLookupIds(node) {
9445
+ const ids = [node.id];
9446
+ if (node.type) ids.push(node.type);
9447
+ const typeKind = node.type ? getNodeKind(node.type) : null;
9448
+ if (typeKind) {
9449
+ for (const id2 of kindIds(typeKind)) ids.push(id2);
9450
+ } else {
9451
+ const declared = node.data?.kind;
9452
+ const kindName = typeof declared === "string" && declared !== "" ? declared : null;
9453
+ if (kindName) {
9454
+ ids.push(kindName);
9455
+ const dataKind = getNodeKind(kindName);
9456
+ if (dataKind) {
9457
+ for (const id2 of kindIds(dataKind)) ids.push(id2);
9458
+ }
9459
+ }
9460
+ }
9461
+ ids.push("*");
9462
+ return [...new Set(ids)];
9463
+ }
9443
9464
  function pickExecutor(executors, node) {
9444
- if (executors[node.id]) return executors[node.id];
9445
- if (node.type && executors[node.type]) return executors[node.type];
9446
- const declared = node.data?.kind;
9447
- const kindName = typeof declared === "string" && declared !== "" ? declared : node.type;
9448
- if (kindName && kindName !== node.type && executors[kindName]) return executors[kindName];
9449
- const kind = kindName ? getNodeKind(kindName) : null;
9450
- if (kind) {
9451
- for (const id2 of kindIds(kind)) {
9452
- if (executors[id2]) return executors[id2];
9453
- }
9454
- }
9455
- return executors["*"];
9465
+ for (const id2 of executorLookupIds(node)) {
9466
+ if (executors[id2]) return executors[id2];
9467
+ }
9468
+ return void 0;
9456
9469
  }
9457
9470
  function activatedPorts(node, result) {
9458
9471
  if (result && typeof result === "object") {