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.
- package/browser/board-livegraph-engine.js +4 -1
- package/browser/board-livegraph-engine.js.map +1 -1
- package/browser/card-compute.js +1 -1
- package/browser/live-cards.js +178 -144
- package/browser/live-cards.schema.json +1 -1
- package/dist/board-livegraph-runtime/index.cjs +4 -1
- package/dist/board-livegraph-runtime/index.cjs.map +1 -1
- package/dist/board-livegraph-runtime/index.js +4 -1
- package/dist/board-livegraph-runtime/index.js.map +1 -1
- package/dist/card-compute/index.cjs +5 -1
- package/dist/card-compute/index.cjs.map +1 -1
- package/dist/card-compute/index.js +5 -1
- package/dist/card-compute/index.js.map +1 -1
- package/dist/cli/board-live-cards-cli.cjs +5 -1
- package/dist/cli/board-live-cards-cli.cjs.map +1 -1
- package/dist/cli/board-live-cards-cli.js +5 -1
- package/dist/cli/board-live-cards-cli.js.map +1 -1
- package/dist/continuous-event-graph/index.cjs +4 -1
- package/dist/continuous-event-graph/index.cjs.map +1 -1
- package/dist/continuous-event-graph/index.js +4 -1
- package/dist/continuous-event-graph/index.js.map +1 -1
- package/dist/index.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/examples/example-board/agent-instructions-cardlayout.md +28 -0
- package/examples/example-board/cards/card-rebalance-sim.json +13 -3
- package/examples/example-board/demo-server.js +20 -8
- package/examples/example-board/demo-shell-browser.html +3 -3
- package/examples/example-board/demo-shell-with-server.html +4 -4
- package/examples/example-board/demo-task-executor.js +21 -0
- package/package.json +1 -1
- package/schema/live-cards.schema.json +1 -1
|
@@ -7554,6 +7554,7 @@ var live_cards_schema_default = {
|
|
|
7554
7554
|
"badge",
|
|
7555
7555
|
"text",
|
|
7556
7556
|
"markdown",
|
|
7557
|
+
"ref",
|
|
7557
7558
|
"custom",
|
|
7558
7559
|
"actions"
|
|
7559
7560
|
]
|
|
@@ -7947,6 +7948,7 @@ function resolve(node, path2) {
|
|
|
7947
7948
|
var VALID_ELEMENT_KINDS = /* @__PURE__ */ new Set([
|
|
7948
7949
|
"metric",
|
|
7949
7950
|
"table",
|
|
7951
|
+
"editable-table",
|
|
7950
7952
|
"chart",
|
|
7951
7953
|
"form",
|
|
7952
7954
|
"filter",
|
|
@@ -7958,7 +7960,9 @@ var VALID_ELEMENT_KINDS = /* @__PURE__ */ new Set([
|
|
|
7958
7960
|
"badge",
|
|
7959
7961
|
"text",
|
|
7960
7962
|
"markdown",
|
|
7961
|
-
"
|
|
7963
|
+
"ref",
|
|
7964
|
+
"custom",
|
|
7965
|
+
"actions"
|
|
7962
7966
|
]);
|
|
7963
7967
|
var ALLOWED_KEYS = /* @__PURE__ */ new Set(["id", "meta", "requires", "provides", "view", "card_data", "compute", "source_defs"]);
|
|
7964
7968
|
function validateNode(node) {
|