@syncfusion/ej2-richtexteditor 23.2.7 → 24.1.41-569781

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 (271) hide show
  1. package/.eslintrc.json +259 -259
  2. package/CHANGELOG.md +1927 -1749
  3. package/README.md +76 -76
  4. package/dist/ej2-richtexteditor.umd.min.js +1 -10
  5. package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-richtexteditor.es2015.js +3069 -1283
  7. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  8. package/dist/es6/ej2-richtexteditor.es5.js +3173 -1386
  9. package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
  10. package/helpers/e2e/index.js +3 -3
  11. package/helpers/e2e/rte-helper.js +13 -13
  12. package/license +9 -9
  13. package/package.json +74 -74
  14. package/src/common/config.d.ts +7 -0
  15. package/src/common/config.js +12 -1
  16. package/src/common/constant.d.ts +6 -0
  17. package/src/common/constant.js +6 -0
  18. package/src/common/interface.d.ts +19 -7
  19. package/src/common/types.d.ts +6 -0
  20. package/src/common/util.d.ts +6 -0
  21. package/src/common/util.js +61 -20
  22. package/src/editor-manager/base/classes.d.ts +1 -1
  23. package/src/editor-manager/base/classes.js +1 -1
  24. package/src/editor-manager/base/constant.d.ts +6 -0
  25. package/src/editor-manager/base/constant.js +6 -0
  26. package/src/editor-manager/base/editor-manager.d.ts +8 -3
  27. package/src/editor-manager/base/editor-manager.js +62 -3
  28. package/src/editor-manager/base/enum.d.ts +2 -2
  29. package/src/editor-manager/base/interface.d.ts +17 -9
  30. package/src/editor-manager/base/types.d.ts +1 -1
  31. package/src/editor-manager/plugin/alignments.d.ts +2 -2
  32. package/src/editor-manager/plugin/alignments.js +2 -2
  33. package/src/editor-manager/plugin/audio.d.ts +3 -3
  34. package/src/editor-manager/plugin/audio.js +16 -6
  35. package/src/editor-manager/plugin/clearformat-exec.d.ts +2 -2
  36. package/src/editor-manager/plugin/clearformat-exec.js +2 -2
  37. package/src/editor-manager/plugin/clearformat.d.ts +1 -1
  38. package/src/editor-manager/plugin/clearformat.js +1 -1
  39. package/src/editor-manager/plugin/dom-node.d.ts +39 -35
  40. package/src/editor-manager/plugin/dom-node.js +203 -62
  41. package/src/editor-manager/plugin/format-painter-actions.d.ts +2 -1
  42. package/src/editor-manager/plugin/format-painter-actions.js +20 -2
  43. package/src/editor-manager/plugin/formats.d.ts +3 -2
  44. package/src/editor-manager/plugin/formats.js +40 -5
  45. package/src/editor-manager/plugin/image.d.ts +3 -3
  46. package/src/editor-manager/plugin/image.js +41 -18
  47. package/src/editor-manager/plugin/indents.d.ts +2 -2
  48. package/src/editor-manager/plugin/indents.js +2 -2
  49. package/src/editor-manager/plugin/insert-methods.d.ts +4 -4
  50. package/src/editor-manager/plugin/insert-methods.js +4 -4
  51. package/src/editor-manager/plugin/insert-text.d.ts +2 -2
  52. package/src/editor-manager/plugin/insert-text.js +2 -2
  53. package/src/editor-manager/plugin/inserthtml-exec.d.ts +2 -2
  54. package/src/editor-manager/plugin/inserthtml-exec.js +2 -2
  55. package/src/editor-manager/plugin/inserthtml.d.ts +3 -2
  56. package/src/editor-manager/plugin/inserthtml.js +69 -9
  57. package/src/editor-manager/plugin/isformatted.d.ts +8 -8
  58. package/src/editor-manager/plugin/isformatted.js +8 -8
  59. package/src/editor-manager/plugin/link.d.ts +2 -2
  60. package/src/editor-manager/plugin/link.js +6 -3
  61. package/src/editor-manager/plugin/lists.d.ts +2 -2
  62. package/src/editor-manager/plugin/lists.js +123 -67
  63. package/src/editor-manager/plugin/ms-word-clean-up.d.ts +4 -1
  64. package/src/editor-manager/plugin/ms-word-clean-up.js +216 -86
  65. package/src/editor-manager/plugin/nodecutter.d.ts +6 -6
  66. package/src/editor-manager/plugin/nodecutter.js +8 -8
  67. package/src/editor-manager/plugin/selection-commands.d.ts +2 -1
  68. package/src/editor-manager/plugin/selection-commands.js +166 -4
  69. package/src/editor-manager/plugin/selection-exec.d.ts +2 -2
  70. package/src/editor-manager/plugin/selection-exec.js +2 -2
  71. package/src/editor-manager/plugin/table.d.ts +2 -3
  72. package/src/editor-manager/plugin/table.js +35 -32
  73. package/src/editor-manager/plugin/toolbar-status.d.ts +4 -4
  74. package/src/editor-manager/plugin/toolbar-status.js +22 -12
  75. package/src/editor-manager/plugin/undo.d.ts +7 -6
  76. package/src/editor-manager/plugin/undo.js +27 -7
  77. package/src/editor-manager/plugin/video.d.ts +3 -3
  78. package/src/editor-manager/plugin/video.js +3 -3
  79. package/src/markdown-parser/base/interface.d.ts +10 -10
  80. package/src/markdown-parser/base/markdown-parser.d.ts +3 -3
  81. package/src/markdown-parser/base/markdown-parser.js +3 -3
  82. package/src/markdown-parser/base/types.d.ts +1 -1
  83. package/src/markdown-parser/plugin/clearformat.d.ts +2 -2
  84. package/src/markdown-parser/plugin/clearformat.js +2 -2
  85. package/src/markdown-parser/plugin/formats.d.ts +2 -2
  86. package/src/markdown-parser/plugin/formats.js +2 -2
  87. package/src/markdown-parser/plugin/insert-text.d.ts +2 -2
  88. package/src/markdown-parser/plugin/insert-text.js +2 -2
  89. package/src/markdown-parser/plugin/link.d.ts +2 -2
  90. package/src/markdown-parser/plugin/link.js +2 -2
  91. package/src/markdown-parser/plugin/markdown-selection.d.ts +14 -14
  92. package/src/markdown-parser/plugin/markdown-selection.js +14 -14
  93. package/src/markdown-parser/plugin/md-selection-formats.d.ts +1 -1
  94. package/src/markdown-parser/plugin/md-selection-formats.js +1 -1
  95. package/src/markdown-parser/plugin/table.d.ts +3 -3
  96. package/src/markdown-parser/plugin/table.js +3 -3
  97. package/src/markdown-parser/plugin/undo.d.ts +6 -6
  98. package/src/markdown-parser/plugin/undo.js +6 -6
  99. package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +12 -12
  100. package/src/rich-text-editor/actions/base-quick-toolbar.js +75 -24
  101. package/src/rich-text-editor/actions/base-toolbar.d.ts +3 -3
  102. package/src/rich-text-editor/actions/base-toolbar.js +35 -37
  103. package/src/rich-text-editor/actions/color-picker.d.ts +3 -2
  104. package/src/rich-text-editor/actions/color-picker.js +15 -5
  105. package/src/rich-text-editor/actions/count.d.ts +3 -3
  106. package/src/rich-text-editor/actions/count.js +4 -4
  107. package/src/rich-text-editor/actions/dropdown-buttons.d.ts +2 -2
  108. package/src/rich-text-editor/actions/dropdown-buttons.js +27 -6
  109. package/src/rich-text-editor/actions/emoji-picker.d.ts +1 -1
  110. package/src/rich-text-editor/actions/emoji-picker.js +16 -7
  111. package/src/rich-text-editor/actions/enter-key.js +6 -4
  112. package/src/rich-text-editor/actions/file-manager.js +1 -1
  113. package/src/rich-text-editor/actions/format-painter.js +1 -1
  114. package/src/rich-text-editor/actions/full-screen.d.ts +3 -3
  115. package/src/rich-text-editor/actions/full-screen.js +8 -7
  116. package/src/rich-text-editor/actions/html-editor.d.ts +5 -3
  117. package/src/rich-text-editor/actions/html-editor.js +137 -22
  118. package/src/rich-text-editor/actions/keyboard-model.d.ts +16 -16
  119. package/src/rich-text-editor/actions/keyboard.d.ts +1 -1
  120. package/src/rich-text-editor/actions/keyboard.js +23 -21
  121. package/src/rich-text-editor/actions/markdown-editor.d.ts +2 -2
  122. package/src/rich-text-editor/actions/markdown-editor.js +5 -3
  123. package/src/rich-text-editor/actions/paste-clean-up.d.ts +6 -1
  124. package/src/rich-text-editor/actions/paste-clean-up.js +157 -29
  125. package/src/rich-text-editor/actions/quick-toolbar.d.ts +16 -9
  126. package/src/rich-text-editor/actions/quick-toolbar.js +54 -20
  127. package/src/rich-text-editor/actions/resize.js +2 -1
  128. package/src/rich-text-editor/actions/toolbar-action.js +1 -1
  129. package/src/rich-text-editor/actions/toolbar.d.ts +16 -16
  130. package/src/rich-text-editor/actions/toolbar.js +48 -109
  131. package/src/rich-text-editor/actions/xhtml-validation.d.ts +1 -1
  132. package/src/rich-text-editor/actions/xhtml-validation.js +1 -1
  133. package/src/rich-text-editor/base/classes.d.ts +125 -125
  134. package/src/rich-text-editor/base/classes.js +125 -125
  135. package/src/rich-text-editor/base/constant.d.ts +195 -150
  136. package/src/rich-text-editor/base/constant.js +364 -150
  137. package/src/rich-text-editor/base/enum.d.ts +1 -1
  138. package/src/rich-text-editor/base/enum.js +1 -1
  139. package/src/rich-text-editor/base/interface.d.ts +96 -52
  140. package/src/rich-text-editor/base/interface.js +1 -1
  141. package/src/rich-text-editor/base/rich-text-editor-model.d.ts +891 -891
  142. package/src/rich-text-editor/base/rich-text-editor.d.ts +76 -64
  143. package/src/rich-text-editor/base/rich-text-editor.js +259 -163
  144. package/src/rich-text-editor/base/util.d.ts +5 -1
  145. package/src/rich-text-editor/base/util.js +58 -6
  146. package/src/rich-text-editor/formatter/formatter.d.ts +8 -8
  147. package/src/rich-text-editor/formatter/formatter.js +23 -12
  148. package/src/rich-text-editor/formatter/html-formatter.d.ts +2 -2
  149. package/src/rich-text-editor/formatter/html-formatter.js +15 -15
  150. package/src/rich-text-editor/formatter/markdown-formatter.d.ts +2 -2
  151. package/src/rich-text-editor/formatter/markdown-formatter.js +15 -15
  152. package/src/rich-text-editor/models/default-locale.js +31 -25
  153. package/src/rich-text-editor/models/iframe-settings-model.d.ts +26 -26
  154. package/src/rich-text-editor/models/iframe-settings.js +19 -19
  155. package/src/rich-text-editor/models/inline-mode-model.d.ts +11 -11
  156. package/src/rich-text-editor/models/inline-mode.js +19 -19
  157. package/src/rich-text-editor/models/items.js +3 -3
  158. package/src/rich-text-editor/models/toolbar-settings-model.d.ts +760 -760
  159. package/src/rich-text-editor/models/toolbar-settings.d.ts +1 -1
  160. package/src/rich-text-editor/models/toolbar-settings.js +20 -20
  161. package/src/rich-text-editor/renderer/audio-module.d.ts +2 -1
  162. package/src/rich-text-editor/renderer/audio-module.js +14 -1
  163. package/src/rich-text-editor/renderer/content-renderer.d.ts +6 -6
  164. package/src/rich-text-editor/renderer/content-renderer.js +6 -6
  165. package/src/rich-text-editor/renderer/dialog-renderer.d.ts +4 -2
  166. package/src/rich-text-editor/renderer/dialog-renderer.js +24 -4
  167. package/src/rich-text-editor/renderer/iframe-content-renderer.d.ts +4 -4
  168. package/src/rich-text-editor/renderer/iframe-content-renderer.js +19 -18
  169. package/src/rich-text-editor/renderer/image-module.d.ts +10 -2
  170. package/src/rich-text-editor/renderer/image-module.js +261 -220
  171. package/src/rich-text-editor/renderer/link-module.d.ts +1 -1
  172. package/src/rich-text-editor/renderer/link-module.js +54 -25
  173. package/src/rich-text-editor/renderer/markdown-renderer.d.ts +6 -6
  174. package/src/rich-text-editor/renderer/markdown-renderer.js +6 -6
  175. package/src/rich-text-editor/renderer/popup-renderer.d.ts +5 -5
  176. package/src/rich-text-editor/renderer/popup-renderer.js +5 -5
  177. package/src/rich-text-editor/renderer/render.d.ts +2 -2
  178. package/src/rich-text-editor/renderer/render.js +2 -2
  179. package/src/rich-text-editor/renderer/table-module.d.ts +11 -2
  180. package/src/rich-text-editor/renderer/table-module.js +331 -166
  181. package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +13 -15
  182. package/src/rich-text-editor/renderer/toolbar-renderer.js +114 -115
  183. package/src/rich-text-editor/renderer/video-module.d.ts +4 -1
  184. package/src/rich-text-editor/renderer/video-module.js +62 -35
  185. package/src/rich-text-editor/renderer/view-source.d.ts +7 -6
  186. package/src/rich-text-editor/renderer/view-source.js +21 -11
  187. package/src/rich-text-editor/services/renderer-factory.d.ts +3 -3
  188. package/src/rich-text-editor/services/renderer-factory.js +3 -3
  189. package/src/rich-text-editor/services/service-locator.d.ts +3 -3
  190. package/src/rich-text-editor/services/service-locator.js +3 -3
  191. package/src/selection/selection.d.ts +22 -22
  192. package/src/selection/selection.js +25 -22
  193. package/styles/_all.scss +1 -1
  194. package/styles/bootstrap-dark.css +345 -99
  195. package/styles/bootstrap.css +353 -108
  196. package/styles/bootstrap4.css +337 -95
  197. package/styles/bootstrap5-dark.css +343 -96
  198. package/styles/bootstrap5.css +343 -96
  199. package/styles/fabric-dark.css +331 -89
  200. package/styles/fabric.css +332 -90
  201. package/styles/fluent-dark.css +342 -92
  202. package/styles/fluent.css +342 -92
  203. package/styles/highcontrast-light.css +331 -89
  204. package/styles/highcontrast.css +335 -90
  205. package/styles/material-dark.css +337 -90
  206. package/styles/material.css +337 -90
  207. package/styles/material3-dark.css +347 -99
  208. package/styles/material3-dark.scss +1 -1
  209. package/styles/material3.css +347 -99
  210. package/styles/material3.scss +1 -1
  211. package/styles/rich-text-editor/_all.scss +2 -2
  212. package/styles/rich-text-editor/_bds-definition.scss +279 -0
  213. package/styles/rich-text-editor/_bootstrap-dark-definition.scss +281 -277
  214. package/styles/rich-text-editor/_bootstrap-definition.scss +337 -334
  215. package/styles/rich-text-editor/_bootstrap4-definition.scss +464 -460
  216. package/styles/rich-text-editor/_bootstrap5-definition.scss +266 -262
  217. package/styles/rich-text-editor/_fabric-dark-definition.scss +263 -259
  218. package/styles/rich-text-editor/_fabric-definition.scss +261 -257
  219. package/styles/rich-text-editor/_fluent-definition.scss +267 -263
  220. package/styles/rich-text-editor/_fusionnew-definition.scss +265 -261
  221. package/styles/rich-text-editor/_highcontrast-definition.scss +261 -257
  222. package/styles/rich-text-editor/_highcontrast-light-definition.scss +261 -257
  223. package/styles/rich-text-editor/_layout.scss +2249 -2072
  224. package/styles/rich-text-editor/_material-dark-definition.scss +266 -262
  225. package/styles/rich-text-editor/_material-definition.scss +264 -260
  226. package/styles/rich-text-editor/_material3-definition.scss +266 -262
  227. package/styles/rich-text-editor/_tailwind-definition.scss +261 -257
  228. package/styles/rich-text-editor/_theme.scss +906 -837
  229. package/styles/rich-text-editor/bootstrap-dark.css +345 -99
  230. package/styles/rich-text-editor/bootstrap.css +353 -108
  231. package/styles/rich-text-editor/bootstrap4.css +337 -95
  232. package/styles/rich-text-editor/bootstrap5-dark.css +343 -96
  233. package/styles/rich-text-editor/bootstrap5.css +343 -96
  234. package/styles/rich-text-editor/fabric-dark.css +331 -89
  235. package/styles/rich-text-editor/fabric.css +332 -90
  236. package/styles/rich-text-editor/fluent-dark.css +342 -92
  237. package/styles/rich-text-editor/fluent.css +342 -92
  238. package/styles/rich-text-editor/highcontrast-light.css +331 -89
  239. package/styles/rich-text-editor/highcontrast.css +335 -90
  240. package/styles/rich-text-editor/icons/_bds.scss +348 -0
  241. package/styles/rich-text-editor/icons/_bootstrap-dark.scss +349 -349
  242. package/styles/rich-text-editor/icons/_bootstrap.scss +349 -349
  243. package/styles/rich-text-editor/icons/_bootstrap4.scss +349 -349
  244. package/styles/rich-text-editor/icons/_bootstrap5.scss +348 -348
  245. package/styles/rich-text-editor/icons/_fabric-dark.scss +349 -349
  246. package/styles/rich-text-editor/icons/_fabric.scss +349 -349
  247. package/styles/rich-text-editor/icons/_fluent.scss +348 -348
  248. package/styles/rich-text-editor/icons/_fusionnew.scss +348 -348
  249. package/styles/rich-text-editor/icons/_highcontrast-light.scss +349 -349
  250. package/styles/rich-text-editor/icons/_highcontrast.scss +349 -349
  251. package/styles/rich-text-editor/icons/_material-dark.scss +349 -349
  252. package/styles/rich-text-editor/icons/_material.scss +349 -349
  253. package/styles/rich-text-editor/icons/_material3.scss +348 -348
  254. package/styles/rich-text-editor/icons/_tailwind.scss +348 -348
  255. package/styles/rich-text-editor/material-dark.css +337 -90
  256. package/styles/rich-text-editor/material.css +337 -90
  257. package/styles/rich-text-editor/material3-dark.css +347 -99
  258. package/styles/rich-text-editor/material3-dark.scss +1 -1
  259. package/styles/rich-text-editor/material3.css +347 -99
  260. package/styles/rich-text-editor/material3.scss +1 -1
  261. package/styles/rich-text-editor/tailwind-dark.css +386 -116
  262. package/styles/rich-text-editor/tailwind.css +386 -116
  263. package/styles/tailwind-dark.css +386 -116
  264. package/styles/tailwind.css +386 -116
  265. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -41
  266. package/.github/PULL_REQUEST_TEMPLATE/Feature.md +0 -27
  267. package/dist/ej2-richtexteditor.min.js +0 -10
  268. package/dist/global/ej2-richtexteditor.min.js +0 -11
  269. package/dist/global/ej2-richtexteditor.min.js.map +0 -1
  270. package/dist/global/index.d.ts +0 -14
  271. package/tslint.json +0 -111
package/CHANGELOG.md CHANGED
@@ -1,1749 +1,1927 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### RichTextEditor
6
-
7
- #### Bug Fixes
8
-
9
- - `#I525285`- Now, when copying content from a Word document and pasting it into the Rich Text Editor, it would not remove the non-breaking space.
10
-
11
- - `#I515735`- Now, the alternative dialog opens based on the image position, preventing unwanted scrolling.
12
-
13
- - `#I517343`- Now, the table style status is updated properly in the table quick toolbar dropdown items in the Rich Text Editor.
14
-
15
- - `#I524361`- Now, pressing the enter key when `enterKey` is configured as `BR` and the cursor is at the start of the line works properly.
16
-
17
- -`#I518641` - Now, the RichTextEditor is working properly when click the full screen toolbar icon.
18
-
19
- ## 23.2.6 (2023-11-28)
20
-
21
- ### RichTextEditor
22
-
23
- #### Bug Fixes
24
-
25
- - `#I515378` - Now, the toolbar status will be properly updated when the toolbar is enabled dynamically in the Rich Text Editor.
26
-
27
- - `#I512106` - Now, the quick toolbar will be destroyed without any script errors during page navigation.
28
-
29
- - `#I521260` - When clicking the escape key, the table creation popup closes properly in the RichTextEditor component.
30
-
31
- ## 23.2.5 (2023-11-23)
32
-
33
- ### RichTextEditor
34
-
35
- #### Bug Fixes
36
-
37
- - `#I518641` - Now, clicking the full-screen toolbar item works properly without any script errors in the RichTextEditor.
38
-
39
- - `#I517381` - Now, the maximum row limit of the table is increased to `1000` from `50` in the Rich Text Editor.
40
-
41
- ## 23.2.4 (2023-11-20)
42
-
43
- ### RichTextEditor
44
-
45
- #### Bug Fixes
46
-
47
- - `#I515728` - Now, applying the underline format to the anchor element works properly in the Rich Text Editor.
48
-
49
- - `#I503021` - Now, when using a custom dropdown button as a toolbar item to insert content using `insertHTML` in the Rich Text Editor, the cursor position is placed properly.
50
-
51
- ## 23.1.44 (2023-11-07)
52
-
53
- ### RichTextEditor
54
-
55
- #### Bug Fixes
56
-
57
- - `#I509612` - Now, the `FontName` toolbar item's status will be updated as empty when the selected text contains multiple font family styles.
58
-
59
- - `#I514862` - Now, alternate text for images is properly displayed in the input element.
60
-
61
- - `#I514862` - Now, the XSS attack is prevented in the width and height inputs of the image resize dialog in the Rich Text Editor.
62
-
63
- - `#I517445` - Now, the text alignment and other styles are maintained when pressing the enter key in the Rich Text Editor.
64
-
65
- - `#I514865` - Now, the display text with white space works properly when inserting a link in the Rich Text Editor.
66
-
67
- ## 23.1.43 (2023-10-31)
68
-
69
- ### RichTextEditor
70
-
71
- #### Bug Fixes
72
-
73
- - `#I456729` - Now, pasting the cropped images from MS Word into the Rich Text Editor works properly.
74
-
75
- - `#I500444` - Now, when pasting the list content from MS Word, the margin bottom style will be set properly.
76
-
77
- - Now, the toolbar's preview button function works properly when the Rich Text Editor `itemConfigs` property is set with `toolbarSettings`.
78
-
79
- - `#I509912` - Now, the `toolbarClick` event is triggered when the emoji picker toolbar item is clicked before the opening of the emoji picker popup.
80
-
81
- - `#I513543` - Now, pasting the content from the online MS Excel works properly without pasting any additional style content.
82
-
83
- ## 23.1.41 (2023-10-17)
84
-
85
- ### RichTextEditor
86
-
87
- #### Bug Fixes
88
-
89
- - `#I501441` - Now, entering more than one character works without any console error.
90
-
91
- - `#I502504` - Now, cancelling undo and redo actions using the `actionBegin` event's cancel argument works properly.
92
-
93
- - `#I499852` - Now, pressing the enter key when the cursor is placed next to the image after pasting the image works properly.
94
-
95
- - `#I501846` - Now the Format Painter will copy and paste the list with paragraph elements.
96
-
97
- - `#I499862` - Now, pasting contents into the RichTextEditor works properly.
98
-
99
- - `#I498006` - Now, the `NumberFormatList` and `BulletFormatList` icon functions on the Safari browser are working properly.
100
-
101
- - `#I503797` - Now, the `CMD+B` shortcut works properly in the Safari browser.
102
-
103
- ## 23.1.40 (2023-10-10)
104
-
105
- ### RichTextEditor
106
-
107
- #### Bug Fixes
108
-
109
- - `#I502310` - Now, the `value` argument in the `valueChange` event does not include the table resize helper element.
110
-
111
- ## 23.1.39 (2023-10-04)
112
-
113
- ### RichTextEditor
114
-
115
- #### Bug Fixes
116
-
117
- - `#I499363` - Now, the issue with the heading colour set to blue after copying and pasting content from MS Word has been resolved.
118
-
119
- - `#I500996` - Now, the issue with the table resize icon is missing when the mouse is dragged out of the editor and clicked outside the table has been resolved.
120
-
121
- - `#I493182` - Now, the issue with the `enablePersistence` API not working properly in the Rich Text Editor on page navigation has been resolved.
122
-
123
- - `#F184513` - Now, integrating with Mention, the `actionBegin` and `actionComplete` events work properly.
124
-
125
- - `#I488206` - Now, pasting contents into the Rich Text Editor when `enterKey` is configured as `DIV` works properly.
126
-
127
- - `#I499035` - Now, the Rich Text Editor renders properly without any `sass` compilation errors.
128
-
129
- - `#I499071` - Now, the image focus and resize class names are removed properly when the editor is focused out.
130
-
131
- - `#I497587` - Now, the RichTextEditor height property works properly in percentage value.
132
-
133
- - `#I503797` - Now, the shortcut key 'Command + B' is working fine on a Mac machine.
134
-
135
- - `#I840680` - Now, the complex table resizing will work properly for the middle columns in the Rich Text Editor.
136
-
137
- - `#I846935` - Now, the last and first column of the table resizing will work properly in the Rich Text Editor.
138
-
139
- ## 23.1.36 (2023-09-15)
140
-
141
- ### RichTextEditor
142
-
143
- #### Features
144
-
145
- - **Cropped image paste from MS Word**: This feature allows users to paste the cropped images from MS Word into the Rich Text Editor.
146
-
147
- - **Quick Format Toolbar**: `#I445348`- Introducing the Quick Format Toolbar for text support, enhancing your editing experience with convenient formatting options when selecting text in the editor.
148
-
149
- #### Bug Fixes
150
-
151
- - `#I481117` - Now, pasting multiple images from the MS Word into the Rich Text Editor works properly.
152
-
153
- - `#I494646` - Now, the full screen icon's tooltip removed properly when switching to full screen in the Rich Text Editor.
154
-
155
- - `#I493182` - Now, the `enablePersistence` API works properly in the Rich Text Editor on page navigation.
156
-
157
- - `#I491731` - Now, the indentation works properly when pasting the content from notepad.
158
-
159
- - `#I495375` - Now, the `enableHtmlSanitizer` API works properly in the Rich Text Editor.
160
-
161
- - `#F183553` - Now, pressing the enter key after opening any dialog in the Rich Text Editor doesn't submit the form.
162
-
163
- - `#I488318` - Now, the cursor position is set properly when pressing the space key in the Rich Text Editor.
164
-
165
- - `#I468317` - Now, the enter key action works properly while setting `enableXhtml` to true when there is null value in the Rich Text Editor.
166
-
167
- - `#I492704` - Now, pressing the enter key when the cursor is placed after the video works properly.
168
-
169
- - `#I481117` - Now, pasting multiple base64 images into the Rich Text Editor triggers the upload process properly.
170
-
171
- - `#I485336` - Now, the pasting multiple images into the Rich Text Editor triggers the upload process properly.
172
-
173
- - `#I496219` - Now, the tooltip is not open while opening the dialog.
174
-
175
- - `#I488318` - Now, the cursor position is set properly when pressing the space key in the Rich Text Editor.
176
-
177
- ## 22.2.12 (2023-09-05)
178
-
179
- ### RichTextEditor
180
-
181
- #### Bug Fixes
182
-
183
- - `#F183553` - Now, pressing the enter key after opening any dialog in the Rich Text Editor doesn't submit the form.
184
-
185
- ## 22.2.10 (2023-08-22)
186
-
187
- ### RichTextEditor
188
-
189
- #### Bug Fixes
190
-
191
- - `#I488885` - Now, pressing `CTRL + Enter` does not trigger the enter action in the Rich Text Editor.
192
-
193
- ## 22.2.9 (2023-08-15)
194
-
195
- ### RichTextEditor
196
-
197
- #### Bug Fixes
198
-
199
- - `#I481854` - Now, pasting the content into the Rich Text Editor, which is rendered inside the Dialog without manually focusing the editor, works properly.
200
-
201
- - `#I484797` - Now, pressing the backspace key when the cursor is placed after a line with a `br` tag works properly.
202
-
203
- ## 22.2.5 (2023-07-27)
204
-
205
- ### RichTextEditor
206
-
207
- #### Bug Fixes
208
-
209
- - `#I465794` - Now, pasting the content from MS Word works properly without any console errors in the Rich Text Editor.
210
-
211
- - `#I477643` - Now, resizing the last column in the table works properly after copying and pasting the content from MS Word in the Rich Text Editor.
212
-
213
- - `#F183438` - Now, the value of the Rich Text Editor is updated properly when the `readOnly` property is initially set to true and then changed dynamically.
214
-
215
- ## 22.1.39 (2023-07-18)
216
-
217
- ### RichTextEditor
218
-
219
- #### Bug Fixes
220
-
221
- - `#I482404`, `#I467318` - Now, pasting the content along with images from MS Word works properly in the Rich Text Editor.
222
-
223
- ## 22.1.38 (2023-07-11)
224
-
225
- ### RichTextEditor
226
-
227
- #### Bug Fixes
228
-
229
- - `#I472020` - Now, pasting content from MS Word with an image inside the table into the Rich Text Editor works properly.
230
-
231
- ## 22.1.36 (2023-06-28)
232
-
233
- ### RichTextEditor
234
-
235
- #### Bug Fixes
236
-
237
- - `#F181123` - Now, resizing the table and resizing the columns in the table work properly in the Rich Text Editor.
238
-
239
- - `#I473523` - Fixed the issue where column resizing was not working properly in the Rich Text Editor component.
240
-
241
- ## 22.1.34 (2023-06-21)
242
-
243
- ### RichTextEditor
244
-
245
- #### New Features
246
-
247
- - **Format Painter**: This feature allows users to quickly copy and apply formatting from one section of the selected text to another using keyboard shortcuts or a toolbar button.
248
-
249
- - **Emoji Picker**: This feature allows users to insert an emoji into their content by easily browsing or searching using the search option and selecting from a wide range of emojis. The emoji picker can also be accessed by pressing the colon `:` key in the editor.
250
-
251
- #### Bug Fixes
252
-
253
- - `#I471317` - Now, applying list format with an empty starting line works properly in the Rich Text Editor.
254
-
255
- - `#I456729` - Now, copying and pasting the list contents from MS Word works properly in the Rich Text Editor.
256
-
257
- - `#I469435` - Now, pressing backspace key works properly when `Mention` is used inside the Rich Text Editor.
258
-
259
- ## 21.2.10 (2023-06-13)
260
-
261
- ### RichTextEditor
262
-
263
- #### Bug Fixes
264
-
265
- - `#I465794` - Now, the bulleted list format is aligned properly when pasted from MS Word into the Rich Text Editor.
266
-
267
- - `#I468056` - Now, the table quick toolbar popup position can be changed properly in the Rich Text Editor.
268
-
269
- - `#I467318` - Now, pasting the content alone with the image from MS Word works properly in the Rich Text Editor.
270
-
271
- ## 21.2.9 (2023-06-06)
272
-
273
- ### RichTextEditor
274
-
275
- #### Bug Fixes
276
-
277
- - `#I458845` - Now, entering any value at the end of the content in the Rich Text Editor works properly.
278
-
279
- ## 21.2.8 (2023-05-30)
280
-
281
- ### RichTextEditor
282
-
283
- #### Bug Fixes
284
-
285
- - `#I464428` - Now, the underline and strikethrough toolbar status are updated properly after pasting the content.
286
-
287
- ## 21.2.6 (2023-05-23)
288
-
289
- ### RichTextEditor
290
-
291
- #### Bug Fixes
292
-
293
- - `#I456729` - Now, the table row delete works properly even after cell merging is done in the table in the Rich Text Editor.
294
-
295
- - `#I456729` - Now, the multilevel lists are aligned properly when pasting the list content from MS Word into the Rich Text Editor.
296
-
297
- - `#I459516` - Now, when using the backspace key in Rich Text Editor, the random spaces will not be removed.
298
-
299
- - `#I449973` - Now, when inserting the Mention list into the Rich Text Editor using the `Tab` key, the mention character will no longer appear.
300
-
301
- ## 21.2.5 (2023-05-16)
302
-
303
- ### RichTextEditor
304
-
305
- #### Bug Fixes
306
-
307
- - `#I456729` - Now, pasting the content alone with images from MS Word works properly in the Rich Text Editor.
308
-
309
- - `#I420916` - Now, RichTextEditor is in RTL mode, the direction of the toolbar items has changed properly.
310
-
311
- ## 21.2.4 (2023-05-09)
312
-
313
- ### RichTextEditor
314
-
315
- #### Bug Fixes
316
-
317
- - `#I439501` - Now, when pasting the list content from MS Word, the roman number list formats are aligned properly.
318
-
319
- - `#I456849` - Now, when the image is loaded from the Rich Text Editor value the resizing works properly.
320
-
321
- ## 21.1.41 (2023-04-18)
322
-
323
- ### RichTextEditor
324
-
325
- #### Bug Fixes
326
-
327
- - `#I450341` - Now, when `enableXhtml` is enabled in Rich Text Editor the `contentEditable` attribute is not removed from the `Mention` element.
328
-
329
- ## 21.1.39 (2023-04-11)
330
-
331
- ### RichTextEditor
332
-
333
- #### Bug Fixes
334
-
335
- - `#I449820` - Fixed the issue where the Placeholder was not working in Iframe mode in Rich Text Editor.
336
-
337
- - `#I450797` - Resolved issue where typed content and placeholder in the Rich Text Editor would merge when the `TAB` key was used to focus on the component.
338
-
339
- - `#I453953` - Resolved the issue where script error is thrown when clicking clear format toolbar while no content in Rich Text Editor.
340
-
341
- ## 21.1.35 (2023-03-23)
342
-
343
- ### RichTextEditor
344
-
345
- #### Bug Fixes
346
-
347
- - `#I442919` - Now, when focusing out of the Rich Text Editor, the embed YouTube video will not be removed.
348
-
349
- #### New Features
350
-
351
- - **Tooltip Integration**: The Rich Text Editor tooltip has been redesigned to more clearly display the keyboard shortcut information, making it easier for users to understand the functions of each toolbar item.
352
-
353
- ## 20.4.53 (2023-03-07)
354
-
355
- ### RichTextEditor
356
-
357
- #### Bug Fixes
358
-
359
- - `#F180013` - Resolved issue where pasting from Word with `enterKey` configuration set to `BR` did not work properly in the RichTextEditor.
360
-
361
- - `#I440490` - Now, the inline toolbar will be shown while selecting text in the Rich Text Editor using the keyboard.
362
-
363
- - `#I440456` - Now, expanding the toolbar will work properly when the width of the Rich Text Editor is half the screen size.
364
-
365
- - `#I436678` - Now, the image is not duplicated when it is pasted into the Rich Text Editor and performing `shift+enter` key action.
366
-
367
- - `#I439501` - Now, when pasting the list content from MS Word, the subset formats and alignment are maintained properly.
368
-
369
- - `#I439501` - Now, pasting the content from MS Word with the `enterKey` configured as `BR` works properly.
370
-
371
- ## 20.4.52 (2023-02-28)
372
-
373
- ### RichTextEditor
374
-
375
- #### Bug Fixes
376
-
377
- - `#I434928` - Now, the last column is not resized to the end of the table when the middle column is resized.
378
-
379
- - `#I436678` - Now, the image is not duplicated when you press the `shift+enter` key in the Rich Text Editor.
380
-
381
- - `#I438653` - Now, the font size will be updated properly in the toolbar status when it is set dynamically.
382
-
383
- - `#I437138` - Now, the pasted content from word which contains images is inserted into Rich Text Editor.
384
-
385
- - `#I439308` - Now, dynamically rendering the Rich Text Editor inside the Sidebar works properly when scrolling.
386
-
387
- - `#I440456` - Now, the list is deleted properly when pressing the backspace key, and pressing the enter key works properly after deleting the list.
388
-
389
- ## 20.4.51 (2023-02-21)
390
-
391
- ### RichTextEditor
392
-
393
- #### Bug Fixes
394
-
395
- - `#I431289` - Fixed issue where pasting text from MS Word into the Rich Text Editor and pressing enter caused bullet point text to be removed.
396
-
397
- ## 20.4.50 (2023-02-14)
398
-
399
- ### RichTextEditor
400
-
401
- #### Bug Fixes
402
-
403
- - `#I436733` - Resolved issue with missing closing tag when getting the value of the RichTextEditor text area while `enableXhtml` is true.
404
-
405
- - `#I433202` - The issue of the Rich Text Editor not adjusting to the `pasteCleanUp` popup's height when using `saveInterval` has been resolved.
406
-
407
- - `#I434928` - Fixed the script error raised and the issue with table columns couldn't be resized after cellMerge has been resolved.
408
-
409
- ## 20.4.49 (2023-02-07)
410
-
411
- ### RichTextEditor
412
-
413
- #### Bug Fixes
414
-
415
- - `#I419211` - Fixed issue where list content copied and pasted from MS Word was not properly aligned.
416
-
417
- ## 20.4.48 (2023-02-01)
418
-
419
- ### RichTextEditor
420
-
421
- #### Bug Fixes
422
-
423
- - `#I425631` - The issue of pasted text exceeding the boundaries of the `contenteditable`, when using the Enter Key as a 'BR' or 'DIV' has been resolved.
424
-
425
- - `#I430486` - Now, font size applied properly for the numbered lists in Rich Text Editor.
426
-
427
- ### RichTextEditor
428
-
429
- #### Bug Fixes
430
-
431
- - `#FB39526` - Now, the page doesn't scroll down on the initial render when custom `background/foreground` toolbars are configured.
432
-
433
- - `#I430029` - Fixed the issue with an unwanted 'A' Letter appearing at the bottom of the font color picker popup.
434
-
435
- ## 20.4.44 (2023-01-18)
436
-
437
- ### RichTextEditor
438
-
439
- #### Bug Fixes
440
-
441
- - `#F179573` - Now, when typing in the Rich Text Editor the issue of letters appearing slowly has been resolved.
442
-
443
- - `#I417838` - Now, the `Underline` and `Strikethrough` toolbar styles applied properly when we modify the `font-size` in the editor.
444
-
445
- - `#I428203` - Now, the `Numbered list` will work correctly after applying indent to the pasted list with the paste clean-up settings enabled.
446
-
447
- ## 20.4.43 (2023-01-10)
448
-
449
- ### RichTextEditor
450
-
451
- #### Bug Fixes
452
-
453
- - `#I423129` - Now, resolve the script error thrown after full screen and close the bootstrap modal dialog
454
-
455
- - `#I423129` - Now, the buttons for bold, italic, underline, and strikethrough are highlighted properly.
456
-
457
- - `#I426859` - Now, when the Rich Text Editor is included inside a Dashboard panel, no exception is raised.
458
-
459
- - `#I425631` - Now, with the `enterKey` configuration set to `BR` the script error is no longer raised while modifying values in the editor.
460
-
461
- - `#I420264` - Now, the Code Format feature will now work correctly when you copy and paste the code into the Editor with the paste clean up settings enabled.
462
-
463
- - `#I424567` - Now, the quick table toolbar is not misplaced outside the Rich Text Editor when enabling IFrame.
464
-
465
- ## 20.4.40 (2022-12-28)
466
-
467
- ### RichTextEditor
468
-
469
- #### Bug Fixes
470
-
471
- - `#I425639`, `#I425631` - Now, when editing the values in the Rich Text Editor, the script error is not thrown.
472
-
473
- - `#I423129` - The toolbar bottom border now displays correctly while maximizing and minimizing the Rich Text Editor.
474
-
475
- - `#F179458` - Now, localization text of source Code and preview in tooltip are shown properly when hover the icons.
476
-
477
- - `#F179343` - Now, maximize and minimize toolbar icon of localization text is shown properly when hover the icons.
478
-
479
- ## 20.3.47 (2022-09-29)
480
-
481
- ### RichTextEditor
482
-
483
- #### New Features
484
-
485
- - **Insert Audio & Video**: This feature allows the editor to insert `audio` and `video` files from the local path or web URL or embed URL from sources such as YouTube or Vimeo and customize it by using the quick toolbar.
486
-
487
- #### Bug Fixes
488
-
489
- - `#F177143` - When using the keyboard buttons in RTE to navigate to the next cell, the Table selection is now removed.
490
-
491
- ## 20.2.50 (2022-09-20)
492
-
493
- ### RichTextEditor
494
-
495
- #### Bug Fixes
496
-
497
- - `#I398633` - Now, when hovering over the elements inside the table body, the script error is not thrown.
498
-
499
- ## 20.2.49 (2022-09-13)
500
-
501
- ### RichTextEditor
502
-
503
- #### Bug Fixes
504
-
505
- - `#I396942` - Now, the Rich Text Editor unique Id is generated automatically when we do not set the Id property
506
-
507
- - `#F177047` - Now, the tooltip is shown for the number and bullet format list in the Rich Text Editor toolbar items.
508
-
509
- ## 20.2.46 (2022-08-30)
510
-
511
- ### RichTextEditor
512
-
513
- #### Bug Fixes
514
-
515
- - `#I386619` - Now, when you switch to full screen, there is no longer a blank white space under the toolbar in the RTE.
516
-
517
- ## 20.2.44 (2022-08-16)
518
-
519
- ### RichTextEditor
520
-
521
- #### Bug Fixes
522
-
523
- - `#I390850` - Now, the first list item will be removed properly when placing the cursor at the start of the first list item and pressing the backspace key.
524
-
525
- - `#I386938` - Now, resizing the image works properly even after resizing the Rich Text Editor using the browser window.
526
-
527
- - `#I90850` - Now the issue with ‘When selecting a list in the Rich Text Editor and pressing the shift key, the strike through and underlining styles are deleted’ has been resolved.
528
-
529
- - `#I396553` - Now, pressing the enter key after pressing backspace when the cursor is at the start of the first list item works properly in the `Firefox` browser.
530
-
531
- - `#I396244` - Now, inserting emoticons using the `executeCommand` public method after entering the `&` symbol in the editor inserts the emoticons at the correct cursor position.
532
-
533
- ## 20.2.43 (2022-08-08)
534
-
535
- ### RichTextEditor
536
-
537
- #### Bug Fixes
538
-
539
- - `#FB36307` - Now, pressing the tab key to focus out of the Rich Text Editor when Iframe mode is enabled and `saveInterval` is set as 0, the change event will be triggered properly.
540
-
541
- ## 20.2.40 (2022-07-26)
542
-
543
- ### RichTextEditor
544
-
545
- #### Bug Fixes
546
-
547
- - `#I380086` - Now, resizing the table's first and last columns when the Rich Text Editor is rendered inside the Grid component works properly.
548
-
549
- - `#I391326` - Now, the Font-family value property is case-Insensitive in the Rich Text Editor.
550
-
551
- - `#I388270` - Now, Script error is not thrown when we click background color toolbar of the RTE, which is rendered inside a table.
552
-
553
- ## 20.2.39 (2022-07-19)
554
-
555
- ### RichTextEditor
556
-
557
- #### Bug Fixes
558
-
559
- - `#I388456` - Now, when an empty span tag is loaded in the Rich Text Editor, the text displays properly.
560
-
561
- - `#I386938` - Now, the Image resize in the Rich Text Editor works properly.
562
-
563
- - `#I386940` - Now, clicking `ctrl+B` continuously in list element works properly.
564
-
565
- ## 20.2.38 (2022-07-12)
566
-
567
- ### RichTextEditor
568
-
569
- #### Bug Fixes
570
-
571
- - `#I385741` - Now, pressing the `ctrl+c` or `shift` key on the link inside the list doesn't remove the link.
572
-
573
- - `#I386619` - Now, the content area is visible properly when maximizing and minimizing the Rich Text Editor.
574
-
575
- - `#I385281` - Now, the height of the link, image, and table dialog when the RichTextEditor is in full-screen mode works properly.
576
-
577
- ## 20.2.36 (2022-06-30)
578
-
579
- ### RichTextEditor
580
-
581
- #### New Features
582
-
583
- - `#I380086` - Provided support to resize the first and last columns of a table without resizing the other columns.
584
-
585
- - `#I362331`, `F173395`, `I318486` - Provided support to insert text programmatically in the Markdown editor at the current cursor position using the `executeCommand` public method.
586
-
587
- ## 20.1.61 (2022-06-21)
588
-
589
- ### RichTextEditor
590
-
591
- #### Bug Fixes
592
-
593
- - `#I384191` - Now, pasting text content alone with images from MS Word works properly in the Rich Text Editor.
594
-
595
- ## 20.1.60 (2022-06-14)
596
-
597
- ### RichTextEditor
598
-
599
- #### Bug Fixes
600
-
601
- - `#I380279` - Now, the Image Resize icon is shown properly when Iframe is enabled.
602
-
603
- - `#I381276` - Now, image alignment is maintained with Iframe mode when focusing on the component.
604
-
605
- ## 20.1.59 (2022-06-07)
606
-
607
- ### RichTextEditor
608
-
609
- #### Bug Fixes
610
-
611
- - `#I378184` - Now, the script error is not thrown when resizing the Rich Text Editor component with inline mode.
612
-
613
- - `#I381208` - Now, applying bold multiple times using `ctrl+b` on the nested list works properly.
614
-
615
- ## 20.1.58 (2022-05-31)
616
-
617
- ### RichTextEditor
618
-
619
- #### Bug Fixes
620
-
621
- - `#I378721` - Now, pressing the enter key on the selection of multiple paragraph contents works properly in the `Firefox` browser.
622
-
623
- - `#I378378` - Now, copying and pasting the contents with a length that exceeds the `maxLength` API is properly prevented.
624
-
625
- - `#I378378` - Now, adding a link, image, and table is properly prevented when the content length exceeds the `maxLength` API limit.
626
-
627
- - `#I376816` - Now, applying the list by selecting all content that is pasted in the Rich Text Editor on the `Firefox` browser works and doesn't raise any console errors.
628
-
629
- - `#I378378` - Now, copying and pasting the contents with a length less than or equal to the `maxLength` API is pasted properly in the Rich Text Editor.
630
-
631
- - `#I380152` - Now, typing content in the Rich Text Editor when loading empty `P` tags in the `Iframe` mode works properly.
632
-
633
- - `#I380165` - Now, the focus will be maintained properly after pressing the enter key in the Rich Text Editor when loading empty `P` tags.
634
-
635
- ## 20.1.57 (2022-05-24)
636
-
637
- ### RichTextEditor
638
-
639
- #### Bug Fixes
640
-
641
- - `#I376816` - Now, pressing the backspace or delete key after selecting all list contents in the Rich Text Editor removes the list properly.
642
-
643
- ## 20.1.56 (2022-05-17)
644
-
645
- ### RichTextEditor
646
-
647
- #### Bug Fixes
648
-
649
- - `#I377121` - Now, adding the `cssClass` property will also add the CSS class to all the dependent components of the Rich Text Editor.
650
-
651
- - `#I376816` - Now, applying list by selecting all content which is pasted in the Rich Text Editor on the `Firefox` browser works properly.
652
-
653
- - `#SF-378184` - Now, the script error is not thrown when resizing the Rich Text Editor component with inline mode.
654
-
655
- ## 20.1.55 (2022-05-12)
656
-
657
- ### RichTextEditor
658
-
659
- #### Bug Fixes
660
-
661
- - `#I374234` - Now, the Rich Text Editor table resize works properly when width is configured for the parent element.
662
-
663
- ## 20.1.52 (2022-05-04)
664
-
665
- ### RichTextEditor
666
-
667
- #### Bug Fixes
668
-
669
- - `#I375434` - Now, pressing the enter key multiple times when the content is empty in the Rich Text Editor on the `Firefox` browser works properly.
670
-
671
- - `#I349917` - Now, the floating toolbar in the Rich Text Editor is displayed properly when rendered inside the modal dialog.
672
-
673
- - `#I376141` - Now, pressing enter key before the image with caption doesn't remove the image.
674
-
675
- - `#I373983` - Now, the Rich Text Editor table resize works properly when placed inside the `Grid` component.
676
-
677
- ## 20.1.51 (2022-04-26)
678
-
679
- ### RichTextEditor
680
-
681
- #### Bug Fixes
682
-
683
- - `#I373527` - Now, the font name is updated properly when using the custom font names in the Rich Text Editor.
684
-
685
- - `#I373953` - Now, inserting the table after the list element with the image doesn't remove the image from the list.
686
-
687
- - `#I372489` - Now, resizing the images with equal height and width works properly.
688
-
689
- - `#F173394` - Now, the undo and redo keys work properly when pasting the content in the Rich Text Editor.
690
-
691
- - `#SF-367649` - Now, more space between the text and inserting a new link does not remove the space between the words.
692
-
693
- ## 20.1.50 (2022-04-19)
694
-
695
- ### RichTextEditor
696
-
697
- #### Bug Fixes
698
-
699
- - `#I367373` - Now, pressing `ctrl+z` to undo the changes works properly when `enterKey` is configured as `BR`.
700
-
701
- ## 20.1.48 (2022-04-12)
702
-
703
- ### RichTextEditor
704
-
705
- #### Bug Fixes
706
-
707
- - `#F173415` - Now, the input element can be inserted in the Rich Text Editor using the `executeCommand` public method.
708
-
709
- - `#I372932` - Now, copying and pasting the content with `contenteditable` set to false doesn't add any unwanted `br` tag.
710
-
711
- - `#I370707` - Now, the font size is updated properly when removing the bullet list using the backspace key.
712
-
713
- - `#I370210` - Now, the image will be loaded properly when pasting the contents from MS Word.
714
-
715
- ## 20.1.47 (2022-04-04)
716
-
717
- ### RichTextEditor
718
-
719
- #### Bug Fixes
720
-
721
- - `#I369216` - Now, pasting the note pad with link contents is pasted properly without moving the cursor to the previous line.
722
-
723
- - `#F171703` - Now, pasting the content in the Rich Text Editor after pressing the `shift + enter` key works properly.
724
-
725
- ## 19.4.38 (2021-12-17)
726
-
727
- ### RichTextEditor
728
-
729
- #### Bug Fixes
730
-
731
- - `#I347512` - The issue with "ColorPicker of Table quick toolbar got reset every time when quick toolbar rendered" has been resolved.
732
-
733
- - `#I347324` - The issue with "pressing enter key creates a new line when read only mode is enabled dynamically" has been resolved.
734
-
735
- - `#I355194` - The issue with "console error occurs when undo icon in the toolbar is clicked after inserting the content using the `tribute js`" has been resolved.
736
-
737
- - `#I348822` - The issue with "selecting some content and applying font and background color alternatively will create some new elements" has been resolved.
738
-
739
- - `#I349275` - The issue with "image resizing is not working properly when image height is greater than image width" has been resolved.
740
-
741
- ## 19.3.53 (2021-11-12)
742
-
743
- ### RichTextEditor
744
-
745
- #### Bug Fixes
746
-
747
- - `#I346580` - The issue with "align top in the table vertical align quick toolbar is always disabled" has been resolved.
748
-
749
- - `#I346331` - The issue with "font family is not working when changed dynamically when the Rich Text Editor is in inline mode" has been resolved.
750
-
751
- - `#I346832` - The issue with "upload icon overlaps with the percentage icon in the insert image dialog when uploading" has been resolved.
752
-
753
- ## 19.3.47 (2021-10-26)
754
-
755
- ### RichTextEditor
756
-
757
- #### Bug Fixes
758
-
759
- - `#I342950` - The issue with "font-Family styles are not applied when changing dynamically" has been resolved.
760
-
761
- - `#I345842` - The issue with "Table cells with classes added initially are removed, when focusing on the table cells" has been resolved.
762
-
763
- ## 19.3.46 (2021-10-19)
764
-
765
- ### RichTextEditor
766
-
767
- #### Bug Fixes
768
-
769
- - `#I342605` - The `removeUrl` API configured controller action, now receives the image file data instead of the `src` attribute value, When removing an image from the editor.
770
-
771
- - `#I343769` - The issue with the link quick toolbar opened when placing the cursor at the first letter of the hyperlink word in the Rich Text Editor content has been resolved.
772
-
773
- ## 19.3.45 (2021-10-12)
774
-
775
- ### RichTextEditor
776
-
777
- #### Bug Fixes
778
-
779
- - `#I338000` - The issue with `actionComplete` event triggered twice, when replacing the inserted image using QuickToolbar has been resolved.
780
-
781
- - `#I343188` - The issue with "Focusing a table cell that was recently inserted in the Rich Text Editor, the page scrolls to the end and the table loses its focus" has been resolved.
782
-
783
- - `#F168838` - The issue with "Image is not inserted in the editor, when using the `Turkish` language" has been resolved.
784
-
785
- - `#I344588`, `#I344586` - The issue with "page scrolls automatically when the enter key is pressed in the Rich Text Editor" has been resolved.
786
-
787
- - `#I344588` - The issue with "content goes outside of the Rich Text Editor when the enter key is pressed twice" has been resolved.
788
-
789
- - `#I342895` - The issue with "when copy and paste content in the empty Rich Text Editor focus is lost" has been resolved.
790
-
791
- - `#F168901` - The issue with `​` character code not removed when typing in the Rich Text Editor has been resolved.
792
-
793
- - `#I340970` - The issue with "Replacing the ` ` to empty space's with the `XTHML` validation" has been resolved.
794
-
795
- - `#I342383` - The issue with "Numbered List order in the Rich Text Editor goes incorrect, when copy and pasting a list from MS word" has been resolved.
796
-
797
- ## 19.3.43 (2021-09-30)
798
-
799
- ### RichTextEditor
800
-
801
- #### New Features
802
-
803
- - `#I231505`, `#I230743`, `#I239381`, `#I261360`, `#I273955`, `#I300418`, `#I307752`,`#I312982` - Provided support to customize the tags appended when enter or shift + enter key is pressed using the property `enterKey` and `shiftEnterKey` in the Rich Text Editor.
804
-
805
- #### Breaking Changes
806
-
807
- - `#I334962` - The image size popup, now has an option to set an `auto` value.
808
-
809
- #### Bug Fixes
810
-
811
- - `#I340683` - The issue with "Text inserted outside of the Rich Text Editor, after performing `Shift + Enter` key action" has been resolved.
812
-
813
- - `#I340683` - The issue with "Pasting the text content for the second time, after clearing the value hangs the Rich Text Editor" has been resolved.
814
-
815
- - `#I339234` - The issue with "Formats like bold, italic, underline will get unselected, when clicking in editor after selecting them" has been resolved.
816
-
817
- ## 19.2.62 (2021-09-14)
818
-
819
- ### RichTextEditor
820
-
821
- #### Bug Fixes
822
-
823
- - `#I340075` - The issue with "Resizing the table columns, is not updated the table cells properly" has been resolved.
824
-
825
- - `#I332614` - The issue with "Table row and column are not resizable, when its position in the editor exceeds the height of the Rich Text Editor" has been resolved.
826
-
827
- ## 19.2.60 (2021-09-07)
828
-
829
- ### RichTextEditor
830
-
831
- #### Bug Fixes
832
-
833
- - `#I332614` - Resolved the issue with table row and column are not resizable, when its position exceeds the height of the Rich Text Editor.
834
-
835
- - `#I338000` - The issue with `actionComplete` event triggered twice, when replacing the inserted image using QuickToolbar has been resolved.
836
-
837
- - `#I340075` - The issue with "Resizing the table columns not updated the table cells properly" has been resolved.
838
-
839
- ## 19.2.59 (2021-08-31)
840
-
841
- ### RichTextEditor
842
-
843
- #### Bug Fixes
844
-
845
- - `#F167103` - The Image is not displayed, when adding next to the `hr` tag has been resolved.
846
-
847
- - `#FB24806` - The issue with "Rich Text Editor height jumps, on input in Iframe mode with custom toolbar configured" has been resolved.
848
-
849
- - `#I340017` - The issue with content area is not entirely visible, when expanding the toolbar if the `readOnly` property is enabled has been resolved.
850
-
851
- - `#FB27857` - The issue with "Cannot cancel `fullscreen` action in the `actionBegin` event" has been resolved.
852
-
853
- - `#I339831` - The issue with "Lists with multiple spans elements would produce new lists, while applying the `background-colour`" has been resolved.
854
-
855
- - `#F168085` - The issue with "Text color is removed for the range nodes, when removing the formats" has been resolved.
856
-
857
- ## 19.2.57 (2021-08-24)
858
-
859
- ### RichTextEditor
860
-
861
- #### Bug Fixes
862
-
863
- - `#I336931`- The issue with "Rich Text Editor character count increased when bold, italic, underline format applied in empty content and accessing using `getCharCount()` public method has been resolved.
864
-
865
- - `#I338261` - The issue with "Rich Text Editor hangs when pasting the word content, after clearing the value" has been resolved.
866
-
867
- - `#I339192` - The "Rich Text Editor height is not adjusted to parent element height" issue has been fixed.
868
-
869
- ## 19.2.56 (2021-08-17)
870
-
871
- ### RichTextEditor
872
-
873
- #### Bug Fixes
874
-
875
- - `#I338000` - Resolved the exception raised, when pressing the enter key after changing the font-size in RTL mode in `Firefox` browser.
876
-
877
- - `#I338062` - The issue with "Link is not generated properly, when `pasteCleanUpmodule` is imported" has been resolved.
878
-
879
- - `#I338062` - The issue with "Unable to paste url more than two times, in the Rich Text Editor" has been resolved.
880
-
881
- ## 19.2.55 (2021-08-11)
882
-
883
- ### RichTextEditor
884
-
885
- #### Bug Fixes
886
-
887
- - `#I335578` - The issue with "alignment mismatching when pasting content from MS Word in the Rich Text Editor" has been fixed.
888
-
889
- - `#I335315` - The issue with "Image size restriction not works in Drag and Drop action" has been resolved.
890
-
891
- #### New Features
892
-
893
- - `#I309446`, `#I336258` - Provided support to paste rare list contents from MS Word in the Rich Text Editor.
894
-
895
- - `#I304121` - Improvements with the `deleteKey` action in the Rich Text Editor.
896
- - Provided `showDialog`, `closeDialog` methods to opens/closes the Link, Image, Table dialogs in the Rich Text Editor.
897
-
898
- ## 19.2.51 (2021-08-03)
899
-
900
- ### RichTextEditor
901
-
902
- #### Bug Fixes
903
-
904
- - `#I324790, #I337356` - The issue with "`div` element is created instead of `paragraph` element when enter key is pressed twice to exit the list" has been fixed.
905
-
906
- - `#I336931` - The issue with "Character count is increased, when formats are being applied in empty content" has been fixed.
907
-
908
- - `#I335821` - The issue with "Upload image restriction not working with the paste action" has been resolved.
909
-
910
- ## 19.2.49 (2021-07-27)
911
-
912
- ### RichTextEditor
913
-
914
- #### Bug Fixes
915
-
916
- - `#I335580` - The issue with the Rich Text Editor toolbar status not updated, once the contents have been removed has been rectified.
917
-
918
- ## 19.2.48 (2021-07-20)
919
-
920
- ### RichTextEditor
921
-
922
- #### Bug Fixes
923
-
924
- - `#I332112`, `#I332022` - The issue with "Images change aspect ratio, when resized to smallest possible and back larger again" has been resolved.
925
-
926
- - `#FB26798` - The issue with "Rich Text Editor `change` event is not triggered in the code view" has been resolved.
927
-
928
- - `#I334073`- The issue with "`Uploader` element is not present in DOM, when drag and drop images in the Rich Text Editor" has been resolved.
929
-
930
- - `#I335073` - The issue with "Default font family applied, is not working in inline mode" has been resolved.
931
-
932
- ## 19.2.47 (2021-07-13)
933
-
934
- ### RichTextEditor
935
-
936
- #### Bug Fixes
937
-
938
- - `#I332610` - The issue with "Adding a column to a table after resizing a column resets the resized column width" has been resolved.
939
-
940
- - `#I326508` - The issue with "Content is pasted outside the edit area of the Rich Text Editor when `enableXhtml` is set true" has been resolved.
941
-
942
- - `#I332614` - The issue with "Columns and row resize not working when there is unequal number columns in all rows" has been resolved.
943
-
944
- ## 19.2.44 (2021-06-30)
945
-
946
- ### RichTextEditor
947
-
948
- #### New Features
949
-
950
- - `#I304121` - Improvements with the `backSpaceKey` action in the Rich Text Editor.
951
-
952
- - `#I292778`, `#I308312`, `#I309446`, `#I313298` - Provided the List style type and List style image support for the Numbered and Bulleted lists.
953
-
954
- #### Bug Fixes
955
-
956
- - `#I327676` - The issue with "Custom toolbar icons not disabled/enabled, when multiple custom toolbar is configured" has been resolved.
957
-
958
- - `#I330909` - The issue with "Inserting table after pressing `shit+enter` deletes all the content below in the Rich Text Editor" has been resolved.
959
-
960
- - `#F165931` - The issue with "Ordered list number color not changing, when font color is applied to the list in the Rich Text Editor" has been resolved.
961
-
962
- - `#I327566` - The issue with "Image resizing is not working properly when `resizeByPercent` is set true" has been resolved.
963
-
964
- ## 19.1.54 (2021-03-30)
965
-
966
- ### RichTextEditor
967
-
968
- #### New Features
969
-
970
- - `#257889`, `#264792`, `#280064`, `#305551`, `#316177`, - Provided support for the table cell merge and split in Rich Text Editor table properties.
971
-
972
- #### Bug Fixes
973
-
974
- - `#318815`- The issue with "Resize grip of the image freezes, after resizing for the first time" has been resolved.
975
-
976
- - `#317508`- The issue with "Resize icon of an image is not positioned properly, when height is set to the Rich Text Editor" has been resolved.
977
-
978
- - `F163544`- The issue with "Pressing the 'cmd+z' in mac after deleting all contents, deletes the first paragraph of the Rich Text Editor" has been resolved.
979
-
980
- - `F163545`- The issue with "'cmd+z' is not working after pasting the content in Mac machine" has been resolved.
981
-
982
- - `#313508` - The issue with "event 'afterImageDelete' triggers two times when removing the image using the backspace key" has been resolved.
983
-
984
- - `#313508` - The issue with "Console error is thrown, when updating the selected image with another image" has been resolved.
985
-
986
- ## 18.4.47 (2021-03-09)
987
-
988
- ### RichTextEditor
989
-
990
- #### Bug Fixes
991
-
992
- - `#317795`- The issue with "Pasting the block node contents in the Rich Text Editor" has been resolved.
993
-
994
- ## 18.4.46 (2021-03-02)
995
-
996
- ### RichTextEditor
997
-
998
- #### Bug Fixes
999
-
1000
- - `#309809` - The issue with "Unable to resize the image in the Rich Text Editor when width is set" is resolved.
1001
-
1002
- - `#314678` - Resolved the script error raised, when pasting the content after pressing the shift-enter key.
1003
-
1004
- - `F161914` - The issue with "Bold format removed for the content previous to the selection in the Rich Text Editor" is resolved.
1005
-
1006
- ## 18.4.44 (2021-02-23)
1007
-
1008
- ### RichTextEditor
1009
-
1010
- #### Bug Fixes
1011
-
1012
- - `#314104` - The issue with the "Rich Text Editor's table width is not set properly if values are configured higher" is resolved.
1013
-
1014
- - `F161887` - The issue with "Removing the italic format removes the underline format in the Rich Text Editor" is resolved.
1015
-
1016
- ## 18.4.42 (2021-02-09)
1017
-
1018
- ### RichTextEditor
1019
-
1020
- #### Bug Fixes
1021
-
1022
- - `F160581` - The issue with "The RichTextEditor table toolbar popup is hidden inside the higher Z-Index elements" has been resolved.
1023
-
1024
- ## 18.4.39 (2021-01-28)
1025
-
1026
- ### RichTextEditor
1027
-
1028
- #### Bug Fixes
1029
-
1030
- - `#296208` - Resolved the issue with the Placeholder blinks when pressing the enter key in the editor.
1031
-
1032
- - `#310044` - The issue with the resize grip alignment when the toolbar is disabled state has been resolved.
1033
-
1034
- ## 18.4.34 (2021-01-12)
1035
-
1036
- ### RichTextEditor
1037
-
1038
- #### Bug Fixes
1039
-
1040
- `#305379` - The issue with "Images getting removed when pasting images along with contents from the MS Word in the Rich Text Editor" has been resolved.
1041
-
1042
- `#301635` - The issue with "Pasting bulleted or numbered list from the MS Word doesn't maintain the font size and font styles in the Rich Text Editor" has been resolved.
1043
-
1044
- ## 18.4.33 (2021-01-05)
1045
-
1046
- ### RichTextEditor
1047
-
1048
- #### New Features
1049
-
1050
- - `F160594` - Provided new event `beforeImageDrop` that triggers before drop a image in Rich Text Editor component.
1051
-
1052
- #### Bug Fixes
1053
-
1054
- `#306799` - The issue with "deleting any rows in the table removes the first row of the table in the Rich Text Editor" has been resolved.
1055
-
1056
- ## 18.4.30 (2020-12-17)
1057
-
1058
- ### RichTextEditor
1059
-
1060
- #### New Features
1061
-
1062
- - **File Manager**: `F144048`, `#234755`, `#261368`, `#261882`, `#150871`, `#270549` - This feature allows the editor to browse and insert the images from FileManager using various remote service.
1063
-
1064
- - `F149800` - Provided new property `removeUrl` in `insertImageSettings` API to trigger the image remove operation in server, when image removed from editor.
1065
-
1066
- - `#301980` - Provided the support to return the `Xhtml` value in the `value` property when the `enableXtml` property is enabled in the Rich Text Editor.
1067
-
1068
- - `#264791`, `#295032`, `#299905`, `#F159588` - Provided the support to retain all the styles from MS Excel while pasting the content in the Rich Text Editor.
1069
-
1070
- #### Bug Fixes
1071
-
1072
- `#296208` - The issue with "the placeholder blinks when pressing enter key in the Rich Text Editor" has been resolved.
1073
-
1074
- ## 18.3.35 (2020-10-01)
1075
-
1076
- ### RichTextEditor
1077
-
1078
- #### Bug Fixes
1079
-
1080
- `#292431` - The issue with "Rich Text Editor input elements are not destroyed properly when rendered based on the conditions" has been resolved.
1081
-
1082
- ## 18.2.56 (2020-09-01)
1083
-
1084
- ### RichTextEditor
1085
-
1086
- #### Bug Fixes
1087
-
1088
- - `#290237`, `#290247` - The issue with "copy and pasting content in the Markdown Editor is not working" has been resolved.
1089
-
1090
- `#289786` - The issue with "The full screen toolbar item is not working when `readonly` mode is enabled in the Rich Text Editor" has been resolved.
1091
-
1092
- `#F156796` - The performance issue when several Rich Text Editors are rendered in a single page has been resolved.
1093
-
1094
- ## 18.2.55 (2020-08-25)
1095
-
1096
- ### RichTextEditor
1097
-
1098
- #### Bug Fixes
1099
-
1100
- `#287641` - The issue with "pasting the list content from MS Word in the Rich Text Editor removes the copied content" has been resolved.
1101
-
1102
- ## 18.2.54 (2020-08-18)
1103
-
1104
- ### RichTextEditor
1105
-
1106
- #### Bug Fixes
1107
-
1108
- `#287193` - The issue with "Script error occurs with toolbar options when placing the cursor before & after the RichTextEditor table" has been resolved.
1109
-
1110
- ## 18.2.48 (2020-08-04)
1111
-
1112
- ### RichTextEditor
1113
-
1114
- #### Bug Fixes
1115
-
1116
- - `#266152` - The issue with "List selection with delete key action does not remove lists properly" has been resolved.
1117
-
1118
- ## 18.2.46 (2020-07-21)
1119
-
1120
- ### RichTextEditor
1121
-
1122
- #### New Features
1123
-
1124
- - `#272591` - Provided new event `beforeImageUpload` that triggers before the image upload process from Rich Text Editor component.
1125
-
1126
- #### Bug Fixes
1127
-
1128
- - `#282973` - The issue with "Selecting the transparent color from the FontColor in Rich Text Editor" has been resolved.
1129
-
1130
- ## 18.2.45 (2020-07-14)
1131
-
1132
- ### RichTextEditor
1133
-
1134
- #### Bug Fixes
1135
-
1136
- - `#282644` - The issue with "Deleting the image using context menu doesn’t remove the resize and borders of the image" in the Rich Text Editor has been resolved.
1137
-
1138
- - `#273140` - The issue with "the image element which is not passed into the `actionComplete` event's argument in the Rich Text Editor" has been resolved.
1139
-
1140
- ## 18.2.44 (2020-07-07)
1141
-
1142
- ### RichTextEditor
1143
-
1144
- #### New Features
1145
-
1146
- - `#271295` - Provided public methods `showInlineToolbar` and `hideInlineToolbar` to show and hide the inline toolbars in the Rich Text Editor.
1147
-
1148
- #### Bug Fixes
1149
-
1150
- - The issue with "Rich Text Editor data binding not working in Source Code view" has been resolved.
1151
-
1152
- ## 18.1.57 (2020-06-16)
1153
-
1154
- ### RichTextEditor
1155
-
1156
- #### Bug Fixes
1157
-
1158
- - `#275859` - The issue with "throwing script error while pasting the content with table" in the Rich Text Editor has been resolved.
1159
-
1160
- - `#279019` - The issue with "pasting the content inside the nested table that breaks the HTML content in the Rich Text Editor" has been resolved.
1161
-
1162
- - `#276473` - The issue `afterImageDelete` event is not triggered when the image is removed along with text content in the Rich Text Editor" has been resolved.
1163
-
1164
- ## 18.1.54 (2020-05-26)
1165
-
1166
- ### RichTextEditor
1167
-
1168
- #### Bug Fixes
1169
-
1170
- - `#275859` - The issue with unable to edit the Rich Text Editor content after pasting the content with table has been resolved.
1171
-
1172
- ## 18.1.53 (2020-05-19)
1173
-
1174
- ### RichTextEditor
1175
-
1176
- #### Bug Fixes
1177
-
1178
- - `#F150037` - The issue with "throwing script error while dynamically enable/disable the toolbar" has been resolved.
1179
-
1180
- ## 18.1.52 (2020-05-13)
1181
-
1182
- ### RichTextEditor
1183
-
1184
- #### Bug Fixes
1185
-
1186
- - `#F152908` - The issue sub list remains after deleting the parent list element in the Rich Text Editor has been resolved.
1187
-
1188
- ## 18.1.48 (2020-05-05)
1189
-
1190
- ### RichTextEditor
1191
-
1192
- #### Bug Fixes
1193
-
1194
- - `#272406` - The issue background color format not applied properly on changing the font size in the Rich Text Editor has been resolved.
1195
-
1196
- ## 18.1.45 (2020-04-21)
1197
-
1198
- ### RichTextEditor
1199
-
1200
- #### Bug Fixes
1201
-
1202
- - `#271937` - The issue table border not applied when pasting the content from the Excel in the Rich Text Editor has been resolved.
1203
-
1204
- - `#271289` - The issue with using keyboard short cut `ctrl+k` to insert link not working in the Rich Text Editor has been resolved.
1205
-
1206
- ## 18.1.44 (2020-04-14)
1207
-
1208
- ### RichTextEditor
1209
-
1210
- #### New Features
1211
-
1212
- - `#F152228`, `#266987` - Provided an event `afterImageDelete` to be triggered after the image is removed from the Rich Text Editor content.
1213
-
1214
- #### Bug Fixes
1215
-
1216
- - `#F152859` - The issue `executeCommand` using `insertHTML` not inserting the Iframe element in the Rich Text Editor has been resolved.
1217
-
1218
- - `#267874`, `#269214`, `#271199` - Resolved the compilation error with typescript version 3.8.3
1219
-
1220
- - `#F152908` - The issue with empty sub-list not removed from Rich Text Editor has been resolved.
1221
-
1222
- ## 18.1.42 (2020-04-01)
1223
-
1224
- ### RichTextEditor
1225
-
1226
- #### New Features
1227
-
1228
- - `#266522` - Provided scrollable option support to the toolbar by setting toolbar type as `Scrollable` in Rich Text Editor.
1229
-
1230
- ## 17.4.51 (2020-02-25)
1231
-
1232
- ### RichTextEditor
1233
-
1234
- #### Bug Fixes
1235
-
1236
- - `F151491` - Resolved the issue with RichTextEditor height that is not set properly when the toolbar is disabled.
1237
-
1238
- - `F151491` - Resolved the script errors thrown when opening an insert image dialog several times.
1239
-
1240
- ## 17.4.49 (2020-02-11)
1241
-
1242
- ### RichTextEditor
1243
-
1244
- #### Bug Fixes
1245
-
1246
- - `#261548`, `#262909` - The issue with a new line added after pasting the content and focusing out in the Rich Text Editor has been resolved.
1247
-
1248
- - `#F150940` - The issue with cursor not maintained when using the `executeCommand` method with `insertHTML` in the Rich Text Editor has been resolved.
1249
-
1250
- - `#F150991` - Fixed issue with script error when RichTextEditor is dynamically rendered using setState.
1251
-
1252
- - `#F150991` - Resolved the issue with the fontName requestType is getting as fontSize after the `change` event has been triggered.
1253
-
1254
- - `#F150742` - Resolved the issue with `dialogOpen` event does not return the content element in insert image dialog.
1255
-
1256
- - `#262805` - Fixed issue `change` event triggers first time when `readonly` property is enabled.
1257
-
1258
- ## 17.4.47 (2020-02-05)
1259
-
1260
- ### RichTextEditor
1261
-
1262
- #### Bug Fixes
1263
-
1264
- - `#150737` - Resolved the issue with inserting an image dialog that was not properly rendered on mobile devices.
1265
-
1266
- - `#F150655` - The issue 'Images not uploaded into the server when pasting only an image from the MS Word in the Rich Text Editor' has been resolved.
1267
-
1268
- ## 17.4.46 (2020-01-30)
1269
-
1270
- ### RichTextEditor
1271
-
1272
- #### New Features
1273
-
1274
- - `#F149481` - Provided the support to get the selected HTML content using the `getSelectedHtml` public method.
1275
-
1276
- ## 17.4.44 (2021-01-21)
1277
-
1278
- ### RichTextEditor
1279
-
1280
- #### New Features
1281
-
1282
- - `#256724`, `#F149821` - Provided the support to insert a table using the `executeCommand` public method in the RichTextEditor.
1283
-
1284
- ## 17.4.43 (2020-01-14)
1285
-
1286
- ### RichTextEditor
1287
-
1288
- #### Bug Fixes
1289
-
1290
- - `#258971` - Resolved the issue with an image element that is appended on insert image dialog drop area when drag and drop an image.
1291
-
1292
- - `#254879` - The issue with copying and pasting MS Word content along with the image of type `v:shape` to the Rich Text Editor has been fixed.
1293
-
1294
- - `#F149899` - The issue with 'image alignment styles are not loaded when displaying the editor content on another page' in the Rich Text Editor has been fixed.
1295
-
1296
- ## 17.4.40 (2019-12-24)
1297
-
1298
- ### RichTextEditor
1299
-
1300
- #### Bug Fixes
1301
-
1302
- - `#254606` - Web accessibility related issues have been resolved.
1303
-
1304
- ## 17.4.39 (2019-12-17)
1305
-
1306
- ### RichTextEditor
1307
-
1308
- #### Bug Fixes
1309
-
1310
- - `#256452` - The Rich Text Editor is no longer allow to resize the image when `readonly` is enabled.
1311
-
1312
- - `#253296` - The issue with drag and drop text is not working inside the Rich Text Editor has been fixed.
1313
-
1314
- ### RichTextEditor
1315
-
1316
- #### New Features
1317
-
1318
- - **Callback event to custom toolbar**: The feature allows to bind click event handler to the custom toolbar items in the Rich Text Editor.
1319
-
1320
- - **Code format as toolbar button**: Provided an option to add the code format as toolbar button with toggle state in the Rich Text Editor.
1321
-
1322
- - **XHTML validation**: Provided support to validate the content of Rich Text Editor with XHTML standard.
1323
-
1324
- ## 17.3.29 (2019-11-26)
1325
-
1326
- ### RichTextEditor
1327
-
1328
- #### Bug Fixes
1329
-
1330
- - `#F149001` - The issue with customization of table cell padding and cell spacing in the Rich Text Editor has been resolved.
1331
-
1332
- ## 17.3.28 (2019-11-19)
1333
-
1334
- ### RichTextEditor
1335
-
1336
- #### Bug Fixes
1337
-
1338
- - `#254865` - Resolved the issue with an image that is not removed when pressing the delete key by enabling the `showOnRightClick` property.
1339
-
1340
- ## 17.3.19 (2019-10-22)
1341
-
1342
- ### RichTextEditor
1343
-
1344
- #### Bug Fixes
1345
-
1346
- - `#251855` - Resolved the issue with appearance of transparent color tile in Rich Text Editor's color picker.
1347
-
1348
- - `#251699` - The issue with pasting content from Word document displays unnecessary HTML content in the Rich Text Editor has been fixed.
1349
-
1350
- - `#251640` - The issue "placeholder not hidden after inserting a table or an image in the Rich Text Editor" has been fixed.
1351
-
1352
- - `#250650` - The issue with image rename in the imageUploadSuccess event not working when drag and drop an image into RichTextEditor has been fixed.
1353
-
1354
- - `#250587` - The issue with null field shown on form data headers response when drag and drop an image into RichTextEditor has been fixed.
1355
-
1356
- - `#251855` - The issue "console error is thrown, when the image upload dialog is opened in IE browser" has been fixed.
1357
-
1358
- ## 17.3.16 (2019-10-09)
1359
-
1360
- ### RichTextEditor
1361
-
1362
- #### Bug Fixes
1363
-
1364
- - `#249291` - The issue "extra empty tags are added while toggling bold or Italic style when typing the text randomly" in the Rich Text Editor has been fixed.
1365
-
1366
- ## 17.3.14 (2019-10-03)
1367
-
1368
- ### RichTextEditor
1369
-
1370
- #### Bug Fixes
1371
-
1372
- - `#249182` - The issue with localizing static texts of paste prompt dialog in the Rich Text Editor has been fixed.
1373
-
1374
- - `#249613` - The issue with pasting content from Microsoft Excel sheet that throws console error in the Rich Text Editor has been fixed.
1375
-
1376
- ## 17.3.9-beta (2019-09-20)
1377
-
1378
- ### RichTextEditor
1379
-
1380
- #### New Features
1381
-
1382
- - **Drag and drop images from local system**: The feature allows to insert the images to the editor by drag and drop from local path. The images can uploaded to the server before insert into the editor.
1383
-
1384
- - **Resizable Editor**: `#236064` - This feature allows the editor to be resized. Users can enable or disable this feature using the `enableResize` property. If `enableResize` is true, the RichTextEditor component creates grip at the bottom right corner to resize it in diagonal direction.
1385
-
1386
- - **Pasting images from Microsoft Word and Microsoft Outlook**: This feature allows you to paste the images in the editor by copying and pasting from Microsoft Word and Outlook. The images can be uploaded to the server before inserting into the editor.
1387
-
1388
- #### Bug Fixes
1389
-
1390
- - `#F146927` - The issue with copy and pasting image from MS Word to the RichTextEditor has been fixed.
1391
-
1392
- - `#246340` - The issue with pasting the content as plain-text in Rich Text Editor has been fixed.
1393
-
1394
- ## 17.2.47 (2019-08-27)
1395
-
1396
- ### RichTextEditor
1397
-
1398
- #### Bug Fixes
1399
-
1400
- - `#242999` - Now, Reactive form validates properly on `shift + tab` key action.
1401
-
1402
- - `#244796` - Floating toolbar now renders properly without alignment issue, when render the Rich Text Editor within Tab.
1403
-
1404
- - `#243448` - Performance with page scroll has been improved when multiple Rich Text Editor components are rendered in the page.
1405
-
1406
- - `#241388` - The issue with right-click option while rendering RichTextEditor inside the table has been fixed.
1407
-
1408
- ## 17.2.46 (2019-08-22)
1409
-
1410
- ### RichTextEditor
1411
-
1412
- #### New Features
1413
-
1414
- - **Image upload events**
1415
- - `#240002`, `#236690`, `#241238`, `#244320` - This feature allows images to be customized on uploading and inserting them into the editor by using the upload events image selected, image uploading, image upload success, and image upload failed. Users can rename the images before inserting them into the editor using these events.
1416
-
1417
- #### Bug Fixes
1418
-
1419
- - `#243475` - Now, you can validate max-length even showCharCount property as false.
1420
-
1421
- - `#243475` - Resolved the issue with max-length validation on pasting the content.
1422
-
1423
- - `#242999` - The key action for `tab` key and `shift + tab` key are similar now.
1424
-
1425
- ## 17.2.41 (2019-08-14)
1426
-
1427
- ### RichTextEditor
1428
-
1429
- #### New Features
1430
-
1431
- - **Support for saving images in base64**: `#240002`, `#242405` - This feature allows users to save the images in the RichTextEditor in base64 format along with the existing blob format.
1432
-
1433
- - `#242771` - Provided the support to handle both absolute and relative path links.
1434
-
1435
- #### Bug Fixes
1436
-
1437
- - `#243767` - The issue with applying selected format based on content editable has been fixed.
1438
-
1439
- ## 17.2.36 (2019-07-24)
1440
-
1441
- ### RichTextEditor
1442
-
1443
- #### Bug Fixes
1444
-
1445
- - `#242377` - The issue, "alignment is not working while pasting content from notepad" has been resolved.
1446
-
1447
- - `#F146057` - The issue, "formatting(strong and alignment) is not maintained on pasting web content" has been resolved.
1448
-
1449
- ## 17.2.35 (2019-07-17)
1450
-
1451
- ### RichTextEditor
1452
-
1453
- #### Bug Fixes
1454
-
1455
- - `#241388` - The issue, "browser context menu is not shown on right click when enabling the showOnRightClick property" has been resolved.
1456
-
1457
- ## 17.2.34 (2019-07-11)
1458
-
1459
- ### RichTextEditor
1460
-
1461
- #### Bug Fixes
1462
-
1463
- - `#F145376` - The issue, "action complete event is not triggered when deleting the content with text and images" has been resolved.
1464
-
1465
- - `#237729` - The issue "table column width is shown as pixel instead of percentage while resizing" has been fixed.
1466
-
1467
- - `#237729` - Pickers mode throws script error when selecting the color in table's quick toolbar, that issue has been fixed.
1468
-
1469
- - `#237729` - Color picker value doesn't set as RGBA(alpha) value in content editor, that issue has been fixed.
1470
-
1471
- - `#240808` - The issue "opening a link in new window throws an error for auto generated link" has been fixed.
1472
-
1473
- - `#240024` - The issue, "spacing between words is removed when focus out the editor" has been resolved.
1474
-
1475
- - `#234519`, `#234586`, `#F138909` - The issues with table and its functionalities in IE11 has been resolved.
1476
-
1477
- ## 17.2.28-beta (2019-06-27)
1478
-
1479
- ### RichTextEditor
1480
-
1481
- #### New Features
1482
-
1483
- - **Paste from Microsoft Word**: This feature allows users to paste clean-formatted HTML markup by removing all unnecessary elements, styles, and attributes from text while copying and pasting it from Microsoft Word.
1484
-
1485
- #### Breaking Changes
1486
-
1487
- - Changed the default value of the API property `allowedStyleProps` from `null` to `['background', 'background-color', 'border', 'border-bottom', 'border-left', 'border-radius', 'border-right', 'border-style', 'border-top', 'border-width', 'clear', 'color', 'cursor', 'direction', 'display', 'float', 'font', 'font-family', 'font-size', 'font-weight', 'font-style','height', 'left', 'line-height', 'margin', 'margin-top', 'margin-left', 'margin-right', 'margin-bottom', 'max-height', 'max-width', 'min-height', 'min-width', 'overflow', 'overflow-x', 'overflow-y', 'padding', 'padding-bottom', 'padding-left', 'padding-right', 'padding-top', 'position', 'right', 'table-layout', 'text-align', 'text-decoration', 'text-indent', 'top', 'vertical-align', 'visibility', 'white-space', 'width']`.
1488
-
1489
- #### Bug Fixes
1490
-
1491
- - `#238872` - Issue with cursor position when enabled list with empty editor that issue has been resolved.
1492
-
1493
- ## 17.1.49 (2019-05-29)
1494
-
1495
- ### RichTextEditor
1496
-
1497
- #### Bug Fixes
1498
-
1499
- - `#235461` - Thrown the console error while rendering the RichTextEditor within a table element and pressing the tab key from edit area that issue has been resolved.
1500
-
1501
- ## 17.1.48 (2019-05-21)
1502
-
1503
- ### RichTextEditor
1504
-
1505
- #### New Features
1506
-
1507
- - `#230976` - Opens a quick toolbar on right-click support has been provided.
1508
-
1509
- #### Bug Fixes
1510
-
1511
- - `#235120` - RichTextEditor's paste as plain text doesn't preserve line break that issue has been resolved.
1512
-
1513
- ## 17.1.43 (2019-04-30)
1514
-
1515
- ### RichTextEditor
1516
-
1517
- #### Bug Fixes
1518
-
1519
- - `#234280` - RichTextEditor's toolbar is broken when using ES2015 target that issue has been resolved.
1520
-
1521
- ## 17.1.42 (2019-04-23)
1522
-
1523
- ### RichTextEditor
1524
-
1525
- #### Bug Fixes
1526
-
1527
- - Change event doesn't trigger, when RichTextEditor blurs inside of `In-place Editor` that issue has been fixed.
1528
-
1529
- ## 17.1.40 (2019-04-09)
1530
-
1531
- ### RichTextEditor
1532
-
1533
- #### Bug Fixes
1534
-
1535
- - Insert image functionality of `RichTextEditor` is not working when render with `File Upload`, that issue has been fixed.
1536
-
1537
- ## 17.1.32-beta (2019-03-13)
1538
-
1539
- ### RichTextEditor
1540
-
1541
- #### Bug Fixes
1542
-
1543
- - Image and Table quick toolbar open while scrolling the content in the iPhone device, that issue has been fixed.
1544
-
1545
- - Getting console error while rendering inline mode with `FontColor` and `BackgroundColor` in mobile view, that issue has been fixed.
1546
-
1547
- -`Undo` and `Redo` icon visible in preview mode issue has been fixed
1548
-
1549
- #### New Features
1550
-
1551
- - **Paste cleanup**: This feature allows users to clean up HTML content when copying and pasting any other content from external sources.
1552
-
1553
- ## 16.4.55 (2019-02-27)
1554
-
1555
- ### RichTextEditor
1556
-
1557
- #### Bug Fixes
1558
-
1559
- - Insert image dialog is not rendering properly while setting the `imageUploadMessage` text as long in localization, that issue has been fixed.
1560
-
1561
- - Localization is not applied to static `DropDownButton` items, that issue has been fixed.
1562
-
1563
- ## 16.4.54 (2019-02-19)
1564
-
1565
- ### RichTextEditor
1566
-
1567
- #### Bug Fixes
1568
-
1569
- - HTML 5 form reset behaviour has been corrected.
1570
-
1571
- - Editor content rendered twice in DOM when using `RichTextEditorFor`, that issue has been fixed.
1572
-
1573
- - EJ2 compatibility styles are not worked while component rendering with `textarea` element, that issue has been fixed.
1574
-
1575
- ## 16.4.53 (2019-02-13)
1576
-
1577
- ### RichTextEditor
1578
-
1579
- #### Bug Fixes
1580
-
1581
- - Console error is thrown in IE11 browser while using the SVG element style with transform and then render the RichTextEditor in an application, that issue has been fixed.
1582
-
1583
- - HTML 5 standard issues has been fixed.
1584
-
1585
- - Cursor position changed after typed some contents issue has been fixed.
1586
-
1587
- #### Breaking Changes
1588
-
1589
- - Changed the `fontSize`, `fontFamily`, `format` properties default value as null.
1590
-
1591
- ## 16.4.48 (2019-01-22)
1592
-
1593
- ### RichTextEditor
1594
-
1595
- #### Bug Fixes
1596
-
1597
- - Table QuickToolbar open wherever click within a component issue has been fixed.
1598
-
1599
- - FontSize "px" and fontFamily "veranda" not updated in toolbar status, that issue has been fixed.
1600
-
1601
- - Clicking on view source code with single character inside textarea removes the character, that issue has been fixed.
1602
-
1603
- ## 16.4.47 (2019-01-16)
1604
-
1605
- ### RichTextEditor
1606
-
1607
- #### Bug Fixes
1608
-
1609
- - ASP.NET core data annotation issue has been fixed.
1610
-
1611
- - Console error is thrown in IE browser with angular routing, that issue has been fixed.
1612
-
1613
- - Unable to maintain the RichTextEditor color picker pop-up position when scrolling the browser has been fixed.
1614
-
1615
- ## 16.4.46 (2019-01-08)
1616
-
1617
- ### RichTextEditor
1618
-
1619
- #### Bug Fixes
1620
-
1621
- - Changing the font color of underlined text doesn’t change the color of the line, that issue has been fixed.
1622
-
1623
- - RichTextEditor injectable module is missed from import setting file in [CRG](https://crg.syncfusion.com/), that issue has been fixed.
1624
-
1625
- - The change event is triggered on clicking into HTML source code view in Edge browser, that issue has been fixed.
1626
-
1627
- - Blur event is not triggered when we change focus directly from one RTE to another RTE, that issue has been fixed.
1628
-
1629
- - RichTextEditor full screen not working properly when render inside the overflow element has been fixed.
1630
-
1631
- ## 16.4.44 (2018-12-24)
1632
-
1633
- ### RichTextEditor
1634
-
1635
- #### Bug Fixes
1636
-
1637
- - Pasted URL is not converted to links automatically, that issue has been fixed.
1638
-
1639
- - Image paste as twice in Firefox browser, that issue has been fixed.
1640
-
1641
- - The value property and getHtml method will be updated within an interval to `saveInterval` property.
1642
-
1643
- ## 16.4.40-beta (2018-12-10)
1644
-
1645
- ### RichTextEditor
1646
-
1647
- #### New Features
1648
-
1649
- - Insert table support has provided for MarkDown Editor.
1650
-
1651
- #### Bug Fixes
1652
-
1653
- - Dynamic enabling and disabling support for toolbar items has been provided.
1654
- - Image dialog's Browse button width is not adjusted based on the text issue has been resolved.
1655
-
1656
- ## 16.3.17 (2018-09-12)
1657
-
1658
- ### RichTextEditor
1659
-
1660
- #### New Features
1661
-
1662
- 1. Image resize support has been provided.
1663
- 2. Insert table support has provided for HTML Editor which includes below sub features,
1664
- 1. Create and modify the table, table rows and columns.
1665
- 2. Row and column resize.
1666
- 3. Quick toolbar interaction.
1667
- 4. Table header and custom styles.
1668
-
1669
- #### Breaking Changes
1670
-
1671
- - `setContent` method has removed, use `value` property to set the content instead.
1672
-
1673
- ## 16.2.51 (2018-09-04)
1674
-
1675
- ### RichTextEditor
1676
-
1677
- #### Bug Fixes
1678
-
1679
- - RichTextEditor modal `popup` style override issue has been resolved.
1680
- - RichTextEditor removes spacing between words when content is pasted from a word document, that
1681
- issue has been fixed.
1682
-
1683
- ## 16.2.50 (2018-08-28)
1684
-
1685
- ### RichTextEditor
1686
-
1687
- #### Bug Fixes
1688
-
1689
- - Unable to paste image copied from windows in RichTextEditor issue has been resolved.
1690
-
1691
- ## 16.2.49 (2018-08-21)
1692
-
1693
- ### RichTextEditor
1694
-
1695
- #### Bug Fixes
1696
-
1697
- - `IFrame` mode external font family removed in RichTextEditor.
1698
- - Unable to delete the selected content of RichTextEditor in inline toolbar issue has been resolved.
1699
-
1700
- ## 16.2.48 (2018-08-14)
1701
-
1702
- ### RichTextEditor
1703
-
1704
- #### Bug Fixes
1705
-
1706
- - Removed external font family in RichTextEditor source.
1707
-
1708
- ## 16.2.47 (2018-08-07)
1709
-
1710
- ### RichTextEditor
1711
-
1712
- #### Bug Fixes
1713
-
1714
- - `FontColor` and `BackgroundColor` toolbar item not rendered in inline mode issue has been resolved.
1715
- - RichTextEditor toolbar disabled mode content select console error issue has been resolved.
1716
- - Provided view encapsulation support.
1717
-
1718
- ## 16.2.45 (2018-07-17)
1719
-
1720
- ### RichTextEditor
1721
-
1722
- #### Bug Fixes
1723
-
1724
- - Provided `getText` public method from RichTextEditor.
1725
-
1726
- ## 16.2.44 (2018-07-10)
1727
-
1728
- ### RichTextEditor
1729
-
1730
- #### Bug Fixes
1731
-
1732
- - RichTextEditor `actionBegin` event missing arguments included.
1733
-
1734
- ## 16.2.41 (2018-06-25)
1735
-
1736
- ### RichTextEditor
1737
-
1738
- The rich text editor component is WYSIWYG ("what you see is what you get") editor used to create and edit the content and return valid HTML markup or markdown (MD) of the content. The editor provides a standard toolbar to format content using its commands. Modular library features to load the necessary functionality on demand. The toolbar contains commands to align the text, insert link, insert image, insert list, undo/redo operation, HTML view, and more.
1739
-
1740
- - Provides IFRAME and DIV mode.
1741
- - Handles markdown editing.
1742
- - Contains a modular library to load the necessary functionality on demand.
1743
- - Provides a fully customizable toolbar.
1744
- - HTML view to edit the source directly for developers.
1745
- - Supports to integrate third-party library.
1746
- - Preview the modified content before saving it.
1747
- - Handles images, hyperlinks, video,hyperlinks, uploads, and more.
1748
- - Contains undo/redo manager.
1749
- - Creates bulleted and numbered lists.
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ### RichTextEditor
6
+
7
+ #### Bug Fixes
8
+
9
+ - `#I559868` - Now, paste using the clean or plain text option within the RichTextEditor, the XML tags aren't added.
10
+
11
+ - `#I558265` - Now, when changing the formats using the toolbar in RichTextEditor, the cursor position is placed properly.
12
+
13
+ - `#I564770` - Now, using indents on a numbered or bulleted list in RichTextEditor, it works properly.
14
+
15
+ - `#I568007`, `#I568175` - Now, the Table Quick toolbar items are aligned properly in the Tailwind theme.
16
+
17
+ - `#F186874` - Now, the background and font color popup's collision will function correctly upon initial click.
18
+
19
+ ## 25.1.35 (2024-03-15)
20
+
21
+ ### RichTextEditor
22
+
23
+ #### Bug Fixes
24
+
25
+ - The smoothness and performance of table cell resizing have improved.
26
+
27
+ - Improved the image resize function to keep the aspect ratio when resizing.
28
+
29
+ - When Quick Toolbar is active, press <kbd>Alt + F10</kbd> to focus on Quick Toolbar items.
30
+
31
+ - `#I51118` - Now, the pasted content with the picture element will have proper source values.
32
+
33
+ - `#I555698` - Now, the customized text is shown properly in the `numberFormatList` icon's tooltip in the Rich Text Editor.
34
+
35
+ - `#I561056` - Now, the font color is applied properly to the hyperlink text when clicking the `fontcolor` icon in Rich Text Editor.
36
+
37
+ ## 24.2.9 (2024-03-05)
38
+
39
+ ### RichTextEditor
40
+
41
+ #### Bug Fixes
42
+
43
+ - `#I550863` - Now the script error doesn't show when all content is selected and pasted into the Rich Text Editor.
44
+
45
+ - `#I555677` - Now the list format is working properly when press the backspace key in a list in RichTextEditor.
46
+
47
+ - `#I558397` - Now the Emoji Picker popup is shown properly within the inline Rich Text Editor.
48
+
49
+ - `#I558168` - Now, the font color  toolbar works properly when using the inline toolbar of the Rich Text Editor.
50
+
51
+ - `#I558398` - Now, after pasting an image, the inline editor toolbar items should show properly in RichTextEditor.
52
+
53
+ ## 24.2.8 (2024-02-27)
54
+
55
+ ### RichTextEditor
56
+
57
+ #### Bug Fixes
58
+
59
+ - `#F186601` - Now, the `e-control` class name is removed properly from the body element in the Rich Text Editor.
60
+
61
+ - `#I553157` - Now the numbered and bulleted list is removed properly when deleting the entire list using the backspace key in RichTextEditor.
62
+
63
+ - `#I553375` - Now, the bullet or number list works properly when we try to remove a single line from the list in the RichTextEditor.
64
+
65
+ ## 24.2.7 (2024-02-20)
66
+
67
+ ### RichTextEditor
68
+
69
+ #### Bug Fixes
70
+
71
+ - `#I552276` - Now, pasting the image after the link in the Rich Text Editor pastes the image outside the link.
72
+
73
+ - `#I552815` - Now, override a text in the Rich Text Editor anywhere it works properly.
74
+
75
+ - `#I553375` - Now, clicking the number or bullet list button in the Rich Text Editor allows the applied list to be reverted.
76
+
77
+ - `#I553814` - Now, pressing the Enter key after pasting an image in the Rich Text Editor works properly.
78
+
79
+ - `#I540536` - Now, The issue with the addition of previous format when typing after the backspace/delete action has been resolved.
80
+
81
+ - `#I544943` - Now, pasting images along with content in different languages from MS Word in the Rich Text Editor works properly.
82
+
83
+ - `#I552726` - Now, pressing the backspace key inside the list after pressing the `shift+enter` key with background color styles works properly.
84
+
85
+ ## 24.2.4 (2024-02-06)
86
+
87
+ ### RichTextEditor
88
+
89
+ #### Bug Fixes
90
+
91
+ - `#F183065` - Now, applying the mention by using the '&' keyword in the text editor is now properly working.
92
+
93
+ - Now, the audio will be inserted properly in the Rich Text Editor `iframe` mode.
94
+
95
+ ## 24.2.3 (2024-01-31)
96
+
97
+ ### RichTextEditor
98
+
99
+ #### Bug Fixes
100
+
101
+ - `#I530749` - Now, the `change` event is triggered properly when inserting the mention list items in the Rich Text Editor.
102
+
103
+ - `#I534487` - Now, applying the bold format to the Rich Text Editor when focusing on another Rich Text Editor in the page works properly.
104
+
105
+ - `#I539510` - Now, when an empty string `value` is loaded, the cursor will not focus automatically in the Rich Text Editor.
106
+
107
+ ## 24.2.3 (2024-01-31)
108
+
109
+ ### RichTextEditor
110
+
111
+ #### Bug Fixes
112
+
113
+ - `#I534094` - Now, when using the `click` event with a custom toolbar template, the Rich Text Editor works properly.
114
+
115
+ - `#I541522` - Now, when the window is resized to the minimum width, the Rich Text Editor's content font size is updated properly.
116
+
117
+ ## 24.1.47 (2024-01-23)
118
+
119
+ ### RichTextEditor
120
+
121
+ #### Bug Fixes
122
+
123
+ - `#I542710` - Now, pressing the `tab` key in the list applies the nested list properly when the mention component is used in the Rich Text Editor.
124
+
125
+ ## 24.1.46 (2024-01-17)
126
+
127
+ ### RichTextEditor
128
+
129
+ #### Bug Fixes
130
+
131
+ - `#I537067` - Now, the content at the top is displayed properly when maximizing the Rich Text Editor with `enableFloating` set to `false`.
132
+
133
+ - `#I534484` - Now, applying the bold repeatedly to the content in the Rich Text Editor works properly, and the content doesn't get deleted.
134
+
135
+ - `#I531848` - Now, pressing the space or enter key after inserting the mention list in the Rich Text Editor doesn't scroll the page.
136
+
137
+ ## 24.1.45 (2024-01-09)
138
+
139
+ ### RichTextEditor
140
+
141
+ #### Bug Fixes
142
+
143
+ - `#I534488` - Now, applying different style formats without focusing inside the Rich Text Editor works properly.
144
+
145
+ - `#I534481` - Now, when applying the font family `Arial` to the text content in the Rich Text Editor, the toolbar status is updated properly.
146
+
147
+ ## 24.1.43 (2023-12-27)
148
+
149
+ ### RichTextEditor
150
+
151
+ #### Bug Fixes
152
+
153
+ - `#I518537` - Now, the paste format prompt dialog appears properly when pasting the content into the Rich Text Editor.
154
+
155
+ ## 24.1.41 (2023-12-18)
156
+
157
+ ### RichTextEditor
158
+
159
+ #### Bug Fixes
160
+
161
+ - `#I522154` - Now, `maxLength` property is calculated properly when pasting the content into the Rich Text Editor.
162
+
163
+ - `#F185398` - Now, `Opus` and `M4a` audio formats are supported in the Rich Text Editor.
164
+
165
+ - `#I526413` - Now, the `imageRemoving` event exposes the correct arguments in the Rich Text Editor.
166
+
167
+ - `#I527590` - Now, pasting content from the input field pastes at the cursor point instead of a new line.
168
+
169
+ - `#I511988` - Now, the `NumberFormatList` and `BulletFormatList` icons look properly and are different from each other in all the themes.
170
+
171
+ - `#I528544` - Now, the image will be deleted properly, along with the caption, when the delete key is pressed.
172
+
173
+ - `#I519493` - Now, font styles are applied properly to the numbered and bullet format list items in RichTextEditor.
174
+
175
+ - `#I518537` - Now, font family styles are properly applied to the list content when copied and pasted from MS Word.
176
+
177
+ #### Breaking Changes
178
+
179
+ - Now, the shortcut key to open the Insert video dialog has been changed to <kbd>CTRL+ALT+V </kbd> from <kbd>CTRL+SHIFT+V</kbd> to ensure that the Paste as plain text browser shortcut works properly.
180
+
181
+ ## 23.2.7 (2023-12-05)
182
+
183
+ ### RichTextEditor
184
+
185
+ #### Bug Fixes
186
+
187
+ - `#I525285`- Now, when copying content from a Word document and pasting it into the Rich Text Editor, it would not remove the non-breaking space.
188
+
189
+ - `#I515735`- Now, the alternative dialog opens based on the image position, preventing unwanted scrolling.
190
+
191
+ - `#I517343`- Now, the table style status is updated properly in the table quick toolbar dropdown items in the Rich Text Editor.
192
+
193
+ - `#I524361`- Now, pressing the enter key when `enterKey` is configured as `BR` and the cursor is at the start of the line works properly.
194
+
195
+ - `#I518641` - Now, the RichTextEditor is working properly when click the full screen toolbar icon.
196
+
197
+ ## 23.2.6 (2023-11-28)
198
+
199
+ ### RichTextEditor
200
+
201
+ #### Bug Fixes
202
+
203
+ - `#I515378` - Now, the toolbar status will be properly updated when the toolbar is enabled dynamically in the Rich Text Editor.
204
+
205
+ - `#I512106` - Now, the quick toolbar will be destroyed without any script errors during page navigation.
206
+
207
+ - `#I521260` - When clicking the escape key, the table creation popup closes properly in the RichTextEditor component.
208
+
209
+ ## 23.2.5 (2023-11-23)
210
+
211
+ ### RichTextEditor
212
+
213
+ #### Bug Fixes
214
+
215
+ - `#I518641` - Now, clicking the full-screen toolbar item works properly without any script errors in the RichTextEditor.
216
+
217
+ - `#I517381` - Now, the maximum row limit of the table is increased to `1000` from `50` in the Rich Text Editor.
218
+
219
+ ## 23.2.4 (2023-11-20)
220
+
221
+ ### RichTextEditor
222
+
223
+ #### Bug Fixes
224
+
225
+ - `#I515728` - Now, applying the underline format to the anchor element works properly in the Rich Text Editor.
226
+
227
+ - `#I503021` - Now, when using a custom dropdown button as a toolbar item to insert content using `insertHTML` in the Rich Text Editor, the cursor position is placed properly.
228
+
229
+ ## 23.1.44 (2023-11-07)
230
+
231
+ ### RichTextEditor
232
+
233
+ #### Bug Fixes
234
+
235
+ - `#I509612` - Now, the `FontName` toolbar item's status will be updated as empty when the selected text contains multiple font family styles.
236
+
237
+ - `#I514862` - Now, alternate text for images is properly displayed in the input element.
238
+
239
+ - `#I514862` - Now, the XSS attack is prevented in the width and height inputs of the image resize dialog in the Rich Text Editor.
240
+
241
+ - `#I517445` - Now, the text alignment and other styles are maintained when pressing the enter key in the Rich Text Editor.
242
+
243
+ - `#I514865` - Now, the display text with white space works properly when inserting a link in the Rich Text Editor.
244
+
245
+ ## 23.1.43 (2023-10-31)
246
+
247
+ ### RichTextEditor
248
+
249
+ #### Bug Fixes
250
+
251
+ - `#I456729` - Now, pasting the cropped images from MS Word into the Rich Text Editor works properly.
252
+
253
+ - `#I500444` - Now, when pasting the list content from MS Word, the margin bottom style will be set properly.
254
+
255
+ - Now, the toolbar's preview button function works properly when the Rich Text Editor `itemConfigs` property is set with `toolbarSettings`.
256
+
257
+ - `#I509912` - Now, the `toolbarClick` event is triggered when the emoji picker toolbar item is clicked before the opening of the emoji picker popup.
258
+
259
+ - `#I513543` - Now, pasting the content from the online MS Excel works properly without pasting any additional style content.
260
+
261
+ ## 23.1.41 (2023-10-17)
262
+
263
+ ### RichTextEditor
264
+
265
+ #### Bug Fixes
266
+
267
+ - `#I501441` - Now, entering more than one character works without any console error.
268
+
269
+ - `#I502504` - Now, cancelling undo and redo actions using the `actionBegin` event's cancel argument works properly.
270
+
271
+ - `#I499852` - Now, pressing the enter key when the cursor is placed next to the image after pasting the image works properly.
272
+
273
+ - `#I501846` - Now the Format Painter will copy and paste the list with paragraph elements.
274
+
275
+ - `#I499862` - Now, pasting contents into the RichTextEditor works properly.
276
+
277
+ - `#I498006` - Now, the `NumberFormatList` and `BulletFormatList` icon functions on the Safari browser are working properly.
278
+
279
+ - `#I503797` - Now, the `CMD+B` shortcut works properly in the Safari browser.
280
+
281
+ ## 23.1.40 (2023-10-10)
282
+
283
+ ### RichTextEditor
284
+
285
+ #### Bug Fixes
286
+
287
+ - `#I502310` - Now, the `value` argument in the `valueChange` event does not include the table resize helper element.
288
+
289
+ ## 23.1.39 (2023-10-04)
290
+
291
+ ### RichTextEditor
292
+
293
+ #### Bug Fixes
294
+
295
+ - `#I499363` - Now, the issue with the heading colour set to blue after copying and pasting content from MS Word has been resolved.
296
+
297
+ - `#I500996` - Now, the issue with the table resize icon is missing when the mouse is dragged out of the editor and clicked outside the table has been resolved.
298
+
299
+ - `#I493182` - Now, the issue with the `enablePersistence` API not working properly in the Rich Text Editor on page navigation has been resolved.
300
+
301
+ - `#F184513` - Now, integrating with Mention, the `actionBegin` and `actionComplete` events work properly.
302
+
303
+ - `#I488206` - Now, pasting contents into the Rich Text Editor when `enterKey` is configured as `DIV` works properly.
304
+
305
+ - `#I499035` - Now, the Rich Text Editor renders properly without any `sass` compilation errors.
306
+
307
+ - `#I499071` - Now, the image focus and resize class names are removed properly when the editor is focused out.
308
+
309
+ - `#I497587` - Now, the RichTextEditor height property works properly in percentage value.
310
+
311
+ - `#I503797` - Now, the shortcut key 'Command + B' is working fine on a Mac machine.
312
+
313
+ - `#I840680` - Now, the complex table resizing will work properly for the middle columns in the Rich Text Editor.
314
+
315
+ - `#I846935` - Now, the last and first column of the table resizing will work properly in the Rich Text Editor.
316
+
317
+ ## 23.1.36 (2023-09-15)
318
+
319
+ ### RichTextEditor
320
+
321
+ #### Features
322
+
323
+ - **Cropped image paste from MS Word**: This feature allows users to paste the cropped images from MS Word into the Rich Text Editor.
324
+
325
+ - **Quick Format Toolbar**: `#I445348`- Introducing the Quick Format Toolbar for text support, enhancing your editing experience with convenient formatting options when selecting text in the editor.
326
+
327
+ #### Bug Fixes
328
+
329
+ - `#I481117` - Now, pasting multiple images from the MS Word into the Rich Text Editor works properly.
330
+
331
+ - `#I494646` - Now, the full screen icon's tooltip removed properly when switching to full screen in the Rich Text Editor.
332
+
333
+ - `#I493182` - Now, the `enablePersistence` API works properly in the Rich Text Editor on page navigation.
334
+
335
+ - `#I491731` - Now, the indentation works properly when pasting the content from notepad.
336
+
337
+ - `#I495375` - Now, the `enableHtmlSanitizer` API works properly in the Rich Text Editor.
338
+
339
+ - `#F183553` - Now, pressing the enter key after opening any dialog in the Rich Text Editor doesn't submit the form.
340
+
341
+ - `#I488318` - Now, the cursor position is set properly when pressing the space key in the Rich Text Editor.
342
+
343
+ - `#I468317` - Now, the enter key action works properly while setting `enableXhtml` to true when there is null value in the Rich Text Editor.
344
+
345
+ - `#I492704` - Now, pressing the enter key when the cursor is placed after the video works properly.
346
+
347
+ - `#I481117` - Now, pasting multiple base64 images into the Rich Text Editor triggers the upload process properly.
348
+
349
+ - `#I485336` - Now, the pasting multiple images into the Rich Text Editor triggers the upload process properly.
350
+
351
+ - `#I496219` - Now, the tooltip is not open while opening the dialog.
352
+
353
+ - `#I488318` - Now, the cursor position is set properly when pressing the space key in the Rich Text Editor.
354
+
355
+ ## 22.2.12 (2023-09-05)
356
+
357
+ ### RichTextEditor
358
+
359
+ #### Bug Fixes
360
+
361
+ - `#F183553` - Now, pressing the enter key after opening any dialog in the Rich Text Editor doesn't submit the form.
362
+
363
+ ## 22.2.10 (2023-08-22)
364
+
365
+ ### RichTextEditor
366
+
367
+ #### Bug Fixes
368
+
369
+ - `#I488885` - Now, pressing `CTRL + Enter` does not trigger the enter action in the Rich Text Editor.
370
+
371
+ ## 22.2.9 (2023-08-15)
372
+
373
+ ### RichTextEditor
374
+
375
+ #### Bug Fixes
376
+
377
+ - `#I481854` - Now, pasting the content into the Rich Text Editor, which is rendered inside the Dialog without manually focusing the editor, works properly.
378
+
379
+ - `#I484797` - Now, pressing the backspace key when the cursor is placed after a line with a `br` tag works properly.
380
+
381
+ ## 22.2.5 (2023-07-27)
382
+
383
+ ### RichTextEditor
384
+
385
+ #### Bug Fixes
386
+
387
+ - `#I465794` - Now, pasting the content from MS Word works properly without any console errors in the Rich Text Editor.
388
+
389
+ - `#I477643` - Now, resizing the last column in the table works properly after copying and pasting the content from MS Word in the Rich Text Editor.
390
+
391
+ - `#F183438` - Now, the value of the Rich Text Editor is updated properly when the `readOnly` property is initially set to true and then changed dynamically.
392
+
393
+ ## 22.1.39 (2023-07-18)
394
+
395
+ ### RichTextEditor
396
+
397
+ #### Bug Fixes
398
+
399
+ - `#I482404`, `#I467318` - Now, pasting the content along with images from MS Word works properly in the Rich Text Editor.
400
+
401
+ ## 22.1.38 (2023-07-11)
402
+
403
+ ### RichTextEditor
404
+
405
+ #### Bug Fixes
406
+
407
+ - `#I472020` - Now, pasting content from MS Word with an image inside the table into the Rich Text Editor works properly.
408
+
409
+ ## 22.1.36 (2023-06-28)
410
+
411
+ ### RichTextEditor
412
+
413
+ #### Bug Fixes
414
+
415
+ - `#F181123` - Now, resizing the table and resizing the columns in the table work properly in the Rich Text Editor.
416
+
417
+ - `#I473523` - Fixed the issue where column resizing was not working properly in the Rich Text Editor component.
418
+
419
+ ## 22.1.34 (2023-06-21)
420
+
421
+ ### RichTextEditor
422
+
423
+ #### New Features
424
+
425
+ - **Format Painter**: This feature allows users to quickly copy and apply formatting from one section of the selected text to another using keyboard shortcuts or a toolbar button.
426
+
427
+ - **Emoji Picker**: This feature allows users to insert an emoji into their content by easily browsing or searching using the search option and selecting from a wide range of emojis. The emoji picker can also be accessed by pressing the colon `:` key in the editor.
428
+
429
+ #### Bug Fixes
430
+
431
+ - `#I471317` - Now, applying list format with an empty starting line works properly in the Rich Text Editor.
432
+
433
+ - `#I456729` - Now, copying and pasting the list contents from MS Word works properly in the Rich Text Editor.
434
+
435
+ - `#I469435` - Now, pressing backspace key works properly when `Mention` is used inside the Rich Text Editor.
436
+
437
+ ## 21.2.10 (2023-06-13)
438
+
439
+ ### RichTextEditor
440
+
441
+ #### Bug Fixes
442
+
443
+ - `#I465794` - Now, the bulleted list format is aligned properly when pasted from MS Word into the Rich Text Editor.
444
+
445
+ - `#I468056` - Now, the table quick toolbar popup position can be changed properly in the Rich Text Editor.
446
+
447
+ - `#I467318` - Now, pasting the content alone with the image from MS Word works properly in the Rich Text Editor.
448
+
449
+ ## 21.2.9 (2023-06-06)
450
+
451
+ ### RichTextEditor
452
+
453
+ #### Bug Fixes
454
+
455
+ - `#I458845` - Now, entering any value at the end of the content in the Rich Text Editor works properly.
456
+
457
+ ## 21.2.8 (2023-05-30)
458
+
459
+ ### RichTextEditor
460
+
461
+ #### Bug Fixes
462
+
463
+ - `#I464428` - Now, the underline and strikethrough toolbar status are updated properly after pasting the content.
464
+
465
+ ## 21.2.6 (2023-05-23)
466
+
467
+ ### RichTextEditor
468
+
469
+ #### Bug Fixes
470
+
471
+ - `#I456729` - Now, the table row delete works properly even after cell merging is done in the table in the Rich Text Editor.
472
+
473
+ - `#I456729` - Now, the multilevel lists are aligned properly when pasting the list content from MS Word into the Rich Text Editor.
474
+
475
+ - `#I459516` - Now, when using the backspace key in Rich Text Editor, the random spaces will not be removed.
476
+
477
+ - `#I449973` - Now, when inserting the Mention list into the Rich Text Editor using the `Tab` key, the mention character will no longer appear.
478
+
479
+ ## 21.2.5 (2023-05-16)
480
+
481
+ ### RichTextEditor
482
+
483
+ #### Bug Fixes
484
+
485
+ - `#I456729` - Now, pasting the content alone with images from MS Word works properly in the Rich Text Editor.
486
+
487
+ - `#I420916` - Now, RichTextEditor is in RTL mode, the direction of the toolbar items has changed properly.
488
+
489
+ ## 21.2.4 (2023-05-09)
490
+
491
+ ### RichTextEditor
492
+
493
+ #### Bug Fixes
494
+
495
+ - `#I439501` - Now, when pasting the list content from MS Word, the roman number list formats are aligned properly.
496
+
497
+ - `#I456849` - Now, when the image is loaded from the Rich Text Editor value the resizing works properly.
498
+
499
+ ## 21.1.41 (2023-04-18)
500
+
501
+ ### RichTextEditor
502
+
503
+ #### Bug Fixes
504
+
505
+ - `#I450341` - Now, when `enableXhtml` is enabled in Rich Text Editor the `contentEditable` attribute is not removed from the `Mention` element.
506
+
507
+ ## 21.1.39 (2023-04-11)
508
+
509
+ ### RichTextEditor
510
+
511
+ #### Bug Fixes
512
+
513
+ - `#I449820` - Fixed the issue where the Placeholder was not working in Iframe mode in Rich Text Editor.
514
+
515
+ - `#I450797` - Resolved issue where typed content and placeholder in the Rich Text Editor would merge when the `TAB` key was used to focus on the component.
516
+
517
+ - `#I453953` - Resolved the issue where script error is thrown when clicking clear format toolbar while no content in Rich Text Editor.
518
+
519
+ ## 21.1.35 (2023-03-23)
520
+
521
+ ### RichTextEditor
522
+
523
+ #### Bug Fixes
524
+
525
+ - `#I442919` - Now, when focusing out of the Rich Text Editor, the embed YouTube video will not be removed.
526
+
527
+ #### New Features
528
+
529
+ - **Tooltip Integration**: The Rich Text Editor tooltip has been redesigned to more clearly display the keyboard shortcut information, making it easier for users to understand the functions of each toolbar item.
530
+
531
+ ## 20.4.53 (2023-03-07)
532
+
533
+ ### RichTextEditor
534
+
535
+ #### Bug Fixes
536
+
537
+ - `#F180013` - Resolved issue where pasting from Word with `enterKey` configuration set to `BR` did not work properly in the RichTextEditor.
538
+
539
+ - `#I440490` - Now, the inline toolbar will be shown while selecting text in the Rich Text Editor using the keyboard.
540
+
541
+ - `#I440456` - Now, expanding the toolbar will work properly when the width of the Rich Text Editor is half the screen size.
542
+
543
+ - `#I436678` - Now, the image is not duplicated when it is pasted into the Rich Text Editor and performing `shift+enter` key action.
544
+
545
+ - `#I439501` - Now, when pasting the list content from MS Word, the subset formats and alignment are maintained properly.
546
+
547
+ - `#I439501` - Now, pasting the content from MS Word with the `enterKey` configured as `BR` works properly.
548
+
549
+ ## 20.4.52 (2023-02-28)
550
+
551
+ ### RichTextEditor
552
+
553
+ #### Bug Fixes
554
+
555
+ - `#I434928` - Now, the last column is not resized to the end of the table when the middle column is resized.
556
+
557
+ - `#I436678` - Now, the image is not duplicated when you press the `shift+enter` key in the Rich Text Editor.
558
+
559
+ - `#I438653` - Now, the font size will be updated properly in the toolbar status when it is set dynamically.
560
+
561
+ - `#I437138` - Now, the pasted content from word which contains images is inserted into Rich Text Editor.
562
+
563
+ - `#I439308` - Now, dynamically rendering the Rich Text Editor inside the Sidebar works properly when scrolling.
564
+
565
+ - `#I440456` - Now, the list is deleted properly when pressing the backspace key, and pressing the enter key works properly after deleting the list.
566
+
567
+ ## 20.4.51 (2023-02-21)
568
+
569
+ ### RichTextEditor
570
+
571
+ #### Bug Fixes
572
+
573
+ - `#I431289` - Fixed issue where pasting text from MS Word into the Rich Text Editor and pressing enter caused bullet point text to be removed.
574
+
575
+ ## 20.4.50 (2023-02-14)
576
+
577
+ ### RichTextEditor
578
+
579
+ #### Bug Fixes
580
+
581
+ - `#I436733` - Resolved issue with missing closing tag when getting the value of the RichTextEditor text area while `enableXhtml` is true.
582
+
583
+ - `#I433202` - The issue of the Rich Text Editor not adjusting to the `pasteCleanUp` popup's height when using `saveInterval` has been resolved.
584
+
585
+ - `#I434928` - Fixed the script error raised and the issue with table columns couldn't be resized after cellMerge has been resolved.
586
+
587
+ ## 20.4.49 (2023-02-07)
588
+
589
+ ### RichTextEditor
590
+
591
+ #### Bug Fixes
592
+
593
+ - `#I419211` - Fixed issue where list content copied and pasted from MS Word was not properly aligned.
594
+
595
+ ## 20.4.48 (2023-02-01)
596
+
597
+ ### RichTextEditor
598
+
599
+ #### Bug Fixes
600
+
601
+ - `#I425631` - The issue of pasted text exceeding the boundaries of the `contenteditable`, when using the Enter Key as a 'BR' or 'DIV' has been resolved.
602
+
603
+ - `#I430486` - Now, font size applied properly for the numbered lists in Rich Text Editor.
604
+
605
+ ### RichTextEditor
606
+
607
+ #### Bug Fixes
608
+
609
+ - `#FB39526` - Now, the page doesn't scroll down on the initial render when custom `background/foreground` toolbars are configured.
610
+
611
+ - `#I430029` - Fixed the issue with an unwanted 'A' Letter appearing at the bottom of the font color picker popup.
612
+
613
+ ## 20.4.44 (2023-01-18)
614
+
615
+ ### RichTextEditor
616
+
617
+ #### Bug Fixes
618
+
619
+ - `#F179573` - Now, when typing in the Rich Text Editor the issue of letters appearing slowly has been resolved.
620
+
621
+ - `#I417838` - Now, the `Underline` and `Strikethrough` toolbar styles applied properly when we modify the `font-size` in the editor.
622
+
623
+ - `#I428203` - Now, the `Numbered list` will work correctly after applying indent to the pasted list with the paste clean-up settings enabled.
624
+
625
+ ## 20.4.43 (2023-01-10)
626
+
627
+ ### RichTextEditor
628
+
629
+ #### Bug Fixes
630
+
631
+ - `#I423129` - Now, resolve the script error thrown after full screen and close the bootstrap modal dialog
632
+
633
+ - `#I423129` - Now, the buttons for bold, italic, underline, and strikethrough are highlighted properly.
634
+
635
+ - `#I426859` - Now, when the Rich Text Editor is included inside a Dashboard panel, no exception is raised.
636
+
637
+ - `#I425631` - Now, with the `enterKey` configuration set to `BR` the script error is no longer raised while modifying values in the editor.
638
+
639
+ - `#I420264` - Now, the Code Format feature will now work correctly when you copy and paste the code into the Editor with the paste clean up settings enabled.
640
+
641
+ - `#I424567` - Now, the quick table toolbar is not misplaced outside the Rich Text Editor when enabling IFrame.
642
+
643
+ ## 20.4.40 (2022-12-28)
644
+
645
+ ### RichTextEditor
646
+
647
+ #### Bug Fixes
648
+
649
+ - `#I425639`, `#I425631` - Now, when editing the values in the Rich Text Editor, the script error is not thrown.
650
+
651
+ - `#I423129` - The toolbar bottom border now displays correctly while maximizing and minimizing the Rich Text Editor.
652
+
653
+ - `#F179458` - Now, localization text of source Code and preview in tooltip are shown properly when hover the icons.
654
+
655
+ - `#F179343` - Now, maximize and minimize toolbar icon of localization text is shown properly when hover the icons.
656
+
657
+ ## 20.3.47 (2022-09-29)
658
+
659
+ ### RichTextEditor
660
+
661
+ #### New Features
662
+
663
+ - **Insert Audio & Video**: This feature allows the editor to insert `audio` and `video` files from the local path or web URL or embed URL from sources such as YouTube or Vimeo and customize it by using the quick toolbar.
664
+
665
+ #### Bug Fixes
666
+
667
+ - `#F177143` - When using the keyboard buttons in RTE to navigate to the next cell, the Table selection is now removed.
668
+
669
+ ## 20.2.50 (2022-09-20)
670
+
671
+ ### RichTextEditor
672
+
673
+ #### Bug Fixes
674
+
675
+ - `#I398633` - Now, when hovering over the elements inside the table body, the script error is not thrown.
676
+
677
+ ## 20.2.49 (2022-09-13)
678
+
679
+ ### RichTextEditor
680
+
681
+ #### Bug Fixes
682
+
683
+ - `#I396942` - Now, the Rich Text Editor unique Id is generated automatically when we do not set the Id property
684
+
685
+ - `#F177047` - Now, the tooltip is shown for the number and bullet format list in the Rich Text Editor toolbar items.
686
+
687
+ ## 20.2.46 (2022-08-30)
688
+
689
+ ### RichTextEditor
690
+
691
+ #### Bug Fixes
692
+
693
+ - `#I386619` - Now, when you switch to full screen, there is no longer a blank white space under the toolbar in the RTE.
694
+
695
+ ## 20.2.44 (2022-08-16)
696
+
697
+ ### RichTextEditor
698
+
699
+ #### Bug Fixes
700
+
701
+ - `#I390850` - Now, the first list item will be removed properly when placing the cursor at the start of the first list item and pressing the backspace key.
702
+
703
+ - `#I386938` - Now, resizing the image works properly even after resizing the Rich Text Editor using the browser window.
704
+
705
+ - `#I90850` - Now the issue with ‘When selecting a list in the Rich Text Editor and pressing the shift key, the strike through and underlining styles are deleted’ has been resolved.
706
+
707
+ - `#I396553` - Now, pressing the enter key after pressing backspace when the cursor is at the start of the first list item works properly in the `Firefox` browser.
708
+
709
+ - `#I396244` - Now, inserting emoticons using the `executeCommand` public method after entering the `&` symbol in the editor inserts the emoticons at the correct cursor position.
710
+
711
+ ## 20.2.43 (2022-08-08)
712
+
713
+ ### RichTextEditor
714
+
715
+ #### Bug Fixes
716
+
717
+ - `#FB36307` - Now, pressing the tab key to focus out of the Rich Text Editor when Iframe mode is enabled and `saveInterval` is set as 0, the change event will be triggered properly.
718
+
719
+ ## 20.2.40 (2022-07-26)
720
+
721
+ ### RichTextEditor
722
+
723
+ #### Bug Fixes
724
+
725
+ - `#I380086` - Now, resizing the table's first and last columns when the Rich Text Editor is rendered inside the Grid component works properly.
726
+
727
+ - `#I391326` - Now, the Font-family value property is case-Insensitive in the Rich Text Editor.
728
+
729
+ - `#I388270` - Now, Script error is not thrown when we click background color toolbar of the RTE, which is rendered inside a table.
730
+
731
+ ## 20.2.39 (2022-07-19)
732
+
733
+ ### RichTextEditor
734
+
735
+ #### Bug Fixes
736
+
737
+ - `#I388456` - Now, when an empty span tag is loaded in the Rich Text Editor, the text displays properly.
738
+
739
+ - `#I386938` - Now, the Image resize in the Rich Text Editor works properly.
740
+
741
+ - `#I386940` - Now, clicking `ctrl+B` continuously in list element works properly.
742
+
743
+ ## 20.2.38 (2022-07-12)
744
+
745
+ ### RichTextEditor
746
+
747
+ #### Bug Fixes
748
+
749
+ - `#I385741` - Now, pressing the `ctrl+c` or `shift` key on the link inside the list doesn't remove the link.
750
+
751
+ - `#I386619` - Now, the content area is visible properly when maximizing and minimizing the Rich Text Editor.
752
+
753
+ - `#I385281` - Now, the height of the link, image, and table dialog when the RichTextEditor is in full-screen mode works properly.
754
+
755
+ ## 20.2.36 (2022-06-30)
756
+
757
+ ### RichTextEditor
758
+
759
+ #### New Features
760
+
761
+ - `#I380086` - Provided support to resize the first and last columns of a table without resizing the other columns.
762
+
763
+ - `#I362331`, `F173395`, `I318486` - Provided support to insert text programmatically in the Markdown editor at the current cursor position using the `executeCommand` public method.
764
+
765
+ ## 20.1.61 (2022-06-21)
766
+
767
+ ### RichTextEditor
768
+
769
+ #### Bug Fixes
770
+
771
+ - `#I384191` - Now, pasting text content alone with images from MS Word works properly in the Rich Text Editor.
772
+
773
+ ## 20.1.60 (2022-06-14)
774
+
775
+ ### RichTextEditor
776
+
777
+ #### Bug Fixes
778
+
779
+ - `#I380279` - Now, the Image Resize icon is shown properly when Iframe is enabled.
780
+
781
+ - `#I381276` - Now, image alignment is maintained with Iframe mode when focusing on the component.
782
+
783
+ ## 20.1.59 (2022-06-07)
784
+
785
+ ### RichTextEditor
786
+
787
+ #### Bug Fixes
788
+
789
+ - `#I378184` - Now, the script error is not thrown when resizing the Rich Text Editor component with inline mode.
790
+
791
+ - `#I381208` - Now, applying bold multiple times using `ctrl+b` on the nested list works properly.
792
+
793
+ ## 20.1.58 (2022-05-31)
794
+
795
+ ### RichTextEditor
796
+
797
+ #### Bug Fixes
798
+
799
+ - `#I378721` - Now, pressing the enter key on the selection of multiple paragraph contents works properly in the `Firefox` browser.
800
+
801
+ - `#I378378` - Now, copying and pasting the contents with a length that exceeds the `maxLength` API is properly prevented.
802
+
803
+ - `#I378378` - Now, adding a link, image, and table is properly prevented when the content length exceeds the `maxLength` API limit.
804
+
805
+ - `#I376816` - Now, applying the list by selecting all content that is pasted in the Rich Text Editor on the `Firefox` browser works and doesn't raise any console errors.
806
+
807
+ - `#I378378` - Now, copying and pasting the contents with a length less than or equal to the `maxLength` API is pasted properly in the Rich Text Editor.
808
+
809
+ - `#I380152` - Now, typing content in the Rich Text Editor when loading empty `P` tags in the `Iframe` mode works properly.
810
+
811
+ - `#I380165` - Now, the focus will be maintained properly after pressing the enter key in the Rich Text Editor when loading empty `P` tags.
812
+
813
+ ## 20.1.57 (2022-05-24)
814
+
815
+ ### RichTextEditor
816
+
817
+ #### Bug Fixes
818
+
819
+ - `#I376816` - Now, pressing the backspace or delete key after selecting all list contents in the Rich Text Editor removes the list properly.
820
+
821
+ ## 20.1.56 (2022-05-17)
822
+
823
+ ### RichTextEditor
824
+
825
+ #### Bug Fixes
826
+
827
+ - `#I377121` - Now, adding the `cssClass` property will also add the CSS class to all the dependent components of the Rich Text Editor.
828
+
829
+ - `#I376816` - Now, applying list by selecting all content which is pasted in the Rich Text Editor on the `Firefox` browser works properly.
830
+
831
+ - `#SF-378184` - Now, the script error is not thrown when resizing the Rich Text Editor component with inline mode.
832
+
833
+ ## 20.1.55 (2022-05-12)
834
+
835
+ ### RichTextEditor
836
+
837
+ #### Bug Fixes
838
+
839
+ - `#I374234` - Now, the Rich Text Editor table resize works properly when width is configured for the parent element.
840
+
841
+ ## 20.1.52 (2022-05-04)
842
+
843
+ ### RichTextEditor
844
+
845
+ #### Bug Fixes
846
+
847
+ - `#I375434` - Now, pressing the enter key multiple times when the content is empty in the Rich Text Editor on the `Firefox` browser works properly.
848
+
849
+ - `#I349917` - Now, the floating toolbar in the Rich Text Editor is displayed properly when rendered inside the modal dialog.
850
+
851
+ - `#I376141` - Now, pressing enter key before the image with caption doesn't remove the image.
852
+
853
+ - `#I373983` - Now, the Rich Text Editor table resize works properly when placed inside the `Grid` component.
854
+
855
+ ## 20.1.51 (2022-04-26)
856
+
857
+ ### RichTextEditor
858
+
859
+ #### Bug Fixes
860
+
861
+ - `#I373527` - Now, the font name is updated properly when using the custom font names in the Rich Text Editor.
862
+
863
+ - `#I373953` - Now, inserting the table after the list element with the image doesn't remove the image from the list.
864
+
865
+ - `#I372489` - Now, resizing the images with equal height and width works properly.
866
+
867
+ - `#F173394` - Now, the undo and redo keys work properly when pasting the content in the Rich Text Editor.
868
+
869
+ - `#SF-367649` - Now, more space between the text and inserting a new link does not remove the space between the words.
870
+
871
+ ## 20.1.50 (2022-04-19)
872
+
873
+ ### RichTextEditor
874
+
875
+ #### Bug Fixes
876
+
877
+ - `#I367373` - Now, pressing `ctrl+z` to undo the changes works properly when `enterKey` is configured as `BR`.
878
+
879
+ ## 20.1.48 (2022-04-12)
880
+
881
+ ### RichTextEditor
882
+
883
+ #### Bug Fixes
884
+
885
+ - `#F173415` - Now, the input element can be inserted in the Rich Text Editor using the `executeCommand` public method.
886
+
887
+ - `#I372932` - Now, copying and pasting the content with `contenteditable` set to false doesn't add any unwanted `br` tag.
888
+
889
+ - `#I370707` - Now, the font size is updated properly when removing the bullet list using the backspace key.
890
+
891
+ - `#I370210` - Now, the image will be loaded properly when pasting the contents from MS Word.
892
+
893
+ ## 20.1.47 (2022-04-04)
894
+
895
+ ### RichTextEditor
896
+
897
+ #### Bug Fixes
898
+
899
+ - `#I369216` - Now, pasting the note pad with link contents is pasted properly without moving the cursor to the previous line.
900
+
901
+ - `#F171703` - Now, pasting the content in the Rich Text Editor after pressing the `shift + enter` key works properly.
902
+
903
+ ## 19.4.38 (2021-12-17)
904
+
905
+ ### RichTextEditor
906
+
907
+ #### Bug Fixes
908
+
909
+ - `#I347512` - The issue with "ColorPicker of Table quick toolbar got reset every time when quick toolbar rendered" has been resolved.
910
+
911
+ - `#I347324` - The issue with "pressing enter key creates a new line when read only mode is enabled dynamically" has been resolved.
912
+
913
+ - `#I355194` - The issue with "console error occurs when undo icon in the toolbar is clicked after inserting the content using the `tribute js`" has been resolved.
914
+
915
+ - `#I348822` - The issue with "selecting some content and applying font and background color alternatively will create some new elements" has been resolved.
916
+
917
+ - `#I349275` - The issue with "image resizing is not working properly when image height is greater than image width" has been resolved.
918
+
919
+ ## 19.3.53 (2021-11-12)
920
+
921
+ ### RichTextEditor
922
+
923
+ #### Bug Fixes
924
+
925
+ - `#I346580` - The issue with "align top in the table vertical align quick toolbar is always disabled" has been resolved.
926
+
927
+ - `#I346331` - The issue with "font family is not working when changed dynamically when the Rich Text Editor is in inline mode" has been resolved.
928
+
929
+ - `#I346832` - The issue with "upload icon overlaps with the percentage icon in the insert image dialog when uploading" has been resolved.
930
+
931
+ ## 19.3.47 (2021-10-26)
932
+
933
+ ### RichTextEditor
934
+
935
+ #### Bug Fixes
936
+
937
+ - `#I342950` - The issue with "font-Family styles are not applied when changing dynamically" has been resolved.
938
+
939
+ - `#I345842` - The issue with "Table cells with classes added initially are removed, when focusing on the table cells" has been resolved.
940
+
941
+ ## 19.3.46 (2021-10-19)
942
+
943
+ ### RichTextEditor
944
+
945
+ #### Bug Fixes
946
+
947
+ - `#I342605` - The `removeUrl` API configured controller action, now receives the image file data instead of the `src` attribute value, When removing an image from the editor.
948
+
949
+ - `#I343769` - The issue with the link quick toolbar opened when placing the cursor at the first letter of the hyperlink word in the Rich Text Editor content has been resolved.
950
+
951
+ ## 19.3.45 (2021-10-12)
952
+
953
+ ### RichTextEditor
954
+
955
+ #### Bug Fixes
956
+
957
+ - `#I338000` - The issue with `actionComplete` event triggered twice, when replacing the inserted image using QuickToolbar has been resolved.
958
+
959
+ - `#I343188` - The issue with "Focusing a table cell that was recently inserted in the Rich Text Editor, the page scrolls to the end and the table loses its focus" has been resolved.
960
+
961
+ - `#F168838` - The issue with "Image is not inserted in the editor, when using the `Turkish` language" has been resolved.
962
+
963
+ - `#I344588`, `#I344586` - The issue with "page scrolls automatically when the enter key is pressed in the Rich Text Editor" has been resolved.
964
+
965
+ - `#I344588` - The issue with "content goes outside of the Rich Text Editor when the enter key is pressed twice" has been resolved.
966
+
967
+ - `#I342895` - The issue with "when copy and paste content in the empty Rich Text Editor focus is lost" has been resolved.
968
+
969
+ - `#F168901` - The issue with `&#8203;` character code not removed when typing in the Rich Text Editor has been resolved.
970
+
971
+ - `#I340970` - The issue with "Replacing the `&nbsp;` to empty space's with the `XTHML` validation" has been resolved.
972
+
973
+ - `#I342383` - The issue with "Numbered List order in the Rich Text Editor goes incorrect, when copy and pasting a list from MS word" has been resolved.
974
+
975
+ ## 19.3.43 (2021-09-30)
976
+
977
+ ### RichTextEditor
978
+
979
+ #### New Features
980
+
981
+ - `#I231505`, `#I230743`, `#I239381`, `#I261360`, `#I273955`, `#I300418`, `#I307752`,`#I312982` - Provided support to customize the tags appended when enter or shift + enter key is pressed using the property `enterKey` and `shiftEnterKey` in the Rich Text Editor.
982
+
983
+ #### Breaking Changes
984
+
985
+ - `#I334962` - The image size popup, now has an option to set an `auto` value.
986
+
987
+ #### Bug Fixes
988
+
989
+ - `#I340683` - The issue with "Text inserted outside of the Rich Text Editor, after performing `Shift + Enter` key action" has been resolved.
990
+
991
+ - `#I340683` - The issue with "Pasting the text content for the second time, after clearing the value hangs the Rich Text Editor" has been resolved.
992
+
993
+ - `#I339234` - The issue with "Formats like bold, italic, underline will get unselected, when clicking in editor after selecting them" has been resolved.
994
+
995
+ ## 19.2.62 (2021-09-14)
996
+
997
+ ### RichTextEditor
998
+
999
+ #### Bug Fixes
1000
+
1001
+ - `#I340075` - The issue with "Resizing the table columns, is not updated the table cells properly" has been resolved.
1002
+
1003
+ - `#I332614` - The issue with "Table row and column are not resizable, when its position in the editor exceeds the height of the Rich Text Editor" has been resolved.
1004
+
1005
+ ## 19.2.60 (2021-09-07)
1006
+
1007
+ ### RichTextEditor
1008
+
1009
+ #### Bug Fixes
1010
+
1011
+ - `#I332614` - Resolved the issue with table row and column are not resizable, when its position exceeds the height of the Rich Text Editor.
1012
+
1013
+ - `#I338000` - The issue with `actionComplete` event triggered twice, when replacing the inserted image using QuickToolbar has been resolved.
1014
+
1015
+ - `#I340075` - The issue with "Resizing the table columns not updated the table cells properly" has been resolved.
1016
+
1017
+ ## 19.2.59 (2021-08-31)
1018
+
1019
+ ### RichTextEditor
1020
+
1021
+ #### Bug Fixes
1022
+
1023
+ - `#F167103` - The Image is not displayed, when adding next to the `hr` tag has been resolved.
1024
+
1025
+ - `#FB24806` - The issue with "Rich Text Editor height jumps, on input in Iframe mode with custom toolbar configured" has been resolved.
1026
+
1027
+ - `#I340017` - The issue with content area is not entirely visible, when expanding the toolbar if the `readOnly` property is enabled has been resolved.
1028
+
1029
+ - `#FB27857` - The issue with "Cannot cancel `fullscreen` action in the `actionBegin` event" has been resolved.
1030
+
1031
+ - `#I339831` - The issue with "Lists with multiple spans elements would produce new lists, while applying the `background-colour`" has been resolved.
1032
+
1033
+ - `#F168085` - The issue with "Text color is removed for the range nodes, when removing the formats" has been resolved.
1034
+
1035
+ ## 19.2.57 (2021-08-24)
1036
+
1037
+ ### RichTextEditor
1038
+
1039
+ #### Bug Fixes
1040
+
1041
+ - `#I336931`- The issue with "Rich Text Editor character count increased when bold, italic, underline format applied in empty content and accessing using `getCharCount()` public method has been resolved.
1042
+
1043
+ - `#I338261` - The issue with "Rich Text Editor hangs when pasting the word content, after clearing the value" has been resolved.
1044
+
1045
+ - `#I339192` - The "Rich Text Editor height is not adjusted to parent element height" issue has been fixed.
1046
+
1047
+ ## 19.2.56 (2021-08-17)
1048
+
1049
+ ### RichTextEditor
1050
+
1051
+ #### Bug Fixes
1052
+
1053
+ - `#I338000` - Resolved the exception raised, when pressing the enter key after changing the font-size in RTL mode in `Firefox` browser.
1054
+
1055
+ - `#I338062` - The issue with "Link is not generated properly, when `pasteCleanUpmodule` is imported" has been resolved.
1056
+
1057
+ - `#I338062` - The issue with "Unable to paste url more than two times, in the Rich Text Editor" has been resolved.
1058
+
1059
+ ## 19.2.55 (2021-08-11)
1060
+
1061
+ ### RichTextEditor
1062
+
1063
+ #### Bug Fixes
1064
+
1065
+ - `#I335578` - The issue with "alignment mismatching when pasting content from MS Word in the Rich Text Editor" has been fixed.
1066
+
1067
+ - `#I335315` - The issue with "Image size restriction not works in Drag and Drop action" has been resolved.
1068
+
1069
+ #### New Features
1070
+
1071
+ - `#I309446`, `#I336258` - Provided support to paste rare list contents from MS Word in the Rich Text Editor.
1072
+
1073
+ - `#I304121` - Improvements with the `deleteKey` action in the Rich Text Editor.
1074
+ - Provided `showDialog`, `closeDialog` methods to opens/closes the Link, Image, Table dialogs in the Rich Text Editor.
1075
+
1076
+ ## 19.2.51 (2021-08-03)
1077
+
1078
+ ### RichTextEditor
1079
+
1080
+ #### Bug Fixes
1081
+
1082
+ - `#I324790, #I337356` - The issue with "`div` element is created instead of `paragraph` element when enter key is pressed twice to exit the list" has been fixed.
1083
+
1084
+ - `#I336931` - The issue with "Character count is increased, when formats are being applied in empty content" has been fixed.
1085
+
1086
+ - `#I335821` - The issue with "Upload image restriction not working with the paste action" has been resolved.
1087
+
1088
+ ## 19.2.49 (2021-07-27)
1089
+
1090
+ ### RichTextEditor
1091
+
1092
+ #### Bug Fixes
1093
+
1094
+ - `#I335580` - The issue with the Rich Text Editor toolbar status not updated, once the contents have been removed has been rectified.
1095
+
1096
+ ## 19.2.48 (2021-07-20)
1097
+
1098
+ ### RichTextEditor
1099
+
1100
+ #### Bug Fixes
1101
+
1102
+ - `#I332112`, `#I332022` - The issue with "Images change aspect ratio, when resized to smallest possible and back larger again" has been resolved.
1103
+
1104
+ - `#FB26798` - The issue with "Rich Text Editor `change` event is not triggered in the code view" has been resolved.
1105
+
1106
+ - `#I334073`- The issue with "`Uploader` element is not present in DOM, when drag and drop images in the Rich Text Editor" has been resolved.
1107
+
1108
+ - `#I335073` - The issue with "Default font family applied, is not working in inline mode" has been resolved.
1109
+
1110
+ ## 19.2.47 (2021-07-13)
1111
+
1112
+ ### RichTextEditor
1113
+
1114
+ #### Bug Fixes
1115
+
1116
+ - `#I332610` - The issue with "Adding a column to a table after resizing a column resets the resized column width" has been resolved.
1117
+
1118
+ - `#I326508` - The issue with "Content is pasted outside the edit area of the Rich Text Editor when `enableXhtml` is set true" has been resolved.
1119
+
1120
+ - `#I332614` - The issue with "Columns and row resize not working when there is unequal number columns in all rows" has been resolved.
1121
+
1122
+ ## 19.2.44 (2021-06-30)
1123
+
1124
+ ### RichTextEditor
1125
+
1126
+ #### New Features
1127
+
1128
+ - `#I304121` - Improvements with the `backSpaceKey` action in the Rich Text Editor.
1129
+
1130
+ - `#I292778`, `#I308312`, `#I309446`, `#I313298` - Provided the List style type and List style image support for the Numbered and Bulleted lists.
1131
+
1132
+ #### Bug Fixes
1133
+
1134
+ - `#I327676` - The issue with "Custom toolbar icons not disabled/enabled, when multiple custom toolbar is configured" has been resolved.
1135
+
1136
+ - `#I330909` - The issue with "Inserting table after pressing `shit+enter` deletes all the content below in the Rich Text Editor" has been resolved.
1137
+
1138
+ - `#F165931` - The issue with "Ordered list number color not changing, when font color is applied to the list in the Rich Text Editor" has been resolved.
1139
+
1140
+ - `#I327566` - The issue with "Image resizing is not working properly when `resizeByPercent` is set true" has been resolved.
1141
+
1142
+ ## 19.1.54 (2021-03-30)
1143
+
1144
+ ### RichTextEditor
1145
+
1146
+ #### New Features
1147
+
1148
+ - `#257889`, `#264792`, `#280064`, `#305551`, `#316177`, - Provided support for the table cell merge and split in Rich Text Editor table properties.
1149
+
1150
+ #### Bug Fixes
1151
+
1152
+ - `#318815`- The issue with "Resize grip of the image freezes, after resizing for the first time" has been resolved.
1153
+
1154
+ - `#317508`- The issue with "Resize icon of an image is not positioned properly, when height is set to the Rich Text Editor" has been resolved.
1155
+
1156
+ - `F163544`- The issue with "Pressing the 'cmd+z' in mac after deleting all contents, deletes the first paragraph of the Rich Text Editor" has been resolved.
1157
+
1158
+ - `F163545`- The issue with "'cmd+z' is not working after pasting the content in Mac machine" has been resolved.
1159
+
1160
+ - `#313508` - The issue with "event 'afterImageDelete' triggers two times when removing the image using the backspace key" has been resolved.
1161
+
1162
+ - `#313508` - The issue with "Console error is thrown, when updating the selected image with another image" has been resolved.
1163
+
1164
+ ## 18.4.47 (2021-03-09)
1165
+
1166
+ ### RichTextEditor
1167
+
1168
+ #### Bug Fixes
1169
+
1170
+ - `#317795`- The issue with "Pasting the block node contents in the Rich Text Editor" has been resolved.
1171
+
1172
+ ## 18.4.46 (2021-03-02)
1173
+
1174
+ ### RichTextEditor
1175
+
1176
+ #### Bug Fixes
1177
+
1178
+ - `#309809` - The issue with "Unable to resize the image in the Rich Text Editor when width is set" is resolved.
1179
+
1180
+ - `#314678` - Resolved the script error raised, when pasting the content after pressing the shift-enter key.
1181
+
1182
+ - `F161914` - The issue with "Bold format removed for the content previous to the selection in the Rich Text Editor" is resolved.
1183
+
1184
+ ## 18.4.44 (2021-02-23)
1185
+
1186
+ ### RichTextEditor
1187
+
1188
+ #### Bug Fixes
1189
+
1190
+ - `#314104` - The issue with the "Rich Text Editor's table width is not set properly if values are configured higher" is resolved.
1191
+
1192
+ - `F161887` - The issue with "Removing the italic format removes the underline format in the Rich Text Editor" is resolved.
1193
+
1194
+ ## 18.4.42 (2021-02-09)
1195
+
1196
+ ### RichTextEditor
1197
+
1198
+ #### Bug Fixes
1199
+
1200
+ - `F160581` - The issue with "The RichTextEditor table toolbar popup is hidden inside the higher Z-Index elements" has been resolved.
1201
+
1202
+ ## 18.4.39 (2021-01-28)
1203
+
1204
+ ### RichTextEditor
1205
+
1206
+ #### Bug Fixes
1207
+
1208
+ - `#296208` - Resolved the issue with the Placeholder blinks when pressing the enter key in the editor.
1209
+
1210
+ - `#310044` - The issue with the resize grip alignment when the toolbar is disabled state has been resolved.
1211
+
1212
+ ## 18.4.34 (2021-01-12)
1213
+
1214
+ ### RichTextEditor
1215
+
1216
+ #### Bug Fixes
1217
+
1218
+ `#305379` - The issue with "Images getting removed when pasting images along with contents from the MS Word in the Rich Text Editor" has been resolved.
1219
+
1220
+ `#301635` - The issue with "Pasting bulleted or numbered list from the MS Word doesn't maintain the font size and font styles in the Rich Text Editor" has been resolved.
1221
+
1222
+ ## 18.4.33 (2021-01-05)
1223
+
1224
+ ### RichTextEditor
1225
+
1226
+ #### New Features
1227
+
1228
+ - `F160594` - Provided new event `beforeImageDrop` that triggers before drop a image in Rich Text Editor component.
1229
+
1230
+ #### Bug Fixes
1231
+
1232
+ `#306799` - The issue with "deleting any rows in the table removes the first row of the table in the Rich Text Editor" has been resolved.
1233
+
1234
+ ## 18.4.30 (2020-12-17)
1235
+
1236
+ ### RichTextEditor
1237
+
1238
+ #### New Features
1239
+
1240
+ - **File Manager**: `F144048`, `#234755`, `#261368`, `#261882`, `#150871`, `#270549` - This feature allows the editor to browse and insert the images from FileManager using various remote service.
1241
+
1242
+ - `F149800` - Provided new property `removeUrl` in `insertImageSettings` API to trigger the image remove operation in server, when image removed from editor.
1243
+
1244
+ - `#301980` - Provided the support to return the `Xhtml` value in the `value` property when the `enableXtml` property is enabled in the Rich Text Editor.
1245
+
1246
+ - `#264791`, `#295032`, `#299905`, `#F159588` - Provided the support to retain all the styles from MS Excel while pasting the content in the Rich Text Editor.
1247
+
1248
+ #### Bug Fixes
1249
+
1250
+ `#296208` - The issue with "the placeholder blinks when pressing enter key in the Rich Text Editor" has been resolved.
1251
+
1252
+ ## 18.3.35 (2020-10-01)
1253
+
1254
+ ### RichTextEditor
1255
+
1256
+ #### Bug Fixes
1257
+
1258
+ `#292431` - The issue with "Rich Text Editor input elements are not destroyed properly when rendered based on the conditions" has been resolved.
1259
+
1260
+ ## 18.2.56 (2020-09-01)
1261
+
1262
+ ### RichTextEditor
1263
+
1264
+ #### Bug Fixes
1265
+
1266
+ - `#290237`, `#290247` - The issue with "copy and pasting content in the Markdown Editor is not working" has been resolved.
1267
+
1268
+ `#289786` - The issue with "The full screen toolbar item is not working when `readonly` mode is enabled in the Rich Text Editor" has been resolved.
1269
+
1270
+ `#F156796` - The performance issue when several Rich Text Editors are rendered in a single page has been resolved.
1271
+
1272
+ ## 18.2.55 (2020-08-25)
1273
+
1274
+ ### RichTextEditor
1275
+
1276
+ #### Bug Fixes
1277
+
1278
+ `#287641` - The issue with "pasting the list content from MS Word in the Rich Text Editor removes the copied content" has been resolved.
1279
+
1280
+ ## 18.2.54 (2020-08-18)
1281
+
1282
+ ### RichTextEditor
1283
+
1284
+ #### Bug Fixes
1285
+
1286
+ `#287193` - The issue with "Script error occurs with toolbar options when placing the cursor before & after the RichTextEditor table" has been resolved.
1287
+
1288
+ ## 18.2.48 (2020-08-04)
1289
+
1290
+ ### RichTextEditor
1291
+
1292
+ #### Bug Fixes
1293
+
1294
+ - `#266152` - The issue with "List selection with delete key action does not remove lists properly" has been resolved.
1295
+
1296
+ ## 18.2.46 (2020-07-21)
1297
+
1298
+ ### RichTextEditor
1299
+
1300
+ #### New Features
1301
+
1302
+ - `#272591` - Provided new event `beforeImageUpload` that triggers before the image upload process from Rich Text Editor component.
1303
+
1304
+ #### Bug Fixes
1305
+
1306
+ - `#282973` - The issue with "Selecting the transparent color from the FontColor in Rich Text Editor" has been resolved.
1307
+
1308
+ ## 18.2.45 (2020-07-14)
1309
+
1310
+ ### RichTextEditor
1311
+
1312
+ #### Bug Fixes
1313
+
1314
+ - `#282644` - The issue with "Deleting the image using context menu doesn’t remove the resize and borders of the image" in the Rich Text Editor has been resolved.
1315
+
1316
+ - `#273140` - The issue with "the image element which is not passed into the `actionComplete` event's argument in the Rich Text Editor" has been resolved.
1317
+
1318
+ ## 18.2.44 (2020-07-07)
1319
+
1320
+ ### RichTextEditor
1321
+
1322
+ #### New Features
1323
+
1324
+ - `#271295` - Provided public methods `showInlineToolbar` and `hideInlineToolbar` to show and hide the inline toolbars in the Rich Text Editor.
1325
+
1326
+ #### Bug Fixes
1327
+
1328
+ - The issue with "Rich Text Editor data binding not working in Source Code view" has been resolved.
1329
+
1330
+ ## 18.1.57 (2020-06-16)
1331
+
1332
+ ### RichTextEditor
1333
+
1334
+ #### Bug Fixes
1335
+
1336
+ - `#275859` - The issue with "throwing script error while pasting the content with table" in the Rich Text Editor has been resolved.
1337
+
1338
+ - `#279019` - The issue with "pasting the content inside the nested table that breaks the HTML content in the Rich Text Editor" has been resolved.
1339
+
1340
+ - `#276473` - The issue `afterImageDelete` event is not triggered when the image is removed along with text content in the Rich Text Editor" has been resolved.
1341
+
1342
+ ## 18.1.54 (2020-05-26)
1343
+
1344
+ ### RichTextEditor
1345
+
1346
+ #### Bug Fixes
1347
+
1348
+ - `#275859` - The issue with unable to edit the Rich Text Editor content after pasting the content with table has been resolved.
1349
+
1350
+ ## 18.1.53 (2020-05-19)
1351
+
1352
+ ### RichTextEditor
1353
+
1354
+ #### Bug Fixes
1355
+
1356
+ - `#F150037` - The issue with "throwing script error while dynamically enable/disable the toolbar" has been resolved.
1357
+
1358
+ ## 18.1.52 (2020-05-13)
1359
+
1360
+ ### RichTextEditor
1361
+
1362
+ #### Bug Fixes
1363
+
1364
+ - `#F152908` - The issue sub list remains after deleting the parent list element in the Rich Text Editor has been resolved.
1365
+
1366
+ ## 18.1.48 (2020-05-05)
1367
+
1368
+ ### RichTextEditor
1369
+
1370
+ #### Bug Fixes
1371
+
1372
+ - `#272406` - The issue background color format not applied properly on changing the font size in the Rich Text Editor has been resolved.
1373
+
1374
+ ## 18.1.45 (2020-04-21)
1375
+
1376
+ ### RichTextEditor
1377
+
1378
+ #### Bug Fixes
1379
+
1380
+ - `#271937` - The issue table border not applied when pasting the content from the Excel in the Rich Text Editor has been resolved.
1381
+
1382
+ - `#271289` - The issue with using keyboard short cut `ctrl+k` to insert link not working in the Rich Text Editor has been resolved.
1383
+
1384
+ ## 18.1.44 (2020-04-14)
1385
+
1386
+ ### RichTextEditor
1387
+
1388
+ #### New Features
1389
+
1390
+ - `#F152228`, `#266987` - Provided an event `afterImageDelete` to be triggered after the image is removed from the Rich Text Editor content.
1391
+
1392
+ #### Bug Fixes
1393
+
1394
+ - `#F152859` - The issue `executeCommand` using `insertHTML` not inserting the Iframe element in the Rich Text Editor has been resolved.
1395
+
1396
+ - `#267874`, `#269214`, `#271199` - Resolved the compilation error with typescript version 3.8.3
1397
+
1398
+ - `#F152908` - The issue with empty sub-list not removed from Rich Text Editor has been resolved.
1399
+
1400
+ ## 18.1.42 (2020-04-01)
1401
+
1402
+ ### RichTextEditor
1403
+
1404
+ #### New Features
1405
+
1406
+ - `#266522` - Provided scrollable option support to the toolbar by setting toolbar type as `Scrollable` in Rich Text Editor.
1407
+
1408
+ ## 17.4.51 (2020-02-25)
1409
+
1410
+ ### RichTextEditor
1411
+
1412
+ #### Bug Fixes
1413
+
1414
+ - `F151491` - Resolved the issue with RichTextEditor height that is not set properly when the toolbar is disabled.
1415
+
1416
+ - `F151491` - Resolved the script errors thrown when opening an insert image dialog several times.
1417
+
1418
+ ## 17.4.49 (2020-02-11)
1419
+
1420
+ ### RichTextEditor
1421
+
1422
+ #### Bug Fixes
1423
+
1424
+ - `#261548`, `#262909` - The issue with a new line added after pasting the content and focusing out in the Rich Text Editor has been resolved.
1425
+
1426
+ - `#F150940` - The issue with cursor not maintained when using the `executeCommand` method with `insertHTML` in the Rich Text Editor has been resolved.
1427
+
1428
+ - `#F150991` - Fixed issue with script error when RichTextEditor is dynamically rendered using setState.
1429
+
1430
+ - `#F150991` - Resolved the issue with the fontName requestType is getting as fontSize after the `change` event has been triggered.
1431
+
1432
+ - `#F150742` - Resolved the issue with `dialogOpen` event does not return the content element in insert image dialog.
1433
+
1434
+ - `#262805` - Fixed issue `change` event triggers first time when `readonly` property is enabled.
1435
+
1436
+ ## 17.4.47 (2020-02-05)
1437
+
1438
+ ### RichTextEditor
1439
+
1440
+ #### Bug Fixes
1441
+
1442
+ - `#150737` - Resolved the issue with inserting an image dialog that was not properly rendered on mobile devices.
1443
+
1444
+ - `#F150655` - The issue 'Images not uploaded into the server when pasting only an image from the MS Word in the Rich Text Editor' has been resolved.
1445
+
1446
+ ## 17.4.46 (2020-01-30)
1447
+
1448
+ ### RichTextEditor
1449
+
1450
+ #### New Features
1451
+
1452
+ - `#F149481` - Provided the support to get the selected HTML content using the `getSelectedHtml` public method.
1453
+
1454
+ ## 17.4.44 (2021-01-21)
1455
+
1456
+ ### RichTextEditor
1457
+
1458
+ #### New Features
1459
+
1460
+ - `#256724`, `#F149821` - Provided the support to insert a table using the `executeCommand` public method in the RichTextEditor.
1461
+
1462
+ ## 17.4.43 (2020-01-14)
1463
+
1464
+ ### RichTextEditor
1465
+
1466
+ #### Bug Fixes
1467
+
1468
+ - `#258971` - Resolved the issue with an image element that is appended on insert image dialog drop area when drag and drop an image.
1469
+
1470
+ - `#254879` - The issue with copying and pasting MS Word content along with the image of type `v:shape` to the Rich Text Editor has been fixed.
1471
+
1472
+ - `#F149899` - The issue with 'image alignment styles are not loaded when displaying the editor content on another page' in the Rich Text Editor has been fixed.
1473
+
1474
+ ## 17.4.40 (2019-12-24)
1475
+
1476
+ ### RichTextEditor
1477
+
1478
+ #### Bug Fixes
1479
+
1480
+ - `#254606` - Web accessibility related issues have been resolved.
1481
+
1482
+ ## 17.4.39 (2019-12-17)
1483
+
1484
+ ### RichTextEditor
1485
+
1486
+ #### Bug Fixes
1487
+
1488
+ - `#256452` - The Rich Text Editor is no longer allow to resize the image when `readonly` is enabled.
1489
+
1490
+ - `#253296` - The issue with drag and drop text is not working inside the Rich Text Editor has been fixed.
1491
+
1492
+ ### RichTextEditor
1493
+
1494
+ #### New Features
1495
+
1496
+ - **Callback event to custom toolbar**: The feature allows to bind click event handler to the custom toolbar items in the Rich Text Editor.
1497
+
1498
+ - **Code format as toolbar button**: Provided an option to add the code format as toolbar button with toggle state in the Rich Text Editor.
1499
+
1500
+ - **XHTML validation**: Provided support to validate the content of Rich Text Editor with XHTML standard.
1501
+
1502
+ ## 17.3.29 (2019-11-26)
1503
+
1504
+ ### RichTextEditor
1505
+
1506
+ #### Bug Fixes
1507
+
1508
+ - `#F149001` - The issue with customization of table cell padding and cell spacing in the Rich Text Editor has been resolved.
1509
+
1510
+ ## 17.3.28 (2019-11-19)
1511
+
1512
+ ### RichTextEditor
1513
+
1514
+ #### Bug Fixes
1515
+
1516
+ - `#254865` - Resolved the issue with an image that is not removed when pressing the delete key by enabling the `showOnRightClick` property.
1517
+
1518
+ ## 17.3.19 (2019-10-22)
1519
+
1520
+ ### RichTextEditor
1521
+
1522
+ #### Bug Fixes
1523
+
1524
+ - `#251855` - Resolved the issue with appearance of transparent color tile in Rich Text Editor's color picker.
1525
+
1526
+ - `#251699` - The issue with pasting content from Word document displays unnecessary HTML content in the Rich Text Editor has been fixed.
1527
+
1528
+ - `#251640` - The issue "placeholder not hidden after inserting a table or an image in the Rich Text Editor" has been fixed.
1529
+
1530
+ - `#250650` - The issue with image rename in the imageUploadSuccess event not working when drag and drop an image into RichTextEditor has been fixed.
1531
+
1532
+ - `#250587` - The issue with null field shown on form data headers response when drag and drop an image into RichTextEditor has been fixed.
1533
+
1534
+ - `#251855` - The issue "console error is thrown, when the image upload dialog is opened in IE browser" has been fixed.
1535
+
1536
+ ## 17.3.16 (2019-10-09)
1537
+
1538
+ ### RichTextEditor
1539
+
1540
+ #### Bug Fixes
1541
+
1542
+ - `#249291` - The issue "extra empty tags are added while toggling bold or Italic style when typing the text randomly" in the Rich Text Editor has been fixed.
1543
+
1544
+ ## 17.3.14 (2019-10-03)
1545
+
1546
+ ### RichTextEditor
1547
+
1548
+ #### Bug Fixes
1549
+
1550
+ - `#249182` - The issue with localizing static texts of paste prompt dialog in the Rich Text Editor has been fixed.
1551
+
1552
+ - `#249613` - The issue with pasting content from Microsoft Excel sheet that throws console error in the Rich Text Editor has been fixed.
1553
+
1554
+ ## 17.3.9-beta (2019-09-20)
1555
+
1556
+ ### RichTextEditor
1557
+
1558
+ #### New Features
1559
+
1560
+ - **Drag and drop images from local system**: The feature allows to insert the images to the editor by drag and drop from local path. The images can uploaded to the server before insert into the editor.
1561
+
1562
+ - **Resizable Editor**: `#236064` - This feature allows the editor to be resized. Users can enable or disable this feature using the `enableResize` property. If `enableResize` is true, the RichTextEditor component creates grip at the bottom right corner to resize it in diagonal direction.
1563
+
1564
+ - **Pasting images from Microsoft Word and Microsoft Outlook**: This feature allows you to paste the images in the editor by copying and pasting from Microsoft Word and Outlook. The images can be uploaded to the server before inserting into the editor.
1565
+
1566
+ #### Bug Fixes
1567
+
1568
+ - `#F146927` - The issue with copy and pasting image from MS Word to the RichTextEditor has been fixed.
1569
+
1570
+ - `#246340` - The issue with pasting the content as plain-text in Rich Text Editor has been fixed.
1571
+
1572
+ ## 17.2.47 (2019-08-27)
1573
+
1574
+ ### RichTextEditor
1575
+
1576
+ #### Bug Fixes
1577
+
1578
+ - `#242999` - Now, Reactive form validates properly on `shift + tab` key action.
1579
+
1580
+ - `#244796` - Floating toolbar now renders properly without alignment issue, when render the Rich Text Editor within Tab.
1581
+
1582
+ - `#243448` - Performance with page scroll has been improved when multiple Rich Text Editor components are rendered in the page.
1583
+
1584
+ - `#241388` - The issue with right-click option while rendering RichTextEditor inside the table has been fixed.
1585
+
1586
+ ## 17.2.46 (2019-08-22)
1587
+
1588
+ ### RichTextEditor
1589
+
1590
+ #### New Features
1591
+
1592
+ - **Image upload events**
1593
+ - `#240002`, `#236690`, `#241238`, `#244320` - This feature allows images to be customized on uploading and inserting them into the editor by using the upload events image selected, image uploading, image upload success, and image upload failed. Users can rename the images before inserting them into the editor using these events.
1594
+
1595
+ #### Bug Fixes
1596
+
1597
+ - `#243475` - Now, you can validate max-length even showCharCount property as false.
1598
+
1599
+ - `#243475` - Resolved the issue with max-length validation on pasting the content.
1600
+
1601
+ - `#242999` - The key action for `tab` key and `shift + tab` key are similar now.
1602
+
1603
+ ## 17.2.41 (2019-08-14)
1604
+
1605
+ ### RichTextEditor
1606
+
1607
+ #### New Features
1608
+
1609
+ - **Support for saving images in base64**: `#240002`, `#242405` - This feature allows users to save the images in the RichTextEditor in base64 format along with the existing blob format.
1610
+
1611
+ - `#242771` - Provided the support to handle both absolute and relative path links.
1612
+
1613
+ #### Bug Fixes
1614
+
1615
+ - `#243767` - The issue with applying selected format based on content editable has been fixed.
1616
+
1617
+ ## 17.2.36 (2019-07-24)
1618
+
1619
+ ### RichTextEditor
1620
+
1621
+ #### Bug Fixes
1622
+
1623
+ - `#242377` - The issue, "alignment is not working while pasting content from notepad" has been resolved.
1624
+
1625
+ - `#F146057` - The issue, "formatting(strong and alignment) is not maintained on pasting web content" has been resolved.
1626
+
1627
+ ## 17.2.35 (2019-07-17)
1628
+
1629
+ ### RichTextEditor
1630
+
1631
+ #### Bug Fixes
1632
+
1633
+ - `#241388` - The issue, "browser context menu is not shown on right click when enabling the showOnRightClick property" has been resolved.
1634
+
1635
+ ## 17.2.34 (2019-07-11)
1636
+
1637
+ ### RichTextEditor
1638
+
1639
+ #### Bug Fixes
1640
+
1641
+ - `#F145376` - The issue, "action complete event is not triggered when deleting the content with text and images" has been resolved.
1642
+
1643
+ - `#237729` - The issue "table column width is shown as pixel instead of percentage while resizing" has been fixed.
1644
+
1645
+ - `#237729` - Pickers mode throws script error when selecting the color in table's quick toolbar, that issue has been fixed.
1646
+
1647
+ - `#237729` - Color picker value doesn't set as RGBA(alpha) value in content editor, that issue has been fixed.
1648
+
1649
+ - `#240808` - The issue "opening a link in new window throws an error for auto generated link" has been fixed.
1650
+
1651
+ - `#240024` - The issue, "spacing between words is removed when focus out the editor" has been resolved.
1652
+
1653
+ - `#234519`, `#234586`, `#F138909` - The issues with table and its functionalities in IE11 has been resolved.
1654
+
1655
+ ## 17.2.28-beta (2019-06-27)
1656
+
1657
+ ### RichTextEditor
1658
+
1659
+ #### New Features
1660
+
1661
+ - **Paste from Microsoft Word**: This feature allows users to paste clean-formatted HTML markup by removing all unnecessary elements, styles, and attributes from text while copying and pasting it from Microsoft Word.
1662
+
1663
+ #### Breaking Changes
1664
+
1665
+ - Changed the default value of the API property `allowedStyleProps` from `null` to `['background', 'background-color', 'border', 'border-bottom', 'border-left', 'border-radius', 'border-right', 'border-style', 'border-top', 'border-width', 'clear', 'color', 'cursor', 'direction', 'display', 'float', 'font', 'font-family', 'font-size', 'font-weight', 'font-style','height', 'left', 'line-height', 'margin', 'margin-top', 'margin-left', 'margin-right', 'margin-bottom', 'max-height', 'max-width', 'min-height', 'min-width', 'overflow', 'overflow-x', 'overflow-y', 'padding', 'padding-bottom', 'padding-left', 'padding-right', 'padding-top', 'position', 'right', 'table-layout', 'text-align', 'text-decoration', 'text-indent', 'top', 'vertical-align', 'visibility', 'white-space', 'width']`.
1666
+
1667
+ #### Bug Fixes
1668
+
1669
+ - `#238872` - Issue with cursor position when enabled list with empty editor that issue has been resolved.
1670
+
1671
+ ## 17.1.49 (2019-05-29)
1672
+
1673
+ ### RichTextEditor
1674
+
1675
+ #### Bug Fixes
1676
+
1677
+ - `#235461` - Thrown the console error while rendering the RichTextEditor within a table element and pressing the tab key from edit area that issue has been resolved.
1678
+
1679
+ ## 17.1.48 (2019-05-21)
1680
+
1681
+ ### RichTextEditor
1682
+
1683
+ #### New Features
1684
+
1685
+ - `#230976` - Opens a quick toolbar on right-click support has been provided.
1686
+
1687
+ #### Bug Fixes
1688
+
1689
+ - `#235120` - RichTextEditor's paste as plain text doesn't preserve line break that issue has been resolved.
1690
+
1691
+ ## 17.1.43 (2019-04-30)
1692
+
1693
+ ### RichTextEditor
1694
+
1695
+ #### Bug Fixes
1696
+
1697
+ - `#234280` - RichTextEditor's toolbar is broken when using ES2015 target that issue has been resolved.
1698
+
1699
+ ## 17.1.42 (2019-04-23)
1700
+
1701
+ ### RichTextEditor
1702
+
1703
+ #### Bug Fixes
1704
+
1705
+ - Change event doesn't trigger, when RichTextEditor blurs inside of `In-place Editor` that issue has been fixed.
1706
+
1707
+ ## 17.1.40 (2019-04-09)
1708
+
1709
+ ### RichTextEditor
1710
+
1711
+ #### Bug Fixes
1712
+
1713
+ - Insert image functionality of `RichTextEditor` is not working when render with `File Upload`, that issue has been fixed.
1714
+
1715
+ ## 17.1.32-beta (2019-03-13)
1716
+
1717
+ ### RichTextEditor
1718
+
1719
+ #### Bug Fixes
1720
+
1721
+ - Image and Table quick toolbar open while scrolling the content in the iPhone device, that issue has been fixed.
1722
+
1723
+ - Getting console error while rendering inline mode with `FontColor` and `BackgroundColor` in mobile view, that issue has been fixed.
1724
+
1725
+ -`Undo` and `Redo` icon visible in preview mode issue has been fixed
1726
+
1727
+ #### New Features
1728
+
1729
+ - **Paste cleanup**: This feature allows users to clean up HTML content when copying and pasting any other content from external sources.
1730
+
1731
+ ## 16.4.55 (2019-02-27)
1732
+
1733
+ ### RichTextEditor
1734
+
1735
+ #### Bug Fixes
1736
+
1737
+ - Insert image dialog is not rendering properly while setting the `imageUploadMessage` text as long in localization, that issue has been fixed.
1738
+
1739
+ - Localization is not applied to static `DropDownButton` items, that issue has been fixed.
1740
+
1741
+ ## 16.4.54 (2019-02-19)
1742
+
1743
+ ### RichTextEditor
1744
+
1745
+ #### Bug Fixes
1746
+
1747
+ - HTML 5 form reset behaviour has been corrected.
1748
+
1749
+ - Editor content rendered twice in DOM when using `RichTextEditorFor`, that issue has been fixed.
1750
+
1751
+ - EJ2 compatibility styles are not worked while component rendering with `textarea` element, that issue has been fixed.
1752
+
1753
+ ## 16.4.53 (2019-02-13)
1754
+
1755
+ ### RichTextEditor
1756
+
1757
+ #### Bug Fixes
1758
+
1759
+ - Console error is thrown in IE11 browser while using the SVG element style with transform and then render the RichTextEditor in an application, that issue has been fixed.
1760
+
1761
+ - HTML 5 standard issues has been fixed.
1762
+
1763
+ - Cursor position changed after typed some contents issue has been fixed.
1764
+
1765
+ #### Breaking Changes
1766
+
1767
+ - Changed the `fontSize`, `fontFamily`, `format` properties default value as null.
1768
+
1769
+ ## 16.4.48 (2019-01-22)
1770
+
1771
+ ### RichTextEditor
1772
+
1773
+ #### Bug Fixes
1774
+
1775
+ - Table QuickToolbar open wherever click within a component issue has been fixed.
1776
+
1777
+ - FontSize "px" and fontFamily "veranda" not updated in toolbar status, that issue has been fixed.
1778
+
1779
+ - Clicking on view source code with single character inside textarea removes the character, that issue has been fixed.
1780
+
1781
+ ## 16.4.47 (2019-01-16)
1782
+
1783
+ ### RichTextEditor
1784
+
1785
+ #### Bug Fixes
1786
+
1787
+ - ASP.NET core data annotation issue has been fixed.
1788
+
1789
+ - Console error is thrown in IE browser with angular routing, that issue has been fixed.
1790
+
1791
+ - Unable to maintain the RichTextEditor color picker pop-up position when scrolling the browser has been fixed.
1792
+
1793
+ ## 16.4.46 (2019-01-08)
1794
+
1795
+ ### RichTextEditor
1796
+
1797
+ #### Bug Fixes
1798
+
1799
+ - Changing the font color of underlined text doesn’t change the color of the line, that issue has been fixed.
1800
+
1801
+ - RichTextEditor injectable module is missed from import setting file in [CRG](https://crg.syncfusion.com/), that issue has been fixed.
1802
+
1803
+ - The change event is triggered on clicking into HTML source code view in Edge browser, that issue has been fixed.
1804
+
1805
+ - Blur event is not triggered when we change focus directly from one RTE to another RTE, that issue has been fixed.
1806
+
1807
+ - RichTextEditor full screen not working properly when render inside the overflow element has been fixed.
1808
+
1809
+ ## 16.4.44 (2018-12-24)
1810
+
1811
+ ### RichTextEditor
1812
+
1813
+ #### Bug Fixes
1814
+
1815
+ - Pasted URL is not converted to links automatically, that issue has been fixed.
1816
+
1817
+ - Image paste as twice in Firefox browser, that issue has been fixed.
1818
+
1819
+ - The value property and getHtml method will be updated within an interval to `saveInterval` property.
1820
+
1821
+ ## 16.4.40-beta (2018-12-10)
1822
+
1823
+ ### RichTextEditor
1824
+
1825
+ #### New Features
1826
+
1827
+ - Insert table support has provided for MarkDown Editor.
1828
+
1829
+ #### Bug Fixes
1830
+
1831
+ - Dynamic enabling and disabling support for toolbar items has been provided.
1832
+ - Image dialog's Browse button width is not adjusted based on the text issue has been resolved.
1833
+
1834
+ ## 16.3.17 (2018-09-12)
1835
+
1836
+ ### RichTextEditor
1837
+
1838
+ #### New Features
1839
+
1840
+ 1. Image resize support has been provided.
1841
+ 2. Insert table support has provided for HTML Editor which includes below sub features,
1842
+ 1. Create and modify the table, table rows and columns.
1843
+ 2. Row and column resize.
1844
+ 3. Quick toolbar interaction.
1845
+ 4. Table header and custom styles.
1846
+
1847
+ #### Breaking Changes
1848
+
1849
+ - `setContent` method has removed, use `value` property to set the content instead.
1850
+
1851
+ ## 16.2.51 (2018-09-04)
1852
+
1853
+ ### RichTextEditor
1854
+
1855
+ #### Bug Fixes
1856
+
1857
+ - RichTextEditor modal `popup` style override issue has been resolved.
1858
+ - RichTextEditor removes spacing between words when content is pasted from a word document, that
1859
+ issue has been fixed.
1860
+
1861
+ ## 16.2.50 (2018-08-28)
1862
+
1863
+ ### RichTextEditor
1864
+
1865
+ #### Bug Fixes
1866
+
1867
+ - Unable to paste image copied from windows in RichTextEditor issue has been resolved.
1868
+
1869
+ ## 16.2.49 (2018-08-21)
1870
+
1871
+ ### RichTextEditor
1872
+
1873
+ #### Bug Fixes
1874
+
1875
+ - `IFrame` mode external font family removed in RichTextEditor.
1876
+ - Unable to delete the selected content of RichTextEditor in inline toolbar issue has been resolved.
1877
+
1878
+ ## 16.2.48 (2018-08-14)
1879
+
1880
+ ### RichTextEditor
1881
+
1882
+ #### Bug Fixes
1883
+
1884
+ - Removed external font family in RichTextEditor source.
1885
+
1886
+ ## 16.2.47 (2018-08-07)
1887
+
1888
+ ### RichTextEditor
1889
+
1890
+ #### Bug Fixes
1891
+
1892
+ - `FontColor` and `BackgroundColor` toolbar item not rendered in inline mode issue has been resolved.
1893
+ - RichTextEditor toolbar disabled mode content select console error issue has been resolved.
1894
+ - Provided view encapsulation support.
1895
+
1896
+ ## 16.2.45 (2018-07-17)
1897
+
1898
+ ### RichTextEditor
1899
+
1900
+ #### Bug Fixes
1901
+
1902
+ - Provided `getText` public method from RichTextEditor.
1903
+
1904
+ ## 16.2.44 (2018-07-10)
1905
+
1906
+ ### RichTextEditor
1907
+
1908
+ #### Bug Fixes
1909
+
1910
+ - RichTextEditor `actionBegin` event missing arguments included.
1911
+
1912
+ ## 16.2.41 (2018-06-25)
1913
+
1914
+ ### RichTextEditor
1915
+
1916
+ The rich text editor component is WYSIWYG ("what you see is what you get") editor used to create and edit the content and return valid HTML markup or markdown (MD) of the content. The editor provides a standard toolbar to format content using its commands. Modular library features to load the necessary functionality on demand. The toolbar contains commands to align the text, insert link, insert image, insert list, undo/redo operation, HTML view, and more.
1917
+
1918
+ - Provides IFRAME and DIV mode.
1919
+ - Handles markdown editing.
1920
+ - Contains a modular library to load the necessary functionality on demand.
1921
+ - Provides a fully customizable toolbar.
1922
+ - HTML view to edit the source directly for developers.
1923
+ - Supports to integrate third-party library.
1924
+ - Preview the modified content before saving it.
1925
+ - Handles images, hyperlinks, video,hyperlinks, uploads, and more.
1926
+ - Contains undo/redo manager.
1927
+ - Creates bulleted and numbered lists.