@syncfusion/ej2-richtexteditor 25.2.4 → 25.2.5
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 +18 -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 +193 -108
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +190 -105
- 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 +7 -7
- 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 +2 -76
- 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 +62 -9
- package/src/rich-text-editor/renderer/toolbar-renderer.js +7 -9
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,18 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#I582303` - Now, the Tab key press on selected paragraph works properly in RichTextEditor.
|
|
10
|
+
|
|
11
|
+
- `#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.
|
|
12
|
+
|
|
13
|
+
- `#F186874` - Now, the background and font color popup's collision will function correctly upon initial click.
|
|
14
|
+
|
|
15
|
+
## 25.2.4 (2024-05-14)
|
|
16
|
+
|
|
17
|
+
### RichTextEditor
|
|
18
|
+
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
9
21
|
- `#I579605` - Now, the editor scrolls to the cursor position after pasting content into the editor.
|
|
10
22
|
|
|
11
23
|
- `#I581468` - Now, improved the alignment of the pasted images and table content from the new outlook.
|
|
@@ -14,6 +26,12 @@
|
|
|
14
26
|
|
|
15
27
|
- `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
28
|
|
|
29
|
+
- `#I583830` - Now, the `tab` key is working properly after inserting the mention list in the Rich Text Editor.
|
|
30
|
+
|
|
31
|
+
- `#I562280` - Now, alignment and indentation work properly when the `enterKey` property is configured as `BR`.
|
|
32
|
+
|
|
33
|
+
- `#I584679` - Now, when the Refresh method is working properly, RichTextEditor is properly refreshed in the initial rendering.
|
|
34
|
+
|
|
17
35
|
## 25.1.42 (2024-04-30)
|
|
18
36
|
|
|
19
37
|
### RichTextEditor
|
|
@@ -110,8 +128,6 @@
|
|
|
110
128
|
|
|
111
129
|
- `#I568007`, `#I568175` - Now, the Table Quick toolbar items are aligned properly in the Tailwind theme.
|
|
112
130
|
|
|
113
|
-
- `#F186874` - Now, the background and font color popup's collision will function correctly upon initial click.
|
|
114
|
-
|
|
115
131
|
## 25.1.35 (2024-03-15)
|
|
116
132
|
|
|
117
133
|
### RichTextEditor
|