impaktapps-ui-builder 1.0.2 → 1.0.3
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 +1 -5
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +7 -7
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +0 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -1
|
@@ -7842,7 +7842,6 @@ const buildPropertiesSection = function(type) {
|
|
|
7842
7842
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
7843
7843
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
7844
7844
|
getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
|
|
7845
|
-
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
7846
7845
|
emptyBox$1("LazyLoadingTableEmpty2"),
|
|
7847
7846
|
emptyBox$1("LazyLoadingTableEmpty3")
|
|
7848
7847
|
]),
|
|
@@ -10474,7 +10473,7 @@ var service = (funcParams) => {
|
|
|
10474
10473
|
{ key: "size", value: paginationValues.pagination.pageSize },
|
|
10475
10474
|
{ key: "pageIndex", value: paginationValues.pagination.pageIndex },
|
|
10476
10475
|
{ key: "sorting", value: paginationValues.sorting || [] },
|
|
10477
|
-
{ key: "filters", value: paginationValues.
|
|
10476
|
+
{ key: "filters", value: paginationValues.tableColumnConfig || [] },
|
|
10478
10477
|
{ key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" }
|
|
10479
10478
|
];
|
|
10480
10479
|
const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
|
|
@@ -11178,9 +11177,6 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11178
11177
|
if (config2.enableExpandAll) {
|
|
11179
11178
|
table.config.main.enableExpandAll = config2.enableExpandAll === "YES" ? true : false;
|
|
11180
11179
|
}
|
|
11181
|
-
if (config2.filterFromLeafRows) {
|
|
11182
|
-
table.config.main.filterFromLeafRows = config2.filterFromLeafRows === "YES" ? true : false;
|
|
11183
|
-
}
|
|
11184
11180
|
if (config2.paginateExpandedRows) {
|
|
11185
11181
|
table.config.main.paginateExpandedRows = config2.paginateExpandedRows === "YES" ? true : false;
|
|
11186
11182
|
}
|