impaktapps-ui-builder 1.0.145 → 1.0.147

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.
@@ -8114,7 +8114,7 @@ const buildPropertiesSection = function(type) {
8114
8114
  getRadioInputField("disableUpload", "Disable Upload", ["YES", "NO"]),
8115
8115
  getRadioInputField("disableDelete", "Disable Delete", ["YES", "NO"]),
8116
8116
  getRadioInputField("disableDownload", "Disable Download", ["YES", "NO"]),
8117
- getInputField("errorMessage", "Error Message"),
8117
+ getInputField("description", "Enter description"),
8118
8118
  emptyBox$1("FileInputEmpty", { xs: 6, sm: 6, md: 8, lg: 9 })
8119
8119
  ];
8120
8120
  break;
@@ -12283,8 +12283,8 @@ const buildFileInput = (config2, componentScope2) => {
12283
12283
  if (config2.disableDelete) {
12284
12284
  box.config.main.disableDelete = config2.disableDelete === "YES" ? true : false;
12285
12285
  }
12286
- if (config2.errorMessage) {
12287
- box.config.main.errorMessage = config2.errorMessage;
12286
+ if (config2.description) {
12287
+ box.config.main.description = config2.description;
12288
12288
  }
12289
12289
  return box;
12290
12290
  };