@syncfusion/ej2-richtexteditor 18.4.34 → 18.4.42-70943

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 (92) hide show
  1. package/CHANGELOG.md +782 -718
  2. package/README.md +67 -67
  3. package/dist/ej2-richtexteditor.umd.min.js +1 -1
  4. package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-richtexteditor.es2015.js +271 -153
  6. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  7. package/dist/es6/ej2-richtexteditor.es5.js +393 -275
  8. package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
  9. package/helpers/e2e/index.js +3 -3
  10. package/license +9 -9
  11. package/package.json +76 -53
  12. package/src/editor-manager/plugin/image.js +2 -1
  13. package/src/editor-manager/plugin/inserthtml.js +14 -10
  14. package/src/editor-manager/plugin/link.js +6 -6
  15. package/src/editor-manager/plugin/lists.js +6 -2
  16. package/src/editor-manager/plugin/ms-word-clean-up.js +22 -6
  17. package/src/editor-manager/plugin/selection-commands.d.ts +1 -0
  18. package/src/editor-manager/plugin/selection-commands.js +34 -3
  19. package/src/editor-manager/plugin/table.js +2 -1
  20. package/src/global.d.ts +1 -0
  21. package/src/rich-text-editor/actions/full-screen.d.ts +0 -1
  22. package/src/rich-text-editor/actions/full-screen.js +6 -4
  23. package/src/rich-text-editor/actions/keyboard-model.d.ts +13 -13
  24. package/src/rich-text-editor/actions/keyboard.js +21 -20
  25. package/src/rich-text-editor/actions/resize.js +3 -0
  26. package/src/rich-text-editor/base/constant.d.ts +5 -0
  27. package/src/rich-text-editor/base/constant.js +5 -0
  28. package/src/rich-text-editor/base/rich-text-editor-model.d.ts +701 -701
  29. package/src/rich-text-editor/base/rich-text-editor.js +61 -36
  30. package/src/rich-text-editor/formatter/html-formatter.js +13 -13
  31. package/src/rich-text-editor/formatter/markdown-formatter.js +13 -13
  32. package/src/rich-text-editor/models/iframe-settings-model.d.ts +21 -21
  33. package/src/rich-text-editor/models/iframe-settings.js +19 -19
  34. package/src/rich-text-editor/models/inline-mode-model.d.ts +9 -9
  35. package/src/rich-text-editor/models/inline-mode.js +19 -19
  36. package/src/rich-text-editor/models/toolbar-settings-model.d.ts +328 -328
  37. package/src/rich-text-editor/models/toolbar-settings.js +19 -19
  38. package/src/rich-text-editor/renderer/iframe-content-renderer.js +13 -13
  39. package/src/rich-text-editor/renderer/image-module.d.ts +2 -0
  40. package/src/rich-text-editor/renderer/image-module.js +28 -8
  41. package/src/rich-text-editor/renderer/table-module.js +6 -1
  42. package/styles/_all.scss +2 -2
  43. package/styles/bootstrap-dark.css +22 -1
  44. package/styles/bootstrap.css +22 -1
  45. package/styles/bootstrap4.css +22 -1
  46. package/styles/bootstrap5-dark.css +0 -0
  47. package/styles/bootstrap5-dark.scss +0 -0
  48. package/styles/bootstrap5.css +0 -0
  49. package/styles/bootstrap5.scss +0 -0
  50. package/styles/fabric-dark.css +22 -1
  51. package/styles/fabric.css +22 -1
  52. package/styles/highcontrast-light.css +22 -1
  53. package/styles/highcontrast.css +22 -1
  54. package/styles/material-dark.css +22 -1
  55. package/styles/material.css +22 -1
  56. package/styles/rich-text-editor/_all.scss +2 -2
  57. package/styles/rich-text-editor/_bootstrap-dark-definition.scss +151 -151
  58. package/styles/rich-text-editor/_bootstrap-definition.scss +184 -184
  59. package/styles/rich-text-editor/_bootstrap4-definition.scss +307 -307
  60. package/styles/rich-text-editor/_fabric-dark-definition.scss +150 -150
  61. package/styles/rich-text-editor/_fabric-definition.scss +148 -148
  62. package/styles/rich-text-editor/_highcontrast-definition.scss +148 -148
  63. package/styles/rich-text-editor/_highcontrast-light-definition.scss +148 -148
  64. package/styles/rich-text-editor/_layout.scss +1416 -1405
  65. package/styles/rich-text-editor/_material-dark-definition.scss +151 -151
  66. package/styles/rich-text-editor/_material-definition.scss +150 -150
  67. package/styles/rich-text-editor/_theme.scss +499 -489
  68. package/styles/rich-text-editor/bootstrap-dark.css +22 -1
  69. package/styles/rich-text-editor/bootstrap.css +22 -1
  70. package/styles/rich-text-editor/bootstrap4.css +22 -1
  71. package/styles/rich-text-editor/fabric-dark.css +22 -1
  72. package/styles/rich-text-editor/fabric.css +22 -1
  73. package/styles/rich-text-editor/highcontrast-light.css +22 -1
  74. package/styles/rich-text-editor/highcontrast.css +22 -1
  75. package/styles/rich-text-editor/icons/_bootstrap-dark.scss +289 -289
  76. package/styles/rich-text-editor/icons/_bootstrap.scss +288 -288
  77. package/styles/rich-text-editor/icons/_bootstrap4.scss +288 -288
  78. package/styles/rich-text-editor/icons/_fabric-dark.scss +288 -288
  79. package/styles/rich-text-editor/icons/_fabric.scss +288 -288
  80. package/styles/rich-text-editor/icons/_highcontrast-light.scss +288 -288
  81. package/styles/rich-text-editor/icons/_highcontrast.scss +288 -288
  82. package/styles/rich-text-editor/icons/_material-dark.scss +288 -288
  83. package/styles/rich-text-editor/icons/_material.scss +288 -288
  84. package/styles/rich-text-editor/material-dark.css +22 -1
  85. package/styles/rich-text-editor/material.css +22 -1
  86. package/styles/tailwind-dark.css +0 -0
  87. package/styles/tailwind-dark.scss +0 -0
  88. package/styles/tailwind.css +0 -0
  89. package/styles/tailwind.scss +0 -0
  90. package/dist/global/ej2-richtexteditor.min.js +0 -2
  91. package/dist/global/ej2-richtexteditor.min.js.map +0 -1
  92. package/dist/global/index.d.ts +0 -5
package/CHANGELOG.md CHANGED
@@ -1,718 +1,782 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### RichTextEditor
6
-
7
- #### Bug Fixes
8
-
9
- `#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.
10
-
11
- `#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.
12
-
13
- ## 18.4.33 (2021-01-05)
14
-
15
- ### RichTextEditor
16
-
17
- #### New Features
18
-
19
- - `F160594` - Provided new event `beforeImageDrop` that triggers before drop a image in Rich Text Editor component.
20
-
21
- #### Bug Fixes
22
-
23
- `#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.
24
-
25
- ## 18.4.30 (2020-12-17)
26
-
27
- ### RichTextEditor
28
-
29
- #### New Features
30
-
31
- - **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. In ES5 RichTextEditor, it is mandatory to include the `ej2-filemanager` dependency to render properly.
32
-
33
- - `F149800` - Provided new property `removeUrl` in `insertImageSettings` API to trigger the image remove operation in server, when image removed from editor.
34
-
35
- - `#301980` - Provided the support to return the `Xhtml` value in the `value` property when the `enableXtml` property is enabled in the Rich Text Editor.
36
-
37
- - `#264791`, `#295032`, `#299905`, `#F159588` - Provided the support to retain all the styles from MS Excel while pasting the content in the Rich Text Editor.
38
-
39
- #### Bug Fixes
40
-
41
- `#296208` - The issue with "the placeholder blinks when pressing enter key in the Rich Text Editor" has been resolved.
42
-
43
- ## 18.3.35 (2020-10-01)
44
-
45
- ### RichTextEditor
46
-
47
- #### Bug Fixes
48
-
49
- `#292431` - The issue with "Rich Text Editor input elements are not destroyed properly when rendered based on the conditions" has been resolved.
50
-
51
- ## 18.2.56 (2020-09-01)
52
-
53
- ### RichTextEditor
54
-
55
- #### Bug Fixes
56
-
57
- - `#290237`, `#290247` - The issue with "copy and pasting content in the Markdown Editor is not working" has been resolved.
58
-
59
- `#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.
60
-
61
- `#F156796` - The performance issue when several Rich Text Editors are rendered in a single page has been resolved.
62
-
63
- ## 18.2.55 (2020-08-25)
64
-
65
- ### RichTextEditor
66
-
67
- #### Bug Fixes
68
-
69
- `#287641` - The issue with "pasting the list content from MS Word in the Rich Text Editor removes the copied content" has been resolved.
70
-
71
- ## 18.2.54 (2020-08-18)
72
-
73
- ### RichTextEditor
74
-
75
- #### Bug Fixes
76
-
77
- `#287193` - The issue with "Script error occurs with toolbar options when placing the cursor before & after the RichTextEditor table" has been resolved.
78
-
79
- ## 18.2.48 (2020-08-04)
80
-
81
- ### RichTextEditor
82
-
83
- #### Bug Fixes
84
-
85
- - `#266152` - The issue with "List selection with delete key action does not remove lists properly" has been resolved.
86
-
87
- ## 18.2.46 (2020-07-21)
88
-
89
- ### RichTextEditor
90
-
91
- #### New Features
92
-
93
- - `#272591` - Provided new event `beforeImageUpload` that triggers before the image upload process from Rich Text Editor component.
94
-
95
- #### Bug Fixes
96
-
97
- - `#282973` - The issue with "Selecting the transparent color from the FontColor in Rich Text Editor" has been resolved.
98
-
99
- ## 18.2.45 (2020-07-14)
100
-
101
- ### RichTextEditor
102
-
103
- #### Bug Fixes
104
-
105
- - `#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.
106
-
107
- - `#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.
108
-
109
- ## 18.2.44 (2020-07-07)
110
-
111
- ### RichTextEditor
112
-
113
- #### New Features
114
-
115
- - `#271295` - Provided public methods `showInlineToolbar` and `hideInlineToolbar` to show and hide the inline toolbars in the Rich Text Editor.
116
-
117
- #### Bug Fixes
118
-
119
- - The issue with "Rich Text Editor data binding not working in Source Code view" has been resolved.
120
-
121
- ## 18.1.57 (2020-06-16)
122
-
123
- ### RichTextEditor
124
-
125
- #### Bug Fixes
126
-
127
- - `#275859` - The issue with "throwing script error while pasting the content with table" in the Rich Text Editor has been resolved.
128
-
129
- - `#279019` - The issue with "pasting the content inside the nested table that breaks the HTML content in the Rich Text Editor" has been resolved.
130
-
131
- - `#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.
132
-
133
- ## 18.1.54 (2020-05-26)
134
-
135
- ### RichTextEditor
136
-
137
- #### Bug Fixes
138
-
139
- - `#275859` - The issue with unable to edit the Rich Text Editor content after pasting the content with table has been resolved.
140
-
141
- ## 18.1.53 (2020-05-19)
142
-
143
- ### RichTextEditor
144
-
145
- #### Bug Fixes
146
-
147
- - `#F150037` - The issue with "throwing script error while dynamically enable/disable the toolbar" has been resolved.
148
-
149
- ## 18.1.52 (2020-05-13)
150
-
151
- ### RichTextEditor
152
-
153
- #### Bug Fixes
154
-
155
- - `#F152908` - The issue sub list remains after deleting the parent list element in the Rich Text Editor has been resolved.
156
-
157
- ## 18.1.48 (2020-05-05)
158
-
159
- ### RichTextEditor
160
-
161
- #### Bug Fixes
162
-
163
- - `#272406` - The issue background color format not applied properly on changing the font size in the Rich Text Editor has been resolved.
164
-
165
- ## 18.1.45 (2020-04-21)
166
-
167
- ### RichTextEditor
168
-
169
- #### Bug Fixes
170
-
171
- - `#271937` - The issue table border not applied when pasting the content from the Excel in the Rich Text Editor has been resolved.
172
-
173
- - `#271289` - The issue with using keyboard short cut `ctrl+k` to insert link not working in the Rich Text Editor has been resolved.
174
-
175
- ## 18.1.44 (2020-04-14)
176
-
177
- ### RichTextEditor
178
-
179
- #### New Features
180
-
181
- - `#F152228`, `#266987` - Provided an event `afterImageDelete` to be triggered after the image is removed from the Rich Text Editor content.
182
-
183
- #### Bug Fixes
184
-
185
- - `#F152859` - The issue `executeCommand` using `insertHTML` not inserting the Iframe element in the Rich Text Editor has been resolved.
186
-
187
- - `#267874`, `#269214`, `#271199` - Resolved the compilation error with typescript version 3.8.3
188
-
189
- - `#F152908` - The issue with empty sub-list not removed from Rich Text Editor has been resolved.
190
-
191
- ## 18.1.42 (2020-04-01)
192
-
193
- ### RichTextEditor
194
-
195
- #### New Features
196
-
197
- - `#266522` - Provided scrollable option support to the toolbar by setting toolbar type as `Scrollable` in Rich Text Editor.
198
-
199
- ## 17.4.51 (2020-02-25)
200
-
201
- ### RichTextEditor
202
-
203
- #### Bug Fixes
204
-
205
- - `F151491` - Resolved the issue with RichTextEditor height that is not set properly when the toolbar is disabled.
206
-
207
- - `F151491` - Resolved the script errors thrown when opening an insert image dialog several times.
208
-
209
- ## 17.4.49 (2020-02-11)
210
-
211
- ### RichTextEditor
212
-
213
- #### Bug Fixes
214
-
215
- - `#261548`, `#262909` - The issue with a new line added after pasting the content and focusing out in the Rich Text Editor has been resolved.
216
-
217
- - `#F150940` - The issue with cursor not maintained when using the `executeCommand` method with `insertHTML` in the Rich Text Editor has been resolved.
218
-
219
- - `#F150991` - Fixed issue with script error when RichTextEditor is dynamically rendered using setState.
220
-
221
- - `#F150991` - Resolved the issue with the fontName requestType is getting as fontSize after the `change` event has been triggered.
222
-
223
- - `#F150742` - Resolved the issue with `dialogOpen` event does not return the content element in insert image dialog.
224
-
225
- - `#262805` - Fixed issue `change` event triggers first time when `readonly` property is enabled.
226
-
227
- ## 17.4.47 (2020-02-05)
228
-
229
- ### RichTextEditor
230
-
231
- #### Bug Fixes
232
-
233
- - `#150737` - Resolved the issue with inserting an image dialog that was not properly rendered on mobile devices.
234
-
235
- - `#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.
236
-
237
- ## 17.4.46 (2020-01-30)
238
-
239
- ### RichTextEditor
240
-
241
- #### New Features
242
-
243
- - `#F149481` - Provided the support to get the selected HTML content using the `getSelectedHtml` public method.
244
-
245
- ## 17.4.44 (2021-01-21)
246
-
247
- ### RichTextEditor
248
-
249
- #### New Features
250
-
251
- - `#256724`, `#F149821` - Provided the support to insert a table using the `executeCommand` public method in the RichTextEditor.
252
-
253
- ## 17.4.43 (2020-01-14)
254
-
255
- ### RichTextEditor
256
-
257
- #### Bug Fixes
258
-
259
- - `#258971` - Resolved the issue with an image element that is appended on insert image dialog drop area when drag and drop an image.
260
-
261
- - `#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.
262
-
263
- - `#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.
264
-
265
- ## 17.4.40 (2019-12-24)
266
-
267
- ### RichTextEditor
268
-
269
- #### Bug Fixes
270
-
271
- - `#254606` - Web accessibility related issues have been resolved.
272
-
273
- ## 17.4.39 (2019-12-17)
274
-
275
- ### RichTextEditor
276
-
277
- #### Bug Fixes
278
-
279
- - `#256452` - The Rich Text Editor is no longer allow to resize the image when `readonly` is enabled.
280
-
281
- - `#253296` - The issue with drag and drop text is not working inside the Rich Text Editor has been fixed.
282
-
283
- ### RichTextEditor
284
-
285
- #### New Features
286
-
287
- - **Callback event to custom toolbar**: The feature allows to bind click event handler to the custom toolbar items in the Rich Text Editor.
288
-
289
- - **Code format as toolbar button**: Provided an option to add the code format as toolbar button with toggle state in the Rich Text Editor.
290
-
291
- - **XHTML validation**: Provided support to validate the content of Rich Text Editor with XHTML standard.
292
-
293
- ## 17.3.29 (2019-11-26)
294
-
295
- ### RichTextEditor
296
-
297
- #### Bug Fixes
298
-
299
- - `#F149001` - The issue with customization of table cell padding and cell spacing in the Rich Text Editor has been resolved.
300
-
301
- ## 17.3.28 (2019-11-19)
302
-
303
- ### RichTextEditor
304
-
305
- #### Bug Fixes
306
-
307
- - `#254865` - Resolved the issue with an image that is not removed when pressing the delete key by enabling the `showOnRightClick` property.
308
-
309
- ## 17.3.19 (2019-10-22)
310
-
311
- ### RichTextEditor
312
-
313
- #### Bug Fixes
314
-
315
- - `#251855` - Resolved the issue with appearance of transparent color tile in Rich Text Editor's color picker.
316
-
317
- - `#251699` - The issue with pasting content from Word document displays unnecessary HTML content in the Rich Text Editor has been fixed.
318
-
319
- - `#251640` - The issue "placeholder not hidden after inserting a table or an image in the Rich Text Editor" has been fixed.
320
-
321
- - `#250650` - The issue with image rename in the imageUploadSuccess event not working when drag and drop an image into RichTextEditor has been fixed.
322
-
323
- - `#250587` - The issue with null field shown on form data headers response when drag and drop an image into RichTextEditor has been fixed.
324
-
325
- - `#251855` - The issue "console error is thrown, when the image upload dialog is opened in IE browser" has been fixed.
326
-
327
- ## 17.3.16 (2019-10-09)
328
-
329
- ### RichTextEditor
330
-
331
- #### Bug Fixes
332
-
333
- - `#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.
334
-
335
- ## 17.3.14 (2019-10-03)
336
-
337
- ### RichTextEditor
338
-
339
- #### Bug Fixes
340
-
341
- - `#249182` - The issue with localizing static texts of paste prompt dialog in the Rich Text Editor has been fixed.
342
-
343
- - `#249613` - The issue with pasting content from Microsoft Excel sheet that throws console error in the Rich Text Editor has been fixed.
344
-
345
- ## 17.3.9-beta (2019-09-20)
346
-
347
- ### RichTextEditor
348
-
349
- #### New Features
350
-
351
- - **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.
352
-
353
- - **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.
354
-
355
- - **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.
356
-
357
- #### Bug Fixes
358
-
359
- - `#F146927` - The issue with copy and pasting image from MS Word to the RichTextEditor has been fixed.
360
-
361
- - `#246340` - The issue with pasting the content as plain-text in Rich Text Editor has been fixed.
362
-
363
- ## 17.2.47 (2019-08-27)
364
-
365
- ### RichTextEditor
366
-
367
- #### Bug Fixes
368
-
369
- - `#242999` - Now, Reactive form validates properly on `shift + tab` key action.
370
-
371
- - `#244796` - Floating toolbar now renders properly without alignment issue, when render the Rich Text Editor within Tab.
372
-
373
- - `#243448` - Performance with page scroll has been improved when multiple Rich Text Editor components are rendered in the page.
374
-
375
- - `#241388` - The issue with right-click option while rendering RichTextEditor inside the table has been fixed.
376
-
377
- ## 17.2.46 (2019-08-22)
378
-
379
- ### RichTextEditor
380
-
381
- #### New Features
382
-
383
- - **Image upload events**
384
- - `#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.
385
-
386
- #### Bug Fixes
387
-
388
- - `#243475` - Now, you can validate max-length even showCharCount property as false.
389
-
390
- - `#243475` - Resolved the issue with max-length validation on pasting the content.
391
-
392
- - `#242999` - The key action for `tab` key and `shift + tab` key are similar now.
393
-
394
- ## 17.2.41 (2019-08-14)
395
-
396
- ### RichTextEditor
397
-
398
- #### New Features
399
-
400
- - **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.
401
-
402
- - `#242771` - Provided the support to handle both absolute and relative path links.
403
-
404
- #### Bug Fixes
405
-
406
- - `#243767` - The issue with applying selected format based on content editable has been fixed.
407
-
408
- ## 17.2.36 (2019-07-24)
409
-
410
- ### RichTextEditor
411
-
412
- #### Bug Fixes
413
-
414
- - `#242377` - The issue, "alignment is not working while pasting content from notepad" has been resolved.
415
-
416
- - `#F146057` - The issue, "formatting(strong and alignment) is not maintained on pasting web content" has been resolved.
417
-
418
- ## 17.2.35 (2019-07-17)
419
-
420
- ### RichTextEditor
421
-
422
- #### Bug Fixes
423
-
424
- - `#241388` - The issue, "browser context menu is not shown on right click when enabling the showOnRightClick property" has been resolved.
425
-
426
- ## 17.2.34 (2019-07-11)
427
-
428
- ### RichTextEditor
429
-
430
- #### Bug Fixes
431
-
432
- - `#F145376` - The issue, "action complete event is not triggered when deleting the content with text and images" has been resolved.
433
-
434
- - `#237729` - The issue "table column width is shown as pixel instead of percentage while resizing" has been fixed.
435
-
436
- - `#237729` - Pickers mode throws script error when selecting the color in table's quick toolbar, that issue has been fixed.
437
-
438
- - `#237729` - Color picker value doesn't set as RGBA(alpha) value in content editor, that issue has been fixed.
439
-
440
- - `#240808` - The issue "opening a link in new window throws an error for auto generated link" has been fixed.
441
-
442
- - `#240024` - The issue, "spacing between words is removed when focus out the editor" has been resolved.
443
-
444
- - `#234519`, `#234586`, `#F138909` - The issues with table and its functionalities in IE11 has been resolved.
445
-
446
- ## 17.2.28-beta (2019-06-27)
447
-
448
- ### RichTextEditor
449
-
450
- #### New Features
451
-
452
- - **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.
453
-
454
- #### Breaking Changes
455
-
456
- - 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']`.
457
-
458
- #### Bug Fixes
459
-
460
- - `#238872` - Issue with cursor position when enabled list with empty editor that issue has been resolved.
461
-
462
- ## 17.1.49 (2019-05-29)
463
-
464
- ### RichTextEditor
465
-
466
- #### Bug Fixes
467
-
468
- - `#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.
469
-
470
- ## 17.1.48 (2019-05-21)
471
-
472
- ### RichTextEditor
473
-
474
- #### New Features
475
-
476
- - `#230976` - Opens a quick toolbar on right-click support has been provided.
477
-
478
- #### Bug Fixes
479
-
480
- - `#235120` - RichTextEditor's paste as plain text doesn't preserve line break that issue has been resolved.
481
-
482
- ## 17.1.43 (2019-04-30)
483
-
484
- ### RichTextEditor
485
-
486
- #### Bug Fixes
487
-
488
- - `#234280` - RichTextEditor's toolbar is broken when using ES2015 target that issue has been resolved.
489
-
490
- ## 17.1.42 (2019-04-23)
491
-
492
- ### RichTextEditor
493
-
494
- #### Bug Fixes
495
-
496
- - Change event doesn't trigger, when RichTextEditor blurs inside of `In-place Editor` that issue has been fixed.
497
-
498
- ## 17.1.40 (2019-04-09)
499
-
500
- ### RichTextEditor
501
-
502
- #### Bug Fixes
503
-
504
- - Insert image functionality of `RichTextEditor` is not working when render with `File Upload`, that issue has been fixed.
505
-
506
- ## 17.1.32-beta (2019-03-13)
507
-
508
- ### RichTextEditor
509
-
510
- #### Bug Fixes
511
-
512
- - Image and Table quick toolbar open while scrolling the content in the iPhone device, that issue has been fixed.
513
-
514
- - Getting console error while rendering inline mode with `FontColor` and `BackgroundColor` in mobile view, that issue has been fixed.
515
-
516
- -`Undo` and `Redo` icon visible in preview mode issue has been fixed
517
-
518
- #### New Features
519
-
520
- - **Paste cleanup**: This feature allows users to clean up HTML content when copying and pasting any other content from external sources.
521
-
522
- ## 16.4.55 (2019-02-27)
523
-
524
- ### RichTextEditor
525
-
526
- #### Bug Fixes
527
-
528
- - Insert image dialog is not rendering properly while setting the `imageUploadMessage` text as long in localization, that issue has been fixed.
529
-
530
- - Localization is not applied to static `DropDownButton` items, that issue has been fixed.
531
-
532
- ## 16.4.54 (2019-02-19)
533
-
534
- ### RichTextEditor
535
-
536
- #### Bug Fixes
537
-
538
- - HTML 5 form reset behaviour has been corrected.
539
-
540
- - Editor content rendered twice in DOM when using `RichTextEditorFor`, that issue has been fixed.
541
-
542
- - EJ2 compatibility styles are not worked while component rendering with `textarea` element, that issue has been fixed.
543
-
544
- ## 16.4.53 (2019-02-13)
545
-
546
- ### RichTextEditor
547
-
548
- #### Bug Fixes
549
-
550
- - 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.
551
-
552
- - HTML 5 standard issues has been fixed.
553
-
554
- - Cursor position changed after typed some contents issue has been fixed.
555
-
556
- #### Breaking Changes
557
-
558
- - Changed the `fontSize`, `fontFamily`, `format` properties default value as null.
559
-
560
- ## 16.4.48 (2019-01-22)
561
-
562
- ### RichTextEditor
563
-
564
- #### Bug Fixes
565
-
566
- - Table QuickToolbar open wherever click within a component issue has been fixed.
567
-
568
- - FontSize "px" and fontFamily "veranda" not updated in toolbar status, that issue has been fixed.
569
-
570
- - Clicking on view source code with single character inside textarea removes the character, that issue has been fixed.
571
-
572
- ## 16.4.47 (2019-01-16)
573
-
574
- ### RichTextEditor
575
-
576
- #### Bug Fixes
577
-
578
- - ASP.NET core data annotation issue has been fixed.
579
-
580
- - Console error is thrown in IE browser with angular routing, that issue has been fixed.
581
-
582
- - Unable to maintain the RichTextEditor color picker pop-up position when scrolling the browser has been fixed.
583
-
584
- ## 16.4.46 (2019-01-08)
585
-
586
- ### RichTextEditor
587
-
588
- #### Bug Fixes
589
-
590
- - Changing the font color of underlined text doesn’t change the color of the line, that issue has been fixed.
591
-
592
- - RichTextEditor injectable module is missed from import setting file in [CRG](https://crg.syncfusion.com/), that issue has been fixed.
593
-
594
- - The change event is triggered on clicking into HTML source code view in Edge browser, that issue has been fixed.
595
-
596
- - Blur event is not triggered when we change focus directly from one RTE to another RTE, that issue has been fixed.
597
-
598
- - RichTextEditor full screen not working properly when render inside the overflow element has been fixed.
599
-
600
- ## 16.4.44 (2018-12-24)
601
-
602
- ### RichTextEditor
603
-
604
- #### Bug Fixes
605
-
606
- - Pasted URL is not converted to links automatically, that issue has been fixed.
607
-
608
- - Image paste as twice in Firefox browser, that issue has been fixed.
609
-
610
- - The value property and getHtml method will be updated within an interval to `saveInterval` property.
611
-
612
- ## 16.4.40-beta (2018-12-10)
613
-
614
- ### RichTextEditor
615
-
616
- #### New Features
617
-
618
- - Insert table support has provided for MarkDown Editor.
619
-
620
- #### Bug Fixes
621
-
622
- - Dynamic enabling and disabling support for toolbar items has been provided.
623
- - Image dialog's Browse button width is not adjusted based on the text issue has been resolved.
624
-
625
- ## 16.3.17 (2018-09-12)
626
-
627
- ### RichTextEditor
628
-
629
- #### New Features
630
-
631
- 1. Image resize support has been provided.
632
- 2. Insert table support has provided for HTML Editor which includes below sub features,
633
- 1. Create and modify the table, table rows and columns.
634
- 2. Row and column resize.
635
- 3. Quick toolbar interaction.
636
- 4. Table header and custom styles.
637
-
638
- #### Breaking Changes
639
-
640
- - `setContent` method has removed, use `value` property to set the content instead.
641
-
642
- ## 16.2.51 (2018-09-04)
643
-
644
- ### RichTextEditor
645
-
646
- #### Bug Fixes
647
-
648
- - RichTextEditor modal `popup` style override issue has been resolved.
649
- - RichTextEditor removes spacing between words when content is pasted from a word document, that
650
- issue has been fixed.
651
-
652
- ## 16.2.50 (2018-08-28)
653
-
654
- ### RichTextEditor
655
-
656
- #### Bug Fixes
657
-
658
- - Unable to paste image copied from windows in RichTextEditor issue has been resolved.
659
-
660
- ## 16.2.49 (2018-08-21)
661
-
662
- ### RichTextEditor
663
-
664
- #### Bug Fixes
665
-
666
- - `IFrame` mode external font family removed in RichTextEditor.
667
- - Unable to delete the selected content of RichTextEditor in inline toolbar issue has been resolved.
668
-
669
- ## 16.2.48 (2018-08-14)
670
-
671
- ### RichTextEditor
672
-
673
- #### Bug Fixes
674
-
675
- - Removed external font family in RichTextEditor source.
676
-
677
- ## 16.2.47 (2018-08-07)
678
-
679
- ### RichTextEditor
680
-
681
- #### Bug Fixes
682
-
683
- - `FontColor` and `BackgroundColor` toolbar item not rendered in inline mode issue has been resolved.
684
- - RichTextEditor toolbar disabled mode content select console error issue has been resolved.
685
- - Provided view encapsulation support.
686
-
687
- ## 16.2.45 (2018-07-17)
688
-
689
- ### RichTextEditor
690
-
691
- #### Bug Fixes
692
-
693
- - Provided `getText` public method from RichTextEditor.
694
-
695
- ## 16.2.44 (2018-07-10)
696
-
697
- ### RichTextEditor
698
-
699
- #### Bug Fixes
700
-
701
- - RichTextEditor `actionBegin` event missing arguments included.
702
-
703
- ## 16.2.41 (2018-06-25)
704
-
705
- ### RichTextEditor
706
-
707
- 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.
708
-
709
- - Provides IFRAME and DIV mode.
710
- - Handles markdown editing.
711
- - Contains a modular library to load the necessary functionality on demand.
712
- - Provides a fully customizable toolbar.
713
- - HTML view to edit the source directly for developers.
714
- - Supports to integrate third-party library.
715
- - Preview the modified content before saving it.
716
- - Handles images, hyperlinks, video,hyperlinks, uploads, and more.
717
- - Contains undo/redo manager.
718
- - Creates bulleted and numbered lists.
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ## 18.4.49 (2021-03-23)
6
+
7
+ ### RichTextEditor
8
+
9
+ #### Bug Fixes
10
+
11
+ - `#318815`- The issue with "Resize grip of the image freezes, after resizing for the first time" has been resolved.
12
+
13
+ - `#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.
14
+
15
+ - `F163544`- The issue with "Pressing 'cmd+z' in mac after deleting all contents, deletes the first paragraph of the Rich Text Editor" has been resolved.
16
+
17
+ - `F163545`- The issue with "'cmd+z' is not working after pasting the content in Mac machine" has been resolved.
18
+
19
+ ## 18.4.47 (2021-03-09)
20
+
21
+ ### RichTextEditor
22
+
23
+ #### Bug Fixes
24
+
25
+ - `#317795`- The issue with "Pasting the block node contents in the Rich Text Editor" has been resolved.
26
+
27
+ ## 18.4.46 (2021-03-02)
28
+
29
+ ### RichTextEditor
30
+
31
+ #### Bug Fixes
32
+
33
+ - `#309809` - The issue with "Unable to resize the image in the Rich Text Editor when width is set" is resolved.
34
+
35
+ - `#314678` - Resolved the script error raised, when pasting the content after pressing the shift-enter key.
36
+
37
+ - `F161914` - The issue with "Bold format removed for the content previous to the selection in the Rich Text Editor" is resolved.
38
+
39
+ ## 18.4.44 (2021-02-23)
40
+
41
+ ### RichTextEditor
42
+
43
+ #### Bug Fixes
44
+
45
+ - `#314104` - The issue with the "Rich Text Editor's table width is not set properly if values are configured higher" is resolved.
46
+
47
+ - `F161887` - The issue with "Removing the italic format removes the underline format in the Rich Text Editor" is resolved.
48
+
49
+ ## 18.4.42 (2021-02-09)
50
+
51
+ ### RichTextEditor
52
+
53
+ #### Bug Fixes
54
+
55
+ - `F160581` - The issue with "The RichTextEditor table toolbar popup is hidden inside the higher Z-Index elements" has been resolved.
56
+
57
+ ## 18.4.39 (2021-01-28)
58
+
59
+ ### RichTextEditor
60
+
61
+ #### Bug Fixes
62
+
63
+ - `#296208` - Resolved the issue with the Placeholder blinks when pressing the enter key in the editor.
64
+
65
+ - `#310044` - The issue with the resize grip alignment when the toolbar is disabled state has been resolved.
66
+
67
+ ## 18.4.34 (2021-01-12)
68
+
69
+ ### RichTextEditor
70
+
71
+ #### Bug Fixes
72
+
73
+ `#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.
74
+
75
+ `#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.
76
+
77
+ ## 18.4.33 (2021-01-05)
78
+
79
+ ### RichTextEditor
80
+
81
+ #### New Features
82
+
83
+ - `F160594` - Provided new event `beforeImageDrop` that triggers before drop a image in Rich Text Editor component.
84
+
85
+ #### Bug Fixes
86
+
87
+ `#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.
88
+
89
+ ## 18.4.30 (2020-12-17)
90
+
91
+ ### RichTextEditor
92
+
93
+ #### New Features
94
+
95
+ - **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. In ES5 RichTextEditor, it is mandatory to include the `ej2-filemanager` dependency to render properly.
96
+
97
+ - `F149800` - Provided new property `removeUrl` in `insertImageSettings` API to trigger the image remove operation in server, when image removed from editor.
98
+
99
+ - `#301980` - Provided the support to return the `Xhtml` value in the `value` property when the `enableXtml` property is enabled in the Rich Text Editor.
100
+
101
+ - `#264791`, `#295032`, `#299905`, `#F159588` - Provided the support to retain all the styles from MS Excel while pasting the content in the Rich Text Editor.
102
+
103
+ #### Bug Fixes
104
+
105
+ `#296208` - The issue with "the placeholder blinks when pressing enter key in the Rich Text Editor" has been resolved.
106
+
107
+ ## 18.3.35 (2020-10-01)
108
+
109
+ ### RichTextEditor
110
+
111
+ #### Bug Fixes
112
+
113
+ `#292431` - The issue with "Rich Text Editor input elements are not destroyed properly when rendered based on the conditions" has been resolved.
114
+
115
+ ## 18.2.56 (2020-09-01)
116
+
117
+ ### RichTextEditor
118
+
119
+ #### Bug Fixes
120
+
121
+ - `#290237`, `#290247` - The issue with "copy and pasting content in the Markdown Editor is not working" has been resolved.
122
+
123
+ `#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.
124
+
125
+ `#F156796` - The performance issue when several Rich Text Editors are rendered in a single page has been resolved.
126
+
127
+ ## 18.2.55 (2020-08-25)
128
+
129
+ ### RichTextEditor
130
+
131
+ #### Bug Fixes
132
+
133
+ `#287641` - The issue with "pasting the list content from MS Word in the Rich Text Editor removes the copied content" has been resolved.
134
+
135
+ ## 18.2.54 (2020-08-18)
136
+
137
+ ### RichTextEditor
138
+
139
+ #### Bug Fixes
140
+
141
+ `#287193` - The issue with "Script error occurs with toolbar options when placing the cursor before & after the RichTextEditor table" has been resolved.
142
+
143
+ ## 18.2.48 (2020-08-04)
144
+
145
+ ### RichTextEditor
146
+
147
+ #### Bug Fixes
148
+
149
+ - `#266152` - The issue with "List selection with delete key action does not remove lists properly" has been resolved.
150
+
151
+ ## 18.2.46 (2020-07-21)
152
+
153
+ ### RichTextEditor
154
+
155
+ #### New Features
156
+
157
+ - `#272591` - Provided new event `beforeImageUpload` that triggers before the image upload process from Rich Text Editor component.
158
+
159
+ #### Bug Fixes
160
+
161
+ - `#282973` - The issue with "Selecting the transparent color from the FontColor in Rich Text Editor" has been resolved.
162
+
163
+ ## 18.2.45 (2020-07-14)
164
+
165
+ ### RichTextEditor
166
+
167
+ #### Bug Fixes
168
+
169
+ - `#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.
170
+
171
+ - `#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.
172
+
173
+ ## 18.2.44 (2020-07-07)
174
+
175
+ ### RichTextEditor
176
+
177
+ #### New Features
178
+
179
+ - `#271295` - Provided public methods `showInlineToolbar` and `hideInlineToolbar` to show and hide the inline toolbars in the Rich Text Editor.
180
+
181
+ #### Bug Fixes
182
+
183
+ - The issue with "Rich Text Editor data binding not working in Source Code view" has been resolved.
184
+
185
+ ## 18.1.57 (2020-06-16)
186
+
187
+ ### RichTextEditor
188
+
189
+ #### Bug Fixes
190
+
191
+ - `#275859` - The issue with "throwing script error while pasting the content with table" in the Rich Text Editor has been resolved.
192
+
193
+ - `#279019` - The issue with "pasting the content inside the nested table that breaks the HTML content in the Rich Text Editor" has been resolved.
194
+
195
+ - `#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.
196
+
197
+ ## 18.1.54 (2020-05-26)
198
+
199
+ ### RichTextEditor
200
+
201
+ #### Bug Fixes
202
+
203
+ - `#275859` - The issue with unable to edit the Rich Text Editor content after pasting the content with table has been resolved.
204
+
205
+ ## 18.1.53 (2020-05-19)
206
+
207
+ ### RichTextEditor
208
+
209
+ #### Bug Fixes
210
+
211
+ - `#F150037` - The issue with "throwing script error while dynamically enable/disable the toolbar" has been resolved.
212
+
213
+ ## 18.1.52 (2020-05-13)
214
+
215
+ ### RichTextEditor
216
+
217
+ #### Bug Fixes
218
+
219
+ - `#F152908` - The issue sub list remains after deleting the parent list element in the Rich Text Editor has been resolved.
220
+
221
+ ## 18.1.48 (2020-05-05)
222
+
223
+ ### RichTextEditor
224
+
225
+ #### Bug Fixes
226
+
227
+ - `#272406` - The issue background color format not applied properly on changing the font size in the Rich Text Editor has been resolved.
228
+
229
+ ## 18.1.45 (2020-04-21)
230
+
231
+ ### RichTextEditor
232
+
233
+ #### Bug Fixes
234
+
235
+ - `#271937` - The issue table border not applied when pasting the content from the Excel in the Rich Text Editor has been resolved.
236
+
237
+ - `#271289` - The issue with using keyboard short cut `ctrl+k` to insert link not working in the Rich Text Editor has been resolved.
238
+
239
+ ## 18.1.44 (2020-04-14)
240
+
241
+ ### RichTextEditor
242
+
243
+ #### New Features
244
+
245
+ - `#F152228`, `#266987` - Provided an event `afterImageDelete` to be triggered after the image is removed from the Rich Text Editor content.
246
+
247
+ #### Bug Fixes
248
+
249
+ - `#F152859` - The issue `executeCommand` using `insertHTML` not inserting the Iframe element in the Rich Text Editor has been resolved.
250
+
251
+ - `#267874`, `#269214`, `#271199` - Resolved the compilation error with typescript version 3.8.3
252
+
253
+ - `#F152908` - The issue with empty sub-list not removed from Rich Text Editor has been resolved.
254
+
255
+ ## 18.1.42 (2020-04-01)
256
+
257
+ ### RichTextEditor
258
+
259
+ #### New Features
260
+
261
+ - `#266522` - Provided scrollable option support to the toolbar by setting toolbar type as `Scrollable` in Rich Text Editor.
262
+
263
+ ## 17.4.51 (2020-02-25)
264
+
265
+ ### RichTextEditor
266
+
267
+ #### Bug Fixes
268
+
269
+ - `F151491` - Resolved the issue with RichTextEditor height that is not set properly when the toolbar is disabled.
270
+
271
+ - `F151491` - Resolved the script errors thrown when opening an insert image dialog several times.
272
+
273
+ ## 17.4.49 (2020-02-11)
274
+
275
+ ### RichTextEditor
276
+
277
+ #### Bug Fixes
278
+
279
+ - `#261548`, `#262909` - The issue with a new line added after pasting the content and focusing out in the Rich Text Editor has been resolved.
280
+
281
+ - `#F150940` - The issue with cursor not maintained when using the `executeCommand` method with `insertHTML` in the Rich Text Editor has been resolved.
282
+
283
+ - `#F150991` - Fixed issue with script error when RichTextEditor is dynamically rendered using setState.
284
+
285
+ - `#F150991` - Resolved the issue with the fontName requestType is getting as fontSize after the `change` event has been triggered.
286
+
287
+ - `#F150742` - Resolved the issue with `dialogOpen` event does not return the content element in insert image dialog.
288
+
289
+ - `#262805` - Fixed issue `change` event triggers first time when `readonly` property is enabled.
290
+
291
+ ## 17.4.47 (2020-02-05)
292
+
293
+ ### RichTextEditor
294
+
295
+ #### Bug Fixes
296
+
297
+ - `#150737` - Resolved the issue with inserting an image dialog that was not properly rendered on mobile devices.
298
+
299
+ - `#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.
300
+
301
+ ## 17.4.46 (2020-01-30)
302
+
303
+ ### RichTextEditor
304
+
305
+ #### New Features
306
+
307
+ - `#F149481` - Provided the support to get the selected HTML content using the `getSelectedHtml` public method.
308
+
309
+ ## 17.4.44 (2021-01-21)
310
+
311
+ ### RichTextEditor
312
+
313
+ #### New Features
314
+
315
+ - `#256724`, `#F149821` - Provided the support to insert a table using the `executeCommand` public method in the RichTextEditor.
316
+
317
+ ## 17.4.43 (2020-01-14)
318
+
319
+ ### RichTextEditor
320
+
321
+ #### Bug Fixes
322
+
323
+ - `#258971` - Resolved the issue with an image element that is appended on insert image dialog drop area when drag and drop an image.
324
+
325
+ - `#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.
326
+
327
+ - `#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.
328
+
329
+ ## 17.4.40 (2019-12-24)
330
+
331
+ ### RichTextEditor
332
+
333
+ #### Bug Fixes
334
+
335
+ - `#254606` - Web accessibility related issues have been resolved.
336
+
337
+ ## 17.4.39 (2019-12-17)
338
+
339
+ ### RichTextEditor
340
+
341
+ #### Bug Fixes
342
+
343
+ - `#256452` - The Rich Text Editor is no longer allow to resize the image when `readonly` is enabled.
344
+
345
+ - `#253296` - The issue with drag and drop text is not working inside the Rich Text Editor has been fixed.
346
+
347
+ ### RichTextEditor
348
+
349
+ #### New Features
350
+
351
+ - **Callback event to custom toolbar**: The feature allows to bind click event handler to the custom toolbar items in the Rich Text Editor.
352
+
353
+ - **Code format as toolbar button**: Provided an option to add the code format as toolbar button with toggle state in the Rich Text Editor.
354
+
355
+ - **XHTML validation**: Provided support to validate the content of Rich Text Editor with XHTML standard.
356
+
357
+ ## 17.3.29 (2019-11-26)
358
+
359
+ ### RichTextEditor
360
+
361
+ #### Bug Fixes
362
+
363
+ - `#F149001` - The issue with customization of table cell padding and cell spacing in the Rich Text Editor has been resolved.
364
+
365
+ ## 17.3.28 (2019-11-19)
366
+
367
+ ### RichTextEditor
368
+
369
+ #### Bug Fixes
370
+
371
+ - `#254865` - Resolved the issue with an image that is not removed when pressing the delete key by enabling the `showOnRightClick` property.
372
+
373
+ ## 17.3.19 (2019-10-22)
374
+
375
+ ### RichTextEditor
376
+
377
+ #### Bug Fixes
378
+
379
+ - `#251855` - Resolved the issue with appearance of transparent color tile in Rich Text Editor's color picker.
380
+
381
+ - `#251699` - The issue with pasting content from Word document displays unnecessary HTML content in the Rich Text Editor has been fixed.
382
+
383
+ - `#251640` - The issue "placeholder not hidden after inserting a table or an image in the Rich Text Editor" has been fixed.
384
+
385
+ - `#250650` - The issue with image rename in the imageUploadSuccess event not working when drag and drop an image into RichTextEditor has been fixed.
386
+
387
+ - `#250587` - The issue with null field shown on form data headers response when drag and drop an image into RichTextEditor has been fixed.
388
+
389
+ - `#251855` - The issue "console error is thrown, when the image upload dialog is opened in IE browser" has been fixed.
390
+
391
+ ## 17.3.16 (2019-10-09)
392
+
393
+ ### RichTextEditor
394
+
395
+ #### Bug Fixes
396
+
397
+ - `#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.
398
+
399
+ ## 17.3.14 (2019-10-03)
400
+
401
+ ### RichTextEditor
402
+
403
+ #### Bug Fixes
404
+
405
+ - `#249182` - The issue with localizing static texts of paste prompt dialog in the Rich Text Editor has been fixed.
406
+
407
+ - `#249613` - The issue with pasting content from Microsoft Excel sheet that throws console error in the Rich Text Editor has been fixed.
408
+
409
+ ## 17.3.9-beta (2019-09-20)
410
+
411
+ ### RichTextEditor
412
+
413
+ #### New Features
414
+
415
+ - **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.
416
+
417
+ - **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.
418
+
419
+ - **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.
420
+
421
+ #### Bug Fixes
422
+
423
+ - `#F146927` - The issue with copy and pasting image from MS Word to the RichTextEditor has been fixed.
424
+
425
+ - `#246340` - The issue with pasting the content as plain-text in Rich Text Editor has been fixed.
426
+
427
+ ## 17.2.47 (2019-08-27)
428
+
429
+ ### RichTextEditor
430
+
431
+ #### Bug Fixes
432
+
433
+ - `#242999` - Now, Reactive form validates properly on `shift + tab` key action.
434
+
435
+ - `#244796` - Floating toolbar now renders properly without alignment issue, when render the Rich Text Editor within Tab.
436
+
437
+ - `#243448` - Performance with page scroll has been improved when multiple Rich Text Editor components are rendered in the page.
438
+
439
+ - `#241388` - The issue with right-click option while rendering RichTextEditor inside the table has been fixed.
440
+
441
+ ## 17.2.46 (2019-08-22)
442
+
443
+ ### RichTextEditor
444
+
445
+ #### New Features
446
+
447
+ - **Image upload events**
448
+ - `#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.
449
+
450
+ #### Bug Fixes
451
+
452
+ - `#243475` - Now, you can validate max-length even showCharCount property as false.
453
+
454
+ - `#243475` - Resolved the issue with max-length validation on pasting the content.
455
+
456
+ - `#242999` - The key action for `tab` key and `shift + tab` key are similar now.
457
+
458
+ ## 17.2.41 (2019-08-14)
459
+
460
+ ### RichTextEditor
461
+
462
+ #### New Features
463
+
464
+ - **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.
465
+
466
+ - `#242771` - Provided the support to handle both absolute and relative path links.
467
+
468
+ #### Bug Fixes
469
+
470
+ - `#243767` - The issue with applying selected format based on content editable has been fixed.
471
+
472
+ ## 17.2.36 (2019-07-24)
473
+
474
+ ### RichTextEditor
475
+
476
+ #### Bug Fixes
477
+
478
+ - `#242377` - The issue, "alignment is not working while pasting content from notepad" has been resolved.
479
+
480
+ - `#F146057` - The issue, "formatting(strong and alignment) is not maintained on pasting web content" has been resolved.
481
+
482
+ ## 17.2.35 (2019-07-17)
483
+
484
+ ### RichTextEditor
485
+
486
+ #### Bug Fixes
487
+
488
+ - `#241388` - The issue, "browser context menu is not shown on right click when enabling the showOnRightClick property" has been resolved.
489
+
490
+ ## 17.2.34 (2019-07-11)
491
+
492
+ ### RichTextEditor
493
+
494
+ #### Bug Fixes
495
+
496
+ - `#F145376` - The issue, "action complete event is not triggered when deleting the content with text and images" has been resolved.
497
+
498
+ - `#237729` - The issue "table column width is shown as pixel instead of percentage while resizing" has been fixed.
499
+
500
+ - `#237729` - Pickers mode throws script error when selecting the color in table's quick toolbar, that issue has been fixed.
501
+
502
+ - `#237729` - Color picker value doesn't set as RGBA(alpha) value in content editor, that issue has been fixed.
503
+
504
+ - `#240808` - The issue "opening a link in new window throws an error for auto generated link" has been fixed.
505
+
506
+ - `#240024` - The issue, "spacing between words is removed when focus out the editor" has been resolved.
507
+
508
+ - `#234519`, `#234586`, `#F138909` - The issues with table and its functionalities in IE11 has been resolved.
509
+
510
+ ## 17.2.28-beta (2019-06-27)
511
+
512
+ ### RichTextEditor
513
+
514
+ #### New Features
515
+
516
+ - **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.
517
+
518
+ #### Breaking Changes
519
+
520
+ - 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']`.
521
+
522
+ #### Bug Fixes
523
+
524
+ - `#238872` - Issue with cursor position when enabled list with empty editor that issue has been resolved.
525
+
526
+ ## 17.1.49 (2019-05-29)
527
+
528
+ ### RichTextEditor
529
+
530
+ #### Bug Fixes
531
+
532
+ - `#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.
533
+
534
+ ## 17.1.48 (2019-05-21)
535
+
536
+ ### RichTextEditor
537
+
538
+ #### New Features
539
+
540
+ - `#230976` - Opens a quick toolbar on right-click support has been provided.
541
+
542
+ #### Bug Fixes
543
+
544
+ - `#235120` - RichTextEditor's paste as plain text doesn't preserve line break that issue has been resolved.
545
+
546
+ ## 17.1.43 (2019-04-30)
547
+
548
+ ### RichTextEditor
549
+
550
+ #### Bug Fixes
551
+
552
+ - `#234280` - RichTextEditor's toolbar is broken when using ES2015 target that issue has been resolved.
553
+
554
+ ## 17.1.42 (2019-04-23)
555
+
556
+ ### RichTextEditor
557
+
558
+ #### Bug Fixes
559
+
560
+ - Change event doesn't trigger, when RichTextEditor blurs inside of `In-place Editor` that issue has been fixed.
561
+
562
+ ## 17.1.40 (2019-04-09)
563
+
564
+ ### RichTextEditor
565
+
566
+ #### Bug Fixes
567
+
568
+ - Insert image functionality of `RichTextEditor` is not working when render with `File Upload`, that issue has been fixed.
569
+
570
+ ## 17.1.32-beta (2019-03-13)
571
+
572
+ ### RichTextEditor
573
+
574
+ #### Bug Fixes
575
+
576
+ - Image and Table quick toolbar open while scrolling the content in the iPhone device, that issue has been fixed.
577
+
578
+ - Getting console error while rendering inline mode with `FontColor` and `BackgroundColor` in mobile view, that issue has been fixed.
579
+
580
+ -`Undo` and `Redo` icon visible in preview mode issue has been fixed
581
+
582
+ #### New Features
583
+
584
+ - **Paste cleanup**: This feature allows users to clean up HTML content when copying and pasting any other content from external sources.
585
+
586
+ ## 16.4.55 (2019-02-27)
587
+
588
+ ### RichTextEditor
589
+
590
+ #### Bug Fixes
591
+
592
+ - Insert image dialog is not rendering properly while setting the `imageUploadMessage` text as long in localization, that issue has been fixed.
593
+
594
+ - Localization is not applied to static `DropDownButton` items, that issue has been fixed.
595
+
596
+ ## 16.4.54 (2019-02-19)
597
+
598
+ ### RichTextEditor
599
+
600
+ #### Bug Fixes
601
+
602
+ - HTML 5 form reset behaviour has been corrected.
603
+
604
+ - Editor content rendered twice in DOM when using `RichTextEditorFor`, that issue has been fixed.
605
+
606
+ - EJ2 compatibility styles are not worked while component rendering with `textarea` element, that issue has been fixed.
607
+
608
+ ## 16.4.53 (2019-02-13)
609
+
610
+ ### RichTextEditor
611
+
612
+ #### Bug Fixes
613
+
614
+ - 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.
615
+
616
+ - HTML 5 standard issues has been fixed.
617
+
618
+ - Cursor position changed after typed some contents issue has been fixed.
619
+
620
+ #### Breaking Changes
621
+
622
+ - Changed the `fontSize`, `fontFamily`, `format` properties default value as null.
623
+
624
+ ## 16.4.48 (2019-01-22)
625
+
626
+ ### RichTextEditor
627
+
628
+ #### Bug Fixes
629
+
630
+ - Table QuickToolbar open wherever click within a component issue has been fixed.
631
+
632
+ - FontSize "px" and fontFamily "veranda" not updated in toolbar status, that issue has been fixed.
633
+
634
+ - Clicking on view source code with single character inside textarea removes the character, that issue has been fixed.
635
+
636
+ ## 16.4.47 (2019-01-16)
637
+
638
+ ### RichTextEditor
639
+
640
+ #### Bug Fixes
641
+
642
+ - ASP.NET core data annotation issue has been fixed.
643
+
644
+ - Console error is thrown in IE browser with angular routing, that issue has been fixed.
645
+
646
+ - Unable to maintain the RichTextEditor color picker pop-up position when scrolling the browser has been fixed.
647
+
648
+ ## 16.4.46 (2019-01-08)
649
+
650
+ ### RichTextEditor
651
+
652
+ #### Bug Fixes
653
+
654
+ - Changing the font color of underlined text doesn’t change the color of the line, that issue has been fixed.
655
+
656
+ - RichTextEditor injectable module is missed from import setting file in [CRG](https://crg.syncfusion.com/), that issue has been fixed.
657
+
658
+ - The change event is triggered on clicking into HTML source code view in Edge browser, that issue has been fixed.
659
+
660
+ - Blur event is not triggered when we change focus directly from one RTE to another RTE, that issue has been fixed.
661
+
662
+ - RichTextEditor full screen not working properly when render inside the overflow element has been fixed.
663
+
664
+ ## 16.4.44 (2018-12-24)
665
+
666
+ ### RichTextEditor
667
+
668
+ #### Bug Fixes
669
+
670
+ - Pasted URL is not converted to links automatically, that issue has been fixed.
671
+
672
+ - Image paste as twice in Firefox browser, that issue has been fixed.
673
+
674
+ - The value property and getHtml method will be updated within an interval to `saveInterval` property.
675
+
676
+ ## 16.4.40-beta (2018-12-10)
677
+
678
+ ### RichTextEditor
679
+
680
+ #### New Features
681
+
682
+ - Insert table support has provided for MarkDown Editor.
683
+
684
+ #### Bug Fixes
685
+
686
+ - Dynamic enabling and disabling support for toolbar items has been provided.
687
+ - Image dialog's Browse button width is not adjusted based on the text issue has been resolved.
688
+
689
+ ## 16.3.17 (2018-09-12)
690
+
691
+ ### RichTextEditor
692
+
693
+ #### New Features
694
+
695
+ 1. Image resize support has been provided.
696
+ 2. Insert table support has provided for HTML Editor which includes below sub features,
697
+ 1. Create and modify the table, table rows and columns.
698
+ 2. Row and column resize.
699
+ 3. Quick toolbar interaction.
700
+ 4. Table header and custom styles.
701
+
702
+ #### Breaking Changes
703
+
704
+ - `setContent` method has removed, use `value` property to set the content instead.
705
+
706
+ ## 16.2.51 (2018-09-04)
707
+
708
+ ### RichTextEditor
709
+
710
+ #### Bug Fixes
711
+
712
+ - RichTextEditor modal `popup` style override issue has been resolved.
713
+ - RichTextEditor removes spacing between words when content is pasted from a word document, that
714
+ issue has been fixed.
715
+
716
+ ## 16.2.50 (2018-08-28)
717
+
718
+ ### RichTextEditor
719
+
720
+ #### Bug Fixes
721
+
722
+ - Unable to paste image copied from windows in RichTextEditor issue has been resolved.
723
+
724
+ ## 16.2.49 (2018-08-21)
725
+
726
+ ### RichTextEditor
727
+
728
+ #### Bug Fixes
729
+
730
+ - `IFrame` mode external font family removed in RichTextEditor.
731
+ - Unable to delete the selected content of RichTextEditor in inline toolbar issue has been resolved.
732
+
733
+ ## 16.2.48 (2018-08-14)
734
+
735
+ ### RichTextEditor
736
+
737
+ #### Bug Fixes
738
+
739
+ - Removed external font family in RichTextEditor source.
740
+
741
+ ## 16.2.47 (2018-08-07)
742
+
743
+ ### RichTextEditor
744
+
745
+ #### Bug Fixes
746
+
747
+ - `FontColor` and `BackgroundColor` toolbar item not rendered in inline mode issue has been resolved.
748
+ - RichTextEditor toolbar disabled mode content select console error issue has been resolved.
749
+ - Provided view encapsulation support.
750
+
751
+ ## 16.2.45 (2018-07-17)
752
+
753
+ ### RichTextEditor
754
+
755
+ #### Bug Fixes
756
+
757
+ - Provided `getText` public method from RichTextEditor.
758
+
759
+ ## 16.2.44 (2018-07-10)
760
+
761
+ ### RichTextEditor
762
+
763
+ #### Bug Fixes
764
+
765
+ - RichTextEditor `actionBegin` event missing arguments included.
766
+
767
+ ## 16.2.41 (2018-06-25)
768
+
769
+ ### RichTextEditor
770
+
771
+ 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.
772
+
773
+ - Provides IFRAME and DIV mode.
774
+ - Handles markdown editing.
775
+ - Contains a modular library to load the necessary functionality on demand.
776
+ - Provides a fully customizable toolbar.
777
+ - HTML view to edit the source directly for developers.
778
+ - Supports to integrate third-party library.
779
+ - Preview the modified content before saving it.
780
+ - Handles images, hyperlinks, video,hyperlinks, uploads, and more.
781
+ - Contains undo/redo manager.
782
+ - Creates bulleted and numbered lists.