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
package/package.json
CHANGED
|
@@ -30,9 +30,6 @@ export const buildHierarchyChart = (config, componentScope, store) => {
|
|
|
30
30
|
if (config.lazyLoading) {
|
|
31
31
|
hierarchyChart.config.main.lazyLoading = config.lazyLoading === "YES" ? true : false;
|
|
32
32
|
}
|
|
33
|
-
if (config.isExpandAll) {
|
|
34
|
-
hierarchyChart.config.main.isExpandAll = config.isExpandAll === "YES" ? true : false;
|
|
35
|
-
}
|
|
36
33
|
return hierarchyChart;
|
|
37
34
|
}
|
|
38
35
|
|
|
@@ -518,10 +518,9 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
518
518
|
]),
|
|
519
519
|
getInputField("nodeWidth", "Node Width"),
|
|
520
520
|
getInputField("nodeHeight", "Node Height"),
|
|
521
|
-
getRadioInputField("isExpandAll", "Expand All", ["YES", "NO"]),
|
|
522
521
|
getInputField("chartHeight", "Chart Height"),
|
|
523
522
|
getInputField("stepPercent", "Link Bend Position"),
|
|
524
|
-
emptyBox("HierarchyChart", { xs:
|
|
523
|
+
emptyBox("HierarchyChart", { xs: 0, sm: 0, md: 4, lg: 6 }),
|
|
525
524
|
];
|
|
526
525
|
break;
|
|
527
526
|
case "MetricCard":
|