impaktapps-ui-builder 1.0.414 → 1.0.421
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 +100 -27
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +6 -6
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.d.ts +2 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +25 -0
- 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 +69 -0
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +0 -6
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +4 -0
- package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +1 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +18 -14
- package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +16 -0
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +1 -0
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -6
|
@@ -6657,7 +6657,8 @@ const ComponentSchema = {
|
|
|
6657
6657
|
title: "Stack Horizontal Bar Graph",
|
|
6658
6658
|
const: "HorizontalStackBarGraph"
|
|
6659
6659
|
},
|
|
6660
|
-
{ title: "Area Graph", const: "AreaGraph" }
|
|
6660
|
+
{ title: "Area Graph", const: "AreaGraph" },
|
|
6661
|
+
{ title: "StackBar And Line Graph", const: "StackBarLineGraph" }
|
|
6661
6662
|
]
|
|
6662
6663
|
},
|
|
6663
6664
|
iconName: {
|
|
@@ -7816,7 +7817,7 @@ const getArrayControl = (parentScope, childScope, childLabel) => {
|
|
|
7816
7817
|
]
|
|
7817
7818
|
};
|
|
7818
7819
|
};
|
|
7819
|
-
const getArrayControlMultiField = (parentScope, firstFieldScope, secondFieldScope, firstFieldLabel, secondFieldLabel) => {
|
|
7820
|
+
const getArrayControlMultiField = (parentScope, firstFieldScope, secondFieldScope, firstFieldLabel, secondFieldLabel, arrayLabel) => {
|
|
7820
7821
|
return {
|
|
7821
7822
|
type: "Control",
|
|
7822
7823
|
scope: `#/properties/${parentScope}`,
|
|
@@ -7825,7 +7826,9 @@ const getArrayControlMultiField = (parentScope, firstFieldScope, secondFieldScop
|
|
|
7825
7826
|
},
|
|
7826
7827
|
config: {
|
|
7827
7828
|
layout: 12,
|
|
7828
|
-
main: {
|
|
7829
|
+
main: {
|
|
7830
|
+
label: arrayLabel
|
|
7831
|
+
},
|
|
7829
7832
|
style: {
|
|
7830
7833
|
marginLeft: "-24px",
|
|
7831
7834
|
marginBottom: "24px !important",
|
|
@@ -8191,22 +8194,24 @@ const buildPropertiesSection = function(type) {
|
|
|
8191
8194
|
getInputField("subHeader", "Sub Header"),
|
|
8192
8195
|
getSelectField("graphType", "Graph Type"),
|
|
8193
8196
|
getInputField("leftLabel", "Left Label"),
|
|
8197
|
+
getInputField("rightLabel", "Right Label"),
|
|
8194
8198
|
getRadioInputField("disableLeftLabel", "Disable Left Label", ["YES", "No"]),
|
|
8195
8199
|
getInputField("bottomLabel", "Bottom Label"),
|
|
8196
8200
|
emptyBox$1("GraphEmpty1", { xs: 6, sm: 0, md: 0, lg: 0 }),
|
|
8197
8201
|
getRadioInputField("legendHide", "Legend Hide", ["YES", "No"]),
|
|
8198
8202
|
getRadioInputField("legendDirection", "Legend Direction", ["Row", "Column"]),
|
|
8199
|
-
getInputField("yAxisValue", "Y-
|
|
8200
|
-
getInputField("xAxisValue", "X-
|
|
8203
|
+
getInputField("yAxisValue", "Y-Axis Key"),
|
|
8204
|
+
getInputField("xAxisValue", "X-Axis Key"),
|
|
8201
8205
|
getSelectField("xAxisType", "X-AxisType"),
|
|
8202
8206
|
getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
|
|
8203
8207
|
getInputField("leftMargin", "Left Margin"),
|
|
8204
|
-
getInputField("xAxisTickCount", "X Axis TickCount"),
|
|
8205
8208
|
getInputField("yAxisTickCount", "Y Axis TickCount"),
|
|
8206
8209
|
getSelectField("xAxisFormatType", "X Axis Format Type"),
|
|
8207
|
-
|
|
8208
|
-
|
|
8209
|
-
|
|
8210
|
+
getInputField("growthRateKey", "Growth Rate Key"),
|
|
8211
|
+
getInputField("tooltipUnit", "Tooltip Unit"),
|
|
8212
|
+
emptyBox$1("GraphEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
|
|
8213
|
+
getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label", "Configure Bar Labels"),
|
|
8214
|
+
getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color", "Configure Bar Colors")
|
|
8210
8215
|
];
|
|
8211
8216
|
break;
|
|
8212
8217
|
case "WrapperSection":
|
|
@@ -8218,7 +8223,9 @@ const buildPropertiesSection = function(type) {
|
|
|
8218
8223
|
getInputField("rowSpacing", "Row Spacing"),
|
|
8219
8224
|
getInputField("columnSpacing", "Column Spacing"),
|
|
8220
8225
|
getInputField("spacing", "Spacing"),
|
|
8221
|
-
|
|
8226
|
+
getInputField("iconUrl", "Icon Url"),
|
|
8227
|
+
emptyBox$1("WrapperSectionEmpty1", { xs: 0, sm: 0, md: 4, lg: 6 }),
|
|
8228
|
+
emptyBox$1("WrapperSectionEmpty2")
|
|
8222
8229
|
];
|
|
8223
8230
|
break;
|
|
8224
8231
|
case "TabSection":
|
|
@@ -8251,12 +8258,11 @@ const buildPropertiesSection = function(type) {
|
|
|
8251
8258
|
buildWrapper("Tree Table Properties", [
|
|
8252
8259
|
getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
|
|
8253
8260
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
8254
|
-
getRadioInputField("lazyLoadTree", "Lazy Load Tree", ["YES", "NO"]),
|
|
8255
8261
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
8256
8262
|
getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
|
|
8257
8263
|
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
8258
8264
|
getInputField("defaultColumnSize", "Default Column Size"),
|
|
8259
|
-
|
|
8265
|
+
,
|
|
8260
8266
|
emptyBox$1("LazyLoadingTableEmpty3")
|
|
8261
8267
|
]),
|
|
8262
8268
|
getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
|
|
@@ -10925,12 +10931,7 @@ var service = (funcParams) => {
|
|
|
10925
10931
|
{ key: "sorting", value: paginationValues.sorting || [] },
|
|
10926
10932
|
{ key: "filters", value: paginationValues.tableColumnConfig || [] },
|
|
10927
10933
|
{ key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" },
|
|
10928
|
-
{ key: "expandedRowIds", value: (_b = paginationValues.expandedRowIds) != null ? _b : [] }
|
|
10929
|
-
{ key: "subRowsPagination", value: paginationValues.subRowsPagination || [] },
|
|
10930
|
-
{ key: "loadChildOnly", value: paginationValues.loadChildOnly || false },
|
|
10931
|
-
{ key: "parentId", value: paginationValues.parentId },
|
|
10932
|
-
{ key: "prevRowCount", value: paginationValues.prevRowCount },
|
|
10933
|
-
{ key: "newDataCount", value: paginationValues.newDataCount }
|
|
10934
|
+
{ key: "expandedRowIds", value: (_b = paginationValues.expandedRowIds) != null ? _b : [] }
|
|
10934
10935
|
];
|
|
10935
10936
|
const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
|
|
10936
10937
|
return response == null ? void 0 : response.data;
|
|
@@ -11249,6 +11250,21 @@ const AreaBarGraph = {
|
|
|
11249
11250
|
style: { containerStyle: {}, labelStyle: { margin: {} } }
|
|
11250
11251
|
}
|
|
11251
11252
|
};
|
|
11253
|
+
const StackBarLineG = {
|
|
11254
|
+
type: "Control",
|
|
11255
|
+
scope: "#/properties/graph",
|
|
11256
|
+
options: {
|
|
11257
|
+
widget: "Graph"
|
|
11258
|
+
},
|
|
11259
|
+
config: {
|
|
11260
|
+
layout: { xs: 12, sm: 12, md: 12, lg: 12 },
|
|
11261
|
+
main: {
|
|
11262
|
+
type: "StackBarLineGraph",
|
|
11263
|
+
legendLabels: null
|
|
11264
|
+
},
|
|
11265
|
+
style: { containerStyle: {}, labelStyle: { margin: {} } }
|
|
11266
|
+
}
|
|
11267
|
+
};
|
|
11252
11268
|
const buildHorizontalBarGraph = (config2, componentScope2) => {
|
|
11253
11269
|
const horizontalBarGraph = _.cloneDeep(HorizontalBarGraph);
|
|
11254
11270
|
horizontalBarGraph.scope = componentScope2;
|
|
@@ -11533,6 +11549,7 @@ const buildWrapperSection = (config2, componentScope2) => {
|
|
|
11533
11549
|
wrapper.config.main.divider = config2.divider === "YES" ? true : false;
|
|
11534
11550
|
wrapper.config.main.isAccordion = config2.isAccordion === "No" ? false : true;
|
|
11535
11551
|
wrapper.config.main.defaultClosed = config2.defaultClosed === "YES" ? true : false;
|
|
11552
|
+
wrapper.config.main.icon = config2.iconUrl;
|
|
11536
11553
|
wrapper.config.main.rowSpacing = Number(config2.rowSpacing);
|
|
11537
11554
|
wrapper.config.main.columnSpacing = Number(config2.columnSpacing);
|
|
11538
11555
|
wrapper.config.main.spacing = Number(config2.spacing);
|
|
@@ -11727,15 +11744,9 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11727
11744
|
if (config2.lazyLoading) {
|
|
11728
11745
|
table.config.main.lazyLoading = config2.lazyLoading === "YES" ? true : false;
|
|
11729
11746
|
}
|
|
11730
|
-
if (config2.lazyLoadTree) {
|
|
11731
|
-
table.config.main.lazyTree = config2.lazyLoadTree === "YES" ? true : false;
|
|
11732
|
-
}
|
|
11733
11747
|
if (config2.defaultColumnSize) {
|
|
11734
11748
|
table.config.main.defaultColumnSize = config2.defaultColumnSize;
|
|
11735
11749
|
}
|
|
11736
|
-
if (config2.subRowsExpansionPageSize) {
|
|
11737
|
-
table.config.main.subRowsExpansionPageSize = config2.subRowsExpansionPageSize;
|
|
11738
|
-
}
|
|
11739
11750
|
if (config2.enableRowMovement) {
|
|
11740
11751
|
table.config.main.enableRowMovement = config2.enableRowMovement === "YES" ? true : false;
|
|
11741
11752
|
}
|
|
@@ -13023,9 +13034,6 @@ const buildAreaGraph = (config2, componentScope2) => {
|
|
|
13023
13034
|
if (config2.xAxisFormatType) {
|
|
13024
13035
|
AreaGraph.config.main.xAxisFormatType = config2.xAxisFormatType;
|
|
13025
13036
|
}
|
|
13026
|
-
if (config2.xAxisTickCount) {
|
|
13027
|
-
AreaGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
|
|
13028
|
-
}
|
|
13029
13037
|
if (config2.yAxisTickCount) {
|
|
13030
13038
|
AreaGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13031
13039
|
}
|
|
@@ -13051,6 +13059,68 @@ const buildAreaGraph = (config2, componentScope2) => {
|
|
|
13051
13059
|
}
|
|
13052
13060
|
return AreaGraph;
|
|
13053
13061
|
};
|
|
13062
|
+
const buildStackBarLineGraph = (config2, componentScope2) => {
|
|
13063
|
+
const StackBarLineGraph = _.cloneDeep(StackBarLineG);
|
|
13064
|
+
StackBarLineGraph.scope = componentScope2;
|
|
13065
|
+
if (config2.layout) {
|
|
13066
|
+
StackBarLineGraph.config.layout = createLayoutFormat(config2.layout, config2.type);
|
|
13067
|
+
}
|
|
13068
|
+
StackBarLineGraph.config.main.type = config2.graphType;
|
|
13069
|
+
StackBarLineGraph.scope = componentScope2;
|
|
13070
|
+
StackBarLineGraph.config.main.header = config2.heading;
|
|
13071
|
+
StackBarLineGraph.config.main.subHeader = config2.subHeader;
|
|
13072
|
+
if (config2.legendHide) {
|
|
13073
|
+
StackBarLineGraph.config.main.legendAvailable = config2.legendHide === "YES" ? false : true;
|
|
13074
|
+
}
|
|
13075
|
+
if (config2.bottomAxisAngle) {
|
|
13076
|
+
StackBarLineGraph.config.main.bottomAxisAngle = config2.bottomAxisAngle === "YES" ? true : false;
|
|
13077
|
+
}
|
|
13078
|
+
if (config2.legendLabels) {
|
|
13079
|
+
StackBarLineGraph.config.main.legendLabels = createKeyValueMap(config2.legendLabels);
|
|
13080
|
+
}
|
|
13081
|
+
if (config2.legendDirection) {
|
|
13082
|
+
StackBarLineGraph.config.main.legendDirection = config2.legendDirection === "Row" ? "row" : "column";
|
|
13083
|
+
}
|
|
13084
|
+
if (config2.height) {
|
|
13085
|
+
StackBarLineGraph.config.style.containerStyle.height = config2.height;
|
|
13086
|
+
}
|
|
13087
|
+
if (config2.pieArcColors) {
|
|
13088
|
+
StackBarLineGraph.config.style.colorMap = createKeyValueMap(config2.pieArcColors);
|
|
13089
|
+
}
|
|
13090
|
+
if (config2.yAxisTickCount) {
|
|
13091
|
+
StackBarLineGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13092
|
+
}
|
|
13093
|
+
if (config2.xAxisValue) {
|
|
13094
|
+
StackBarLineGraph.config.main.xAxisValue = config2.xAxisValue;
|
|
13095
|
+
}
|
|
13096
|
+
if (config2.xAxisType) {
|
|
13097
|
+
StackBarLineGraph.config.main.xAxisType = config2.xAxisType;
|
|
13098
|
+
}
|
|
13099
|
+
if (config2.bottomLabel) {
|
|
13100
|
+
StackBarLineGraph.config.main.bottomLabel = config2.bottomLabel;
|
|
13101
|
+
}
|
|
13102
|
+
if (config2.leftLabel) {
|
|
13103
|
+
StackBarLineGraph.config.main.leftLabel = config2.leftLabel;
|
|
13104
|
+
}
|
|
13105
|
+
if (config2.rightLabel) {
|
|
13106
|
+
StackBarLineGraph.config.main.rightLabel = config2.rightLabel;
|
|
13107
|
+
}
|
|
13108
|
+
if (config2.disableLeftLabel) {
|
|
13109
|
+
StackBarLineGraph.config.main.disableLeftLabel = config2.disableLeftLabel === "YES" ? true : false;
|
|
13110
|
+
}
|
|
13111
|
+
if (config2.growthRateKey) {
|
|
13112
|
+
StackBarLineGraph.config.main.growthRateKey = config2.growthRateKey;
|
|
13113
|
+
}
|
|
13114
|
+
if (config2.tooltipUnit) {
|
|
13115
|
+
StackBarLineGraph.config.main.tooltipUnit = config2.tooltipUnit;
|
|
13116
|
+
}
|
|
13117
|
+
if (config2.leftMargin) {
|
|
13118
|
+
StackBarLineGraph.config.style.labelStyle.margin = {
|
|
13119
|
+
left: config2.leftMargin
|
|
13120
|
+
};
|
|
13121
|
+
}
|
|
13122
|
+
return StackBarLineGraph;
|
|
13123
|
+
};
|
|
13054
13124
|
const cameraUiSchema = {
|
|
13055
13125
|
type: "Control",
|
|
13056
13126
|
scope: "#/properties/camera",
|
|
@@ -13416,6 +13486,9 @@ const buildUiSchema = (config2, store2) => {
|
|
|
13416
13486
|
case "AreaGraph":
|
|
13417
13487
|
elements = buildAreaGraph(config2, componentScope2);
|
|
13418
13488
|
break;
|
|
13489
|
+
case "StackBarLineGraph":
|
|
13490
|
+
elements = buildStackBarLineGraph(config2, componentScope2);
|
|
13491
|
+
break;
|
|
13419
13492
|
default:
|
|
13420
13493
|
elements = buildStackbarGraph(config2, componentScope2);
|
|
13421
13494
|
break;
|