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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.145",
3
+ "version": "1.0.147",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -43,8 +43,8 @@ const FileInput = {
43
43
  if (config.disableDelete) {
44
44
  box.config.main.disableDelete = config.disableDelete === "YES" ? true : false;
45
45
  }
46
- if (config.errorMessage) {
47
- box.config.main.errorMessage = config.errorMessage;
46
+ if(config.description){
47
+ box.config.main.description = config.description;
48
48
  }
49
49
  return box;
50
50
  }
@@ -578,7 +578,7 @@ export const buildPropertiesSection = function (type: String) {
578
578
  getRadioInputField("disableUpload", "Disable Upload", ["YES", "NO"]),
579
579
  getRadioInputField("disableDelete", "Disable Delete", ["YES", "NO"]),
580
580
  getRadioInputField("disableDownload", "Disable Download", ["YES", "NO"]),
581
- getInputField("errorMessage", "Error Message"),
581
+ getInputField("description", "Enter description"),
582
582
  emptyBox("FileInputEmpty", { xs: 6, sm: 6, md: 8, lg: 9 })
583
583
  ]
584
584
  break;