@syncfusion/ej2-richtexteditor 20.2.39 → 20.2.44

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 (44) hide show
  1. package/CHANGELOG.md +33 -1
  2. package/dist/ej2-richtexteditor.umd.min.js +2 -2
  3. package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-richtexteditor.es2015.js +145 -16
  5. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-richtexteditor.es5.js +145 -16
  7. package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
  8. package/dist/global/ej2-richtexteditor.min.js +2 -2
  9. package/dist/global/ej2-richtexteditor.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +12 -12
  12. package/src/editor-manager/plugin/lists.d.ts +3 -0
  13. package/src/editor-manager/plugin/lists.js +29 -0
  14. package/src/editor-manager/plugin/toolbar-status.js +1 -1
  15. package/src/rich-text-editor/actions/base-toolbar.d.ts +6 -1
  16. package/src/rich-text-editor/actions/dropdown-buttons.d.ts +6 -1
  17. package/src/rich-text-editor/actions/enter-key.d.ts +1 -0
  18. package/src/rich-text-editor/actions/enter-key.js +7 -1
  19. package/src/rich-text-editor/actions/full-screen.d.ts +1 -0
  20. package/src/rich-text-editor/actions/full-screen.js +5 -0
  21. package/src/rich-text-editor/actions/markdown-editor.d.ts +1 -0
  22. package/src/rich-text-editor/actions/markdown-editor.js +6 -0
  23. package/src/rich-text-editor/actions/quick-toolbar.d.ts +1 -0
  24. package/src/rich-text-editor/actions/quick-toolbar.js +5 -0
  25. package/src/rich-text-editor/actions/toolbar-action.d.ts +6 -1
  26. package/src/rich-text-editor/actions/toolbar.d.ts +1 -0
  27. package/src/rich-text-editor/actions/toolbar.js +8 -0
  28. package/src/rich-text-editor/base/constant.d.ts +5 -0
  29. package/src/rich-text-editor/base/constant.js +5 -0
  30. package/src/rich-text-editor/base/rich-text-editor.js +16 -5
  31. package/src/rich-text-editor/renderer/dialog-renderer.d.ts +3 -0
  32. package/src/rich-text-editor/renderer/dialog-renderer.js +18 -0
  33. package/src/rich-text-editor/renderer/image-module.d.ts +2 -1
  34. package/src/rich-text-editor/renderer/image-module.js +18 -6
  35. package/src/rich-text-editor/renderer/link-module.d.ts +1 -0
  36. package/src/rich-text-editor/renderer/link-module.js +5 -0
  37. package/src/rich-text-editor/renderer/render.d.ts +1 -0
  38. package/src/rich-text-editor/renderer/render.js +5 -0
  39. package/src/rich-text-editor/renderer/table-module.d.ts +1 -0
  40. package/src/rich-text-editor/renderer/table-module.js +9 -2
  41. package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +6 -1
  42. package/src/rich-text-editor/renderer/toolbar-renderer.js +2 -1
  43. package/src/rich-text-editor/renderer/view-source.d.ts +1 -0
  44. package/src/rich-text-editor/renderer/view-source.js +5 -0
package/CHANGELOG.md CHANGED
@@ -6,10 +6,42 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
- - `#I388456` - Now, when an empty span tag is loaded in the Rich Text Editor, the text displays properly.
9
+ - `#I390850` - Now, the first list item will be removed properly when placing the cursor at the start of the first list item and pressing the backspace key.
10
+
11
+ - `#I386938` - Now, resizing the image works properly even after resizing the Rich Text Editor using the browser window.
12
+
13
+ ## 20.2.43 (2022-08-08)
14
+
15
+ ### RichTextEditor
16
+
17
+ #### Bug Fixes
18
+
19
+ - `#FB36307` - Now, pressing the tab key to focus out of the Rich Text Editor when Iframe mode is enabled and `saveInterval` is set as 0, the change event will be triggered properly.
20
+
21
+ ## 20.2.40 (2022-07-26)
22
+
23
+ ### RichTextEditor
24
+
25
+ #### Bug Fixes
26
+
27
+ - `#I380086` - Now, resizing the table's first and last columns when the Rich Text Editor is rendered inside the Grid component works properly.
28
+
29
+ - `#I391326` - Now, the Font-family value property is case-Insensitive in the Rich Text Editor.
10
30
 
11
31
  - `#I388270` - Now, Script error is not thrown when we click background color toolbar of the RTE, which is rendered inside a table.
12
32
 
33
+ ## 20.2.39 (2022-07-19)
34
+
35
+ ### RichTextEditor
36
+
37
+ #### Bug Fixes
38
+
39
+ - `#I388456` - Now, when an empty span tag is loaded in the Rich Text Editor, the text displays properly.
40
+
41
+ - `#I386938` - Now, the Image resize in the Rich Text Editor works properly.
42
+
43
+ - `#I386940` - Now, clicking `ctrl+B` continuously in list element works properly.
44
+
13
45
  ## 20.2.38 (2022-07-12)
14
46
 
15
47
  ### RichTextEditor