pdfmake 0.2.14 → 0.2.15
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/build/pdfmake.js +50549 -50398
- package/build/pdfmake.js.map +1 -1
- package/build/pdfmake.min.js +2 -2
- package/build/pdfmake.min.js.map +1 -1
- package/build/vfs_fonts.js +2 -2
- package/build-vfs.js +2 -2
- package/eslint.config.mjs +52 -0
- package/package.json +24 -22
- package/src/3rd-party/svg-to-pdfkit/LICENSE +9 -9
- package/src/browser-extensions/pdfMake.js +30 -4
- package/src/documentContext.js +13 -1
- package/src/layoutBuilder.js +1122 -989
- package/src/printer.js +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.15 - 2024-11-02
|
|
4
|
+
|
|
5
|
+
- Added support PDF/A and PDF/UA (see [documentation](https://pdfmake.github.io/docs/0.1/document-definition-object/pdfa/))
|
|
6
|
+
- Changed Virtual file system (VFS) format for better compatibility with frameworks (backwards compatibility preserved). **For compatibility with frameworks, rebuild VFS required!**
|
|
7
|
+
- Browser: Added methods for fonts (`addFonts`, `setFonts`, `clearFonts`)
|
|
8
|
+
- Browser: Added methods for table layouts (`addTableLayouts`, `setTableLayouts`, `clearTableLayouts`)
|
|
9
|
+
- Added support `link`, `linkToPage` and `linkToDestination` for SVG
|
|
10
|
+
- Update pdfkit to 0.15.1
|
|
11
|
+
- Fixed bug with how page breaks provoked by cells with rowspan were handled
|
|
12
|
+
- Fixed find where previous cell started with row span and col span combination
|
|
13
|
+
- Fixed calculating correctly the 'y' at the end of a rowSpan with dontBreakRows
|
|
14
|
+
|
|
3
15
|
## 0.2.14 - 2024-10-09
|
|
4
16
|
|
|
5
17
|
- Fixed drawing top horizontal line of the table with page break
|