pdfmake 0.3.0-beta.6 → 0.3.0-beta.7
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 +9 -0
- package/LICENSE +1 -1
- package/build/pdfmake.js +37589 -37619
- package/build/pdfmake.js.map +1 -1
- package/build/pdfmake.min.js +2 -2
- package/build/pdfmake.min.js.map +1 -1
- package/js/3rd-party/svg-to-pdfkit/source.js +0 -2
- package/js/DocMeasure.js +3 -0
- package/js/Printer.js +1 -0
- package/js/StyleContextStack.js +0 -1
- package/js/TableProcessor.js +3 -0
- package/js/TextDecorator.js +1 -1
- package/js/qrEnc.js +5 -4
- package/package.json +21 -20
- package/src/DocMeasure.js +3 -0
- package/src/Printer.js +1 -0
- package/src/TableProcessor.js +4 -0
- package/src/TextDecorator.js +1 -1
- package/src/qrEnc.js +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.0-beta.7 - 2024-01-01
|
|
4
|
+
|
|
5
|
+
- Minimal supported version Node.js 16 LTS
|
|
6
|
+
- Added padding option for QR code
|
|
7
|
+
- Allow the document language to be specified
|
|
8
|
+
- Fixed cover image size inside table
|
|
9
|
+
- Fixed "Cannot read properties of undefined (reading 'bottomMost')" if table contains too few rows
|
|
10
|
+
- Fixed invalid source-maps in builded js file
|
|
11
|
+
|
|
3
12
|
## 0.3.0-beta.6 - 2023-11-09
|
|
4
13
|
|
|
5
14
|
- Update pdfkit to 0.14.0
|
package/LICENSE
CHANGED