yaml-flow 5.2.8 → 5.3.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 (33) hide show
  1. package/browser/board-livegraph-engine.js +4 -1
  2. package/browser/board-livegraph-engine.js.map +1 -1
  3. package/browser/card-compute.js +1 -1
  4. package/browser/live-cards.js +178 -144
  5. package/browser/live-cards.schema.json +1 -1
  6. package/dist/board-livegraph-runtime/index.cjs +4 -1
  7. package/dist/board-livegraph-runtime/index.cjs.map +1 -1
  8. package/dist/board-livegraph-runtime/index.js +4 -1
  9. package/dist/board-livegraph-runtime/index.js.map +1 -1
  10. package/dist/card-compute/index.cjs +5 -1
  11. package/dist/card-compute/index.cjs.map +1 -1
  12. package/dist/card-compute/index.js +5 -1
  13. package/dist/card-compute/index.js.map +1 -1
  14. package/dist/cli/board-live-cards-cli.cjs +5 -1
  15. package/dist/cli/board-live-cards-cli.cjs.map +1 -1
  16. package/dist/cli/board-live-cards-cli.js +5 -1
  17. package/dist/cli/board-live-cards-cli.js.map +1 -1
  18. package/dist/continuous-event-graph/index.cjs +4 -1
  19. package/dist/continuous-event-graph/index.cjs.map +1 -1
  20. package/dist/continuous-event-graph/index.js +4 -1
  21. package/dist/continuous-event-graph/index.js.map +1 -1
  22. package/dist/index.cjs +5 -1
  23. package/dist/index.cjs.map +1 -1
  24. package/dist/index.js +5 -1
  25. package/dist/index.js.map +1 -1
  26. package/examples/example-board/agent-instructions-cardlayout.md +28 -0
  27. package/examples/example-board/cards/card-rebalance-sim.json +13 -3
  28. package/examples/example-board/demo-server.js +20 -8
  29. package/examples/example-board/demo-shell-browser.html +3 -3
  30. package/examples/example-board/demo-shell-with-server.html +4 -4
  31. package/examples/example-board/demo-task-executor.js +21 -0
  32. package/package.json +1 -1
  33. package/schema/live-cards.schema.json +1 -1
package/dist/index.cjs CHANGED
@@ -11736,6 +11736,7 @@ var live_cards_schema_default = {
11736
11736
  "badge",
11737
11737
  "text",
11738
11738
  "markdown",
11739
+ "ref",
11739
11740
  "custom",
11740
11741
  "actions"
11741
11742
  ]
@@ -12132,6 +12133,7 @@ function resolve(node, path) {
12132
12133
  var VALID_ELEMENT_KINDS = /* @__PURE__ */ new Set([
12133
12134
  "metric",
12134
12135
  "table",
12136
+ "editable-table",
12135
12137
  "chart",
12136
12138
  "form",
12137
12139
  "filter",
@@ -12143,7 +12145,9 @@ var VALID_ELEMENT_KINDS = /* @__PURE__ */ new Set([
12143
12145
  "badge",
12144
12146
  "text",
12145
12147
  "markdown",
12146
- "custom"
12148
+ "ref",
12149
+ "custom",
12150
+ "actions"
12147
12151
  ]);
12148
12152
  var ALLOWED_KEYS = /* @__PURE__ */ new Set(["id", "meta", "requires", "provides", "view", "card_data", "compute", "source_defs"]);
12149
12153
  function validateNode(node) {