pdfmake 0.3.0-beta.10 → 0.3.0-beta.12
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/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/pdfmake.iml +11 -0
- package/.idea/vcs.xml +6 -0
- package/CHANGELOG.md +13 -0
- package/build/pdfmake.js +44815 -44689
- 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 +6 -5
- package/eslint.config.mjs +52 -52
- package/js/DocumentContext.js +12 -1
- package/js/ElementWriter.js +4 -1
- package/js/LayoutBuilder.js +206 -81
- package/js/PageElementWriter.js +2 -2
- package/js/Printer.js +6 -0
- package/js/Renderer.js +17 -0
- package/js/TableProcessor.js +37 -13
- package/package.json +14 -14
- package/src/3rd-party/svg-to-pdfkit/LICENSE +9 -9
- package/src/DocumentContext.js +13 -1
- package/src/ElementWriter.js +4 -1
- package/src/LayoutBuilder.js +211 -79
- package/src/PageElementWriter.js +2 -2
- package/src/Printer.js +6 -0
- package/src/Renderer.js +11 -0
- package/src/TableProcessor.js +37 -15
package/.idea/misc.xml
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="WEB_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$">
|
|
5
|
+
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
|
|
6
|
+
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
|
|
7
|
+
</content>
|
|
8
|
+
<orderEntry type="inheritedJdk" />
|
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
10
|
+
</component>
|
|
11
|
+
</module>
|
package/.idea/vcs.xml
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.0-beta.12 - 2024-11-03
|
|
4
|
+
|
|
5
|
+
- Added support PDF/A and PDF/UA (see [documentation](https://pdfmake.github.io/docs/0.3/document-definition-object/pdfa/))
|
|
6
|
+
- Added support `link`, `linkToPage` and `linkToDestination` for SVG
|
|
7
|
+
- Update pdfkit to 0.15.1
|
|
8
|
+
- Fixed bug with how page breaks provoked by cells with rowspan were handled
|
|
9
|
+
- Fixed find where previous cell started with row span and col span combination
|
|
10
|
+
- Fixed calculating correctly the 'y' at the end of a rowSpan with dontBreakRows
|
|
11
|
+
|
|
12
|
+
## 0.3.0-beta.11 - 2024-10-09
|
|
13
|
+
|
|
14
|
+
- Fixed drawing top horizontal line of the table with page break
|
|
15
|
+
|
|
3
16
|
## 0.3.0-beta.10 - 2024-09-22
|
|
4
17
|
|
|
5
18
|
- Drop support Internet Explorer 11 (Microsoft will not support from 2022)
|