ninegrid2 6.371.0 → 6.372.0
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/bundle.cjs.js +3 -1
- package/dist/bundle.esm.js +3 -1
- package/dist/etc/ngExport.js +2 -0
- package/package.json +1 -1
- package/src/etc/ngExport.js +2 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
var ExcelJS$1 = require('exceljs');
|
|
4
|
+
|
|
3
5
|
function getDefaultExportFromCjs (x) {
|
|
4
6
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
5
7
|
}
|
|
@@ -17520,7 +17522,7 @@ class ngExportExcel
|
|
|
17520
17522
|
this.#progressBar.setAttribute("max", this.#owner.data.count());
|
|
17521
17523
|
this.#progressBar.setAttribute("value", 0);
|
|
17522
17524
|
|
|
17523
|
-
const workbook = new ExcelJS.Workbook();
|
|
17525
|
+
const workbook = new ExcelJS$1.Workbook();
|
|
17524
17526
|
const sheet = workbook.addWorksheet('Sheet1');
|
|
17525
17527
|
|
|
17526
17528
|
var index = 0;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import ExcelJS$1 from 'exceljs';
|
|
2
|
+
|
|
1
3
|
function getDefaultExportFromCjs (x) {
|
|
2
4
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
3
5
|
}
|
|
@@ -17518,7 +17520,7 @@ class ngExportExcel
|
|
|
17518
17520
|
this.#progressBar.setAttribute("max", this.#owner.data.count());
|
|
17519
17521
|
this.#progressBar.setAttribute("value", 0);
|
|
17520
17522
|
|
|
17521
|
-
const workbook = new ExcelJS.Workbook();
|
|
17523
|
+
const workbook = new ExcelJS$1.Workbook();
|
|
17522
17524
|
const sheet = workbook.addWorksheet('Sheet1');
|
|
17523
17525
|
|
|
17524
17526
|
var index = 0;
|
package/dist/etc/ngExport.js
CHANGED
package/package.json
CHANGED