impaktapps-ui-builder 1.0.77-test.4 → 1.0.78-ActionBar.0

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.
@@ -7661,9 +7661,9 @@ const buildPropertiesSection = function(type) {
7661
7661
  case "Array":
7662
7662
  uiSchema.elements = [
7663
7663
  getRadioInputField("allExpanded", "Initial Expand", ["YES", "NO"]),
7664
+ getRadioInputField("disableActionBar", "Disable Action Bar", ["YES", "NO"]),
7664
7665
  getInputField("childElementLabel", "Child Element Label"),
7665
- emptyBox$1("empty1", { xs: 12, sm: 6, md: 4, lg: 3 }),
7666
- emptyBox$1("empty2", { xs: 0, sm: 0, md: 4, lg: 3 })
7666
+ emptyBox$1("empty1", { xs: 12, sm: 6, md: 4, lg: 3 })
7667
7667
  ];
7668
7668
  break;
7669
7669
  case "TreeMap":
@@ -11859,6 +11859,9 @@ const buildArray = (config2, componentScope2) => {
11859
11859
  if (config2.allExpanded) {
11860
11860
  array.config.main.allExpanded = config2.allExpanded === "YES" ? true : false;
11861
11861
  }
11862
+ if (config2.disableActionBar) {
11863
+ array.config.main.disableActionBar = config2.disableActionBar === "YES" ? true : false;
11864
+ }
11862
11865
  if (config2.style) {
11863
11866
  array.config.style = JSON.parse(config2.style);
11864
11867
  }