impaktapps-ui-builder 1.0.288 → 1.0.290-hdb
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 +9 -3
- 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 +3 -0
- package/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -2
|
@@ -8226,10 +8226,10 @@ const buildPropertiesSection = function(type) {
|
|
|
8226
8226
|
getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
|
|
8227
8227
|
getInputField("leftMargin", "Left Margin"),
|
|
8228
8228
|
getInputField("yAxisTickCount", "Y Axis TickCount"),
|
|
8229
|
+
getInputField("xAxisTickCount", "X Axis TickCount"),
|
|
8229
8230
|
getSelectField("xAxisFormatType", "X Axis Format Type"),
|
|
8230
8231
|
getInputField("growthRateKey", "Growth Rate Key"),
|
|
8231
8232
|
getInputField("tooltipUnit", "Tooltip Unit"),
|
|
8232
|
-
emptyBox$1("GraphEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
|
|
8233
8233
|
getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label", "Configure Bar Labels"),
|
|
8234
8234
|
getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color", "Configure Bar Colors")
|
|
8235
8235
|
];
|
|
@@ -10994,8 +10994,8 @@ var service = (funcParams) => {
|
|
|
10994
10994
|
return;
|
|
10995
10995
|
const ChangeEventsKeysArray = Object.keys(eventGroups.onChange);
|
|
10996
10996
|
const promises = ChangeEventsKeysArray.flatMap((componentName) => {
|
|
10997
|
-
var _a
|
|
10998
|
-
if (((_a = funcParams.store) == null ? void 0 : _a.formData[componentName]) === funcParams.store.newData[componentName]
|
|
10997
|
+
var _a;
|
|
10998
|
+
if (((_a = funcParams.store) == null ? void 0 : _a.formData[componentName]) === funcParams.store.newData[componentName]) {
|
|
10999
10999
|
return [];
|
|
11000
11000
|
}
|
|
11001
11001
|
return eventGroups.onChange[componentName].map(
|
|
@@ -13080,6 +13080,9 @@ const buildAreaGraph = (config2, componentScope2) => {
|
|
|
13080
13080
|
if (config2.yAxisTickCount) {
|
|
13081
13081
|
AreaGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13082
13082
|
}
|
|
13083
|
+
if (config2.xAxisTickCount) {
|
|
13084
|
+
AreaGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
|
|
13085
|
+
}
|
|
13083
13086
|
if (config2.xAxisValue) {
|
|
13084
13087
|
AreaGraph.config.main.xAxisValue = config2.xAxisValue;
|
|
13085
13088
|
}
|
|
@@ -13133,6 +13136,9 @@ const buildStackBarLineGraph = (config2, componentScope2) => {
|
|
|
13133
13136
|
if (config2.yAxisTickCount) {
|
|
13134
13137
|
StackBarLineGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13135
13138
|
}
|
|
13139
|
+
if (config2.xAxisTickCount) {
|
|
13140
|
+
StackBarLineGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
|
|
13141
|
+
}
|
|
13136
13142
|
if (config2.xAxisValue) {
|
|
13137
13143
|
StackBarLineGraph.config.main.xAxisValue = config2.xAxisValue;
|
|
13138
13144
|
}
|