impaktapps-ui-builder 1.0.450 → 1.0.480
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 -8
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +4 -4
- 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/buildStackBarLineGraph.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -1
|
@@ -8206,10 +8206,10 @@ const buildPropertiesSection = function(type) {
|
|
|
8206
8206
|
getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
|
|
8207
8207
|
getInputField("leftMargin", "Left Margin"),
|
|
8208
8208
|
getInputField("yAxisTickCount", "Y Axis TickCount"),
|
|
8209
|
-
getInputField("xAxisTickCount", "X Axis TickCount"),
|
|
8210
8209
|
getSelectField("xAxisFormatType", "X Axis Format Type"),
|
|
8211
8210
|
getInputField("growthRateKey", "Growth Rate Key"),
|
|
8212
8211
|
getInputField("tooltipUnit", "Tooltip Unit"),
|
|
8212
|
+
emptyBox$1("GraphEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
|
|
8213
8213
|
getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label", "Configure Bar Labels"),
|
|
8214
8214
|
getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color", "Configure Bar Colors")
|
|
8215
8215
|
];
|
|
@@ -10937,7 +10937,7 @@ var service = (funcParams) => {
|
|
|
10937
10937
|
return response == null ? void 0 : response.data;
|
|
10938
10938
|
},
|
|
10939
10939
|
getSelectOptions: async function(param) {
|
|
10940
|
-
if (param.serachValue !==
|
|
10940
|
+
if (param.serachValue !== void 0) {
|
|
10941
10941
|
const apiBody = [
|
|
10942
10942
|
{ key: "searchValue", value: param.serachValue },
|
|
10943
10943
|
{ key: "currentValue", value: param.currentValue }
|
|
@@ -13037,9 +13037,6 @@ const buildAreaGraph = (config2, componentScope2) => {
|
|
|
13037
13037
|
if (config2.yAxisTickCount) {
|
|
13038
13038
|
AreaGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13039
13039
|
}
|
|
13040
|
-
if (config2.xAxisTickCount) {
|
|
13041
|
-
AreaGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
|
|
13042
|
-
}
|
|
13043
13040
|
if (config2.xAxisValue) {
|
|
13044
13041
|
AreaGraph.config.main.xAxisValue = config2.xAxisValue;
|
|
13045
13042
|
}
|
|
@@ -13093,9 +13090,6 @@ const buildStackBarLineGraph = (config2, componentScope2) => {
|
|
|
13093
13090
|
if (config2.yAxisTickCount) {
|
|
13094
13091
|
StackBarLineGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13095
13092
|
}
|
|
13096
|
-
if (config2.xAxisTickCount) {
|
|
13097
|
-
StackBarLineGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
|
|
13098
|
-
}
|
|
13099
13093
|
if (config2.xAxisValue) {
|
|
13100
13094
|
StackBarLineGraph.config.main.xAxisValue = config2.xAxisValue;
|
|
13101
13095
|
}
|