@teamkeel/functions-runtime 0.421.3 → 0.421.5
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 +5 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +30 -5
- package/dist/index.d.ts +30 -5
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2913,6 +2913,11 @@ var pickList = /* @__PURE__ */ __name((name, options) => {
|
|
|
2913
2913
|
uiConfig: {
|
|
2914
2914
|
__type: "ui.interactive.pickList",
|
|
2915
2915
|
name,
|
|
2916
|
+
supportedInputs: options.supportedInputs || {
|
|
2917
|
+
scanner: true,
|
|
2918
|
+
manual: true
|
|
2919
|
+
},
|
|
2920
|
+
duplicateHandling: options.duplicateHandling,
|
|
2916
2921
|
data: options.data.map((item) => {
|
|
2917
2922
|
const rendered = options.render(item);
|
|
2918
2923
|
return {
|