@syncfusion/ej2-richtexteditor 20.4.40 → 20.4.43
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 +16 -0
- package/README.md +1 -1
- 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 +61 -43
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +61 -43
- 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/plugin/inserthtml.js +48 -38
- package/src/editor-manager/plugin/toolbar-status.js +3 -2
- package/src/rich-text-editor/actions/html-editor.js +4 -2
- package/src/rich-text-editor/base/rich-text-editor-model.d.ts +2 -2
- package/src/rich-text-editor/base/rich-text-editor.d.ts +2 -2
- package/src/rich-text-editor/renderer/image-module.js +4 -0
- package/src/rich-text-editor/renderer/table-module.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,22 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#I423129` - Now, the buttons for bold, italic, underline, and strikethrough are highlighted properly.
|
|
10
|
+
|
|
11
|
+
- `#I426859` - Now, when the Rich Text Editor is included inside a Dashboard panel, no exception is raised.
|
|
12
|
+
|
|
13
|
+
- `#I425631` - Now, with the `enterKey` configuration set to `BR` the script error is no longer raised while modifying values in the editor.
|
|
14
|
+
|
|
15
|
+
- `#I420264` - Now, the Code Format feature will now work correctly when you copy and paste the code into the Editor with the paste clean up settings enabled.
|
|
16
|
+
|
|
17
|
+
- `#I424567` - Now, the quick table toolbar is not misplaced outside the Rich Text Editor when enabling IFrame.
|
|
18
|
+
|
|
19
|
+
## 20.4.40 (2022-12-28)
|
|
20
|
+
|
|
21
|
+
### RichTextEditor
|
|
22
|
+
|
|
23
|
+
#### Bug Fixes
|
|
24
|
+
|
|
9
25
|
- `#I425639`, `#I425631` - Now, when editing the values in the Rich Text Editor, the script error is not thrown.
|
|
10
26
|
|
|
11
27
|
- `#I423129` - The toolbar bottom border now displays correctly while maximizing and minimizing the Rich Text Editor.
|
package/README.md
CHANGED
|
@@ -73,4 +73,4 @@ Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-contr
|
|
|
73
73
|
|
|
74
74
|
See [LICENSE FILE](https://github.com/syncfusion/ej2/blob/master/license?utm_source=npm&utm_medium=listing&utm_campaign=javascript-rich-text-editor-npm) for more info.
|
|
75
75
|
|
|
76
|
-
© Copyright
|
|
76
|
+
© Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|