@teamkeel/functions-runtime 0.414.2 → 0.414.4
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/dist/index.cjs +13 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +16 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2621,6 +2621,17 @@ var header = /* @__PURE__ */ __name((options) => {
|
|
|
2621
2621
|
};
|
|
2622
2622
|
}, "header");
|
|
2623
2623
|
|
|
2624
|
+
// src/flows/ui/elements/display/keyValue.ts
|
|
2625
|
+
var keyValue = /* @__PURE__ */ __name((options) => {
|
|
2626
|
+
return {
|
|
2627
|
+
uiConfig: {
|
|
2628
|
+
__type: "ui.display.keyValue",
|
|
2629
|
+
data: options?.data || [],
|
|
2630
|
+
mode: options?.mode || "list"
|
|
2631
|
+
}
|
|
2632
|
+
};
|
|
2633
|
+
}, "keyValue");
|
|
2634
|
+
|
|
2624
2635
|
// src/flows/index.ts
|
|
2625
2636
|
var STEP_STATUS = /* @__PURE__ */ ((STEP_STATUS2) => {
|
|
2626
2637
|
STEP_STATUS2["NEW"] = "NEW";
|
|
@@ -2806,7 +2817,8 @@ function createFlowContext(runId, data, action, spanId, ctx) {
|
|
|
2806
2817
|
image,
|
|
2807
2818
|
code,
|
|
2808
2819
|
grid,
|
|
2809
|
-
list
|
|
2820
|
+
list,
|
|
2821
|
+
keyValue
|
|
2810
2822
|
},
|
|
2811
2823
|
select: {
|
|
2812
2824
|
one: selectOne
|