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 +24 -6
- package/dist/excellentexport.d.ts +1 -1
- package/dist/excellentexport.js +1 -1
- package/package.json +58 -60
- package/scripts/postinstall.js +3 -0
- package/src/excellentexport.ts +2 -2
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
[](https://github.com/jmaister/excellentexport/actions/workflows/webpack.yml)
|
|
3
3
|
[](https://www.jsdelivr.com/package/npm/excellentexport)
|
|
4
|
-
[](https://openbase.io/js/excellentexport?utm_source=embedded&utm_medium=badge&utm_campaign=rate-badge)
|
|
5
4
|
[](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.
|
|
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
|
-
```
|
|
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.
|