impaktapps-ui-builder 1.0.256 → 1.0.257

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.
@@ -8152,10 +8152,9 @@ const buildPropertiesSection = function(type) {
8152
8152
  case "ButtonGroup":
8153
8153
  uiSchema.elements = [
8154
8154
  getRadioInputField("multiSelect", "Enable multiSelect", ["YES", "No"]),
8155
- getRadioInputField("enableEvent", "Enable Event", ["YES", "No"]),
8156
8155
  getInputField("size", "Size"),
8157
8156
  getSelectField("color", "Color"),
8158
- emptyBox$1("ButtonEmpty1", { xs: 6, sm: 0, md: 0, lg: 0 })
8157
+ emptyBox$1("ButtonEmpty1", { xs: 6, sm: 6, md: 8, lg: 9 })
8159
8158
  ];
8160
8159
  break;
8161
8160
  case "Box":
@@ -13037,9 +13036,6 @@ const buildButtonGroup = (config2, componentScope2) => {
13037
13036
  if (config2.multiSelect) {
13038
13037
  buttonGroup.config.main.multiSelect = config2.multiSelect === "YES" ? true : false;
13039
13038
  }
13040
- if (config2.enableEvent) {
13041
- buttonGroup.config.main.enableOnChange = config2.enableEvent === "YES" ? true : false;
13042
- }
13043
13039
  if (config2.style) {
13044
13040
  buttonGroup.config.style = JSON.parse(config2.style);
13045
13041
  }