@syncfusion/ej2-richtexteditor 19.3.43 → 19.3.47-6125
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 +999 -955
- package/README.md +67 -67
- package/dist/ej2-richtexteditor.umd.min.js +1 -10
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +323 -204
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +428 -313
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/helpers/e2e/index.js +3 -3
- package/license +9 -9
- package/package.json +55 -74
- package/src/common/constant.d.ts +8 -8
- package/src/common/constant.js +8 -8
- package/src/common/interface.d.ts +7 -7
- package/src/editor-manager/base/classes.d.ts +1 -1
- package/src/editor-manager/base/classes.js +1 -1
- package/src/editor-manager/base/editor-manager.d.ts +3 -3
- package/src/editor-manager/base/editor-manager.js +4 -4
- package/src/editor-manager/base/interface.d.ts +7 -7
- package/src/editor-manager/base/types.d.ts +1 -1
- package/src/editor-manager/plugin/alignments.d.ts +2 -2
- package/src/editor-manager/plugin/alignments.js +2 -2
- package/src/editor-manager/plugin/clearformat-exec.d.ts +2 -2
- package/src/editor-manager/plugin/clearformat-exec.js +2 -2
- package/src/editor-manager/plugin/clearformat.d.ts +2 -1
- package/src/editor-manager/plugin/clearformat.js +2 -1
- package/src/editor-manager/plugin/dom-node.d.ts +34 -34
- package/src/editor-manager/plugin/dom-node.js +34 -34
- package/src/editor-manager/plugin/formats.d.ts +2 -2
- package/src/editor-manager/plugin/formats.js +2 -2
- package/src/editor-manager/plugin/image.d.ts +3 -3
- package/src/editor-manager/plugin/image.js +15 -20
- package/src/editor-manager/plugin/indents.d.ts +2 -2
- package/src/editor-manager/plugin/indents.js +2 -2
- package/src/editor-manager/plugin/insert-methods.d.ts +4 -4
- package/src/editor-manager/plugin/insert-methods.js +4 -4
- package/src/editor-manager/plugin/insert-text.d.ts +2 -2
- package/src/editor-manager/plugin/insert-text.js +2 -2
- package/src/editor-manager/plugin/inserthtml-exec.d.ts +2 -2
- package/src/editor-manager/plugin/inserthtml-exec.js +2 -2
- package/src/editor-manager/plugin/inserthtml.d.ts +2 -2
- package/src/editor-manager/plugin/inserthtml.js +18 -8
- package/src/editor-manager/plugin/isformatted.d.ts +8 -8
- package/src/editor-manager/plugin/isformatted.js +8 -8
- package/src/editor-manager/plugin/link.d.ts +2 -2
- package/src/editor-manager/plugin/link.js +2 -2
- package/src/editor-manager/plugin/lists.d.ts +2 -2
- package/src/editor-manager/plugin/lists.js +2 -3
- package/src/editor-manager/plugin/ms-word-clean-up.d.ts +1 -1
- package/src/editor-manager/plugin/ms-word-clean-up.js +2 -1
- package/src/editor-manager/plugin/nodecutter.d.ts +6 -6
- package/src/editor-manager/plugin/nodecutter.js +6 -6
- package/src/editor-manager/plugin/selection-commands.d.ts +2 -1
- package/src/editor-manager/plugin/selection-commands.js +53 -3
- package/src/editor-manager/plugin/selection-exec.d.ts +2 -2
- package/src/editor-manager/plugin/selection-exec.js +2 -2
- package/src/editor-manager/plugin/table.d.ts +2 -2
- package/src/editor-manager/plugin/table.js +5 -5
- package/src/editor-manager/plugin/toolbar-status.d.ts +2 -2
- package/src/editor-manager/plugin/toolbar-status.js +5 -5
- package/src/editor-manager/plugin/undo.d.ts +6 -6
- package/src/editor-manager/plugin/undo.js +6 -6
- package/src/global.d.ts +1 -0
- package/src/markdown-parser/base/interface.d.ts +10 -10
- package/src/markdown-parser/base/markdown-parser.d.ts +3 -3
- package/src/markdown-parser/base/markdown-parser.js +3 -3
- package/src/markdown-parser/base/types.d.ts +1 -1
- package/src/markdown-parser/plugin/clearformat.d.ts +2 -2
- package/src/markdown-parser/plugin/clearformat.js +2 -2
- package/src/markdown-parser/plugin/formats.d.ts +2 -2
- package/src/markdown-parser/plugin/formats.js +2 -2
- package/src/markdown-parser/plugin/link.d.ts +2 -2
- package/src/markdown-parser/plugin/link.js +2 -2
- package/src/markdown-parser/plugin/markdown-selection.d.ts +14 -14
- package/src/markdown-parser/plugin/markdown-selection.js +14 -14
- package/src/markdown-parser/plugin/md-selection-formats.d.ts +1 -1
- package/src/markdown-parser/plugin/md-selection-formats.js +1 -1
- package/src/markdown-parser/plugin/table.d.ts +3 -3
- package/src/markdown-parser/plugin/table.js +3 -3
- package/src/markdown-parser/plugin/undo.d.ts +6 -6
- package/src/markdown-parser/plugin/undo.js +6 -6
- package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +9 -9
- package/src/rich-text-editor/actions/base-quick-toolbar.js +9 -9
- package/src/rich-text-editor/actions/base-toolbar.d.ts +3 -3
- package/src/rich-text-editor/actions/base-toolbar.js +3 -3
- package/src/rich-text-editor/actions/color-picker.d.ts +2 -2
- package/src/rich-text-editor/actions/color-picker.js +2 -2
- package/src/rich-text-editor/actions/count.d.ts +3 -3
- package/src/rich-text-editor/actions/count.js +3 -3
- package/src/rich-text-editor/actions/dropdown-buttons.d.ts +2 -2
- package/src/rich-text-editor/actions/dropdown-buttons.js +2 -2
- package/src/rich-text-editor/actions/enter-key.js +5 -16
- package/src/rich-text-editor/actions/full-screen.d.ts +3 -3
- package/src/rich-text-editor/actions/full-screen.js +3 -3
- package/src/rich-text-editor/actions/html-editor.d.ts +4 -3
- package/src/rich-text-editor/actions/html-editor.js +34 -4
- package/src/rich-text-editor/actions/keyboard-model.d.ts +16 -16
- package/src/rich-text-editor/actions/keyboard.d.ts +1 -1
- package/src/rich-text-editor/actions/keyboard.js +20 -20
- package/src/rich-text-editor/actions/markdown-editor.d.ts +2 -2
- package/src/rich-text-editor/actions/markdown-editor.js +2 -2
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -1
- package/src/rich-text-editor/actions/paste-clean-up.js +1 -1
- package/src/rich-text-editor/actions/quick-toolbar.d.ts +9 -9
- package/src/rich-text-editor/actions/quick-toolbar.js +14 -11
- package/src/rich-text-editor/actions/toolbar.d.ts +13 -13
- package/src/rich-text-editor/actions/toolbar.js +13 -13
- package/src/rich-text-editor/actions/xhtml-validation.d.ts +2 -1
- package/src/rich-text-editor/actions/xhtml-validation.js +6 -4
- package/src/rich-text-editor/base/classes.d.ts +107 -107
- package/src/rich-text-editor/base/classes.js +107 -107
- package/src/rich-text-editor/base/constant.d.ts +120 -120
- package/src/rich-text-editor/base/constant.js +120 -120
- package/src/rich-text-editor/base/enum.d.ts +1 -1
- package/src/rich-text-editor/base/enum.js +1 -1
- package/src/rich-text-editor/base/interface.d.ts +45 -45
- package/src/rich-text-editor/base/interface.js +1 -1
- package/src/rich-text-editor/base/rich-text-editor-model.d.ts +851 -851
- package/src/rich-text-editor/base/rich-text-editor.d.ts +53 -53
- package/src/rich-text-editor/base/rich-text-editor.js +65 -66
- package/src/rich-text-editor/base/util.d.ts +2 -1
- package/src/rich-text-editor/base/util.js +2 -1
- package/src/rich-text-editor/formatter/formatter.d.ts +8 -8
- package/src/rich-text-editor/formatter/formatter.js +8 -8
- package/src/rich-text-editor/formatter/html-formatter.d.ts +2 -2
- package/src/rich-text-editor/formatter/html-formatter.js +15 -15
- package/src/rich-text-editor/formatter/markdown-formatter.d.ts +2 -2
- package/src/rich-text-editor/formatter/markdown-formatter.js +15 -15
- package/src/rich-text-editor/models/iframe-settings-model.d.ts +26 -26
- package/src/rich-text-editor/models/iframe-settings.js +19 -19
- package/src/rich-text-editor/models/inline-mode-model.d.ts +11 -11
- package/src/rich-text-editor/models/inline-mode.js +19 -19
- package/src/rich-text-editor/models/toolbar-settings-model.d.ts +439 -439
- package/src/rich-text-editor/models/toolbar-settings.d.ts +1 -1
- package/src/rich-text-editor/models/toolbar-settings.js +19 -19
- package/src/rich-text-editor/renderer/content-renderer.d.ts +6 -6
- package/src/rich-text-editor/renderer/content-renderer.js +6 -6
- package/src/rich-text-editor/renderer/dialog-renderer.d.ts +2 -2
- package/src/rich-text-editor/renderer/dialog-renderer.js +2 -2
- package/src/rich-text-editor/renderer/iframe-content-renderer.d.ts +4 -4
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +17 -17
- package/src/rich-text-editor/renderer/image-module.d.ts +3 -1
- package/src/rich-text-editor/renderer/image-module.js +40 -13
- package/src/rich-text-editor/renderer/link-module.d.ts +1 -1
- package/src/rich-text-editor/renderer/link-module.js +6 -4
- package/src/rich-text-editor/renderer/markdown-renderer.d.ts +6 -6
- package/src/rich-text-editor/renderer/markdown-renderer.js +6 -6
- package/src/rich-text-editor/renderer/popup-renderer.d.ts +5 -5
- package/src/rich-text-editor/renderer/popup-renderer.js +5 -5
- package/src/rich-text-editor/renderer/render.d.ts +2 -2
- package/src/rich-text-editor/renderer/render.js +2 -2
- package/src/rich-text-editor/renderer/table-module.d.ts +1 -1
- package/src/rich-text-editor/renderer/table-module.js +11 -4
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +9 -10
- package/src/rich-text-editor/renderer/toolbar-renderer.js +10 -10
- package/src/rich-text-editor/renderer/view-source.d.ts +6 -6
- package/src/rich-text-editor/renderer/view-source.js +6 -6
- package/src/rich-text-editor/services/renderer-factory.d.ts +3 -3
- package/src/rich-text-editor/services/renderer-factory.js +3 -3
- package/src/rich-text-editor/services/service-locator.d.ts +3 -3
- package/src/rich-text-editor/services/service-locator.js +3 -3
- package/src/selection/selection.d.ts +22 -22
- package/src/selection/selection.js +22 -22
- package/styles/_all.scss +2 -2
- package/styles/bootstrap-dark.css +1 -1
- package/styles/bootstrap.css +1 -1
- package/styles/bootstrap4.css +1 -1
- package/styles/bootstrap5-dark.css +1 -1
- package/styles/bootstrap5.css +1 -1
- package/styles/fabric-dark.css +1 -1
- package/styles/fabric.css +1 -1
- package/styles/highcontrast-light.css +1 -1
- package/styles/highcontrast.css +1 -1
- package/styles/material-dark.css +1 -1
- package/styles/material.css +1 -1
- package/styles/rich-text-editor/_all.scss +2 -2
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +187 -187
- package/styles/rich-text-editor/_bootstrap-definition.scss +244 -244
- package/styles/rich-text-editor/_bootstrap4-definition.scss +370 -370
- package/styles/rich-text-editor/_bootstrap5-definition.scss +168 -168
- package/styles/rich-text-editor/_fabric-dark-definition.scss +168 -168
- package/styles/rich-text-editor/_fabric-definition.scss +167 -167
- package/styles/rich-text-editor/_highcontrast-definition.scss +167 -167
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +167 -167
- package/styles/rich-text-editor/_layout.scss +1635 -1635
- package/styles/rich-text-editor/_material-dark-definition.scss +172 -172
- package/styles/rich-text-editor/_material-definition.scss +169 -169
- package/styles/rich-text-editor/_tailwind-definition.scss +167 -167
- package/styles/rich-text-editor/_theme.scss +626 -626
- package/styles/rich-text-editor/bootstrap-dark.css +1 -1
- package/styles/rich-text-editor/bootstrap.css +1 -1
- package/styles/rich-text-editor/bootstrap4.css +1 -1
- package/styles/rich-text-editor/bootstrap5-dark.css +1 -1
- package/styles/rich-text-editor/bootstrap5.css +1 -1
- package/styles/rich-text-editor/fabric-dark.css +1 -1
- package/styles/rich-text-editor/fabric.css +1 -1
- package/styles/rich-text-editor/highcontrast-light.css +1 -1
- package/styles/rich-text-editor/highcontrast.css +1 -1
- package/styles/rich-text-editor/icons/_bootstrap-dark.scss +304 -304
- package/styles/rich-text-editor/icons/_bootstrap.scss +304 -304
- package/styles/rich-text-editor/icons/_bootstrap4.scss +304 -304
- package/styles/rich-text-editor/icons/_bootstrap5.scss +303 -303
- package/styles/rich-text-editor/icons/_fabric-dark.scss +304 -304
- package/styles/rich-text-editor/icons/_fabric.scss +304 -304
- package/styles/rich-text-editor/icons/_highcontrast-light.scss +304 -304
- package/styles/rich-text-editor/icons/_highcontrast.scss +304 -304
- package/styles/rich-text-editor/icons/_material-dark.scss +304 -304
- package/styles/rich-text-editor/icons/_material.scss +304 -304
- package/styles/rich-text-editor/icons/_tailwind.scss +304 -304
- package/styles/rich-text-editor/material-dark.css +1 -1
- package/styles/rich-text-editor/material.css +1 -1
- package/styles/rich-text-editor/tailwind-dark.css +1 -1
- package/styles/rich-text-editor/tailwind.css +1 -1
- package/styles/tailwind-dark.css +1 -1
- package/styles/tailwind.css +1 -1
- package/.eslintrc.json +0 -244
- package/dist/global/ej2-richtexteditor.min.js +0 -11
- package/dist/global/ej2-richtexteditor.min.js.map +0 -1
- package/dist/global/index.d.ts +0 -14
- package/tslint.json +0 -111
|
@@ -35,7 +35,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
35
35
|
* @param {Document} docElement - specifies the get function
|
|
36
36
|
* @returns {void}
|
|
37
37
|
* @hidden
|
|
38
|
-
|
|
38
|
+
* @deprecated
|
|
39
39
|
*/
|
|
40
40
|
NodeSelection.prototype.get = function (docElement) {
|
|
41
41
|
return docElement.defaultView.getSelection();
|
|
@@ -47,7 +47,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
47
47
|
* @param {Document} docElement - specifies the document.
|
|
48
48
|
* @returns {void}
|
|
49
49
|
* @hidden
|
|
50
|
-
|
|
50
|
+
* @deprecated
|
|
51
51
|
*/
|
|
52
52
|
NodeSelection.prototype.save = function (range, docElement) {
|
|
53
53
|
range = (range) ? range.cloneRange() : this.getRange(docElement);
|
|
@@ -59,7 +59,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
59
59
|
* @param {Node} node - specifies the node value.
|
|
60
60
|
* @returns {void}
|
|
61
61
|
* @hidden
|
|
62
|
-
|
|
62
|
+
* @deprecated
|
|
63
63
|
*/
|
|
64
64
|
NodeSelection.prototype.getIndex = function (node) {
|
|
65
65
|
var index;
|
|
@@ -109,7 +109,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
109
109
|
* @param {Range} range -specifies the range.
|
|
110
110
|
* @returns {void}
|
|
111
111
|
* @hidden
|
|
112
|
-
|
|
112
|
+
* @deprecated
|
|
113
113
|
*/
|
|
114
114
|
NodeSelection.prototype.getNodeCollection = function (range) {
|
|
115
115
|
var startNode = range.startContainer.childNodes[range.startOffset]
|
|
@@ -137,7 +137,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
137
137
|
* @param {Range} range - specifies the range value.
|
|
138
138
|
* @returns {void}
|
|
139
139
|
* @hidden
|
|
140
|
-
|
|
140
|
+
* @deprecated
|
|
141
141
|
*/
|
|
142
142
|
NodeSelection.prototype.getParentNodeCollection = function (range) {
|
|
143
143
|
return this.getParentNodes(this.getNodeCollection(range), range);
|
|
@@ -149,7 +149,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
149
149
|
* @param {Range} range - specifies the range values.
|
|
150
150
|
* @returns {void}
|
|
151
151
|
* @hidden
|
|
152
|
-
|
|
152
|
+
* @deprecated
|
|
153
153
|
*/
|
|
154
154
|
NodeSelection.prototype.getParentNodes = function (nodeCollection, range) {
|
|
155
155
|
nodeCollection = nodeCollection.reverse();
|
|
@@ -173,7 +173,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
173
173
|
* @param {Range} range - specifies the range value.
|
|
174
174
|
* @returns {void}
|
|
175
175
|
* @hidden
|
|
176
|
-
|
|
176
|
+
* @deprecated
|
|
177
177
|
*/
|
|
178
178
|
NodeSelection.prototype.getSelectionNodeCollection = function (range) {
|
|
179
179
|
return this.getSelectionNodes(this.getNodeCollection(range));
|
|
@@ -184,7 +184,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
184
184
|
* @param {Range} range - specifies the range value.
|
|
185
185
|
* @returns {void}
|
|
186
186
|
* @hidden
|
|
187
|
-
|
|
187
|
+
* @deprecated
|
|
188
188
|
*/
|
|
189
189
|
NodeSelection.prototype.getSelectionNodeCollectionBr = function (range) {
|
|
190
190
|
return this.getSelectionNodesBr(this.getNodeCollection(range));
|
|
@@ -195,7 +195,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
195
195
|
* @param {Node[]} nodeCollection - specifies the collection of nodes.
|
|
196
196
|
* @returns {void}
|
|
197
197
|
* @hidden
|
|
198
|
-
|
|
198
|
+
* @deprecated
|
|
199
199
|
*/
|
|
200
200
|
NodeSelection.prototype.getSelectionNodes = function (nodeCollection) {
|
|
201
201
|
nodeCollection = nodeCollection.reverse();
|
|
@@ -215,7 +215,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
215
215
|
* @param {Node[]} nodeCollection - specifies the collection of nodes.
|
|
216
216
|
* @returns {void}
|
|
217
217
|
* @hidden
|
|
218
|
-
|
|
218
|
+
* @deprecated
|
|
219
219
|
*/
|
|
220
220
|
NodeSelection.prototype.getSelectionNodesBr = function (nodeCollection) {
|
|
221
221
|
nodeCollection = nodeCollection.reverse();
|
|
@@ -236,7 +236,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
236
236
|
* @param {Range} range - specifies the range value.
|
|
237
237
|
* @returns {void}
|
|
238
238
|
* @hidden
|
|
239
|
-
|
|
239
|
+
* @deprecated
|
|
240
240
|
*/
|
|
241
241
|
NodeSelection.prototype.getInsertNodeCollection = function (range) {
|
|
242
242
|
return this.getInsertNodes(this.getNodeCollection(range));
|
|
@@ -247,7 +247,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
247
247
|
* @param {Node[]} nodeCollection - specifies the collection of nodes.
|
|
248
248
|
* @returns {void}
|
|
249
249
|
* @hidden
|
|
250
|
-
|
|
250
|
+
* @deprecated
|
|
251
251
|
*/
|
|
252
252
|
NodeSelection.prototype.getInsertNodes = function (nodeCollection) {
|
|
253
253
|
nodeCollection = nodeCollection.reverse();
|
|
@@ -270,7 +270,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
270
270
|
* @param {Document} root - specifies the root document.
|
|
271
271
|
* @returns {void}
|
|
272
272
|
* @hidden
|
|
273
|
-
|
|
273
|
+
* @deprecated
|
|
274
274
|
*/
|
|
275
275
|
NodeSelection.prototype.getNodeArray = function (node, isStart, root) {
|
|
276
276
|
var array = [];
|
|
@@ -304,7 +304,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
304
304
|
*
|
|
305
305
|
* @returns {void}
|
|
306
306
|
* @hidden
|
|
307
|
-
|
|
307
|
+
* @deprecated
|
|
308
308
|
*/
|
|
309
309
|
NodeSelection.prototype.restore = function () {
|
|
310
310
|
var range = this.range.cloneRange();
|
|
@@ -324,7 +324,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
324
324
|
* @param {Range} range - specifies the range.
|
|
325
325
|
* @returns {void}
|
|
326
326
|
* @hidden
|
|
327
|
-
|
|
327
|
+
* @deprecated
|
|
328
328
|
*/
|
|
329
329
|
NodeSelection.prototype.setRange = function (docElement, range) {
|
|
330
330
|
var selection = this.get(docElement);
|
|
@@ -341,7 +341,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
341
341
|
* @param {number} endIndex - specifies the end index.
|
|
342
342
|
* @returns {void}
|
|
343
343
|
* @hidden
|
|
344
|
-
|
|
344
|
+
* @deprecated
|
|
345
345
|
*/
|
|
346
346
|
NodeSelection.prototype.setSelectionText = function (docElement, startNode, endNode, startIndex, endIndex) {
|
|
347
347
|
var range = docElement.createRange();
|
|
@@ -356,7 +356,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
356
356
|
* @param {Node} element - specifies the node.
|
|
357
357
|
* @returns {void}
|
|
358
358
|
* @hidden
|
|
359
|
-
|
|
359
|
+
* @deprecated
|
|
360
360
|
*/
|
|
361
361
|
NodeSelection.prototype.setSelectionContents = function (docElement, element) {
|
|
362
362
|
var range = docElement.createRange();
|
|
@@ -370,7 +370,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
370
370
|
* @param {Node} element - specifies the node.
|
|
371
371
|
* @returns {void}
|
|
372
372
|
* @hidden
|
|
373
|
-
|
|
373
|
+
* @deprecated
|
|
374
374
|
*/
|
|
375
375
|
NodeSelection.prototype.setSelectionNode = function (docElement, element) {
|
|
376
376
|
var range = docElement.createRange();
|
|
@@ -383,7 +383,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
383
383
|
* @param {Document} docElement - specifies the document.
|
|
384
384
|
* @returns {void}
|
|
385
385
|
* @hidden
|
|
386
|
-
|
|
386
|
+
* @deprecated
|
|
387
387
|
*/
|
|
388
388
|
NodeSelection.prototype.getSelectedNodes = function (docElement) {
|
|
389
389
|
return this.getNodeCollection(this.getRange(docElement));
|
|
@@ -394,7 +394,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
394
394
|
* @param {Document} docElement - specifies the document.
|
|
395
395
|
* @returns {void}
|
|
396
396
|
* @hidden
|
|
397
|
-
|
|
397
|
+
* @deprecated
|
|
398
398
|
*/
|
|
399
399
|
NodeSelection.prototype.Clear = function (docElement) {
|
|
400
400
|
this.get(docElement).removeAllRanges();
|
|
@@ -407,7 +407,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
407
407
|
* @param {Range} range - specifies the range.
|
|
408
408
|
* @returns {void}
|
|
409
409
|
* @hidden
|
|
410
|
-
|
|
410
|
+
* @deprecated
|
|
411
411
|
*/
|
|
412
412
|
NodeSelection.prototype.insertParentNode = function (docElement, newNode, range) {
|
|
413
413
|
range.surroundContents(newNode);
|
|
@@ -421,7 +421,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
421
421
|
* @param {number} point - specifies the point.
|
|
422
422
|
* @returns {void}
|
|
423
423
|
* @hidden
|
|
424
|
-
|
|
424
|
+
* @deprecated
|
|
425
425
|
*/
|
|
426
426
|
NodeSelection.prototype.setCursorPoint = function (docElement, element, point) {
|
|
427
427
|
var range = docElement.createRange();
|
package/styles/_all.scss
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@import 'rich-text-editor/all.scss';
|
|
2
|
-
|
|
1
|
+
@import 'rich-text-editor/all.scss';
|
|
2
|
+
|
package/styles/bootstrap.css
CHANGED
package/styles/bootstrap4.css
CHANGED
package/styles/bootstrap5.css
CHANGED
package/styles/fabric-dark.css
CHANGED
package/styles/fabric.css
CHANGED
package/styles/highcontrast.css
CHANGED
|
@@ -2880,7 +2880,7 @@ span.e-rte-imageboxmark {
|
|
|
2880
2880
|
border: 1px solid #ffd939;
|
|
2881
2881
|
}
|
|
2882
2882
|
|
|
2883
|
-
.e-rte-table.e-alternate-border tbody tr:nth-child(2n) {
|
|
2883
|
+
.e-rte-table.e-alternate-border tbody tr:nth-child(2n+0) {
|
|
2884
2884
|
background-color: #f5f5f5;
|
|
2885
2885
|
color: #000;
|
|
2886
2886
|
}
|
package/styles/material-dark.css
CHANGED
package/styles/material.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@import 'layout.scss';
|
|
2
|
-
@import 'theme.scss';
|
|
1
|
+
@import 'layout.scss';
|
|
2
|
+
@import 'theme.scss';
|