impaktapps-ui-builder 1.0.232 → 1.0.233

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,6 +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
+ getRadioInputField("useCustomComponents", "Use Custom Components", ["YES", "NO"]),
8333
8334
  getRadioInputField("externalUpload", "External Upload", ["YES", "NO"])
8334
8335
  ];
8335
8336
  break;
@@ -8871,7 +8872,7 @@ const sectionLabels = {
8871
8872
  Date: ["Core", "Properties", "Events", "Style", "Validation"],
8872
8873
  DateTime: ["Core", "Properties", "Events", "Style", "Validation"],
8873
8874
  Image: ["Core", "Properties", "Events", "Style"],
8874
- FileInput: ["Core", "Properties", "Events", "Style", "Validation"],
8875
+ FileInput: ["Core", "Components", "Properties", "Events", "Style", "Validation"],
8875
8876
  Camera: ["Core", "Properties", "Events", "Style", "Validation"],
8876
8877
  OTP_Input: ["Core", "Properties", "Events", "Style", "Validation"]
8877
8878
  };
@@ -12636,6 +12637,7 @@ const buildFileInput = (config2, componentScope2) => {
12636
12637
  box.config.main.disableUpload = config2.disableUpload === "YES" ? true : false;
12637
12638
  box.config.main.disableDownload = config2.disableDownload === "YES" ? true : false;
12638
12639
  box.config.main.disableDelete = config2.disableDelete === "YES" ? true : false;
12640
+ box.config.main.useCustomComponents = config2.useCustomComponents === "YES" ? true : false;
12639
12641
  box.config.main.description = config2.description;
12640
12642
  box.config.main.toolTip = config2.toolTip;
12641
12643
  box.config.main.chooseButtonLabel = config2.chooseButtonLabel;
@@ -13045,7 +13047,7 @@ const buildCamera = (config2, componentScope2) => {
13045
13047
  camera.config.main.color = config2.color;
13046
13048
  }
13047
13049
  if (config2.label) {
13048
- camera.config.main.name = config2.label;
13050
+ camera.config.main.label = config2.label;
13049
13051
  }
13050
13052
  return camera;
13051
13053
  };