impaktapps-ui-builder 1.0.421 → 1.0.424
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 +14 -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/buildTable.ts +6 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +4 -2
- package/src/impaktapps-ui-builder/runtime/services/service.ts +6 -1
package/package.json
CHANGED
|
@@ -11,9 +11,15 @@ export const buildTable = (config: any, componentScope: string) => {
|
|
|
11
11
|
if (config.lazyLoading) {
|
|
12
12
|
table.config.main.lazyLoading = config.lazyLoading === "YES" ? true : false;
|
|
13
13
|
}
|
|
14
|
+
if (config.lazyLoadTree) {
|
|
15
|
+
table.config.main.lazyTree = config.lazyLoadTree === "YES" ? true : false;
|
|
16
|
+
}
|
|
14
17
|
if (config.defaultColumnSize) {
|
|
15
18
|
table.config.main.defaultColumnSize = config.defaultColumnSize
|
|
16
19
|
}
|
|
20
|
+
if (config.subRowsExpansionPageSize) {
|
|
21
|
+
table.config.main.subRowsExpansionPageSize = config.subRowsExpansionPageSize
|
|
22
|
+
}
|
|
17
23
|
if (config.enableRowMovement) {
|
|
18
24
|
table.config.main.enableRowMovement = config.enableRowMovement === "YES" ? true : false;
|
|
19
25
|
}
|
|
@@ -630,7 +630,7 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
630
630
|
getRadioInputField("disableDensityToggle", "Disable Density Toggle", ["YES", "NO"]),
|
|
631
631
|
getRadioInputField("disableDownloadFile", "Disable Download File", ["YES", "NO"]),
|
|
632
632
|
getRadioInputField("disablePagination", "Disable Pagination", ["YES", "NO"]),
|
|
633
|
-
getInputField("selectKey", "Selection Key")
|
|
633
|
+
getInputField("selectKey", "Selection Key"),
|
|
634
634
|
getMultiSelectField("filteringOptions", "Filtering Options"),
|
|
635
635
|
getSelectField("maxPageSize", "Max Page Size", [
|
|
636
636
|
{ label: "10", value: 10 },
|
|
@@ -648,11 +648,13 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
648
648
|
buildWrapper("Tree Table Properties", [
|
|
649
649
|
getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
|
|
650
650
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
651
|
+
getRadioInputField("lazyLoadTree", "Lazy Load Tree", ["YES", "NO"]),
|
|
651
652
|
// getRadioInputField("enableExpandAll", "Use All Row Expanding", ["YES", "NO"]),
|
|
652
653
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
653
654
|
getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
|
|
654
655
|
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
655
|
-
getInputField("defaultColumnSize", "Default Column Size"),
|
|
656
|
+
getInputField("defaultColumnSize", "Default Column Size"),
|
|
657
|
+
getInputField("subRowsExpansionPageSize", "Page Size for Subrows Expansion") , emptyBox("LazyLoadingTableEmpty3")
|
|
656
658
|
]),
|
|
657
659
|
getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
|
|
658
660
|
sizeHolder,
|
|
@@ -190,7 +190,12 @@ export default (funcParams: funcParamsProps) => {
|
|
|
190
190
|
{ key: "sorting", value: paginationValues.sorting || [] },
|
|
191
191
|
{ key: "filters", value: paginationValues.tableColumnConfig || [] },
|
|
192
192
|
{ key: "globalFilter", value: paginationValues.globalFilter ?? '' },
|
|
193
|
-
{ key: "expandedRowIds", value: paginationValues.expandedRowIds ?? [] }
|
|
193
|
+
{ key: "expandedRowIds", value: paginationValues.expandedRowIds ?? [] },
|
|
194
|
+
{ key: "subRowsPagination", value: paginationValues.subRowsPagination || [] },
|
|
195
|
+
{ key: "loadChildOnly", value: paginationValues.loadChildOnly || false },
|
|
196
|
+
{ key: "parentId", value: paginationValues.parentId },
|
|
197
|
+
{ key: "prevRowCount", value: paginationValues.prevRowCount },
|
|
198
|
+
{ key: "newDataCount", value: paginationValues.newDataCount },
|
|
194
199
|
]
|
|
195
200
|
const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
|
|
196
201
|
return response?.data;
|