impaktapps-ui-builder 0.0.375 → 0.0.377
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
|
@@ -8318,7 +8318,7 @@ const download = (response2) => {
|
|
|
8318
8318
|
const url = window.URL.createObjectURL(new Blob([response2.data]));
|
|
8319
8319
|
const link = document.createElement("a");
|
|
8320
8320
|
link.href = url;
|
|
8321
|
-
link.setAttribute("download", `${response2.headers.
|
|
8321
|
+
link.setAttribute("download", `${response2.headers.filename}`);
|
|
8322
8322
|
document.body.appendChild(link);
|
|
8323
8323
|
link.click();
|
|
8324
8324
|
link.parentNode.removeChild(link);
|
|
@@ -8591,7 +8591,7 @@ var service = (funcParams) => {
|
|
|
8591
8591
|
dynamicData: funcParams.dynamicData,
|
|
8592
8592
|
userValue: funcParams.userValue,
|
|
8593
8593
|
service: funcParams.service,
|
|
8594
|
-
serviceHolder: { downloadFile: downloadFile$1 },
|
|
8594
|
+
serviceHolder: { downloadFile: downloadFile$1, download },
|
|
8595
8595
|
eventGroups
|
|
8596
8596
|
};
|
|
8597
8597
|
return {
|