@slickgrid-universal/excel-export 9.1.0 → 9.2.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.
@@ -49,7 +49,7 @@ export declare class ExcelExportService implements ExternalResource, BaseExcelEx
49
49
  */
50
50
  init(grid: SlickGrid, containerService: ContainerService): void;
51
51
  /**
52
- * Function to export the Grid result to an Excel CSV format using javascript for it to produce the CSV file.
52
+ * Function to export the Grid result to an Excel CSV format using JavaScript for it to produce the CSV file.
53
53
  * This is a WYSIWYG export to file output (What You See is What You Get)
54
54
  *
55
55
  * NOTES: The column position needs to match perfectly the JSON Object position because of the way we are pulling the data,
@@ -63,7 +63,7 @@ export class ExcelExportService {
63
63
  }
64
64
  }
65
65
  /**
66
- * Function to export the Grid result to an Excel CSV format using javascript for it to produce the CSV file.
66
+ * Function to export the Grid result to an Excel CSV format using JavaScript for it to produce the CSV file.
67
67
  * This is a WYSIWYG export to file output (What You See is What You Get)
68
68
  *
69
69
  * NOTES: The column position needs to match perfectly the JSON Object position because of the way we are pulling the data,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slickgrid-universal/excel-export",
3
- "version": "9.1.0",
3
+ "version": "9.2.0",
4
4
  "description": "Excel Export (xls/xlsx) Service.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -36,7 +36,7 @@
36
36
  "not dead"
37
37
  ],
38
38
  "dependencies": {
39
- "@slickgrid-universal/common": "9.1.0",
39
+ "@slickgrid-universal/common": "9.2.0",
40
40
  "@slickgrid-universal/utils": "9.0.0",
41
41
  "excel-builder-vanilla": "^4.0.1"
42
42
  },
@@ -44,5 +44,5 @@
44
44
  "type": "ko_fi",
45
45
  "url": "https://ko-fi.com/ghiscoding"
46
46
  },
47
- "gitHead": "13b7246f58494ab65f345b8eb33c34d75c457aa5"
47
+ "gitHead": "c931d2b9f5f4f947777dcd36064763eef2a07745"
48
48
  }
@@ -123,7 +123,7 @@ export class ExcelExportService implements ExternalResource, BaseExcelExportServ
123
123
  }
124
124
 
125
125
  /**
126
- * Function to export the Grid result to an Excel CSV format using javascript for it to produce the CSV file.
126
+ * Function to export the Grid result to an Excel CSV format using JavaScript for it to produce the CSV file.
127
127
  * This is a WYSIWYG export to file output (What You See is What You Get)
128
128
  *
129
129
  * NOTES: The column position needs to match perfectly the JSON Object position because of the way we are pulling the data,