pdfmake 0.3.0-beta.17 → 0.3.0-beta.18
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/README.md +1 -0
- package/build/pdfmake.js +6808 -6661
- package/build/pdfmake.js.map +1 -1
- package/build/pdfmake.min.js +2 -2
- package/build/pdfmake.min.js.map +1 -1
- package/js/DocMeasure.js +12 -1
- package/js/DocPreprocessor.js +21 -6
- package/js/DocumentContext.js +5 -4
- package/js/LayoutBuilder.js +127 -33
- package/js/PageElementWriter.js +2 -2
- package/js/Printer.js +3 -1
- package/js/StyleContextStack.js +4 -0
- package/package.json +13 -13
- package/src/DocMeasure.js +15 -1
- package/src/DocPreprocessor.js +25 -6
- package/src/DocumentContext.js +4 -4
- package/src/LayoutBuilder.js +158 -38
- package/src/PageElementWriter.js +2 -2
- package/src/Printer.js +3 -1
- package/src/StyleContextStack.js +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.0-beta.18 - 2025-05-09
|
|
4
|
+
|
|
5
|
+
- Added `section` node
|
|
6
|
+
- Fixed crash that occurred when using automatic page height
|
|
7
|
+
- Fixed text overflow with some non-wrappable texts
|
|
8
|
+
|
|
3
9
|
## 0.3.0-beta.17 - 2025-04-29
|
|
4
10
|
|
|
5
11
|
- Fixed DoS via repeatedly redirect URL in file embedding
|
package/README.md
CHANGED
|
@@ -42,6 +42,7 @@ Check out [the playground](http://bpampuch.github.io/pdfmake/playground.html) an
|
|
|
42
42
|
* background-layer,
|
|
43
43
|
* page dimensions and orientations,
|
|
44
44
|
* margins,
|
|
45
|
+
* document sections,
|
|
45
46
|
* custom page breaks,
|
|
46
47
|
* font embedding,
|
|
47
48
|
* support for complex, multi-level (nested) structures,
|