impaktapps-ui-builder 1.0.434 → 1.0.436
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 +8 -2
- 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 +3 -0
- package/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +2 -2
|
@@ -8160,7 +8160,7 @@ const buildPropertiesSection = function(type) {
|
|
|
8160
8160
|
getInputField("description", "Description"),
|
|
8161
8161
|
getSelectField("growthRate", "Growth Rate"),
|
|
8162
8162
|
getInputField("color", "Card Color"),
|
|
8163
|
-
emptyBox$1("MetricEmpty1", { xs: 6, sm:
|
|
8163
|
+
emptyBox$1("MetricEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 })
|
|
8164
8164
|
];
|
|
8165
8165
|
break;
|
|
8166
8166
|
case "Button":
|
|
@@ -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"),
|
|
8209
8210
|
getSelectField("xAxisFormatType", "X Axis Format Type"),
|
|
8210
8211
|
getInputField("growthRateKey", "Growth Rate Key"),
|
|
8211
8212
|
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
|
];
|
|
@@ -13045,6 +13045,9 @@ const buildAreaGraph = (config2, componentScope2) => {
|
|
|
13045
13045
|
if (config2.yAxisTickCount) {
|
|
13046
13046
|
AreaGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13047
13047
|
}
|
|
13048
|
+
if (config2.xAxisTickCount) {
|
|
13049
|
+
AreaGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
|
|
13050
|
+
}
|
|
13048
13051
|
if (config2.xAxisValue) {
|
|
13049
13052
|
AreaGraph.config.main.xAxisValue = config2.xAxisValue;
|
|
13050
13053
|
}
|
|
@@ -13098,6 +13101,9 @@ const buildStackBarLineGraph = (config2, componentScope2) => {
|
|
|
13098
13101
|
if (config2.yAxisTickCount) {
|
|
13099
13102
|
StackBarLineGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13100
13103
|
}
|
|
13104
|
+
if (config2.xAxisTickCount) {
|
|
13105
|
+
StackBarLineGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
|
|
13106
|
+
}
|
|
13101
13107
|
if (config2.xAxisValue) {
|
|
13102
13108
|
StackBarLineGraph.config.main.xAxisValue = config2.xAxisValue;
|
|
13103
13109
|
}
|