styled-exceljs 0.21.3 → 0.21.4
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 +12 -0
- package/dist/xlsx.core.min.js +18 -18
- package/dist/xlsx.core.min.map +1 -1
- package/dist/xlsx.extendscript.js +371 -10
- package/dist/xlsx.full.min.js +19 -18
- package/dist/xlsx.full.min.map +1 -1
- package/dist/xlsx.mini.min.js +11 -10
- package/dist/xlsx.mini.min.map +1 -1
- package/docs/visual-fidelity.md +13 -0
- package/docs/visual-fidelity.zh-CN.md +11 -0
- package/package.json +41 -37
- package/types/index.d.ts +45 -3
- package/xlsx.js +371 -10
- package/xlsx.mjs +371 -10
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ This log is intended to keep track of backwards-incompatible changes, including
|
|
|
4
4
|
but not limited to API changes and file location changes. Minor behavioral
|
|
5
5
|
changes may not be included if they are not expected to break existing code.
|
|
6
6
|
|
|
7
|
+
## v0.21.4
|
|
8
|
+
|
|
9
|
+
* Restore applied OOXML table styles, including totals rows, banding, first and
|
|
10
|
+
last column emphasis, and differential-format overrides
|
|
11
|
+
* Preserve XLS/XLSX column-width and pixel conversions with the Office-compatible
|
|
12
|
+
fallback metric; ambiguous stored widths no longer rescale a worksheet
|
|
13
|
+
* Keep tolerant reads and writes compatible with legacy out-of-range merges;
|
|
14
|
+
`validateMerges:true` retains explicit strict validation
|
|
15
|
+
* Normalize CRLF and CR comment newlines in safe HTML output, and retain the
|
|
16
|
+
established empty-sheet fallback when a workbook lists a missing worksheet
|
|
17
|
+
* Refresh generated distributions and the audited development toolchain
|
|
18
|
+
|
|
7
19
|
## v0.21.3
|
|
8
20
|
|
|
9
21
|
* Store document-controlled worksheet names in own-property-only maps and
|