impaktapps-ui-builder 1.0.232 → 1.0.234
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 +5 -2
- 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/buildCamera.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +2 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +2 -0
|
@@ -8330,7 +8330,9 @@ const buildPropertiesSection = function(type) {
|
|
|
8330
8330
|
getSelectField("toolTipPosition", "Tooltip Position"),
|
|
8331
8331
|
getInputField("chooseButtonLabel", "ChooseButton Label"),
|
|
8332
8332
|
getInputField("noFileAvailableMessage", "No Found Message"),
|
|
8333
|
-
getRadioInputField("
|
|
8333
|
+
getRadioInputField("useLabel", "Use Button", ["YES", "NO"]),
|
|
8334
|
+
getRadioInputField("externalUpload", "External Upload", ["YES", "NO"]),
|
|
8335
|
+
emptyBox$1("imageEmpty", { xs: 0, sm: 0, md: 4, lg: 6 })
|
|
8334
8336
|
];
|
|
8335
8337
|
break;
|
|
8336
8338
|
case "Camera":
|
|
@@ -12636,6 +12638,7 @@ const buildFileInput = (config2, componentScope2) => {
|
|
|
12636
12638
|
box.config.main.disableUpload = config2.disableUpload === "YES" ? true : false;
|
|
12637
12639
|
box.config.main.disableDownload = config2.disableDownload === "YES" ? true : false;
|
|
12638
12640
|
box.config.main.disableDelete = config2.disableDelete === "YES" ? true : false;
|
|
12641
|
+
box.config.main.useLabel = config2.useLabel === "YES" ? true : false;
|
|
12639
12642
|
box.config.main.description = config2.description;
|
|
12640
12643
|
box.config.main.toolTip = config2.toolTip;
|
|
12641
12644
|
box.config.main.chooseButtonLabel = config2.chooseButtonLabel;
|
|
@@ -13045,7 +13048,7 @@ const buildCamera = (config2, componentScope2) => {
|
|
|
13045
13048
|
camera.config.main.color = config2.color;
|
|
13046
13049
|
}
|
|
13047
13050
|
if (config2.label) {
|
|
13048
|
-
camera.config.main.
|
|
13051
|
+
camera.config.main.label = config2.label;
|
|
13049
13052
|
}
|
|
13050
13053
|
return camera;
|
|
13051
13054
|
};
|