impaktapps-ui-builder 0.0.382-alpha.27 → 0.0.382-alpha.29
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 -1
- 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 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +3 -3
|
@@ -9605,8 +9605,10 @@ var WrapperSection = {
|
|
|
9605
9605
|
};
|
|
9606
9606
|
const buildWrapperSection = (config, componentScope) => {
|
|
9607
9607
|
const wrapper = _.cloneDeep(WrapperSection);
|
|
9608
|
+
wrapper.scope = componentScope;
|
|
9608
9609
|
wrapper.config.main.label = config.label;
|
|
9609
9610
|
wrapper.config.main.divider = config.divider === "YES" ? true : false;
|
|
9611
|
+
wrapper.config.main.isAccordion = config.isAccordion === "YES" ? true : false;
|
|
9610
9612
|
if (config.style) {
|
|
9611
9613
|
wrapper.config.style = JSON.parse(config.style);
|
|
9612
9614
|
}
|
|
@@ -10749,7 +10751,7 @@ const buildUiSchema = (config) => {
|
|
|
10749
10751
|
elements = RunnerBoyProgressbar(config, componentScope);
|
|
10750
10752
|
break;
|
|
10751
10753
|
case "WrapperSection":
|
|
10752
|
-
elements = buildWrapperSection(config);
|
|
10754
|
+
elements = buildWrapperSection(config, componentScope);
|
|
10753
10755
|
break;
|
|
10754
10756
|
case "Text":
|
|
10755
10757
|
elements = buildTextField(config, componentScope);
|