@syncfusion/ej2-angular-documenteditor 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 (203) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/document-editor/documenteditor-all.module.mjs +113 -0
  3. package/esm2020/src/document-editor/documenteditor.component.mjs +262 -0
  4. package/esm2020/src/document-editor/documenteditor.module.mjs +25 -0
  5. package/esm2020/src/document-editor-container/documenteditorcontainer-all.module.mjs +29 -0
  6. package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +66 -0
  7. package/esm2020/src/document-editor-container/documenteditorcontainer.module.mjs +25 -0
  8. package/esm2020/src/index.mjs +8 -0
  9. package/esm2020/syncfusion-ej2-angular-documenteditor.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +506 -0
  11. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +506 -0
  13. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  14. package/package.json +29 -15
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/document-editor/documenteditor-all.module.d.ts +6 -0
  17. package/src/document-editor/documenteditor.component.d.ts +3 -0
  18. package/src/document-editor/documenteditor.module.d.ts +6 -0
  19. package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +6 -0
  20. package/src/document-editor-container/documenteditorcontainer.component.d.ts +3 -0
  21. package/src/document-editor-container/documenteditorcontainer.module.d.ts +6 -0
  22. package/styles/bootstrap-dark.css +215 -105
  23. package/styles/bootstrap.css +214 -104
  24. package/styles/bootstrap4.css +216 -106
  25. package/styles/bootstrap5-dark.css +220 -110
  26. package/styles/bootstrap5.css +220 -110
  27. package/styles/document-editor/_all.scss +3 -0
  28. package/styles/document-editor/_bootstrap-dark-definition.scss +544 -0
  29. package/styles/document-editor/_bootstrap-definition.scss +543 -0
  30. package/styles/document-editor/_bootstrap4-definition.scss +556 -0
  31. package/styles/document-editor/_bootstrap5-dark-definition.scss +1 -0
  32. package/styles/document-editor/_bootstrap5-definition.scss +556 -0
  33. package/styles/document-editor/_fabric-dark-definition.scss +546 -0
  34. package/styles/document-editor/_fabric-definition.scss +545 -0
  35. package/styles/document-editor/_fluent-dark-definition.scss +1 -0
  36. package/styles/document-editor/_fluent-definition.scss +564 -0
  37. package/styles/document-editor/_fusionnew-definition.scss +556 -0
  38. package/styles/document-editor/_highcontrast-definition.scss +545 -0
  39. package/styles/document-editor/_highcontrast-light-definition.scss +2988 -0
  40. package/styles/document-editor/_layout.scss +217 -0
  41. package/styles/document-editor/_material-dark-definition.scss +561 -0
  42. package/styles/document-editor/_material-definition.scss +563 -0
  43. package/styles/document-editor/_material3-definition.scss +556 -0
  44. package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
  45. package/styles/document-editor/_tailwind-definition.scss +555 -0
  46. package/styles/document-editor/_theme.scss +3395 -0
  47. package/styles/document-editor/bootstrap-dark.css +211 -104
  48. package/styles/document-editor/bootstrap-dark.scss +4 -1
  49. package/styles/document-editor/bootstrap.css +210 -103
  50. package/styles/document-editor/bootstrap.scss +4 -1
  51. package/styles/document-editor/bootstrap4.css +211 -104
  52. package/styles/document-editor/bootstrap4.scss +4 -1
  53. package/styles/document-editor/bootstrap5-dark.css +215 -108
  54. package/styles/document-editor/bootstrap5-dark.scss +4 -1
  55. package/styles/document-editor/bootstrap5.css +215 -108
  56. package/styles/document-editor/bootstrap5.scss +4 -1
  57. package/styles/document-editor/fabric-dark.css +211 -104
  58. package/styles/document-editor/fabric-dark.scss +4 -1
  59. package/styles/document-editor/fabric.css +211 -104
  60. package/styles/document-editor/fabric.scss +4 -1
  61. package/styles/document-editor/fluent-dark.css +218 -110
  62. package/styles/document-editor/fluent-dark.scss +4 -1
  63. package/styles/document-editor/fluent.css +218 -110
  64. package/styles/document-editor/fluent.scss +4 -1
  65. package/styles/document-editor/highcontrast-light.css +74 -46
  66. package/styles/document-editor/highcontrast-light.scss +4 -1
  67. package/styles/document-editor/highcontrast.css +211 -104
  68. package/styles/document-editor/highcontrast.scss +4 -1
  69. package/styles/document-editor/icons/_bootstrap-dark.scss +609 -0
  70. package/styles/document-editor/icons/_bootstrap.scss +609 -0
  71. package/styles/document-editor/icons/_bootstrap4.scss +592 -0
  72. package/styles/document-editor/icons/_bootstrap5-dark.scss +1 -0
  73. package/styles/document-editor/icons/_bootstrap5.scss +642 -0
  74. package/styles/document-editor/icons/_fabric-dark.scss +608 -0
  75. package/styles/document-editor/icons/_fabric.scss +608 -0
  76. package/styles/document-editor/icons/_fluent-dark.scss +1 -0
  77. package/styles/document-editor/icons/_fluent.scss +640 -0
  78. package/styles/document-editor/icons/_fusionnew.scss +642 -0
  79. package/styles/document-editor/icons/_highcontrast-light.scss +612 -0
  80. package/styles/document-editor/icons/_highcontrast.scss +607 -0
  81. package/styles/document-editor/icons/_material-dark.scss +600 -0
  82. package/styles/document-editor/icons/_material.scss +600 -0
  83. package/styles/document-editor/icons/_material3.scss +642 -0
  84. package/styles/document-editor/icons/_tailwind-dark.scss +642 -0
  85. package/styles/document-editor/icons/_tailwind.scss +642 -0
  86. package/styles/document-editor/implementation/dailogs/_paragraph-dailogs.scss +171 -0
  87. package/styles/document-editor/material-dark.css +204 -97
  88. package/styles/document-editor/material-dark.scss +4 -1
  89. package/styles/document-editor/material.css +202 -95
  90. package/styles/document-editor/material.scss +4 -1
  91. package/styles/document-editor/tailwind-dark.css +221 -127
  92. package/styles/document-editor/tailwind-dark.scss +4 -1
  93. package/styles/document-editor/tailwind.css +221 -127
  94. package/styles/document-editor/tailwind.scss +4 -1
  95. package/styles/document-editor-container/_all.scss +2 -0
  96. package/styles/document-editor-container/_bootstrap-dark-definition.scss +125 -0
  97. package/styles/document-editor-container/_bootstrap-definition.scss +125 -0
  98. package/styles/document-editor-container/_bootstrap4-definition.scss +141 -0
  99. package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
  100. package/styles/document-editor-container/_bootstrap5-definition.scss +152 -0
  101. package/styles/document-editor-container/_definition.scss +10 -0
  102. package/styles/document-editor-container/_fabric-dark-definition.scss +130 -0
  103. package/styles/document-editor-container/_fabric-definition.scss +127 -0
  104. package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
  105. package/styles/document-editor-container/_fluent-definition.scss +153 -0
  106. package/styles/document-editor-container/_fusionnew-definition.scss +152 -0
  107. package/styles/document-editor-container/_highcontrast-definition.scss +128 -0
  108. package/styles/document-editor-container/_highcontrast-light-definition.scss +131 -0
  109. package/styles/document-editor-container/_layout.scss +88 -0
  110. package/styles/document-editor-container/_material-dark-definition.scss +129 -0
  111. package/styles/document-editor-container/_material-definition.scss +128 -0
  112. package/styles/document-editor-container/_material3-definition.scss +152 -0
  113. package/styles/document-editor-container/_tailwind-dark-definition.scss +1 -0
  114. package/styles/document-editor-container/_tailwind-definition.scss +146 -0
  115. package/styles/document-editor-container/_theme.scss +2004 -0
  116. package/styles/document-editor-container/bootstrap-dark.css +4 -1
  117. package/styles/document-editor-container/bootstrap-dark.scss +5 -1
  118. package/styles/document-editor-container/bootstrap.css +4 -1
  119. package/styles/document-editor-container/bootstrap.scss +5 -1
  120. package/styles/document-editor-container/bootstrap4.css +5 -2
  121. package/styles/document-editor-container/bootstrap4.scss +5 -1
  122. package/styles/document-editor-container/bootstrap5-dark.css +5 -2
  123. package/styles/document-editor-container/bootstrap5-dark.scss +5 -1
  124. package/styles/document-editor-container/bootstrap5.css +5 -2
  125. package/styles/document-editor-container/bootstrap5.scss +5 -1
  126. package/styles/document-editor-container/fabric-dark.css +4 -1
  127. package/styles/document-editor-container/fabric-dark.scss +5 -1
  128. package/styles/document-editor-container/fabric.css +4 -1
  129. package/styles/document-editor-container/fabric.scss +5 -1
  130. package/styles/document-editor-container/fluent-dark.css +5 -2
  131. package/styles/document-editor-container/fluent-dark.scss +5 -1
  132. package/styles/document-editor-container/fluent.css +5 -2
  133. package/styles/document-editor-container/fluent.scss +5 -1
  134. package/styles/document-editor-container/highcontrast-light.css +22 -19
  135. package/styles/document-editor-container/highcontrast-light.scss +5 -1
  136. package/styles/document-editor-container/highcontrast.css +4 -1
  137. package/styles/document-editor-container/highcontrast.scss +5 -1
  138. package/styles/document-editor-container/icons/_bootstrap-dark.scss +397 -0
  139. package/styles/document-editor-container/icons/_bootstrap.scss +397 -0
  140. package/styles/document-editor-container/icons/_bootstrap4.scss +397 -0
  141. package/styles/document-editor-container/icons/_bootstrap5-dark.scss +1 -0
  142. package/styles/document-editor-container/icons/_bootstrap5.scss +423 -0
  143. package/styles/document-editor-container/icons/_fabric-dark.scss +397 -0
  144. package/styles/document-editor-container/icons/_fabric.scss +397 -0
  145. package/styles/document-editor-container/icons/_fluent-dark.scss +1 -0
  146. package/styles/document-editor-container/icons/_fluent.scss +423 -0
  147. package/styles/document-editor-container/icons/_fusionnew.scss +423 -0
  148. package/styles/document-editor-container/icons/_highcontrast-light.scss +397 -0
  149. package/styles/document-editor-container/icons/_highcontrast.scss +397 -0
  150. package/styles/document-editor-container/icons/_material-dark.scss +400 -0
  151. package/styles/document-editor-container/icons/_material.scss +400 -0
  152. package/styles/document-editor-container/icons/_material3.scss +423 -0
  153. package/styles/document-editor-container/icons/_tailwind-dark.scss +423 -0
  154. package/styles/document-editor-container/icons/_tailwind.scss +423 -0
  155. package/styles/document-editor-container/material-dark.css +4 -1
  156. package/styles/document-editor-container/material-dark.scss +5 -1
  157. package/styles/document-editor-container/material.css +4 -1
  158. package/styles/document-editor-container/material.scss +5 -1
  159. package/styles/document-editor-container/tailwind-dark.css +5 -3
  160. package/styles/document-editor-container/tailwind-dark.scss +5 -1
  161. package/styles/document-editor-container/tailwind.css +5 -3
  162. package/styles/document-editor-container/tailwind.scss +5 -1
  163. package/styles/fabric-dark.css +215 -105
  164. package/styles/fabric.css +215 -105
  165. package/styles/fluent-dark.css +223 -112
  166. package/styles/fluent.css +223 -112
  167. package/styles/highcontrast-light.css +78 -47
  168. package/styles/highcontrast.css +215 -105
  169. package/styles/material-dark.css +208 -98
  170. package/styles/material.css +206 -96
  171. package/styles/tailwind-dark.css +226 -130
  172. package/styles/tailwind.css +226 -130
  173. package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
  174. package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -574
  175. package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
  176. package/@syncfusion/ej2-angular-documenteditor.js +0 -544
  177. package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
  178. package/CHANGELOG.md +0 -3071
  179. package/dist/ej2-angular-documenteditor.umd.js +0 -838
  180. package/dist/ej2-angular-documenteditor.umd.js.map +0 -1
  181. package/dist/ej2-angular-documenteditor.umd.min.js +0 -11
  182. package/dist/ej2-angular-documenteditor.umd.min.js.map +0 -1
  183. package/ej2-angular-documenteditor.d.ts +0 -6
  184. package/ej2-angular-documenteditor.metadata.json +0 -1
  185. package/postinstall/tagchange.js +0 -18
  186. package/schematics/collection.json +0 -15
  187. package/schematics/generators/documenteditorcontainer-default/index.d.ts +0 -3
  188. package/schematics/generators/documenteditorcontainer-default/index.js +0 -8
  189. package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +0 -5
  190. package/schematics/generators/documenteditorcontainer-default/sample-details.js +0 -7
  191. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  192. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  193. package/schematics/generators/documenteditorcontainer-default/schema.d.ts +0 -3
  194. package/schematics/generators/documenteditorcontainer-default/schema.js +0 -2
  195. package/schematics/generators/documenteditorcontainer-default/schema.json +0 -124
  196. package/schematics/ng-add/index.d.ts +0 -3
  197. package/schematics/ng-add/index.js +0 -9
  198. package/schematics/ng-add/schema.d.ts +0 -13
  199. package/schematics/ng-add/schema.js +0 -2
  200. package/schematics/ng-add/schema.json +0 -34
  201. package/schematics/tsconfig.json +0 -25
  202. package/schematics/utils/lib-details.d.ts +0 -4
  203. package/schematics/utils/lib-details.js +0 -6
package/CHANGELOG.md DELETED
@@ -1,3071 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### Document Editor
6
-
7
- #### Bug Fixes
8
-
9
- - `#I384262` - Resolved the script error while removing the text inside shape.
10
- - `#I384843`, `#I383988` - Resolved issue in text form field after inserting space.
11
- - `#I384262` - Resolved script error while removing content from inline shape.
12
- - `#I382192` - Resolved issue in inserting comment.
13
- - `#I380536` - Resolved script error while accepting table revision.
14
- - `#I380523` - Resolved the crashing issue while inserting new line in protected region.
15
- - `#I379507` - Resolved issue in tab stop width calculation.
16
- - `#I375504` - Resolved script error while importing form fields.
17
- - `#I374466` - Resolved script error while updating dropdown form field.
18
-
19
- ## 20.1.59 (2022-06-07)
20
-
21
- ### Document Editor
22
-
23
- #### Bug Fixes
24
-
25
- - `#F174916` - Resolved the numbering pop-up binding issue.
26
- - `#I376243` - Resolved the script error in importing document with empty author.
27
- - `#I369585` - Resolved the selection issue in selecting document with large number of pages.
28
- - `#I375798` - Resolved the control hanging issue in opening the document.
29
- - `#I367499` - Resolved the shape and chart rendering issue.
30
-
31
- ## 20.1.58 (2022-05-31)
32
-
33
- ### Document Editor
34
-
35
- #### Bug Fixes
36
-
37
- - `#I378991` - Resolved the corruption issue in exporting the document with chart.
38
- - `#I378564` - Resolved the script error in replacing more than 100 items.
39
- - `#I378450`, `#I373175` - Resolved the script error in deleting the tracked content.
40
- - `#I376819` - Resolved the issue in saving the document with track changes.
41
- - `#I375984` - Resolved the script error on scrolling the document.
42
- - `#I375559` - Table with wrapping styles is now preserved properly.
43
- - `#I375504` - Resolved the script error in importing form field.
44
- - `#I375369` - Resolved the layouting issue after after editing.
45
-
46
- ## 20.1.57 (2022-05-24)
47
-
48
- ### Document Editor
49
-
50
- #### Bug Fixes
51
-
52
- - `#I373287` - Resolved the control hanging issue while opening a document with table.
53
- - `#FB34847` - Resolved the script error thrown on re-updating the custom toolbar.
54
- - `#I376882` - Resolved the issue on applying highlight color after replacing the search text.
55
- - `#I372421` - Resolved the insert table's paragraph format inheritance from previous paragraph.
56
- - `#I378924` - Resolved the text frame margin saving issue in sfdt export.
57
- - `#I375700` - Resolved the footnote misplacement in the initial layout.
58
- - `#I371641` - Resolved the minimum column width causes in-finite lopping issue when resizing table.
59
-
60
- ## 20.1.56 (2022-05-17)
61
-
62
- ### Document Editor
63
-
64
- #### Bug Fixes
65
-
66
- - `#I376089` - Resolved the error when converting sfdt to docx in Java server library.
67
- - `#I375856` - Resolved the issue in opening a document with nested content control and exporting to docx.
68
- - `#I373359` - Resolved the multiples instances of table of content was created when track changes was enabled issue.
69
- - `#I375732` - Resolved the table merged cell rendering issue.
70
- - `#I375798` - Resolved the control hanging issue on opening a document due to tab element.
71
- - `#I375298` - Resolved the indentation hides text in web layout.
72
- - `#I375704` - Resolved the restart level issue in word export.
73
- - `#I375703` - Resolved the footnote inside the table layout issue in initial rendering.
74
-
75
- ## 20.1.55 (2022-05-12)
76
-
77
- ### Document Editor
78
-
79
- #### Bug Fixes
80
-
81
- - `#FB34545` - Resolved the document editor container component destroy issue.
82
- - `#I375339` - Resolved the restart page numbering consideration on table of content updating.
83
- - `#I374447` - Resolved the empty pages issue on printing a document with landscape orientation.
84
- - `#I373959` - Resolved the pagination issue on layouting and downloading a sfdt.
85
- - `#I373287` - Resolved the control hanging issue while opening a document with table
86
- - `#I366157`, `#I367362` - Resolved the table rendering issue at the bottom of the page.
87
- - `#I373048` - Rejecting new paragraphs tracked changes releases the occupied space.
88
- - `#I372635` - Resolved the issue in review pane while opening a default document with track changes.
89
- - `#I372245` - Resolved the layouting issue for large footnote content which flows over the current page.
90
- - `#I371788` - Resolved the multiple call issue when enabling the spellcheck after editing the document.
91
- - `#I371641` - Resolved the minimum column width causes in-finite lopping issue when resizing table.
92
- - `#I368482` - Resolved the table in document overlaps footer.
93
- - `#I367499` - Resolved the chart color rendering and shape overlapping issue.
94
- - `#I368087` - Resolved the list format issues when open document by Document Editor.
95
-
96
- ## 20.1.52 (2022-05-04)
97
-
98
- ### Document Editor
99
-
100
- #### Bug Fixes
101
-
102
- - `#SF-368653` - Resolved the Document Editor numbering continuity issue.
103
- - `#SF-376374` - Resolved the exception thrown on exporting a sfdt without a metafile property in server-side.
104
- - `#SF-373298` - Resolved the extra paragraph added while updating the table of contents.
105
- - `#SF-373359` - Resolved the multiples instances of table of content creation when track changes is enabled.
106
- - `#SF-373451` - Resolved exception while open the document with image without relation identifier.
107
- - `#SF-373159` - Resolved the console error thrown on pasting a content and then changing page orientation.
108
- - `#SF-373175` - Resolved the script error thrown on deleting the revision text.
109
- - `#SF-372741` - Resolved inconsistent behaviour of text selection inside an editable table cell within a read only document.
110
- - `#SF-372794` - Resolved the script error while serializing sfdt document with page break to html format in server-side.
111
- - `#SF-372636` - Resolved the text inside the shape with wrapping style 'in-front of text'.
112
- - `#SF-372159` - Default number format for Page field is now displayed properly.
113
- - `#SF-371816` - List format is now preserved properly on importing.
114
- - `#SF-371644` - Table formatting is now preserved properly while copy pasting table and resolved the document hanging in copying.
115
- - `#SF-370909` - Resolved the script error rendering after content delete.
116
- - `#SF-369585` - Resolved the scrolling becomes quite slow while selecting the text in document with more than 20 pages.
117
- - `#SF-368794` - Resolved the tab space issue.
118
- - `#SF-366157`, `#SF-367362` - Resolved the table rendering issue at the bottom of the page.
119
- - `#SF-293527` - Justify paragraph layout issue in new page first paragraph is now resolved.
120
- - `#SF-373340` - Resolved the content hanging issue while opening the attached document.
121
- - `#SF-372431` - Resolved the table misalignment issue if the table has positioning properties.
122
-
123
- ## 20.1.51 (2022-04-26)
124
-
125
- ### Document Editor
126
-
127
- #### Bug Fixes
128
-
129
- - `#I361566`, `#I372584` - Resolved the wrapping style issue in header/footer.
130
- - `#I373016` - Resolved the script error in accepting the revision inside the table.
131
- - `#I370714` - Resolved the character format updating issue.
132
- - `#I364803` - Resolved the track changes to empty page.
133
- - `#I356022` - Resolved the wrong comma placing in Hebrew language.
134
- - `#I368816` - Resolved the pie chart rendering and exporting issue.
135
-
136
- ## 20.1.50 (2022-04-19)
137
-
138
- ### Document Editor
139
-
140
- #### Bug Fixes
141
-
142
- - `#I374477` - Resolved the script error in XmlHttpRequest in lock and edit.
143
- - `#I372421` - Resolved issues in insert row/column paragraph format inheritance from previous paragraph.
144
- - `#IF173898` - Resolved the highlight color is not preserved in copy/paste.
145
-
146
- ## 20.1.48 (2022-04-12)
147
-
148
- ### Document Editor
149
-
150
- #### Bug Fixes
151
-
152
- - `#I374325`, `#I374720` - Resolved the text input issue replacing the selected text.
153
- - `#I366806` - Resolved the content overlapping issue.
154
- - `#I360442`, `#I372285` - Resolved the add to dictionary context item localization issue.
155
- - `#I368653` - Resolved the numbering continuity issue.
156
- - `#I368442` - Resolved the table of content alignment issue.
157
- - `#I369908` - Resolved the alignment issue in the header.
158
- - `#I368287` - Resolved the rendering issue for font family with number in canvas element.
159
- - `#I368056` - Resolved the newly inserted footnote content style issue.
160
- - `#I365347` - Resolved the paste content in between a paragraph.
161
- - `#I366850` - Resolved the script error in DocumentEditorContainer component destroy.
162
- - `#I368658` - Resolved the script error in pasting the content.
163
- - `#F171582`, `#F173213` - Resolved the color preservation issue in pasting the highlighted cell from excel.
164
- - `#F173430` - Resolved the delay in filling a document with large number of form fields.
165
- - `#I370428` - Resolved the script error in replacing the text.
166
- - `#I370305` - Resolved the cropped image rendering issue.
167
- - `#I368292` - Resolved the empty merge field layout issue.
168
- - `#I369092` - Indentation behaviour for numbered list is updated.
169
-
170
- ## 20.1.47 (2022-04-04)
171
-
172
- ### Document Editor
173
-
174
- #### Bug Fixes
175
-
176
- - `#I367457` - Resolved the nested table content positioning issue.
177
- - `#I365347` - Copied content is now pasted properly in between the paragraph.
178
- - `#I361140` - Resolved the script error in inserting footnote content.
179
- - `#I366968` - Newly added table row border is now exported properly in server-side word export.
180
- - `#I366806` - Resolved the content overlapping issue with wrapped shape.
181
- - `#I363360` - Resolved the new window sample dialog height issue.
182
-
183
- #### New Features
184
-
185
- - `#I348441` - Added support for adding SVG image in a Word document.
186
- - `#I348727` - Added support for setting automatic space before and after a paragraph in a Word document.
187
- - `#I268209` - Added support for restricting documents with comments only protection type.
188
- - `#I363489` - Improved the performance of the server-side spell check library.
189
-
190
- ## 19.4.56 (2022-03-15)
191
-
192
- ### Document Editor
193
-
194
- #### Bug Fixes
195
-
196
- - `#SF-366157`, `#SF-367362` - Table in the end of the page is now rendered properly.
197
- - `#SF-365958` - Resolved the issue in track change undo/redo.
198
- - `#SF-366627` - Resolved the script error in the inline form fill mode.
199
- - `#SF-367474`, `#SF-367493` - Resolved the line breaking issue in keep text only mode pasting.
200
- - `#SF-366968` - Table border is now exported properly in server-side word export.
201
- - `#SF-361925` - Resolved the script error in creating consecutive styles.
202
- - `#SF-366592` - Resolved the number format issue in decreasing the indent.
203
-
204
- ## 19.4.55 (2022-03-08)
205
-
206
- ### Document Editor
207
-
208
- #### Bug Fixes
209
-
210
- - `#SF-368151` - Resolved the upper case function in localization.
211
- - `#SF-367003` - Text is congested after using numbering is resolved.
212
- - `#SF-366157` - Resolved the multi level list restart numbering issue.
213
- - `#SF-365713` - Resolved the table layout issue in compatibility mode.
214
- - `#SF-354038` - Resolved the script error in exporting document with large.
215
- - `#SF-364803` - Resolved the track changes to empty page.
216
- - `#F172160` - Resolved the editing the document after inserting table of contents.
217
- - `#SF-367119` - Resolved the script error while loading a document.
218
- - `#SF-369375` - Resolved the revision duplication in loading document with track changes.
219
- - `#SF-365347` - Resolved the copy/paste for match destination formatting.
220
- - `#SF-366101` - Resolved the font size binding issue in font dialog.
221
- - `#SF-362395` - Resolved the table delete issue when track changes is enabled.
222
- - `#SF-359599` - Resolved the empty paragraph track changes not showing in track changes pane.
223
- - `#SF-361140` - Endnote splitting issue to new page is resolved.
224
- - `#SF-367119` - Resolved the script error in opening document with shapes.
225
-
226
- ## 19.4.54 (2022-03-01)
227
-
228
- ### Document Editor
229
-
230
- #### Bug Fixes
231
-
232
- - `#SF-365347` - Resolved the copy/paste for match destination formatting.
233
- - `#SF-366101` - Resolved the font size binding issue in font dialog.
234
- - `#SF-362395` - Resolved the table delete issue when track changes is enabled.
235
- - `#SF-359599` - Resolved the empty paragraph track changes not showing in track changes pane.
236
- - `#SF-361140` - Endnote splitting issue to new page is resolved.
237
- - `#SF-367119` - Resolved the script error in opening document with shapes.
238
-
239
- ## 19.4.53 (2022-02-22)
240
-
241
- ### Document Editor
242
-
243
- #### Bug Fixes
244
-
245
- - `#F172362` - Resolved the script error in removing form field
246
- - `#SF-363487` - Resolved the spell check call triggering issue along with spell check by page.
247
- - `#SF-365295` - Comment and track changes date time is now compatible with MS Word.
248
- - `#SF-363790` - Resolved the performance issue in selection when focus moves out for Document editor.
249
- - `#SF-293910` - Comment operation is are restricted in the read only mode.
250
- - `#F171981` - Resolved the `beforeFormFieldFill` event triggering issue keyboard navigation.
251
- - `#SF-363546` - Resolved the script error in deleting the table with the bookmark.
252
- - `#FB31160` - Resolved the empty lines tracked changes.
253
- - `#SF-364322`, `#SF-365061` - Resolved the high light colour exporting issue in server-side saving.
254
- - `#FB32346` - Resolved the script error in deleting the image in spell check enabled mode.
255
-
256
- ## 19.4.52 (2022-02-15)
257
-
258
- ### Document Editor
259
-
260
- #### Bug Fixes
261
-
262
- - `#SF-356242`, `#SF-364511` - Resolved the character format and paragraph format in inserting new row and column.
263
- - `#SF-363021` - Resolved the bullet list copy paste issue.
264
- - `#SF-363285` - Resolved the bulleted list deletion issue inside table.
265
- - `#SF-362395` - Resolved the table delete issue when track changes is enabled.
266
- - `#F171944` - Resolved the document scrolling issue.
267
- - `#SF-361169` - Resolved the pasting issue in large non-formatted content.
268
- - `#SF-356384` - Resolved the merged cell rendering issue.
269
- - `#SF-355425` - Resolved the relayout issue in editing wrapped table editing.
270
- - `#SF-352941` - Resolved the table border rendering.
271
- - `#SF-353976` - Resolved the table merged cells rendering issue.
272
-
273
- #### New Features
274
-
275
- - `#F168557` - Added support for insert new paragraph using \r\n, \r, \n
276
- - `#SF-358641` - Added API to get/set field information.
277
-
278
- ## 19.4.50 (2022-02-08)
279
-
280
- ### Document Editor
281
-
282
- #### Bug Fixes
283
-
284
- - `#F171012` - Character style is now applied properly.
285
- - `#SF-361141` - Resolved the endnote number format rendering issue.
286
- - `#SF-359056` - Resolved the hanging issue in loading document with hebrew text.
287
- - `#SF-352586`, `#F170330` - Resolved the track changes and restrict editing region issues in header/footer.
288
- - `#SF-364411` - Resolved the image height and width serialization issue in server-side exporting.
289
- - `#SF-361566` - Resolved the wrapping style issue in header/footer.
290
- - `#SF-361147` - Resolved the relayout issue in footnote moving to next page.
291
- - `#SF-361532` - Resolved the strike through applying issue for bulleted list.
292
- - `#F171673`, `#SF-362944` - Resolved the comments pane opening issue in editing.
293
- - `#SF-361056`, `#SF-364408` - Resolved the empty revision loading issue track changes pane.
294
-
295
- ## 19.4.48 (2022-01-31)
296
-
297
- ### Document Editor
298
-
299
- #### Bug Fixes
300
-
301
- - `#SF-355895` - Resolved the stacked column rendering issue.
302
- - `#SF-359392` - Resolved the pie chart color rendering issue.
303
- - `#F171212` - Resolved the section format copy/paste issue.
304
- - `#SF-359809` - Table formatting is not applied properly.
305
- - `#SF-359914` - Resolved the nested table height issue.
306
- - `#SF-362938` - Resolved the spell check shows error for correct word after backspace/delete.
307
- - `#SF-358997` - Resolved the script error in selection when first page of the document filled with shape with image and wrapping style.
308
- - `#SF-361108` - Resolved the script error in the copy/paste.
309
- - `#FB29987` - Resolved the table layouting issue in conversion from HTML to Document.
310
- - `#SF-362365` - Resolved the modifying level in drop down.
311
- - `#SF-363485` - Resolved the preferred width type mismatch in server-side SFDT to Docx conversion.
312
- - `#F171941` - Resolved the insert page break in optimized spell check mode.
313
- - `#SF-359775` - Column Clustered is not rendered properly.
314
- - `#SF-359392` - Resolved the default chart color applied to pie chart.
315
- - `#SF-359223` - Resolved the backspace issue in track changes.
316
- - `#SF-356022` - Resolved the wrong comma placing in Hebrew language.
317
- - `#SF-359056` - Resolved document hanging issue opening hebrew document.
318
- - `#F169863`, `#SF-354348` - Resolved the server-side exporting issue in SFDT to Docx.
319
- - `#SF-359780` - Resolved the layout issue in word 2013 justification for list applied text.
320
- - `#SF-356294` - Resolved the extra space adding while copying and pasting text with bookmarks.
321
- - `#SF-356242` - Resolved the style issue for the newly added rows & columns in the table.
322
- - `#SF-358936` - Resolved the HTML Element ContentEditable property issue in DocumentEditor.
323
- - `#SF-357051` - Resolved the element alignment issue due to page break.
324
- - `#SF-355713` - Resolved the script error in applying restrict editing in DocumentEditorContainer.
325
- - `#SF-354207` - Resolved the atleast line spacing type line height issue.
326
- - `#SF-354215` - Resolved the floating elements positioning issue after update form fields.
327
- - `#SF-357939` - Resolved the footer overlapping issue after pasting large content.
328
- - `#SF-354644` - Resolved the overlapping issue for image with top and bottom wrapping style in header.
329
- - `#SF-358814` - Document with applied list format is exported properly.
330
- - `#F171012` - Resolved the script error in applying the list format to character style applied text.
331
- - `#SF-358474` - Resolved the header/footer tooltip and toolbar item text wrap issue when localized.
332
- - `#SF-358523` - Resolved the status bar and font family style issue when localized.
333
- - `#SF-356958` - Resolved the misalignment after list applying.
334
- - `#SF-355425` - Resolved the auto fit table with preferred with type 'Point' is now layouted properly.
335
- - `#SF-359606` - Resolved the default tab width calculation with tab stop.
336
- - `#SF-355860` - Resolved the tab element layout issue in footer.
337
- - `#SF-359156` - Resolved the cropped image issue rendering in header/footer.
338
- - `#SF-354038` - Resolved the performance issue in inserting table more rows.
339
- - `#SF-354463` - Resolved the crashing issue in splitting rows in rendering table.
340
- - `#SF-353961` - Resolved the performance issue in editing document with merge field.
341
- - `#SF-355429` - Resolved selection issue for the shape with in front of text wrapping.
342
- - `#SF-360442` - Resolved the spell check suggestion replace issue in localized document editor.
343
- - `#F171032` - Resolved the empty line adding in text exporting.
344
- - `#F171461` - Resolved the content control preservation issue in exporting.
345
- - `#I347750` - Resolved the hanging issue when pasting large non-formatted content.
346
- - `#I349289`, `#I349128` - Resolved the endnote shifting and overlapping issue.
347
- - `#F171307` - Resolved the track changes issue in editing paragraph inside table.
348
- - `#SF-356951`, `#F170963`, `#SF-351886`, `#SF-359815`, `#SF-359312` - Resolved the merged cell width rendering issue.
349
- - `#I347523` - Resolved the invalid SFDT generation after pasting formatted content.
350
- - `#SF-357703` - Resolved the table row splitting issue.
351
-
352
- #### New Features
353
-
354
- - `#SF-354038` - Added API to restrict the maximum number of rows in insert table dialog(`DocumentEditorSettings.maximumRows`)
355
- - `#SF-348990` - Added screen tip support for hyperlink.
356
-
357
- ## 19.4.47 (2022-01-25)
358
-
359
- ### Document Editor
360
-
361
- #### Bug Fixes
362
-
363
- - `#FB29987` - Resolved the table layouting issue in conversion from HTML to Document.
364
- - `#SF-362365` - Resolved the modifying level in drop down.
365
- - `#SF-363485` - Resolved the preferred width type mismatch in server-side SFDT to Docx conversion.
366
- - `#F171941` - Resolved the insert page break in optimized spell check mode.
367
- - `#SF-359775` - Column Clustered is not rendered properly.
368
- - `#SF-359392` - Resolved the default chart color applied to pie chart.
369
- - `#SF-359223` - Resolved the backspace issue in track changes.
370
- - `#SF-356022` - Resolved the wrong comma placing in Hebrew language.
371
- - `#SF-359056` - Resolved document hanging issue opening hebrew document.
372
-
373
- ## 19.4.43 (2022-01-18)
374
-
375
- ### Document Editor
376
-
377
- #### Bug Fixes
378
-
379
- - `#F169863`, `#SF-354348` - Resolved the server-side exporting issue in SFDT to Docx.
380
- - `#SF-359780` - Resolved the layout issue in word 2013 justification for list applied text.
381
- - `#SF-356294` - Resolved the extra space adding while copying and pasting text with bookmarks.
382
- - `#SF-356242` - Resolved the style issue for the newly added rows & columns in the table.
383
- - `#SF-358936` - Resolved the HTML Element ContentEditable property issue in DocumentEditor.
384
- - `#SF-357051` - Resolved the element alignment issue due to page break.
385
- - `#SF-355713` - Resolved the script error in applying restrict editing in DocumentEditorContainer.
386
- - `#SF-354207` - Resolved the atleast line spacing type line height issue.
387
- - `#SF-354215` - Resolved the floating elements positioning issue after update form fields.
388
- - `#SF-357939` - Resolved the footer overlapping issue after pasting large content.
389
- - `#SF-354644` - Resolved the overlapping issue for image with top and bottom wrapping style in header.
390
- - `#SF-358814` - Document with applied list format is exported properly.
391
- - `#F171012` - Resolved the script error in applying the list format to character style applied text.
392
- - `#SF-358474` - Resolved the header/footer tooltip and toolbar item text wrap issue when localized.
393
- - `#SF-358523` - Resolved the status bar and font family style issue when localized.
394
- - `#SF-356958` - Resolved the misalignment after list applying.
395
- - `#SF-355425` - Resolved the auto fit table with preferred with type 'Point' is now layouted properly.
396
- - `#SF-359606` - Resolved the default tab width calculation with tab stop.
397
- - `#SF-355860` - Resolved the tab element layout issue in footer.
398
- - `#SF-359156` - Resolved the cropped image issue rendering in header/footer.
399
- - `#SF-354038` - Resolved the performance issue in inserting table more rows.
400
-
401
- ## 19.4.41 (2022-01-04)
402
-
403
- ### Document Editor
404
-
405
- #### Bug Fixes
406
-
407
- - `#SF-354463` - Resolved the crashing issue in splitting rows in rendering table.
408
- - `#SF-353961` - Resolved the performance issue in editing document with merge field.
409
- - `#SF-355429` - Resolved selection issue for the shape with in front of text wrapping.
410
- - `#SF-360442` - Resolved the spell check suggestion replace issue in localized document editor.
411
- - `#F171032` - Resolved the empty line adding in text exporting.
412
- - `#F171461` - Resolved the content control preservation issue in exporting.
413
-
414
- #### New Features
415
-
416
- - `#SF-354038` - Added API to restrict the maximum number of rows in insert table dialog(`DocumentEditorSettings.maximumRows`)
417
-
418
- ## 19.4.40 (2021-12-28)
419
-
420
- ### Document Editor
421
-
422
- #### Bug Fixes
423
-
424
- - `#I347750` - Resolved the hanging issue when pasting large non-formatted content.
425
- - `#I349289`, `#I349128` - Resolved the endnote shifting and overlapping issue.
426
- - `#F171307` - Resolved the track changes issue in editing paragraph inside table.
427
- - `#SF-359156` - Resolved the cropped image issue rendering in header/footer.
428
- - `#SF-356951`, `#F170963`, `#SF-351886`, #`SF-359815`, `#SF-359312` - Resolved the merged cell width rendering issue.
429
- - `#I347523` - Resolved the invalid SFDT generation after pasting formatted content.
430
- - `#SF-357703` - Resolved the table row splitting issue.
431
-
432
- ## 19.4.38 (2021-12-17)
433
-
434
- ### Document Editor
435
-
436
- #### Bug Fixes
437
-
438
- - `#I348089` - Resolved the protected columns, rows, and cells editing issue.
439
- - `#I344822` - Word with hyphen characters are now displayed properly.
440
- - `#I345558` - Resolved the table layout for the nested table with position.
441
- - `#I346408` - Table cell content reversed on undo is now resolved.
442
- - `#I346992` - Paragraph with widow/orphan property is now displayed properly.
443
- - `#I341119` - Document with image and table with top and bottom wrapping style is now opened properly.
444
- - `#I344713`- Resolved table header row rendering issue.
445
- - `#I341963`, `#I341840` - Resolved the table rendering issue.
446
- - `#I344704` - Resolved issue with tracking changes in empty paragraph.
447
- - `#I344351` - Line height is now calculated properly when space character has font size greater than the paragraph mark.
448
- - `#I345759`, `#I343106`- Resolved the table border rendering issue.
449
- - `#I343645` - Table grid after width defined as percentage type is now properly exported in server-side.
450
- - `#I341659` - Resolved the list alignment issue.
451
- - `#I347230` - Line spacing value zero is now properly exported in server-side.
452
- - `#I346468` - Resolved the document corruption issue due to z-order in server-side exporting.
453
- - `#I344830` - Resolved exception in opening and saving the document with calculation type form field.
454
- - `#I345582`, `#I341985` - Document with tab width is now displayed properly.
455
- - `#I346985` - Line height is now properly updated for tab character when its font size greater than other elements in the line.
456
- - `#FB29648` - Table rows/columns in header and footer are now resized properly.
457
- - `#I349115` - Resolved the scrolling behaviour issue when using `goToPage` API.
458
- - `#I348516` - Table/Cell background color is preserved properly during copy/paste.
459
- - `#I341891` - Resolved the hanging issue while editing the footnote content.
460
- - `#I344790` - Resolved the footnote overlapping issue when editing a table.
461
- - `#I343310` - Resolved the blank page issue in the exported Word document due to footnote.
462
- - `#I345594` - Resolved the new style listing problem when Document editor is localized for languages other than English.
463
- - `#I344840` - Resolved the height and width for `insertImage` API.
464
- - `#I343403` - Resolved the script error while opening document with tracked changes and restrict editing enabled.
465
- - `#I342774` - The Word document is now exported properly when the document contains content control.
466
- - `#I340276` - Resolved issue with entering custom date time value for form field.
467
- - `#I344605` - Resolved the context menu displaying issue when multiple instances of Document Editor are used in same page.
468
- - `#I337087`, `#I344332` - Improved the suggestion construction logic for error words.
469
- - `#I338302` - Resolved the hanging issue when opening document with table.
470
- - `#I339240` - RTL list is now deleted properly.
471
- - `#I340758` - The Word document is now exported properly when the document contains table with merged cells.
472
- - `#I341140` - Tracked changes is now updated properly for the existing empty line.
473
- - `#F167253`, `#F168269` - Track changes pane visibility issue is now resolved.
474
- - `#F168463` - The floating element with square wrapping style is now displayed properly.
475
- - `#I338947` - Resolved the issue with undo after pasting Hebrew text.
476
- - `#I341435` - Optimized the content change event triggering in Document Editor.
477
- - `#I340867` - Selection is now working properly after applying character format.
478
- - `#I341335` - Text formatting is now preserved properly for merge fields.
479
- - `#I339239`, `#I339242`, `#I339021` - RTL text are now arranged properly.
480
- - `#I335659` - RTL text are now preserved properly on undo/redo.
481
- - `#I340643` - The comment mark is now removed properly when deleting comment.
482
- - `#I339335` - Resolved the hanging issue when editing document with Hebrew text.
483
- - `#I340121` - Resolved the issue with rendering elbow connector as line connector.
484
- - `#I339453` - Resolved the issue with rendering a fixed width table.
485
- - `#I341119` - Resolved the overlapping issue for image with top and bottom wrapping inside table.
486
- - `#I339602` – Track changes is now updated properly in header and footer.
487
- - `#I341964`, `#I342165` – RTL text is now arranged properly when copy/paste.
488
- - `#I339714` – Footnote order is now updated properly.
489
- - `#I339973` - Table is now preserved properly in the exported Word document.
490
- - `#I340795` – Field is now copied properly.
491
- - `#I339872` – Page number in footer is now updated properly.
492
- - `#I339576`, `#F168072` – Resolved the issue in applying page orientation with the section break.
493
- - `#I339027` – Resolved the script error in saving document with tracked changes in header/footer.
494
- - `#I340532` – Html elements are now properly disposed.
495
- - `#F168319` – Resolved the ViewChange event binding issue in Document Editor component.
496
- - `#I341375` – Resolved the undo/redo issue in comment editing operations.
497
-
498
- #### New Features
499
-
500
- - `#I345565` - Added support for Word 2013 justification.
501
- - `#I343497` - Added support to display the texture style for table cell shading.
502
- - `#I343751` - Added alert window for row and column specified more than 63 and 32767 respectively in insert table dialog.
503
- - `#I342110` - Added event to customize the XMLHttpRequest in DocumentEditor and DocumentEditorContainer component.
504
-
505
- ## 19.3.56 (2021-12-02)
506
-
507
- ### Document Editor
508
-
509
- #### Bug Fixes
510
-
511
- - `#I343645` - Table grid after width percentage value is now properly exported in server-side.
512
- - `#I341659` - Resolved the list alignment issues.
513
- - `#I347230` - Zero line spacing value is now properly exported in server-side.
514
- - `#I346468` - Resolved the document corruption issue due to z-order in server-side exporting.
515
- - `#I344830` - Resolved in exception in opening and saving document with calculation form field.
516
- - `#I345582`, `#I341985` - Document with tab width is now rendered properly.
517
- - `#I346985` - Line height issue is now properly updated for tab character with greater size than rest of the elements in the line.
518
- - `#FB29648` - Table rows/columns in header and footer are now resized properly.
519
- - `#I349115` - Resolved the `goToPage` API scrolling behaviour issue.
520
- - `#I348516` - Table/Cell background color serialized properly in copy/paste.
521
- - `#I341891` - Resolved the hanging issue in editing the footnote content.
522
- - `#I344790` - Resolved footnote overlapping issue when editing a table.
523
-
524
- ## 19.3.55 (2021-11-23)
525
-
526
- ### Document Editor
527
-
528
- #### Bug Fixes
529
-
530
- - `I345759`- Resolved the table border rendering issue.
531
-
532
- ## 19.3.54 (2021-11-17)
533
-
534
- ### Document Editor
535
-
536
- #### Bug Fixes
537
-
538
- - `I344713`- Resolved table header row rendering issue.
539
- - `I341963` - Resolved the table rendering issue.
540
- - `I344704` - Resolved the empty paragraph tracking issue.
541
- - `I344351` - Line height is now calculated property when space character has larger font size the paragraph mark.
542
-
543
- ## 19.3.53 (2021-11-12)
544
-
545
- ### Document Editor
546
-
547
- #### Bug Fixes
548
-
549
- - `#I343310` - Resolved the blank page adding issue in exported word document due to footnote.
550
- - `#I345594` - Resolved the new style listing problem during localization.
551
- - `#I344840` - Resolved the height and width for `insertImage` API.
552
- - `#I343403` - Resolved the script error while opening document with tracked changes and restrict editing enabled.
553
- - `#I342774` - Resolved the word export issue for document with content control.
554
- - `#I340276` - Resolved issue with entering custom date time value in form field.
555
- - `#I344605` - Resolved the context menu rendering issue for multiple instances of DocumentEditor in the same page.
556
- - `#I343106` - Resolved the table border rendering issue.
557
- - `#I337087`, `#I344332` - Improved the suggestion construction logic for error words.
558
- - `#I338302` - Resolved the hanging issue when opening document with table.
559
- - `#I339240` - RTL list is now deleted properly.
560
- - `#I340758` - Resolved the word export issue for the table with merged cells.
561
- - `#I341140` - Track changes content is now updated properly for the existing empty line.
562
- - `#F167253`, `#F168269` - Track changes pane visibility issue is resolved.
563
- - `#I341985` - Resolved the tab space rendering issue.
564
- - `#F168463` - Resolved the layout issue for the element with square wrapping style.
565
- - `#I338947` - Resolved the undo problem after paste of hebrew text.
566
- - `#I341435` - Optimized the content change event triggering in Document Editor.
567
- - `#I340867` - Selection issue after applying character format is resolved.
568
- - `#I341335` - Resolved the text formatting preservation for merge fields.
569
- - `#I339239`, `#I339242`, `#I339021` - Resolved the text arrangement issue for RTL documents.
570
- - `#I335659` - Resolved the undo/redo some text in RTL mode.
571
- - `#I340643` - Resolved the comment mark removal issue in comment delete.
572
- - `#I339335` - Resolved the hanging issue in editing document with Hebrew text.
573
- - `#I340121` - Resolved the issue with elbow connector rendering as line connector.
574
- - `#I339453` - Resolved the rendering issue in fixed table width case.
575
- - `#I341119` - Resolved the image with top and bottom wrapping overlapping issue with table.
576
- - `#I339602` – Track changes is now updated properly in header and footer.
577
- - `#I341964`, `#I342165` – Resolved the text rearrange issue in copy/paste of RTL text.
578
- - `#I339714` – Footnote order is now updated properly.
579
- - `#I339973` - Table serialization issue in word export is resolved.
580
- - `#I340795` – Issue with copying field is resolved.
581
- - `#I339872` – Page number is footer is now updated properly.
582
- - `#I339576`, `#F168072` – Resolved the issue in applying page orientation with the section break.
583
- - `#I339027` – Resolved the script error in saving tracked content in header/footer.
584
- - `#I340532` – Html elements are nor properly disposed.
585
- - `#F168319` – Resolved the ViewChange event binding issue in Document Editor component.
586
- - `#I341375` – Resolved the history issue in comment operations.
587
- - `#I341840` – Resolved the table rendering issue.
588
-
589
- #### New Features
590
-
591
- - `#I345565` - Added support for Word 2013 justification.
592
- - `#I343497` - Added support to render the texture style for table cell shading.
593
- - `#I343751` - Added alert window for row and column specified more than 63 and 32767 respectively in insert table dialog.
594
- - `#I342110` - Added event to customize the XMLHttpRequest in DocumentEditor and DocumentEditorContainer component.
595
-
596
- ## 19.3.48 (2021-11-02)
597
-
598
- ### Document Editor
599
-
600
- #### Bug Fixes
601
-
602
- - `#I340276` - Resolved issue with entering custom date time value in form field.
603
- - `#I344605` - Resolved the context menu rendering issue for multiple instances of DocumentEditor in the same page.
604
- - `#I343106` - Resolved the table border rendering issue.
605
-
606
- ## 19.3.47 (2021-10-26)
607
-
608
- ### Document Editor
609
-
610
- #### Bug Fixes
611
-
612
- - `#I337087`, `#I344332` - Improved the suggestion construction logic for error words.
613
- - `#I338302` - Resolved the hanging issue when opening document with table.
614
- - `#I339240` - RTL list is now deleted properly.
615
-
616
- ## 19.3.46 (2021-10-19)
617
-
618
- ### Document Editor
619
-
620
- #### Bug Fixes
621
-
622
- - `#I340758` - Resolved the word export issue for the table with merged cells.
623
- - `#I341140` - Track changes content is now updated properly for the existing empty line.
624
- - `#F167253`, `#F168269` - Track changes pane visibility issue is resolved.
625
- - `#I341985` - Resolved the tab space rendering issue.
626
- - `#F168463` - Resolved the layout issue for the element with square wrapping style.
627
- - `#I338947` - Resolved the undo problem after paste of hebrew text.
628
-
629
- #### New Features
630
-
631
- - `#I345565` - Added support for Word 2013 justification.
632
- - `#I343751` - Added alert window for row and column specified more than 63 and 32767 respectively in insert table dialog.
633
-
634
- ## 19.3.45 (2021-10-12)
635
-
636
- ### Document Editor
637
-
638
- #### Bug Fixes
639
-
640
- - `#I341435` - Optimized the content change event triggering in Document Editor.
641
- - `#I340867` - Selection issue after applying character format is resolved.
642
- - `#I341335` - Resolved the text formatting preservation for merge fields.
643
- - `#I339239`, `#I339242`, `#I339021` - Resolved the text arrangement issue for RTL documents.
644
- - `#I335659` - Resolved the undo/redo some text in RTL mode.
645
- - `#I340643` - Resolved the comment mark removal issue in comment delete.
646
- - `#I339335` - Resolved the hanging issue in editing document with Hebrew text.
647
- - `#I340121` - Resolved the issue with elbow connector rendering as line connector.
648
- - `#I339453` - Resolved the rendering issue in fixed table width case.
649
- - `#I341119` - Resolved the image with top and bottom wrapping overlapping issue with table.
650
-
651
- #### New Features
652
-
653
- - `#I343497` - Added support to render the texture style for table cell shading.
654
-
655
- ## 19.3.44 (2021-10-05)
656
-
657
- ### Document Editor
658
-
659
- #### Bug Fixes
660
-
661
- - `#I339602` – Track changes is now updated properly in header and footer.
662
- - `#I341964`, `#I342165` – Resolved the text rearrange issue in copy/paste of RTL text.
663
- - `#I339714` – Footnote order is now updated properly.
664
- - `#I339973` - Table serialization issue in word export is resolved.
665
- - `#I340795` – Issue with copying field is resolved.
666
- - `#I339872` – Page number is footer is now updated properly.
667
- - `#I339576`, `#F168072` – Resolved the issue in applying page orientation with the section break.
668
- - `#I339027` – Resolved the script error in saving tracked content in header/footer.
669
- - `#I340532` – Html elements are now properly disposed.
670
- - `#F168319` – Resolved the ViewChange event binding issue in Document Editor component
671
- - `#I340643`, `#I341375` – Resolved the history issue in comment operations
672
- - `#I341840` – Resolved the table rendering issue.
673
-
674
- #### New Features
675
-
676
- - `#I342110` - Added event to customize the XMLHttpRequest in DocumentEditor and DocumentEditorContainer component.
677
-
678
- ## 19.3.43 (2021-09-30)
679
-
680
- ### Document Editor
681
-
682
- #### Breaking Changes
683
-
684
- - Optimized the accuracy of text size measurements such as to match Microsoft Word pagination for most Word documents. This improvement is included as default behaviour along with an optional API `enableOptimizedTextMeasuring` in Document editor settings. To disable this improvement and retain the document pagination behaviour of older versions, kindly set `false` to `enableOptimizedTextMeasuring` property.
685
-
686
- #### Bug Fixes
687
-
688
- - `#I334754`, `#I337720`, `#F167429` - Resolved the localization issue.
689
- - `#I333264` - Resolved the before spacing issue for the paragraph starting in new page.
690
- - `#I333226` - Resolved the underline issue.
691
- - `#I332508` - Resolved the tracking of multiline and empty paragraph revision.
692
- - `#I335858`, `#F148494` - Resolved the script error in component destroy.
693
- - `#F166420` - Resolved the SFDT exporting issue with shape.
694
- - `#I332253` - Resolved the cut paste hyperlink issue when track changes enabled.
695
- - `#I335409` - Resolved user list updating issue in restrict editing pane.
696
- - `#I328976` - Table and document content is now displayed properly.
697
- - `#I331333` - Resolved the page unresponsive issue when opening a document with nested table.
698
- - `#I331763` - Table with position property is now displayed properly after editing the document.
699
- - `#I330233` - Resolved the extra page issue when updating cross reference field.
700
- - `#I329790`, `#I331351` - Table is now displayed properly based on compatibility mode of the document.
701
- - `#I332483` - Bookmark is now preserved properly after deleting the content from a document containing bookmark.
702
- - `#I331762` - Table with merged cell is now displayed properly.
703
- - `#I330485` - Ole picture is now preserved properly as normal picture.
704
- - `#I330776` - Resolved the casing issue in the suggestions generated by spell checker.
705
- - `#I330982` - Resolved the text encoding problem when pasting with Java server-side library.
706
- - `#I325741` - Footnote is now displayed properly when opening a document.
707
- - `#I331634` - Table with preferred width type percent and allow auto fit property false is now displayed properly.
708
- - `#I331274` - Table positioning property is now preserved properly.
709
- - `#I331667` - Document with building block gallery content control is now exported properly.
710
- - `#I331452` - Footnote inside the table is now displayed properly.
711
- - `#I331606` - Document with block content control is now exported properly.
712
- - `#I331667`, `#I332223` - Shape in footer is now preserved properly.
713
- - `#I330686`, `#I331349`, `#I310463` - Shape fill is now preserved properly.
714
- - `#I332333` - Zoom value is now updated properly in status bar.
715
- - `#I319210` - The changes and comment tab in the review pane will be visible only if at least one tracked change or comment is present in the document.
716
- - `#I337569` - Table in a document with compatibility mode is now displayed properly after editing.
717
- - `#I331349` - Resolved the text clipping issue.
718
- - `#I336632` - Resolved the next style hierarchy issue.
719
- - `#I335857` - Resolved the after spacing preservation issue during copy and paste.
720
- - `#I335107` - Table with position property is now displayed properly when it overlap on another table.
721
- - `#I334036` - Resolved the spell check word by word service triggering issue in optimized spell check mode.
722
- - `#I330165`, `#I327647`, `#I324515`, `#I338278` - Resolved the issues in comment edit, delete, and history operation.
723
- - `#I336315` - Tab character inside absolute positioned table is now displayed properly.
724
- - `#I319206` - Resolved the issue with displaying the horizontal line shape.
725
- - `#F167416` - Line spacing is now preserved properly in server-side export.
726
- - `#I335145`, `#I337499` - Resolved the text size measurement issue when HTML and body tag contains styles.
727
- - `#I339105` - Resolved the number formatting color change issue.
728
- - `#I340265` - Default value for text form field is now preserved properly in Word export.
729
- - `#I336632` - Style names are now properly listed in the drop down of text properties pane.
730
- - `#I338027` - Track changes close icon is now positioned properly in RTL mode.
731
- - `#I337566` - Last empty paragraph (cell mark) inside a table cell after a nested table is now invisible.
732
- - `#I340416` - Resolved the script error with custom toolbar items during destroy.
733
- - `#I337274` - Resolved the border issue for merged cell.
734
- - `#I336588` - Resolved the RTL text issue when copy and paste with text only option.
735
- - `#I338123` - Line spacing is now applied properly for the result text of text form field.
736
- - `#I337118` - Shape inside a table is now displayed properly.
737
- - `#I337397` - Resolved the script error when opening a document with nested table.
738
- - `#I337786` - Empty footer is now ignored properly from bottom margin calculation.
739
- - `#I337968` - Resolved the automatic color issue for the text inside table.
740
- - `#I339240` - Resolved the RTL text issue when deleting the text.
741
- - `#I339488` - Resolved the script error while opening a document with footnote.
742
- - `#I339715` - Footnote is now displayed properly on next page after editing.
743
- - `#I339454` - Resolved alignment issue for a table that is wrapped over a positioned object.
744
- - `#I341016` - Resolved the script error while exporting a document with empty list.
745
- - `#I334046` - Optimized the spell check by page service call in optimized spell check mode.
746
-
747
- #### New Features
748
-
749
- - `#I256210`, `#F150773`, `#I295055`, `#I295551`, `#I324037`, `#I326715` - Added support for Widow/Orphan control, Keep with next and Keep lines together properties.
750
- - `#I298019`, `#I307321`, `#F160804`, `#F164217`, `#F164872` – Improved the accuracy of text size measurements such as to match Microsoft Word pagination for most Word documents.
751
- - `#I243246`, `#I249594`, `#I287633`, `#I295055`, `#I295549`, `#I299657`, `#I308408`, `#I326567` – Added support to preserve tables with position properties.
752
- - Added option to directly convert DocIO's WordDocument to SFDT and vice-versa in .NET and Java server-side library.
753
- - Added Word-to-SFDT conversion in Java server-side library.
754
- - Added new spell checker library for Java.
755
-
756
- ## 19.2.62 (2021-09-14)
757
-
758
- ### Document Editor
759
-
760
- #### Bug Fixes
761
-
762
- - `#I337118` - Resolved the table rendering issue.
763
- - `#I338123` - Form field elements are now aligned properly.
764
-
765
- ## 19.2.60 (2021-09-07)
766
-
767
- ### Document Editor
768
-
769
- #### Bug Fixes
770
-
771
- - `#I340416` - Resolved the toolbar reinitialization issue.
772
- - `#I337274` - Resolved the merged cell border rendering issue.
773
- - `#I335107` - Text is not layouted properly when used with floating table.
774
- - `#I336588` - Resolved the RTL text Copy/paste text only mode.
775
-
776
- ## 19.2.59 (2021-08-31)
777
-
778
- ### Document Editor
779
-
780
- #### Bug Fixes
781
-
782
- - `#I339105` - Resolved the number formatting color change issue.
783
- - `#I340265` - Text form field default value is preserved in word export.
784
- - `#I336632` - Style names are now properly listed in the drop down.
785
- - `#I338027` - Track changes close icon is now positioned properly in RTL mode.
786
- - `#I337566` - Resolved the table empty paragraph rendering issue.
787
-
788
- ## 19.2.57 (2021-08-24)
789
-
790
- ### Document Editor
791
-
792
- #### Bug Fixes
793
-
794
- - `#I335857` - Resolved the after spacing preservation issue in copy paste.
795
- - `#I335107` - Resolved the table rendering issue.
796
- - `#I336632` - Resolved the next style hierarchy issue.
797
- - `#I334046` - Optimized the spell check by page service call in optimized spell check mode.
798
- - `#I330165`, `#I327647`, `#I324515`, `#I338278` - Resolved the issues in comment delete and history operation.
799
- - `#I336315` - Resolved the tab issue for the text with floating table.
800
- - `#I319206` - Resolved issue with horizontal line shape rendering.
801
- - `#F167416` - Line spacing is now preserved properly in server side export.
802
- - `#I337720` - Resolved the localization in Document Editor.
803
- - `#I335145`, `#I337499` - Resolved the text measuring issue when HTML and Body tag contains styles.
804
-
805
- ## 19.2.56 (2021-08-17)
806
-
807
- ### Document Editor
808
-
809
- #### Bug Fixes
810
-
811
- - `#I337569` - Resolved the table relayout issue for the document with compatibility mode.
812
- - `#I331349` - Resolved the text content clipping issue.
813
- - `#I334046` - Optimized the service triggering in spell check by page mode.
814
-
815
- ## 19.2.55 (2021-08-11)
816
-
817
- ### Document Editor
818
-
819
- #### New Features
820
-
821
- - `#I256210`,`#F150773`,`#I295055`,`#I295551`,`#I324037`,`#I326715` - Added support for keep with next and keep lines together.
822
-
823
- #### Bug Fixes
824
-
825
- - `#I334754`, `#F167429` - Resolved the localization issue.
826
- - `#I333264` - Resolved the before spacing issue for the paragraph starting in new page.
827
- - `#I333226` - Resolved the underline issue.
828
- - `#I332508` - Resolved the tracking of multiline tracking and empty paragraph revision.
829
- - `#I335858`, `#F148494` - Resolved the script error in component destroy.
830
- - `#F166420` - Resolved the SFDT exporting issue with shape.
831
- - `#I332253` - Resolved the cut paste hyperlink with track changes enabled.
832
- - `#I335409` - Resolved user list updating issue in restrict editing pane.
833
- - `#I328976` - Table and document content is not layouted properly.
834
- - `#I331333` - Resolved the page unresponsive issue in splitting the nested tables.
835
- - `#I331763` - Resolve the shifting issue in the table with table positioning property on relayouting
836
- - `#I330233` - Resolved the extra page adding issue when using update field.
837
- - `#I329790`, `#I331351` - Table is now layouted based on compatibility mode.
838
- - `#I332483` - Resolved the issue on bookmark shifting while removing document content.
839
- - `#I331762` - Table with merged cell is now layouted properly.
840
- - `#I330485` - Ole picture is now preserved as normal picture.
841
- - `#I330776` - Resolved the casing issue in the generated suggestions.
842
- - `#I330982` - Resolved the unexpected characters when pasting using Java server-side library.
843
- - `#I325741` - Resolved the footnote layouting issue when opening a document.
844
- - `#I331634` - Resolved the issue on updating the table cell width.
845
- - `#I331274` - Table positioning property is now preserved properly.
846
- - `#I331667` - Document with BuildingBlockGallery content control type is now exported properly.
847
- - `#I331452` - Resolved the layout issue on footnote inside the table.
848
- - `#I331606` - Document with content control block saving issue is now exported properly.
849
- - `#I331667`, `#I332223` - Shape in footer is now preserved properly.
850
- - `#I330686`, `#I331349`, `#I310463` - Shape fill is now preserved properly.
851
- - `#I332333` - Zoom value is now updated properly in status bar.
852
- - `#I330165`, `#I327647`, `#I324515` - Resolved the worst case scenario issues in comment editing and deleting.
853
- - `#I319210` - The changes and comment tab in the review pane will be visible only if at least one tracked change or comment is present respectively in the document.
854
-
855
- ## 19.2.49 (2021-07-27)
856
-
857
- ### Document Editor
858
-
859
- #### Bug Fixes
860
-
861
- - `#I333226` - Resolved the underline issue.
862
- - `#I330233` - Resolved the shape shifting issue in editing.
863
- - `#I332508` - Resolved the tracking of multiline tracking and empty paragraph revision.
864
- - `#I335858`, `#F148494` - Resolved the script error in component destroy.
865
- - `#F166420` - Resolved the SFDT exporting issue with shape.
866
- - `#I332253` - Resolved the cut paste hyperlink with track changes enabled.
867
-
868
- ## 19.2.48 (2021-07-20)
869
-
870
- ### Document Editor
871
-
872
- #### Bug Fixes
873
-
874
- - `#I329790`, `#I331351` - Resolved export issue for the Table with compatibility mode.
875
- - `#I335409` - Resolved user list updating issue in restrict editing pane.
876
- - `#I328976` - Table and document content is not layouted properly.
877
- - `#I331333` - Resolved the page unresponsive issue in splitting the nested tables.
878
-
879
- ## 19.2.47 (2021-07-13)
880
-
881
- ### Document Editor
882
-
883
- #### Bug Fixes
884
-
885
- - `#I331763` - Resolve the shifting issue in the table with table positioning property on relayouting
886
- - `#I330233` - Resolved the extra page adding issue when using update field.
887
- - `#I329790`, `#I331351` - Table is now layouted based on compatibility mode.
888
- - `#I332483` - Resolved the issue on bookmark shifting while removing document content.
889
- - `#I331762` - Table with merged cell is now layouted properly.
890
- - `#I330485` - Ole picture is now preserved as normal picture.
891
- - `#I330776` - Resolved the casing issue in the generated suggestions.
892
- - `#I330982` - Resolved the unexpected characters when pasting using Java server-side library.
893
-
894
- #### New Features
895
-
896
- - `#326715` - Added support to preserve "Keep With Next" and "Keep Lines Together" paragraph formatting in the document.
897
-
898
- ## 19.2.46 (2021-07-06)
899
-
900
- ### Document Editor
901
-
902
- #### Bug Fixes
903
-
904
- - `#I325741` - Resolved the footnote layouting issue when opening a document.
905
- - `#I331634` - Resolved the issue on updating the table cell width.
906
- - `#I331274` - Table positioning property is now preserved properly.
907
- - `#I331667` - Document with BuildingBlockGallery content control type is now exported properly.
908
- - `#I331452` - Resolved the layout issue on footnote inside the table.
909
- - `#I331606` - Document with content control block saving issue is now exported properly.
910
- - `#I331667`, `#I332223` - Shape in footer is now preserved properly.
911
- - `#I330686`, `#I331349`, `#I310463` - Shape fill is now preserved properly.
912
- - `#I332333` - Zoom value is now updated properly in status bar.
913
- - `#I330165`, `#I327647`, `#I324515` - Resolved the worst case scenario issues in comment editing and deleting.
914
- - `#I319210` - The changes and comment tab in the review pane will be visible only if at least one tracked change or comment is present respectively in the document.
915
-
916
- ## 19.2.44 (2021-06-30)
917
-
918
- ### Document Editor
919
-
920
- #### New Features
921
-
922
- - `#I278021`, `#I301809` - Added table paste options.
923
- - `#I165071`, `#I226674`, `#I229069`, `#I231373`, `#I241445`, `#I251719`, `#I251720`, `#I267474`, `#I284190`, `#I287633`, `#I291766`, `#I295055`, `#I295549`, `#I298036`, `#I297705`, `#I301313`, `#I291964`, `#I306274`, `#I305349`, `#I308409`, `#I310463`, `#I311260`, `#I312302`, `#I313526`, `#I314192`, `#I317340`, `#I319563` - Added support to preserve image position with square, in-front of text, behind text, top and bottom wrapping styles.
924
- - `#I137901`,`#I158324`,`#I208312`,`#I219539`,`#I226018`,`#I226019`,`#I227643`,`#I238552`,`#I243495`,`#I246168`,`#I247514`,`#I248720`,`#I252754`,`#I253251`,`#I280213`,`#I280379`,`#I285871`,`#I290372`,`#I297705`,`#I298334`,`#I306415`,`#I306466`,`#I308411`,`#I310537`,`#I312846`,`#I314262`,`#I317497`,`#I319206`,`#I320434`,`#I324903`,`#I333100` - Textbox shape with square, in-front of text, behind text, top and bottom wrapping styles.
925
- - `#I307321` - Added support to preserve table positioning properties.
926
- - `#I298019` - Added support for exporting the document pages as image.
927
- - `#I324911` - Provided support for inserting non-breaking space character on Ctrl + Shift + Space key combination.
928
- - `#I326184` - Added option to specify the device pixel ratio for the image generated while printing the document.
929
-
930
- #### Bug Fixes
931
-
932
- - `#I318381` - Resolved the script error while adding comments across two pages.
933
- - `#I318283` - Handled the "Different First Page" in Headers and Footers after section breaks.
934
- - `#I319182` - Selection issue after editing header is resolved.
935
- - `#I315240` - The script error while parsing shape is resolved.
936
- - `#I319182` - Resolved the script error while editing the header/footer.
937
- - `#F163188` - Highlight color is now working properly.
938
- - `#I320821` - Resolved the script error while opening document with table.
939
- - `#I319403`, `#I317463` - Resolved file corruption issue while exporting the document with shapes.
940
- - `#I319185` - Resolved left border rendering issue in merged cells.
941
- - `#I313943` - Tab character is now displayed properly.
942
- - `#I318786` - The document with footnote is now opened properly.
943
- - `#I318786` - Table column width is now updated properly.
944
- - `#I319991` - Inline form filling is now working properly in Internet Explorer.
945
- - `#I319782` - Resolved script error while deleting the content.
946
- - `#I320821`, `#I320991` - Table is now displayed with proper line width.
947
- - `#I319987` - Table with merged cells is now displayed properly.
948
- - `#I320513` - Header content is now displayed properly.
949
- - `#I321397` - Table with merged cells is now preserved properly in the exported document.
950
- - `#I317683` - Exported document with footnote is no longer corrupted.
951
- - `#I313465` - Image inserted using API is now displayed properly.
952
- - `#I308899` - Track changes is now listed properly in revision pane.
953
- - `#I320270` - Table changes are now tracked during paste operation.
954
- - `#I313821` - Table with preferred width type as auto is now displayed properly.
955
- - `#F162726` - Line spacing is now updated properly.
956
- - `#I319819` - Undo/Redo for multilevel list is now working properly.
957
- - `#I318381` - Comment is now added properly.
958
- - `#I317743` - Script error on accept track changes is now resolved.
959
- - `#I307321` - Checkbox with tab width is rendered properly.
960
- - `#FB23691` - Resolved changes pane visibility issue in read only mode.
961
- - `#I319397` - Spell checker now works properly for words ending with ‘ies’.
962
- - `#F164367` - Resolved the script error in npm run sass.
963
- - `#I319824` - Resolved the extra page rendering issue.
964
- - `#I319824` - Border displayed properly in the exported word document.
965
- - `#I319421`, `#F163236` - Resolved the copy/paste issue for content copied from Document editor.
966
- - `#I307321` - Line shape is now preserved properly in the exported document.
967
- - `#I307321` - Exported document is now displayed properly.
968
- - `#I321190` - Resolved the icon issue in material-dark, bootstrap-dark, fabric-dark themes.
969
- - `#I319808` - Document with tab is now displayed properly.
970
- - `#I317303` - Spacing after the numbered list is preserved properly.
971
- - `#I324052` - Added the footnote and endnote locale strings.
972
- - `#I307321` - Table border is now preserved properly in exported word document.
973
- - `#I307321` - List with hanging indent is displayed properly.
974
- - `#I321108` - Script error on tracking the changes is now resolved.
975
- - `#I321923` - Script error on pasting image URL in track change mode is now resolved.
976
- - `#I317358` - Image copy/paste issue in ASP.NET MVC framework is now resolved.
977
- - `#I318843` - Resolved the list formatting issue in copy pasted content.
978
- - `#I319868` - Exported document with image in header is now opened properly in Libre Office.
979
- - `#I324025` - Resolved the font dialog option value in localized mode.
980
- - `#I324223`, `#I324023` - Resolved the underline issue while exporting word document.
981
- - `#I322402` - Before pane switch event triggering twice issue is resolved.
982
- - `#F163664` - Document editor now opens large size text file properly.
983
- - `#I322548` - Resolved the issue with track changes.
984
- - `#I322561` - Bookmark delete and undo/redo operation is now working properly.
985
- - `#I324028` - Resolved the issue with applying properties in font dialog.
986
- - `#I323597` - Textbox in RTF documents are now displayed properly.
987
- - `#I323603` - Resolved the footnote issue when switching to web layout.
988
- - `#I321745` - Comment is now selected properly.
989
- - `#I322561` - Resolved the script error with bookmark undo/redo operation.
990
- - `#I323670` - Resolved the font size and font family issue during copy paste.
991
- - `#I325291` - Document with alternate chunks is now displayed properly.
992
- - `#I323401`, `#I323423` - Resolved the page wise footnote content display issue.
993
- - `#I326150` - Resolved issue in updating cross reference field.
994
- - `#F160804` - Styles are now considered properly while deleting the content.
995
- - `#I312306` - Hyperlink content is now retrieved properly.
996
- - `#I325681` - Resolved the Textbox border displaying issue.
997
- - `#I323059` - Resolved the script error when ignore action in spelling dialog.
998
- - `#I323423` - Resolved the issue when moving footnote to next page.
999
- - `#I324169` - Resolved opacity issue in toolbar item.
1000
- - `#I322560`, `#I323516` - Script error in the top and bottom layout is resolved.
1001
- - `#I323824` - Resolved the document corruption issue when opening the document in MS Office 2007.
1002
- - `#I325554` - Resolved the script error when multiple documents pasted as SFDT.
1003
- - `#I327626` - Footnote is now displayed properly.
1004
- - `#I326000` - Document content is now displayed properly.
1005
- - `#I327097` - Resolved the script error related to square wrapping style.
1006
- - `#I327458` - Text overlapping issue is resolved.
1007
- - `#I327647` - Issue with removing comment is resolved.
1008
- - `#I322560` - Resolved the issue with duplication of page content.
1009
- - `#I322560` - Font size is now parsed properly.
1010
- - `#I323423` - Footnote is now displayed properly.
1011
- - `#I325920` - Selection behaviour is now working properly when mouse pointer goes outside the control.
1012
- - `#I323608` - Textbox with fill color is now displayed properly.
1013
- - `#I326144` - Resolved the issue with multi-line track changes.
1014
- - `#I328063` - Document with checkbox form field applied is now displayed properly.
1015
- - `#I328067` - Resolved the navigation issue when form filling mode is inline.
1016
- - `#F164875`, `#F163714` - Resolved the border issue when textbox has square border.
1017
- - `#I327817` - Resolved the script error when using insert footnote in custom toolbar.
1018
- - `#I325320` - Page number is now updated properly.
1019
- - `#FB25004` - Exported document with table is opened properly in Libre Office.
1020
- - `#I325323` - Textbox shape is now displayed properly.
1021
- - `#FB24917` - Document is now exported properly after deleting comment.
1022
- - `#F163116` - Hanging indent is now retrieved properly in paragraph dialog.
1023
- - `#I327769` - Checkbox is now displayed properly.
1024
- - `#I326567` - Nested table with preferred width type percentage is now displayed properly.
1025
- - `#I328479` - Resolved script error while deleting merged cells.
1026
- - `#I329173`, `#I330233` - Resolve script error while updating cross reference field.
1027
- - `#F165501` - Resolve script error while applying border.
1028
- - `#I328310` - Shape is now rendered properly in header and footer.
1029
- - `#I325741` - Footnote content is now displayed properly.
1030
- - `#I329564` - Accept and reject changes are now disabled properly in read only mode.
1031
- - `#F164814` - Character format is now applied properly for RTL text.
1032
- - `#I328063` - Resolved script error while scrolling.
1033
- - `#I327450` - Resolved the overlapping issue in footnote section when working with text.
1034
- - `#I327606` - Font size is now updated properly for the cursor position.
1035
- - `#I329354` - Resolved the exception while exporting documents in server-side.
1036
- - `#I330375` - Updated the constants for locale constants.
1037
- - `#I330047` - Resolved the script error with refresh API.
1038
- - `#I329637` - Resoled the issue with deleting comment.
1039
- - `#I330918`, `#I331136` - Resolved the issue with updating cursor.
1040
- - `#I329954` - Resolved the overlapping issue in options pane.
1041
- - `#I327635`, `#I330160` - Resolved the text overlapping when editing the footnote.
1042
- - `#I315396`, `#I316110` - Enhanced Word to SFDT conversion in Java server-side library.
1043
- - `#I324042` - Resolved the issue with displaying document footer.
1044
- - `#I315376` - Resolved the script error related to Jest framework.
1045
- - `#I318321` - Resolved the script error with `showRestrictEditingPane` API.
1046
- - `#I307321` - Resolved the issue with document zooming.
1047
-
1048
- ## 19.1.69 (2021-06-15)
1049
-
1050
- ### Document Editor
1051
-
1052
- #### Bug Fixes
1053
-
1054
- - `#I329173`, `#I330233` - Resolve script error while updating cross reference field.
1055
- - `#F165501` - Resolve script error while applying border.
1056
- - `#I328310` - Shape is now rendered properly in header & footer.
1057
- - `#I325741` - Footnote content is now layout properly.
1058
- - `#I329564` - Disabled accept and reject changes in read only mode.
1059
- - `#F164814` - Character format is now applied properly in RTL text.
1060
- - `#I328063` - Resolved script error while scrolling.
1061
-
1062
- ## 19.1.67 (2021-06-08)
1063
-
1064
- ### Document Editor
1065
-
1066
- #### Bug Fixes
1067
-
1068
- - `#FB25004` - Exported document with table is opened properly in Libre Office.
1069
- - `#I325323` - Textbox shape is now rendered properly.
1070
- - `#FB24917` - Document is now exporting properly after deleting comment.
1071
- - `#F163116` - Hanging indent is now retrieved properly in paragraph dialog.
1072
- - `#I327769` - Checkbox is now layout properly.
1073
- - `#I326567` - Nested table with preferred width type percent now rendered properly.
1074
- - `#I328479` - Resolved script error while deleting merged cells.
1075
-
1076
- ## 19.1.66 (2021-06-01)
1077
-
1078
- ### Document Editor
1079
-
1080
- - `#I326144` - Resolved the issue with multi line track changes.
1081
- - `#I328063` - Document with checkbox form field applied with to character format is now opened properly.
1082
- - `#I328067` - Resolved the navigation issue in inline form field editing.
1083
- - `#F164875`, `#F163714` - Resolved the unsupported textbox border as square border.
1084
- - `#I327817` - Resolved the script error in using insert footnote in custom toolbar.
1085
- - `#I325320` - Page number is now updated properly.
1086
-
1087
- ## 19.1.65 (2021-05-25)
1088
-
1089
- ### Document Editor
1090
-
1091
- #### Bug Fixes
1092
-
1093
- - `#I325554` - Resolved the script error in multiple document pasted as SFDT.
1094
- - `#I327626` - Footnote is rendered now.
1095
- - `#I326000` - Resolved the document rendering issue.
1096
- - `#I327097` - Resolved the script error in square wrapping style.
1097
- - `#I327458` - Text overlapping issue is resolved.
1098
- - `#I327647` - Issue with comment removal is resolved.
1099
- - `#I322560` - Resolved the page content duplication issue.
1100
- - `#I322560` - Resolved the font size parsing issue.
1101
- - `#I323423` - Footnote is rendering issue is resolved.
1102
- - `#I325920` - Selection behaviour is handled for moving outside the control.
1103
- - `#I323608` - Textbox with fill color is rendered.
1104
-
1105
- ## 19.1.64 (2021-05-19)
1106
-
1107
- ### Document Editor
1108
-
1109
- #### Bug Fixes
1110
-
1111
- - `#I325681` - Resolved the textbox border rendering issue.
1112
- - `#I323059` - Resolved the script error when ignore action in spelling dialog.
1113
- - `#I323423` - Resolved the footnote moving issue to next page.
1114
- - `#I324169` - Resolved opacity issue in toolbar item.
1115
- - `#I322560`, `#I323516` - Script error in the top and bottom layout is resolved.
1116
- - `#I323824` - Resolved the document corruption issue in MS Office 2007.
1117
- - Resolved the document rendering issue document footer.
1118
- - Resolved the script error for Jest framework.
1119
-
1120
- ## 19.1.63 (2021-05-13)
1121
-
1122
- ### Document Editor
1123
-
1124
- #### Bug Fixes
1125
-
1126
- `#I326717` - Table border is preserved in the exported word document
1127
- `#I325968` - New line changes are now tracked properly
1128
- `#I325590` - Context menu behaviour for spell check is resolved.
1129
- `#I325697` - Spell check in tracked changes is now updated properly.
1130
- `#I324896` - List track changes are now applied properly.
1131
- `#I322387` - DocumentEditorContainer disposing issue is resolved.
1132
- `#I324622` - Resolved the chart parsing issue.
1133
- `#I324911` - Console error when opening document with footnote is resolved.
1134
- `#I324907` - Numbering list is copied with proper color.
1135
- `#I323215` - Table is now layout properly after row delete.
1136
- `#I322560` - Page content duplication issue is resolved.
1137
-
1138
- #### New Features
1139
-
1140
- - `#I324911` - Provided support for inserting non-breaking space character on Ctrl + Shift + Space key combination.
1141
- - `#I326184` - Added option to specify the device pixel ratio for the image generated while printing the document.
1142
-
1143
- ## 19.1.59 (2021-05-04)
1144
-
1145
- ### Document Editor
1146
-
1147
- #### New Features
1148
-
1149
- - `#I307321` - Added support table positioning properties.
1150
-
1151
- #### Bug Fixes
1152
-
1153
- - `#I324028` - Resolved the font dialog properties applied in font dialog.
1154
- - `#I323597` - Resolved the text box rendering in RTF documents.
1155
- - `#I323603` - Resolved the footnote issue when switching to web layout.
1156
- - `#I321745` - Resolved the comment selection issue.
1157
- - `#I322561` - Resolved the bookmark undo and redo script error.
1158
- - `#I323670` - Resolved the font size and font family issue in copy paste.
1159
- - `#I325291` - Document with alternate chunks is now loaded properly.
1160
- - `#I323401`, `#I323423` - Resolved the page wise footnote content layout issue.
1161
- - `#I326150` - Resolved issue in updating cross reference field.
1162
- - `#F160804` - Styles not considered properly while deleting the content.
1163
- - `#I324169` - Resolved opacity issue in toolbar item.
1164
- - `#I312306` - Hyperlink context is now retrieved properly.
1165
- - Resolved the `showRestrictEditingPane` API script error.
1166
- - Resolved the document zooming issue.
1167
-
1168
- ## 19.1.58 (2021-04-27)
1169
-
1170
- ### Document Editor
1171
-
1172
- #### Bug Fixes
1173
-
1174
- - `#I324223`, `#I324023` - Resolved the underline issue in word document export.
1175
- - `#I322560`, `#I323516` - Script error in the top and bottom layout is resolved.
1176
- - `#I322402` - Before pane switch event triggering twice issue is resolved.
1177
- - `#F163664` - Unresponsive issue in opening large size text file is resolved.
1178
- - `#I323401`, `#I323423` - Resolved the page wise footnote content layout issue.
1179
- - `#I322548` - Resolved the track changes issue in track changes.
1180
- - `#I322561` - Bookmark delete and history operation is working fine.
1181
-
1182
- #### New Features
1183
-
1184
- - `#I307321` - Added support table positioning properties.
1185
-
1186
- ## 19.1.57 (2021-04-20)
1187
-
1188
- ### Document Editor
1189
-
1190
- #### Bug Fixes
1191
-
1192
- - `#I319397` - Resolved the spell check for certain words ending with `ies`.
1193
- - `#F164367` - Resolved the script error in `npm run sass`.
1194
- - `#I319824` - Resolved the extra page rendering issue.
1195
- - `#I319824` - Resolved the border rendering issue in the exported word document.
1196
- - `#I319421`, `#F163236` - Resolved the copy/paste issue for content copied from Document Editor.
1197
- - `#I307321` - Document exporting issue with line shape is resolved.
1198
- - `#I307321` - Exported document rendering issue in resolved.
1199
- - `#I321190` - Resolved the icon issue in material-dark, bootstrap-dark, fabric-dark themes.
1200
- - `#I319808` - Document with tab is now rendered properly.
1201
- - `#I317303` - Spacing after the numbered list is preserved.
1202
- - `#I324052` - Added the footnote and endnote locale strings.
1203
- - `#I307321` - Table border issue in exported word document is resolved.
1204
- - `#I307321` - List with hanging indent is rendered properly.
1205
- - `#I313465` - Resolved the image rendering issue in insert image API.
1206
- - `#I321108` - Script error in tracking the changes is resolved.
1207
- - `#I321923` - Script error in pasting image URL in track change mode is resolved.
1208
- - `#I317358` - Image copy/paste issue in ASP.NET MVC framework is resolved.
1209
- - `#I318843` - Resolved the list formatting issue in copy pasted content.
1210
- - `#I319868` - Exported document with image in header is opened properly in Libre Office.
1211
- - `#I324025` - Resolved the font dialog option value in localized mode.
1212
-
1213
- ## 19.1.56 (2021-04-13)
1214
-
1215
- ### Document Editor
1216
-
1217
- #### Bug Fixes
1218
-
1219
- - `#I319991` - Inline form filling is now working properly in Internet Explorer.
1220
- - `#319782` - Resolved script error while deleting the content.
1221
- - `#I320821`, `#I320991` - Table is now drawn with proper line width.
1222
- - `#I319987` - Table with merged cells now layout properly.
1223
- - `#I320513` - Header content is not rendered properly.
1224
- - `#I321397` - Table with merged cells is now exported properly.
1225
- - `#I317683` - Exported document with footnote is no longer corrupted.
1226
- - `#I313465` - Insert image renders the image properly.
1227
- - `#I308899` - Track changes is now listed properly in revision pane.
1228
- - `#I320270` - Table track changes is now tracked in paste.
1229
- - `#I319403`, `#I317463` - Resolved file corruption issue while exporting the document with shapes.
1230
- - `#I319185` - Resolved left border rendering issue in merged cells.
1231
- - `#I313943` - Tab character is now layout properly.
1232
- - `#I313821` - Fixed layouting issue in table with preferred width type as auto.
1233
- - `#F162726` - Line spacing is now updated properly.
1234
- - `#I319819` - Issue with Undo/Redo in multilevel list is resolved.
1235
- - `#I318381` - Comment is not added properly.
1236
- - `#I317743` - Accept track changes script error is resolved.
1237
- - `#I307321` - Checkbox with tab width rendered properly.
1238
- - `#FB23691` - Updated the track changes behaviour in read only mode.
1239
-
1240
- ## 19.1.55 (2021-04-06)
1241
-
1242
- ### Document Editor
1243
-
1244
- #### Bug Fixes
1245
-
1246
- - `#I318381` - Resolved the script error in adding comments across two pages.
1247
- - `#I318283` - Handled the "Different First Page" in Headers and Footers after section breaks.
1248
- - `#I319182` - Selection issue after editing header is resolved.
1249
- - `#I315240` - Shape parsing script error is resolved.
1250
- - `#I319182` - Resolved the script error while editing the header/footer.
1251
- - `#F163188` - Highlight color is now working properly.
1252
- - `#I320821` - Resolved the script error in opening document with table.
1253
- - `#319403`, `#317463` - Resolved file corruption issue while exporting the document with shapes.
1254
- - `#319185` - Resolved left border rendering issue in merged cells.
1255
- - `#313943` - Tab character is now layout properly.
1256
- - `#313821` - Fixed layouting issue in table with preferred width type as auto.
1257
- - `#318786` - Resolved the document with footnote opening issue.
1258
- Table column width is now updated properly.
1259
-
1260
- ## 19.1.54 (2021-03-30)
1261
-
1262
- ### Document Editor
1263
-
1264
- #### Breaking Changes
1265
-
1266
- - The `DictionaryData(int langID,string dictPath,string affPath,string customPath)` is marked as obsolete. Please use the alternate new constructor `DictionaryData(int langID, string dictPath, string affPath)` in `Syncfusion.EJ2.SpellChecker` spell checker.
1267
- - The `SpellChecker(List<SpellCheckDictionary> dictItem)` is marked as obsolete. Please use the alternate new constructor `SpellChecker(List<DictionaryData> dictItem, string customDicPath)` in `Syncfusion.EJ2.SpellChecker` spell checker.
1268
-
1269
- #### Bug Fixes
1270
-
1271
- - `#315096` - Selection behaviour is updated properly, while pasting a URL and clicking enter after the URL.
1272
- - `#315413`, `#317463` - Table cell is now rendered properly.
1273
- - `#314467` - Find and replace is now working properly.
1274
- - `#315441` - While inserting same bookmark multiple times and deleting, bookmarks were preserved properly now.
1275
- - `#316532` - ParagraphFormat is now preserved while pasting with text only option.
1276
- - `#314193` - Document with charts were now preserved properly on exporting.
1277
- - `#161908`, `#318321` - Added API to show/hide restrict editing pane.
1278
- - `#315435` - Table cell width now preserved properly on editing.
1279
- - `#162638` - Table background color was now updated properly on updating borders and shading.
1280
-
1281
- ## 18.4.49 (2021-03-23)
1282
-
1283
- ### Document Editor
1284
-
1285
- #### Bug Fixes
1286
-
1287
- - `#317061` - The merged cell table border rendering issue is resolved.
1288
- - `#318283` - Resolved script error while editing the last section header.
1289
- - `#310874` - The table with the merged cell is exporting properly.
1290
- - `#162017` - Restart page numbering is now preserved properly on exporting.
1291
- - `#316810` - Spell check script error is now resolved for layout type change.
1292
- - `#163236` - Strike through and underline content are now copy-pasted properly.
1293
-
1294
- ## 18.4.48 (2021-03-16)
1295
-
1296
- ### Document Editor
1297
-
1298
- #### Bug Fixes
1299
-
1300
- - `#163116`, `#317496`, `#315005` - Implemented the line spacing Hanging similar to MS word.
1301
- - `#317691` - Resolve the Number formatting after applying bullet formats.
1302
- - `#317524` - Replace all with empty string is now working.
1303
- - `#317605` - Shape with line format value null was now preserved properly.
1304
- - `#317150` - Can press 'p' key in Firefox after control + a and then backspace.
1305
- - Resolve hanging issue while opening document.
1306
- - `#315656` - Resolve script error when importing document.
1307
-
1308
- ## 18.4.47 (2021-03-09)
1309
-
1310
- ### Document Editor
1311
-
1312
- #### Breaking Changes
1313
-
1314
- - The `DictionaryData(int langID,string dictPath,string affPath,string customPath)` is marked as obsolete. Please use the alternate new constructor `DictionaryData(int langID, string dictPath, string affPath)` in `Syncfusion.EJ2.SpellChecker` spell checker.
1315
- - The `SpellChecker(List<SpellCheckDictionary> dictItem)` is marked as obsolete. Please use the alternate new constructor `SpellChecker(List<DictionaryData> dictItem, string customDicPath)` in `Syncfusion.EJ2.SpellChecker` spell checker.
1316
-
1317
- #### Bug Fixes
1318
-
1319
- - `#315096` - Selection behaviour is updated properly, while pasting a URL and clicking enter after the URL.
1320
- - `#315413`, `#317463` - Table cell is now rendered properly.
1321
- - `#314467` - Find and replace is now working properly.
1322
- - `#315441` - While inserting same bookmark multiple times and deleting, bookmarks were preserved properly now.
1323
- - `#316532` - ParagraphFormat is now preserved while pasting with text only option.
1324
- - `#314193` - Document with charts were now preserved properly on exporting.
1325
- - `#161908`, `#318321` - Added API to show/hide restrict editing pane.
1326
- - `#315435` - Table cell width now preserved properly on editing.
1327
- - `#162638` - Table background color was now updated properly on updating borders and shading.
1328
-
1329
- ## 18.4.46 (2021-03-02)
1330
-
1331
- ### Document Editor
1332
-
1333
- #### Bug Fixes
1334
-
1335
- - `#311796`, `#316639`, `#308845`, `#316676`, `#162561` - All the pages in the document were now loaded properly.
1336
- - `#309052`, `#315953` - Footnote now layouts properly.
1337
- - `#307997` - Resolved issue on updating the bullet list.
1338
- - `#314313`, `#316278` - When copy pasting the merge field, merge field was now preserved properly.
1339
- - `#315435` - Table cells layouts properly now.
1340
- - `#315413`, `#317463` - Table cells renders to preferred width now.
1341
-
1342
- ## 18.4.44 (2021-02-23)
1343
-
1344
- ### Document Editor
1345
-
1346
- #### Bug Fixes
1347
-
1348
- - `#313564`, `#314479` - Bookmark co ordinates were now updated properly.
1349
- - `#162017` - Restart page number behaviour was implemented also for page break now.
1350
- - `#310874` - Table with merged cells were exported properly now.
1351
- - `#162017` - Page number was now updated properly based on page index.
1352
- - `#313821` - Table column were now layout properly.
1353
- - `#311371` - While deleting the bookmark extra spaces between the text were now removed properly.
1354
- - `#312082` - Resolved script error on updating TOC.
1355
- - `#312306` - Hyperlink label was not added while editing the link address now.
1356
-
1357
- ## 18.4.43 (2021-02-16)
1358
-
1359
- ### Document Editor
1360
-
1361
- #### Bug Fixes
1362
-
1363
- - `#160804`, `#160805` - Line space was now considered properly on exporting.
1364
- - `#161513` - Properties pane was now disabled while enabling restrict editing.
1365
- - `#311371` - While deleting a text extra spaces between the text were now removed properly.
1366
- - `#311884` - Document with table was imported properly now.
1367
- - `#310754` - Hebrew text was now layout properly with spaces and numbers renders properly.
1368
- - Resolved performance lagging issue while editing.
1369
-
1370
- ## 18.4.42 (2021-02-09)
1371
-
1372
- ### Document Editor
1373
-
1374
- #### Bug Fixes
1375
-
1376
- - `#311518` - Vertical scrollbar was now updated properly on container resize.
1377
- - `#161047` - Document with tab stop was now exported properly.
1378
- - `#310258` - All the contents were preserved on pasting now.
1379
- - `#307321`, `#309396` - Line shape was now rendered properly.
1380
- - `#307321`, `#313943` - Tab stops were now rendered properly.
1381
- - `#311296` - Odd headers were added to all odd pages now.
1382
- - `#307321`, `#313948` - Straight connectors were now rendered properly.
1383
- - `#309565` - When enable track changes is false changes tab is hide in review pane now.
1384
-
1385
- ## 18.4.41 (2021-02-02)
1386
-
1387
- ### Document Editor
1388
-
1389
- #### Bug Fixes
1390
-
1391
- - `#264813` - List tab element now layouts properly.
1392
- - `#309425` - Paragraph formats were considered while creating a new table.
1393
- - `#309976` - List was not updated properly from level 1 to level 2.
1394
- - `#306480` - Review pane was now updated properly on resizing.
1395
- - `#309052` - Document with footnote now rendered properly without overlap.
1396
- - `#309565` - When enable comment is false comment tab is hide in review pane now.
1397
- - `#307321` - Table with no cell border now rendered properly.
1398
- - `#307860` - While pasting no extra paragraph was added now.
1399
- - `#311336` - Text was now updated properly on undo without overlap.
1400
-
1401
- ## 18.4.35 (2021-01-19)
1402
-
1403
- ### Document Editor
1404
-
1405
- #### Bug Fixes
1406
-
1407
- - `#160177` - The document with tables were now rendered properly without page unresponsive error.
1408
- - `#305777` - Selection was now updated properly on zooming for web layout.
1409
- - `#297705` - Handled behaviour similar to MS Word if page and section break in same paragraph.
1410
- - `#305110` - The document with large tables were now rendered properly without page unresponsive error.
1411
- - `#307321` - Table borders now renders properly if the border color is none.
1412
- - `#303643` - Edit hyperlink now works properly on image with hyperlink.
1413
-
1414
- ## 18.4.34 (2021-01-12)
1415
-
1416
- ### Document Editor
1417
-
1418
- #### Bug Fixes
1419
-
1420
- - `#306130` - The document content now renders properly while pasting the contents after inserting header with maximum header distance.
1421
- - `#307321` - Top borders of table with merged cell were rendered properly now.
1422
- - `#307746`, `#307748` - Auto fit tables were rendered properly now.
1423
- - `#309747` - Resolved spelling issue on default font family collection.
1424
- - `#295084`, `#291801` - Charts were now rendered properly on pasting.
1425
- - `#307318`, `#307327` - Creation of new comment was now restricted until existing comment was posted or discarded.
1426
- - `#307321` - Tab stop was rendered properly now.
1427
- - `#299850` - Auto fit table with preferred width and cell width was now rendered properly.
1428
- - `#308899` - Track changes revision was now preserved properly for justified paragraph.
1429
-
1430
- ## 18.4.33 (2021-01-05)
1431
-
1432
- ### Document Editor
1433
-
1434
- #### Bug Fixes
1435
-
1436
- - `#297703`, `#160488` - Cursor was now updated properly for RTL languages.
1437
- - `#307715` - Table with merged cells were now exported properly.
1438
-
1439
- ## 18.4.32 (2020-12-29)
1440
-
1441
- ### Document Editor
1442
-
1443
- #### Bug Fixes
1444
-
1445
- - `#306939` - Table with merged cells were now exported properly.
1446
- - `#302508` - List format was now preserved properly after pasting some content in list line.
1447
- - `#299511` - On discarding the comment, comment tag was removed properly on file level now.
1448
-
1449
- ## 18.4.31 (2020-12-22)
1450
-
1451
- ### Document Editor
1452
-
1453
- #### Bug Fixes
1454
-
1455
- - `#305640` - Track changes is now preserved properly on exported document.
1456
- - `#305804` - Document scrolling is now working properly when document contains clipped image.
1457
- - `#305804` - In IE, Ctrl+ P is now working properly without text insertion in cursor position.
1458
- - `#299850` - Paragraph format was now applied properly inside the table.
1459
- - `#304588` - Application level formats were now preserved properly.
1460
- - `#305834`, `#302444` - Comment tab is also visible now while clicking on the track changes.
1461
- - `#301314` - Resolved the script error thrown on entering a new line and backspace sequentially.
1462
-
1463
- ## 18.4.30 (2020-12-17)
1464
-
1465
- ### Document Editor
1466
-
1467
- #### New Features
1468
-
1469
- - `227250`, `143540`, `234463`, `252453`, `267474`, `67852`, `268213`, `273871`, `285146`, `288507`, `290372`, `295055`, `295548` - Added support for Footnote and Endnote.
1470
-
1471
- ## 18.3.53 (2020-12-08)
1472
-
1473
- ### Document Editor
1474
-
1475
- #### Bug Fixes
1476
-
1477
- - `305508` - Resolved page unresponsive error while selecting field.
1478
- - `302470` - Chart series color now applied properly.
1479
- - `292515` - Resolved paste option issue on IE.
1480
-
1481
- ## 18.3.52 (2020-12-01)
1482
-
1483
- ### Document Editor
1484
-
1485
- #### Bug Fixes
1486
-
1487
- - `302151` - Vertical alignment for cell now working properly in header and footer.
1488
- - `304069` - Table cell spacing now exported properly.
1489
- - `304048`, `294075` - Auto fit table is now layout properly if table has preferred width.
1490
-
1491
- ## 18.3.51 (2020-11-24)
1492
-
1493
- ### Document Editor
1494
-
1495
- #### Bug Fixes
1496
-
1497
- - `#291766`, `#293053` - Resolved the page unresponsive error while selecting the image.
1498
- - `#301016` - Multiple server calls on optimized spell checking was now optimized to single call per page.
1499
- - `#300330` - Document with comment can be opened without any script errors now.
1500
- - `#292912`, `#293388` - Document with empty comment is now exported properly.
1501
- - `#299940` - Table with center alignment is now rendered properly and footer contents are rendered properly now on zooming.
1502
- - `#290277` - Navigating to bookmark now works properly without script error.
1503
- - `#301035`, `#300947` - Changes were tracked properly now on pasting.
1504
-
1505
- ## 18.3.50 (2020-11-17)
1506
-
1507
- ### Document Editor
1508
-
1509
- #### Bug Fixes
1510
-
1511
- - Strike through button now toggles properly.
1512
- - `#297703` - Resolved issue on exporting a RTL document.
1513
-
1514
- ## 18.3.48 (2020-11-11)
1515
-
1516
- ### Document Editor
1517
-
1518
- #### Bug Fixes
1519
-
1520
- - `#294075` - Resolved table bottom border rendering issue when table contains merged cell.
1521
- - `#292515` - Resolved context menu position issue in IE11.
1522
-
1523
- ## 18.3.47 (2020-11-05)
1524
-
1525
- ### Document Editor
1526
-
1527
- #### New Features
1528
-
1529
- - `#281067`, `#279595` - Added partial lock and edit support.
1530
-
1531
- #### Bug Fixes
1532
-
1533
- - `#296222` - Resolved table rendering issue when table contains merged cell.
1534
- - `#297479` - Field result text with multiple lines are now inserted properly when track changes enabled.
1535
- - `#296863` - Resolved script error when field code contains table.
1536
- - `#281339` - Resolved paragraph renders outside the page in RTL format document issue.
1537
- - Resolved script error Navigating to the specified bookmark.
1538
- - `#296222` - Resolved exporting issue when exporting document with shape.
1539
- - `#294306` - Resolved page number update issue when page contains page field.
1540
- - `#295176` - Ctrl + V now works properly in Edge.
1541
- - `#296782`, `#296781` - Resolved issue on cursor visibility when cursor is in editable region.
1542
- - `#293369` - Document with merged cell is now exported properly.
1543
- - `#294261` - Accepting or rejecting changes were now preserved in restrict editing.
1544
- - `#292726` - Row header was now repeated properly for each page.
1545
- - `#281339` - Numbered list in the RTL was now rendered properly.
1546
- - `#295753` - Sections with restart page number now updated properly.
1547
- - `#293980` - Skipped form field insertion in header and footer similar to MS Word.
1548
- - `#294075`,`#293472` - Resolved table border rendering issue.
1549
- - `#291766` - Resolved file picker not opening issue in IE.
1550
- - `#296842` - Resolved issue on selecting a merge field.
1551
- - `#292515` - Polish characters are now working properly in IE.
1552
- - `#291766` - Resolved script error on loading a document with text wrapped image.
1553
- - `#292515` - Resolved toolbar rendering issue in IE.
1554
- - `#289186`,`#293172` - Text box with none style is now exported properly.
1555
- - `#291766` - Resolved issue on table rendering black.
1556
- - `#293342`,`#295176` - Ctrl + V now works properly in IE.
1557
-
1558
- ## 18.3.44 (2020-10-27)
1559
-
1560
- ### Document Editor
1561
-
1562
- #### Bug Fixes
1563
-
1564
- - `#296222` - Resolved table rendering issue when table contains merged cell.
1565
- - `#297479` - Field result text with multiple lines are now inserted properly when track changes enabled.
1566
- - `#296863` - Resolved script error when field code contains table.
1567
- - `#281339` - Resolved paragraph renders outside the page in RTL format document issue.
1568
- - Resolved script error Navigating to the specified bookmark.
1569
- - `#296222` - Resolved exporting issue when exporting document with shape.
1570
-
1571
- ## 18.3.42 (2020-10-20)
1572
-
1573
- ### Document Editor
1574
-
1575
- #### New Features
1576
-
1577
- - `#281067`, `#279595` - Added partial lock and edit support.
1578
-
1579
- #### Bug Fixes
1580
-
1581
- - `#294306` - Resolved page number update issue when page contains page field.
1582
- - `#295176` - Ctrl + V now works properly in Edge.
1583
- - `#296782`, `#296781` - Resolved issue on cursor visibility when cursor is in editable region.
1584
- - `#293369` - Document with merged cell is now exported properly.
1585
- - `#294261` - Accepting or rejecting changes were now preserved in restrict editing.
1586
- - `#292726` - Row header was now repeated properly for each page.
1587
- - `#281339` - Numbered list in the RTL was now rendered properly.
1588
- - `#295753` - Sections with restart page number now updated properly.
1589
- - `#293980` - Skipped form field insertion in header and footer similar to MS Word.
1590
-
1591
- ## 18.3.40 (2020-10-13)
1592
-
1593
- ### Document Editor
1594
-
1595
- #### Bug Fixes
1596
-
1597
- - `294075`,`293472` - Resolved table border rendering issue.
1598
- - `#291766` - Resolved file picker not opening issue in IE.
1599
- - `#296842` - Resolved issue on selecting a merge field.
1600
- - `#292515` - Polish characters are now working properly in IE.
1601
- - `#291766` - Resolved script error on loading a document with text wrapped image.
1602
- - `#292515` - Resolved toolbar rendering issue in IE.
1603
- - `289186`,`293172` - Text box with none style is now exported properly.
1604
- - `#291766` - Resolved issue on table rendering black.
1605
- - `293342`,`295176` - Ctrl + V now works properly in IE.
1606
-
1607
- ## 18.3.35 (2020-10-01)
1608
-
1609
- ### Document Editor
1610
-
1611
- #### Bug Fixes
1612
-
1613
- - `#283180` - Resolved font family no records found issue.
1614
- - `#282303` - Paste dropdown now hides when creating or opening new document.
1615
- - `#280951` - Table content renders properly now for table with merged cells.
1616
- - `#280973` - Resolved script while getting bookmarks from selection.
1617
- - `#284486` - Comment Tab in pane is removed when enable comment is false.
1618
- - `#283344` - Resolved the initial delay in pasting images.
1619
- - `#282707`,`#284035` - Resolved bullet list exporting issue in MAC devices.
1620
- - `#284412` - Comment mark is now deleted properly when comment is deleted.
1621
- - `#281339` - Resolved RTL issue when editing a list content.
1622
- - `#276616` - Paragraph maintained when inserting text in whole paragraph similar to MS Word.
1623
- - `#284775` - Resolved table resize enabled issue in protected mode.
1624
- - `#282504` - Resolved footer content overlapping issue when inserting image and table in footer.
1625
- - `#286986` - Table properties are now written properly on html exporting.
1626
- - `#286520` - Inserted text selection now applied properly after applying style.
1627
- - `#287740` - Paper size dropdown in page setup dialog now updated for document with A4 format.
1628
- - `#282515` - Resolved error on exporting a document which contains restart numbering.
1629
- - `#287633` - Table containing alignment is now exporting properly with alignment.
1630
- - `#286469` - Resolved table formatting issue when table splits to multiple pages.
1631
- - `#285747` - Resolved script error on server side export.
1632
- - `#284704` - Resolved script error on changing the footer distance.
1633
- - `#283529` - Resolved table layout issue when table is center aligned.
1634
- - `#286474` - Resolved table re layout issue when table have left indent value.
1635
- - `#289186` - Resolved issue on exporting a text box with line format none.
1636
- - `#288198` - Font family customization is also available on modify style dialog now.
1637
- - `#289187` - Resolved table border rendering issue when table have merged cells.
1638
- - `#287255` - Resolved page unresponsive error occurs on mail merge.
1639
- - `#286474`, `#288778` - Resolved script error thrown on choosing fill color.
1640
- - `#155699` - Image resize history is now called before the content change event.
1641
- - `#156086` - Resolved table layout issue on opening a saved document with merged cells.
1642
- - `#148494` - Resolved script error on destroying the container.
1643
- - `#289186` - Resolved layout issue on exporting a text box.
1644
- - `#289172` - Resolved script error when two or more server request is passed at same time.
1645
- - `#287775` - Resolved script error on saving a document with form field.
1646
- - `#289902` - Custom page height and width is now updating properly in page setup dialog.
1647
- - `#289902` - Resolved review pane enabled issue when track changes is disabled.
1648
- - `#157264` - Resolved script error when finding a text with curly braces.
1649
- - `#290625` - Tick icon in line spacing is aligned properly now.
1650
- - `#291882` - Now,Text contents were not transformed to upper case while copying.
1651
- - `#287582` - Apply shading property for form field is now maintained also on exported document.
1652
- - `#280951` - Table contents were not rendered on footer region now.
1653
- - `#287195` - Resolved script error throw while deleting large text inside a table.
1654
- - `#155699` - Resolved selection change event gets triggered before created event of document editor issue.
1655
- - `#290271` - Resolved some elements are not created with unique id in document editor component issue.
1656
- - `#288253` - Exported document with comments from editor contain initials property in file level now.
1657
- - `#287740` - Landscape Orientation not updated properly in page setup dialog now.
1658
- - `#291080`, `#157393` - Restrict editing property works when setting on component creation now.
1659
-
1660
- #### New Features
1661
-
1662
- - Added API to delete bookmark.
1663
- - `#267515`- Added API to get searched item hierarchical index.
1664
- - `#284937`- Added API show restrict editing pane.
1665
- - `#280089`, `#283427`, `#250760` - Added event to notify service failure.
1666
- - `#275184` - Added support for retrieving next and previous element context type from current selection range.
1667
- - `#243495` - Added support for automatic text color.
1668
- - `#279355` - Added support to enable properties pane in read only mode.
1669
- - `#260677`, `#277329` - Added support for cropping images in document editor.
1670
- - `#250760` - Added before file open event to restrict document loading based on file size.
1671
- - `#256210`, `#259583`, `#280989`, `#282228` - Added support for all Caps property for character.
1672
- - `#156915` - Added public API to check whether the selection is in edit region.
1673
- - `#287831` - Added public API to show spell check dialog.
1674
- - `#284434` - Spell checker performance was optimized.
1675
- - `#290372` - Added support to apply restart page number for different sections.
1676
- - `#290423` - Added resize API in document editor container.
1677
- - `#243495`, `#247427`, `#248347`, `#252755`, `#254094`, `#254684`, `#256926`, `#248347`, `#260233`, `#262638`, `#273681`, `#155458`, `#278038` - Added support to preserve content control feature.
1678
-
1679
- ## 18.2.58 (2020-09-15)
1680
-
1681
- ### Document Editor
1682
-
1683
- #### New Features
1684
-
1685
- - `#290372` - Added support to apply restart page number for different sections.
1686
- - `#290423` - Added resize API in document editor container.
1687
- - `#243495`, `#247427`, `#248347`, `#252755`, `#254094`, `#254684`, `#256926`, `#248347`, `#260233`, `#262638`, `#273681`, `#155458`, `#278038` - Added support to preserve content control feature.
1688
-
1689
- #### Bug Fixes
1690
-
1691
- - `#155699` - Resolved selection change event gets triggered before created event of document editor issue.
1692
- - `#290271` - Resolved some elements are not created with unique id in document editor component issue.
1693
- - `#288253` - Exported document with comments from editor contain initials property in file level now.
1694
- - `#287740` - Landscape Orientation not updated properly in page setup dialog now.
1695
- - `#291080`, `#157393` - Restrict editing property works when setting on component creation now.
1696
-
1697
- ## 18.2.57 (2020-09-08)
1698
-
1699
- ### Document Editor
1700
-
1701
- #### New Features
1702
-
1703
- - `#156915` - Added public API to check whether the selection is in edit region.
1704
- - `#287831` - Added public API to show spell check dialog.
1705
- - `#284434` - Spell checker performance was optimized.
1706
-
1707
- #### Bug Fixes
1708
-
1709
- - `#148494` - Resolved script error on destroying the container.
1710
- - `#289186` - Resolved layout issue on exporting a text box.
1711
- - `#289172` - Resolved script error when two or more server request is passed at same time.
1712
- - `#287775` - Resolved script error on saving a document with form field.
1713
- - `#289902` - Custom page height and width is now updating properly in page setup dialog.
1714
- - `#289902` - Resolved review pane enabled issue when track changes is disabled.
1715
- - `#157264` - Resolved script error when finding a text with curly braces.
1716
- - `#290625` - Tick icon in line spacing is aligned properly now.
1717
- - `#291882` - Now,Text contents were not transformed to upper case while copying.
1718
- - `#287582` - Apply shading property for form field is now maintained also on exported document.
1719
- - `#280951` - Table contents were not rendered on footer region now.
1720
- - `#287195` - Resolved script error throw while deleting large text inside a table.
1721
-
1722
- ## 18.2.55 (2020-08-25)
1723
-
1724
- ### Document Editor
1725
-
1726
- #### Bug Fixes
1727
-
1728
- - `#286474` - Resolved table re layout issue when table have left indent value.
1729
- - `#289186` - Resolved issue on exporting a text box with line format none.
1730
- - `#288198` - Font family customization is also available on modify style dialog now.
1731
- - `#289187` - Resolved table border rendering issue when table have merged cells.
1732
- - `#287255` - Resolved page unresponsive error occurs on mail merge.
1733
- - `#286474`, `#288778` - Resolved script error thrown on choosing fill color.
1734
- - `#155699` - Image resize history is now called before the content change event.
1735
- - `#156086` - Resolved table layout issue on opening a saved document with merged cells.
1736
-
1737
- ## 18.2.54 (2020-08-18)
1738
-
1739
- ### Document Editor
1740
-
1741
- #### New Features
1742
-
1743
- - `#275184` - Added support for retrieving next and previous element context type from current selection range.
1744
- - `#243495` - Added support for automatic text color.
1745
- - `#279355` - Added support to enable properties pane in read only mode.
1746
- - `#260677`, `#277329` - Added support for cropping images in document editor.
1747
- - `#250760` - Added before file open event to restrict document loading based on file size.
1748
- - `#256210`, `#259583`, `#280989`, `#282228` - Added support for all Caps property for character.
1749
- - Added API to delete bookmark.
1750
- - `#267515`- Added API to get searched item hierarchical index.
1751
- - `#284937`- Added API show restrict editing pane.
1752
- - `#280089`, `#283427`, `#250760` - Added event to notify service failure.
1753
-
1754
- #### Bug Fixes
1755
-
1756
- - `#286986` - Table properties are now written properly on html exporting.
1757
- - `#286520` - Inserted text selection now applied properly after applying style.
1758
- - `#287740` - Paper size dropdown in page setup dialog now updated for document with A4 format.
1759
- - `#282515` - Resolved error on exporting a document which contains restart numbering.
1760
- - `#287633` - Table containing alignment is now exporting properly with alignment.
1761
- - `#286469` - Resolved table formatting issue when table splits to multiple pages.
1762
- - `#285747` - Resolved script error on server side export.
1763
- - `#284704` - Resolved script error on changing the footer distance.
1764
- - `#283529` - Resolved table layout issue when table is center aligned.
1765
- - `#283180` - Resolved font family no records found issue.
1766
- - `#282303` - Paste dropdown now hides when creating or opening new document.
1767
- - `#280951` - Table content renders properly now for table with merged cells.
1768
- - `#280973` - Resolved script while getting bookmarks from selection.
1769
- - `#284486` - Comment Tab in pane is removed when enable comment is false.
1770
- - `#283344` - Resolved the initial delay in pasting images.
1771
- - `#282707`,`#284035` - Resolved bullet list exporting issue in MAC devices.
1772
- - `#284412` - Comment mark is now deleted properly when comment is deleted.
1773
- - `#281339` - Resolved RTL issue when editing a list content.
1774
- - `#276616` - Paragraph maintained when inserting text in whole paragraph similar to MS Word.
1775
- - `#284775` - Resolved table resize enabled issue in protected mode.
1776
- - `#282504` - Resolved footer content overlapping issue when inserting image and table in footer.
1777
-
1778
- ## 18.2.47 (2020-07-28)
1779
-
1780
- ### Document Editor
1781
-
1782
- #### New Features
1783
-
1784
- - `#280089`, `#283427`, `#250760` - Added event to notify service failure.
1785
-
1786
- #### Bug Fixes
1787
-
1788
- - `#284775` - Resolved table resize enabled issue in protected mode.
1789
- - `#282504` - Resolved footer content overlapping issue when inserting image and table in footer.
1790
-
1791
- ## 18.2.46 (2020-07-21)
1792
-
1793
- ### Document Editor
1794
-
1795
- #### New Features
1796
-
1797
- - `#284937`- Added API show restrict editing pane.
1798
-
1799
- #### Bug Fixes
1800
-
1801
- - `#284486` - Comment Tab in pane is removed when enable comment is false.
1802
- - `#283344` - Resolved the initial delay in pasting images.
1803
- - `#282707`,`#284035` - Resolved bullet list exporting issue in MAC devices.
1804
- - `#284412` - Comment mark is now deleted properly when comment is deleted.
1805
- - `#281339` - Resolved RTL issue when editing a list content.
1806
- - `#276616` - Paragraph maintained when inserting text in whole paragraph similar to MS Word.
1807
-
1808
- ## 18.2.45 (2020-07-14)
1809
-
1810
- ### Document Editor
1811
-
1812
- #### New Features
1813
-
1814
- - Added API to delete bookmark.
1815
- - `#267515`- Added API to get searched item hierarchical index.
1816
-
1817
- #### Bug Fixes
1818
-
1819
- - `#283180` - Resolved font family no records found issue.
1820
- - `#282303` - Paste dropdown now hides when creating or opening new document.
1821
- - `#280951` - Table content renders properly now for table with merged cells.
1822
- - `#280973` - Resolved script while getting bookmarks from selection.
1823
-
1824
- ## 18.2.44 (2020-07-07)
1825
-
1826
- ### Document Editor
1827
-
1828
- #### Breaking Changes
1829
-
1830
- - The property `dropDownItems` in DropDownFormFieldInfo is changed to `dropdownItems`.
1831
-
1832
- #### New Features
1833
-
1834
- - `#268210` - Added support to customize user color in comment.
1835
- - `#268211` - Added support for restricting the user from delete comment.
1836
- - `#125563`,`#167098`,`#200655`,`#210401`,`#227193`,`#225881`,`#227250`,`#238531`,`#238529`,`#249506`,`#251329`,`#251816`,`#252988`,`#254094`, `#125563`,`#255850`, `#258472`, `#264794`, `#264634`, `#266286`, `#278191` - Added support for track changes.
1837
- - `#272634` - Added API to get hidden bookmark.
1838
- - `#267067`,`#267934` - Added API to customize font family dropdown.
1839
- - Added `height` and `width` API to define height and width of document editor.
1840
- - Added support for Legacy Form Fields.
1841
- - Added support for updating bookmark cross reference fields.
1842
-
1843
- #### Bug Fixes
1844
-
1845
- - `#279874` - Resolved paragraph spacing issue in the exported docx when opening it in libre office.
1846
- - `#278039` - Character formatting now preserved properly for dropdown field.
1847
- - `#278038` - Handle restrict editing inside dropdown field.
1848
- - `#278695` - Paste text only in editable region now working properly.
1849
- - `#267924` - Circular reference exception resolved when export the document contains chart.
1850
- - `#152124` - Resolved script error when modify style for locale changed text.
1851
- - `#266059` - Skipped adding bookmark when pasting content with bookmark.
1852
- - `#267949` - Table is now revert properly when insert table below another table.
1853
- - `#268472` - Selection format is now retrieved properly when paragraph contains more than two paragraph.
1854
- - `#269467` - List character format is now update properly when paragraph contains style.
1855
- - `#264813` - Tab width in list paragraph is now layout properly.
1856
- - `#264779` - Text clipping issue is resolved when text inside table.
1857
- - `#269397` - Context menu position is now update properly.
1858
- - `#269546` - Resolved key navigation issue when paragraph contains page break.
1859
- - `#269778` - $ symbol is now search properly when text contains $ symbol.
1860
- - `#269893` - Focus is in document editor after dialog gets closed.
1861
- - `#268907` - Selection character format is retrieved properly when selection is in list text.
1862
- - `#270424` - Footer content is now update properly when document contains more than one section.
1863
- - `#269743` , `#266534` - Focus is now update properly in Firefox when navigate to bookmark or search result.
1864
- - `#271039` - When paste content in RTL paragraph, formatting is now update properly.
1865
- - `#271928` - Resolved script when trying to create a new document and document have broken comments.
1866
- - `#271886` - Right tab width issue when paragraph contains right indent.
1867
- - `#271986` - Resolved error when updating Table of Contents with comments.
1868
- - `#271967` , `#271968` , `#271971` - Paste text only in empty paragraph is now working properly.
1869
- - `#271985` - Resolved script error when remove page break after bookmark.
1870
- - `#272009` , `#273868` - Modify style using numbering and paragraph dialog is now working properly.
1871
- - `#271977` - Pasting text in heading style is now maintain heading style in paragraph.
1872
- - `#271863` - Paragraph element splitting issue is now resolved when alignment is left and line combined with field.
1873
- - `#272290` - Resolved selection issue when paragraph contains line break character.
1874
- - `#272600` - Copy text with specific symbol (< , >) is now working properly.
1875
- - `#266059` - When pasting content with bookmark, bookmark is now preserved.
1876
- - `#269743` - Resolved focus issue in Firefox when navigate to bookmark or search result.
1877
- - `#269546` - Selection issue is now resolved when paragraph contains page break.
1878
- - `#274395` - Resolved script error when clicking on canvas in mobile view mode.
1879
- - `#273345` - Resolved table export issue when table contains vertical merge cell.
1880
- - `#271450` - Restricted user editing, when spinner is visible.
1881
- - `#271375` - Resolved table layout issue when table contain vertical merged cells.
1882
- - `#252868` - Resolved script error when minimize row height.
1883
- - `#275993` ,`#277160` - Button actions in comments and restrict editing pane will not trigger the form submit events now.
1884
- - `#276810` - Table alignment property is now export properly.
1885
- - `#277452` - Contents in table is now print properly.
1886
- - `#273870` - Bookmarks API will not retrieve bookmark when selection is at end of bookmark.
1887
- - `#273913` - Enable/Disable item by index in toolbar is now working properly.
1888
- - `#276399` - After copy and paste table, table is now exported properly.
1889
- - Comments pane locale string is now returns proper time.
1890
- - `#275137` - Apply vertical alignment for cell is now working properly when it inside table.
1891
- - `#275184` - Select bookmark API is now select bookmark element properly.
1892
- - `#275452` - Select current word using keys is now working properly when line contains comments.
1893
- - `#274525` - List font is now update properly on enter in list paragraph.
1894
- - `#273905` - Insert row below is now proper when cells have different borders.
1895
- - `#272762` - Modify list level using tab key is now proper.
1896
- - `#277823` - Resolved script error when deleting edit range element inside table.
1897
- - `#247077` - Selection is now updated properly while clicking before merge field.
1898
- - `#277357` - Table borders are now rendered properly.
1899
- - `#275686` - `contentChange` event will not trigger while switching the layout type.
1900
- - `#276616` - Paragraph format now preservers properly while inserting text.
1901
- - `#276039` - Adding new comment and replying to old comment is now disable in read only mode.
1902
- - `#277959` - Document with shape now imported properly.
1903
- - `#153583` - Selection is now updated properly for image inside the bookmark.
1904
- - `#278685` - Resolved script error on backspace inside the edit range.
1905
- - `#247077` - Selection is now updated properly while clicking before merge field.
1906
- - `#277357` - Table borders are now rendered properly.
1907
- - `#275686` - `contentChange` event will not trigger while switching the layout type.
1908
- - `#276616` - Paragraph format now preservers properly while inserting text.
1909
- - `#276039` - Adding new comment and replying to old comment is now disable in read only mode.
1910
- - `#277959` - Document with shape now imported properly.
1911
- - `#153583` - Selection is now updated properly for image inside the bookmark.
1912
-
1913
- ## 18.1.56 (2020-06-09)
1914
-
1915
- ### Document Editor
1916
-
1917
- #### Bug Fixes
1918
-
1919
- - `#278685` - Resolved script error on backspace inside the edit range.
1920
- - `#247077` - Selection is now updated properly while clicking before merge field.
1921
- - `#277357` - Table borders are now rendered properly.
1922
- - `#275686` - `contentChange` event will not trigger while switching the layout type.
1923
- - `#276616` - Paragraph format now preservers properly while inserting text.
1924
- - `#276039` - Adding new comment and replying to old comment is now disable in read only mode.
1925
- - `#277959` - Document with shape now imported properly.
1926
- - `#153583` - Selection is now updated properly for image inside the bookmark.
1927
-
1928
- ## 18.1.55 (2020-06-02)
1929
-
1930
- ### Document Editor
1931
-
1932
- #### Bug Fixes
1933
-
1934
- - `#247077` - Selection is now updated properly while clicking before merge field.
1935
- - `#277357` - Table borders are now rendered properly.
1936
- - `#275686` - `contentChange` event will not trigger while switching the layout type.
1937
- - `#276616` - Paragraph format now preservers properly while inserting text.
1938
- - `#276039` - Adding new comment and replying to old comment is now disable in read only mode.
1939
- - `#277959` - Document with shape now imported properly.
1940
- - `#153583` - Selection is now updated properly for image inside the bookmark.
1941
-
1942
- ## 18.1.54 (2020-05-26)
1943
-
1944
- ### Document Editor
1945
-
1946
- #### Bug Fixes
1947
-
1948
- - Comments pane locale string is now returns proper time.
1949
- - `#275137` - Apply vertical alignment for cell is now working properly when it inside table.
1950
- - `#275184` - Select bookmark API is now select bookmark element properly.
1951
- - `#275452` - Select current word using keys is now working properly when line contains comments.
1952
- - `#274525` - List font is now update properly on enter in list paragraph.
1953
- - `#273905` - Insert row below is now proper when cells have different borders.
1954
- - `#272762` - Modify list level using tab key is now proper.
1955
- - `#277823` - Resolved script error when deleting edit range element inside table.
1956
-
1957
- ## 18.1.53 (2020-05-19)
1958
-
1959
- ### Document Editor
1960
-
1961
- #### New Features
1962
-
1963
- - `#272634` - Added API to get hidden bookmark.
1964
-
1965
- #### Bug Fixes
1966
-
1967
- - `#275993` ,`#277160` - Button actions in comments and restrict editing pane will not trigger the form submit events now.
1968
- - `#276810` - Table alignment property is now export properly.
1969
- - `#277452` - Contents in table is now print properly.
1970
- - `#273870` - Bookmarks API will not retrieve bookmark when selection is at end of bookmark.
1971
- - `#273913` - Enable/Disable item by index in toolbar is now working properly.
1972
- - `#276399` - After copy and paste table, table is now exported properly.
1973
-
1974
- ## 18.1.52 (2020-05-13)
1975
-
1976
- ### Document Editor
1977
-
1978
- #### New Features
1979
-
1980
- - `#267067`,`#267934` - Added API to customize font family dropdown.
1981
-
1982
- #### Bug Fixes
1983
-
1984
- - `#271375` - Resolved table layout issue when table contain vertical merged cells.
1985
- - `#252868` - Resolved script error when minimize row height.
1986
-
1987
- ## 18.1.48 (2020-05-05)
1988
-
1989
- ### Document Editor
1990
-
1991
- #### Bug Fixes
1992
-
1993
- - `#272290` - Resolved selection issue when paragraph contains line break character.
1994
- - `#272600` - Copy text with specific symbol (< , >) is now working properly.
1995
- - `#266059` - When pasting content with bookmark, bookmark is now preserved.
1996
- - `#269743` - Resolved focus issue in Firefox when navigate to bookmark or search result.
1997
- - `#269546` - Selection issue is now resolved when paragraph contains page break.
1998
- - `#274395` - Resolved script error when clicking on canvas in mobile view mode.
1999
- - `#273345` - Resolved table export issue when table contains vertical merge cell.
2000
- - `#271450` - Restricted user editing, when spinner is visible.
2001
-
2002
- ## 18.1.46 (2020-04-28)
2003
-
2004
- ### Document Editor
2005
-
2006
- #### New Features
2007
-
2008
- - Added `height` and `width` API to define height and width of document editor.
2009
-
2010
- #### Bug Fixes
2011
-
2012
- - `#271928` - Resolved script when trying to create a new document and document have broken comments.
2013
- - `#271886` - Right tab width issue when paragraph contains right indent.
2014
- - `#271986` - Resolved error when updating Table of Contents with comments.
2015
- - `#271967` , `#271968` , `#271971` - Paste text only in empty paragraph is now working properly.
2016
- - `#271985` - Resolved script error when remove page break after bookmark.
2017
- - `#272009` , `#273868` - Modify style using numbering and paragraph dialog is now working properly.
2018
- - `#271977` - Pasting text in heading style is now maintain heading style in paragraph.
2019
- - `#271863` - Paragraph element splitting issue is now resolved when alignment is left and line combined with field.
2020
-
2021
- ## 18.1.45 (2020-04-21)
2022
-
2023
- ### Document Editor
2024
-
2025
- #### Bug Fixes
2026
-
2027
- - `#268907` - Selection character format is retrieved properly when selection is in list text.
2028
- - `#270424` - Footer content is now update properly when document contains more than one section.
2029
- - `#269743` , `#266534` - Focus is now update properly in Firefox when navigate to bookmark or search result.
2030
- - `#271039` - When paste content in RTL paragraph, formatting is now update properly.
2031
-
2032
- ## 18.1.44 (2020-04-14)
2033
-
2034
- ### Document Editor
2035
-
2036
- #### New Features
2037
-
2038
- - Added support for Legacy Form Fields.
2039
- - Added support for updating bookmark cross reference fields.
2040
-
2041
- #### Bug Fixes
2042
-
2043
- - `#269397` - Context menu position is now update properly.
2044
- - `#269546` - Resolved key navigation issue when paragraph contains page break.
2045
- - `#269778` - $ symbol is now search properly when text contains $ symbol.
2046
- - `#269893` - Focus is in document editor after dialog gets closed.
2047
-
2048
- ## 18.1.43 (2020-04-07)
2049
-
2050
- ### Document Editor
2051
-
2052
- #### Bug Fixes
2053
-
2054
- - `#267924` - Circular reference exception resolved when export the document contains chart.
2055
- - `#152124` - Resolved script error when modify style for locale changed text.
2056
- - `#266059` - Skipped adding bookmark when pasting content with bookmark.
2057
- - `#267949` - Table is now revert properly when insert table below another table.
2058
- - `#268472` - Selection format is now retrieved properly when paragraph contains more than two paragraph.
2059
- - `#269467` - List character format is now update properly when paragraph contains style.
2060
- - `#264813` - Tab width in list paragraph is now layout properly.
2061
- - `#264779` - Text clipping issue is resolved when text inside table.
2062
-
2063
- ## 18.1.42 (2020-04-01)
2064
-
2065
- ### Document Editor
2066
-
2067
- #### Breaking Changes
2068
-
2069
- - Default value of `enableLocalPaste` is set to false. So, by default, the content will be pasted from the system clipboard.
2070
- - Some locale properties are renamed as below
2071
-
2072
- |Previous|Now|
2073
- |----|----|
2074
- |Linked(Paragraph and Character)|Linked Style|
2075
- |Don't add space between the paragraphs of the same styles|Contextual Spacing|
2076
- |The password don't match|Password Mismatch|
2077
- |Exceptions (optional)|Exceptions Optional|
2078
- |Select parts of the document and choose users who are allowed to freely edit them.|Select Part Of Document And User|
2079
- |Yes, Start Enforcing Protection|Enforcing Protection|
2080
- |This document is protected from unintentional editing. You may edit in this region.|Protected Document|
2081
- |You may format text only with certain styles.|You may format text only with certain styles|
2082
- |Type your comment hear|Type your comment here|
2083
- |Added comments not posted. If you continue, that comment will be discarded.|Discard Comment|
2084
- |Header & Footer|Header And Footer|
2085
- |Different header and footer for odd and even pages.|Different header and footer for odd and even pages|
2086
- |Different Odd & Even Pages|Different Odd And Even Pages|
2087
- |Different header and footer for first page.|Different header and footer for first page|
2088
- |Distance from top of the page to top of the header|Distance from top of the page to top of the header|
2089
- |Distance from bottom of the page to bottom of the footer.|Distance from bottom of the page to bottom of the footer|
2090
- |Insert / Delete|Insert Or Delete|
2091
- |Number of heading or outline levels to be shown in table of contents.|Number of heading or outline levels to be shown in table of contents|
2092
- |Show page numbers in table of contents.|Show page numbers in table of contents|
2093
- |Right align page numbers in table of contents.|Right align page numbers in table of contents|
2094
- |Use hyperlinks instead of page numbers.|Use hyperlinks instead of page numbers|
2095
- |Bold (Ctrl+B)|Bold Tooltip|
2096
- |Italic (Ctrl+I)|Italic Tooltip|
2097
- |Underline (Ctrl+U)|Underline Tooltip|
2098
- |Superscript (Ctrl+Shift++)|Superscript Tooltip|
2099
- |Subscript (Ctrl+=)|Subscript Tooltip|
2100
- |Align left (Ctrl+L)|Align left Tooltip|
2101
- |Center (Ctrl+E)|Center Tooltip|
2102
- |Align right (Ctrl+R)|Align right Tooltip|
2103
- |Justify (Ctrl+J)|Justify Tooltip|
2104
- |Create a new document.|Create a new document|
2105
- |Open a document.|Open a document|
2106
- |Undo the last operation (Ctrl+Z).|Undo Tooltip|
2107
- |Redo the last operation (Ctrl+Y).|Redo Tooltip|
2108
- |Insert inline picture from a file.|Insert inline picture from a file|
2109
- |Create a link in your document for quick access to web pages and files (Ctrl+K).|Create Hyperlink|
2110
- |Insert a bookmark in a specific place in this document.|Insert a bookmark in a specific place in this document|
2111
- |Provide an overview of your document by adding a table of contents.|Provide an overview of your document by adding a table of contents|
2112
- |Add or edit the header.|Add or edit the header|
2113
- |Add or edit the footer.|Add or edit the footer|
2114
- |Open the page setup dialog.|Open the page setup dialog|
2115
- |Add page numbers.|Add page numbers|
2116
- |Find text in the document (Ctrl+F).|Find Text|
2117
- |The current page number in the document. Click or tap to navigate specific page.|Current Page Number|
2118
-
2119
- #### New Features
2120
-
2121
- - `249782`, `254484`, `149278`,`258415`,`260463` - Added support for toolbar customization.
2122
- - `253670` - Enhancements for copy and paste operation.
2123
- - `#262665`, `#151012` - Added API to customize search highlight colour.
2124
- - `#249197` - Added API to enable/disable spell check action.
2125
- - `#237725`, `#253671` - Added support for web layout.
2126
- - `#260639` - Added `enableComment` property to enable and disable comment.
2127
- - `#259970` - Handled paste list behaviour using start at value of list.
2128
- - `#256487` - Enhancements for mouse and keyboard selection.
2129
-
2130
- #### Bug Fixes
2131
-
2132
- - `#263861` - Table cells are now resized properly.
2133
- - `#260600` , `#266651` - RTL characters are now remove properly on backspace and delete.
2134
- - `#260600` - When direction is RTL, elements now rearranged properly after change character formatting.
2135
- - `#250770` , `#263443` - RTL text layout properly with special characters.
2136
- - `#264351` - Justify paragraph is layout properly when paragraph contains field.
2137
- - `#264631` - Stop protection is now working if password is empty.
2138
- - `#263171` - Cell options dialog content is now aligned properly.
2139
- - `#150960` - Hidden separator in context menu when hyperlink is disabled.
2140
- - `#150995` - Resolved error when importing the document with editable region restrictions.
2141
- - `#260600`, `#150466` , `#266311` - Properties pane is now enabled properly based on the context type in header footer region.
2142
- - `#260133` - Resolved navigation issue on Ctrl + click in MAC machine.
2143
- - `150960` - Enable/disable comment now working properly.
2144
- - `#263608` , `#150960` - Resolved script error when disable toolbar.
2145
- - `#261241` - Resolved script error when remove hyperlink in splitted widget.
2146
- - `#259011` - Paragraph before spacing layout issue is now resolved.
2147
- - `#260206` - Resolved numbering list issue when list contains start at value.
2148
- - `#260206` - Restart numbering is now working properly for different number format.
2149
- - `#260637` - Resolved script error when removing comment in header.
2150
- - `#249197` - Resolved exception when export Sfdt to other type in server side.
2151
- - `#252868` - Resolved script error when resize row to next page.
2152
- - `#259972` - Formatting is now applied properly for keep text only option in paste.
2153
- - `#258191` - Table cell width are now updated properly.
2154
- - `#260133`, `#261809` - Page scrolling issue is resolved when right click in MAC machine.
2155
- - `#258087`, `#255070` - Grid columns are now preserved properly on export.
2156
- - `#255070` - Page headers is now export properly when section break in table.
2157
- - `#259583` - List level number for style paragraph is now export properly.
2158
- - `#259153` - Table cell width and height is now copy properly.
2159
- - `#258121` - Resolved warnings in bootstrap4 styles when run the application in Firefox.
2160
- - `#249197` - Highlight colours are now exported properly.
2161
- - `#260048`, `#256276` - Image files are now pasted properly.
2162
- - `#256903` - Resolved bookmarks API issue when bookmark is in table.
2163
- - `#256758` - Resolved selection issue after correcting the spelling mistake.
2164
- - `#258938` - Resolved typo error in place holder of comments text area.
2165
- - `#257481` - Font family in font dialog is now update properly based on current selection.
2166
- - `#257171` - Bookmarks is now update properly after paste with formatting.
2167
- - `#257161` - List number is now update properly when hidden field contains list paragraph.
2168
- - `#246365` - Borders are now render properly when copy and paste from excel.
2169
- - `#257455` - Font colour is now update properly in modify style dialog.
2170
- - `#250770` - Line is now arranged properly when insert field.
2171
- - `#255913`, `#257879` - Bookmark is now insert properly in splitted paragraph.
2172
- - `#255736` , `#256106` , `#257011` - Context menu is now open in Firefox, Edge and Safari.
2173
- - `#254998` - Character format is now apply properly for selected bookmark.
2174
- - `#254997`, `#256764`, `#257106` , `#256764` - Paragraph format is now export properly if document contains selection.
2175
- - `#255272` - Resolved script error when navigate to bookmark in header.
2176
- - `#255188` - Bookmark is now preserved properly in header and footer.
2177
- - `#255601` - Bookmark is now select properly after insert text.
2178
- - `#256385` - Copy is now working properly in Firefox.
2179
- - `#256321` - Auto fit table is now lay-out properly if maximum word width exceeds container width.
2180
- - `#256509` - Resolved script error throws on backspace when selection is in bookmark end.
2181
- - `#256053` - TOC outline level is now serialized properly on Word export.
2182
- - `#256449` - Bullet list is now render properly in IOS chrome and safari.
2183
- - `#256099` - List is now apply properly in multilevel list.
2184
- - `#256384` - Tab width is now update properly when paragraph contains hanging indent.
2185
- - `#264048` , `#267560` - Header style formatting is now preserved properly in local copy and paste.
2186
- - `#266571` - Table with auto fit is now layout properly.
2187
- - `#266534` - Resolved text navigation issue when spell check is enabled.
2188
- - `#151718` - Dynamic toolbar injection is now working properly.
2189
- - `#266060` - Fixed paste match destination formatting issue.
2190
- - `#267089` , `#255993` - Fixed exception when pasting html content.
2191
- - `#267793`, `#152022` - Resolved page scrolling issue when copy is triggered.
2192
- - `#267769` - Table width is not update properly when insert table inside table cell.
2193
-
2194
- ## 18.1.36-beta (2020-03-19)
2195
-
2196
- ### Document Editor
2197
-
2198
- #### Breaking Changes
2199
-
2200
- - Default value of `enableLocalPaste` is set to false. So, by default, the content will be pasted from the system clipboard.
2201
- - Some locale properties are renamed as below
2202
-
2203
- |Previous|Now|
2204
- |----|----|
2205
- |Linked(Paragraph and Character)|Linked Style|
2206
- |Don't add space between the paragraphs of the same styles|Contextual Spacing|
2207
- |The password don't match|Password Mismatch|
2208
- |Exceptions (optional)|Exceptions Optional|
2209
- |Select parts of the document and choose users who are allowed to freely edit them.|Select Part Of Document And User|
2210
- |Yes, Start Enforcing Protection|Enforcing Protection|
2211
- |This document is protected from unintentional editing. You may edit in this region.|Protected Document|
2212
- |You may format text only with certain styles.|You may format text only with certain styles|
2213
- |Type your comment hear|Type your comment here|
2214
- |Added comments not posted. If you continue, that comment will be discarded.|Discard Comment|
2215
- |Header & Footer|Header And Footer|
2216
- |Different header and footer for odd and even pages.|Different header and footer for odd and even pages|
2217
- |Different Odd & Even Pages|Different Odd And Even Pages|
2218
- |Different header and footer for first page.|Different header and footer for first page|
2219
- |Distance from top of the page to top of the header|Distance from top of the page to top of the header|
2220
- |Distance from bottom of the page to bottom of the footer.|Distance from bottom of the page to bottom of the footer|
2221
- |Insert / Delete|Insert Or Delete|
2222
- |Number of heading or outline levels to be shown in table of contents.|Number of heading or outline levels to be shown in table of contents|
2223
- |Show page numbers in table of contents.|Show page numbers in table of contents|
2224
- |Right align page numbers in table of contents.|Right align page numbers in table of contents|
2225
- |Use hyperlinks instead of page numbers.|Use hyperlinks instead of page numbers|
2226
- |Bold (Ctrl+B)|Bold Tooltip|
2227
- |Italic (Ctrl+I)|Italic Tooltip|
2228
- |Underline (Ctrl+U)|Underline Tooltip|
2229
- |Superscript (Ctrl+Shift++)|Superscript Tooltip|
2230
- |Subscript (Ctrl+=)|Subscript Tooltip|
2231
- |Align left (Ctrl+L)|Align left Tooltip|
2232
- |Center (Ctrl+E)|Center Tooltip|
2233
- |Align right (Ctrl+R)|Align right Tooltip|
2234
- |Justify (Ctrl+J)|Justify Tooltip|
2235
- |Create a new document.|Create a new document|
2236
- |Open a document.|Open a document|
2237
- |Undo the last operation (Ctrl+Z).|Undo Tooltip|
2238
- |Redo the last operation (Ctrl+Y).|Redo Tooltip|
2239
- |Insert inline picture from a file.|Insert inline picture from a file|
2240
- |Create a link in your document for quick access to web pages and files (Ctrl+K).|Create Hyperlink|
2241
- |Insert a bookmark in a specific place in this document.|Insert a bookmark in a specific place in this document|
2242
- |Provide an overview of your document by adding a table of contents.|Provide an overview of your document by adding a table of contents|
2243
- |Add or edit the header.|Add or edit the header|
2244
- |Add or edit the footer.|Add or edit the footer|
2245
- |Open the page setup dialog.|Open the page setup dialog|
2246
- |Add page numbers.|Add page numbers|
2247
- |Find text in the document (Ctrl+F).|Find Text|
2248
- |The current page number in the document. Click or tap to navigate specific page.|Current Page Number|
2249
-
2250
- #### New Features
2251
-
2252
- - `249782`, `254484`, `149278`,`258415`,`260463` - Added support for toolbar customization.
2253
- - `253670` - Enhancements for copy and paste operation.
2254
- - `#262665`, `#151012` - Added API to customize search highlight colour.
2255
- - `#249197` - Added API to enable/disable spell check action.
2256
- - `#237725`, `#253671` - Added support for web layout.
2257
- - `#260639` - Added `enableComment` property to enable and disable comment.
2258
- - `#259970` - Handled paste list behaviour using start at value of list.
2259
- - `#256487` - Enhancements for mouse and keyboard selection.
2260
-
2261
- #### Bug Fixes
2262
-
2263
- - `#263861` - Table cells are now resized properly.
2264
- - `#260600` , `#266651` - RTL characters are now remove properly on backspace and delete.
2265
- - `#260600` - When direction is RTL, elements now rearranged properly after change character formatting.
2266
- - `#250770` , `#263443` - RTL text layout properly with special characters.
2267
- - `#264351` - Justify paragraph is layout properly when paragraph contains field.
2268
- - `#264631` - Stop protection is now working if password is empty.
2269
- - `#263171` - Cell options dialog content is now aligned properly.
2270
- - `#150960` - Hidden separator in context menu when hyperlink is disabled.
2271
- - `#150995` - Resolved error when importing the document with editable region restrictions.
2272
- - `#260600`, `#150466` , `#266311` - Properties pane is now enabled properly based on the context type in header footer region.
2273
- - `#260133` - Resolved navigation issue on Ctrl + click in MAC machine.
2274
- - `150960` - Enable/disable comment now working properly.
2275
- - `#263608` , `#150960` - Resolved script error when disable toolbar.
2276
- - `#261241` - Resolved script error when remove hyperlink in splitted widget.
2277
- - `#259011` - Paragraph before spacing layout issue is now resolved.
2278
- - `#260206` - Resolved numbering list issue when list contains start at value.
2279
- - `#260206` - Restart numbering is now working properly for different number format.
2280
- - `#260637` - Resolved script error when removing comment in header.
2281
- - `#249197` - Resolved exception when export Sfdt to other type in server side.
2282
- - `#252868` - Resolved script error when resize row to next page.
2283
- - `#259972` - Formatting is now applied properly for keep text only option in paste.
2284
- - `#258191` - Table cell width are now updated properly.
2285
- - `#260133`, `#261809` - Page scrolling issue is resolved when right click in MAC machine.
2286
- - `#258087`, `#255070` - Grid columns are now preserved properly on export.
2287
- - `#255070` - Page headers is now export properly when section break in table.
2288
- - `#259583` - List level number for style paragraph is now export properly.
2289
- - `#259153` - Table cell width and height is now copy properly.
2290
- - `#258121` - Resolved warnings in bootstrap4 styles when run the application in Firefox.
2291
- - `#249197` - Highlight colours are now exported properly.
2292
- - `#260048`, `#256276` - Image files are now pasted properly.
2293
- - `#256903` - Resolved bookmarks API issue when bookmark is in table.
2294
- - `#256758` - Resolved selection issue after correcting the spelling mistake.
2295
- - `#258938` - Resolved typo error in place holder of comments text area.
2296
- - `#257481` - Font family in font dialog is now update properly based on current selection.
2297
- - `#257171` - Bookmarks is now update properly after paste with formatting.
2298
- - `#257161` - List number is now update properly when hidden field contains list paragraph.
2299
- - `#246365` - Borders are now render properly when copy and paste from excel.
2300
- - `#257455` - Font colour is now update properly in modify style dialog.
2301
- - `#250770` - Line is now arranged properly when insert field.
2302
- - `#255913`, `#257879` - Bookmark is now insert properly in splitted paragraph.
2303
- - `#255736` , `#256106` , `#257011` - Context menu is now open in Firefox, Edge and Safari.
2304
- - `#254998` - Character format is now apply properly for selected bookmark.
2305
- - `#254997`, `#256764`, `#257106` , `#256764` - Paragraph format is now export properly if document contains selection.
2306
- - `#255272` - Resolved script error when navigate to bookmark in header.
2307
- - `#255188` - Bookmark is now preserved properly in header and footer.
2308
- - `#255601` - Bookmark is now select properly after insert text.
2309
- - `#256385` - Copy is now working properly in Firefox.
2310
- - `#256321` - Auto fit table is now lay-out properly if maximum word width exceeds container width.
2311
- - `#256509` - Resolved script error throws on backspace when selection is in bookmark end.
2312
- - `#256053` - TOC outline level is now serialized properly on Word export.
2313
- - `#256449` - Bullet list is now render properly in IOS chrome and safari.
2314
- - `#256099` - List is now apply properly in multilevel list.
2315
- - `#256384` - Tab width is now update properly when paragraph contains hanging indent.
2316
-
2317
- ## 17.4.55 (2020-03-10)
2318
-
2319
- ### Document Editor
2320
-
2321
- #### New Features
2322
-
2323
- - `249782`, `254484`, `149278`,`258415`,`260463` - Added support for toolbar customization.
2324
-
2325
- #### Bug Fixes
2326
-
2327
- - `#263861` - Table cells are now resized properly.
2328
- - `#260600` , `#266651` - RTL characters are now remove properly on backspace and delete.
2329
- - `#260600` - When direction is RTL, elements now rearranged properly after change character formatting.
2330
- - `#250770` , `#263443` - RTL text layout properly with special characters.
2331
- - `#264351` - Justify paragraph is layout properly when paragraph contains field.
2332
- - `#264631` - Stop protection is now working if password is empty.
2333
-
2334
- ## 17.4.51 (2020-02-25)
2335
-
2336
- ### Document Editor
2337
-
2338
- #### Bug Fixes
2339
-
2340
- - `#263171` - Cell options dialog content is now aligned properly.
2341
- - `#150960` - Hidden separator in context menu when hyperlink is disabled.
2342
- - `#150995` - Resolved error when importing the document with editable region restrictions.
2343
- - `#260600`, `#150466` , `#266311` - Properties pane is now enabled properly based on the context type in header footer region.
2344
- - `#260133` - Resolved navigation issue on Ctrl + click in MAC machine.
2345
-
2346
- ## 17.4.50 (2020-02-18)
2347
-
2348
- ### Document Editor
2349
-
2350
- #### New Features
2351
-
2352
- - `253670` - Enhancements for copy and paste operation.
2353
-
2354
- #### Bug Fixes
2355
-
2356
- - `150960` - Enable/disable comment now working properly.
2357
-
2358
- ## 17.4.49 (2020-02-11)
2359
-
2360
- ### Document Editor
2361
-
2362
- #### New Features
2363
-
2364
- - `#262665`, `#151012` - Added API to customize search highlight colour.
2365
- - `#249197` - Added API to enable/disable spell check action.
2366
- - `#237725`, `#253671` - Added support for web layout.
2367
-
2368
- #### Bug Fixes
2369
-
2370
- - `#263608` , `#150960` - Resolved script error when disable toolbar.
2371
- - `#261241` - Resolved script error when remove hyperlink in splitted widget.
2372
- - `#259011` - Paragraph before spacing layout issue is now resolved.
2373
-
2374
- ## 17.4.47 (2020-02-05)
2375
-
2376
- ### Document Editor
2377
-
2378
- #### New Features
2379
-
2380
- - `#260639` - Added `enableComment` property to enable and disable comment.
2381
- - `#259970` - Handled paste list behaviour using start at value of list.
2382
-
2383
- #### Bug Fixes
2384
-
2385
- - `#260206` - Resolved numbering list issue when list contains start at value.
2386
- - `#260206` - Restart numbering is now working properly for different number format.
2387
- - `#260637` - Resolved script error when removing comment in header.
2388
- - `#249197` - Resolved exception when export Sfdt to other type in server side.
2389
-
2390
- ## 17.4.46 (2020-01-30)
2391
-
2392
- ### Document Editor
2393
-
2394
- #### Breaking Changes
2395
-
2396
- - Default value of `enableLocalPaste` is set to false. So, by default, the content will be pasted from the system clipboard.
2397
-
2398
- #### Bug Fixes
2399
-
2400
- - `#252868` - Resolved script error when resize row to next page.
2401
- - `#259972` - Formatting is now applied properly for keep text only option in paste.
2402
- - `#258191` - Table cell width are now updated properly.
2403
- - `#260133`, `#261809` - Page scrolling issue is resolved when right click in MAC machine.
2404
-
2405
- ## 17.4.43 (2020-01-14)
2406
-
2407
- ### Document Editor
2408
-
2409
- #### Bug Fixes
2410
-
2411
- - `#258087`, `#255070` - Grid columns are now preserved properly on export.
2412
- - `#255070` - Page headers is now export properly when section break in table.
2413
- - `#259583` - List level number for style paragraph is now export properly.
2414
- - `#259153` - Table cell width and height is now copy properly.
2415
- - `#258121` - Resolved warnings in bootstrap4 styles when run the application in Firefox.
2416
- - `#249197` - Highlight colours are now exported properly.
2417
- - `#260048`, `#256276` - Image files are now pasted properly.
2418
-
2419
- ## 17.4.41 (2020-01-07)
2420
-
2421
- ### Document Editor
2422
-
2423
- #### New Features
2424
-
2425
- - `#256487` - Enhancements for mouse and keyboard selection.
2426
-
2427
- #### Bug Fixes
2428
-
2429
- - `#256903` - Resolved bookmarks API issue when bookmark is in table.
2430
- - `#256758` - Resolved selection issue after correcting the spelling mistake.
2431
- - `#258938` - Resolved typo error in place holder of comments text area.
2432
- - `#257481` - Font family in font dialog is now update properly based on current selection.
2433
- - `#257171` - Bookmarks is now update properly after paste with formatting.
2434
- - `#257161` - List number is now update properly when hidden field contains list paragraph.
2435
- - `#246365` - Borders are now render properly when copy and paste from excel.
2436
- - `#257455` - Font colour is now update properly in modify style dialog.
2437
- - `#250770` - Line is now arranged properly when insert field.
2438
-
2439
- ## 17.4.40 (2019-12-24)
2440
-
2441
- ### Document Editor
2442
-
2443
- #### Breaking Changes
2444
-
2445
- - Some locale properties are renamed as below
2446
-
2447
- |Previous|Now|
2448
- |----|----|
2449
- |Linked(Paragraph and Character)|Linked Style|
2450
- |Don't add space between the paragraphs of the same styles|Contextual Spacing|
2451
- |The password don't match|Password Mismatch|
2452
- |Exceptions (optional)|Exceptions Optional|
2453
- |Select parts of the document and choose users who are allowed to freely edit them.|Select Part Of Document And User|
2454
- |Yes, Start Enforcing Protection|Enforcing Protection|
2455
- |This document is protected from unintentional editing. You may edit in this region.|Protected Document|
2456
- |You may format text only with certain styles.|You may format text only with certain styles|
2457
- |Type your comment hear|Type your comment here|
2458
- |Added comments not posted. If you continue, that comment will be discarded.|Discard Comment|
2459
- |Header & Footer|Header And Footer|
2460
- |Different header and footer for odd and even pages.|Different header and footer for odd and even pages|
2461
- |Different Odd & Even Pages|Different Odd And Even Pages|
2462
- |Different header and footer for first page.|Different header and footer for first page|
2463
- |Distance from top of the page to top of the header|Distance from top of the page to top of the header|
2464
- |Distance from bottom of the page to bottom of the footer.|Distance from bottom of the page to bottom of the footer|
2465
- |Insert / Delete|Insert Or Delete|
2466
- |Number of heading or outline levels to be shown in table of contents.|Number of heading or outline levels to be shown in table of contents|
2467
- |Show page numbers in table of contents.|Show page numbers in table of contents|
2468
- |Right align page numbers in table of contents.|Right align page numbers in table of contents|
2469
- |Use hyperlinks instead of page numbers.|Use hyperlinks instead of page numbers|
2470
- |Bold (Ctrl+B)|Bold Tooltip|
2471
- |Italic (Ctrl+I)|Italic Tooltip|
2472
- |Underline (Ctrl+U)|Underline Tooltip|
2473
- |Superscript (Ctrl+Shift++)|Superscript Tooltip|
2474
- |Subscript (Ctrl+=)|Subscript Tooltip|
2475
- |Align left (Ctrl+L)|Align left Tooltip|
2476
- |Center (Ctrl+E)|Center Tooltip|
2477
- |Align right (Ctrl+R)|Align right Tooltip|
2478
- |Justify (Ctrl+J)|Justify Tooltip|
2479
- |Create a new document.|Create a new document|
2480
- |Open a document.|Open a document|
2481
- |Undo the last operation (Ctrl+Z).|Undo Tooltip|
2482
- |Redo the last operation (Ctrl+Y).|Redo Tooltip|
2483
- |Insert inline picture from a file.|Insert inline picture from a file|
2484
- |Create a link in your document for quick access to web pages and files (Ctrl+K).|Create Hyperlink|
2485
- |Insert a bookmark in a specific place in this document.|Insert a bookmark in a specific place in this document|
2486
- |Provide an overview of your document by adding a table of contents.|Provide an overview of your document by adding a table of contents|
2487
- |Add or edit the header.|Add or edit the header|
2488
- |Add or edit the footer.|Add or edit the footer|
2489
- |Open the page setup dialog.|Open the page setup dialog|
2490
- |Add page numbers.|Add page numbers|
2491
- |Find text in the document (Ctrl+F).|Find Text|
2492
- |The current page number in the document. Click or tap to navigate specific page.|Current Page Number|
2493
-
2494
- #### Bug Fixes
2495
-
2496
- - `#255913`, `#257879` - Bookmark is now insert properly in splitted paragraph.
2497
- - `#255736` , `#256106` , `#257011` - Context menu is now open in Firefox, Edge and Safari.
2498
- - `#254998` - Character format is now apply properly for selected bookmark.
2499
- - `#254997`, `#256764`, `#257106` , `#256764` - Paragraph format is now export properly if document contains selection.
2500
- - `#255272` - Resolved script error when navigate to bookmark in header.
2501
- - `#255188` - Bookmark is now preserved properly in header and footer.
2502
- - `#255601` - Bookmark is now select properly after insert text.
2503
- - `#256385` - Copy is now working properly in Firefox.
2504
- - `#256321` - Auto fit table is now lay-out properly if maximum word width exceeds container width.
2505
- - `#256509` - Resolved script error throws on backspace when selection is in bookmark end.
2506
- - `#256053` - TOC outline level is now serialized properly on Word export.
2507
- - `#256449` - Bullet list is now render properly in IOS chrome and safari.
2508
- - `#256099` - List is now apply properly in multilevel list.
2509
- - `#256384` - Tab width is now update properly when paragraph contains hanging indent.
2510
-
2511
- ## 17.4.39 (2019-12-17)
2512
-
2513
- ### Document Editor
2514
-
2515
- #### New Features
2516
-
2517
- - `#249197`, `#249364`, `#148274`, `#253325` Added support for converting SFDT to Word document in server side.
2518
- - `#125563`, `#158324`, `#210401`, `#231575`, `#239871`, `#238529`, `#240405`, `#252988`, `#255850` - Added support for insert and edit comments.
2519
- - `#245203` - Added support for section pages field.
2520
- - `#255626`,`#254750` - RTL and locale is now updated properly on property change.
2521
- - `#251866` - Enhancement for Auto list feature.
2522
-
2523
- ## 17.3.29 (2019-11-26)
2524
-
2525
- ### Document Editor
2526
-
2527
- #### Bug Fixes
2528
-
2529
- - `#252868`, `#254873` - Resolved script error when resizing table row.
2530
- - `#251882` - Line spacing for paragraph is now apply properly when line spacing type is atleast.
2531
- - `#143383` - Paper size drop down is now update properly based on page width and page height.
2532
- - `#255741` - Fixed the focus issue when key pressed on input element.
2533
- - `#250770` - RTL text with special characters are now layout properly.
2534
- - `10269` - Line spacing is now exported properly.
2535
-
2536
- ## 17.3.28 (2019-11-19)
2537
-
2538
- ### Document Editor
2539
-
2540
- #### New Features
2541
-
2542
- - `#246305` - Added API to check whether selection is in field.
2543
- - `#246305` - Added API to select the current field if selection is in field.
2544
- - `#246305` - Added API to perform delete.
2545
-
2546
- #### Bug Fixes
2547
-
2548
- - `#253511` - Line spacing is now applying properly after set locale to document editor.
2549
- - `#254998` , `#251884` - Updated bookmark collection when bookmark gets added.
2550
- - `#246264` - Table with vertical merged split cells is now layout properly.
2551
- - `#246884` - List is now copied properly.
2552
-
2553
- ## 17.3.27 (2019-11-12)
2554
-
2555
- ### Document Editor
2556
-
2557
- #### New Features
2558
-
2559
- - `#253104` - Added API to set custom header in XmlHttpRequest.
2560
-
2561
- #### Bug Fixes
2562
-
2563
- - `#251603` - When apply numbering list, continue numbering is now updated properly.
2564
- - `#251689` - Resolved script error after cut and undo operation.
2565
- - `#250599` - Script error now resolved when deleting page break.
2566
- - `#250914` - Updated bookmark collection when bookmark gets removed.
2567
- - `#251606` - Scrolling is now proper when mouse move out of document editor.
2568
-
2569
- ## 17.3.26 (2019-11-05)
2570
-
2571
- ### Document Editor
2572
-
2573
- #### New Features
2574
-
2575
- - `#250061`, `#246305` - Added property to retrieve bookmarks on selection.
2576
- - `#251247` - Added API for restrict editing.
2577
- - `#251247`, `#238969`, `#252954`,`#253149` - Added API for selection.
2578
-
2579
- #### Bug Fixes
2580
-
2581
- - `251355` - Script error while importing the document is now resolved.
2582
- - `251910` - Status bar disappear on mouse hover is now resolved.
2583
- - `251219` - Script errors due to Content security policy are now resolved.
2584
-
2585
- ## 17.3.21 (2019-10-30)
2586
-
2587
- ### Document Editor
2588
-
2589
- #### Bug Fixes
2590
-
2591
- - `#251576` - Enable repeat row header is now enabled properly in table properties dialog.
2592
- - `#250638` - Scroll position is now maintained after inserting columns.
2593
- - `#253260` - Script error now resolved when double click on header footer.
2594
- - `#252506` - Spell checker performance has been improved.
2595
-
2596
- ## 17.3.19 (2019-10-22)
2597
-
2598
- ### Document Editor
2599
-
2600
- #### New Features
2601
-
2602
- - `#249783` - Added API to set default section format properties.
2603
-
2604
- #### Bug Fixes
2605
-
2606
- - `#249729` - List now updated when copy and paste from outside editor.
2607
- - `#249574` - Table now layout properly when resizing table middle column.
2608
- - `#249767` - Control elements are now destroyed properly.
2609
- - `#250041` - Paragraph formatting is now preserved properly when copy and paste contents.
2610
-
2611
- ## 17.3.17 (2019-10-15)
2612
-
2613
- ### Document Editor
2614
-
2615
- #### Bug Fixes
2616
-
2617
- - `#246264` - Page now becomes responsive, when document contains table with split cell widget.
2618
- - `#249138` - Table of contents dialog now rendered properly.
2619
- - `#245757` - Page now becomes responsive when we edit in header footer region.
2620
- - `#249049` - List continue numbering issues are resolved now.
2621
- - `#248304`, `#250801` - TOC is now updated properly, when paragraph contains page break with heading style.
2622
- - `#249736` - Focus is now set to text search result, when search icon is clicked in options pane.
2623
- - `#249542` - Draw image error is resolved now, when document contains invalid image source.
2624
- - `#249329` - Added localization for missed text in document editor.
2625
- - `#248710` - Character format is now applied, when selection start is in field.
2626
-
2627
- ## 17.3.16 (2019-10-09)
2628
-
2629
- ### Document Editor
2630
-
2631
- #### Bug Fixes
2632
-
2633
- - `#246365`, `#250077` - Table Width for auto type table format is now updated properly.
2634
- - `#249283` - Command + A key triggers properly in MAC machine's Safari browser.
2635
- - `#248301` - Text clipping issues are fixed when text inside table cell.
2636
- - `#246587` - backward selection issues and backspace issues for restrict editing are resolved now.
2637
- - `#244786` , `#248882` - Text now rendered properly in RTL paragraph, when copy and paste locally.
2638
- - `#248304` - Tab leader is now preserved properly, when updating table of contents.
2639
-
2640
- ## 17.3.14 (2019-10-03)
2641
-
2642
- ### Document Editor
2643
-
2644
- #### New Features
2645
-
2646
- - `#245203` - Added support to preserve and layout start page number for sections
2647
-
2648
- #### Bug Fixes
2649
-
2650
- - `#243771` - Clipboard data is now pasted as plain text, If XHTML validation fails.
2651
- - `#246264`, `#246143`, `#247143` - Styles now updated properly for the selected paragraph.
2652
- - `#246003` - Default character and paragraph format is now set on initial control rendering.
2653
- - `#245766` - Table of contents is now copied properly.
2654
- - `#245891` - Merge field is now copied as a plain text.
2655
- - `#245860`, `#246440` - Script error is fixed after paste switch to different formatting.
2656
- - `#245461` - Left border width is now updated properly.
2657
- - `#246168` - List tab width is now calculated properly when hanging indent is specified.
2658
- - `#245890` - Script error is fixed when pasting content copied from word.
2659
- - `#247896`, `#147336` - Text is now visible when its container contains flex style property.
2660
- - `#246884` - Copy and paste single paragraph containing list is now resolved.
2661
- - `#247831` - Script error is fixed while importing document.
2662
- - `#246168` - List font style is now rendered properly.
2663
- - `#246751` - Script error is now resolved when editing inside nested table.
2664
- - `#245453` - Paragraph is now lay-outed properly when it has based on style.
2665
- - `#244786`, `#248882` - RTL text exporting issues are fixed.
2666
- - `#244786` - Cursor now updated properly after inserting merge field when paragraph is set as RTL.
2667
-
2668
- ## 17.3.9-beta (2019-09-20)
2669
-
2670
- ### Document Editor
2671
-
2672
- #### Bug Fixes
2673
-
2674
- - `#245457`, `#245459` - Table is now layout properly.
2675
- - `#246127`, `#246597`, `#247364` - Page number field is now exported properly in Sfdt export.
2676
-
2677
- ## 17.2.49 (2019-09-04)
2678
-
2679
- ### Document Editor
2680
-
2681
- #### Bug Fixes
2682
-
2683
- - `#245473` - Line spacing is now exported properly.
2684
- - `#245469`, `#245470` - List level paragraph heading is now layout properly on page break.
2685
- - `#243495` - width is now calculated properly for the tab element, if it has single tab stop.
2686
- - `#244893` - Paste event is now triggered in safari browser.
2687
- - `#246003` - Insert field is now updated based on current selection format.
2688
- - `#243919` - Script error is fixed while pressing Ctrl + A.
2689
-
2690
- ## 17.2.47 (2019-08-27)
2691
-
2692
- ### Document Editor
2693
-
2694
- #### Bug Fixes
2695
-
2696
- - `#243874` - Contextual Spacing property on paragraph is now exported properly.
2697
- - `#243878` - Copy and paste when the document contains page break character within control is now working.
2698
- - `#243495` - Follow character width for list is now updated properly.
2699
-
2700
- ## 17.2.41 (2019-08-14)
2701
-
2702
- ### Document Editor
2703
-
2704
- #### Bug Fixes
2705
-
2706
- - `#243495` - List level paragraph heading 2 first line indent style is now applied properly.
2707
- - `#243495` - Section break paragraph style layout is now applied properly.
2708
- - `#243495` - TOC tab header layout is now applied properly for sub headings.
2709
- - `#243495` - Script error is fixed when calculating tab width for list in TOC.
2710
- - `#243495` - TOC hyperlink text style is now preserved properly.
2711
- - `#243878` - Table cell is now exported properly when table contains spanned rows.
2712
-
2713
- ## 17.2.40 (2019-08-06)
2714
-
2715
- ### Document Editor
2716
-
2717
- #### Bug Fixes
2718
-
2719
- - `#241445` - List level for RTL paragraph is now applied properly when tab is applied.
2720
- - `#241445` - Undo and redo is now working properly, after list level modified for RTL paragraph.
2721
- - `#241445` - Paragraph is now layout properly, when entering combination of RTL and English text.
2722
- - `#243622` - List is now exported properly in sfdt format.
2723
-
2724
- ## 17.2.39 (2019-07-30)
2725
-
2726
- ### Document Editor
2727
-
2728
- #### New Features
2729
-
2730
- - `#238969` - Added API to set paste formatting options
2731
-
2732
- #### Bug Fixes
2733
-
2734
- - `#146208` - Header footer contents are now rendered properly on print without any blur.
2735
- - `#240266` - Fixed Exception thrown while updating page number.
2736
-
2737
- ## 17.2.36 (2019-07-24)
2738
-
2739
- ### Document Editor
2740
-
2741
- #### Bug Fixes
2742
-
2743
- - `#239985` - List paragraph with style is now layout properly.
2744
- - `#236808` - Table is now layout properly if table width type is auto.
2745
- - `#228049` - Paragraph with right tab stop is now layout properly.
2746
-
2747
- ## 17.2.35 (2019-07-17)
2748
-
2749
- ### Document Editor
2750
-
2751
- #### Bug Fixes
2752
-
2753
- - `#144676` - Table is now layout properly if table contains grid after value.
2754
- - `#235990` - Table is now layout properly if table width type is not auto.
2755
- - `#228049` - Table with row margin is now layout properly.
2756
- - `#228049` - Text is now rendered properly without clipping.
2757
- - `#237734` - Table borders are now exported properly.
2758
-
2759
- ## 17.2.34 (2019-07-11)
2760
-
2761
- ### Document Editor
2762
-
2763
- #### Breaking Changes
2764
-
2765
- - The `pasteLocal` method in `Editor` module is changed to `paste`, which accepts the sfdt string as argument. If sfdt string does not present, paste the local clipboard data.
2766
-
2767
- #### Bug Fixes
2768
-
2769
- - `#240558` - Page numbers are now updated properly.
2770
- - `#228049` - Table left border and shadings are now rendered properly.
2771
- - `#228049` - Paragraph left indent will never add extra space in table cell.
2772
- - `#239144` - Font Type and size value gets highlight when focused on corresponding dropdown list.
2773
-
2774
- ## 17.2.28-beta (2019-06-27)
2775
-
2776
- ### Document Editor
2777
-
2778
- #### Breaking Changes
2779
-
2780
- - The `serviceUrl` property in `DocumentEditorContainer` component no longer expect the full path of the Web API action. Henceforth, it only expects the path up to controller name alone. And the Web API action name can be configured in `serverActionSettings` property for different actions.
2781
-
2782
- #### New Features
2783
-
2784
- - `#229069` - Added contextual spacing support.
2785
- - `#158324`, `#226019`, `#226018`, `#227644`, `#238417` - Added support for chart preservation.
2786
- - `#94889` ,`#87537`, `#223333` ,`#222513`, `#224521` ,`#227620` ,`#227052` ,`#227362`, `#236997` - Added spell check support.
2787
- - `#226631` ,`#227594`, `#231373`, `#233073` - Added clipboard paste with formatted content.
2788
- - `#140903` ,`#227192`, `#227641` ,`#227640` - Added restrict editing support.
2789
- - `#237725` - Added API to customize gap between each page.
2790
-
2791
- #### Bug Fixes
2792
-
2793
- - `#237415`, `#238902` - Document exported properly when document contains hyphen character.
2794
- - `#228049` - Tab character width is now calculated properly.
2795
- - `#228049` - Table with repeat header is now layout properly.
2796
- - `#234073` - Table is now pasted properly.
2797
- - `#236808` - Document exported properly when document contains text form field.
2798
- - `#144848` - Table shading is now exported properly.
2799
-
2800
- ## 17.1.50 (2019-06-04)
2801
-
2802
- ### Document Editor
2803
-
2804
- #### Bug Fixes
2805
-
2806
- - `#236930` - Table exported properly when document contains continuous table.
2807
- - `#236502` - Table last column resizing is now working properly.
2808
-
2809
- ## 17.1.49 (2019-05-29)
2810
-
2811
- ### Document Editor
2812
-
2813
- #### Bug Fixes
2814
-
2815
- - `#226399` - Header and Footer is now layout properly if document contains section break
2816
-
2817
- ## 17.1.48 (2019-05-21)
2818
-
2819
- ### Document Editor
2820
-
2821
- #### Bug Fixes
2822
-
2823
- - `#234799` - Bold button is now aligned properly in modify style dialog.
2824
- - `#236061`, `#236039` - Document editor container component is now destroyed properly.
2825
- - `#234146` - Section formats are now applied properly.
2826
- - `#233556`, `#234406` - Table of Contents are now inserted properly.
2827
- - `#234249` - Multilevel lists are now exported properly.
2828
- - `#234084` - Selection is now updated properly after clear formatting.
2829
- - `#234073` - Copy is now working properly for nested table.
2830
- - `#234799` - Renaming the existing style in modify style dialog is now updated properly.
2831
- - `#234799` - Text alignment is now updating properly while modify style using style dialog.
2832
-
2833
- ## 17.1.47 (2019-05-14)
2834
-
2835
- ### Document Editor
2836
-
2837
- #### New Features
2838
-
2839
- - `#142821` - Added API to insert bookmark and fetch all bookmarks in document.
2840
- - `#142820` - Added API to insert hyperlink.
2841
-
2842
- #### Bug Fixes
2843
-
2844
- - `#230628` - Updated dialog animation.
2845
-
2846
- ## 17.1.44 (2019-05-07)
2847
-
2848
- ### Document Editor
2849
-
2850
- #### Bug Fixes
2851
-
2852
- - `#233280` - Improvised performance while updating page field.
2853
-
2854
- ## 17.1.43 (2019-04-30)
2855
-
2856
- ### Document Editor
2857
-
2858
- #### Bug Fixes
2859
-
2860
- - `#233908` - Height for merged cell is now updated properly.
2861
-
2862
- ## 17.1.42 (2019-04-23)
2863
-
2864
- ### Document Editor
2865
-
2866
- #### Bug Fixes
2867
-
2868
- - `#231353` - Text search results are now navigated properly.
2869
-
2870
- ## 17.1.41 (2019-04-16)
2871
-
2872
- ### Document Editor
2873
-
2874
- #### Bug Fixes
2875
-
2876
- - `#232616` - Document contents are now exported properly.
2877
- - `#232616` - Page hang on editing the document is fixed.
2878
- - `#232327` - Tables are now removed properly.
2879
-
2880
- ## 17.1.40 (2019-04-09)
2881
-
2882
- ### Document Editor
2883
-
2884
- #### Bug Fixes
2885
-
2886
- - Tab stop width is now calculated properly.
2887
- - First page header and footer is now layout properly.
2888
- - Scrollbar now updated properly in Internet Explorer.
2889
- - Page reload issue on button click is fixed.
2890
-
2891
- ## 17.1.38 (2019-03-29)
2892
-
2893
- ### Document Editor
2894
-
2895
- #### New Features
2896
-
2897
- - Added API to customize the default character format and paragraph format of document editor.
2898
- - Added support to customize context menu.
2899
- - Optimized text rendering.
2900
-
2901
- #### Bug Fixes
2902
-
2903
- - Section break is now serialized properly.
2904
-
2905
- ## 17.1.32-beta (2019-03-13)
2906
-
2907
- ### Document Editor
2908
-
2909
- #### New Features
2910
-
2911
- - Added API to customize the default character format and paragraph format of document editor.
2912
- - Added support to customize context menu.
2913
- - Optimized text rendering.
2914
-
2915
- #### Bug Fixes
2916
-
2917
- - Section break is now serialized properly.
2918
-
2919
- ## 16.4.54 (2019-02-19)
2920
-
2921
- ### Document Editor
2922
-
2923
- #### Bug Fixes
2924
-
2925
- - Default tab width is parsed and serialized properly.
2926
-
2927
- ## 16.4.53 (2019-02-13)
2928
-
2929
- ### Document Editor
2930
-
2931
- #### Bug Fixes
2932
-
2933
- - Table inside header is now layout properly.
2934
- - Table re-layout while editing now layout properly.
2935
- - Page break inside table is handled.
2936
-
2937
- ## 16.4.48 (2019-01-22)
2938
-
2939
- ### Document Editor
2940
-
2941
- #### Bug Fixes
2942
-
2943
- - Broken image rendering is handled.
2944
-
2945
- ## 16.4.46 (2019-01-08)
2946
-
2947
- ### Document Editor
2948
-
2949
- #### New Features
2950
-
2951
- - Table editing performance optimized.
2952
-
2953
- ## 16.4.45 (2019-01-02)
2954
-
2955
- ### Document Editor
2956
-
2957
- #### Bug Fixes
2958
-
2959
- - Table border is rendered properly.
2960
-
2961
- ## 16.4.44 (2018-12-24)
2962
-
2963
- ### Document Editor
2964
-
2965
- #### Bug Fixes
2966
-
2967
- - Tab stop now layout properly in header and footer.
2968
- - Empty header and footer now layout properly.
2969
- - Table column span values are now updated properly.
2970
-
2971
- ## 16.4.40-beta (2018-12-10)
2972
-
2973
- ### Document Editor
2974
-
2975
- #### New Features
2976
-
2977
- - Added support for Right-to-left flow direction in control.
2978
- - Added support for table auto fit layout.
2979
- - Added Document Editor Container component for toolbar and properties pane.
2980
-
2981
- ## 16.3.33 (2018-11-20)
2982
-
2983
- ### Document Editor
2984
-
2985
- #### Bug Fixes
2986
-
2987
- - Updated Readme and GitHub URL.
2988
-
2989
- ## 16.3.29 (2018-10-31)
2990
-
2991
- ### Document Editor
2992
-
2993
- #### New Features
2994
-
2995
- - Added support for input method editor.
2996
-
2997
- #### Bug Fixes
2998
-
2999
- - Images are now displayed properly.
3000
-
3001
- ## 16.3.24 (2018-10-09)
3002
-
3003
- ### Document Editor
3004
-
3005
- #### Bug Fixes
3006
-
3007
- - Resizing table columns are working properly for merged cells.
3008
-
3009
- ## 16.3.23 (2018-10-03)
3010
-
3011
- ### Document Editor
3012
-
3013
- #### New Features
3014
-
3015
- - Added `created` and `destroyed` events in `DocumentEditor`.
3016
-
3017
- ## 16.3.21 (2018-09-22)
3018
-
3019
- ### Document Editor
3020
-
3021
- #### Bug Fixes
3022
-
3023
- - Cursor position is now updated properly when placed after image, bookmark.
3024
-
3025
- ## 16.3.17 (2018-09-12)
3026
-
3027
- ### Document Editor
3028
-
3029
- #### New Features
3030
-
3031
- - Added support for Page break.
3032
- - Added `insertSectionBreak` method in `Editor` class to insert a section break at current selection.
3033
-
3034
- ## 16.2.48 (2018-08-14)
3035
-
3036
- ### Document Editor
3037
-
3038
- #### Bug Fixes
3039
-
3040
- - Selection position is now updated properly on “Enter” key inside vertical merged cell.
3041
- - The content of a page no longer overlaps on next page while editing document contents.
3042
- - Undo & redo now works properly for list text editing.
3043
- - Line height is now updated properly for the paragraph contains bookmark element alone.
3044
-
3045
- ## 16.2.46 (2018-07-30)
3046
-
3047
- ### Document Editor
3048
-
3049
- #### New Features
3050
-
3051
- - Added support for .NET Framework 4.0 and 4.5 in `Syncfusion.EJ2.DocumentEditor` NuGet package.
3052
-
3053
- ## 16.2.41 (2018-06-25)
3054
-
3055
- ### Document Editor
3056
-
3057
- The Document Editor component is used to create, edit, view, and print Word documents in web applications. All the user interactions and editing operations that run purely in the client-side provides much faster editing experience to the users.
3058
-
3059
- - Opens the native `Syncfusion Document Text (*.sfdt)` format documents in the client-side.
3060
- - Saves the documents in the client-side as `Syncfusion Document Text (*.sfdt)` and `Word document (*.docx)`.
3061
- - Supports document elements like text, inline image, table, fields, bookmark, section, header, and footer.
3062
- - Supports the commonly used fields like hyperlink, page number, page count, and table of contents.
3063
- - Supports formats like text, paragraph, bullets and numbering, table, page settings, etc.
3064
- - Provides support to create, edit, and apply paragraph and character styles.
3065
- - Provides support to find and replace text within the document.
3066
- - Supports all the common editing and formatting operations along with undo and redo.
3067
- - Provides support to cut, copy, and paste rich text contents within the component. Also allows pasting simple text to and from other applications.
3068
- - Allows user interactions like zoom, scroll, select contents through touch, mouse, and keyboard.
3069
- - Provides intuitive UI options like context menu, dialogs, and navigation pane.
3070
- - Creates a lightweight Word viewer using module injection to view and prints Word documents.
3071
- - Added `Syncfusion.EJ2.DocumentEditor` NuGet package that contains helper library for converting Word documents to `Syncfusion Document Text (*.sfdt)`. It supports .NET Standard 2.0 Framework.