pdfkit 0.14.0 → 0.15.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/CHANGELOG.md +15 -0
- package/README.md +1 -1
- package/js/pdfkit.es.js +5788 -0
- package/js/pdfkit.es.js.map +1 -0
- package/js/pdfkit.es5.js +261 -88
- package/js/pdfkit.es5.js.map +1 -1
- package/js/pdfkit.esnext.js +248 -81
- package/js/pdfkit.esnext.js.map +1 -1
- package/js/pdfkit.js +620 -1568
- package/js/pdfkit.js.map +1 -1
- package/js/pdfkit.standalone.js +27589 -41085
- package/js/virtual-fs.js +13 -30
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,25 @@
|
|
|
1
1
|
## pdfkit changelog
|
|
2
2
|
|
|
3
|
+
### Unreleased
|
|
4
|
+
|
|
5
|
+
### [v0.15.0] - 2024-03-23
|
|
6
|
+
|
|
7
|
+
- Add subset for PDF/UA
|
|
8
|
+
- Fix for line breaks in list items (#1486)
|
|
9
|
+
- Fix for soft hyphen not being replaced by visible hyphen if necessary (#457)
|
|
10
|
+
- Optimize output files by ignoring identity transforms
|
|
11
|
+
- Fix for Acroforms - setting an option to false will still apply the flag (#1495)
|
|
12
|
+
- Fix for text extraction in PDFium-based viewers due to invalid ToUnicodeMap (#1498)
|
|
13
|
+
- Remove deprecated `write` method
|
|
14
|
+
- Drop support for Node.js < 18 and for browsers released before 2020
|
|
15
|
+
|
|
3
16
|
### [v0.14.0] - 2023-11-09
|
|
4
17
|
|
|
5
18
|
- Add support for PDF/A-1b, PDF/A-1a, PDF/A-2b, PDF/A-2a, PDF/A-3b, PDF/A-3a
|
|
6
19
|
- Update crypto-js to v4.2.0 (properly fix security issue)
|
|
7
20
|
|
|
21
|
+
- Add support for EXIF orientation on JPEG images (#626 and #1353)
|
|
22
|
+
|
|
8
23
|
### [v0.13.0] - 2021-10-24
|
|
9
24
|
|
|
10
25
|
- Add tiling pattern support
|
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ Installation uses the [npm](http://npmjs.org/) package manager. Just type the fo
|
|
|
31
31
|
- Transformations
|
|
32
32
|
- Linear and radial gradients
|
|
33
33
|
- Text
|
|
34
|
-
- Line wrapping
|
|
34
|
+
- Line wrapping (with soft hyphen recognition)
|
|
35
35
|
- Text alignments
|
|
36
36
|
- Bulleted lists
|
|
37
37
|
- Font embedding
|