impaktapps-ui-builder 1.0.69 → 1.0.70-alpha.1
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 +4 -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/buildDownloadFile.ts +1 -0
- package/src/impaktapps-ui-builder/runtime/services/service.ts +2 -1
|
@@ -10346,13 +10346,14 @@ var service = (funcParams) => {
|
|
|
10346
10346
|
return response == null ? void 0 : response.data;
|
|
10347
10347
|
},
|
|
10348
10348
|
onPaginationChange: async function(paginationValues) {
|
|
10349
|
-
var _a;
|
|
10349
|
+
var _a, _b;
|
|
10350
10350
|
const apiBody = [
|
|
10351
10351
|
{ key: "size", value: paginationValues.pagination.pageSize },
|
|
10352
10352
|
{ key: "pageIndex", value: paginationValues.pagination.pageIndex },
|
|
10353
10353
|
{ key: "sorting", value: paginationValues.sorting || [] },
|
|
10354
10354
|
{ key: "filters", value: paginationValues.tableColumnConfig || [] },
|
|
10355
|
-
{ key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" }
|
|
10355
|
+
{ key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" },
|
|
10356
|
+
{ key: "expandedRowIds", value: (_b = paginationValues.expandedRowIds) != null ? _b : [] }
|
|
10356
10357
|
];
|
|
10357
10358
|
const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
|
|
10358
10359
|
return response == null ? void 0 : response.data;
|
|
@@ -11202,6 +11203,7 @@ const buildUploadFile = (config2, componentScope2) => {
|
|
|
11202
11203
|
const buildDownloadFile = (config2, componentScope2) => {
|
|
11203
11204
|
const DownloadFile = _.cloneDeep(downloadFile);
|
|
11204
11205
|
DownloadFile.scope = componentScope2;
|
|
11206
|
+
DownloadFile.config.main.label = config2.label;
|
|
11205
11207
|
if (config2.layout) {
|
|
11206
11208
|
DownloadFile.config.layout = config2.layout;
|
|
11207
11209
|
}
|