excellentexport 3.8.0 → 3.8.1
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/.github/workflows/webpack.yml +1 -1
- package/README.md +7 -0
- package/dist/excellentexport.d.ts +5 -0
- package/dist/excellentexport.js +1 -1
- package/dist/excellentexport.js.LICENSE.txt +2 -2
- package/index.bigtable.html +19 -44
- package/package.json +24 -24
- package/src/excellentexport.ts +9 -2
- package/tsconfig.json +17 -17
package/README.md
CHANGED
|
@@ -23,6 +23,13 @@
|
|
|
23
23
|
|
|
24
24
|
# Revision history:
|
|
25
25
|
|
|
26
|
+
### 3.8.1
|
|
27
|
+
|
|
28
|
+
* Activate XLSX compression by default. The example of index.bigtable.html went from 18Mb to 3Mb.
|
|
29
|
+
* _Update npm dependencies to fix vulnerabilities_
|
|
30
|
+
* Update to latest version of TypeScript
|
|
31
|
+
* Reduced size of the library from 912 KB to 277 KB!!!
|
|
32
|
+
|
|
26
33
|
### 3.8.0
|
|
27
34
|
|
|
28
35
|
* Allow RTL options on the whole file or sheet.
|
|
@@ -6,6 +6,11 @@
|
|
|
6
6
|
* @url: https://github.com/jmaister/excellentexport
|
|
7
7
|
*
|
|
8
8
|
*/
|
|
9
|
+
declare global {
|
|
10
|
+
interface Navigator {
|
|
11
|
+
msSaveBlob?: (blob: any, defaultName?: string) => boolean;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
9
14
|
export interface ConvertOptions {
|
|
10
15
|
anchor?: (string | HTMLAnchorElement);
|
|
11
16
|
openAsDownload?: boolean;
|