impaktapps-ui-builder 1.0.152 → 1.0.153

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.
@@ -7962,7 +7962,7 @@ const buildPropertiesSection = function(type) {
7962
7962
  getInputField("bottomLabel_2", "Second BottomLabel"),
7963
7963
  getInputField("bottomLabel_3", "Third BottomLabel"),
7964
7964
  getInputField("size", "Size"),
7965
- getSelectField("orientation", "Variant"),
7965
+ getRadioInputField("variant", "Variant", ["circular", "horizontal"]),
7966
7966
  getArrayControl("pieArcColors", "color", "Color")
7967
7967
  ];
7968
7968
  break;
@@ -8017,6 +8017,7 @@ const buildPropertiesSection = function(type) {
8017
8017
  getRadioInputField("isAccordion", "Accordion", ["YES", "No"]),
8018
8018
  getRadioInputField("defaultStyle", "Default Style", ["YES", "No"]),
8019
8019
  getInputField("rowSpacing", "Row Spacing"),
8020
+ getRadioInputField("defaultClosed", "Default Closed", ["YES", "No"]),
8020
8021
  emptyBox$1("WrapperSectionEmpty1", { xs: 6, sm: 0, md: 4, lg: 4 }),
8021
8022
  emptyBox$1("WrapperSectionEmpty2")
8022
8023
  ];
@@ -10844,8 +10845,10 @@ const buildProgressBar = (config2, componentScope2) => {
10844
10845
  if (config2.layout) {
10845
10846
  ProgressBar.config.layout = config2.layout;
10846
10847
  }
10847
- ProgressBar.config.main.variant = config2.orientation;
10848
10848
  ProgressBar.config.main.heading = config2.label;
10849
+ if (config2.variant) {
10850
+ ProgressBar.config.main.variant = config2.variant;
10851
+ }
10849
10852
  if (config2.pieArcColors) {
10850
10853
  ProgressBar.config.main.colorRange = flatObjectValueInArray(config2.pieArcColors);
10851
10854
  }
@@ -11206,6 +11209,7 @@ const buildWrapperSection = (config2, componentScope2) => {
11206
11209
  wrapper.config.main.label = config2.label;
11207
11210
  wrapper.config.main.divider = config2.divider === "YES" ? true : false;
11208
11211
  wrapper.config.main.isAccordion = config2.isAccordion === "No" ? false : true;
11212
+ wrapper.config.main.defaultClosed = config2.defaultClosed === "YES" ? true : false;
11209
11213
  if (config2.defaultStyle) {
11210
11214
  wrapper.config.defaultStyle = config2.defaultStyle === "YES" ? true : false;
11211
11215
  }