impaktapps-ui-builder 1.0.230 → 1.0.231
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 +2 -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 +1 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -1
|
@@ -8330,7 +8330,7 @@ const buildPropertiesSection = function(type) {
|
|
|
8330
8330
|
getSelectField("toolTipPosition", "Tooltip Position"),
|
|
8331
8331
|
getInputField("chooseButtonLabel", "ChooseButton Label"),
|
|
8332
8332
|
getInputField("noFileAvailableMessage", "No Found Message"),
|
|
8333
|
-
|
|
8333
|
+
getRadioInputField("externalUpload", "External Upload", ["YES", "NO"])
|
|
8334
8334
|
];
|
|
8335
8335
|
break;
|
|
8336
8336
|
case "Camera":
|
|
@@ -12642,6 +12642,7 @@ const buildFileInput = (config2, componentScope2) => {
|
|
|
12642
12642
|
if (config2.toolTipPosition) {
|
|
12643
12643
|
box.config.main.toolTipPosition = config2.toolTipPosition;
|
|
12644
12644
|
}
|
|
12645
|
+
box.config.main.externalUpload = config2.externalUpload === "YES" ? true : false;
|
|
12645
12646
|
return box;
|
|
12646
12647
|
};
|
|
12647
12648
|
const Stepper = {
|