inviton-powerduck 0.0.152 → 0.0.153
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.
|
@@ -92,7 +92,7 @@ export class ExcelJsProvider {
|
|
|
92
92
|
const mySelf = this;
|
|
93
93
|
workbook.xlsx
|
|
94
94
|
.writeBuffer()
|
|
95
|
-
.then((data:
|
|
95
|
+
.then((data: any) => {
|
|
96
96
|
const blob = new Blob([data], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' });
|
|
97
97
|
PortalUtils.downloadBlob(
|
|
98
98
|
blob,
|
|
@@ -183,7 +183,7 @@ class TableExportModalComponent extends TsxComponent<TableExportModalBindingArgs
|
|
|
183
183
|
});
|
|
184
184
|
|
|
185
185
|
const mySelf = this;
|
|
186
|
-
workbook.xlsx.writeBuffer().then((data:
|
|
186
|
+
workbook.xlsx.writeBuffer().then((data: any) => {
|
|
187
187
|
const blob = new Blob([data], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' });
|
|
188
188
|
PortalUtils.downloadBlob(
|
|
189
189
|
blob,
|