styled-exceljs 0.21.1 → 0.21.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 +24 -0
- package/README.md +17 -6
- package/bower.json +1 -1
- package/dist/xlsx.core.min.js +18 -18
- package/dist/xlsx.core.min.map +1 -1
- package/dist/xlsx.extendscript.js +230 -106
- package/dist/xlsx.full.min.js +18 -18
- package/dist/xlsx.full.min.map +1 -1
- package/dist/xlsx.mini.min.js +10 -10
- package/dist/xlsx.mini.min.map +1 -1
- package/docs/visual-fidelity.md +4 -0
- package/docs/visual-fidelity.zh-CN.md +3 -0
- package/package.json +3 -2
- package/xlsx.js +230 -106
- package/xlsx.mjs +229 -105
package/docs/visual-fidelity.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# XLSX / XLS Visual Fidelity Extensions
|
|
2
2
|
|
|
3
|
+
`styled-exceljs` is built from a fork of the original SheetJS Community Edition
|
|
4
|
+
source code. The fork keeps SheetJS-compatible APIs and extends the original
|
|
5
|
+
reader / writer foundation with visual parsing and browser rendering features.
|
|
6
|
+
|
|
3
7
|
This document describes the browser rendering metadata exposed by this build.
|
|
4
8
|
The public model extends the existing SheetJS worksheet object and keeps default
|
|
5
9
|
read behavior compatible. Expensive visual parsing is enabled with explicit
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "styled-exceljs",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.3",
|
|
4
4
|
"author": "sheetjs",
|
|
5
|
-
"description": "SheetJS
|
|
5
|
+
"description": "SheetJS CE fork with enhanced XLS/XLSX styling and browser rendering",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"excel",
|
|
8
8
|
"xls",
|
|
@@ -141,6 +141,7 @@
|
|
|
141
141
|
},
|
|
142
142
|
"scripts": {
|
|
143
143
|
"test": "make travis",
|
|
144
|
+
"test:security": "node tests/security-prototype-pollution.mjs",
|
|
144
145
|
"build": "make",
|
|
145
146
|
"lint": "make fullint",
|
|
146
147
|
"dtslint": "dtslint types"
|