excellentexport 3.9.4 → 3.9.6
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 +15 -6
- package/dist/excellentexport.js +1 -1
- package/package.json +58 -60
- package/scripts/postinstall.js +3 -0
- package/src/excellentexport.ts +1 -1
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,17 @@
|
|
|
21
20
|
|
|
22
21
|
# Revision history:
|
|
23
22
|
|
|
23
|
+
### 3.9.6
|
|
24
|
+
|
|
25
|
+
* Got a license from IntelliJ and helped to fix some things in the code
|
|
26
|
+
* Remove references to openbase.io
|
|
27
|
+
* Fix typos
|
|
28
|
+
* _Update npm dependencies to fix vulnerabilities_
|
|
29
|
+
|
|
30
|
+
### 3.9.5
|
|
31
|
+
|
|
32
|
+
* _Update npm dependencies to fix vulnerabilities_
|
|
33
|
+
|
|
24
34
|
### 3.9.4
|
|
25
35
|
|
|
26
36
|
* _Update npm dependencies to fix vulnerabilities_
|
|
@@ -118,7 +128,7 @@
|
|
|
118
128
|
### 2.1.0
|
|
119
129
|
|
|
120
130
|
* Add Webpack build.
|
|
121
|
-
* Create UMD JavaScript module. Library can be loaded as a module (import, RequireJS, AMD, etc...) or standalone as window.
|
|
131
|
+
* Create UMD JavaScript module. Library can be loaded as a module (import, RequireJS, AMD, etc...) or standalone as window.ExcellentExport.
|
|
122
132
|
|
|
123
133
|
### 2.0.3
|
|
124
134
|
|
|
@@ -276,8 +286,8 @@ You can specify an array with the formats for a specific cell range (i.e. A1:A10
|
|
|
276
286
|
|
|
277
287
|
Each element in the format array consists on:
|
|
278
288
|
|
|
279
|
-
```
|
|
280
|
-
{
|
|
289
|
+
```typescript
|
|
290
|
+
const sheet01 = {
|
|
281
291
|
"range": "A1:A100", // Range of cells to apply the format, mandatory
|
|
282
292
|
"format": {
|
|
283
293
|
"type": "<cell_type>", // Type of format, mandatory
|
|
@@ -301,8 +311,7 @@ Example:
|
|
|
301
311
|
range: "C2:C20",
|
|
302
312
|
format: ExcellentExport.formats.NUMBER,
|
|
303
313
|
}
|
|
304
|
-
]
|
|
305
|
-
|
|
314
|
+
]
|
|
306
315
|
```
|
|
307
316
|
|
|
308
317
|
`format` can be used from one of the predefined types if you use TypeScript
|