@syncfusion/ej2-angular-pdfviewer 27.1.48 → 27.1.50

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 CHANGED
@@ -6,6 +6,20 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I626172` - Now, stamp annotation is saved properly when adding custom Data property.
10
+ - `#I631717` - Now, Free text author and comment characters are not changed when importing the exported annotation.
11
+ - `#I632150` - Now, the handwritten signature is properly selected after being added to the PDF viewer on a mobile device.
12
+ - `#I626892` - Now, the large document opens in `standalone` PDF Viewer.
13
+ - `#I632511` - Now, the fetch request is not sent if the URL is set to the document path on the Server-Backed PDF Viewer.
14
+ - `#I632378` - Now, copy paste is working with formfields when `enableFormDesigner` as false.
15
+ - `#I631207` - Now, the `textmarkup` annotations are not unselected when changing the properties programmatically.
16
+
17
+ ## 27.1.48 (2024-09-18)
18
+
19
+ ### PDF Viewer
20
+
21
+ #### Bug Fixes
22
+
9
23
  - `#I620380` - Now, the sticky note annotation was added correctly along with the comment programmatically inside the annotationAdd event without any exceptions.
10
24
  - `#I624857` - The `ArgumentOutOfRangeException` no longer occurs when clicking the submit button in the provided document.
11
25
  - `#F194120` - The bookmark navigation now works properly in the provided document.
@@ -21,6 +35,11 @@
21
35
  - `#I592524` , `#I598159` - Added support for loading custom fonts in `PDFium` WASM to ensure proper rendering of page content.
22
36
  - `#I340793` , `#I345576` , `#I359942` , `#I379567` , `#I386590` , `#I605421` , `#I607974` - Added support for custom fonts in the `TypeHere` signature and initial fields.
23
37
 
38
+ ### Breaking Changes
39
+
40
+ - In the Server-backed PDF Viewer, two action methods, `RenderPdfTexts` and `ValidatePassword`, are now required in the controller for proper functionality. This change is necessary because text extraction for PDF documents has been separated by default. Additionally, when importing a new PDF document in the organize window, a protected document validation check must be performed before the import.
41
+ - **Solution** : To update the `PDFViewerController` file on your server, refer to the framework-specific sample repository available [here](https://github.com/SyncfusionExamples/EJ2-PDFViewer-WebServices/tree/main) for guidance.
42
+
24
43
  ## 26.2.12 (2024-09-03)
25
44
 
26
45
  ### PDF Viewer
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-pdfviewer@*",
3
- "_id": "@syncfusion/ej2-angular-pdfviewer@26.1.35",
3
+ "_id": "@syncfusion/ej2-angular-pdfviewer@27.1.48",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-KUPeNG66nnCQS5JiyjhjPIvDIPBCiyBiuNWdVqvgg/0QNgxrjEE0EchZpS2OWo3+jOCtvnOA/vqwWa+zJ250AQ==",
5
+ "_integrity": "sha512-362cdoz+lT4O/3sSqym4s3kq8kyZBB8xlVmoLWYh8VFsgovhdaMsLmJZorMfEPWO1SajZcA+LLatz9iSBFzPCw==",
6
6
  "_location": "/@syncfusion/ej2-angular-pdfviewer",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-angular-release/@syncfusion/ej2-angular-pdfviewer/-/ej2-angular-pdfviewer-26.1.35.tgz",
23
- "_shasum": "8354a49b809a2fc54c6fc9d2cca42ef9b2925447",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-angular-hotfix/@syncfusion/ej2-angular-pdfviewer/-/ej2-angular-pdfviewer-27.1.48.tgz",
23
+ "_shasum": "c330adca1e8cbc12d85e68643c27f77839d78a53",
24
24
  "_spec": "@syncfusion/ej2-angular-pdfviewer@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_27.1.1/ivypackages/included",
26
26
  "author": {
@@ -31,10 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-angular-base": "~27.1.48",
35
- "@syncfusion/ej2-base": "~27.1.48",
36
- "@syncfusion/ej2-pdfviewer": "27.1.48",
37
- "tslib": "^2.3.0"
34
+ "@syncfusion/ej2-angular-base": "~27.1.50",
35
+ "@syncfusion/ej2-base": "~27.1.50",
36
+ "@syncfusion/ej2-pdfviewer": "27.1.50"
38
37
  },
39
38
  "deprecated": false,
40
39
  "description": "Essential JS 2 PDF viewer Component for Angular",
@@ -71,5 +70,5 @@
71
70
  "schematics": "./schematics/collection.json",
72
71
  "sideEffects": false,
73
72
  "typings": "syncfusion-ej2-angular-pdfviewer.d.ts",
74
- "version": "27.1.48"
73
+ "version": "27.1.50"
75
74
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-pdfviewer";
2
- export declare const pkgVer = "^26.1.35";
2
+ export declare const pkgVer = "^27.1.48";
3
3
  export declare const moduleName = "PdfViewerModule";
4
- export declare const themeVer = "~26.1.35";
4
+ export declare const themeVer = "~27.1.48";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-pdfviewer';
4
- exports.pkgVer = '^27.1.48';
4
+ exports.pkgVer = '^27.1.50';
5
5
  exports.moduleName = 'PdfViewerModule';
6
- exports.themeVer = '~27.1.48';
6
+ exports.themeVer = '~27.1.50';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-pdfviewer';
2
- export const pkgVer = '^27.1.48';
2
+ export const pkgVer = '^27.1.50';
3
3
  export const moduleName = 'PdfViewerModule';
4
- export const themeVer = '~27.1.48';
4
+ export const themeVer = '~27.1.50';