pdfmake 0.3.0-beta.2 → 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 +7 -0
- package/LICENSE +1 -1
- package/README.md +1 -1
- package/build/pdfmake.js +916 -1304
- 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/Printer.js +45 -13
- package/js/URLResolver.js +10 -5
- package/package.json +1 -1
- package/src/Printer.js +41 -13
- package/src/URLResolver.js +10 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
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
|
+
|
|
3
10
|
## 0.3.0-beta.2 - 2022-04-01
|
|
4
11
|
|
|
5
12
|
- Attachments embedding
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ Check out [the playground](http://bpampuch.github.io/pdfmake/playground.html) an
|
|
|
53
53
|
|
|
54
54
|
**Documentation URL: https://pdfmake.github.io/docs/**
|
|
55
55
|
|
|
56
|
-
Source of
|
|
56
|
+
Source of documentation: https://github.com/pdfmake/docs **Improvements are welcome!**
|
|
57
57
|
|
|
58
58
|
## Building from sources
|
|
59
59
|
|