impaktapps-ui-builder 0.0.373 → 0.0.374
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/impaktapps-ui-builder.es.js +3 -0
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +4 -0
|
@@ -9491,6 +9491,9 @@ const buildWrapperSection = (config, componentScope) => {
|
|
|
9491
9491
|
if (config.style) {
|
|
9492
9492
|
wrapper.config.style = JSON.parse(config.style);
|
|
9493
9493
|
}
|
|
9494
|
+
if (config.layout) {
|
|
9495
|
+
wrapper.config.layout = createLayoutFormat(config.layout);
|
|
9496
|
+
}
|
|
9494
9497
|
return wrapper;
|
|
9495
9498
|
};
|
|
9496
9499
|
var TextInputField = {
|