@syncfusion/ej2-richtexteditor 25.2.4 → 25.2.6
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 +34 -2
- package/dist/ej2-richtexteditor.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +362 -130
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +360 -127
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/dist/global/ej2-richtexteditor.min.js +2 -2
- package/dist/global/ej2-richtexteditor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/common/interface.d.ts +14 -0
- package/src/common/util.js +4 -1
- package/src/editor-manager/base/editor-manager.js +5 -3
- package/src/editor-manager/plugin/alignments.js +3 -0
- package/src/editor-manager/plugin/dom-node.d.ts +20 -0
- package/src/editor-manager/plugin/dom-node.js +104 -1
- package/src/editor-manager/plugin/formats.js +1 -1
- package/src/editor-manager/plugin/indents.js +3 -0
- package/src/editor-manager/plugin/lists.d.ts +0 -1
- package/src/editor-manager/plugin/lists.js +55 -78
- package/src/editor-manager/plugin/ms-word-clean-up.js +1 -1
- package/src/rich-text-editor/actions/enter-key.d.ts +5 -0
- package/src/rich-text-editor/actions/enter-key.js +98 -13
- package/src/rich-text-editor/actions/full-screen.js +0 -6
- package/src/rich-text-editor/actions/html-editor.d.ts +1 -0
- package/src/rich-text-editor/actions/html-editor.js +63 -10
- package/src/rich-text-editor/actions/paste-clean-up.js +2 -1
- package/src/rich-text-editor/base/rich-text-editor.d.ts +1 -0
- package/src/rich-text-editor/base/rich-text-editor.js +12 -1
- package/src/rich-text-editor/renderer/image-module.js +3 -3
- package/src/rich-text-editor/renderer/toolbar-renderer.js +7 -9
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,34 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#I588147` - Now, The text `×` should not get converted into `x` when paste from the clipboard into the RichTextEditor.
|
|
10
|
+
|
|
11
|
+
- `#I582501` - Now, the font size is pasted properly when we copy and paste from MS Word into RichTextEditor.
|
|
12
|
+
|
|
13
|
+
- `#I586268` - Now, auto-numbering works properly with `enterKey` as `BR` in RichTextEditor.
|
|
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
|
+
- `#I586268` - Now, pressing the Enter key on the side of the image will work properly when `BR` is configured.
|
|
18
|
+
|
|
19
|
+
## 25.2.5 (2024-05-21)
|
|
20
|
+
|
|
21
|
+
### RichTextEditor
|
|
22
|
+
|
|
23
|
+
#### Bug Fixes
|
|
24
|
+
|
|
25
|
+
- `#I582303` - Now, the Tab key press on selected paragraph works properly in RichTextEditor.
|
|
26
|
+
|
|
27
|
+
- `#F56019` - Now, pressing the enter key when the cursor is at the end of the empty list creates a new tag based on the `enterKey` property.
|
|
28
|
+
|
|
29
|
+
- `#F186874` - Now, the background and font color popup's collision will function correctly upon initial click.
|
|
30
|
+
|
|
31
|
+
## 25.2.4 (2024-05-14)
|
|
32
|
+
|
|
33
|
+
### RichTextEditor
|
|
34
|
+
|
|
35
|
+
#### Bug Fixes
|
|
36
|
+
|
|
9
37
|
- `#I579605` - Now, the editor scrolls to the cursor position after pasting content into the editor.
|
|
10
38
|
|
|
11
39
|
- `#I581468` - Now, improved the alignment of the pasted images and table content from the new outlook.
|
|
@@ -14,6 +42,12 @@
|
|
|
14
42
|
|
|
15
43
|
- `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
44
|
|
|
45
|
+
- `#I583830` - Now, the `tab` key is working properly after inserting the mention list in the Rich Text Editor.
|
|
46
|
+
|
|
47
|
+
- `#I562280` - Now, alignment and indentation work properly when the `enterKey` property is configured as `BR`.
|
|
48
|
+
|
|
49
|
+
- `#I584679` - Now, when the Refresh method is working properly, RichTextEditor is properly refreshed in the initial rendering.
|
|
50
|
+
|
|
17
51
|
## 25.1.42 (2024-04-30)
|
|
18
52
|
|
|
19
53
|
### RichTextEditor
|
|
@@ -110,8 +144,6 @@
|
|
|
110
144
|
|
|
111
145
|
- `#I568007`, `#I568175` - Now, the Table Quick toolbar items are aligned properly in the Tailwind theme.
|
|
112
146
|
|
|
113
|
-
- `#F186874` - Now, the background and font color popup's collision will function correctly upon initial click.
|
|
114
|
-
|
|
115
147
|
## 25.1.35 (2024-03-15)
|
|
116
148
|
|
|
117
149
|
### RichTextEditor
|