pdfmake 0.2.21 → 0.2.22
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 +6 -0
- package/LICENSE +1 -1
- package/build/pdfmake.js +8249 -8207
- package/build/pdfmake.js.map +1 -1
- package/build/pdfmake.min.js +2 -2
- package/build/pdfmake.min.js.map +1 -1
- package/package.json +1 -1
- package/src/browser-extensions/pdfMake.js +5 -0
- package/src/printer.js +10 -1
- package/src/svgMeasure.js +43 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.22 - 2026-01-07
|
|
4
|
+
|
|
5
|
+
- Added object type validation for parameters in method `createPdf` and `createPdfKitDocument`
|
|
6
|
+
- Added support `SVGElement` object for `svg` node (`SVGElement` object is available only in browser)
|
|
7
|
+
- Fixed rendering SVG without viewBox
|
|
8
|
+
|
|
3
9
|
## 0.2.21 - 2025-12-22
|
|
4
10
|
|
|
5
11
|
- Added `wordBreak` property for `text` node, supported values: `'normal'` (default), `'break-all'`
|
package/LICENSE
CHANGED