@particle-academy/fancy-flow 0.74.1 → 0.75.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 (41) hide show
  1. package/dist/{chunk-2GU3V2ZD.js → chunk-2H5H2DDP.js} +4 -4
  2. package/dist/{chunk-2GU3V2ZD.js.map → chunk-2H5H2DDP.js.map} +1 -1
  3. package/dist/{chunk-3RXQGYGH.js → chunk-4BPCA3ZO.js} +3 -3
  4. package/dist/{chunk-3RXQGYGH.js.map → chunk-4BPCA3ZO.js.map} +1 -1
  5. package/dist/{chunk-K7KO3UJ3.js → chunk-LKEDPVR3.js} +3 -3
  6. package/dist/{chunk-K7KO3UJ3.js.map → chunk-LKEDPVR3.js.map} +1 -1
  7. package/dist/{chunk-7DJ56PUA.js → chunk-T7E7QPHI.js} +4 -4
  8. package/dist/{chunk-7DJ56PUA.js.map → chunk-T7E7QPHI.js.map} +1 -1
  9. package/dist/{chunk-EX34GCKK.js → chunk-W7DMO3H7.js} +18 -6
  10. package/dist/chunk-W7DMO3H7.js.map +1 -0
  11. package/dist/{chunk-VAF2SWTC.js → chunk-XZFLPKO2.js} +3 -3
  12. package/dist/{chunk-VAF2SWTC.js.map → chunk-XZFLPKO2.js.map} +1 -1
  13. package/dist/{chunk-GQ5LEA7Q.js → chunk-ZBHIEKCN.js} +3 -3
  14. package/dist/{chunk-GQ5LEA7Q.js.map → chunk-ZBHIEKCN.js.map} +1 -1
  15. package/dist/durable.cjs +16 -4
  16. package/dist/durable.cjs.map +1 -1
  17. package/dist/durable.js +1 -1
  18. package/dist/engine.cjs +16 -4
  19. package/dist/engine.cjs.map +1 -1
  20. package/dist/engine.js +4 -4
  21. package/dist/index.cjs +16 -4
  22. package/dist/index.cjs.map +1 -1
  23. package/dist/index.js +12 -12
  24. package/dist/registry.cjs +16 -4
  25. package/dist/registry.cjs.map +1 -1
  26. package/dist/registry.js +2 -2
  27. package/dist/runtime.cjs +16 -4
  28. package/dist/runtime.cjs.map +1 -1
  29. package/dist/runtime.js +3 -3
  30. package/dist/schema.cjs +16 -4
  31. package/dist/schema.cjs.map +1 -1
  32. package/dist/schema.js +3 -3
  33. package/dist/screens.cjs +16 -4
  34. package/dist/screens.cjs.map +1 -1
  35. package/dist/screens.js +4 -4
  36. package/dist/ux.cjs +17 -5
  37. package/dist/ux.cjs.map +1 -1
  38. package/dist/ux.js +2 -2
  39. package/dist/ux.js.map +1 -1
  40. package/package.json +2 -2
  41. package/dist/chunk-EX34GCKK.js.map +0 -1
package/dist/runtime.js CHANGED
@@ -1,7 +1,7 @@
1
- export { applyOutputsToNodes, applyStatusesToNodes, createHistory, useFlowHistory, useFlowRun, useFlowState } from './chunk-GQ5LEA7Q.js';
2
- export { runCohort } from './chunk-K7KO3UJ3.js';
1
+ export { applyOutputsToNodes, applyStatusesToNodes, createHistory, useFlowHistory, useFlowRun, useFlowState } from './chunk-ZBHIEKCN.js';
2
+ export { runCohort } from './chunk-LKEDPVR3.js';
3
3
  import './chunk-OWENS2H5.js';
4
- export { RunIdentity, escapeSegment, runFlow } from './chunk-EX34GCKK.js';
4
+ export { RunIdentity, escapeSegment, runFlow } from './chunk-W7DMO3H7.js';
5
5
  import './chunk-2QXKDLGT.js';
6
6
  //# sourceMappingURL=runtime.js.map
7
7
  //# sourceMappingURL=runtime.js.map
package/dist/schema.cjs CHANGED
@@ -664,8 +664,9 @@ async function runFlow(graph, executors, onEvent = () => {
664
664
  outputs[node.id] = stored;
665
665
  const activated = activatedPorts(node, stored);
666
666
  for (const portId of activated.ports) {
667
- portValues.set(`${node.id}:${portId}`, activated.value);
668
- onEvent({ type: "node-output", nodeId: node.id, portId, value: activated.value });
667
+ const value = portValueOf(activated, portId);
668
+ portValues.set(`${node.id}:${portId}`, value);
669
+ onEvent({ type: "node-output", nodeId: node.id, portId, value });
669
670
  }
670
671
  completed.add(node.id);
671
672
  onEvent({ type: "node-status", nodeId: node.id, status: "done", text: "resumed" });
@@ -728,8 +729,9 @@ async function runFlow(graph, executors, onEvent = () => {
728
729
  outputs[node.id] = result;
729
730
  const activated = activatedPorts(node, result);
730
731
  for (const portId of activated.ports) {
731
- portValues.set(`${node.id}:${portId}`, activated.value);
732
- onEvent({ type: "node-output", nodeId: node.id, portId, value: activated.value });
732
+ const value = portValueOf(activated, portId);
733
+ portValues.set(`${node.id}:${portId}`, value);
734
+ onEvent({ type: "node-output", nodeId: node.id, portId, value });
733
735
  }
734
736
  completed.add(node.id);
735
737
  onEvent({ type: "node-status", nodeId: node.id, status: "done" });
@@ -835,6 +837,13 @@ function activatedPorts(node, result) {
835
837
  if (typeof r.__port === "string") {
836
838
  return { ports: [r.__port], value: r.value };
837
839
  }
840
+ if (Array.isArray(r.__ports)) {
841
+ return { ports: r.__ports.filter((p) => typeof p === "string"), value: r.value };
842
+ }
843
+ if (r.__ports && typeof r.__ports === "object") {
844
+ const values = r.__ports;
845
+ return { ports: Object.keys(values), value: r.value, values };
846
+ }
838
847
  if (typeof r.branch === "string") {
839
848
  return { ports: [r.branch], value: Object.prototype.hasOwnProperty.call(r, "value") ? r.value : r };
840
849
  }
@@ -843,6 +852,9 @@ function activatedPorts(node, result) {
843
852
  const declared = resolveNodePorts(node, kind).outputs?.map((p) => p.id);
844
853
  return { ports: declared?.length ? declared : ["out"], value: result };
845
854
  }
855
+ function portValueOf(activated, portId) {
856
+ return activated.values && Object.prototype.hasOwnProperty.call(activated.values, portId) ? activated.values[portId] : activated.value;
857
+ }
846
858
  function announce(onEvent, node, phase) {
847
859
  const data = node.data;
848
860
  const raw = phase === "start" ? data?.startingMsg : data?.stoppingMsg;