pdfmake 0.2.2 → 0.2.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 +8 -2
- package/build/pdfmake.js +4036 -2687
- package/build/pdfmake.js.map +1 -1
- package/build/pdfmake.min.js +2 -2
- package/build/pdfmake.min.js.map +1 -1
- package/package.json +6 -4
- 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/pdfMake.js +8 -13
- package/src/helpers.js +14 -1
- package/src/printer.js +705 -685
- 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,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.3 - 2021-11-06
|
|
4
|
+
|
|
5
|
+
- Tiling pattern support.
|
|
6
|
+
- svg-to-pdfkit package moved as built-in. Solve not used installation of pdfkit.
|
|
7
|
+
- Fixed passing document metadata.
|
|
8
|
+
|
|
3
9
|
## 0.2.2 - 2021-08-02
|
|
4
10
|
|
|
5
|
-
- Fixed compatibility with Internet Explorer 11
|
|
11
|
+
- Fixed compatibility with Internet Explorer 11.
|
|
6
12
|
|
|
7
13
|
## 0.2.1 - 2021-08-02
|
|
8
14
|
|
|
9
|
-
- Upgrade Unicode Line Breaking Algorithm (UAX #14) to Unicode 13.0.0
|
|
15
|
+
- Upgrade Unicode Line Breaking Algorithm (UAX #14) to Unicode 13.0.0.
|
|
10
16
|
- Updated [@foliojs-fork/pdfkit](https://github.com/foliojs-fork/pdfkit) to version 0.12.3.
|
|
11
17
|
- Updated [@foliojs-fork/linebreak](https://github.com/foliojs-fork/linebreak) to version 1.11.1.
|
|
12
18
|
|