@syncfusion/ej2-richtexteditor 25.1.42 → 25.2.4

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 (57) hide show
  1. package/CHANGELOG.md +26 -4
  2. package/dist/ej2-richtexteditor.min.js +2 -2
  3. package/dist/ej2-richtexteditor.umd.min.js +2 -2
  4. package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-richtexteditor.es2015.js +110 -24
  6. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  7. package/dist/es6/ej2-richtexteditor.es5.js +115 -26
  8. package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
  9. package/dist/global/ej2-richtexteditor.min.js +2 -2
  10. package/dist/global/ej2-richtexteditor.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +12 -12
  13. package/src/common/util.d.ts +8 -0
  14. package/src/common/util.js +52 -0
  15. package/src/editor-manager/plugin/dom-node.js +1 -1
  16. package/src/editor-manager/plugin/ms-word-clean-up.js +2 -2
  17. package/src/editor-manager/plugin/undo.js +3 -1
  18. package/src/rich-text-editor/actions/html-editor.js +2 -10
  19. package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -0
  20. package/src/rich-text-editor/actions/paste-clean-up.js +52 -12
  21. package/src/rich-text-editor/base/rich-text-editor.d.ts +1 -0
  22. package/src/rich-text-editor/base/rich-text-editor.js +6 -2
  23. package/styles/bootstrap-dark.css +3 -6
  24. package/styles/bootstrap.css +3 -6
  25. package/styles/bootstrap4.css +3 -6
  26. package/styles/bootstrap5-dark.css +3 -6
  27. package/styles/bootstrap5.css +3 -6
  28. package/styles/fabric-dark.css +3 -6
  29. package/styles/fabric.css +3 -6
  30. package/styles/fluent-dark.css +3 -6
  31. package/styles/fluent.css +3 -6
  32. package/styles/highcontrast-light.css +3 -6
  33. package/styles/highcontrast.css +3 -6
  34. package/styles/material-dark.css +3 -6
  35. package/styles/material.css +3 -6
  36. package/styles/material3-dark.css +3 -6
  37. package/styles/material3.css +3 -6
  38. package/styles/rich-text-editor/_layout.scss +3 -6
  39. package/styles/rich-text-editor/bootstrap-dark.css +3 -6
  40. package/styles/rich-text-editor/bootstrap.css +3 -6
  41. package/styles/rich-text-editor/bootstrap4.css +3 -6
  42. package/styles/rich-text-editor/bootstrap5-dark.css +3 -6
  43. package/styles/rich-text-editor/bootstrap5.css +3 -6
  44. package/styles/rich-text-editor/fabric-dark.css +3 -6
  45. package/styles/rich-text-editor/fabric.css +3 -6
  46. package/styles/rich-text-editor/fluent-dark.css +3 -6
  47. package/styles/rich-text-editor/fluent.css +3 -6
  48. package/styles/rich-text-editor/highcontrast-light.css +3 -6
  49. package/styles/rich-text-editor/highcontrast.css +3 -6
  50. package/styles/rich-text-editor/material-dark.css +3 -6
  51. package/styles/rich-text-editor/material.css +3 -6
  52. package/styles/rich-text-editor/material3-dark.css +3 -6
  53. package/styles/rich-text-editor/material3.css +3 -6
  54. package/styles/rich-text-editor/tailwind-dark.css +3 -6
  55. package/styles/rich-text-editor/tailwind.css +3 -6
  56. package/styles/tailwind-dark.css +3 -6
  57. package/styles/tailwind.css +3 -6
package/CHANGELOG.md CHANGED
@@ -6,6 +6,32 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I579605` - Now, the editor scrolls to the cursor position after pasting content into the editor.
10
+
11
+ - `#I581468` - Now, improved the alignment of the pasted images and table content from the new outlook.
12
+
13
+ - `I566845` - Now, when pasting images from `FSNotes`, the image is uploaded properly to the server in the Rich Text Editor.
14
+
15
+ - `I564770` - Now, the list type is applied properly to both the parent and the nest list while applying indents in the Rich Text Editor.
16
+
17
+ ## 25.1.42 (2024-04-30)
18
+
19
+ ### RichTextEditor
20
+
21
+ #### Bug Fixes
22
+
23
+ - `#I579856` - Now, Bold action works properly in RichTextEditor when `enterKey` is set to 'BR'.
24
+
25
+ - `#I52134` - Now, the cursor position remains in the correct place when you use InsertHtml executeCommand to insert text into Rich Text Editor after the table.
26
+
27
+ - `#I572493` - Now, added the new `requestType` property to the `imageUploadSuccess` event argument in Rich Text Editor.
28
+
29
+ - `#I582707` - Now, RichTextEditor works properly when the font size icon is clicked in the toolbar.
30
+
31
+ ### RichTextEditor
32
+
33
+ #### Bug Fixes
34
+
9
35
  - `#I581044` - Now, with the content pasted with a table as the last element, a newline will be inserted, and the focus will be maintained on a new line.
10
36
 
11
37
  - `#I573688` - Now, Bullet list into the Rich Text Editor when using `enterkey` as `BR` work's properly.
@@ -22,10 +48,6 @@
22
48
 
23
49
  - `#I577917` - Now, The tooltips are destroyed when the dialog with the editor is closed by a keyboard action.
24
50
 
25
- - `#I52134` - Now, the cursor position remains in the correct place when you use InsertHtml executeCommand to insert text into Rich Text Editor after the table.
26
-
27
- - `#I572493` - Now, added the new `requestType` property to the `imageUploadSuccess` event argument in Rich Text Editor.
28
-
29
51
  - `#I577198` - Now, inserting the table into the RichTextEditor works properly by using the toolbar insert table.
30
52
 
31
53
  ## 25.1.40 (2024-04-16)