@syncfusion/ej2-angular-pdfviewer 20.1.60 → 20.2.36

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.
Files changed (100) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +5 -0
  3. package/esm2020/src/pdfviewer/pdfviewer-all.module.mjs +62 -0
  4. package/esm2020/src/pdfviewer/pdfviewer.component.mjs +143 -0
  5. package/esm2020/src/pdfviewer/pdfviewer.module.mjs +25 -0
  6. package/esm2020/syncfusion-ej2-angular-pdfviewer.mjs +5 -0
  7. package/fesm2015/syncfusion-ej2-angular-pdfviewer.mjs +231 -0
  8. package/fesm2015/syncfusion-ej2-angular-pdfviewer.mjs.map +1 -0
  9. package/fesm2020/syncfusion-ej2-angular-pdfviewer.mjs +231 -0
  10. package/fesm2020/syncfusion-ej2-angular-pdfviewer.mjs.map +1 -0
  11. package/package.json +29 -15
  12. package/schematics/utils/lib-details.ts +2 -2
  13. package/src/pdfviewer/pdfviewer-all.module.d.ts +6 -0
  14. package/src/pdfviewer/pdfviewer.component.d.ts +3 -0
  15. package/src/pdfviewer/pdfviewer.module.d.ts +6 -0
  16. package/styles/_all.scss +0 -0
  17. package/styles/bootstrap5-dark.css +1 -1
  18. package/styles/fluent-dark.css +3 -3
  19. package/styles/fluent.css +3 -3
  20. package/styles/pdfviewer/_all.scss +2 -0
  21. package/styles/pdfviewer/_bootstrap-dark-definition.scss +536 -0
  22. package/styles/pdfviewer/_bootstrap-definition.scss +536 -0
  23. package/styles/pdfviewer/_bootstrap4-definition.scss +582 -0
  24. package/styles/pdfviewer/_bootstrap5-dark-definition.scss +1 -0
  25. package/styles/pdfviewer/_bootstrap5-definition.scss +531 -0
  26. package/styles/pdfviewer/_fabric-dark-definition.scss +533 -0
  27. package/styles/pdfviewer/_fabric-definition.scss +535 -0
  28. package/styles/pdfviewer/_fluent-dark-definition.scss +1 -0
  29. package/styles/pdfviewer/_fluent-definition.scss +537 -0
  30. package/styles/pdfviewer/_fusionnew-definition.scss +531 -0
  31. package/styles/pdfviewer/_highcontrast-definition.scss +535 -0
  32. package/styles/pdfviewer/_highcontrast-light-definition.scss +531 -0
  33. package/styles/pdfviewer/_layout.scss +195 -0
  34. package/styles/pdfviewer/_material-dark-definition.scss +534 -0
  35. package/styles/pdfviewer/_material-definition.scss +532 -0
  36. package/styles/pdfviewer/_material3-definition.scss +531 -0
  37. package/styles/pdfviewer/_tailwind-dark-definition.scss +1 -0
  38. package/styles/pdfviewer/_tailwind-definition.scss +537 -0
  39. package/styles/pdfviewer/_theme.scss +4112 -0
  40. package/styles/pdfviewer/bootstrap-dark.scss +4 -1
  41. package/styles/pdfviewer/bootstrap.scss +4 -1
  42. package/styles/pdfviewer/bootstrap4.scss +4 -1
  43. package/styles/pdfviewer/bootstrap5-dark.css +1 -1
  44. package/styles/pdfviewer/bootstrap5-dark.scss +4 -1
  45. package/styles/pdfviewer/bootstrap5.scss +4 -1
  46. package/styles/pdfviewer/fabric-dark.scss +4 -1
  47. package/styles/pdfviewer/fabric.scss +4 -1
  48. package/styles/pdfviewer/fluent-dark.css +3 -3
  49. package/styles/pdfviewer/fluent-dark.scss +4 -1
  50. package/styles/pdfviewer/fluent.css +3 -3
  51. package/styles/pdfviewer/fluent.scss +4 -1
  52. package/styles/pdfviewer/highcontrast-light.scss +4 -1
  53. package/styles/pdfviewer/highcontrast.scss +4 -1
  54. package/styles/pdfviewer/icons/_bootstrap-dark.scss +475 -0
  55. package/styles/pdfviewer/icons/_bootstrap.scss +480 -0
  56. package/styles/pdfviewer/icons/_bootstrap4.scss +482 -0
  57. package/styles/pdfviewer/icons/_bootstrap5-dark.scss +1 -0
  58. package/styles/pdfviewer/icons/_bootstrap5.scss +489 -0
  59. package/styles/pdfviewer/icons/_fabric-dark.scss +489 -0
  60. package/styles/pdfviewer/icons/_fabric.scss +492 -0
  61. package/styles/pdfviewer/icons/_fluent-dark.scss +1 -0
  62. package/styles/pdfviewer/icons/_fluent.scss +488 -0
  63. package/styles/pdfviewer/icons/_fusionnew.scss +489 -0
  64. package/styles/pdfviewer/icons/_highcontrast-light.scss +476 -0
  65. package/styles/pdfviewer/icons/_highcontrast.scss +475 -0
  66. package/styles/pdfviewer/icons/_material-dark.scss +477 -0
  67. package/styles/pdfviewer/icons/_material.scss +480 -0
  68. package/styles/pdfviewer/icons/_material3.scss +489 -0
  69. package/styles/pdfviewer/icons/_tailwind-dark.scss +489 -0
  70. package/styles/pdfviewer/icons/_tailwind.scss +489 -0
  71. package/styles/pdfviewer/material-dark.scss +4 -1
  72. package/styles/pdfviewer/material.scss +4 -1
  73. package/styles/pdfviewer/tailwind-dark.css +17 -17
  74. package/styles/pdfviewer/tailwind-dark.scss +4 -1
  75. package/styles/pdfviewer/tailwind.css +1 -1
  76. package/styles/pdfviewer/tailwind.scss +4 -1
  77. package/styles/tailwind-dark.css +17 -17
  78. package/styles/tailwind.css +1 -1
  79. package/syncfusion-ej2-angular-pdfviewer.d.ts +5 -0
  80. package/@syncfusion/ej2-angular-pdfviewer.es5.js +0 -270
  81. package/@syncfusion/ej2-angular-pdfviewer.es5.js.map +0 -1
  82. package/@syncfusion/ej2-angular-pdfviewer.js +0 -251
  83. package/@syncfusion/ej2-angular-pdfviewer.js.map +0 -1
  84. package/CHANGELOG.md +0 -1246
  85. package/dist/ej2-angular-pdfviewer.umd.js +0 -454
  86. package/dist/ej2-angular-pdfviewer.umd.js.map +0 -1
  87. package/dist/ej2-angular-pdfviewer.umd.min.js +0 -11
  88. package/dist/ej2-angular-pdfviewer.umd.min.js.map +0 -1
  89. package/ej2-angular-pdfviewer.d.ts +0 -5
  90. package/ej2-angular-pdfviewer.metadata.json +0 -1
  91. package/postinstall/tagchange.js +0 -18
  92. package/schematics/collection.json +0 -10
  93. package/schematics/ng-add/index.d.ts +0 -3
  94. package/schematics/ng-add/index.js +0 -9
  95. package/schematics/ng-add/schema.d.ts +0 -13
  96. package/schematics/ng-add/schema.js +0 -2
  97. package/schematics/ng-add/schema.json +0 -34
  98. package/schematics/tsconfig.json +0 -25
  99. package/schematics/utils/lib-details.d.ts +0 -4
  100. package/schematics/utils/lib-details.js +0 -6
package/CHANGELOG.md DELETED
@@ -1,1246 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ## 20.1.59 (2022-06-07)
6
-
7
- ### PDF Viewer
8
-
9
- #### Bug Fixes
10
-
11
- - `#F174154`- Now, the signature value for all signature fields in the PDF document will be updated programmatically using the `updateFormFieldsValue()` method.
12
- - `#SF-376222`- Now, Annotation selector binds correctly to annotations when dragging.
13
- - `#SF-367416`- The `FindText()` method of PDF Base allows for finding the number.
14
- - `#SF-372876`- The `annotationSelect` and `commentAdd` events are triggered properly for the sticky notes annotation.
15
-
16
- ## 20.1.58 (2022-05-31)
17
-
18
- ### PDF Viewer
19
-
20
- #### Bug Fixes
21
-
22
- - `#SF-377034`- Now, the existing form fields value can be retrieved using the `retrieveFormFields()` method.
23
- - `#SF-367416`- The radio buttons on the iPad are displayed properly after zooming in and out.
24
- - `#SF-374726`- Signatures will appear in the PDF viewer for the provided document.
25
-
26
- ## 20.1.57 (2022-05-24)
27
-
28
- ### PDF Viewer
29
-
30
- #### Bug Fixes
31
-
32
- - `#SF-376240`- Multiple words in the typed handwritten signature and signature fields are preserved correctly in the downloaded document.
33
- - `#F174506`- Improved the printing quality of the PDF viewer.
34
- - `#SF-372853`- Now, ink annotation will be added programmatically with path data available in the annotationAdd event.
35
-
36
- ## 20.1.56 (2022-05-17)
37
-
38
- ### PDF Viewer
39
-
40
- #### Bug Fixes
41
-
42
- - `#SF-371824`- The properties of form fields will be updated properly using the `updateFormField` method while scrolling over pages.
43
-
44
- ## 20.1.55 (2022-05-12)
45
-
46
- ### PDF Viewer
47
-
48
- #### New Features
49
-
50
- - `#SF-368647`, `#SF-366041`- Exposed a method to focus form fields on a document.
51
- - `#SF-362221`, `#SF-364814`, `#SF-368380`, `#SF-363379`- Provided the support for field Id and field Name for the Form Fields events.
52
- - `#SF-353301`- Implemented the `GetPageNumberFromClientPoint`, `ConvertClientPointToPagePoint`, `ConvertPagePointToClientPoint`, `ConvertPagePointToScrollingPoint` and `zoomToRect` methods.
53
-
54
- #### Bug Fixes
55
-
56
- - `#SF-372732`- A signature in the signature field will be displayed in the downloaded document when the form field properties have been updated using the `updateFormFields` method.
57
- - `#SF-361979`- Now, signature fields with the same value for the name property will be visible when the document is downloaded and reloaded.
58
- - `#SF-367560`, `#SF-367313`- Improved the pinch-zoom in and out responsiveness in the mobile device.
59
- - `#SF-368770`, `#SF-373344`, `#SF-372215`- Now, the properties of text box fields are changed properly using the `textFieldSettings` property.
60
- - `#SF-369002`- A signature will be downloaded in the correct position for rotated and scanned documents.
61
- - `#SF-369554`- The form fields are now added horizontally to the page, even for rotated documents.
62
- - `#SF-371560`- Form fields in a rotated document will be rendered according to the field rotation.
63
- - `#SF-373137`- The `ArgumentOutOfRangeException` exception will no longer occur when extracting the text for the provided document.
64
- - `#SF-375548`, `#SF-374826`, `#SF-375215`, `#SF-376171`, `#SF-376531`- The `Microsoft.Extensions.Caching.Memory` was changed into a stable version.
65
- - `#SF-364871`- Now, the handwritten signature images and custom stamps will be resized proportionally.
66
- - `#SF-368168`- PDF Viewer toolbar appeared properly from view on zooming in mobile mode.
67
- - `#SF-370140`- The label content of calibrating annotations is correctly updated when their properties are edited programmatically.
68
- - `#SF-370758`- The Script error will no longer be thrown while downloading the document after adding the handwritten type signature on a mobile device.
69
- - `#SF-370904`- The signature collection and some signature properties are properly defined in the `addSignature` event on a mobile device.
70
- - `#SF-377746`- The PDF Viewer download button no longer opens the blob URL in Firefox for downloading the document.
71
- - `#SF-367878`- The Script error will no longer be thrown while clicking the form field for the second time.
72
- - `#SF-373785`- The initial field will no longer be undefined after filling the field.
73
- - `#SF-363381`- The `formFieldPropertiesChange` event triggers on removing the signature from the signature field.
74
- - `#SF-371825`- Now, the form fields will appear while scrolling through the different pages.
75
- - `#SF-371838`- The Custom stamp annotation will be rendered correctly for the PDF document provided.
76
- - `#SF-365736`, `#SF-366420`- In mobile devices, the Script error will no longer occur when adding the signature.
77
-
78
- ## 20.1.52 (2022-05-04)
79
-
80
- ### PDF Viewer
81
-
82
- #### Bug Fixes
83
-
84
- - `#SF-361979`- Now, signature fields with the same value for the name property will be visible when the document is downloaded and reloaded.
85
-
86
- ## 20.1.51 (2022-04-26)
87
-
88
- ### PDF Viewer
89
-
90
- #### Bug Fixes
91
-
92
- - `#SF-369554`- The form fields are now added horizontally to the page, even for rotated documents.
93
- - `#SF-369733`- The free text annotation is no longer rotated when it is added programmatically to rotated documents.
94
- - `#SF-371560`- Form fields in a rotated document will be rendered according to the field rotation.
95
-
96
- ## 20.1.50 (2022-04-19)
97
-
98
- ### PDF Viewer
99
-
100
- #### New Features
101
-
102
- - `#SF-362221`,`#SF-364814`,`#SF-368380`,`#SF-363379`- Provided the support for field Id and field Name for the Form Fields events.
103
- - `#SF-353301`- Implemented the `zoomTo` method.
104
-
105
- #### Bug Fixes
106
-
107
- - `#SF-366955`- Now, the page can be scrolled in mobile mode when it is in fitToPage mode.
108
- - `#SF-368168`- PDF Viewer toolbar appeared properly from view on zooming in mobile mode.
109
- - `#SF-367878`- The Script error will no longer be thrown while clicking the form field for the second time.
110
- - `#SF-368770`,`#SF-373344`,`#SF-372215`- Now, the properties of text box fields are changed properly using the `textFieldSettings` property.
111
- - `#SF-370140`- The label content of calibrate annotations is correctly updated when their properties are edited programmatically.
112
- - `#SF-370758`- The Script error will no longer be thrown while downloading the document after adding the handwritten type signature in mobile device.
113
- - `#SF-370904`- The signature collection and some signature properties are properly defined in the `addSignature` event on mobile device.
114
- - `#SF-373344`,`#SF-372215`- The Script error will no longer be thrown while adding PDF Viewer to the Angular application.
115
-
116
- ## 20.1.47 (2022-04-04)
117
-
118
- ### PDF Viewer
119
-
120
- #### New Features
121
-
122
- - `#SF-368647`, `#SF-366041`- Exposed a method to focus form fields in a document.
123
-
124
- #### Bug Fixes
125
-
126
- - `#SF-366679`- Selection is working properly for the overlapped stamp annotations.
127
- - `#SF-364656`- Now, the signature fields are read-only when the annotation and form designer modules are disabled.
128
-
129
- ## 19.4.55 (2022-03-08)
130
-
131
- ### PDF Viewer
132
-
133
- #### Bug Fixes
134
-
135
- - `#SF-365496`- In editable mode, the free text annotation remains in the same position during zooming.
136
- - `#SF-366345`- In mobile devices, context menus will not appear when moving annotations.
137
-
138
- ## 19.4.54 (2022-03-01)
139
-
140
- ### PDF Viewer
141
-
142
- #### Bug Fixes
143
-
144
- - `#SF-362858`- The existing form fields are now cleared completely from the collections when loading another document.
145
- - `#F172325`- The Script error will no longer be thrown while scrolling the landscape PDF documents before loading.
146
- - `#SF-364909`- The Ink annotation curve is now smooth on mobile devices at higher zoom factors.
147
- - `#SF-364296`- The free text annotation is now not visible in the print preview when the `isPrint` property is set to false.
148
- - `#SF-364510`, `#SF-363938`- The signature is now drawn correctly in the signature field on switching the tabs.
149
- - `#SF-364296`- The PDF document is now downloaded properly when the form field background color is transparent.
150
- - `#SF-363381`- The `formFieldPropertiesChange` event triggers on removing the signature from the signature field.
151
- - `#SF-362811`, `#SF-364480`- The existing from field collections are now updated properly when loading the document.
152
-
153
- ## 19.4.53 (2022-02-22)
154
-
155
- ### PDF Viewer
156
-
157
- #### Bug Fixes
158
-
159
- - `#SF-362122` - Now, the shape annotation bounds are updated properly in the `annotationResize` event.
160
- - `#SF-361850` - Now, the annotation toolbar icons are aligned correctly after resizing.
161
- - `#SF-363301` - The script error is no longer thrown while hovering the toolbar icons without using the `showTooltip` property.
162
- - `#SF-362647` - Now, the signature, and initial fields are unable to edit in the read-only mode.
163
- - `#SF-361801` - Script error is no longer thrown while destroying the viewer control in the IE browser.
164
- - `#SF-363899` - Now, the `annotationUnSelect` event triggers for custom stamp annotations.
165
- - `#SF-363936` - Now, the signature panel will not be opened on right-click of signature fields.
166
- - `#F168155` - The downloaded document displays Czech characters.
167
-
168
- ## 19.4.52 (2022-02-15)
169
-
170
- ### PDF Viewer
171
-
172
- #### Bug Fixes
173
-
174
- - `#SF-361967`- Copy and paste is now working properly for the signature field when it is added at the bottom of the page.
175
- - `#SF- 361906`- The text position for the provided PDF document is now correct.
176
- - `#SF-361379`- While importing the annotations, the FontColor and FillColor properties are now updated properly.
177
- - `#SF-360076`- In the signature field, the drawn signature is not stretched now.
178
- - `#SF-364148`, `#F172304`- The Script error will no longer be thrown in the mobile view while destroying the PDF Viewer.
179
- - `#SF-362874`- The form field names are now added properly to the form fields.
180
- - `#SF-365411`, `#SF-360719`- The annotations are now properly added to the pages when enableDesktopMode is true on mobile devices.
181
-
182
- ## 19.4.50 (2022-02-08)
183
-
184
- ### PDF Viewer
185
-
186
- #### Bug Fixes
187
-
188
- - `#SF-360337`- Exception is thrown while downloading the empty list box field is now resolved.
189
- - `#SF-360635`,`#SF-361422`,`#SF-361359`- Now, the form field is hidden properly when setting the visible property to hidden.
190
- - `#SF-358375`- Now, the PDF document loaded properly in the PDF Viewer when you set the size limit for the memory cache.
191
- - `#SF-359388`- Now, the form fields position is correct for a rotated PDF document.
192
- - `#SF-354638`- Now, the free text annotation is not hidden when clicking outside of the free text annotation.
193
- - `#SF-360405`- Now, the Free text annotations and ink annotations are rendered properly in the lower zoom factors.
194
- - `#F171647`- Now, the annotationAdd event is triggered after adding the sticky notes annotation in the annotation collection.
195
- - `#SF-361639`- The Script error will no longer be thrown when loading the form-fields document without injecting the form field module.
196
- - `#SF-362311`- Now, the Move cursor is not showing above the custom stamp while the custom stamp annotation is selected.
197
- - `#SF-359233`- The hidden issue of free text characters is now resolved.
198
- - `#SF-363626`- The Script error will no longer be thrown while loading a PDF document when the enableHyperlink is set to false.
199
- - `#SF-363055`- Now, the free text becomes edited properly while clicking the selector.
200
- - `#SF-363411`- Now, the free text position on a downloaded document is accurate on the Chrome browser.
201
-
202
- ## 19.4.43 (2022-01-18)
203
-
204
- ### PDF Viewer
205
-
206
- #### Bug Fixes
207
-
208
- `#SF-359772`,`#SF-359880`- Now, the form fields are editable on the mobile device.
209
- `#SF-359042`- Free text annotations are downloaded properly without hiding any last character.
210
- `#SF-358308`- Spinners are hidden properly while removing the display as none for the spinner.
211
- `#SF-360035`- The Script error will no longer be thrown while using the editAnnotation method in mobile mode.
212
- `#SF-358584`- Stamps are saved properly in the rotated PDF document.
213
-
214
- ## 19.4.42 (2022-01-11)
215
-
216
- ### PDF Viewer
217
-
218
- #### Bug Fixes
219
-
220
- - `#SF-358006`- Overlapped stamp annotations are now placed at the exact position in the saved PDF document.
221
- - `#SF-357273`- Exception thrown while loading the provided PDF document due to an invalid key, is now resolved.
222
- - `#SF-357655`- The PDF pages are now exported to image in a multi-threaded environment.
223
- - `#SF-357060`- Now, the typed handwritten signature content does not exceed the text area.
224
-
225
- ## 19.4.41 (2022-01-04)
226
-
227
- ### PDF Viewer
228
-
229
- #### Bug Fixes
230
-
231
- - `#SF-357108` - Now, the annotations are displayed properly for the rotated documents.
232
- - `#SF-357489` - Now, the unnecessary thumbnail requests are restricted.
233
-
234
- ## 19.4.40 (2021-12-28)
235
-
236
- ### PDF Viewer
237
-
238
- #### Bug Fixes
239
-
240
- - `#299110`, `#348963` - Now, the font size is updated properly while export and import shape annotations.
241
-
242
- ## 19.4.38 (2021-12-17)
243
-
244
- ### PDF Viewer
245
-
246
- #### New Features
247
-
248
- - `#354638` - Provided auto fit support to the free text annotations.
249
-
250
- #### Bug Fixes
251
-
252
- - `346343`- Now, the text wraps based on the word length regardless of character length in free-text annotation.
253
-
254
- ## 19.3.56 (2021-12-02)
255
-
256
- ### PDF Viewer
257
-
258
- #### New Features
259
-
260
- - `#336589`, `#339329`, `#346113` - Provided annotation toolbar settings support in mobile view.
261
-
262
- #### Bug Fixes
263
-
264
- - `#347402`, `#347555`- Now, the signature dialog is opened correctly on clicking the signature field in Firefox and Safari browser.
265
- - `#344549`- The ink annotations are preserved correctly in the Adobe.
266
- - `#346607`- Now, the signature dialog width is proper on resizing the browser window.
267
- - `#345897`- The ink annotations are now drawn over the free-text annotations when the 'allowEditTextOnly' property is enabled.
268
- - `#347427`- The form designer tooltip is now hidden when the 'showToolTip' property is set to FALSE.
269
- - `#348023`- The 'isReadOnly' property is now updated correctly once we set the value to TRUE.
270
- - `#345130`- Now, the exact shape of the image is maintained when added to the signature field.
271
- - `#347558`- Now, the custom stamp position is added properly in mobile view.
272
-
273
- ## 19.3.54 (2021-11-17)
274
-
275
- - `#346152`- The script error will not be thrown for the document which contains link annotation.
276
-
277
- ## 19.3.48 (2021-11-02)
278
-
279
- ### PDF Viewer
280
-
281
- #### Bug Fixes
282
-
283
- - `#344888`, `#F169870` - Now, signature dialog settings is working properly for the handwritten signature dialog.
284
- - `#346090`- Now, the primary toolbar should not hide if form designer toolbar is visible.
285
- - `#344897`, `#345574` - Now, the indicator text and required properties for signature fields settings are working properly.
286
- - `#344082`- Now, signature text annotation is rendered properly on loading the document.
287
-
288
- ## 19.3.47 (2021-10-26)
289
-
290
- ### PDF Viewer
291
-
292
- #### Bug Fixes
293
-
294
- - `#344034` - The Script error will no longer be thrown if we select text markup annotation when text selection is disabled.
295
-
296
- ## 19.3.46 (2021-10-19)
297
-
298
- ### PDF Viewer
299
-
300
- #### Bug Fixes
301
-
302
- - `#339329`, `#341199` - Now, the default context menu of browser will no longer be shown on selecting the text in mobile view.
303
-
304
- ## 19.3.45 (2021-10-12)
305
-
306
- ### PDF Viewer
307
-
308
- #### Bug Fixes
309
-
310
- - `#F169102` - Now, the download action is working properly after importing the provided customer document.
311
- - `#342951` - Now, the Bookmark navigation is working properly in mobile mode.
312
- - `#343011` - Now, the download action is working properly after adding the text markup annotation.
313
-
314
- ## 19.3.44 (2021-10-05)
315
-
316
- ### PDF Viewer
317
-
318
- #### Bug Fixes
319
-
320
- - `#297147`, `#339056` - Now, the free text annotations with 90 and 270 rotated angle are rotated properly.
321
- - `#341677` - Now, the opacity is applied properly for the custom stamps.
322
- - `#341074` - Now, the search icon is visible to close the search dialog.
323
-
324
- ## 19.1.67 (2021-06-08)
325
-
326
- ### PDF Viewer
327
-
328
- #### Bug Fixes
329
-
330
- - `#328989` - Now, the clear and create button in the signature panel is enabled only on drawing the signature.
331
- - `#328499` - Now, the stamp annotations are downloaded correctly in the PDF document.
332
-
333
- ## 19.1.66 (2021-06-01)
334
-
335
- ### PDF Viewer
336
-
337
- #### Bug Fixes
338
-
339
- - `#328030` - The dynamic stamp annotation size is maintained properly while importing and exporting the stamp annotation in XFDF format.
340
-
341
- ## 19.1.65 (2021-05-25)
342
-
343
- ### PDF Viewer
344
-
345
- #### New Features
346
-
347
- - `#326021` - hyperlinkClick event must be handled to cancel the navigation or change the URL.
348
-
349
- ## 19.1.64 (2021-05-19)
350
-
351
- ### PDF Viewer
352
-
353
- #### Bug Fixes
354
-
355
- - `#328989` - Now, the clear and create button in the signature panel is enabled only on drawing the signature.
356
- - `#328499` - Now, the stamp annotations are downloaded correctly in the PDF document.
357
-
358
- ## 19.1.66 (2021-06-01)
359
-
360
- ### PDF Viewer
361
-
362
- #### Bug Fixes
363
-
364
- - `#328030` - The dynamic stamp annotation size is maintained properly while importing and exporting the stamp annotation in XFDF format.
365
-
366
- ## 19.1.65 (2021-05-25)
367
-
368
- ### PDF Viewer
369
-
370
- #### New Features
371
-
372
- - `#326021` - hyperlinkClick event must be handled to cancel the navigation or change the URL.
373
-
374
- ## 19.1.64 (2021-05-19)
375
-
376
- ### PDF Viewer
377
-
378
- #### Bug Fixes
379
-
380
- - `#325096` - The Script error will no longer be thrown if we add form fields value by code behind.
381
- - `#326083` - Now, the signature is appeared inside of the Signature Field in the PDF Viewer.
382
- - `#326054` - The Script error will no longer be thrown while clicking the provided document hyperlink content.
383
- - `#324660` - Now, the distance annotation can be added after deleting the incompletely drawn distance annotation.
384
-
385
- ## 19.1.59 (2021-05-04)
386
-
387
- ### PDF Viewer
388
-
389
- #### Bug Fixes
390
-
391
- - `#322039` - The Arrow icon is shown properly in the custom stamp dropdown.
392
-
393
- ## 19.1.58 (2021-04-27)
394
-
395
- ### PDF Viewer
396
-
397
- #### Bug Fixes
398
-
399
- - `#322799` - The imported stamp annotation position is updated correctly in the MVC platform.
400
-
401
- ## 19.1.57 (2021-04-20)
402
-
403
- ### PDF Viewer
404
-
405
- #### Bug Fixes
406
-
407
- - `#317344` - The Script error will no longer be thrown if we add the custom stamp image more than 4MB size.
408
-
409
- ## 19.1.56 (2021-04-13)
410
-
411
- ### PDF Viewer
412
-
413
- #### Bug Fixes
414
-
415
- - `#315264` - Now, the User names in comments are working properly.
416
-
417
- ## 19.1.54 (2021-03-30)
418
-
419
- ### PDF Viewer
420
-
421
- #### New Features
422
-
423
- - `#F158073`, `#291648` - Exposed the annotation UnSelect event in PDF Viewer.
424
-
425
- ## 18.2.56 (2020-09-01)
426
-
427
- ### PDF Viewer
428
-
429
- #### New Features
430
-
431
- - `#289233` - Provided the support to add expiration timing for cache.
432
-
433
- #### Bug Fixes
434
-
435
- - `#289417` - Now, the annotation toolbar position is maintained correctly.
436
-
437
- ## 18.2.47 (2020-07-28)
438
-
439
- ### PDF Viewer
440
-
441
- #### New Features
442
-
443
- - `#267670` - Exposed the toolbar option to retrieve the form field data in JSON format.
444
-
445
- #### Bug Fixes
446
-
447
- - `#282486` - Now, undo and redo is working properly for the freetext annotations.
448
- - `#F155593`- Exception will no longer be thrown while exporting the formfields.
449
-
450
- ## 18.2.46 (2020-07-21)
451
-
452
- ### PDF Viewer
453
-
454
- #### Bug Fixes
455
-
456
- - `#282530` - The Script error will no longer be thrown if we select the handwritten signature in mobile devices.
457
-
458
- ## 18.2.45 (2020-07-14)
459
-
460
- ### PDF Viewer
461
-
462
- #### New Features
463
-
464
- - `#281898` - Provided the support to add comments programmatically for the newly added annotations.
465
-
466
- #### Bug Fixes
467
-
468
- - `#F155593`, `#283379` - Now, PDF Viewer control is working in IE.
469
-
470
- ## 18.2.44 (2020-07-07)
471
-
472
- ### PDF Viewer
473
-
474
- #### Bug Fixes
475
-
476
- - `#273237` - Now, Annotation comments are locked properly when locked the annotations.
477
-
478
- ## 18.1.55 (2020-06-02)
479
-
480
- ### PDF Viewer
481
-
482
- #### New Features
483
-
484
- - `#F154248` - Provided the Support to show/hide the annotation toolbar in code behind.
485
- - `#F153946` - Provided the Options to disable AutoComplete options in form filling documents.
486
- - `#273237` - Provided the Support to lock the text markup annotations.
487
- - `#277143` - Provided the support for ink annotation.
488
-
489
- ## 18.1.54 (2020-05-26)
490
-
491
- ### PDF Viewer
492
-
493
- #### New Features
494
-
495
- - `#254075` , `#266559` - Provided the support to render the hyperlinks which are preserved as plain text
496
-
497
- #### Bug Fixes
498
-
499
- - `#274036` - Now, the page does not gets refreshed on clicking the import annotation button
500
- - `#267062` - Size of the Stamp is rendered correctly after saving and loading the file in PDF Viewer.
501
- - `#268505` - Download is working correctly For French Culture Environment.
502
- - `#F153465` - Digital Signature in the exported image is preserved correctly.
503
- - `#F153465` - Style of the form fields are preserved properly in PDF Viewer.
504
- - `#274694` -Text highlight is working properly.
505
- - `#276547` -Text selection is working properly for lower zoom factor.
506
-
507
- ## 18.1.48 (2020-05-05)
508
-
509
- ### PDF Viewer
510
-
511
- #### New Features
512
-
513
- - `#272985` - Provided the support to edit the annotation properties without selecting the annotation.
514
-
515
- ## 18.1.45 (2020-04-21)
516
-
517
- ### PDF Viewer
518
-
519
- #### New Features
520
-
521
- - `#267283` - Provided the support to identify the imported annotation and drawn annotation
522
- - `#268736` - Exposed the text search events in PDF Viewer.
523
- - `#258786` - Exposed the signature Select event in PDF Viewer.
524
-
525
- #### Bug Fixes
526
-
527
- - `#272053` - The annotation bounds value is now preserved properly in annotation events.
528
- - `#269001` - Improved the page rendering behaviour in PDF Viewer.
529
-
530
- ## 18.1.44 (2020-04-14)
531
-
532
- ### PDF Viewer
533
-
534
- #### New Features
535
-
536
- - `#263306` - Provided the support for Meter Calibration ratio in PDF Viewer.
537
- - `#271053` - Provided the support to enable and disable the multiline annotations in overlapping collections.
538
-
539
- #### Bug Fixes
540
-
541
- - `#271180` - Free Text Annotation and annotation label text position updated properly in downloaded rotational documents.
542
- - `#F153036` - Now, Annotation toolbar separator shown properly when hiding some annotation toolbar items.
543
-
544
- ## 18.1.43 (2020-04-07)
545
-
546
- ### PDF Viewer
547
-
548
- #### New Features
549
-
550
- - `#267524` - Provided the support for feet inch Calibration ratio in PDF Viewer.
551
- - `#269003` - Exposed the non filled form fields value in the fireValidatedFailed event arguments.
552
- - `#268276` - Provided the support to customize the annotation resize cursor type in PDF Viewer.
553
- - `#268715` - Exposed the 'Not Approved' stamp annotation under dynamic stamp type.
554
-
555
- #### Bug Fixes
556
-
557
- - `#271163` - Errors will no longer occur when the print module in disabled state.
558
- - `#268829` - Now, the deleted annotations are removed properly from the PDF document.
559
-
560
- ## 18.1.42 (2020-04-01)
561
-
562
- ### PDF Viewer
563
-
564
- #### New Features
565
-
566
- - `#268975` - Exposed the event for notifying page mouse over action.
567
- - `#264529` - Exposed the volume calibrate annotation depth value in annotationSelect event arguments and provide options to edit the depth value.
568
- - `#263297`, `#268677` - Provided the options to enable and disable the tile rendering mode.
569
- - `#263473` - Provided the isLock options to individual annotation object level.
570
-
571
- #### Bug Fixes
572
-
573
- - `#269004` – The typo errors in PDF Viewer JSON objects has been resolved.
574
- - `#266218`, `#266559` - The import/export form fields are now working properly for the form fields data contains special characters.
575
- - `#268505` - Download is now working properly for different culture settings.
576
- - `#268109` - The updated label content is now preserved properly in the exported annotation data.
577
-
578
- ## 18.1.36-beta (2020-03-19)
579
-
580
- ### PDF Viewer
581
-
582
- #### New Features
583
-
584
- - `#235592` - Provided the support for setting the lower zoomfactor value to the PDF Viewer control.
585
- - `#259521` - Provided the support for importing the form fields data from JSON object.
586
- - `#261558` - Provided the support for customizing the distance measurement annotation leader length property.
587
- - `#256687` - Provided the support for setting the custom data for annotation objects.
588
- - `#252340` - Provided the support for setting the minimum or maximum size and isLock properties at individual annotation level.
589
- - `#262008` - Exposed the event for notifying annotation mouse over action.
590
- - `#F149148` - Provided the binding support for the enableFormFields property.
591
- - `#258769` - Provided the option to suppress the error dialog in PDF Viewer.
592
- - `#261269` - Provided the support to allow credential for XMLHttpRequest in PDF Viewer.
593
- - `#262787` - Exposed the event to notify the getPDFDocumentTexts method completed for all the pages.
594
-
595
- #### Bug Fixes
596
-
597
- - `#262525` – The render PDF pages method triggers properly for the provided PDF document.
598
- - `#262692` - The text markup resizer position is now updated properly for the provided document.
599
- - `#262692` - The text content bounds are now rendered properly for the provided document.
600
-
601
- ## 17.4.50 (2020-02-18)
602
-
603
- ### PDF Viewer
604
-
605
- #### New Features
606
-
607
- - `#262787` - Exposed the event to notify the getPDFDocumentTexts method completed for all the pages.
608
-
609
- ## 17.4.49 (2020-02-11)
610
-
611
- ### PDF Viewer
612
-
613
- #### New Features
614
-
615
- - `#235592` - Provided the support for setting the lower zoomfactor value to the PDF Viewer control.
616
- - `#259521` - Provided the support for importing the form fields data from JSON object.
617
- - `#261558` - Provided the support for customizing the distance measurement annotation leader length property.
618
- - `#256687` - Provided the support for setting the custom data for annotation objects.
619
- - `#252340` - Provided the support for setting the minimum or maximum size and isLock properties at individual annotation level.
620
- - `#262008` - Exposed the event for notifying annotation mouse over action.
621
- - `#F149148` - Provided the binding support for the enableFormFields property.
622
-
623
- #### Bug Fixes
624
-
625
- - `#262525` – The render PDF pages method triggers properly for the provided PDF document.
626
- - `#262692` - The text markup resizer position is now updated properly for the provided document.
627
- - `#262692` - The text content bounds are now rendered properly for the provided document.
628
-
629
- ### PDF Viewer
630
-
631
- #### New Features
632
-
633
- - `258769` - Provided the option to suppress the error dialog in PDF Viewer.
634
- - `261269` - Provided the support to allow credential for XMLHttpRequest in PDF Viewer.
635
-
636
- ## 17.4.46 (2020-01-30)
637
-
638
- ### PDF Viewer
639
-
640
- #### New Features
641
-
642
- - `258172` - Provided the support to open the command panel while loading the PDF document if the isCommandPanelOpen property is set to true.
643
- - `259159` - Provided the support to open the thumbnail view panel while loading the PDF document if the isThumbnailViewOpen property is set to true.
644
- - `259961` - Exposed the annotation label settings value in the annotationAdd event arguments.
645
- - `259615` - Exposed the annotation label settings value in import/export JSON data.
646
- - `256596` - Exposed the annotation selector settings value for individual annotation objects and import/export JSON data.
647
-
648
- ## 17.4.44 (2021-01-21)
649
-
650
- ### PDF Viewer
651
-
652
- #### New Features
653
-
654
- - `#257519` - Provided Support to edit the free Text annotation value in code behind.
655
-
656
- #### Bug Fixes
657
-
658
- - `#259848` – Now, the deleted annotations are removed properly from the PDF document.
659
- - `#259734` - Custom Stamp annotations are drawn properly while importing the annotations.
660
- - `#260512` - Errors will no longer occur while importing the annotations in the documentLoad event.
661
- - `#260575` - The download file name is now set properly if we provide during the control initialization.
662
-
663
- ## 17.4.43 (2020-01-14)
664
-
665
- ### PDF Viewer
666
-
667
- #### New Features
668
-
669
- - `#255057` – Provided the support for validating the form fields value whether it is filled or not in the loaded PDF document.
670
- - `#258786`, `#259327` – Provided the support for exporting and importing the handwritten signature.
671
-
672
- #### Bug Fixes
673
-
674
- - `#149882` – The downloadEnd event triggers properly if we save the document in server side.
675
- - `#257630` – The importSuccess event triggers properly if we save the document in server side.
676
- - `#260295` – The distance calibrate annotation now resized properly.
677
- - `#260128` – The volume and area calibrate annotation fill color is updated correctly on importing the annotations.
678
-
679
- ## 17.4.41 (2020-01-07)
680
-
681
- ### PDF Viewer
682
-
683
- #### New Features
684
-
685
- - `#257514` – Provided the support for import/export the custom stamp annotations.
686
- - `#257231` – Exposed the property to access the search count value.
687
- - `#258386` – Exposed the API to retrieve the text content and bounds along with page size details.
688
-
689
- #### Bug Fixes
690
-
691
- - `#259524` – Annotations are rendered properly in the large page size document if the page rendered in fitToPage mode initially.
692
- - `#259523` – Errors will no longer occur while exporting the annotation if the document contains text web link annotation.
693
- - `#259134` – The annotationSelect event now triggers properly if we add the multiple annotations to a page.
694
- - `#258949` – The opacity value is now applied properly if set it on annotation during initialization.
695
- - `#259383` – The errors will no longer occur if we import the annotations after deleting the added annotations.
696
- -`#259166` – The text content will be selected properly at the end of the page.
697
- - `#259078` – The annotations will now be created if we resize the annotation through multipage.
698
- - `#259564` – The Null reference error will no longer occur while loading the provided PDF document.
699
-
700
- ## 17.4.40 (2019-12-24)
701
-
702
- ### PDF Viewer
703
-
704
- #### New Features
705
-
706
- - `#256131` – Improved the rendering quality and performance for the large size PDF document.
707
-
708
- #### Bug Fixes
709
-
710
- - `#258250` – The imported annotations are rendered properly if we import the annotation details in the documentLoad event.
711
-
712
- ## 17.4.39 (2019-12-17)
713
-
714
- ### PDF Viewer
715
-
716
- #### New Features
717
-
718
- - `#251150` – Provided the support to find the interlinked annotations while selecting the annotations.
719
- - `#243077` , `#241487`, `#244802`, `#252340` – Provided the support for setting the annotation UI properties.
720
- - `#254634` – Provided the support to maintain the aspect ratio for custom stamp annotation.
721
- - `#253745`, `#256518` – Exposed the event to notify the annotation object being moved.
722
- - `#254275` – Exposed the event to notify the download process in the PDF Viewer control.
723
-
724
- #### Bug Fixes
725
-
726
- - `#253751` – Resolved the typo error in annotation exported data.
727
- - `#255345` – Errors will no longer occur while rendering the annotation in the Firefox browser.
728
- - `#255137` – Errors will no longer occur in mobile view mode if we set the Pan interaction mode.
729
- - `#253704` – The form fields are downloaded properly while loading the PDF document in tab control.
730
- - `#253745` – The annotationAdd and annotationPropertiesChange events are triggered properly for the annotations.
731
- - `#252881` – The toolbar settings property is working for mobile device.
732
- - `#255042`, `#255073` – Errors will no longer occur if the session storage exceeds the maximum limit.
733
- - `#254115`, `#254942` – The annotation modified date is preserved properly in different localization.
734
- - `#256044` – The font family and text alignment are rendered properly from the exported FreeText annotation data.
735
- - `#255124` – The text markup annotations are now added properly if the PDF Viewer element ID contains characters.
736
- - `#256220` – The context menu will now be shown/hidden properly if we disable the default toolbar.
737
- - `#256131` – The annotation toolbar will now be shown/hidden properly if we disable the annotation toolbar.
738
- - `#256932` - Errors will no longer occur while resizing the text markup annotations.
739
- - `#252805` – The annotationId value is now preserved properly for all annotation events.
740
- - `#255647` - The form fields contents are rendered properly in the printed document, which has been printed in IE browser.
741
-
742
- ## 17.3.28 (2019-11-19)
743
-
744
- ### PDF Viewer
745
-
746
- #### New Features
747
-
748
- - `#251151`, `#254032` – Improved the annotation selection behavior in code behind.
749
- - `#254776`, `#255304` – Provided the support to set the custom JSON data for AJAX request.
750
- - `#253341` – Provided the support to customize the label content during initial rendering of annotations.
751
- - `#252421` – Provided the support to set the zoom mode value during initial loading.
752
-
753
- #### Bug Fixes
754
-
755
- - `#253926` – Resolved the memory leak while rendering the PDF documents.
756
-
757
- ## 17.3.27 (2019-11-12)
758
-
759
- ### PDF Viewer
760
-
761
- #### New Features
762
-
763
- - `#251151`, `#254032` – Provided the support for annotation selection in code behind.
764
- - `#249245` – Provided the support for UI customization of annotation selector border and resizer.
765
- - Improved the PDF viewer mobile view performance.
766
-
767
- #### Bug Fixes
768
-
769
- - `#253317` – The measured annotation value is updated properly in the label when you disable the default toolbar.
770
- - `#253888` – The Script error will no longer be thrown if we load the PDF documents using ASP.NET MVC web service.
771
- - `#253317` – The measured value is now update properly for the measured annotation.
772
-
773
- ## 17.3.26 (2019-11-05)
774
-
775
- ### PDF Viewer
776
-
777
- #### New Features
778
-
779
- - `#252805` - Exposed the annotation unique ID in the annotationAdd event arguments.
780
-
781
- #### Bug Fixes
782
-
783
- - `#252806` - Annotation bounds are retrieved properly when importing and exporting the annotation details in rotated PDF documents.
784
- - `#253016` - Free text annotation bounds are preserved properly in the rotated PDF document while saving the document.
785
- - `#251152` - Text markup annotation resizer position will be updated properly in the doctype HTML pages.
786
- - `#252879` - Script errors will no longer occur if we disable the magnification module.
787
- - `#253504` - The character start and end indexes will be updated properly in the text markup annotationAdd event arguments.
788
-
789
- ## 17.3.21 (2019-10-30)
790
-
791
- ### PDF Viewer
792
-
793
- #### New Features
794
-
795
- - `#252111` - Provided the support for handwritten signature.
796
- - `#251149` - Provided the support for customizing the text search highlight color.
797
-
798
- #### Bug Fixes
799
-
800
- - `#251864` - The pages in the landscape document will be rendered properly.
801
- - `#250902` - Now, the text Markup annotations are working properly inside the Tab control.
802
- - `#250538` - The ajaxRequestFailed event will be triggered for all the possible ajax error codes.
803
- - `#252269` – The mouse cursor has been updated properly after adding the free text annotation.
804
- - `#251401` - The annotationSelect event will be triggered properly while selecting the annotations.
805
-
806
- ## 17.3.19 (2019-10-22)
807
-
808
- ### PDF Viewer
809
-
810
- #### New Features
811
-
812
- - `#249703` - The quality of the printed copy has been improved.
813
- - `#147267`, `#251146` - Provided the support to delete the annotations in code behind.
814
- - `#248609` - Provided the support to customize the annotation selector.
815
- - `#247224`, `#248179` - Provided the support to resize the text markup annotation bounds.
816
-
817
- #### Bug Fixes
818
-
819
- - `#251577` - The value of the isDocumentEdited property now returned properly for shapes, measure, stamps annotation and form filling features.
820
- - `#249588` - The PDF Viewer control size is updated properly while using in tab control.
821
- - `#251729` - The text markup annotation selector is cleared properly when loading the another PDF document.
822
- - `#251742` - The perimeter shape type has been updated properly when exporting the annotation details.
823
- - `#251494` - The reference error will no longer be thrown if you render the PDF document in docker Linux container environment.
824
- - `#251153` – The previously imported annotations are no more cleared when import the other set of annotations.
825
-
826
- ## 17.3.17 (2019-10-15)
827
-
828
- ### PDF Viewer
829
-
830
- #### New Features
831
-
832
- - `#248585` - The start and end indexes of text markup annotation have been exposed in the annotationAdd event.
833
-
834
- #### Bug Fixes
835
-
836
- - `#249742` - The annotationSelect event will be triggered properly after selecting another text markup annotation.
837
- - `#245008` - Notes of the measure annotations will now be updated properly after modifying the scale values.
838
-
839
- ## 17.3.16 (2019-10-09)
840
-
841
- ### PDF Viewer
842
-
843
- #### New Features
844
-
845
- - `#249725` - Provided the support to enable or disable the comment panel.
846
- - `#248609` - Exposed the API for textSelectionStart and textSelectionEnd events in the PDF Viewer.
847
-
848
- #### Bug Fixes
849
-
850
- - `#249017` - Multiline text markup annotation bounds will be returned properly in the annotationAdd event arguments.
851
-
852
- ## 17.3.14 (2019-10-03)
853
-
854
- ### PDF Viewer
855
-
856
- #### New Features
857
-
858
- - `#227046`, `#230887`, `#142366`, `#231973`, `#237847`, `#244849`, `#238686`, `#239233`, `#241638`, `#241638`, `#242232`, `#239221`, `#240051`, `#245255` – The support has been provided for filling the form fields.
859
- - `#233655`, `#236240`, `#236825`, `#238694`, `#241974`, `#243864`, `#245087` – The support has been provided for free text annotation.
860
- - `#246059` - Exposed the thumbnailClick event to identify the thumbnail clicks action.
861
- - `#246767` – The support has been provided to export the annotation details as JSON object in client-side.
862
- - `#245008` – The support has been provided to update the existing calibrate annotation if we modify the scale value.
863
- - Improved the scrolling performance in mobile devices.
864
-
865
- #### Bug Fixes
866
-
867
- - `#247914` – The perimeter annotation will be rendered properly when the line is ended in the starting point.
868
- - `#248062` – Extra edge will not be added to the polygon shapes when rendered in the page.
869
- - `#248092` – Contents will not be swapped if you switch randomly between two documents.
870
- - `#248093` – Script error will no longer be thrown if you switch randomly between two documents.
871
- - `#247787` – The searched text will be highlighted properly in the provided document.
872
- - `#146785` – Script error will no longer be thrown when the PDF Viewer control is used in the React application.
873
-
874
- ## 17.3.9-beta (2019-09-20)
875
-
876
- ### PDF Viewer
877
-
878
- #### New Features
879
-
880
- - `#227046`, `#230887`, `#142366`, `#231973`, `#I237847`, `#244849`, `#238686`, `#239233`, `#241638`, `#241638`, `#242232`, `#239221`, `#240051`, `#245255` – The support has been provided for filling the form fields.
881
- - `#233655`, `#236240`, `#236825`, `#238694`, `#241974`, `#243864`, `#245087` – The support has been provided for free text annotation.
882
- - `#246059` - Exposed the thumbnailClick event to identify the thumbnail clicks action.
883
- - `#246767` – The support has been provided to export the annotation details as JSON object in client-side.
884
- - `#245008` – The support has been provided to update the existing calibrate annotation if we modify the scale value.
885
- - Improved the scrolling performance in mobile devices.
886
-
887
- ## 17.2.49 (2019-09-04)
888
-
889
- ### PDF Viewer
890
-
891
- #### Bug Fixes
892
-
893
- - `#246044` – The assigned author name is now preserved properly while loading or saving the document in PDF Viewer.
894
- - `#245087` – The Polygon, Perimeter, and Volume annotations will be drawn properly in the low zoom values.
895
- - `#245820` - Magnification on double tap will no longer happen when the pinch zoom is disabled in the PDF Viewer control.
896
- - `#244787` – The Comment panel is now opened properly while double clicking the annotation created from the code behind.
897
- - `#246041` - The warning message will no longer be thrown when the web action method is executed.
898
-
899
- ## 17.2.47 (2019-08-27)
900
-
901
- ### PDF Viewer
902
-
903
- #### New Features
904
-
905
- - `#243205`, `#245009` - Provided the support to include Custom stamps in stamp dropdown.
906
- - `#243133` - Provided the support to customize tooltip of the hyperlink on mouse hover.
907
- - `#245007` - Provided the Feet unit support in measurement annotation.
908
-
909
- #### Bug Fixes
910
-
911
- - `#244499` - The shape and measurement annotations will now be rendered properly in the rotated documents.
912
- - `#244481` - The script errors will no longer be thrown in PDF Viewer in IE browser.
913
-
914
- ## 17.2.46 (2019-08-22)
915
-
916
- ### PDF Viewer
917
-
918
- #### Breaking Changes
919
-
920
- - The following API is renamed.
921
-
922
- | Existing API name| New API Name |
923
- |------|-------------|
924
- | toolbarItem| toolbarItems|
925
-
926
- #### New Features
927
-
928
- - `#223065`, `#234860`, `#241770`, `#241487`, `#229426`, `#244801` – Provided the support for importing and exporting the annotation details as a JSON object.
929
-
930
- #### Bug Fixes
931
-
932
- - `#243837` – Exception will no longer be thrown while loading the PDF document as FileStream.
933
-
934
- ## 17.2.41 (2019-08-14)
935
-
936
- ### PDF Viewer
937
-
938
- #### Bug Fixes
939
-
940
- - `#241487`, `#243077` - Annotation author name is now updated properly in the comment panel.
941
- - `#242804` - The Bookmark's destination value is now maintained properly during navigation.
942
- - `#241487` - The provided PDF document will now be loaded properly in the PDF Viewer control.
943
- - `#244437` - Resolved the typo errors in the PDF Viewer toolbar content.
944
- - `#244654` - The editAnnotation API is now working properly.
945
- - `#243134` - The PDF documents load properly when render the PDF Viewer control under multiple tab with fitToPage view mode during initial loading.
946
-
947
- ## 17.2.40 (2019-08-06)
948
-
949
- ### PDF Viewer
950
-
951
- #### New Features
952
-
953
- - `#242329` - Provided the support to customize scale ratio value of measurement annotation.
954
- - `#241886` - Provided the support to display context menu in mouse up action.
955
-
956
- #### Bug Fixes
957
-
958
- - `#242495`, `#243160` – Hyperlink element is now rendered properly for the rotated page document.
959
- - `#238064` – Searched target text is now highlighted properly for the provided document.
960
- - `#241904`, `#241294` – Converted PDF document is now rendered properly in IE browser.
961
- - `#242282` – Text search is now working properly while using PDF Viewer control inside the Tab control.
962
-
963
- ## 17.2.39 (2019-07-30)
964
-
965
- ### PDF Viewer
966
-
967
- #### New Features
968
-
969
- - `#240440` - More details have been provided in the ajaxRequestfailure event.
970
- - `#242375` – Now, the annotation edit toolbar is enabled by default using the enableAnnotationToolbar property.
971
- - `#241715` - Support has been provided to render the annotation modified date and time in the comment panel.
972
-
973
- #### Bug Fixes
974
-
975
- - `#242803` - The request handling has been optimized for retrieving the comments details from the PDF document.
976
-
977
- ## 17.2.36 (2019-07-24)
978
-
979
- ### PDF Viewer
980
-
981
- #### New Features
982
-
983
- - Provided the API to modify the scale ratio to change the quality of the pages rendered in the PDF Viewer.
984
-
985
- ## 17.2.35 (2019-07-17)
986
-
987
- ### PDF Viewer
988
-
989
- #### Bug Fixes
990
-
991
- - `#229426` - Provided the API to select, edit, and delete the annotations.
992
-
993
- ## 17.2.34 (2019-07-11)
994
-
995
- ### PDF Viewer
996
-
997
- #### Breaking Changes
998
-
999
- - The following event arguments are renamed.
1000
-
1001
- | Existing Event Arguments Name| New Event Arguments Name |
1002
- |------|-------------|
1003
- |IUnloadEventArgs|UnloadEventArgs|
1004
- |ILoadEventArgs|LoadEventArgs|
1005
- |ILoadFailedEventArgs|LoadFailedEventArgs|
1006
- |IAjaxRequestFailureEventArgs|AjaxRequestFailureEventArgs|
1007
- |IPageChangeEventArgs|PageChangeEventArgs|
1008
- |IPageClickEventArgs|PageClickEventArgs|
1009
- |IZoomChangeEventArgs|ZoomChangeEventArgs|
1010
- |IHyperlinkClickEventArgs |HyperlinkClickEventArgs |
1011
- |IAnnotationAddEventArgs|AnnotationAddEventArgs|
1012
- |IAnnotationRemoveEventArgs|AnnotationRemoveEventArgs|
1013
- |IAnnotationPropertiesChangeEventArgs|AnnotationPropertiesChangeEventArgs|
1014
-
1015
- #### New Features
1016
-
1017
- - `#208298`, `#223253`, `#224643`, `#233655`, `#238694` - Provided the supports for shape annotations.
1018
- - `#219446`, `#224643`, `#230115`, `#233032`, `#F144297`, `#236825`, `#238694` - Provided the supports for stamp annotations.
1019
- - `#229426` - Provided the supports for calibrate annotations.
1020
- - `#223253`, `#238694` - Provided the supports for sticky notes annotations.
1021
- - `#238812` – Provided support to restrict the hyperlink navigation.
1022
- - `#236995` – Provided support to restrict the pinch zooming using the ‘enablePinchZoom’ property.
1023
-
1024
- #### Bug Fixes
1025
-
1026
- - `#233161` – Now, loading Indicator will be shown properly while loading a large page size document.
1027
- - `#233035` - HyperlinkClick event is now triggered properly.
1028
- - `#234364` - Pan interaction mode is now working properly when the toolbar is disabled.
1029
- - `#231436` - PDF document is now rendered properly while using the PDF Viewer control inside Tab control.
1030
- - `#232104` - Cleared the warnings in css files.
1031
- - `#238761` - Height of the PDF Viewer control is now maintained properly when using inside the tab control.
1032
-
1033
- ## 17.2.28-beta (2019-06-27)
1034
-
1035
- ### PDF Viewer
1036
-
1037
- #### Breaking Changes
1038
-
1039
- - The following event arguments are renamed.
1040
-
1041
- | Existing Event Arguments Name| New Event Arguments Name |
1042
- |------|-------------|
1043
- |IUnloadEventArgs|UnloadEventArgs|
1044
- |ILoadEventArgs|LoadEventArgs|
1045
- |ILoadFailedEventArgs|LoadFailedEventArgs|
1046
- |IAjaxRequestFailureEventArgs|AjaxRequestFailureEventArgs|
1047
- |IPageChangeEventArgs|PageChangeEventArgs|
1048
- |IPageClickEventArgs|PageClickEventArgs|
1049
- |IZoomChangeEventArgs|ZoomChangeEventArgs|
1050
- |IHyperlinkClickEventArgs |HyperlinkClickEventArgs |
1051
- |IAnnotationAddEventArgs|AnnotationAddEventArgs|
1052
- |IAnnotationRemoveEventArgs|AnnotationRemoveEventArgs|
1053
- |IAnnotationPropertiesChangeEventArgs|AnnotationPropertiesChangeEventArgs|
1054
-
1055
- #### New Features
1056
-
1057
- - `#208298`, `#223253`, `#224643`, `#233655`, `#238694` - Provided the supports for shape annotations.
1058
- - `#219446`, `#224643`, `#230115`, `#233032`, `#F144297`, `#236825`, `#238694` - Provided the supports for stamp annotations.
1059
- - `#229426` - Provided the supports for calibrate annotations.
1060
- - `#223253`, `#238694` - Provided the supports for sticky notes annotations.
1061
-
1062
- #### Bug Fixes
1063
-
1064
- - `#233161` – Now, loading Indicator will be shown properly while loading a large page size document.
1065
- - `#233035` - HyperlinkClick event is now triggered properly.
1066
- - `#234364` - Pan interaction mode is now working properly when the toolbar is disabled.
1067
- - `#231436` - PDF document is now rendered properly while using the PDF Viewer control inside Tab control.
1068
- - `#232104` - Cleared the warnings in css files.
1069
-
1070
- ## 17.1.47 (2019-05-14)
1071
-
1072
- ### PDF Viewer
1073
-
1074
- #### New Features
1075
-
1076
- - Provided the supports for adding custom header to the AJAX requests in the PDF viewer control.
1077
-
1078
- ## 17.1.44 (2019-05-07)
1079
-
1080
- ### PDF Viewer
1081
-
1082
- #### New Features
1083
-
1084
- - Provided the supports for adding custom header to the AJAX requests in the PDF viewer control.
1085
-
1086
- ## 17.1.43 (2019-04-30)
1087
-
1088
- ### PDF Viewer
1089
-
1090
- #### Bug Fixes
1091
-
1092
- - The Loading Indicator is now shown properly while loading a large page size document.
1093
- - The pan interaction mode is now working properly when the toolbar is disabled.
1094
-
1095
- ## 17.1.42 (2019-04-23)
1096
-
1097
- ### PDF Viewer
1098
-
1099
- #### Bug Fixes
1100
-
1101
- - The issue "the hyperlinkClick event is not triggered for web links" has been fixed.
1102
-
1103
- ## 17.1.41 (2019-04-16)
1104
-
1105
- ### PDF Viewer
1106
-
1107
- #### Bug Fixes
1108
-
1109
- - The font size is missing warning will no longer be thrown from styles in the PDF Viewer.
1110
-
1111
- ## 17.1.40 (2019-04-09)
1112
-
1113
- ### PDF Viewer
1114
-
1115
- #### Bug Fixes
1116
-
1117
- - The PDF document is now rendered properly while using the PDF Viewer inside the Tab control.
1118
- - The font size is missing warning will no longer be thrown from styles in the PDF Viewer.
1119
-
1120
- ## 17.1.38 (2019-03-29)
1121
-
1122
- ### PDF Viewer
1123
-
1124
- #### New Features
1125
-
1126
- - Text Markup annotation support has been provided to PDF Viewer.
1127
- - Mobile view responsiveness support has been provided.
1128
- - Right-to-left support has been provided.
1129
- - Accessibility support has been provided to PDF Viewer.
1130
-
1131
- #### Bug Fixes
1132
-
1133
- - The issue “Added PDF document cache element did not maintain properly” has been fixed.
1134
- - The issue “PdfRenderer object is not disposing properly in EJ2 PDF Viewer library” has been fixed.
1135
- - The issue “PDF Viewer clears all the session storage” has been fixed.
1136
- - Resolved the script error while accessing invalid link annotation destination.
1137
- - Resolved Single Page Document Rendering issue.
1138
- - Document Load event not triggered for lower zoom value issue has been fixed.
1139
-
1140
- ## 17.1.32-beta (2019-03-13)
1141
-
1142
- ### PDF Viewer
1143
-
1144
- #### Bug Fixes
1145
-
1146
- - The PDF document is now rendered properly while using the PDF Viewer inside the Tab control.
1147
- - The font size is missing warning will no longer be thrown from styles in the PDF Viewer.
1148
-
1149
- ## 17.1.38 (2019-03-29)
1150
-
1151
- ### PDF Viewer
1152
-
1153
- #### New Features
1154
-
1155
- - Text Markup annotation support has been provided to PDF Viewer.
1156
- - Mobile view responsiveness support has been provided.
1157
- - Right-to-left support has been provided.
1158
- - Accessibility support has been provided to PDF Viewer.
1159
-
1160
- #### Bug Fixes
1161
-
1162
- - The issue “Added PDF document cache element did not maintain properly” has been fixed.
1163
- - The issue “PdfRenderer object is not disposing properly in EJ2 PDF Viewer library” has been fixed.
1164
- - The issue “PDF Viewer clears all the session storage” has been fixed.
1165
- - Resolved the script error while accessing invalid link annotation destination.
1166
- - Resolved Single Page Document Rendering issue.
1167
- - Document Load event not triggered for lower zoom value issue has been fixed.
1168
-
1169
- ## 17.1.32-beta (2019-03-13)
1170
-
1171
- ### PDF Viewer
1172
-
1173
- #### New Features
1174
-
1175
- - Text Markup annotation support has been provided to PDF Viewer.
1176
- - Mobile view responsiveness support has been provided.
1177
- - Right-to-left support has been provided.
1178
- - Accessibility support has been provided to PDF Viewer.
1179
-
1180
- #### Bug Fixes
1181
-
1182
- - The issue “Added PDF document cache element did not maintain properly” has been fixed.
1183
- - The issue “PdfRenderer object is not disposing properly in EJ2 PDF Viewer library” has been fixed.
1184
- - The issue “PDF Viewer clears all the session storage” has been fixed.
1185
- - Resolved the script error while accessing invalid link annotation destination.
1186
- - Resolved Single Page Document Rendering issue.
1187
- - Document Load event not triggered for lower zoom value issue has been fixed.
1188
-
1189
- ## 16.4.55 (2019-02-27)
1190
-
1191
- ### PDF Viewer
1192
-
1193
- #### Bug Fixes
1194
-
1195
- - Document Load event not triggered for lower zoom value issue was fixed.
1196
-
1197
- ## 16.4.52 (2019-02-05)
1198
-
1199
- ### PDF Viewer
1200
-
1201
- #### Bug Fixes
1202
-
1203
- - Resolved PDF Viewer Session Storage Clear Issue.
1204
- - Resolved single Page Document Rendering Issue.
1205
- - Resolved the script error while accessing invalid link annotation destination.
1206
- - The scrolling when the toolbar is clicked is prevented
1207
-
1208
- ## 16.4.48 (2019-01-22)
1209
-
1210
- ### PDF Viewer
1211
-
1212
- #### Bug Fixes
1213
-
1214
- - Resolved PDF Viewer Session Storage Clear Issue.
1215
- - Resolved single Page Document Rendering Issue.
1216
-
1217
- ## 16.4.46 (2019-01-08)
1218
-
1219
- ### PDF Viewer
1220
-
1221
- #### Bug Fixes
1222
-
1223
- - Resolved the script error while accessing invalid link annotation destination.
1224
-
1225
- ## 16.4.44 (2018-12-24)
1226
-
1227
- ### PDF Viewer
1228
-
1229
- #### Bug Fixes
1230
-
1231
- - The scrolling when the toolbar is clicked is prevented
1232
-
1233
- ## 16.4.40-beta (2018-12-10)
1234
-
1235
- ### PDF Viewer
1236
-
1237
- The PDF Viewer component enables you to view and print the PDF files.
1238
-
1239
- - Both normal and PDF files protected with AES and RC4 encryption can be opened and displayed.
1240
- - Core interactions are included: scrolling, zooming, panning, and page navigation.
1241
- - Built-in toolbar.
1242
- - Text can be selected and copied from PDF files.
1243
- - Text can be easily searched for across the PDF document.
1244
- - Easy navigation with the help of bookmarks, thumbnails, hyperlinks, and a table of contents.
1245
- - Two view modes are included: fit-to-page and fit-to-width.
1246
- - An entire document or a specific page can be printed directly from the browser.