@syncfusion/ej2-richtexteditor 25.2.3 → 25.2.4-621927

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