yaml-flow 5.2.8 → 5.4.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/board-livecards-server-runtime.js +15 -66
- 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 +2416 -2113
- package/dist/cli/board-live-cards-cli.cjs.map +1 -1
- package/dist/cli/board-live-cards-cli.d.cts +59 -113
- package/dist/cli/board-live-cards-cli.d.ts +59 -113
- package/dist/cli/board-live-cards-cli.js +2413 -2109
- 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/browser/boards/portfolio-tracker/portfolio-tracker.js +4 -4
- package/examples/example-board/agent-instructions-cardlayout.md +28 -0
- package/examples/example-board/agent-instructions.md +4 -5
- package/examples/example-board/cards/card-rebalance-sim.json +13 -3
- package/examples/example-board/demo-server.js +77 -11
- package/examples/example-board/demo-shell-browser.html +4 -4
- package/examples/example-board/demo-shell-with-server.html +4 -4
- package/examples/example-board/demo-task-executor.js +22 -2
- package/package.json +1 -1
- package/schema/live-cards.schema.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11729,6 +11729,7 @@ var live_cards_schema_default = {
|
|
|
11729
11729
|
"badge",
|
|
11730
11730
|
"text",
|
|
11731
11731
|
"markdown",
|
|
11732
|
+
"ref",
|
|
11732
11733
|
"custom",
|
|
11733
11734
|
"actions"
|
|
11734
11735
|
]
|
|
@@ -12125,6 +12126,7 @@ function resolve(node, path) {
|
|
|
12125
12126
|
var VALID_ELEMENT_KINDS = /* @__PURE__ */ new Set([
|
|
12126
12127
|
"metric",
|
|
12127
12128
|
"table",
|
|
12129
|
+
"editable-table",
|
|
12128
12130
|
"chart",
|
|
12129
12131
|
"form",
|
|
12130
12132
|
"filter",
|
|
@@ -12136,7 +12138,9 @@ var VALID_ELEMENT_KINDS = /* @__PURE__ */ new Set([
|
|
|
12136
12138
|
"badge",
|
|
12137
12139
|
"text",
|
|
12138
12140
|
"markdown",
|
|
12139
|
-
"
|
|
12141
|
+
"ref",
|
|
12142
|
+
"custom",
|
|
12143
|
+
"actions"
|
|
12140
12144
|
]);
|
|
12141
12145
|
var ALLOWED_KEYS = /* @__PURE__ */ new Set(["id", "meta", "requires", "provides", "view", "card_data", "compute", "source_defs"]);
|
|
12142
12146
|
function validateNode(node) {
|