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.
@@ -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);