@syncfusion/ej2-react-pdfviewer 23.1.44 → 23.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 CHANGED
@@ -6,6 +6,25 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I517898` - Now, the radio button's background color does not shifts to white automatically.
10
+ - `#I507874` - Now, circles with graphics are rendered properly when loading the specific document.
11
+ - `#I517897` - Now, the background color is not changed for read-only dropdown, checkbox and radio button fields in other viewers while saving the document.
12
+
13
+ ## 23.2.4 (2023-11-20)
14
+
15
+ ### PDF Viewer
16
+
17
+ #### Bug Fixes
18
+
19
+ - `#I512867` - Now, the transparency in the border color for the checkbox is being maintained when the document is loaded.
20
+ - `#I515960` - Now, the mouse cursor position is properly updated for multiline fields when clicked.
21
+
22
+ ## 23.1.44 (2023-11-07)
23
+
24
+ ### PDF Viewer
25
+
26
+ #### Bug Fixes
27
+
9
28
  - `#I511552` - Now, the `openThumbnailPane` method does not close the thumbnail pane.
10
29
  - `#I509218` - Now, The thumbnail pane is now rendered properly when opened programmatically.
11
30
  - `#I509483` - Now, the issue of loading the provided PDF document has been resolved.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-react-pdfviewer.min.js
3
- * version : 23.1.44
3
+ * version : 23.2.5
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-react-pdfviewer.umd.min.js
3
- * version : 23.1.44
3
+ * version : 23.2.5
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-react-pdfviewer@*",
3
- "_id": "@syncfusion/ej2-react-pdfviewer@23.1.43",
3
+ "_id": "@syncfusion/ej2-react-pdfviewer@23.2.4",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-MonxqQYOo16dw+GUBuV8jttutz7fcAClUnt77DBCG1eMKuMRafU5K8vpNU2TyYereo9DwlJIeoJRxD5O3FjZrA==",
5
+ "_integrity": "sha512-Pge4+J5q6tZStbwdpOVN3TdUjeoqmgHjOgo36self5g2YQ2Ygh1tUzxaOt6oJx/Hx3za+9cilCtX0oCa4pP0HA==",
6
6
  "_location": "/@syncfusion/ej2-react-pdfviewer",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-pdfviewer/-/ej2-react-pdfviewer-23.1.43.tgz",
23
- "_shasum": "ce18720e72f34f10d55ac76a63a28bd87064a9f9",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-pdfviewer/-/ej2-react-pdfviewer-23.2.4.tgz",
23
+ "_shasum": "640ddb62256d9b28502c6045b7d9e3941278c6cd",
24
24
  "_spec": "@syncfusion/ej2-react-pdfviewer@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~23.1.41",
35
- "@syncfusion/ej2-pdfviewer": "23.1.44",
36
- "@syncfusion/ej2-react-base": "~23.1.43"
34
+ "@syncfusion/ej2-base": "~23.2.4",
35
+ "@syncfusion/ej2-pdfviewer": "23.2.5",
36
+ "@syncfusion/ej2-react-base": "~23.2.5"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 PDF viewer Component for React",
@@ -54,6 +54,6 @@
54
54
  "type": "git",
55
55
  "url": "git+https://github.com/syncfusion/ej2-react-ui-components.git"
56
56
  },
57
- "version": "23.1.44",
57
+ "version": "23.2.5",
58
58
  "sideEffects": false
59
59
  }
@@ -10,7 +10,7 @@ import { DefaultHtmlAttributes } from '@syncfusion/ej2-react-base';
10
10
  export declare class PdfViewerComponent extends PdfViewer {
11
11
  state: Readonly<{
12
12
  children?: React.ReactNode | React.ReactNode[];
13
- }> & Readonly<PdfViewerModel & DefaultHtmlAttributes>;
13
+ }> & Readonly<PdfViewerModel | DefaultHtmlAttributes>;
14
14
  setState: any;
15
15
  private getDefaultAttributes;
16
16
  initRenderCalled: boolean;
@@ -20,7 +20,7 @@ export declare class PdfViewerComponent extends PdfViewer {
20
20
  private immediateRender;
21
21
  props: Readonly<{
22
22
  children?: React.ReactNode | React.ReactNode[];
23
- }> & Readonly<PdfViewerModel & DefaultHtmlAttributes>;
23
+ }> & Readonly<PdfViewerModel | DefaultHtmlAttributes>;
24
24
  forceUpdate: (callBack?: () => any) => void;
25
25
  context: Object;
26
26
  portals: any;
@@ -3473,7 +3473,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3473
3473
  }
3474
3474
 
3475
3475
  .e-pv-canvas-signature-blazor {
3476
- width: 100%;
3476
+ width: 714px;
3477
3477
  }
3478
3478
 
3479
3479
  .e-pv-font-appearance-style {
@@ -3529,7 +3529,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3529
3529
  }
3530
3530
 
3531
3531
  .e-pv-canvas-signature-blazor {
3532
- width: 100%;
3532
+ width: 714px;
3533
3533
  }
3534
3534
 
3535
3535
  .e-pv-font-appearance-style {
@@ -3473,7 +3473,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3473
3473
  }
3474
3474
 
3475
3475
  .e-pv-canvas-signature-blazor {
3476
- width: 100%;
3476
+ width: 714px;
3477
3477
  }
3478
3478
 
3479
3479
  .e-pv-font-appearance-style {
@@ -3529,7 +3529,7 @@ div > .e-pv-bookmark-icon.e-pv-icon.e-right {
3529
3529
  }
3530
3530
 
3531
3531
  .e-pv-canvas-signature-blazor {
3532
- width: 100%;
3532
+ width: 714px;
3533
3533
  }
3534
3534
 
3535
3535
  .e-pv-font-appearance-style {