impaktapps-ui-builder 1.0.410-lazyTree.2 → 1.0.410
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 +97 -23
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +3 -3
- 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 +2 -2
- package/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.ts +66 -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 +16 -13
- 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 -4
|
@@ -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,23 @@ 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-AxisKey"),
|
|
8204
|
+
getInputField("xAxisValue", "X-AxisKey"),
|
|
8201
8205
|
getSelectField("xAxisType", "X-AxisType"),
|
|
8202
8206
|
getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
|
|
8203
8207
|
getInputField("leftMargin", "Left Margin"),
|
|
8204
|
-
getInputField("
|
|
8208
|
+
getInputField("xAxisLabelMinWidth", "X Axis Label Width"),
|
|
8205
8209
|
getInputField("yAxisTickCount", "Y Axis TickCount"),
|
|
8206
8210
|
getSelectField("xAxisFormatType", "X Axis Format Type"),
|
|
8207
8211
|
emptyBox$1("GraphEmpty1", { xs: 0, sm: 0, md: 4, lg: 6 }),
|
|
8208
|
-
getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label"),
|
|
8209
|
-
getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color")
|
|
8212
|
+
getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label", "Configure Bar Labels"),
|
|
8213
|
+
getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color", "Configure Bar Colors")
|
|
8210
8214
|
];
|
|
8211
8215
|
break;
|
|
8212
8216
|
case "WrapperSection":
|
|
@@ -8218,7 +8222,9 @@ const buildPropertiesSection = function(type) {
|
|
|
8218
8222
|
getInputField("rowSpacing", "Row Spacing"),
|
|
8219
8223
|
getInputField("columnSpacing", "Column Spacing"),
|
|
8220
8224
|
getInputField("spacing", "Spacing"),
|
|
8221
|
-
|
|
8225
|
+
getInputField("iconUrl", "Icon Url"),
|
|
8226
|
+
emptyBox$1("WrapperSectionEmpty1", { xs: 0, sm: 0, md: 4, lg: 6 }),
|
|
8227
|
+
emptyBox$1("WrapperSectionEmpty2")
|
|
8222
8228
|
];
|
|
8223
8229
|
break;
|
|
8224
8230
|
case "TabSection":
|
|
@@ -8251,12 +8257,11 @@ const buildPropertiesSection = function(type) {
|
|
|
8251
8257
|
buildWrapper("Tree Table Properties", [
|
|
8252
8258
|
getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
|
|
8253
8259
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
8254
|
-
getRadioInputField("lazyLoadTree", "Lazy Load Tree", ["YES", "NO"]),
|
|
8255
8260
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
8256
8261
|
getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
|
|
8257
8262
|
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
8258
8263
|
getInputField("defaultColumnSize", "Default Column Size"),
|
|
8259
|
-
|
|
8264
|
+
,
|
|
8260
8265
|
emptyBox$1("LazyLoadingTableEmpty3")
|
|
8261
8266
|
]),
|
|
8262
8267
|
getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
|
|
@@ -10925,10 +10930,7 @@ var service = (funcParams) => {
|
|
|
10925
10930
|
{ key: "sorting", value: paginationValues.sorting || [] },
|
|
10926
10931
|
{ key: "filters", value: paginationValues.tableColumnConfig || [] },
|
|
10927
10932
|
{ 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 }
|
|
10933
|
+
{ key: "expandedRowIds", value: (_b = paginationValues.expandedRowIds) != null ? _b : [] }
|
|
10932
10934
|
];
|
|
10933
10935
|
const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
|
|
10934
10936
|
return response == null ? void 0 : response.data;
|
|
@@ -11247,6 +11249,21 @@ const AreaBarGraph = {
|
|
|
11247
11249
|
style: { containerStyle: {}, labelStyle: { margin: {} } }
|
|
11248
11250
|
}
|
|
11249
11251
|
};
|
|
11252
|
+
const StackBarLineG = {
|
|
11253
|
+
type: "Control",
|
|
11254
|
+
scope: "#/properties/graph",
|
|
11255
|
+
options: {
|
|
11256
|
+
widget: "Graph"
|
|
11257
|
+
},
|
|
11258
|
+
config: {
|
|
11259
|
+
layout: { xs: 12, sm: 12, md: 12, lg: 12 },
|
|
11260
|
+
main: {
|
|
11261
|
+
type: "StackBarLineGraph",
|
|
11262
|
+
legendLabels: null
|
|
11263
|
+
},
|
|
11264
|
+
style: { containerStyle: {}, labelStyle: { margin: {} } }
|
|
11265
|
+
}
|
|
11266
|
+
};
|
|
11250
11267
|
const buildHorizontalBarGraph = (config2, componentScope2) => {
|
|
11251
11268
|
const horizontalBarGraph = _.cloneDeep(HorizontalBarGraph);
|
|
11252
11269
|
horizontalBarGraph.scope = componentScope2;
|
|
@@ -11531,6 +11548,7 @@ const buildWrapperSection = (config2, componentScope2) => {
|
|
|
11531
11548
|
wrapper.config.main.divider = config2.divider === "YES" ? true : false;
|
|
11532
11549
|
wrapper.config.main.isAccordion = config2.isAccordion === "No" ? false : true;
|
|
11533
11550
|
wrapper.config.main.defaultClosed = config2.defaultClosed === "YES" ? true : false;
|
|
11551
|
+
wrapper.config.main.icon = config2.iconUrl;
|
|
11534
11552
|
wrapper.config.main.rowSpacing = Number(config2.rowSpacing);
|
|
11535
11553
|
wrapper.config.main.columnSpacing = Number(config2.columnSpacing);
|
|
11536
11554
|
wrapper.config.main.spacing = Number(config2.spacing);
|
|
@@ -11725,15 +11743,9 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11725
11743
|
if (config2.lazyLoading) {
|
|
11726
11744
|
table.config.main.lazyLoading = config2.lazyLoading === "YES" ? true : false;
|
|
11727
11745
|
}
|
|
11728
|
-
if (config2.lazyLoadTree) {
|
|
11729
|
-
table.config.main.lazyTree = config2.lazyLoadTree === "YES" ? true : false;
|
|
11730
|
-
}
|
|
11731
11746
|
if (config2.defaultColumnSize) {
|
|
11732
11747
|
table.config.main.defaultColumnSize = config2.defaultColumnSize;
|
|
11733
11748
|
}
|
|
11734
|
-
if (config2.subRowsExpansionPageSize) {
|
|
11735
|
-
table.config.main.subRowsExpansionPageSize = config2.subRowsExpansionPageSize;
|
|
11736
|
-
}
|
|
11737
11749
|
if (config2.enableRowMovement) {
|
|
11738
11750
|
table.config.main.enableRowMovement = config2.enableRowMovement === "YES" ? true : false;
|
|
11739
11751
|
}
|
|
@@ -13021,8 +13033,8 @@ const buildAreaGraph = (config2, componentScope2) => {
|
|
|
13021
13033
|
if (config2.xAxisFormatType) {
|
|
13022
13034
|
AreaGraph.config.main.xAxisFormatType = config2.xAxisFormatType;
|
|
13023
13035
|
}
|
|
13024
|
-
if (config2.
|
|
13025
|
-
AreaGraph.config.main.
|
|
13036
|
+
if (config2.xAxisLabelMinWidth) {
|
|
13037
|
+
AreaGraph.config.main.xAxisLabelMinWidth = config2.xAxisLabelMinWidth;
|
|
13026
13038
|
}
|
|
13027
13039
|
if (config2.yAxisTickCount) {
|
|
13028
13040
|
AreaGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
@@ -13049,6 +13061,65 @@ const buildAreaGraph = (config2, componentScope2) => {
|
|
|
13049
13061
|
}
|
|
13050
13062
|
return AreaGraph;
|
|
13051
13063
|
};
|
|
13064
|
+
const buildStackBarLineGraph = (config2, componentScope2) => {
|
|
13065
|
+
const StackBarLineGraph = _.cloneDeep(StackBarLineG);
|
|
13066
|
+
StackBarLineGraph.scope = componentScope2;
|
|
13067
|
+
if (config2.layout) {
|
|
13068
|
+
StackBarLineGraph.config.layout = createLayoutFormat(config2.layout, config2.type);
|
|
13069
|
+
}
|
|
13070
|
+
StackBarLineGraph.config.main.type = config2.graphType;
|
|
13071
|
+
StackBarLineGraph.scope = componentScope2;
|
|
13072
|
+
StackBarLineGraph.config.main.header = config2.heading;
|
|
13073
|
+
StackBarLineGraph.config.main.subHeader = config2.subHeader;
|
|
13074
|
+
if (config2.legendHide) {
|
|
13075
|
+
StackBarLineGraph.config.main.legendAvailable = config2.legendHide === "YES" ? false : true;
|
|
13076
|
+
}
|
|
13077
|
+
if (config2.bottomAxisAngle) {
|
|
13078
|
+
StackBarLineGraph.config.main.bottomAxisAngle = config2.bottomAxisAngle === "YES" ? true : false;
|
|
13079
|
+
}
|
|
13080
|
+
if (config2.legendLabels) {
|
|
13081
|
+
StackBarLineGraph.config.main.legendLabels = createKeyValueMap(config2.legendLabels);
|
|
13082
|
+
}
|
|
13083
|
+
if (config2.legendDirection) {
|
|
13084
|
+
StackBarLineGraph.config.main.legendDirection = config2.legendDirection === "Row" ? "row" : "column";
|
|
13085
|
+
}
|
|
13086
|
+
if (config2.height) {
|
|
13087
|
+
StackBarLineGraph.config.style.containerStyle.height = config2.height;
|
|
13088
|
+
}
|
|
13089
|
+
if (config2.pieArcColors) {
|
|
13090
|
+
StackBarLineGraph.config.style.colorMap = createKeyValueMap(config2.pieArcColors);
|
|
13091
|
+
}
|
|
13092
|
+
if (config2.xAxisLabelMinWidth) {
|
|
13093
|
+
StackBarLineGraph.config.main.xAxisLabelMinWidth = config2.xAxisLabelMinWidth;
|
|
13094
|
+
}
|
|
13095
|
+
if (config2.yAxisTickCount) {
|
|
13096
|
+
StackBarLineGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13097
|
+
}
|
|
13098
|
+
if (config2.xAxisValue) {
|
|
13099
|
+
StackBarLineGraph.config.main.xAxisValue = config2.xAxisValue;
|
|
13100
|
+
}
|
|
13101
|
+
if (config2.xAxisType) {
|
|
13102
|
+
StackBarLineGraph.config.main.xAxisType = config2.xAxisType;
|
|
13103
|
+
}
|
|
13104
|
+
if (config2.bottomLabel) {
|
|
13105
|
+
StackBarLineGraph.config.main.bottomLabel = config2.bottomLabel;
|
|
13106
|
+
}
|
|
13107
|
+
if (config2.leftLabel) {
|
|
13108
|
+
StackBarLineGraph.config.main.leftLabel = config2.leftLabel;
|
|
13109
|
+
}
|
|
13110
|
+
if (config2.rightLabel) {
|
|
13111
|
+
StackBarLineGraph.config.main.rightLabel = config2.rightLabel;
|
|
13112
|
+
}
|
|
13113
|
+
if (config2.disableLeftLabel) {
|
|
13114
|
+
StackBarLineGraph.config.main.disableLeftLabel = config2.disableLeftLabel === "YES" ? true : false;
|
|
13115
|
+
}
|
|
13116
|
+
if (config2.leftMargin) {
|
|
13117
|
+
StackBarLineGraph.config.style.labelStyle.margin = {
|
|
13118
|
+
left: config2.leftMargin
|
|
13119
|
+
};
|
|
13120
|
+
}
|
|
13121
|
+
return StackBarLineGraph;
|
|
13122
|
+
};
|
|
13052
13123
|
const cameraUiSchema = {
|
|
13053
13124
|
type: "Control",
|
|
13054
13125
|
scope: "#/properties/camera",
|
|
@@ -13414,6 +13485,9 @@ const buildUiSchema = (config2, store2) => {
|
|
|
13414
13485
|
case "AreaGraph":
|
|
13415
13486
|
elements = buildAreaGraph(config2, componentScope2);
|
|
13416
13487
|
break;
|
|
13488
|
+
case "StackBarLineGraph":
|
|
13489
|
+
elements = buildStackBarLineGraph(config2, componentScope2);
|
|
13490
|
+
break;
|
|
13417
13491
|
default:
|
|
13418
13492
|
elements = buildStackbarGraph(config2, componentScope2);
|
|
13419
13493
|
break;
|