ooxml-excel-editor 1.3.1 → 1.3.3
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/CHANGELOG.md +152 -0
- package/README.md +5 -3
- package/core.js +2 -0
- package/dist/chunks/_commonjsHelpers-bAxELxBV.js +8 -0
- package/dist/{assets/exceljs.min-DH9BABny.js → chunks/exceljs.min-Bo1tFAdV.js} +2916 -2848
- package/dist/chunks/html2canvas.esm-CqSuKvp_.js +4871 -0
- package/dist/chunks/index-6q8kSGQg.js +10575 -0
- package/dist/chunks/index-gsLKcr47.js +29664 -0
- package/dist/chunks/index.es-D9BGYyEt.js +6693 -0
- package/dist/chunks/index.es-n6H_ncuE.js +6693 -0
- package/dist/chunks/jspdf.es.min-B6-ocR7J.js +9673 -0
- package/dist/chunks/jspdf.es.min-Dbn0akWf.js +9673 -0
- package/dist/chunks/{plugin-overlay-DLb6sRhU.js → plugin-overlay-BUrPrpT2.js} +3576 -3435
- package/dist/chunks/purify.es-BK6DF412.js +683 -0
- package/dist/chunks/{toolbar-icons-BcnMin5s.js → toolbar-icons-fOm95ASq.js} +94 -79
- package/dist/components/ExcelViewer.vue.d.ts +20 -20
- package/dist/components/ExportDialog.vue.d.ts +2 -2
- package/dist/components/FilterPopup.vue.d.ts +2 -2
- package/dist/components/ViewerToolbar.vue.d.ts +6 -6
- package/dist/core.js +30 -30
- package/dist/index.js +1288 -1084
- package/dist/react.js +773 -751
- package/dist/style.css +1 -1
- package/dist/vue2.css +1 -1
- package/dist/vue2.js +7 -10431
- package/package.json +4 -14
- package/vue2.js +5 -0
- package/dist/assets/parse.worker-DIaMHX0x.js +0 -2646
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ooxml-excel-editor",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"description": "High-fidelity OOXML (.xlsx) preview & editor — canvas renderer, framework-agnostic core with Vue 3, Vue 2 and React shells (1:1 UI across all shells). Read-only by default; opt-in editing with undo/redo, formula recalc, and export back to .xlsx/JSON/CSV.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,6 +25,8 @@
|
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
27
|
"dist",
|
|
28
|
+
"vue2.js",
|
|
29
|
+
"core.js",
|
|
28
30
|
"CHANGELOG.md"
|
|
29
31
|
],
|
|
30
32
|
"publishConfig": {
|
|
@@ -72,10 +74,6 @@
|
|
|
72
74
|
},
|
|
73
75
|
"peerDependencies": {
|
|
74
76
|
"@vue/composition-api": "^1.7.0",
|
|
75
|
-
"echarts": "^5.5.0",
|
|
76
|
-
"exceljs": "^4.4.0",
|
|
77
|
-
"hyperformula": "^3.0.0",
|
|
78
|
-
"jspdf": "^2.5.0 || ^3.0.0 || ^4.0.0",
|
|
79
77
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
80
78
|
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
81
79
|
"vue": "^2.6.0 || ^2.7.0 || ^3.4.0"
|
|
@@ -84,15 +82,6 @@
|
|
|
84
82
|
"@vue/composition-api": {
|
|
85
83
|
"optional": true
|
|
86
84
|
},
|
|
87
|
-
"echarts": {
|
|
88
|
-
"optional": true
|
|
89
|
-
},
|
|
90
|
-
"hyperformula": {
|
|
91
|
-
"optional": true
|
|
92
|
-
},
|
|
93
|
-
"jspdf": {
|
|
94
|
-
"optional": true
|
|
95
|
-
},
|
|
96
85
|
"vue": {
|
|
97
86
|
"optional": true
|
|
98
87
|
},
|
|
@@ -104,6 +93,7 @@
|
|
|
104
93
|
}
|
|
105
94
|
},
|
|
106
95
|
"dependencies": {
|
|
96
|
+
"echarts": "^5.5.0",
|
|
107
97
|
"fast-xml-parser": "^4.5.0",
|
|
108
98
|
"fflate": "^0.8.2"
|
|
109
99
|
},
|
package/vue2.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
// 包根兼容入口 — 老打包器(webpack 4 / vue-cli 4)不读 package.json#exports,
|
|
2
|
+
// 解析 `ooxml-excel-editor/vue2` 时走包根文件路径, 找到本文件后 re-export dist 产物.
|
|
3
|
+
// webpack 5 / Vite / Rollup 仍走 package.json#exports → ./dist/vue2.js (这个 stub 不会用到).
|
|
4
|
+
export { default } from './dist/vue2.js'
|
|
5
|
+
export * from './dist/vue2.js'
|