pdfmake 0.3.0-beta.18 → 0.3.0-beta.19
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 +8 -0
- package/README.md +1 -7
- package/build/pdfmake.js +61757 -61686
- 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 +4 -4
- package/fonts/Roboto/Roboto-Italic.ttf +0 -0
- package/fonts/Roboto/Roboto-Medium.ttf +0 -0
- package/fonts/Roboto/Roboto-MediumItalic.ttf +0 -0
- package/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/js/LayoutBuilder.js +10 -1
- package/js/OutputDocument.js +22 -34
- package/js/OutputDocumentServer.js +6 -11
- package/js/Printer.js +132 -147
- package/js/TextBreaker.js +30 -3
- package/js/URLResolver.js +23 -62
- package/js/browser-extensions/OutputDocumentBrowser.js +35 -72
- package/js/browser-extensions/index.js +2 -2
- package/package.json +17 -17
- package/src/LayoutBuilder.js +11 -1
- package/src/OutputDocument.js +23 -37
- package/src/OutputDocumentServer.js +6 -11
- package/src/Printer.js +131 -145
- package/src/TextBreaker.js +23 -4
- package/src/URLResolver.js +23 -68
- package/src/browser-extensions/OutputDocumentBrowser.js +33 -71
- package/src/browser-extensions/index.js +2 -2
- package/js/browser-extensions/URLBrowserResolver.js +0 -81
- package/src/browser-extensions/URLBrowserResolver.js +0 -89
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.0-beta.19 - 2025-12-22
|
|
4
|
+
|
|
5
|
+
- Minimal supported version Node.js 20 LTS
|
|
6
|
+
- Added `wordBreak` property for `text` node, supported values: `'normal'` (default), `'break-all'`
|
|
7
|
+
- Used fetch API for downloading fonts and images
|
|
8
|
+
- Update Roboto font (version 3.014)
|
|
9
|
+
- Fixed render empty list entries
|
|
10
|
+
|
|
3
11
|
## 0.3.0-beta.18 - 2025-05-09
|
|
4
12
|
|
|
5
13
|
- Added `section` node
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# pdfmake [![Node.js CI][githubactions_img]][githubactions_url] [![GitHub][github_img]][github_url] [![npm][npm_img]][npm_url] [![
|
|
1
|
+
# pdfmake [![Node.js CI][githubactions_img]][githubactions_url] [![GitHub][github_img]][github_url] [![npm][npm_img]][npm_url] [![CDNJS][cdnjs_img]][cndjs_url]
|
|
2
2
|
|
|
3
3
|
[githubactions_img]: https://github.com/bpampuch/pdfmake/actions/workflows/node.js.yml/badge.svg?branch=master
|
|
4
4
|
[githubactions_url]: https://github.com/bpampuch/pdfmake/actions
|
|
@@ -9,12 +9,6 @@
|
|
|
9
9
|
[npm_img]: https://img.shields.io/npm/v/pdfmake.svg?colorB=0E7FBF
|
|
10
10
|
[npm_url]: https://www.npmjs.com/package/pdfmake
|
|
11
11
|
|
|
12
|
-
[bower_img]: https://img.shields.io/bower/v/pdfmake.svg?colorB=0E7FBF
|
|
13
|
-
[bower_url]: https://github.com/bpampuch/pdfmake
|
|
14
|
-
|
|
15
|
-
[packagist_img]: https://img.shields.io/packagist/v/bpampuch/pdfmake.svg?colorB=0E7FBF
|
|
16
|
-
[packagist_url]: https://packagist.org/packages/bpampuch/pdfmake
|
|
17
|
-
|
|
18
12
|
[cdnjs_img]: https://img.shields.io/cdnjs/v/pdfmake.svg?colorB=0E7FBF
|
|
19
13
|
[cndjs_url]: https://cdnjs.com/libraries/pdfmake
|
|
20
14
|
|