impaktapps-ui-builder 1.0.152 → 1.0.154

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
  ];
@@ -8593,23 +8594,24 @@ function okHandler(store2) {
8593
8594
  const sectionLabels = {
8594
8595
  Select: ["Core", "Properties", "Value", "Events", "Style", "Validation"],
8595
8596
  MultipleSelect: ["Core", "Properties", "Value", "Events", "Style", "Validation"],
8596
- Table: ["Core", "Components", "Properties", "Events", "Style", "Validation"],
8597
- LeaderBoard: ["Core", "Components", "Properties", "Events", "Style", "Validation"],
8598
- WrapperSection: ["Core", "Components", "Properties", "Style", "Validation"],
8599
- HorizontalLayout: ["Core", "Components", "Properties", "Style", "Validation"],
8597
+ Table: ["Core", "Components", "Properties", "Events", "Style"],
8598
+ LeaderBoard: ["Core", "Components", "Properties", "Events", "Style"],
8599
+ WrapperSection: ["Core", "Components", "Properties", "Style"],
8600
+ HorizontalLayout: ["Core", "Components", "Properties", "Style"],
8600
8601
  TabSection: ["Core", "Components", "Properties", "Style", "Validation"],
8601
- SpeedoMeter: ["Core", "Properties", "Events", "Style", "Validation"],
8602
+ SpeedoMeter: ["Core", "Properties", "Events", "Style"],
8602
8603
  card: ["Core", "Properties", "Events", "Style", "Validation"],
8603
8604
  UploadFile: ["Core", "Events", "Style", "Validation"],
8604
8605
  Graph: ["Core", "Properties", "Events", "Style", "Validation"],
8605
8606
  DownloadFile: ["Core", "Events", "Style", "Validation"],
8606
8607
  Box: ["Core", "Properties", "Events", "Style", "Validation"],
8607
8608
  Properties: ["Core", "Properties", "Events", "Style", "Validation"],
8608
- ProgressBarCard: ["Core", "Properties", "Events", "Style", "Validation"],
8609
- RankCard: ["Core", "Properties", "Events", "Style", "Validation"],
8609
+ ProgressBarCard: ["Core", "Properties", "Events", "Style"],
8610
+ ProgressBar: ["Core", "Properties", "Events", "Style"],
8611
+ RankCard: ["Core", "Properties", "Events", "Style"],
8610
8612
  Slider: ["Core", "Components", "Events", "Style", "Validation"],
8611
- Timer: ["Core", "Events", "Style", "Validation"],
8612
- Rank: ["Core", "Events", "Style", "Validation"],
8613
+ Timer: ["Core", "Events", "Style"],
8614
+ Rank: ["Core", "Events", "Style"],
8613
8615
  Button: ["Core", "Properties", "Events", "Style", "Validation"],
8614
8616
  Array: ["Core", "Components", "Properties", "Events", "Validation"],
8615
8617
  Radio: ["Core", "Properties", "Events", "Style", "Validation"],
@@ -8621,7 +8623,7 @@ const sectionLabels = {
8621
8623
  InputSlider: ["Core", "Properties", "Events", "Style", "Validation"],
8622
8624
  TreeMap: ["Core", "Components", "Properties", "Events", "Style"],
8623
8625
  ColumnGroup: ["Core", "Components"],
8624
- Thought: ["Core", "Properties", "Events", "Style", "Validation"],
8626
+ Thought: ["Core", "Properties", "Events", "Style"],
8625
8627
  Date: ["Core", "Properties", "Events", "Style", "Validation"],
8626
8628
  DateTime: ["Core", "Properties", "Events", "Style", "Validation"],
8627
8629
  Image: ["Core", "Properties", "Style"],
@@ -10844,8 +10846,10 @@ const buildProgressBar = (config2, componentScope2) => {
10844
10846
  if (config2.layout) {
10845
10847
  ProgressBar.config.layout = config2.layout;
10846
10848
  }
10847
- ProgressBar.config.main.variant = config2.orientation;
10848
10849
  ProgressBar.config.main.heading = config2.label;
10850
+ if (config2.variant) {
10851
+ ProgressBar.config.main.variant = config2.variant;
10852
+ }
10849
10853
  if (config2.pieArcColors) {
10850
10854
  ProgressBar.config.main.colorRange = flatObjectValueInArray(config2.pieArcColors);
10851
10855
  }
@@ -11206,6 +11210,7 @@ const buildWrapperSection = (config2, componentScope2) => {
11206
11210
  wrapper.config.main.label = config2.label;
11207
11211
  wrapper.config.main.divider = config2.divider === "YES" ? true : false;
11208
11212
  wrapper.config.main.isAccordion = config2.isAccordion === "No" ? false : true;
11213
+ wrapper.config.main.defaultClosed = config2.defaultClosed === "YES" ? true : false;
11209
11214
  if (config2.defaultStyle) {
11210
11215
  wrapper.config.defaultStyle = config2.defaultStyle === "YES" ? true : false;
11211
11216
  }