impaktapps-ui-builder 1.0.228 → 1.0.230
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 +8 -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/buildArray.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +4 -0
|
@@ -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":
|
|
@@ -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;
|