@teamkeel/functions-runtime 0.423.2 → 0.423.3
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 +23 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +41 -16
- package/dist/index.d.ts +41 -16
- package/dist/index.js +23 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2864,6 +2864,28 @@ var dataGridInput = /* @__PURE__ */ __name((name, options) => {
|
|
|
2864
2864
|
};
|
|
2865
2865
|
}, "dataGridInput");
|
|
2866
2866
|
|
|
2867
|
+
// src/flows/ui/elements/input/datePicker.ts
|
|
2868
|
+
var datePickerInput = /* @__PURE__ */ __name((name, options) => {
|
|
2869
|
+
return {
|
|
2870
|
+
__type: "input",
|
|
2871
|
+
uiConfig: {
|
|
2872
|
+
__type: "ui.input.datePicker",
|
|
2873
|
+
name,
|
|
2874
|
+
label: options?.label || name,
|
|
2875
|
+
optional: options?.optional || false,
|
|
2876
|
+
disabled: options?.disabled || false,
|
|
2877
|
+
helpText: options?.helpText,
|
|
2878
|
+
defaultValue: options?.defaultValue,
|
|
2879
|
+
mode: options?.mode,
|
|
2880
|
+
min: options?.min,
|
|
2881
|
+
max: options?.max
|
|
2882
|
+
},
|
|
2883
|
+
validate: options?.validate,
|
|
2884
|
+
onLeave: options?.onLeave,
|
|
2885
|
+
getData: /* @__PURE__ */ __name((x) => x, "getData")
|
|
2886
|
+
};
|
|
2887
|
+
}, "datePickerInput");
|
|
2888
|
+
|
|
2867
2889
|
// src/flows/ui/elements/iterator.ts
|
|
2868
2890
|
var iterator = /* @__PURE__ */ __name((name, options) => {
|
|
2869
2891
|
return {
|
|
@@ -3258,6 +3280,7 @@ function createFlowContext(runId, data, action, callback, element, spanId, ctx)
|
|
|
3258
3280
|
number: numberInput,
|
|
3259
3281
|
boolean: booleanInput,
|
|
3260
3282
|
dataGrid: dataGridInput,
|
|
3283
|
+
datePicker: datePickerInput,
|
|
3261
3284
|
scan
|
|
3262
3285
|
},
|
|
3263
3286
|
display: {
|