@syncfusion/ej2-richtexteditor 19.4.55 → 20.1.48
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 +7 -65
- 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 +121 -40
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +119 -38
- 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 +12 -12
- package/src/editor-manager/base/constant.d.ts +6 -0
- package/src/editor-manager/base/constant.js +6 -0
- package/src/editor-manager/plugin/clearformat.js +3 -2
- package/src/editor-manager/plugin/inserthtml.js +9 -5
- package/src/editor-manager/plugin/lists.js +18 -6
- package/src/editor-manager/plugin/ms-word-clean-up.js +6 -0
- package/src/editor-manager/plugin/table.js +6 -5
- package/src/rich-text-editor/actions/count.js +2 -2
- package/src/rich-text-editor/actions/dropdown-buttons.js +1 -1
- package/src/rich-text-editor/actions/html-editor.js +3 -2
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -0
- package/src/rich-text-editor/actions/paste-clean-up.js +11 -1
- 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/rich-text-editor.js +4 -3
- package/src/rich-text-editor/renderer/image-module.js +21 -5
- package/src/rich-text-editor/renderer/table-module.js +20 -5
- package/src/selection/selection.js +3 -0
- package/styles/bootstrap-dark.css +6 -3
- package/styles/bootstrap.css +6 -3
- package/styles/bootstrap4.css +2 -2
- package/styles/bootstrap5-dark.css +30 -6
- package/styles/bootstrap5.css +31 -7
- package/styles/fabric-dark.css +2 -2
- package/styles/fabric.css +2 -2
- package/styles/fluent-dark.css +3001 -0
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +3001 -0
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +2 -2
- package/styles/highcontrast.css +2 -2
- package/styles/material-dark.css +2 -2
- package/styles/material.css +2 -2
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +19 -0
- package/styles/rich-text-editor/_bootstrap-definition.scss +19 -0
- package/styles/rich-text-editor/_bootstrap4-definition.scss +19 -0
- package/styles/rich-text-editor/_bootstrap5-definition.scss +24 -3
- package/styles/rich-text-editor/_fabric-dark-definition.scss +19 -0
- package/styles/rich-text-editor/_fabric-definition.scss +19 -0
- package/styles/rich-text-editor/_fluent-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_fluent-definition.scss +42 -19
- package/styles/rich-text-editor/_highcontrast-definition.scss +19 -0
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +19 -0
- package/styles/rich-text-editor/_layout.scss +96 -6
- package/styles/rich-text-editor/_material-dark-definition.scss +18 -1
- package/styles/rich-text-editor/_material-definition.scss +19 -0
- package/styles/rich-text-editor/_tailwind-definition.scss +26 -6
- package/styles/rich-text-editor/_theme.scss +17 -2
- package/styles/rich-text-editor/bootstrap-dark.css +6 -3
- package/styles/rich-text-editor/bootstrap.css +6 -3
- package/styles/rich-text-editor/bootstrap4.css +2 -2
- package/styles/rich-text-editor/bootstrap5-dark.css +30 -6
- package/styles/rich-text-editor/bootstrap5.css +31 -7
- package/styles/rich-text-editor/fabric-dark.css +2 -2
- package/styles/rich-text-editor/fabric.css +2 -2
- package/styles/rich-text-editor/fluent-dark.css +3001 -0
- package/styles/rich-text-editor/fluent-dark.scss +4 -0
- package/styles/rich-text-editor/fluent.css +3001 -0
- package/styles/rich-text-editor/fluent.scss +4 -0
- package/styles/rich-text-editor/highcontrast-light.css +2 -2
- package/styles/rich-text-editor/highcontrast.css +2 -2
- package/styles/rich-text-editor/icons/_fluent-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_fluent.scss +74 -74
- package/styles/rich-text-editor/icons/_tailwind.scss +73 -74
- package/styles/rich-text-editor/material-dark.css +2 -2
- package/styles/rich-text-editor/material.css +2 -2
- package/styles/rich-text-editor/tailwind-dark.css +104 -85
- package/styles/rich-text-editor/tailwind.css +105 -86
- package/styles/tailwind-dark.css +104 -85
- package/styles/tailwind.css +105 -86
package/CHANGELOG.md
CHANGED
|
@@ -6,81 +6,23 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
-
- `#
|
|
9
|
+
- `#F173415` - Now, the input element can be inserted in the Rich Text Editor using the `executeCommand` public method.
|
|
10
10
|
|
|
11
|
-
- `#
|
|
11
|
+
- `#I372932` - Now, copying and pasting the content with `contenteditable` set to false content doesn't add any unwanted `br` tag.
|
|
12
12
|
|
|
13
|
-
- `#
|
|
13
|
+
- `#I370707` - Now, the font size is updated properly when removing the bullet list using the backspace key.
|
|
14
14
|
|
|
15
|
-
- `#
|
|
15
|
+
- `#I370210` - Now, the image will be loaded properly when pasting the contents from MS Word.
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
## 19.4.54 (2022-03-01)
|
|
20
|
-
|
|
21
|
-
### RichTextEditor
|
|
22
|
-
|
|
23
|
-
#### Bug Fixes
|
|
24
|
-
|
|
25
|
-
- `#I366312` - Now, pressing the `Enter` key twice works properly after the `Shift + Enter` action in the `Firefox` browser.
|
|
26
|
-
|
|
27
|
-
- `#I365989` - Now, the pasted content can be edited properly in the Rich Text Editor when the `enterKey` is configured as `BR`.
|
|
28
|
-
|
|
29
|
-
- `#I364798` - Now, the toolbar will be disabled when the pasted image in the Rich Text Editor is begin uploaded.
|
|
30
|
-
|
|
31
|
-
- `#I365104` - Now, the clearing the list content in the Rich Text Editor works properly by removing all the list elements.
|
|
32
|
-
|
|
33
|
-
## 19.4.53 (2022-02-22)
|
|
17
|
+
## 20.1.47 (2022-04-04)
|
|
34
18
|
|
|
35
19
|
### RichTextEditor
|
|
36
20
|
|
|
37
21
|
#### Bug Fixes
|
|
38
22
|
|
|
39
|
-
- `#
|
|
40
|
-
|
|
41
|
-
## 19.4.52 (2022-02-15)
|
|
42
|
-
|
|
43
|
-
### RichTextEditor
|
|
44
|
-
|
|
45
|
-
#### Bug Fixes
|
|
46
|
-
|
|
47
|
-
- `#F171387` - Now, changing the `width` API dynamically when the toolbar is in inline mode works properly.
|
|
48
|
-
|
|
49
|
-
## 19.4.50 (2022-02-08)
|
|
50
|
-
|
|
51
|
-
### RichTextEditor
|
|
52
|
-
|
|
53
|
-
#### Bug Fixes
|
|
54
|
-
|
|
55
|
-
- `#F171387` - Now, pressing the backspace key when the cursor is at the start of the last list element works properly.
|
|
56
|
-
|
|
57
|
-
- `#I361186` - Now, cursor focus in the Rich Text Editor works properly when continuously pressing `enter` and `shift + enter` keys.
|
|
58
|
-
|
|
59
|
-
- `#F171703` - Now, paste the content in the Rich Text Editor after pressing the `shift + enter` key works properly.
|
|
60
|
-
|
|
61
|
-
## 19.4.47 (2022-01-25)
|
|
62
|
-
|
|
63
|
-
### RichTextEditor
|
|
64
|
-
|
|
65
|
-
#### Bug Fixes
|
|
66
|
-
|
|
67
|
-
- `#I361186` - The issue with "Strange behavior occurred in the Rich Text Editor component, when repeatedly pressing the `shift + enter` key" has been resolved.
|
|
68
|
-
|
|
69
|
-
## 19.4.40 (2021-12-28)
|
|
70
|
-
|
|
71
|
-
### RichTextEditor
|
|
72
|
-
|
|
73
|
-
#### Bug Fixes
|
|
74
|
-
|
|
75
|
-
- `#I347512` - The issue with "ColorPicker of Table quick toolbar got reset whenever quick toolbar rendered" has been resolved.
|
|
76
|
-
|
|
77
|
-
- `#I358633` - Now, pasting alpha list type contents from the MS Word into the Rich Text Editor works properly.
|
|
78
|
-
|
|
79
|
-
- `#I359685` - Now, enter key action works properly when an image is added in the list and pressed enter.
|
|
80
|
-
|
|
81
|
-
- `#I359685` - Now, pressing the space key after `11.` works properly and doesn't create a list.
|
|
23
|
+
- `#I369216` - Now, pasting the note pad with link contents is pasted properly without moving the cursor to the previous line.
|
|
82
24
|
|
|
83
|
-
- `#
|
|
25
|
+
- `#F171703` - Now, pasting the content in the Rich Text Editor after pressing the `shift + enter` key works properly.
|
|
84
26
|
|
|
85
27
|
## 19.4.38 (2021-12-17)
|
|
86
28
|
|