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
@@ -6578,6 +6578,7 @@ var live_cards_schema_default = {
6578
6578
  "badge",
6579
6579
  "text",
6580
6580
  "markdown",
6581
+ "ref",
6581
6582
  "custom",
6582
6583
  "actions"
6583
6584
  ]
@@ -6974,6 +6975,7 @@ function resolve(node, path) {
6974
6975
  var VALID_ELEMENT_KINDS = /* @__PURE__ */ new Set([
6975
6976
  "metric",
6976
6977
  "table",
6978
+ "editable-table",
6977
6979
  "chart",
6978
6980
  "form",
6979
6981
  "filter",
@@ -6985,7 +6987,9 @@ var VALID_ELEMENT_KINDS = /* @__PURE__ */ new Set([
6985
6987
  "badge",
6986
6988
  "text",
6987
6989
  "markdown",
6988
- "custom"
6990
+ "ref",
6991
+ "custom",
6992
+ "actions"
6989
6993
  ]);
6990
6994
  var ALLOWED_KEYS = /* @__PURE__ */ new Set(["id", "meta", "requires", "provides", "view", "card_data", "compute", "source_defs"]);
6991
6995
  function validateNode(node) {