@syncfusion/ej2-richtexteditor 23.2.7-52849 → 24.1.41

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