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.
@@ -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;
@@ -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;
@@ -1,4 +1,6 @@
1
1
  import ninegrid from "../index.js";
2
+ import ExcelJS from "exceljs";
3
+
2
4
 
3
5
  export class ngExportExcel
4
6
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.371.0",
4
+ "version": "6.372.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
@@ -1,4 +1,6 @@
1
1
  import ninegrid from "../index.js";
2
+ import ExcelJS from "exceljs";
3
+
2
4
 
3
5
  export class ngExportExcel
4
6
  {