@syncfusion/ej2-pdf 23.1.36 → 23.1.38
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 +11 -0
- package/dist/ej2-pdf.umd.min.js +3 -3
- package/dist/ej2-pdf.umd.min.js.map +1 -1
- package/dist/es6/ej2-pdf.es2015.js +156 -29
- package/dist/es6/ej2-pdf.es2015.js.map +1 -1
- package/dist/es6/ej2-pdf.es5.js +156 -30
- package/dist/es6/ej2-pdf.es5.js.map +1 -1
- package/dist/global/ej2-pdf.min.js +3 -3
- package/dist/global/ej2-pdf.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +6 -6
- package/src/pdf/core/annotations/annotation-collection.js +12 -1
- package/src/pdf/core/annotations/annotation.d.ts +21 -1
- package/src/pdf/core/annotations/annotation.js +23 -23
- package/src/pdf/core/graphics/images/image-decoder.d.ts +7 -0
- package/src/pdf/core/graphics/images/image-decoder.js +98 -1
- package/src/pdf/core/import-export/xfdf-document.js +1 -1
- package/src/pdf/core/import-export/xml-document.js +3 -3
- package/src/pdf/core/pdf-cross-reference.js +1 -1
- package/src/pdf/core/utils.d.ts +9 -1
- package/src/pdf/core/utils.js +18 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@
|
|
|
4
4
|
|
|
5
5
|
### PDF Parser
|
|
6
6
|
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Preservation issues in PDF annotation has been resolved.
|
|
10
|
+
- Preservation issues in JPEG image drawing has been resolved.
|
|
11
|
+
- Preservation issues in PDF Form fields appearance has been resolved.
|
|
12
|
+
- Preservation issues in PDF annotation comments has been resolved.
|
|
13
|
+
|
|
14
|
+
## 23.1.36 (2023-09-15)
|
|
15
|
+
|
|
16
|
+
### PDF Parser
|
|
17
|
+
|
|
7
18
|
#### Key Features
|
|
8
19
|
|
|
9
20
|
The Essential JavaScript PDF library is a feature-rich, high-performance, non-UI PDF library written natively in JavaScript. Here are its key features.
|