impaktapps-ui-builder 1.0.82 → 1.0.83
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.
|
@@ -11946,6 +11946,15 @@ const buildFileInput = (config2, componentScope2) => {
|
|
|
11946
11946
|
if (config2.variant) {
|
|
11947
11947
|
box.config.main.variant = config2.variant;
|
|
11948
11948
|
}
|
|
11949
|
+
if (config2.disableUpload) {
|
|
11950
|
+
box.config.main.disableUpload = config2.disableUpload;
|
|
11951
|
+
}
|
|
11952
|
+
if (config2.disableDownload) {
|
|
11953
|
+
box.config.main.disableDownload = config2.disableDownload;
|
|
11954
|
+
}
|
|
11955
|
+
if (config2.disableDelete) {
|
|
11956
|
+
box.config.main.disableDelete = config2.disableDelete;
|
|
11957
|
+
}
|
|
11949
11958
|
return box;
|
|
11950
11959
|
};
|
|
11951
11960
|
const Stepper = {
|