impaktapps-ui-builder 1.0.246 → 1.0.252

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.
@@ -8142,9 +8142,11 @@ const buildPropertiesSection = function(type) {
8142
8142
  break;
8143
8143
  case "ButtonGroup":
8144
8144
  uiSchema.elements = [
8145
+ getRadioInputField("multiSelect", "Enable multiSelect", ["YES", "No"]),
8146
+ getRadioInputField("enableOnChange", "Enable OnChange Event", ["YES", "No"]),
8145
8147
  getInputField("size", "Size"),
8146
8148
  getSelectField("color", "Color"),
8147
- emptyBox$1("ButtonEmpty1", { xs: 6, sm: 0, md: 8, lg: 6 })
8149
+ emptyBox$1("ButtonEmpty1", { xs: 6, sm: 0, md: 0, lg: 0 })
8148
8150
  ];
8149
8151
  break;
8150
8152
  case "Box":
@@ -13024,6 +13026,12 @@ const buildButtonGroup = (config2, componentScope2) => {
13024
13026
  buttonGroup.config.layout = createLayoutFormat(config2.layout, config2.type);
13025
13027
  }
13026
13028
  buttonGroup.scope = componentScope2;
13029
+ if (config2.multiSelect) {
13030
+ buttonGroup.config.main.multiSelect = config2.multiSelect === "YES" ? true : false;
13031
+ }
13032
+ if (config2.enableOnChange) {
13033
+ buttonGroup.config.main.enableOnChange = config2.enableOnChange === "YES" ? true : false;
13034
+ }
13027
13035
  if (config2.style) {
13028
13036
  buttonGroup.config.style = JSON.parse(config2.style);
13029
13037
  }