impaktapps-ui-builder 1.0.145 → 1.0.146

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.146",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -43,6 +43,9 @@ const FileInput = {
43
43
  if (config.disableDelete) {
44
44
  box.config.main.disableDelete = config.disableDelete === "YES" ? true : false;
45
45
  }
46
+ if(config.description){
47
+ box.config.main.description = config.description;
48
+ }
46
49
  if (config.errorMessage) {
47
50
  box.config.main.errorMessage = config.errorMessage;
48
51
  }
@@ -578,8 +578,9 @@ 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("description", "Enter description"),
581
582
  getInputField("errorMessage", "Error Message"),
582
- emptyBox("FileInputEmpty", { xs: 6, sm: 6, md: 8, lg: 9 })
583
+ emptyBox("FileInputEmpty", { xs: 0, sm: 0, md: 4, lg: 6 })
583
584
  ]
584
585
  break;
585
586
  }