@syncfusion/ej2-richtexteditor 19.3.47 → 19.3.57

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 (51) hide show
  1. package/CHANGELOG.md +46 -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 +133 -45
  5. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-richtexteditor.es5.js +133 -45
  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/inserthtml.js +9 -1
  13. package/src/rich-text-editor/actions/dropdown-buttons.js +10 -0
  14. package/src/rich-text-editor/actions/enter-key.d.ts +1 -0
  15. package/src/rich-text-editor/actions/enter-key.js +38 -28
  16. package/src/rich-text-editor/actions/html-editor.js +2 -2
  17. package/src/rich-text-editor/actions/quick-toolbar.d.ts +1 -0
  18. package/src/rich-text-editor/actions/quick-toolbar.js +16 -1
  19. package/src/rich-text-editor/base/interface.d.ts +2 -0
  20. package/src/rich-text-editor/base/rich-text-editor.js +1 -2
  21. package/src/rich-text-editor/formatter/formatter.js +3 -3
  22. package/src/rich-text-editor/renderer/image-module.js +49 -4
  23. package/src/rich-text-editor/renderer/toolbar-renderer.js +3 -2
  24. package/src/selection/selection.js +2 -1
  25. package/styles/bootstrap-dark.css +4 -0
  26. package/styles/bootstrap.css +4 -0
  27. package/styles/bootstrap4.css +4 -0
  28. package/styles/bootstrap5-dark.css +4 -0
  29. package/styles/bootstrap5.css +4 -0
  30. package/styles/fabric-dark.css +4 -0
  31. package/styles/fabric.css +4 -0
  32. package/styles/highcontrast-light.css +4 -0
  33. package/styles/highcontrast.css +4 -0
  34. package/styles/material-dark.css +4 -0
  35. package/styles/material.css +4 -0
  36. package/styles/rich-text-editor/_layout.scss +4 -0
  37. package/styles/rich-text-editor/bootstrap-dark.css +4 -0
  38. package/styles/rich-text-editor/bootstrap.css +4 -0
  39. package/styles/rich-text-editor/bootstrap4.css +4 -0
  40. package/styles/rich-text-editor/bootstrap5-dark.css +4 -0
  41. package/styles/rich-text-editor/bootstrap5.css +4 -0
  42. package/styles/rich-text-editor/fabric-dark.css +4 -0
  43. package/styles/rich-text-editor/fabric.css +4 -0
  44. package/styles/rich-text-editor/highcontrast-light.css +4 -0
  45. package/styles/rich-text-editor/highcontrast.css +4 -0
  46. package/styles/rich-text-editor/material-dark.css +4 -0
  47. package/styles/rich-text-editor/material.css +4 -0
  48. package/styles/rich-text-editor/tailwind-dark.css +4 -0
  49. package/styles/rich-text-editor/tailwind.css +4 -0
  50. package/styles/tailwind-dark.css +4 -0
  51. package/styles/tailwind.css +4 -0
package/CHANGELOG.md CHANGED
@@ -6,6 +6,52 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I356983` - The issue with "Unwanted line is added in Rich Text Editor, when performing the drag and drop image upload" has been resolved.
10
+
11
+ - `#I347461` - The issue with "When we have two images in the Rich Text Editor and you click on one and then the next one, the quickToolbar popup does not appear" has been resolved
12
+
13
+ - `#I343770` - The issue with "Image is not deleted when press backspace and delete button" has been resolved.
14
+
15
+ - `#I356969` - The issue with "Rich Text Editor Image quickToolbar popup is not hidden, if we cancel uploading with the popup being opened" has been resolved.
16
+
17
+ - `#I346752` - The issue with "applying code format to the already applied code format content reverts to paragraph" has been resolved.
18
+
19
+ - `#F170386` - The issue with "shift enter key is not working properly when `shiftEnterKey` is configured as `BR` in the safari browser" has been resolved.
20
+
21
+ - `#I347313` - The issue with "previous line is removed when pressing enter key after shift enter key action" has been resolved.
22
+
23
+ - `#I347461` - The issue with "image resize not working when an image is resized to the full Rich Text Editor size and trying to minimize the image by clicking on the bottom right resize icon" has been resolved.
24
+
25
+ - `#I356989` - The issue with "image element not returned properly, while applying any alignments before image upload success is completed" has been resolved.
26
+
27
+ - `#I348816` - The issue with "special characters are added in the Rich Text Editor when pasting the link" has been resolved.
28
+
29
+ ## 19.3.55 (2021-11-23)
30
+
31
+ ### RichTextEditor
32
+
33
+ #### Bug Fixes
34
+
35
+ - `#I347461` - The issue with "quickToolbar of image is not hidden, when we click on the popup and then press Esc to hide" has been resolved.
36
+
37
+ ## 19.3.53 (2021-11-12)
38
+
39
+ ### RichTextEditor
40
+
41
+ #### Bug Fixes
42
+
43
+ - `#I346580` - The issue with "align top in the table vertical align quick toolbar is always disabled" has been resolved.
44
+
45
+ - `#I346331` - The issue with "font family is not working when changed dynamically when the Rich Text Editor is in inline mode" has been resolved.
46
+
47
+ - `#I346832` - The issue with "upload icon overlaps with the percentage icon in the insert image dialog when uploading" has been resolved.
48
+
49
+ ## 19.3.47 (2021-10-26)
50
+
51
+ ### RichTextEditor
52
+
53
+ #### Bug Fixes
54
+
9
55
  - `#I342950` - The issue with "font-Family styles are not applied when changing dynamically" has been resolved.
10
56
 
11
57
  - `#I345842` - The issue with "Table cells with classes added initially are removed, when focusing on the table cells" has been resolved.