pdfkit 0.18.0 → 0.19.0
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/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +15 -2
- package/js/pdfkit.es.js +270 -263
- package/js/pdfkit.es.js.map +1 -1
- package/js/pdfkit.js +194 -99
- package/js/pdfkit.js.map +1 -1
- package/js/pdfkit.standalone.js +351 -294
- package/js/virtual-fs.js +1 -3
- package/package.json +24 -34
- package/rollup.config.mjs +124 -0
- package/types/jest.custom-matchers.d.ts +8 -8
- package/vitest.config.js +11 -0
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
### Unreleased
|
|
4
4
|
|
|
5
|
+
### [v0.19.0] - 2026-06-07
|
|
6
|
+
|
|
7
|
+
- Bump node version requirement to 20+
|
|
8
|
+
- Bump minimum supported browsers to Firefox 115, iOS/Safari 16
|
|
9
|
+
- Fix text with input x as null
|
|
10
|
+
- Add opacity option to `doc.image()` to control image transparency
|
|
11
|
+
- Fix corrupted PDF when mixing standard and embedded fonts that share postscript name
|
|
12
|
+
- Fix PDF/UA compliance issues in kitchen-sink-accessible example
|
|
13
|
+
- Add bbox and placement options to PDFStructureElement for PDF/UA compliance
|
|
14
|
+
- Extend `roundedRect` with `borderRadius` as number for all corners or per-corner array (CSS order)
|
|
15
|
+
- Fix accessibility: scope in TH element
|
|
16
|
+
- Fix PDF Name escaping for spot colors with spaces ([#1644](https://github.com/foliojs/pdfkit/issues/1644))
|
|
17
|
+
|
|
5
18
|
### [v0.18.0] - 2026-03-14
|
|
6
19
|
|
|
7
20
|
- Fix garbled text copying in Chrome/Edge for PDFs with >256 unique characters (#1659)
|
|
@@ -16,7 +29,7 @@
|
|
|
16
29
|
- Add robust handling of null byte padding in JPEG images
|
|
17
30
|
- Replace outdated jpeg-exif with minimal implementation
|
|
18
31
|
- Replace outdated crypto-js with maintained small alternatives
|
|
19
|
-
- Fix issue with indentation with `indentAllLines: true` when a new page is created
|
|
32
|
+
- Fix issue with indentation with `indentAllLines: true` when a new page is created
|
|
20
33
|
|
|
21
34
|
### [v0.17.2] - 2025-08-30
|
|
22
35
|
|
|
@@ -27,7 +40,7 @@
|
|
|
27
40
|
- Fix null values in table cells rendering as `[object Object]`
|
|
28
41
|
- Fix further LineWrapper precision issues
|
|
29
42
|
- Optmize standard font handling. Less code, less memory usage
|
|
30
|
-
|
|
43
|
+
|
|
31
44
|
### [v0.17.0] - 2025-04-12
|
|
32
45
|
|
|
33
46
|
- Fix precision rounding issues in LineWrapper
|