pdfmake 0.3.0-beta.7 → 0.3.0-beta.9
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 +74624 -74406
- package/build/pdfmake.js.map +1 -1
- package/build/pdfmake.min.js +2 -2
- package/build/pdfmake.min.js.map +1 -1
- package/js/3rd-party/svg-to-pdfkit.js +1 -1
- package/js/DocMeasure.js +7 -8
- package/js/DocumentContext.js +6 -13
- package/js/ElementWriter.js +1 -1
- package/js/LayoutBuilder.js +53 -3
- package/js/OutputDocumentServer.js +1 -1
- package/js/PDFDocument.js +1 -1
- package/js/PageElementWriter.js +1 -1
- package/js/PageSize.js +1 -1
- package/js/Printer.js +1 -1
- package/js/Renderer.js +1 -1
- package/js/SVGMeasure.js +1 -1
- package/js/StyleContextStack.js +4 -20
- package/js/TableProcessor.js +17 -6
- package/js/TextBreaker.js +1 -1
- package/js/TextInlines.js +1 -1
- package/js/URLResolver.js +1 -1
- package/js/base.js +1 -1
- package/js/browser-extensions/OutputDocumentBrowser.js +1 -1
- package/js/browser-extensions/index.js +1 -1
- package/js/columnCalculator.js +22 -3
- package/js/helpers/variableType.js +12 -0
- package/package.json +1 -1
- package/src/DocMeasure.js +7 -6
- package/src/DocumentContext.js +6 -13
- package/src/LayoutBuilder.js +52 -2
- package/src/StyleContextStack.js +3 -44
- package/src/TableProcessor.js +22 -6
- package/src/columnCalculator.js +24 -3
- package/src/helpers/variableType.js +11 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.0-beta.9 - 2024-08-09
|
|
4
|
+
|
|
5
|
+
- Fixed and validates input values headerRows and keepWithHeaderRows
|
|
6
|
+
- Fixed numbering nested ordered lists
|
|
7
|
+
- Speed up StyleContextStack.autopush() for large tables
|
|
8
|
+
- Fixed widths of table columns with percentages
|
|
9
|
+
- Fixed storing the correct context in the ending cell of a row span when there were nested column groups (columns or tables)
|
|
10
|
+
|
|
11
|
+
## 0.3.0-beta.8 - 2024-03-07
|
|
12
|
+
|
|
13
|
+
- Removed unused brfs dependency
|
|
14
|
+
|
|
3
15
|
## 0.3.0-beta.7 - 2024-01-01
|
|
4
16
|
|
|
5
17
|
- Minimal supported version Node.js 16 LTS
|