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