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: Uint8Array) => {
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: Uint8Array) => {
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,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "inviton-powerduck",
3
3
  "type": "module",
4
- "version": "0.0.152",
4
+ "version": "0.0.153",
5
5
  "files": [
6
6
  "app/",
7
7
  "common/",