impaktapps-ui-builder 0.0.360 → 0.0.361
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 +3 -0
|
@@ -9409,6 +9409,9 @@ const buildWrapperSection = (config, componentScope) => {
|
|
|
9409
9409
|
const wrapper = _.cloneDeep(WrapperSection);
|
|
9410
9410
|
wrapper.config.main.label = config.label;
|
|
9411
9411
|
wrapper.config.main.divider = config.divider === "YES" ? true : false;
|
|
9412
|
+
if (config.style) {
|
|
9413
|
+
wrapper.config.style = JSON.parse(config.style);
|
|
9414
|
+
}
|
|
9412
9415
|
return wrapper;
|
|
9413
9416
|
};
|
|
9414
9417
|
var TextInputField = {
|