pdfmake 0.3.0-beta.12 → 0.3.0-beta.14
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 +13 -2
- package/build/pdfmake.js +40467 -48586
- 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 -6
- package/js/DocMeasure.js +9 -0
- package/js/DocumentContext.js +13 -8
- package/js/ElementWriter.js +12 -3
- package/js/LayoutBuilder.js +33 -37
- package/js/PageElementWriter.js +15 -0
- package/js/Printer.js +7 -0
- package/js/Renderer.js +5 -14
- package/js/SVGMeasure.js +2 -2
- package/js/TextInlines.js +1 -1
- package/js/URLResolver.js +3 -0
- package/js/helpers/tools.js +6 -0
- package/package.json +2 -2
- package/src/3rd-party/svg-to-pdfkit/LICENSE +9 -9
- package/src/DocMeasure.js +8 -0
- package/src/DocumentContext.js +15 -13
- package/src/ElementWriter.js +11 -2
- package/src/LayoutBuilder.js +42 -43
- package/src/PageElementWriter.js +19 -0
- package/src/Printer.js +9 -0
- package/src/Renderer.js +3 -16
- package/src/SVGMeasure.js +2 -2
- package/src/TextInlines.js +1 -1
- package/src/URLResolver.js +4 -0
- package/src/helpers/tools.js +5 -0
- package/standard-fonts/Helvetica.js +0 -1
- package/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/pdfmake.iml +0 -11
- package/.idea/vcs.xml +0 -6
- package/eslint.config.mjs +0 -52
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.0-beta.14 - 2024-12-23
|
|
4
|
+
|
|
5
|
+
- Fix big size pdfmake bundle for browser
|
|
6
|
+
|
|
7
|
+
## 0.3.0-beta.13 - 2024-12-15
|
|
8
|
+
|
|
9
|
+
- Update pdfkit to 0.15.2
|
|
10
|
+
- Fixed speed in Node.js if is fetching URL for image or font redirected
|
|
11
|
+
- Fixed aspect ratio for image with exif orientation tag
|
|
12
|
+
- Fixed font size calculation for watermark if is page orientation is changed
|
|
13
|
+
|
|
3
14
|
## 0.3.0-beta.12 - 2024-11-03
|
|
4
15
|
|
|
5
16
|
- Added support PDF/A and PDF/UA (see [documentation](https://pdfmake.github.io/docs/0.3/document-definition-object/pdfa/))
|
|
@@ -45,7 +56,7 @@
|
|
|
45
56
|
- Allow the document language to be specified
|
|
46
57
|
- Fixed cover image size inside table
|
|
47
58
|
- Fixed "Cannot read properties of undefined (reading 'bottomMost')" if table contains too few rows
|
|
48
|
-
- Fixed invalid source-maps in
|
|
59
|
+
- Fixed invalid source-maps in built js file
|
|
49
60
|
|
|
50
61
|
## 0.3.0-beta.6 - 2023-11-09
|
|
51
62
|
|
|
@@ -71,7 +82,7 @@
|
|
|
71
82
|
## 0.3.0-beta.2 - 2022-04-01
|
|
72
83
|
|
|
73
84
|
- Attachments embedding
|
|
74
|
-
- Support passing headers to request for loading font files and images via URL
|
|
85
|
+
- Support passing headers to request for loading font files and images via URL addresses
|
|
75
86
|
|
|
76
87
|
## 0.3.0-beta.1 - 2022-01-01
|
|
77
88
|
|