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
package/package.json
CHANGED
|
@@ -20,9 +20,6 @@ export const buildTable = (config: any, componentScope: string) => {
|
|
|
20
20
|
if (config.enableExpandAll) {
|
|
21
21
|
table.config.main.enableExpandAll = config.enableExpandAll === "YES" ? true : false;
|
|
22
22
|
}
|
|
23
|
-
if (config.filterFromLeafRows) {
|
|
24
|
-
table.config.main.filterFromLeafRows = config.filterFromLeafRows === "YES" ? true : false;
|
|
25
|
-
}
|
|
26
23
|
if (config.paginateExpandedRows) {
|
|
27
24
|
table.config.main.paginateExpandedRows = config.paginateExpandedRows === "YES" ? true : false;
|
|
28
25
|
}
|
|
@@ -511,7 +511,6 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
511
511
|
// getRadioInputField("enableExpandAll", "Use All Row Expanding", ["YES", "NO"]),
|
|
512
512
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
513
513
|
getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
|
|
514
|
-
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
515
514
|
emptyBox("LazyLoadingTableEmpty2"), emptyBox("LazyLoadingTableEmpty3")
|
|
516
515
|
]),
|
|
517
516
|
getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
|
|
@@ -262,7 +262,7 @@ export default (funcParams: funcParamsProps) => {
|
|
|
262
262
|
{ key: "size", value: paginationValues.pagination.pageSize },
|
|
263
263
|
{ key: "pageIndex", value: paginationValues.pagination.pageIndex },
|
|
264
264
|
{ key: "sorting", value: paginationValues.sorting || [] },
|
|
265
|
-
{ key: "filters", value: paginationValues.
|
|
265
|
+
{ key: "filters", value: paginationValues.tableColumnConfig|| [] },
|
|
266
266
|
{ key: "globalFilter", value: paginationValues.globalFilter ?? '' }
|
|
267
267
|
]
|
|
268
268
|
const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
|