@syncfusion/ej2-richtexteditor 20.1.51 → 20.1.56

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 (72) hide show
  1. package/CHANGELOG.md +32 -0
  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 +356 -94
  5. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-richtexteditor.es5.js +356 -94
  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/dom-node.js +7 -1
  13. package/src/editor-manager/plugin/inserthtml.js +2 -1
  14. package/src/editor-manager/plugin/nodecutter.js +1 -1
  15. package/src/rich-text-editor/actions/base-quick-toolbar.js +8 -3
  16. package/src/rich-text-editor/actions/base-toolbar.d.ts +1 -0
  17. package/src/rich-text-editor/actions/base-toolbar.js +14 -1
  18. package/src/rich-text-editor/actions/color-picker.d.ts +2 -0
  19. package/src/rich-text-editor/actions/color-picker.js +22 -1
  20. package/src/rich-text-editor/actions/dropdown-buttons.d.ts +2 -0
  21. package/src/rich-text-editor/actions/dropdown-buttons.js +25 -0
  22. package/src/rich-text-editor/actions/enter-key.js +3 -2
  23. package/src/rich-text-editor/actions/file-manager.d.ts +1 -0
  24. package/src/rich-text-editor/actions/file-manager.js +14 -1
  25. package/src/rich-text-editor/actions/paste-clean-up.d.ts +6 -0
  26. package/src/rich-text-editor/actions/paste-clean-up.js +79 -47
  27. package/src/rich-text-editor/actions/quick-toolbar.d.ts +2 -0
  28. package/src/rich-text-editor/actions/quick-toolbar.js +23 -2
  29. package/src/rich-text-editor/actions/toolbar.d.ts +1 -0
  30. package/src/rich-text-editor/actions/toolbar.js +13 -1
  31. package/src/rich-text-editor/base/constant.d.ts +5 -0
  32. package/src/rich-text-editor/base/constant.js +5 -0
  33. package/src/rich-text-editor/base/interface.d.ts +11 -0
  34. package/src/rich-text-editor/base/rich-text-editor.js +2 -0
  35. package/src/rich-text-editor/renderer/content-renderer.js +2 -1
  36. package/src/rich-text-editor/renderer/image-module.d.ts +5 -0
  37. package/src/rich-text-editor/renderer/image-module.js +57 -13
  38. package/src/rich-text-editor/renderer/link-module.d.ts +2 -0
  39. package/src/rich-text-editor/renderer/link-module.js +19 -2
  40. package/src/rich-text-editor/renderer/table-module.d.ts +6 -0
  41. package/src/rich-text-editor/renderer/table-module.js +60 -18
  42. package/src/rich-text-editor/renderer/toolbar-renderer.js +2 -1
  43. package/styles/bootstrap-dark.css +135 -519
  44. package/styles/bootstrap.css +136 -525
  45. package/styles/bootstrap4.css +145 -572
  46. package/styles/bootstrap5-dark.css +135 -539
  47. package/styles/bootstrap5.css +135 -539
  48. package/styles/fabric-dark.css +134 -518
  49. package/styles/fabric.css +135 -519
  50. package/styles/fluent-dark.css +134 -521
  51. package/styles/fluent.css +134 -521
  52. package/styles/highcontrast-light.css +135 -519
  53. package/styles/highcontrast.css +135 -517
  54. package/styles/material-dark.css +134 -518
  55. package/styles/material.css +135 -519
  56. package/styles/rich-text-editor/bootstrap-dark.css +135 -519
  57. package/styles/rich-text-editor/bootstrap.css +136 -525
  58. package/styles/rich-text-editor/bootstrap4.css +145 -572
  59. package/styles/rich-text-editor/bootstrap5-dark.css +135 -539
  60. package/styles/rich-text-editor/bootstrap5.css +135 -539
  61. package/styles/rich-text-editor/fabric-dark.css +134 -518
  62. package/styles/rich-text-editor/fabric.css +135 -519
  63. package/styles/rich-text-editor/fluent-dark.css +134 -521
  64. package/styles/rich-text-editor/fluent.css +134 -521
  65. package/styles/rich-text-editor/highcontrast-light.css +135 -519
  66. package/styles/rich-text-editor/highcontrast.css +135 -517
  67. package/styles/rich-text-editor/material-dark.css +134 -518
  68. package/styles/rich-text-editor/material.css +135 -519
  69. package/styles/rich-text-editor/tailwind-dark.css +135 -524
  70. package/styles/rich-text-editor/tailwind.css +135 -524
  71. package/styles/tailwind-dark.css +135 -524
  72. package/styles/tailwind.css +135 -524
package/CHANGELOG.md CHANGED
@@ -6,6 +6,36 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I377121` - Now, adding the `cssClass` property will also add the CSS class to all the dependent components of the Rich Text Editor.
10
+
11
+ ## 20.1.55 (2022-05-12)
12
+
13
+ ### RichTextEditor
14
+
15
+ #### Bug Fixes
16
+
17
+ - `#I374234` - Now, the Rich Text Editor table resize works properly when width is configured for the parent element.
18
+
19
+ ## 20.1.52 (2022-05-04)
20
+
21
+ ### RichTextEditor
22
+
23
+ #### Bug Fixes
24
+
25
+ - `#I375434` - Now, pressing the enter key multiple times when the content is empty in the Rich Text Editor on the `Firefox` browser works properly.
26
+
27
+ - `#I349917` - Now, the floating toolbar in the Rich Text Editor is displayed properly when rendered inside the modal dialog.
28
+
29
+ - `#I376141` - Now, pressing enter key before the image with caption doesn't remove the image.
30
+
31
+ - `#I373983` - Now, the Rich Text Editor table resize works properly when placed inside the `Grid` component.
32
+
33
+ ## 20.1.51 (2022-04-26)
34
+
35
+ ### RichTextEditor
36
+
37
+ #### Bug Fixes
38
+
9
39
  - `#I373527` - Now, the font name is updated properly when using the custom font names in the Rich Text Editor.
10
40
 
11
41
  - `#I373953` - Now, inserting the table after the list element with the image doesn't remove the image from the list.
@@ -14,6 +44,8 @@
14
44
 
15
45
  - `#F173394` - Now, the undo and redo keys work properly when pasting the content in the Rich Text Editor.
16
46
 
47
+ - `#SF-367649` - Now, more space between the text and inserting a new link does not remove the space between the words.
48
+
17
49
  ## 20.1.50 (2022-04-19)
18
50
 
19
51
  ### RichTextEditor