pdfmake 0.2.2 → 0.2.5
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 +18 -2
- package/build/pdfmake.js +18040 -16739
- 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.js +1 -1
- package/package.json +7 -5
- package/src/3rd-party/svg-to-pdfkit/LICENSE +9 -0
- package/src/3rd-party/svg-to-pdfkit/source.js +2552 -0
- package/src/3rd-party/svg-to-pdfkit.js +3 -0
- package/src/browser-extensions/URLBrowserResolver.js +6 -3
- package/src/browser-extensions/pdfMake.js +31 -18
- package/src/helpers.js +14 -1
- package/src/printer.js +43 -23
- package/src/svgMeasure.js +1 -1
- package/src/tableProcessor.js +31 -12
- package/src/textDecorator.js +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.5 - 2022-04-01
|
|
4
|
+
|
|
5
|
+
- Support passing headers to request for loading font files and images via URL adresses
|
|
6
|
+
|
|
7
|
+
## 0.2.4 - 2021-11-10
|
|
8
|
+
|
|
9
|
+
- Fixed destination path argument in VFS build script.
|
|
10
|
+
- Fixed error "Object.isExtensible is not a function" (bug is in core-js version 3.19.1).
|
|
11
|
+
|
|
12
|
+
## 0.2.3 - 2021-11-06
|
|
13
|
+
|
|
14
|
+
- Updated [@foliojs-fork/pdfkit](https://github.com/foliojs-fork/pdfkit) to version 0.13.0.
|
|
15
|
+
- Tiling pattern support.
|
|
16
|
+
- svg-to-pdfkit package moved as built-in. Solve not used installation of pdfkit.
|
|
17
|
+
- Fixed passing document metadata.
|
|
18
|
+
|
|
3
19
|
## 0.2.2 - 2021-08-02
|
|
4
20
|
|
|
5
|
-
- Fixed compatibility with Internet Explorer 11
|
|
21
|
+
- Fixed compatibility with Internet Explorer 11.
|
|
6
22
|
|
|
7
23
|
## 0.2.1 - 2021-08-02
|
|
8
24
|
|
|
9
|
-
- Upgrade Unicode Line Breaking Algorithm (UAX #14) to Unicode 13.0.0
|
|
25
|
+
- Upgrade Unicode Line Breaking Algorithm (UAX #14) to Unicode 13.0.0.
|
|
10
26
|
- Updated [@foliojs-fork/pdfkit](https://github.com/foliojs-fork/pdfkit) to version 0.12.3.
|
|
11
27
|
- Updated [@foliojs-fork/linebreak](https://github.com/foliojs-fork/linebreak) to version 1.11.1.
|
|
12
28
|
|