impaktapps-ui-builder 1.0.92 → 1.0.94

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.
@@ -7657,9 +7657,9 @@ const buildPropertiesSection = function(type) {
7657
7657
  case "Array":
7658
7658
  uiSchema.elements = [
7659
7659
  getRadioInputField("allExpanded", "Initial Expand", ["YES", "NO"]),
7660
- getRadioInputField("disableAddButton ", "Disable Add Button", ["YES", "NO"]),
7661
- getRadioInputField("disableExpandAllButton ", "Disable Expand Buttons", ["YES", "NO"]),
7662
- getRadioInputField("disableRowActions ", "Disable Row Actions", ["YES", "NO"]),
7660
+ getRadioInputField("disableAddButton", "Disable Add Button", ["YES", "NO"]),
7661
+ getRadioInputField("disableExpandAllButton", "Disable Expand Buttons", ["YES", "NO"]),
7662
+ getRadioInputField("disableRowActions", "Disable Row Actions", ["YES", "NO"]),
7663
7663
  getInputField("childElementLabel", "Child Element Label"),
7664
7664
  emptyBox$1("empty1", { xs: 12, sm: 6, md: 4, lg: 3 })
7665
7665
  ];
@@ -11952,15 +11952,6 @@ const buildFileInput = (config2, componentScope2) => {
11952
11952
  if (config2.variant) {
11953
11953
  box.config.main.variant = config2.variant;
11954
11954
  }
11955
- if (config2.hideUpload) {
11956
- box.config.main.hideUpload = config2.hideUpload === "YES" ? true : false;
11957
- }
11958
- if (config2.hideDownload) {
11959
- box.config.main.hideDownload = config2.hideDownload === "YES" ? true : false;
11960
- }
11961
- if (config2.hideDelete) {
11962
- box.config.main.hideDelete = config2.hideDelete === "YES" ? true : false;
11963
- }
11964
11955
  return box;
11965
11956
  };
11966
11957
  const Stepper = {