impaktapps-ui-builder 1.0.289 → 1.0.290
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 +1 -5
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +5 -5
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildHierarchyChart.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -2
|
@@ -8166,10 +8166,9 @@ const buildPropertiesSection = function(type) {
|
|
|
8166
8166
|
getSelectField("linkType", "Link Type"),
|
|
8167
8167
|
getInputField("nodeWidth", "Node Width"),
|
|
8168
8168
|
getInputField("nodeHeight", "Node Height"),
|
|
8169
|
-
getRadioInputField("isExpandAll", "Expand All", ["YES", "NO"]),
|
|
8170
8169
|
getInputField("chartHeight", "Chart Height"),
|
|
8171
8170
|
getInputField("stepPercent", "Link Bend Position"),
|
|
8172
|
-
emptyBox$1("HierarchyChart", { xs:
|
|
8171
|
+
emptyBox$1("HierarchyChart", { xs: 0, sm: 0, md: 4, lg: 6 })
|
|
8173
8172
|
];
|
|
8174
8173
|
break;
|
|
8175
8174
|
case "MetricCard":
|
|
@@ -13386,9 +13385,6 @@ const buildHierarchyChart = (config2, componentScope2, store2) => {
|
|
|
13386
13385
|
if (config2.lazyLoading) {
|
|
13387
13386
|
hierarchyChart.config.main.lazyLoading = config2.lazyLoading === "YES" ? true : false;
|
|
13388
13387
|
}
|
|
13389
|
-
if (config2.isExpandAll) {
|
|
13390
|
-
hierarchyChart.config.main.isExpandAll = config2.isExpandAll === "YES" ? true : false;
|
|
13391
|
-
}
|
|
13392
13388
|
return hierarchyChart;
|
|
13393
13389
|
};
|
|
13394
13390
|
let schema = {
|