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.
@@ -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
- emptyBox$1("FileInputEmpty", { xs: 6, sm: 6, md: 4, lg: 3 })
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 = {