impaktapps-ui-builder 1.0.229 → 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 +10 -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/buildArray.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +1 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +5 -1
|
@@ -8004,7 +8004,11 @@ const buildPropertiesSection = function(type) {
|
|
|
8004
8004
|
getRadioInputField("disableExpandAllButton", "Disable Expand Buttons", ["YES", "NO"]),
|
|
8005
8005
|
getRadioInputField("disableRowActions", "Disable Row Actions", ["YES", "NO"]),
|
|
8006
8006
|
getInputField("childElementLabel", "Child Element Label"),
|
|
8007
|
-
getInputField("showKeyAsLabel", "ShowKey As Label")
|
|
8007
|
+
getInputField("showKeyAsLabel", "ShowKey As Label"),
|
|
8008
|
+
getInputField("rowSpacing", "Row Spacing"),
|
|
8009
|
+
getInputField("columnSpacing", "Column Spacing"),
|
|
8010
|
+
getInputField("spacing", "Spacing"),
|
|
8011
|
+
emptyBox$1("empty1", { xs: 12, sm: 6, md: 4, lg: 3 })
|
|
8008
8012
|
];
|
|
8009
8013
|
break;
|
|
8010
8014
|
case "TreeMap":
|
|
@@ -8326,7 +8330,7 @@ const buildPropertiesSection = function(type) {
|
|
|
8326
8330
|
getSelectField("toolTipPosition", "Tooltip Position"),
|
|
8327
8331
|
getInputField("chooseButtonLabel", "ChooseButton Label"),
|
|
8328
8332
|
getInputField("noFileAvailableMessage", "No Found Message"),
|
|
8329
|
-
|
|
8333
|
+
getRadioInputField("externalUpload", "External Upload", ["YES", "NO"])
|
|
8330
8334
|
];
|
|
8331
8335
|
break;
|
|
8332
8336
|
case "Camera":
|
|
@@ -12531,6 +12535,9 @@ const buildArray = (config2, componentScope2) => {
|
|
|
12531
12535
|
if (config2.style) {
|
|
12532
12536
|
array.config.style = JSON.parse(config2.style);
|
|
12533
12537
|
}
|
|
12538
|
+
array.config.main.rowSpacing = Number(config2.rowSpacing);
|
|
12539
|
+
array.config.main.columnSpacing = Number(config2.columnSpacing);
|
|
12540
|
+
array.config.main.spacing = Number(config2.spacing);
|
|
12534
12541
|
array.config.main.childElementLabel = config2.childElementLabel;
|
|
12535
12542
|
array.config.main.showKeyAsLabel = config2.showKeyAsLabel;
|
|
12536
12543
|
array.config.main.label = config2.label;
|
|
@@ -12635,6 +12642,7 @@ const buildFileInput = (config2, componentScope2) => {
|
|
|
12635
12642
|
if (config2.toolTipPosition) {
|
|
12636
12643
|
box.config.main.toolTipPosition = config2.toolTipPosition;
|
|
12637
12644
|
}
|
|
12645
|
+
box.config.main.externalUpload = config2.externalUpload === "YES" ? true : false;
|
|
12638
12646
|
return box;
|
|
12639
12647
|
};
|
|
12640
12648
|
const Stepper = {
|