excellentexport 3.9.9 → 3.9.11
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 +2 -2
- package/README.md +9 -0
- package/dist/excellentexport.d.ts +45 -45
- package/dist/excellentexport.js +2 -2
- package/package.json +12 -11
- package/src/excellentexport.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "excellentexport",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.11",
|
|
4
4
|
"description": "Client side JavaScript export to Excel or CSV",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://jordiburgos.com",
|
|
@@ -27,19 +27,20 @@
|
|
|
27
27
|
},
|
|
28
28
|
"main": "dist/excellentexport.js",
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@types/jest": "
|
|
30
|
+
"@types/jest": "30.0.0",
|
|
31
31
|
"@types/jest-environment-puppeteer": "5.0.6",
|
|
32
|
-
"@types/node": "
|
|
33
|
-
"jest": "
|
|
34
|
-
"jest-environment-jsdom": "
|
|
32
|
+
"@types/node": "25.0.3",
|
|
33
|
+
"jest": "30.2.0",
|
|
34
|
+
"jest-environment-jsdom": "30.2.0",
|
|
35
35
|
"jest-puppeteer": "11.0.0",
|
|
36
|
-
"puppeteer": "24.
|
|
37
|
-
"ts-jest": "29.
|
|
38
|
-
"ts-loader": "9.5.
|
|
39
|
-
"
|
|
40
|
-
"
|
|
36
|
+
"puppeteer": "24.34.0",
|
|
37
|
+
"ts-jest": "29.4.6",
|
|
38
|
+
"ts-loader": "9.5.4",
|
|
39
|
+
"ts-node": "10.9.2",
|
|
40
|
+
"typescript": "5.9.3",
|
|
41
|
+
"webpack": "5.104.1",
|
|
41
42
|
"webpack-cli": "6.0.1",
|
|
42
|
-
"webpack-dev-server": "5.2.
|
|
43
|
+
"webpack-dev-server": "5.2.2",
|
|
43
44
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
|
44
45
|
}
|
|
45
46
|
}
|
package/src/excellentexport.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ExcellentExport 3.9.
|
|
2
|
+
* ExcellentExport 3.9.11
|
|
3
3
|
* A client side Javascript export to Excel.
|
|
4
4
|
*
|
|
5
5
|
* @author: Jordi Burgos (jordiburgos@gmail.com)
|
|
@@ -54,7 +54,7 @@ export type ExcellentExportType = {
|
|
|
54
54
|
|
|
55
55
|
const ExcellentExport = function() {
|
|
56
56
|
|
|
57
|
-
const version = "3.9.
|
|
57
|
+
const version = "3.9.11";
|
|
58
58
|
|
|
59
59
|
/*
|
|
60
60
|
ExcellentExport.convert(options, sheets);
|