impaktapps-ui-builder 0.0.382456 → 0.0.382457

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.
@@ -9562,6 +9562,8 @@ var WrapperSection = {
9562
9562
  elements: []
9563
9563
  };
9564
9564
  const buildWrapperSection = (config, componentScope) => {
9565
+ console.log("config buildWrapperSection : ", config);
9566
+ console.log("componentScope : ", componentScope);
9565
9567
  const wrapper = _.cloneDeep(WrapperSection);
9566
9568
  wrapper.config.main.label = config.label;
9567
9569
  wrapper.config.main.divider = config.divider === "YES" ? true : false;
@@ -10723,7 +10725,7 @@ const buildUiSchema = (config) => {
10723
10725
  elements = RunnerBoyProgressbar(config, componentScope);
10724
10726
  break;
10725
10727
  case "WrapperSection":
10726
- elements = buildWrapperSection(config);
10728
+ elements = buildWrapperSection(config, componentScope);
10727
10729
  break;
10728
10730
  case "Text":
10729
10731
  elements = buildTextField(config, componentScope);