ps-toolkit-ui 1.18.11 → 1.18.12

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.
@@ -9857,8 +9857,9 @@
9857
9857
  var ExcelClass = /** @class */ (function () {
9858
9858
  function ExcelClass() {
9859
9859
  }
9860
- ExcelClass.prototype.exportAsExcelFile = function (json, excelFileName) {
9861
- var worksheet = XLSX.utils.json_to_sheet(json);
9860
+ ExcelClass.prototype.exportAsExcelFile = function (json, excelFileName, opts) {
9861
+ if (opts === void 0) { opts = null; }
9862
+ var worksheet = XLSX.utils.json_to_sheet(json, opts);
9862
9863
  var workbook = {
9863
9864
  Sheets: { data: worksheet },
9864
9865
  SheetNames: ['data']