pdfmake 0.3.0-beta.1 → 0.3.0-beta.3
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 -1
- package/LICENSE +1 -1
- package/README.md +3 -1
- package/build/pdfmake.js +18834 -19020
- 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/DocMeasure.js +8 -0
- package/js/DocPreprocessor.js +6 -0
- package/js/ElementWriter.js +23 -0
- package/js/LayoutBuilder.js +7 -0
- package/js/PDFDocument.js +28 -1
- package/js/PageElementWriter.js +4 -0
- package/js/Printer.js +101 -7
- package/js/Renderer.js +30 -0
- package/js/URLResolver.js +16 -8
- package/js/browser-extensions/URLBrowserResolver.js +8 -3
- package/package.json +1 -1
- package/src/DocMeasure.js +9 -0
- package/src/DocPreprocessor.js +6 -0
- package/src/ElementWriter.js +26 -0
- package/src/LayoutBuilder.js +7 -0
- package/src/PDFDocument.js +27 -1
- package/src/PageElementWriter.js +4 -0
- package/src/Printer.js +92 -7
- package/src/Renderer.js +35 -0
- package/src/URLResolver.js +16 -8
- package/src/browser-extensions/URLBrowserResolver.js +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
0.3.0-beta.
|
|
3
|
+
## 0.3.0-beta.3 - 2022-10-09
|
|
4
|
+
|
|
5
|
+
- Updated Roboto font (version 3.005)
|
|
6
|
+
- Fixed calculating auto page height
|
|
7
|
+
- Fixed TrueType Collection loading from URL
|
|
8
|
+
- Fixed refetching fonts from URL
|
|
9
|
+
|
|
10
|
+
## 0.3.0-beta.2 - 2022-04-01
|
|
11
|
+
|
|
12
|
+
- Attachments embedding
|
|
13
|
+
- Support passing headers to request for loading font files and images via URL adresses
|
|
14
|
+
|
|
15
|
+
## 0.3.0-beta.1 - 2022-01-01
|
|
4
16
|
|
|
5
17
|
- Port code base to ES6+
|
|
6
18
|
- Unify interface for node and browser **(breaking change)**
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -51,7 +51,9 @@ Check out [the playground](http://bpampuch.github.io/pdfmake/playground.html) an
|
|
|
51
51
|
|
|
52
52
|
## Documentation
|
|
53
53
|
|
|
54
|
-
Documentation URL: https://pdfmake.github.io/docs
|
|
54
|
+
**Documentation URL: https://pdfmake.github.io/docs/**
|
|
55
|
+
|
|
56
|
+
Source of documentation: https://github.com/pdfmake/docs **Improvements are welcome!**
|
|
55
57
|
|
|
56
58
|
## Building from sources
|
|
57
59
|
|