excellentexport 3.9.4 → 3.9.7

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/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
 
2
2
  [![Node CI](https://github.com/jmaister/excellentexport/actions/workflows/webpack.yml/badge.svg?branch=master)](https://github.com/jmaister/excellentexport/actions/workflows/webpack.yml)
3
3
  [![](https://data.jsdelivr.com/v1/package/npm/excellentexport/badge)](https://www.jsdelivr.com/package/npm/excellentexport)
4
- [![Rate on Openbase](https://badges.openbase.io/js/rating/excellentexport.svg)](https://openbase.io/js/excellentexport?utm_source=embedded&utm_medium=badge&utm_campaign=rate-badge)
5
4
  [![Coverage Status](https://coveralls.io/repos/github/jmaister/excellentexport/badge.svg?branch=master)](https://coveralls.io/github/jmaister/excellentexport?branch=master)
6
5
 
7
6
  # ExcellentExport.js
@@ -21,6 +20,22 @@
21
20
 
22
21
  # Revision history:
23
22
 
23
+ ### 3.9.7
24
+
25
+ * _Update npm dependencies to fix vulnerabilities_
26
+ * xlsx package loaded from CDN
27
+
28
+ ### 3.9.6
29
+
30
+ * Got a license from IntelliJ and helped to fix some things in the code
31
+ * Remove references to openbase.io
32
+ * Fix typos
33
+ * _Update npm dependencies to fix vulnerabilities_
34
+
35
+ ### 3.9.5
36
+
37
+ * _Update npm dependencies to fix vulnerabilities_
38
+
24
39
  ### 3.9.4
25
40
 
26
41
  * _Update npm dependencies to fix vulnerabilities_
@@ -118,7 +133,7 @@
118
133
  ### 2.1.0
119
134
 
120
135
  * Add Webpack build.
121
- * Create UMD JavaScript module. Library can be loaded as a module (import, RequireJS, AMD, etc...) or standalone as window.ExcelentExport.
136
+ * Create UMD JavaScript module. Library can be loaded as a module (import, RequireJS, AMD, etc...) or standalone as window.ExcellentExport.
122
137
 
123
138
  ### 2.0.3
124
139
 
@@ -276,8 +291,8 @@ You can specify an array with the formats for a specific cell range (i.e. A1:A10
276
291
 
277
292
  Each element in the format array consists on:
278
293
 
279
- ```json
280
- {
294
+ ```typescript
295
+ const sheet01 = {
281
296
  "range": "A1:A100", // Range of cells to apply the format, mandatory
282
297
  "format": {
283
298
  "type": "<cell_type>", // Type of format, mandatory
@@ -301,8 +316,7 @@ Example:
301
316
  range: "C2:C20",
302
317
  format: ExcellentExport.formats.NUMBER,
303
318
  }
304
- ],
305
-
319
+ ]
306
320
  ```
307
321
 
308
322
  `format` can be used from one of the predefined types if you use TypeScript
@@ -356,3 +370,7 @@ Example:
356
370
  **Publish**
357
371
 
358
372
  npm publish
373
+
374
+ ## Dependencies
375
+
376
+ - XLSX is not available from NPM anymore. Use https://cdn.sheetjs.com/ to install it.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * ExcellentExport 3.7.2
2
+ * ExcellentExport 3.9.7
3
3
  * A client side Javascript export to Excel.
4
4
  *
5
5
  * @author: Jordi Burgos (jordiburgos@gmail.com)