impaktapps-ui-builder 1.0.144 → 1.0.145
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/dist/impaktapps-ui-builder.es.js +6 -1
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +3 -1
package/package.json
CHANGED
|
@@ -577,7 +577,9 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
577
577
|
getRadioInputField("variant", "Variant", ["Outlined", "Standard"]),
|
|
578
578
|
getRadioInputField("disableUpload", "Disable Upload", ["YES", "NO"]),
|
|
579
579
|
getRadioInputField("disableDelete", "Disable Delete", ["YES", "NO"]),
|
|
580
|
-
getRadioInputField("disableDownload", "Disable Download", ["YES", "NO"])
|
|
580
|
+
getRadioInputField("disableDownload", "Disable Download", ["YES", "NO"]),
|
|
581
|
+
getInputField("errorMessage", "Error Message"),
|
|
582
|
+
emptyBox("FileInputEmpty", { xs: 6, sm: 6, md: 8, lg: 9 })
|
|
581
583
|
]
|
|
582
584
|
break;
|
|
583
585
|
}
|