@syncfusion/ej2-richtexteditor 23.2.7 → 24.1.41-569421

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