impaktapps-ui-builder 0.0.371 → 0.0.372
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 +2 -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/runtime/services/downloadFile.ts +1 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -1
|
@@ -8204,7 +8204,7 @@ const download = (response2) => {
|
|
|
8204
8204
|
const url = window.URL.createObjectURL(new Blob([response2.data]));
|
|
8205
8205
|
const link = document.createElement("a");
|
|
8206
8206
|
link.href = url;
|
|
8207
|
-
link.setAttribute("download", `${response2.headers.
|
|
8207
|
+
link.setAttribute("download", `${response2.headers.filename}`);
|
|
8208
8208
|
document.body.appendChild(link);
|
|
8209
8209
|
link.click();
|
|
8210
8210
|
link.parentNode.removeChild(link);
|
|
@@ -8477,7 +8477,7 @@ var service = (funcParams) => {
|
|
|
8477
8477
|
dynamicData: funcParams.dynamicData,
|
|
8478
8478
|
userValue: funcParams.userValue,
|
|
8479
8479
|
service: funcParams.service,
|
|
8480
|
-
serviceHolder: { downloadFile: downloadFile$1 },
|
|
8480
|
+
serviceHolder: { downloadFile: downloadFile$1, download },
|
|
8481
8481
|
eventGroups
|
|
8482
8482
|
};
|
|
8483
8483
|
return {
|