impaktapps-ui-builder 0.0.1062 → 0.0.1064
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 +3 -2
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +1 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +3 -2
|
@@ -10342,6 +10342,7 @@ var service = (funcParams) => {
|
|
|
10342
10342
|
]
|
|
10343
10343
|
}
|
|
10344
10344
|
);
|
|
10345
|
+
eventGroups = {};
|
|
10345
10346
|
const schema2 = (_m = pageData == null ? void 0 : pageData.schema) != null ? _m : { type: "object", properties: {} };
|
|
10346
10347
|
eventGroups = extractEvents(config2);
|
|
10347
10348
|
executeEventsParameters = {
|
|
@@ -10427,7 +10428,7 @@ var service = (funcParams) => {
|
|
|
10427
10428
|
{ key: "size", value: paginationValues.pagination.pageSize },
|
|
10428
10429
|
{ key: "pageIndex", value: paginationValues.pagination.pageIndex },
|
|
10429
10430
|
{ key: "sorting", value: paginationValues.sorting || [] },
|
|
10430
|
-
{ key: "filters", value: paginationValues.columnFilters || [] },
|
|
10431
|
+
{ key: "filters", value: paginationValues.tableColumnConfig || paginationValues.columnFilters || [] },
|
|
10431
10432
|
{ key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" }
|
|
10432
10433
|
];
|
|
10433
10434
|
const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
|
|
@@ -12497,7 +12498,7 @@ const buildUiSchema = (config2, store2) => {
|
|
|
12497
12498
|
enableColumnFilter: Object.keys(filterMap).length === 0 ? true : (_a = filterMap[cellElem.name]) != null ? _a : false,
|
|
12498
12499
|
columnFilterModeOptions: config2.filteringOptions,
|
|
12499
12500
|
enableSorting: config2.enableSorting === "No" ? false : true,
|
|
12500
|
-
columnKey:
|
|
12501
|
+
columnKey: cellElem.columnKey
|
|
12501
12502
|
};
|
|
12502
12503
|
if (cellElem.type) {
|
|
12503
12504
|
return {
|