impaktapps-ui-builder 1.0.290-hdb → 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 +2 -12
- 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/buildAreaGraph.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/buildHierarchyChart.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +2 -3
|
@@ -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":
|
|
@@ -8226,10 +8225,10 @@ const buildPropertiesSection = function(type) {
|
|
|
8226
8225
|
getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
|
|
8227
8226
|
getInputField("leftMargin", "Left Margin"),
|
|
8228
8227
|
getInputField("yAxisTickCount", "Y Axis TickCount"),
|
|
8229
|
-
getInputField("xAxisTickCount", "X Axis TickCount"),
|
|
8230
8228
|
getSelectField("xAxisFormatType", "X Axis Format Type"),
|
|
8231
8229
|
getInputField("growthRateKey", "Growth Rate Key"),
|
|
8232
8230
|
getInputField("tooltipUnit", "Tooltip Unit"),
|
|
8231
|
+
emptyBox$1("GraphEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
|
|
8233
8232
|
getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label", "Configure Bar Labels"),
|
|
8234
8233
|
getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color", "Configure Bar Colors")
|
|
8235
8234
|
];
|
|
@@ -13080,9 +13079,6 @@ const buildAreaGraph = (config2, componentScope2) => {
|
|
|
13080
13079
|
if (config2.yAxisTickCount) {
|
|
13081
13080
|
AreaGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13082
13081
|
}
|
|
13083
|
-
if (config2.xAxisTickCount) {
|
|
13084
|
-
AreaGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
|
|
13085
|
-
}
|
|
13086
13082
|
if (config2.xAxisValue) {
|
|
13087
13083
|
AreaGraph.config.main.xAxisValue = config2.xAxisValue;
|
|
13088
13084
|
}
|
|
@@ -13136,9 +13132,6 @@ const buildStackBarLineGraph = (config2, componentScope2) => {
|
|
|
13136
13132
|
if (config2.yAxisTickCount) {
|
|
13137
13133
|
StackBarLineGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13138
13134
|
}
|
|
13139
|
-
if (config2.xAxisTickCount) {
|
|
13140
|
-
StackBarLineGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
|
|
13141
|
-
}
|
|
13142
13135
|
if (config2.xAxisValue) {
|
|
13143
13136
|
StackBarLineGraph.config.main.xAxisValue = config2.xAxisValue;
|
|
13144
13137
|
}
|
|
@@ -13392,9 +13385,6 @@ const buildHierarchyChart = (config2, componentScope2, store2) => {
|
|
|
13392
13385
|
if (config2.lazyLoading) {
|
|
13393
13386
|
hierarchyChart.config.main.lazyLoading = config2.lazyLoading === "YES" ? true : false;
|
|
13394
13387
|
}
|
|
13395
|
-
if (config2.isExpandAll) {
|
|
13396
|
-
hierarchyChart.config.main.isExpandAll = config2.isExpandAll === "YES" ? true : false;
|
|
13397
|
-
}
|
|
13398
13388
|
return hierarchyChart;
|
|
13399
13389
|
};
|
|
13400
13390
|
let schema = {
|