@teamkeel/functions-runtime 0.420.0 → 0.421.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/dist/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2541,7 +2541,8 @@ async function page(options, data, action) {
|
|
|
2541
2541
|
}),
|
|
2542
2542
|
hasValidationErrors,
|
|
2543
2543
|
validationError,
|
|
2544
|
-
allowBack: options.allowBack
|
|
2544
|
+
allowBack: options.allowBack,
|
|
2545
|
+
fullWidth: options.fullWidth
|
|
2545
2546
|
},
|
|
2546
2547
|
hasValidationErrors
|
|
2547
2548
|
};
|
|
@@ -3281,6 +3282,7 @@ async function complete(options) {
|
|
|
3281
3282
|
description: options.description,
|
|
3282
3283
|
content: contentUiConfig || [],
|
|
3283
3284
|
autoClose: options.autoClose,
|
|
3285
|
+
fullWidth: options.fullWidth,
|
|
3284
3286
|
allowRestart: typeof options.allowRestart === "boolean" ? options.allowRestart ? { inputs: void 0 } : void 0 : options.allowRestart
|
|
3285
3287
|
};
|
|
3286
3288
|
}
|