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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.289",
3
+ "version": "1.0.290",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -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: 6, sm: 6, md: 0, lg: 3 }),
523
+ emptyBox("HierarchyChart", { xs: 0, sm: 0, md: 4, lg: 6 }),
525
524
  ];
526
525
  break;
527
526
  case "MetricCard":