@syncfusion/ej2-richtexteditor 24.1.41-569781 → 24.1.41-581025

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 (164) hide show
  1. package/CHANGELOG.md +0 -150
  2. package/dist/ej2-richtexteditor.umd.min.js +1 -1
  3. package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-richtexteditor.es2015.js +953 -2473
  5. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-richtexteditor.es5.js +940 -2461
  7. package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
  8. package/package.json +7 -7
  9. package/src/common/config.d.ts +0 -7
  10. package/src/common/config.js +0 -11
  11. package/src/common/constant.d.ts +0 -6
  12. package/src/common/constant.js +0 -6
  13. package/src/common/interface.d.ts +0 -12
  14. package/src/common/types.d.ts +0 -6
  15. package/src/common/util.d.ts +0 -6
  16. package/src/common/util.js +20 -61
  17. package/src/editor-manager/base/constant.d.ts +0 -6
  18. package/src/editor-manager/base/constant.js +0 -6
  19. package/src/editor-manager/base/editor-manager.d.ts +0 -5
  20. package/src/editor-manager/base/editor-manager.js +0 -59
  21. package/src/editor-manager/base/interface.d.ts +0 -8
  22. package/src/editor-manager/plugin/dom-node.d.ts +1 -5
  23. package/src/editor-manager/plugin/dom-node.js +15 -169
  24. package/src/editor-manager/plugin/format-painter-actions.d.ts +0 -1
  25. package/src/editor-manager/plugin/format-painter-actions.js +1 -19
  26. package/src/editor-manager/plugin/formats.d.ts +0 -1
  27. package/src/editor-manager/plugin/formats.js +3 -38
  28. package/src/editor-manager/plugin/image.js +16 -12
  29. package/src/editor-manager/plugin/inserthtml.d.ts +0 -1
  30. package/src/editor-manager/plugin/inserthtml.js +5 -62
  31. package/src/editor-manager/plugin/link.js +1 -4
  32. package/src/editor-manager/plugin/lists.js +65 -121
  33. package/src/editor-manager/plugin/ms-word-clean-up.d.ts +0 -3
  34. package/src/editor-manager/plugin/ms-word-clean-up.js +85 -212
  35. package/src/editor-manager/plugin/nodecutter.js +2 -2
  36. package/src/editor-manager/plugin/selection-commands.d.ts +0 -1
  37. package/src/editor-manager/plugin/selection-commands.js +3 -126
  38. package/src/editor-manager/plugin/table.d.ts +1 -0
  39. package/src/editor-manager/plugin/table.js +30 -33
  40. package/src/editor-manager/plugin/toolbar-status.d.ts +2 -2
  41. package/src/editor-manager/plugin/toolbar-status.js +10 -20
  42. package/src/editor-manager/plugin/undo.d.ts +0 -1
  43. package/src/editor-manager/plugin/undo.js +1 -21
  44. package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +3 -3
  45. package/src/rich-text-editor/actions/base-quick-toolbar.js +11 -48
  46. package/src/rich-text-editor/actions/base-toolbar.js +34 -32
  47. package/src/rich-text-editor/actions/color-picker.d.ts +0 -1
  48. package/src/rich-text-editor/actions/color-picker.js +0 -10
  49. package/src/rich-text-editor/actions/count.js +1 -1
  50. package/src/rich-text-editor/actions/dropdown-buttons.js +2 -21
  51. package/src/rich-text-editor/actions/emoji-picker.js +3 -3
  52. package/src/rich-text-editor/actions/enter-key.js +3 -4
  53. package/src/rich-text-editor/actions/full-screen.js +2 -3
  54. package/src/rich-text-editor/actions/html-editor.d.ts +2 -2
  55. package/src/rich-text-editor/actions/html-editor.js +42 -126
  56. package/src/rich-text-editor/actions/keyboard.js +1 -3
  57. package/src/rich-text-editor/actions/markdown-editor.js +1 -3
  58. package/src/rich-text-editor/actions/paste-clean-up.d.ts +0 -3
  59. package/src/rich-text-editor/actions/paste-clean-up.js +14 -85
  60. package/src/rich-text-editor/actions/quick-toolbar.d.ts +0 -7
  61. package/src/rich-text-editor/actions/quick-toolbar.js +9 -24
  62. package/src/rich-text-editor/actions/resize.js +1 -2
  63. package/src/rich-text-editor/actions/toolbar-action.js +1 -1
  64. package/src/rich-text-editor/actions/toolbar.d.ts +3 -2
  65. package/src/rich-text-editor/actions/toolbar.js +87 -18
  66. package/src/rich-text-editor/base/classes.d.ts +5 -0
  67. package/src/rich-text-editor/base/classes.js +5 -0
  68. package/src/rich-text-editor/base/constant.d.ts +0 -40
  69. package/src/rich-text-editor/base/constant.js +0 -209
  70. package/src/rich-text-editor/base/interface.d.ts +3 -37
  71. package/src/rich-text-editor/base/rich-text-editor-model.d.ts +3 -3
  72. package/src/rich-text-editor/base/rich-text-editor.d.ts +4 -7
  73. package/src/rich-text-editor/base/rich-text-editor.js +135 -168
  74. package/src/rich-text-editor/base/util.d.ts +0 -4
  75. package/src/rich-text-editor/base/util.js +3 -46
  76. package/src/rich-text-editor/formatter/formatter.js +4 -15
  77. package/src/rich-text-editor/models/default-locale.js +26 -30
  78. package/src/rich-text-editor/models/items.js +2 -2
  79. package/src/rich-text-editor/models/toolbar-settings-model.d.ts +1 -1
  80. package/src/rich-text-editor/models/toolbar-settings.d.ts +1 -1
  81. package/src/rich-text-editor/models/toolbar-settings.js +1 -1
  82. package/src/rich-text-editor/renderer/audio-module.d.ts +0 -1
  83. package/src/rich-text-editor/renderer/audio-module.js +0 -13
  84. package/src/rich-text-editor/renderer/dialog-renderer.d.ts +0 -2
  85. package/src/rich-text-editor/renderer/dialog-renderer.js +1 -12
  86. package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -2
  87. package/src/rich-text-editor/renderer/image-module.d.ts +1 -9
  88. package/src/rich-text-editor/renderer/image-module.js +167 -199
  89. package/src/rich-text-editor/renderer/link-module.js +1 -10
  90. package/src/rich-text-editor/renderer/table-module.d.ts +1 -8
  91. package/src/rich-text-editor/renderer/table-module.js +136 -288
  92. package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +0 -4
  93. package/src/rich-text-editor/renderer/toolbar-renderer.js +15 -94
  94. package/src/rich-text-editor/renderer/video-module.d.ts +0 -3
  95. package/src/rich-text-editor/renderer/video-module.js +34 -61
  96. package/src/rich-text-editor/renderer/view-source.d.ts +0 -1
  97. package/src/rich-text-editor/renderer/view-source.js +4 -12
  98. package/src/selection/selection.js +0 -3
  99. package/styles/bootstrap-dark.css +49 -153
  100. package/styles/bootstrap.css +57 -158
  101. package/styles/bootstrap4.css +45 -145
  102. package/styles/bootstrap5-dark.css +45 -150
  103. package/styles/bootstrap5.css +45 -150
  104. package/styles/fabric-dark.css +39 -139
  105. package/styles/fabric.css +40 -140
  106. package/styles/fluent-dark.css +41 -147
  107. package/styles/fluent.css +41 -147
  108. package/styles/highcontrast-light.css +39 -139
  109. package/styles/highcontrast.css +40 -143
  110. package/styles/material-dark.css +39 -143
  111. package/styles/material.css +39 -143
  112. package/styles/material3-dark.css +49 -155
  113. package/styles/material3.css +49 -155
  114. package/styles/rich-text-editor/_bootstrap-dark-definition.scss +10 -14
  115. package/styles/rich-text-editor/_bootstrap-definition.scss +17 -20
  116. package/styles/rich-text-editor/_bootstrap4-definition.scss +7 -11
  117. package/styles/rich-text-editor/_bootstrap5-definition.scss +3 -7
  118. package/styles/rich-text-editor/_fabric-dark-definition.scss +2 -6
  119. package/styles/rich-text-editor/_fabric-definition.scss +3 -7
  120. package/styles/rich-text-editor/_fluent-definition.scss +4 -8
  121. package/styles/rich-text-editor/_fusionnew-definition.scss +3 -7
  122. package/styles/rich-text-editor/_highcontrast-definition.scss +3 -7
  123. package/styles/rich-text-editor/_highcontrast-light-definition.scss +2 -6
  124. package/styles/rich-text-editor/_layout.scss +28 -130
  125. package/styles/rich-text-editor/_material-dark-definition.scss +2 -6
  126. package/styles/rich-text-editor/_material-definition.scss +2 -6
  127. package/styles/rich-text-editor/_material3-definition.scss +12 -16
  128. package/styles/rich-text-editor/_tailwind-definition.scss +21 -25
  129. package/styles/rich-text-editor/_theme.scss +23 -92
  130. package/styles/rich-text-editor/bootstrap-dark.css +49 -153
  131. package/styles/rich-text-editor/bootstrap.css +57 -158
  132. package/styles/rich-text-editor/bootstrap4.css +45 -145
  133. package/styles/rich-text-editor/bootstrap5-dark.css +45 -150
  134. package/styles/rich-text-editor/bootstrap5.css +45 -150
  135. package/styles/rich-text-editor/fabric-dark.css +39 -139
  136. package/styles/rich-text-editor/fabric.css +40 -140
  137. package/styles/rich-text-editor/fluent-dark.css +41 -147
  138. package/styles/rich-text-editor/fluent.css +41 -147
  139. package/styles/rich-text-editor/highcontrast-light.css +39 -139
  140. package/styles/rich-text-editor/highcontrast.css +40 -143
  141. package/styles/rich-text-editor/icons/_bootstrap-dark.scss +2 -2
  142. package/styles/rich-text-editor/icons/_bootstrap.scss +2 -2
  143. package/styles/rich-text-editor/icons/_bootstrap4.scss +2 -2
  144. package/styles/rich-text-editor/icons/_bootstrap5.scss +2 -2
  145. package/styles/rich-text-editor/icons/_fabric-dark.scss +2 -2
  146. package/styles/rich-text-editor/icons/_fabric.scss +2 -2
  147. package/styles/rich-text-editor/icons/_fluent.scss +2 -2
  148. package/styles/rich-text-editor/icons/_highcontrast-light.scss +2 -2
  149. package/styles/rich-text-editor/icons/_highcontrast.scss +2 -2
  150. package/styles/rich-text-editor/icons/_material-dark.scss +2 -2
  151. package/styles/rich-text-editor/icons/_material.scss +2 -2
  152. package/styles/rich-text-editor/icons/_material3.scss +2 -2
  153. package/styles/rich-text-editor/icons/_tailwind.scss +2 -2
  154. package/styles/rich-text-editor/material-dark.css +39 -143
  155. package/styles/rich-text-editor/material.css +39 -143
  156. package/styles/rich-text-editor/material3-dark.css +49 -155
  157. package/styles/rich-text-editor/material3.css +49 -155
  158. package/styles/rich-text-editor/tailwind-dark.css +66 -194
  159. package/styles/rich-text-editor/tailwind.css +66 -194
  160. package/styles/tailwind-dark.css +66 -194
  161. package/styles/tailwind.css +66 -194
  162. package/.eslintrc.json +0 -260
  163. package/styles/rich-text-editor/_bds-definition.scss +0 -279
  164. package/styles/rich-text-editor/icons/_bds.scss +0 -348
package/CHANGELOG.md CHANGED
@@ -2,156 +2,6 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ### RichTextEditor
6
-
7
- #### Bug Fixes
8
-
9
- - `#I559868` - Now, paste using the clean or plain text option within the RichTextEditor, the XML tags aren't added.
10
-
11
- - `#I558265` - Now, when changing the formats using the toolbar in RichTextEditor, the cursor position is placed properly.
12
-
13
- - `#I564770` - Now, using indents on a numbered or bulleted list in RichTextEditor, it works properly.
14
-
15
- - `#I568007`, `#I568175` - Now, the Table Quick toolbar items are aligned properly in the Tailwind theme.
16
-
17
- - `#F186874` - Now, the background and font color popup's collision will function correctly upon initial click.
18
-
19
- ## 25.1.35 (2024-03-15)
20
-
21
- ### RichTextEditor
22
-
23
- #### Bug Fixes
24
-
25
- - The smoothness and performance of table cell resizing have improved.
26
-
27
- - Improved the image resize function to keep the aspect ratio when resizing.
28
-
29
- - When Quick Toolbar is active, press <kbd>Alt + F10</kbd> to focus on Quick Toolbar items.
30
-
31
- - `#I51118` - Now, the pasted content with the picture element will have proper source values.
32
-
33
- - `#I555698` - Now, the customized text is shown properly in the `numberFormatList` icon's tooltip in the Rich Text Editor.
34
-
35
- - `#I561056` - Now, the font color is applied properly to the hyperlink text when clicking the `fontcolor` icon in Rich Text Editor.
36
-
37
- ## 24.2.9 (2024-03-05)
38
-
39
- ### RichTextEditor
40
-
41
- #### Bug Fixes
42
-
43
- - `#I550863` - Now the script error doesn't show when all content is selected and pasted into the Rich Text Editor.
44
-
45
- - `#I555677` - Now the list format is working properly when press the backspace key in a list in RichTextEditor.
46
-
47
- - `#I558397` - Now the Emoji Picker popup is shown properly within the inline Rich Text Editor.
48
-
49
- - `#I558168` - Now, the font color  toolbar works properly when using the inline toolbar of the Rich Text Editor.
50
-
51
- - `#I558398` - Now, after pasting an image, the inline editor toolbar items should show properly in RichTextEditor.
52
-
53
- ## 24.2.8 (2024-02-27)
54
-
55
- ### RichTextEditor
56
-
57
- #### Bug Fixes
58
-
59
- - `#F186601` - Now, the `e-control` class name is removed properly from the body element in the Rich Text Editor.
60
-
61
- - `#I553157` - Now the numbered and bulleted list is removed properly when deleting the entire list using the backspace key in RichTextEditor.
62
-
63
- - `#I553375` - Now, the bullet or number list works properly when we try to remove a single line from the list in the RichTextEditor.
64
-
65
- ## 24.2.7 (2024-02-20)
66
-
67
- ### RichTextEditor
68
-
69
- #### Bug Fixes
70
-
71
- - `#I552276` - Now, pasting the image after the link in the Rich Text Editor pastes the image outside the link.
72
-
73
- - `#I552815` - Now, override a text in the Rich Text Editor anywhere it works properly.
74
-
75
- - `#I553375` - Now, clicking the number or bullet list button in the Rich Text Editor allows the applied list to be reverted.
76
-
77
- - `#I553814` - Now, pressing the Enter key after pasting an image in the Rich Text Editor works properly.
78
-
79
- - `#I540536` - Now, The issue with the addition of previous format when typing after the backspace/delete action has been resolved.
80
-
81
- - `#I544943` - Now, pasting images along with content in different languages from MS Word in the Rich Text Editor works properly.
82
-
83
- - `#I552726` - Now, pressing the backspace key inside the list after pressing the `shift+enter` key with background color styles works properly.
84
-
85
- ## 24.2.4 (2024-02-06)
86
-
87
- ### RichTextEditor
88
-
89
- #### Bug Fixes
90
-
91
- - `#F183065` - Now, applying the mention by using the '&' keyword in the text editor is now properly working.
92
-
93
- - Now, the audio will be inserted properly in the Rich Text Editor `iframe` mode.
94
-
95
- ## 24.2.3 (2024-01-31)
96
-
97
- ### RichTextEditor
98
-
99
- #### Bug Fixes
100
-
101
- - `#I530749` - Now, the `change` event is triggered properly when inserting the mention list items in the Rich Text Editor.
102
-
103
- - `#I534487` - Now, applying the bold format to the Rich Text Editor when focusing on another Rich Text Editor in the page works properly.
104
-
105
- - `#I539510` - Now, when an empty string `value` is loaded, the cursor will not focus automatically in the Rich Text Editor.
106
-
107
- ## 24.2.3 (2024-01-31)
108
-
109
- ### RichTextEditor
110
-
111
- #### Bug Fixes
112
-
113
- - `#I534094` - Now, when using the `click` event with a custom toolbar template, the Rich Text Editor works properly.
114
-
115
- - `#I541522` - Now, when the window is resized to the minimum width, the Rich Text Editor's content font size is updated properly.
116
-
117
- ## 24.1.47 (2024-01-23)
118
-
119
- ### RichTextEditor
120
-
121
- #### Bug Fixes
122
-
123
- - `#I542710` - Now, pressing the `tab` key in the list applies the nested list properly when the mention component is used in the Rich Text Editor.
124
-
125
- ## 24.1.46 (2024-01-17)
126
-
127
- ### RichTextEditor
128
-
129
- #### Bug Fixes
130
-
131
- - `#I537067` - Now, the content at the top is displayed properly when maximizing the Rich Text Editor with `enableFloating` set to `false`.
132
-
133
- - `#I534484` - Now, applying the bold repeatedly to the content in the Rich Text Editor works properly, and the content doesn't get deleted.
134
-
135
- - `#I531848` - Now, pressing the space or enter key after inserting the mention list in the Rich Text Editor doesn't scroll the page.
136
-
137
- ## 24.1.45 (2024-01-09)
138
-
139
- ### RichTextEditor
140
-
141
- #### Bug Fixes
142
-
143
- - `#I534488` - Now, applying different style formats without focusing inside the Rich Text Editor works properly.
144
-
145
- - `#I534481` - Now, when applying the font family `Arial` to the text content in the Rich Text Editor, the toolbar status is updated properly.
146
-
147
- ## 24.1.43 (2023-12-27)
148
-
149
- ### RichTextEditor
150
-
151
- #### Bug Fixes
152
-
153
- - `#I518537` - Now, the paste format prompt dialog appears properly when pasting the content into the Rich Text Editor.
154
-
155
5
  ## 24.1.41 (2023-12-18)
156
6
 
157
7
  ### RichTextEditor