@syncfusion/ej2-angular-richtexteditor 20.2.39-ngcc → 20.2.39

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 (175) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +5 -0
  3. package/esm2020/src/rich-text-editor/richtexteditor-all.module.mjs +59 -0
  4. package/esm2020/src/rich-text-editor/richtexteditor.component.mjs +168 -0
  5. package/esm2020/src/rich-text-editor/richtexteditor.module.mjs +25 -0
  6. package/esm2020/syncfusion-ej2-angular-richtexteditor.mjs +5 -0
  7. package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs +252 -0
  8. package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
  9. package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs +252 -0
  10. package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
  11. package/package.json +27 -13
  12. package/schematics/utils/lib-details.ts +2 -2
  13. package/src/rich-text-editor/richtexteditor-all.module.d.ts +6 -0
  14. package/src/rich-text-editor/richtexteditor.component.d.ts +3 -0
  15. package/src/rich-text-editor/richtexteditor.module.d.ts +6 -0
  16. package/styles/_all.scss +1 -0
  17. package/styles/bootstrap-dark.css +35 -34
  18. package/styles/bootstrap.css +35 -34
  19. package/styles/bootstrap4.css +35 -34
  20. package/styles/bootstrap5-dark.css +35 -34
  21. package/styles/bootstrap5.css +35 -34
  22. package/styles/fabric-dark.css +35 -34
  23. package/styles/fabric.css +35 -34
  24. package/styles/fluent-dark.css +35 -34
  25. package/styles/fluent.css +35 -34
  26. package/styles/highcontrast-light.css +35 -34
  27. package/styles/highcontrast.css +35 -34
  28. package/styles/material-dark.css +35 -34
  29. package/styles/material.css +35 -34
  30. package/styles/rich-text-editor/_all.scss +2 -0
  31. package/styles/rich-text-editor/_bootstrap-dark-definition.scss +208 -0
  32. package/styles/rich-text-editor/_bootstrap-definition.scss +263 -0
  33. package/styles/rich-text-editor/_bootstrap4-definition.scss +390 -0
  34. package/styles/rich-text-editor/_bootstrap5-dark-definition.scss +1 -0
  35. package/styles/rich-text-editor/_bootstrap5-definition.scss +193 -0
  36. package/styles/rich-text-editor/_fabric-dark-definition.scss +189 -0
  37. package/styles/rich-text-editor/_fabric-definition.scss +187 -0
  38. package/styles/rich-text-editor/_fluent-dark-definition.scss +1 -0
  39. package/styles/rich-text-editor/_fluent-definition.scss +196 -0
  40. package/styles/rich-text-editor/_fusionnew-definition.scss +193 -0
  41. package/styles/rich-text-editor/_highcontrast-definition.scss +187 -0
  42. package/styles/rich-text-editor/_highcontrast-light-definition.scss +187 -0
  43. package/styles/rich-text-editor/_layout.scss +1783 -0
  44. package/styles/rich-text-editor/_material-dark-definition.scss +191 -0
  45. package/styles/rich-text-editor/_material-definition.scss +189 -0
  46. package/styles/rich-text-editor/_material3-definition.scss +193 -0
  47. package/styles/rich-text-editor/_tailwind-dark-definition.scss +1 -0
  48. package/styles/rich-text-editor/_tailwind-definition.scss +191 -0
  49. package/styles/rich-text-editor/_theme.scss +644 -0
  50. package/styles/rich-text-editor/bootstrap-dark.css +35 -34
  51. package/styles/rich-text-editor/bootstrap-dark.scss +4 -1
  52. package/styles/rich-text-editor/bootstrap.css +35 -34
  53. package/styles/rich-text-editor/bootstrap.scss +4 -1
  54. package/styles/rich-text-editor/bootstrap4.css +35 -34
  55. package/styles/rich-text-editor/bootstrap4.scss +4 -1
  56. package/styles/rich-text-editor/bootstrap5-dark.css +35 -34
  57. package/styles/rich-text-editor/bootstrap5-dark.scss +4 -1
  58. package/styles/rich-text-editor/bootstrap5.css +35 -34
  59. package/styles/rich-text-editor/bootstrap5.scss +4 -1
  60. package/styles/rich-text-editor/fabric-dark.css +35 -34
  61. package/styles/rich-text-editor/fabric-dark.scss +4 -1
  62. package/styles/rich-text-editor/fabric.css +35 -34
  63. package/styles/rich-text-editor/fabric.scss +4 -1
  64. package/styles/rich-text-editor/fluent-dark.css +35 -34
  65. package/styles/rich-text-editor/fluent-dark.scss +4 -1
  66. package/styles/rich-text-editor/fluent.css +35 -34
  67. package/styles/rich-text-editor/fluent.scss +4 -1
  68. package/styles/rich-text-editor/highcontrast-light.css +35 -34
  69. package/styles/rich-text-editor/highcontrast-light.scss +4 -1
  70. package/styles/rich-text-editor/highcontrast.css +35 -34
  71. package/styles/rich-text-editor/highcontrast.scss +4 -1
  72. package/styles/rich-text-editor/icons/_bootstrap-dark.scss +305 -0
  73. package/styles/rich-text-editor/icons/_bootstrap.scss +305 -0
  74. package/styles/rich-text-editor/icons/_bootstrap4.scss +305 -0
  75. package/styles/rich-text-editor/icons/_bootstrap5-dark.scss +1 -0
  76. package/styles/rich-text-editor/icons/_bootstrap5.scss +304 -0
  77. package/styles/rich-text-editor/icons/_fabric-dark.scss +305 -0
  78. package/styles/rich-text-editor/icons/_fabric.scss +305 -0
  79. package/styles/rich-text-editor/icons/_fluent-dark.scss +1 -0
  80. package/styles/rich-text-editor/icons/_fluent.scss +304 -0
  81. package/styles/rich-text-editor/icons/_fusionnew.scss +304 -0
  82. package/styles/rich-text-editor/icons/_highcontrast-light.scss +305 -0
  83. package/styles/rich-text-editor/icons/_highcontrast.scss +305 -0
  84. package/styles/rich-text-editor/icons/_material-dark.scss +305 -0
  85. package/styles/rich-text-editor/icons/_material.scss +305 -0
  86. package/styles/rich-text-editor/icons/_material3.scss +304 -0
  87. package/styles/rich-text-editor/icons/_tailwind-dark.scss +1 -0
  88. package/styles/rich-text-editor/icons/_tailwind.scss +304 -0
  89. package/styles/rich-text-editor/material-dark.css +35 -34
  90. package/styles/rich-text-editor/material-dark.scss +4 -1
  91. package/styles/rich-text-editor/material.css +35 -34
  92. package/styles/rich-text-editor/material.scss +4 -1
  93. package/styles/rich-text-editor/tailwind-dark.css +35 -34
  94. package/styles/rich-text-editor/tailwind-dark.scss +4 -1
  95. package/styles/rich-text-editor/tailwind.css +35 -34
  96. package/styles/rich-text-editor/tailwind.scss +4 -1
  97. package/styles/tailwind-dark.css +35 -34
  98. package/styles/tailwind.css +35 -34
  99. package/syncfusion-ej2-angular-richtexteditor.d.ts +5 -0
  100. package/@syncfusion/ej2-angular-richtexteditor.es5.js +0 -303
  101. package/@syncfusion/ej2-angular-richtexteditor.es5.js.map +0 -1
  102. package/@syncfusion/ej2-angular-richtexteditor.js +0 -284
  103. package/@syncfusion/ej2-angular-richtexteditor.js.map +0 -1
  104. package/CHANGELOG.md +0 -1075
  105. package/dist/ej2-angular-richtexteditor.umd.js +0 -726
  106. package/dist/ej2-angular-richtexteditor.umd.js.map +0 -1
  107. package/dist/ej2-angular-richtexteditor.umd.min.js +0 -11
  108. package/dist/ej2-angular-richtexteditor.umd.min.js.map +0 -1
  109. package/ej2-angular-richtexteditor.d.ts +0 -5
  110. package/ej2-angular-richtexteditor.metadata.json +0 -1
  111. package/postinstall/tagchange.js +0 -18
  112. package/schematics/collection.json +0 -40
  113. package/schematics/generators/richtexteditor-iframe/index.d.ts +0 -3
  114. package/schematics/generators/richtexteditor-iframe/index.js +0 -8
  115. package/schematics/generators/richtexteditor-iframe/sample-details.d.ts +0 -5
  116. package/schematics/generators/richtexteditor-iframe/sample-details.js +0 -7
  117. package/schematics/generators/richtexteditor-iframe/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  118. package/schematics/generators/richtexteditor-iframe/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -44
  119. package/schematics/generators/richtexteditor-iframe/schema.d.ts +0 -3
  120. package/schematics/generators/richtexteditor-iframe/schema.js +0 -2
  121. package/schematics/generators/richtexteditor-iframe/schema.json +0 -125
  122. package/schematics/generators/richtexteditor-inline/index.d.ts +0 -3
  123. package/schematics/generators/richtexteditor-inline/index.js +0 -8
  124. package/schematics/generators/richtexteditor-inline/sample-details.d.ts +0 -5
  125. package/schematics/generators/richtexteditor-inline/sample-details.js +0 -7
  126. package/schematics/generators/richtexteditor-inline/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  127. package/schematics/generators/richtexteditor-inline/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -10
  128. package/schematics/generators/richtexteditor-inline/schema.d.ts +0 -3
  129. package/schematics/generators/richtexteditor-inline/schema.js +0 -2
  130. package/schematics/generators/richtexteditor-inline/schema.json +0 -125
  131. package/schematics/generators/richtexteditor-markdown/index.d.ts +0 -3
  132. package/schematics/generators/richtexteditor-markdown/index.js +0 -8
  133. package/schematics/generators/richtexteditor-markdown/sample-details.d.ts +0 -5
  134. package/schematics/generators/richtexteditor-markdown/sample-details.js +0 -7
  135. package/schematics/generators/richtexteditor-markdown/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  136. package/schematics/generators/richtexteditor-markdown/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -13
  137. package/schematics/generators/richtexteditor-markdown/schema.d.ts +0 -3
  138. package/schematics/generators/richtexteditor-markdown/schema.js +0 -2
  139. package/schematics/generators/richtexteditor-markdown/schema.json +0 -125
  140. package/schematics/generators/richtexteditor-overview/images/__path__/__name@dasherize__/RTEImage-Feather.png +0 -0
  141. package/schematics/generators/richtexteditor-overview/index.d.ts +0 -3
  142. package/schematics/generators/richtexteditor-overview/index.js +0 -8
  143. package/schematics/generators/richtexteditor-overview/sample-details.d.ts +0 -5
  144. package/schematics/generators/richtexteditor-overview/sample-details.js +0 -7
  145. package/schematics/generators/richtexteditor-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  146. package/schematics/generators/richtexteditor-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -47
  147. package/schematics/generators/richtexteditor-overview/schema.d.ts +0 -3
  148. package/schematics/generators/richtexteditor-overview/schema.js +0 -2
  149. package/schematics/generators/richtexteditor-overview/schema.json +0 -125
  150. package/schematics/generators/richtexteditor-reactform/index.d.ts +0 -3
  151. package/schematics/generators/richtexteditor-reactform/index.js +0 -8
  152. package/schematics/generators/richtexteditor-reactform/sample-details.d.ts +0 -5
  153. package/schematics/generators/richtexteditor-reactform/sample-details.js +0 -7
  154. package/schematics/generators/richtexteditor-reactform/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  155. package/schematics/generators/richtexteditor-reactform/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
  156. package/schematics/generators/richtexteditor-reactform/schema.d.ts +0 -3
  157. package/schematics/generators/richtexteditor-reactform/schema.js +0 -2
  158. package/schematics/generators/richtexteditor-reactform/schema.json +0 -125
  159. package/schematics/generators/richtexteditor-templatedriven/index.d.ts +0 -3
  160. package/schematics/generators/richtexteditor-templatedriven/index.js +0 -8
  161. package/schematics/generators/richtexteditor-templatedriven/sample-details.d.ts +0 -5
  162. package/schematics/generators/richtexteditor-templatedriven/sample-details.js +0 -7
  163. package/schematics/generators/richtexteditor-templatedriven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  164. package/schematics/generators/richtexteditor-templatedriven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -19
  165. package/schematics/generators/richtexteditor-templatedriven/schema.d.ts +0 -3
  166. package/schematics/generators/richtexteditor-templatedriven/schema.js +0 -2
  167. package/schematics/generators/richtexteditor-templatedriven/schema.json +0 -125
  168. package/schematics/ng-add/index.d.ts +0 -3
  169. package/schematics/ng-add/index.js +0 -9
  170. package/schematics/ng-add/schema.d.ts +0 -13
  171. package/schematics/ng-add/schema.js +0 -2
  172. package/schematics/ng-add/schema.json +0 -34
  173. package/schematics/tsconfig.json +0 -25
  174. package/schematics/utils/lib-details.d.ts +0 -4
  175. package/schematics/utils/lib-details.js +0 -6
package/CHANGELOG.md DELETED
@@ -1,1075 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### RichTextEditor
6
-
7
- #### Bug Fixes
8
-
9
- - `#I388456` - Now, when an empty span tag is loaded in the Rich Text Editor, the text displays properly.
10
- - `#I388270` - Now, Script error is not thrown when we click background color toolbar of the RTE, which is rendered inside a table.
11
-
12
- ## 20.2.38 (2022-07-12)
13
-
14
- ### RichTextEditor
15
-
16
- #### Bug Fixes
17
-
18
- - `#I385741` - Now, pressing the `ctrl+c` or `shift` key on the link inside the list doesn't remove the link.
19
- - `#I386619` - Now, the content area is visible properly when maximizing and minimizing the Rich Text Editor.
20
- - `#I385281` - Now, the height of the link, image, and table dialog when the RichTextEditor is in full-screen mode works properly.
21
-
22
- ## 20.2.36 (2022-06-30)
23
-
24
- ### RichTextEditor
25
-
26
- #### New Features
27
-
28
- - `#I380086` - Provided support to resize the first and last columns of a table without resizing the other columns.
29
- - `#I362331`, `F173395`, `I318486` - Provided support to insert text programmatically in the Markdown editor at the current cursor position using the `executeCommand` public method.
30
-
31
- ## 20.1.61 (2022-06-21)
32
-
33
- ### RichTextEditor
34
-
35
- #### Bug Fixes
36
-
37
- - `#I384191` - Now, pasting text content alone with images from MS Word works properly in the Rich Text Editor.
38
-
39
- ## 20.1.60 (2022-06-14)
40
-
41
- ### RichTextEditor
42
-
43
- #### Bug Fixes
44
-
45
- - `#I380279` - Now, the Image Resize icon is shown properly when Iframe is enabled.
46
- - `#I381276` - Now, image alignment is maintained with Iframe mode when focusing on the component.
47
-
48
- ## 20.1.59 (2022-06-07)
49
-
50
- ### RichTextEditor
51
-
52
- #### Bug Fixes
53
-
54
- - `#I378184` - Now, the script error is not thrown when resizing the Rich Text Editor component with inline mode.
55
- - `#I381208` - Now, applying bold multiple times using `ctrl+b` on the nested list works properly.
56
-
57
- ## 20.1.58 (2022-05-31)
58
-
59
- ### RichTextEditor
60
-
61
- #### Bug Fixes
62
-
63
- - `#I378721` - Now, pressing the enter key on the selection of multiple paragraph contents works properly in the `Firefox` browser.
64
- - `#I378378` - Now, copying and pasting the contents with a length that exceeds the `maxLength` API is properly prevented.
65
- - `#I378378` - Now, adding a link, image, and table is properly prevented when the content length exceeds the `maxLength` API limit.
66
- - `#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.
67
- - `#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.
68
- - `#I380152` - Now, typing content in the Rich Text Editor when loading empty `P` tags in the `Iframe` mode works properly.
69
- - `#I380165` - Now, the focus will be maintained properly after pressing the enter key in the Rich Text Editor when loading empty `P` tags.
70
-
71
- ## 20.1.57 (2022-05-24)
72
-
73
- ### RichTextEditor
74
-
75
- #### Bug Fixes
76
-
77
- - `#I376816` - Now, pressing the backspace or delete key after selecting all list contents in the Rich Text Editor removes the list properly.
78
-
79
- ## 20.1.56 (2022-05-17)
80
-
81
- ### RichTextEditor
82
-
83
- #### Bug Fixes
84
-
85
- - `#I377121` - Now, adding the `cssClass` property will also add the CSS class to all the dependent components of the Rich Text Editor.
86
- - `#I376816` - Now, applying list by selecting all content which is pasted in the Rich Text Editor on the `Firefox` browser works properly.
87
- - `#SF-378184` - Now, the script error is not thrown when resizing the Rich Text Editor component with inline mode.
88
-
89
- ## 20.1.55 (2022-05-12)
90
-
91
- ### RichTextEditor
92
-
93
- #### Bug Fixes
94
-
95
- - `#I374234` - Now, the Rich Text Editor table resize works properly when width is configured for the parent element.
96
-
97
- ## 20.1.52 (2022-05-04)
98
-
99
- ### RichTextEditor
100
-
101
- #### Bug Fixes
102
-
103
- - `#I375434` - Now, pressing the enter key multiple times when the content is empty in the Rich Text Editor on the `Firefox` browser works properly.
104
- - `#I349917` - Now, the floating toolbar in the Rich Text Editor is displayed properly when rendered inside the modal dialog.
105
- - `#I376141` - Now, pressing enter key before the image with caption doesn't remove the image.
106
- - `#I373983` - Now, the Rich Text Editor table resize works properly when placed inside the `Grid` component.
107
-
108
- ## 20.1.51 (2022-04-26)
109
-
110
- ### RichTextEditor
111
-
112
- #### Bug Fixes
113
-
114
- - `#I373527` - Now, the font name is updated properly when using the custom font names in the Rich Text Editor.
115
- - `#I373953` - Now, inserting the table after the list element with the image doesn't remove the image from the list.
116
- - `#I372489` - Now, resizing the images with equal height and width works properly.
117
- - `#F173394` - Now, the undo and redo keys work properly when pasting the content in the Rich Text Editor.
118
- - `#SF-367649` - Now, more space between the text and inserting a new link does not remove the space between the words.
119
-
120
- ## 20.1.50 (2022-04-19)
121
-
122
- ### RichTextEditor
123
-
124
- #### Bug Fixes
125
-
126
- - `#I367373` - Now, pressing `ctrl+z` to undo the changes works properly when `enterKey` is configured as `BR`.
127
-
128
- ## 20.1.48 (2022-04-12)
129
-
130
- ### RichTextEditor
131
-
132
- #### Bug Fixes
133
-
134
- - `#F173415` - Now, the input element can be inserted in the Rich Text Editor using the `executeCommand` public method.
135
- - `#I372932` - Now, copying and pasting the content with `contenteditable` set to false doesn't add any unwanted `br` tag.
136
- - `#I370707` - Now, the font size is updated properly when removing the bullet list using the backspace key.
137
- - `#I370210` - Now, the image will be loaded properly when pasting the contents from MS Word.
138
-
139
- ## 20.1.47 (2022-04-04)
140
-
141
- ### RichTextEditor
142
-
143
- #### Bug Fixes
144
-
145
- - `#I369216` - Now, pasting the note pad with link contents is pasted properly without moving the cursor to the previous line.
146
- - `#F171703` - Now, pasting the content in the Rich Text Editor after pressing the `shift + enter` key works properly.
147
-
148
- ## 19.4.38 (2021-12-17)
149
-
150
- ### RichTextEditor
151
-
152
- #### Bug Fixes
153
-
154
- - `#I347512` - The issue with "ColorPicker of Table quick toolbar got reset every time when quick toolbar rendered" has been resolved.
155
- - `#I347324` - The issue with "pressing enter key creates a new line when read only mode is enabled dynamically" has been resolved.
156
- - `#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.
157
- - `#I348822` - The issue with "selecting some content and applying font and background color alternatively will create some new elements" has been resolved.
158
- - `#I349275` - The issue with "image resizing is not working properly when image height is greater than image width" has been resolved.
159
-
160
- ## 19.3.53 (2021-11-12)
161
-
162
- ### RichTextEditor
163
-
164
- #### Bug Fixes
165
-
166
- - `#I346580` - The issue with "align top in the table vertical align quick toolbar is always disabled" has been resolved.
167
- - `#I346331` - The issue with "font family is not working when changed dynamically when the Rich Text Editor is in inline mode" has been resolved.
168
- - `#I346832` - The issue with "upload icon overlaps with the percentage icon in the insert image dialog when uploading" has been resolved.
169
-
170
- ## 19.3.47 (2021-10-26)
171
-
172
- ### RichTextEditor
173
-
174
- #### Bug Fixes
175
-
176
- - `#I342950` - The issue with "font-Family styles are not applied when changing dynamically" has been resolved.
177
- - `#I345842` - The issue with "Table cells with classes added initially are removed, when focusing on the table cells" has been resolved.
178
-
179
- ## 19.3.46 (2021-10-19)
180
-
181
- ### RichTextEditor
182
-
183
- #### Bug Fixes
184
-
185
- - `#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.
186
- - `#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.
187
-
188
- ## 19.3.45 (2021-10-12)
189
-
190
- ### RichTextEditor
191
-
192
- #### Bug Fixes
193
-
194
- - `#I338000` - The issue with `actionComplete` event triggered twice, when replacing the inserted image using QuickToolbar has been resolved.
195
- - `#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.
196
- - `#F168838` - The issue with "Image is not inserted in the editor, when using the `Turkish` language" has been resolved.
197
- - `#I344588`, `#I344586` - The issue with "page scrolls automatically when the enter key is pressed in the Rich Text Editor" has been resolved.
198
- - `#I344588` - The issue with "content goes outside of the Rich Text Editor when the enter key is pressed twice" has been resolved.
199
- - `#I342895` - The issue with "when copy and paste content in the empty Rich Text Editor focus is lost" has been resolved.
200
- - `#F168901` - The issue with `​` character code not removed when typing in the Rich Text Editor has been resolved.
201
- - `#I340970` - The issue with "Replacing the ` ` to empty space's with the `XTHML` validation" has been resolved.
202
- - `#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.
203
-
204
- ## 19.3.43 (2021-09-30)
205
-
206
- ### RichTextEditor
207
-
208
- #### New Features
209
-
210
- - `#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.
211
-
212
- #### Breaking Changes
213
-
214
- - `#I334962` - The image size popup, now has an option to set an `auto` value.
215
-
216
- #### Bug Fixes
217
-
218
- - `#I340683` - The issue with "Text inserted outside of the Rich Text Editor, after performing `Shift + Enter` key action" has been resolved.
219
- - `#I340683` - The issue with "Pasting the text content for the second time, after clearing the value hangs the Rich Text Editor" has been resolved.
220
- - `#I339234` - The issue with "Formats like bold, italic, underline will get unselected, when clicking in editor after selecting them" has been resolved.
221
-
222
- ## 19.2.62 (2021-09-14)
223
-
224
- ### RichTextEditor
225
-
226
- #### Bug Fixes
227
-
228
- - `#I340075` - The issue with "Resizing the table columns, is not updated the table cells properly" has been resolved.
229
- - `#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.
230
-
231
- ## 19.2.60 (2021-09-07)
232
-
233
- ### RichTextEditor
234
-
235
- #### Bug Fixes
236
-
237
- - `#I332614` - Resolved the issue with table row and column are not resizable, when its position exceeds the height of the Rich Text Editor.
238
- - `#I338000` - The issue with `actionComplete` event triggered twice, when replacing the inserted image using QuickToolbar has been resolved.
239
- - `#I340075` - The issue with "Resizing the table columns not updated the table cells properly" has been resolved.
240
-
241
- ## 19.2.59 (2021-08-31)
242
-
243
- ### RichTextEditor
244
-
245
- #### Bug Fixes
246
-
247
- - `#F167103` - The Image is not displayed, when adding next to the `hr` tag has been resolved.
248
- - `#FB24806` - The issue with "Rich Text Editor height jumps, on input in Iframe mode with custom toolbar configured" has been resolved.
249
- - `#I340017` - The issue with content area is not entirely visible, when expanding the toolbar if the `readOnly` property is enabled has been resolved.
250
- - `#FB27857` - The issue with "Cannot cancel `fullscreen` action in the `actionBegin` event" has been resolved.
251
- - `#I339831` - The issue with "Lists with multiple spans elements would produce new lists, while applying the `background-colour`" has been resolved.
252
- - `#F168085` - The issue with "Text color is removed for the range nodes, when removing the formats" has been resolved.
253
-
254
- ## 19.2.57 (2021-08-24)
255
-
256
- ### RichTextEditor
257
-
258
- #### Bug Fixes
259
-
260
- - `#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.
261
- - `#I338261` - The issue with "Rich Text Editor hangs when pasting the word content, after clearing the value" has been resolved.
262
- - `#I339192` - The "Rich Text Editor height is not adjusted to parent element height" issue has been fixed.
263
-
264
- ## 19.2.56 (2021-08-17)
265
-
266
- ### RichTextEditor
267
-
268
- #### Bug Fixes
269
-
270
- - `#I338000` - Resolved the exception raised, when pressing the enter key after changing the font-size in RTL mode in `Firefox` browser.
271
- - `#I338062` - The issue with "Link is not generated properly, when `pasteCleanUpmodule` is imported" has been resolved.
272
- - `#I338062` - The issue with "Unable to paste url more than two times, in the Rich Text Editor" has been resolved.
273
-
274
- ## 19.2.55 (2021-08-11)
275
-
276
- ### RichTextEditor
277
-
278
- #### Bug Fixes
279
-
280
- - `#I335578` - The issue with "alignment mismatching when pasting content from MS Word in the Rich Text Editor" has been fixed.
281
- - `#I335315` - The issue with "Image size restriction not works in Drag and Drop action" has been resolved.
282
-
283
- #### New Features
284
-
285
- - `#I309446`, `#I336258` - Provided support to paste rare list contents from MS Word in the Rich Text Editor.
286
- - `#I304121` - Improvements with the `deleteKey` action in the Rich Text Editor.
287
- - Provided `showDialog`, `closeDialog` methods to opens/closes the Link, Image, Table dialogs in the Rich Text Editor.
288
-
289
- ## 19.2.51 (2021-08-03)
290
-
291
- ### RichTextEditor
292
-
293
- #### Bug Fixes
294
-
295
- - `#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.
296
- - `#I336931` - The issue with "Character count is increased, when formats are being applied in empty content" has been fixed.
297
- - `#I335821` - The issue with "Upload image restriction not working with the paste action" has been resolved.
298
-
299
- ## 19.2.49 (2021-07-27)
300
-
301
- ### RichTextEditor
302
-
303
- #### Bug Fixes
304
-
305
- - `#I335580` - The issue with the Rich Text Editor toolbar status not updated, once the contents have been removed has been rectified.
306
-
307
- ## 19.2.48 (2021-07-20)
308
-
309
- ### RichTextEditor
310
-
311
- #### Bug Fixes
312
-
313
- - `#I332112`, `#I332022` - The issue with "Images change aspect ratio, when resized to smallest possible and back larger again" has been resolved.
314
- - `#FB26798` - The issue with "Rich Text Editor `change` event is not triggered in the code view" has been resolved.
315
- - `#I334073`- The issue with "`Uploader` element is not present in DOM, when drag and drop images in the Rich Text Editor" has been resolved.
316
- - `#I335073` - The issue with "Default font family applied, is not working in inline mode" has been resolved.
317
-
318
- ## 19.2.47 (2021-07-13)
319
-
320
- ### RichTextEditor
321
-
322
- #### Bug Fixes
323
-
324
- - `#I332610` - The issue with "Adding a column to a table after resizing a column resets the resized column width" has been resolved.
325
- - `#I326508` - The issue with "Content is pasted outside the edit area of the Rich Text Editor when `enableXhtml` is set true" has been resolved.
326
- - `#I332614` - The issue with "Columns and row resize not working when there is unequal number columns in all rows" has been resolved.
327
-
328
- ## 19.2.44 (2021-06-30)
329
-
330
- ### RichTextEditor
331
-
332
- #### New Features
333
-
334
- - `#I304121` - Improvements with the `backSpaceKey` action in the Rich Text Editor.
335
- - `#I292778`, `#I308312`, `#I309446`, `#I313298` - Provided the List style type and List style image support for the Numbered and Bulleted lists.
336
-
337
- #### Bug Fixes
338
-
339
- - `#I327676` - The issue with "Custom toolbar icons not disabled/enabled, when multiple custom toolbar is configured" has been resolved.
340
- - `#I330909` - The issue with "Inserting table after pressing `shit+enter` deletes all the content below in the Rich Text Editor" has been resolved.
341
- - `#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.
342
- - `#I327566` - The issue with "Image resizing is not working properly when `resizeByPercent` is set true" has been resolved.
343
-
344
- - `#308692` - The issue with "Script error occurs, when destroy the Rich Text Editor with toolbar disabled" has been resolved.
345
-
346
- ## 19.1.54 (2021-03-30)
347
-
348
- ### RichTextEditor
349
-
350
- #### New Features
351
-
352
- - `#257889`, `#264792`, `#280064`, `#305551`, `#316177`, - Provided support for the table cell merge and split in Rich Text Editor table properties.
353
-
354
- #### Bug Fixes
355
-
356
- - `#318815`- The issue with "Resize grip of the image freezes, after resizing for the first time" has been resolved.
357
- - `#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.
358
- - `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.
359
- - `F163545`- The issue with "'cmd+z' is not working after pasting the content in Mac machine" has been resolved.
360
- - `#313508` - The issue with "event 'afterImageDelete' triggers two times when removing the image using the backspace key" has been resolved.
361
- - `#313508` - The issue with "Console error is thrown, when updating the selected image with another image" has been resolved.
362
-
363
- ## 18.4.47 (2021-03-09)
364
-
365
- ### RichTextEditor
366
-
367
- #### Bug Fixes
368
-
369
- - `#317795`- The issue with "Pasting the block node contents in the Rich Text Editor" has been resolved.
370
-
371
- ## 18.4.46 (2021-03-02)
372
-
373
- ### RichTextEditor
374
-
375
- #### Bug Fixes
376
-
377
- - `#309809` - The issue with "Unable to resize the image in the Rich Text Editor when width is set" is resolved.
378
- - `#314678` - Resolved the script error raised, when pasting the content after pressing the shift-enter key.
379
- - `F161914` - The issue with "Bold format removed for the content previous to the selection in the Rich Text Editor" is resolved.
380
-
381
- ## 18.4.44 (2021-02-23)
382
-
383
- ### RichTextEditor
384
-
385
- #### Bug Fixes
386
-
387
- - `#314104` - The issue with the "Rich Text Editor's table width is not set properly if values are configured higher" is resolved.
388
- - `F161887` - The issue with "Removing the italic format removes the underline format in the Rich Text Editor" is resolved.
389
-
390
- ## 18.4.42 (2021-02-09)
391
-
392
- ### RichTextEditor
393
-
394
- #### Bug Fixes
395
-
396
- - `F160581` - The issue with "The RichTextEditor table toolbar popup is hidden inside the higher Z-Index elements" has been resolved.
397
-
398
- ## 18.4.39 (2021-01-28)
399
-
400
- ### RichTextEditor
401
-
402
- #### Bug Fixes
403
-
404
- - `#296208` - Resolved the issue with the Placeholder blinks when pressing the enter key in the editor.
405
- - `#310044` - The issue with the resize grip alignment when the toolbar is disabled state has been resolved.
406
-
407
- ## 18.4.34 (2021-01-12)
408
-
409
- ### RichTextEditor
410
-
411
- #### Bug Fixes
412
-
413
- `#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.
414
-
415
-
416
- `#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.
417
-
418
-
419
- ## 18.4.33 (2021-01-05)
420
-
421
- ### RichTextEditor
422
-
423
- #### New Features
424
-
425
- - `F160594` - Provided new event `beforeImageDrop` that triggers before drop a image in Rich Text Editor component.
426
-
427
- #### Bug Fixes
428
-
429
- `#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.
430
-
431
-
432
- ## 18.4.30 (2020-12-17)
433
-
434
- ### RichTextEditor
435
-
436
- #### New Features
437
-
438
- - **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.
439
- - `F149800` - Provided new property `removeUrl` in `insertImageSettings` API to trigger the image remove operation in server, when image removed from editor.
440
- - `#301980` - Provided the support to return the `Xhtml` value in the `value` property when the `enableXtml` property is enabled in the Rich Text Editor.
441
- - `#264791`, `#295032`, `#299905`, `#F159588` - Provided the support to retain all the styles from MS Excel while pasting the content in the Rich Text Editor.
442
-
443
- #### Bug Fixes
444
-
445
- `#296208` - The issue with "the placeholder blinks when pressing enter key in the Rich Text Editor" has been resolved.
446
-
447
-
448
- ## 18.3.35 (2020-10-01)
449
-
450
- ### RichTextEditor
451
-
452
- #### Bug Fixes
453
-
454
- `#292431` - The issue with "Rich Text Editor input elements are not destroyed properly when rendered based on the conditions" has been resolved.
455
-
456
-
457
- ## 18.2.56 (2020-09-01)
458
-
459
- ### RichTextEditor
460
-
461
- #### Bug Fixes
462
-
463
- - `#290237`, `#290247` - The issue with "copy and pasting content in the Markdown Editor is not working" has been resolved.
464
-
465
- `#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.
466
-
467
-
468
- `#F156796` - The performance issue when several Rich Text Editors are rendered in a single page has been resolved.
469
-
470
-
471
- ## 18.2.55 (2020-08-25)
472
-
473
- ### RichTextEditor
474
-
475
- #### Bug Fixes
476
-
477
- `#287641` - The issue with "pasting the list content from MS Word in the Rich Text Editor removes the copied content" has been resolved.
478
-
479
-
480
- ## 18.2.54 (2020-08-18)
481
-
482
- ### RichTextEditor
483
-
484
- #### Bug Fixes
485
-
486
- `#287193` - The issue with "Script error occurs with toolbar options when placing the cursor before & after the RichTextEditor table" has been resolved.
487
-
488
-
489
- ## 18.2.48 (2020-08-04)
490
-
491
- ### RichTextEditor
492
-
493
- #### Bug Fixes
494
-
495
- - `#266152` - The issue with "List selection with delete key action does not remove lists properly" has been resolved.
496
-
497
- ## 18.2.46 (2020-07-21)
498
-
499
- ### RichTextEditor
500
-
501
- #### New Features
502
-
503
- - `#272591` - Provided new event `beforeImageUpload` that triggers before the image upload process from Rich Text Editor component.
504
-
505
- #### Bug Fixes
506
-
507
- - `#282973` - The issue with "Selecting the transparent color from the FontColor in Rich Text Editor" has been resolved.
508
-
509
- ## 18.2.45 (2020-07-14)
510
-
511
- ### RichTextEditor
512
-
513
- #### Bug Fixes
514
-
515
- - `#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.
516
- - `#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.
517
-
518
- ## 18.2.44 (2020-07-07)
519
-
520
- ### RichTextEditor
521
-
522
- #### New Features
523
-
524
- - `#271295` - Provided public methods `showInlineToolbar` and `hideInlineToolbar` to show and hide the inline toolbars in the Rich Text Editor.
525
-
526
- #### Bug Fixes
527
-
528
- - The issue with "Rich Text Editor data binding not working in Source Code view" has been resolved.
529
-
530
- ## 18.1.57 (2020-06-16)
531
-
532
- ### RichTextEditor
533
-
534
- #### Bug Fixes
535
-
536
- - `#275859` - The issue with "throwing script error while pasting the content with table" in the Rich Text Editor has been resolved.
537
- - `#279019` - The issue with "pasting the content inside the nested table that breaks the HTML content in the Rich Text Editor" has been resolved.
538
- - `#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.
539
-
540
- ## 18.1.54 (2020-05-26)
541
-
542
- ### RichTextEditor
543
-
544
- #### Bug Fixes
545
-
546
- - `#275859` - The issue with unable to edit the Rich Text Editor content after pasting the content with table has been resolved.
547
-
548
- ## 18.1.53 (2020-05-19)
549
-
550
- ### RichTextEditor
551
-
552
- #### Bug Fixes
553
-
554
- - `#F150037` - The issue with "throwing script error while dynamically enable/disable the toolbar" has been resolved.
555
-
556
- ## 18.1.52 (2020-05-13)
557
-
558
- ### RichTextEditor
559
-
560
- #### Bug Fixes
561
-
562
- - `#F152908` - The issue sub list remains after deleting the parent list element in the Rich Text Editor has been resolved.
563
-
564
- ## 18.1.48 (2020-05-05)
565
-
566
- ### RichTextEditor
567
-
568
- #### Bug Fixes
569
-
570
- - `#272406` - The issue background color format not applied properly on changing the font size in the Rich Text Editor has been resolved.
571
-
572
- ## 18.1.45 (2020-04-21)
573
-
574
- ### RichTextEditor
575
-
576
- #### Bug Fixes
577
-
578
- - `#271937` - The issue table border not applied when pasting the content from the Excel in the Rich Text Editor has been resolved.
579
- - `#271289` - The issue with using keyboard short cut `ctrl+k` to insert link not working in the Rich Text Editor has been resolved.
580
-
581
- ## 18.1.44 (2020-04-14)
582
-
583
- ### RichTextEditor
584
-
585
- #### New Features
586
-
587
- - `#F152228`, `#266987` - Provided an event `afterImageDelete` to be triggered after the image is removed from the Rich Text Editor content.
588
-
589
- #### Bug Fixes
590
-
591
- - `#F152859` - The issue `executeCommand` using `insertHTML` not inserting the Iframe element in the Rich Text Editor has been resolved.
592
- - `#267874`, `#269214`, `#271199` - Resolved the compilation error with typescript version 3.8.3
593
- - `#F152908` - The issue with empty sub-list not removed from Rich Text Editor has been resolved.
594
-
595
- ## 18.1.42 (2020-04-01)
596
-
597
- ### RichTextEditor
598
-
599
- #### New Features
600
-
601
- - `#266522` - Provided scrollable option support to the toolbar by setting toolbar type as `Scrollable` in Rich Text Editor.
602
-
603
- ## 17.4.51 (2020-02-25)
604
-
605
- ### RichTextEditor
606
-
607
- #### Bug Fixes
608
-
609
- - `F151491` - Resolved the issue with RichTextEditor height that is not set properly when the toolbar is disabled.
610
- - `F151491` - Resolved the script errors thrown when opening an insert image dialog several times.
611
-
612
- ## 17.4.49 (2020-02-11)
613
-
614
- ### RichTextEditor
615
-
616
- #### Bug Fixes
617
-
618
- - `#261548`, `#262909` - The issue with a new line added after pasting the content and focusing out in the Rich Text Editor has been resolved.
619
- - `#F150940` - The issue with cursor not maintained when using the `executeCommand` method with `insertHTML` in the Rich Text Editor has been resolved.
620
- - `#F150991` - Fixed issue with script error when RichTextEditor is dynamically rendered using setState.
621
- - `#F150991` - Resolved the issue with the fontName requestType is getting as fontSize after the `change` event has been triggered.
622
- - `#F150742` - Resolved the issue with `dialogOpen` event does not return the content element in insert image dialog.
623
- - `#262805` - Fixed issue `change` event triggers first time when `readonly` property is enabled.
624
-
625
- ## 17.4.47 (2020-02-05)
626
-
627
- ### RichTextEditor
628
-
629
- #### Bug Fixes
630
-
631
- - `#150737` - Resolved the issue with inserting an image dialog that was not properly rendered on mobile devices.
632
- - `#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.
633
-
634
- ## 17.4.46 (2020-01-30)
635
-
636
- ### RichTextEditor
637
-
638
- #### New Features
639
-
640
- - `#F149481` - Provided the support to get the selected HTML content using the `getSelectedHtml` public method.
641
-
642
- ## 17.4.44 (2021-01-21)
643
-
644
- ### RichTextEditor
645
-
646
- #### New Features
647
-
648
- - `#256724`, `#F149821` - Provided the support to insert a table using the `executeCommand` public method in the RichTextEditor.
649
-
650
- ## 17.4.43 (2020-01-14)
651
-
652
- ### RichTextEditor
653
-
654
- #### Bug Fixes
655
-
656
- - `#258971` - Resolved the issue with an image element that is appended on insert image dialog drop area when drag and drop an image.
657
- - `#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.
658
- - `#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.
659
-
660
- ## 17.4.40 (2019-12-24)
661
-
662
- ### RichTextEditor
663
-
664
- #### Bug Fixes
665
-
666
- - `#254606` - Web accessibility related issues have been resolved.
667
-
668
- ## 17.4.39 (2019-12-17)
669
-
670
- ### RichTextEditor
671
-
672
- #### New Features
673
-
674
- - **Callback event to custom toolbar**: The feature allows to bind click event handler to the custom toolbar items in the Rich Text Editor.
675
- - **Code format as toolbar button**: Provided an option to add the code format as toolbar button with toggle state in the Rich Text Editor.
676
- - **XHTML validation**: Provided support to validate the content of Rich Text Editor with XHTML standard.
677
-
678
- ## 17.3.29 (2019-11-26)
679
-
680
- ### RichTextEditor
681
-
682
- #### Bug Fixes
683
-
684
- - `#F149001` - The issue with customization of table cell padding and cell spacing in the Rich Text Editor has been resolved.
685
-
686
- ## 17.3.28 (2019-11-19)
687
-
688
- ### RichTextEditor
689
-
690
- #### Bug Fixes
691
-
692
- - `#254865` - Resolved the issue with an image that is not removed when pressing the delete key by enabling the `showOnRightClick` property.
693
-
694
- ## 17.3.19 (2019-10-22)
695
-
696
- ### RichTextEditor
697
-
698
- #### Bug Fixes
699
-
700
- - `#251855` - Resolved the issue with appearance of transparent color tile in Rich Text Editor's color picker.
701
- - `#251699` - The issue with pasting content from Word document displays unnecessary HTML content in the Rich Text Editor has been fixed.
702
- - `#251640` - The issue "placeholder not hidden after inserting a table or an image in the Rich Text Editor" has been fixed.
703
- - `#250650` - The issue with image rename in the imageUploadSuccess event not working when drag and drop an image into RichTextEditor has been fixed.
704
- - `#250587` - The issue with null field shown on form data headers response when drag and drop an image into RichTextEditor has been fixed.
705
- - `#251855` - The issue "console error is thrown, when the image upload dialog is opened in IE browser" has been fixed.
706
-
707
- ## 17.3.16 (2019-10-09)
708
-
709
- ### RichTextEditor
710
-
711
- #### Bug Fixes
712
-
713
- - `#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.
714
-
715
- ## 17.3.14 (2019-10-03)
716
-
717
- ### RichTextEditor
718
-
719
- #### Bug Fixes
720
-
721
- - `#249182` - The issue with localizing static texts of paste prompt dialog in the Rich Text Editor has been fixed.
722
- - `#249613` - The issue with pasting content from Microsoft Excel sheet that throws console error in the Rich Text Editor has been fixed.
723
-
724
- ## 17.3.9-beta (2019-09-20)
725
-
726
- ### RichTextEditor
727
-
728
- #### New Features
729
-
730
- - **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.
731
- - **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.
732
- - **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.
733
-
734
- #### Bug Fixes
735
-
736
- - `#F146927` - The issue with copy and pasting image from MS Word to the RichTextEditor has been fixed.
737
- - `#246340` - The issue with pasting the content as plain-text in Rich Text Editor has been fixed.
738
-
739
- - `#246340` - The issue with select all and delete the content in Rich Text Editor has been fixed.
740
-
741
- ## 17.2.47 (2019-08-27)
742
-
743
- ### RichTextEditor
744
-
745
- #### Bug Fixes
746
-
747
- - `#242999` - Now, Reactive form validates properly on `shift + tab` key action.
748
- - `#244796` - Floating toolbar now renders properly without alignment issue, when render the Rich Text Editor within Tab.
749
- - `#243448` - Performance with page scroll has been improved when multiple Rich Text Editor components are rendered in the page.
750
- - `#241388` - The issue with right-click option while rendering RichTextEditor inside the table has been fixed.
751
-
752
- ## 17.2.46 (2019-08-22)
753
-
754
- ### RichTextEditor
755
-
756
- #### New Features
757
-
758
- - **Image upload events**
759
- - `#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.
760
-
761
- - **Image upload events**: `#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.
762
-
763
- #### Bug Fixes
764
-
765
- - `#243475` - Now, you can validate max-length even showCharCount property as false.
766
- - `#243475` - Resolved the issue with max-length validation on pasting the content.
767
- - `#242999` - The key action for `tab` key and `shift + tab` key are similar now.
768
-
769
- ## 17.2.41 (2019-08-14)
770
-
771
- ### RichTextEditor
772
-
773
- #### New Features
774
-
775
- - **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.
776
- - `#242771` - Provided the support to handle both absolute and relative path links.
777
-
778
- #### Bug Fixes
779
-
780
- - `#243767` - The issue with applying selected format based on content editable has been fixed.
781
-
782
- - `#242999` - The Reactive form validation, now works with tab key action.
783
-
784
- ## 17.2.36 (2019-07-24)
785
-
786
- ### RichTextEditor
787
-
788
- #### Bug Fixes
789
-
790
- - `#242377` - The issue, "alignment is not working while pasting content from notepad" has been resolved.
791
- - `#F146057` - The issue, "formatting(strong and alignment) is not maintained on pasting web content" has been resolved.
792
-
793
- ## 17.2.35 (2019-07-17)
794
-
795
- ### RichTextEditor
796
-
797
- #### Bug Fixes
798
-
799
- - `#241388` - The issue, "browser context menu is not shown on right click when enabling the showOnRightClick property" has been resolved.
800
-
801
- ## 17.2.34 (2019-07-11)
802
-
803
- ### RichTextEditor
804
-
805
- #### Bug Fixes
806
-
807
- - `#F145376` - The issue, "action complete event is not triggered when deleting the content with text and images" has been resolved.
808
- - `#237729` - The issue "table column width is shown as pixel instead of percentage while resizing" has been fixed.
809
- - `#237729` - Pickers mode throws script error when selecting the color in table's quick toolbar, that issue has been fixed.
810
- - `#237729` - Color picker value doesn't set as RGBA(alpha) value in content editor, that issue has been fixed.
811
- - `#240808` - The issue "opening a link in new window throws an error for auto generated link" has been fixed.
812
- - `#240024` - The issue, "spacing between words is removed when focus out the editor" has been resolved.
813
- - `#234519`, `#234586`, `#F138909` - The issues with table and its functionalities in IE11 has been resolved.
814
-
815
- ## 17.2.28-beta (2019-06-27)
816
-
817
- ### RichTextEditor
818
-
819
- #### New Features
820
-
821
- - **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.
822
-
823
- #### Breaking Changes
824
-
825
- - 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']`.
826
-
827
- #### Bug Fixes
828
-
829
- - `#238872` - Issue with cursor position when enabled list with empty editor that issue has been resolved.
830
-
831
- ## 17.1.49 (2019-05-29)
832
-
833
- ### RichTextEditor
834
-
835
- #### Bug Fixes
836
-
837
- - `#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.
838
-
839
- ## 17.1.48 (2019-05-21)
840
-
841
- ### RichTextEditor
842
-
843
- #### New Features
844
-
845
- - `#230976` - Opens a quick toolbar on right-click support has been provided.
846
-
847
- #### Bug Fixes
848
-
849
- - `#235120` - RichTextEditor's paste as plain text doesn't preserve line break that issue has been resolved.
850
-
851
- ## 17.1.43 (2019-04-30)
852
-
853
- ### RichTextEditor
854
-
855
- #### Bug Fixes
856
-
857
- - `#234280` - RichTextEditor's toolbar is broken when using ES2015 target that issue has been resolved.
858
-
859
- ## 17.1.42 (2019-04-23)
860
-
861
- ### RichTextEditor
862
-
863
- #### Bug Fixes
864
-
865
- - Change event doesn't trigger, when RichTextEditor blurs inside of `In-place Editor` that issue has been fixed.
866
-
867
- ## 17.1.40 (2019-04-09)
868
-
869
- ### RichTextEditor
870
-
871
- #### Bug Fixes
872
-
873
- - Insert image functionality of `RichTextEditor` is not working when render with `File Upload`, that issue has been fixed.
874
-
875
- ## 17.1.32-beta (2019-03-13)
876
-
877
- ### RichTextEditor
878
-
879
- #### Bug Fixes
880
-
881
- - Image and Table quick toolbar open while scrolling the content in the iPhone device, that issue has been fixed.
882
- - Getting console error while rendering inline mode with `FontColor` and `BackgroundColor` in mobile view, that issue has been fixed.
883
-
884
- -`Undo` and `Redo` icon visible in preview mode issue has been fixed
885
-
886
-
887
- #### New Features
888
-
889
- - **Paste cleanup**: This feature allows users to clean up HTML content when copying and pasting any other content from external sources.
890
-
891
- ## 16.4.55 (2019-02-27)
892
-
893
- ### RichTextEditor
894
-
895
- #### Bug Fixes
896
-
897
- - Insert image dialog is not rendering properly while setting the `imageUploadMessage` text as long in localization, that issue has been fixed.
898
- - Localization is not applied to static `DropDownButton` items, that issue has been fixed.
899
-
900
- ## 16.4.54 (2019-02-19)
901
-
902
- ### RichTextEditor
903
-
904
- #### Bug Fixes
905
-
906
- - HTML 5 form reset behaviour has been corrected.
907
- - Editor content rendered twice in DOM when using `RichTextEditorFor`, that issue has been fixed.
908
- - EJ2 compatibility styles are not worked while component rendering with `textarea` element, that issue has been fixed.
909
-
910
- ## 16.4.53 (2019-02-13)
911
-
912
- ### RichTextEditor
913
-
914
- #### Bug Fixes
915
-
916
- - 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.
917
- - HTML 5 standard issues has been fixed.
918
- - Cursor position changed after typed some contents issue has been fixed.
919
-
920
- #### Breaking Changes
921
-
922
- - Changed the `fontSize`, `fontFamily`, `format` properties default value as null.
923
-
924
- ## 16.4.48 (2019-01-22)
925
-
926
- ### RichTextEditor
927
-
928
- #### Bug Fixes
929
-
930
- - Table QuickToolbar open wherever click within a component issue has been fixed.
931
- - FontSize "px" and fontFamily "veranda" not updated in toolbar status, that issue has been fixed.
932
- - Clicking on view source code with single character inside textarea removes the character, that issue has been fixed.
933
-
934
- ## 16.4.47 (2019-01-16)
935
-
936
- ### RichTextEditor
937
-
938
- #### Bug Fixes
939
-
940
- - ASP.NET core data annotation issue has been fixed.
941
- - Console error is thrown in IE browser with angular routing, that issue has been fixed.
942
- - Unable to maintain the RichTextEditor color picker pop-up position when scrolling the browser has been fixed.
943
-
944
- ## 16.4.46 (2019-01-08)
945
-
946
- ### RichTextEditor
947
-
948
- #### Bug Fixes
949
-
950
- - Changing the font color of underlined text doesn’t change the color of the line, that issue has been fixed.
951
- - RichTextEditor injectable module is missed from import setting file in [CRG](https://crg.syncfusion.com/), that issue has been fixed.
952
- - The change event is triggered on clicking into HTML source code view in Edge browser, that issue has been fixed.
953
- - Blur event is not triggered when we change focus directly from one RTE to another RTE, that issue has been fixed.
954
- - RichTextEditor full screen not working properly when render inside the overflow element has been fixed.
955
-
956
- ## 16.4.44 (2018-12-24)
957
-
958
- ### RichTextEditor
959
-
960
- #### Bug Fixes
961
-
962
- - Pasted URL is not converted to links automatically, that issue has been fixed.
963
- - Image paste as twice in Firefox browser, that issue has been fixed.
964
- - The value property and getHtml method will be updated within an interval to `saveInterval` property.
965
-
966
- ## 16.4.40-beta (2018-12-10)
967
-
968
- ### RichTextEditor
969
-
970
- #### New Features
971
-
972
- - Insert table support has provided for MarkDown Editor.
973
-
974
- #### Bug Fixes
975
-
976
- - Dynamic enabling and disabling support for toolbar items has been provided.
977
- - Image dialog's Browse button width is not adjusted based on the text issue has been resolved.
978
-
979
- ## 16.3.17 (2018-09-12)
980
-
981
- ### RichTextEditor
982
-
983
- #### New Features
984
-
985
- 1. Image resize support has been provided.
986
- 2. Insert table support has provided for HTML Editor which includes below sub features,
987
- 1. Create and modify the table, table rows and columns.
988
- 2. Row and column resize.
989
- 3. Quick toolbar interaction.
990
- 4. Table header and custom styles.
991
-
992
- #### Breaking Changes
993
-
994
- - `setContent` method has removed, use `value` property to set the content instead.
995
-
996
- ## 16.2.51 (2018-09-04)
997
-
998
- ### RichTextEditor
999
-
1000
- #### Bug Fixes
1001
-
1002
- - RichTextEditor modal `popup` style override issue has been resolved.
1003
- - RichTextEditor removes spacing between words when content is pasted from a word document, that
1004
- - issue has been fixed.
1005
-
1006
- ## 16.2.50 (2018-08-28)
1007
-
1008
- ### RichTextEditor
1009
-
1010
- #### Bug Fixes
1011
-
1012
- - Unable to paste image copied from windows in RichTextEditor issue has been resolved.
1013
-
1014
- ## 16.2.49 (2018-08-21)
1015
-
1016
- ### RichTextEditor
1017
-
1018
- #### Bug Fixes
1019
-
1020
- - `IFrame` mode external font family removed in RichTextEditor.
1021
- - Unable to delete the selected content of RichTextEditor in inline toolbar issue has been resolved.
1022
-
1023
- ## 16.2.48 (2018-08-14)
1024
-
1025
- ### RichTextEditor
1026
-
1027
- #### Bug Fixes
1028
-
1029
- - Removed external font family in RichTextEditor source.
1030
-
1031
- ## 16.2.47 (2018-08-07)
1032
-
1033
- ### RichTextEditor
1034
-
1035
- #### Bug Fixes
1036
-
1037
- - `FontColor` and `BackgroundColor` toolbar item not rendered in inline mode issue has been resolved.
1038
- - RichTextEditor toolbar disabled mode content select console error issue has been resolved.
1039
- - Provided view encapsulation support.
1040
-
1041
- ## 16.2.45 (2018-07-17)
1042
-
1043
- ### RichTextEditor
1044
-
1045
- #### Bug Fixes
1046
-
1047
- - Provided `getText` public method from RichTextEditor.
1048
-
1049
- ## 16.2.44 (2018-07-10)
1050
-
1051
- ### RichTextEditor
1052
-
1053
- #### Bug Fixes
1054
-
1055
- - RichTextEditor `actionBegin` event missing arguments included.
1056
-
1057
- ## 16.2.41 (2018-06-25)
1058
-
1059
- ### RichTextEditor
1060
-
1061
- 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.
1062
-
1063
-
1064
- - Provides IFRAME and DIV mode.
1065
- - Handles markdown editing.
1066
- - Contains a modular library to load the necessary functionality on demand.
1067
- - Provides a fully customizable toolbar.
1068
- - HTML view to edit the source directly for developers.
1069
- - Supports to integrate third-party library.
1070
- - Preview the modified content before saving it.
1071
- - Handles images, hyperlinks, video,hyperlinks, uploads, and more.
1072
- - Contains undo/redo manager.
1073
- - Creates bulleted and numbered lists.
1074
-
1075
-