@syncfusion/ej2-richtexteditor 19.3.47 → 19.3.53-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 +1019 -997
- 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 +167 -130
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +276 -239
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/helpers/e2e/index.js +3 -3
- package/license +9 -9
- package/package.json +75 -75
- 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 +3 -3
- 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 +1 -1
- package/src/editor-manager/plugin/clearformat.js +1 -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 +3 -3
- 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 +13 -3
- 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 -2
- package/src/editor-manager/plugin/ms-word-clean-up.d.ts +1 -1
- package/src/editor-manager/plugin/ms-word-clean-up.js +1 -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 +1 -1
- package/src/editor-manager/plugin/selection-commands.js +1 -1
- 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 +2 -2
- package/src/editor-manager/plugin/toolbar-status.d.ts +2 -2
- package/src/editor-manager/plugin/toolbar-status.js +2 -2
- package/src/editor-manager/plugin/undo.d.ts +6 -6
- package/src/editor-manager/plugin/undo.js +6 -6
- 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 +12 -2
- package/src/rich-text-editor/actions/enter-key.js +1 -0
- 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 +3 -3
- package/src/rich-text-editor/actions/html-editor.js +3 -3
- 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 +10 -9
- package/src/rich-text-editor/actions/quick-toolbar.js +24 -9
- 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 +1 -1
- package/src/rich-text-editor/actions/xhtml-validation.js +1 -1
- 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 +47 -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 +1 -1
- package/src/rich-text-editor/base/util.js +1 -1
- package/src/rich-text-editor/formatter/formatter.d.ts +8 -8
- package/src/rich-text-editor/formatter/formatter.js +11 -11
- 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 +1 -1
- package/src/rich-text-editor/renderer/image-module.js +1 -1
- package/src/rich-text-editor/renderer/link-module.d.ts +1 -1
- package/src/rich-text-editor/renderer/link-module.js +1 -1
- 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 +1 -1
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +9 -9
- package/src/rich-text-editor/renderer/toolbar-renderer.js +12 -11
- 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 +24 -23
- package/styles/_all.scss +2 -2
- package/styles/bootstrap-dark.css +4 -0
- package/styles/bootstrap.css +4 -0
- package/styles/bootstrap4.css +4 -0
- package/styles/bootstrap5-dark.css +4 -0
- package/styles/bootstrap5.css +4 -0
- package/styles/fabric-dark.css +4 -0
- package/styles/fabric.css +4 -0
- package/styles/highcontrast-light.css +4 -0
- package/styles/highcontrast.css +4 -0
- package/styles/material-dark.css +4 -0
- package/styles/material.css +4 -0
- 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 +1639 -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 +4 -0
- package/styles/rich-text-editor/bootstrap.css +4 -0
- package/styles/rich-text-editor/bootstrap4.css +4 -0
- package/styles/rich-text-editor/bootstrap5-dark.css +4 -0
- package/styles/rich-text-editor/bootstrap5.css +4 -0
- package/styles/rich-text-editor/fabric-dark.css +4 -0
- package/styles/rich-text-editor/fabric.css +4 -0
- package/styles/rich-text-editor/highcontrast-light.css +4 -0
- package/styles/rich-text-editor/highcontrast.css +4 -0
- 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 +4 -0
- package/styles/rich-text-editor/material.css +4 -0
- package/styles/rich-text-editor/tailwind-dark.css +4 -0
- package/styles/rich-text-editor/tailwind.css +4 -0
- package/styles/tailwind-dark.css +4 -0
- package/styles/tailwind.css +4 -0
- 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,14 +109,15 @@ 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]
|
|
116
116
|
|| range.startContainer;
|
|
117
117
|
var endNode = range.endContainer.childNodes[(range.endOffset > 0) ? (range.endOffset - 1) : range.endOffset]
|
|
118
118
|
|| range.endContainer;
|
|
119
|
-
if (startNode === endNode && startNode.childNodes.
|
|
119
|
+
if ((startNode === endNode || (startNode.nodeName === 'BR' && startNode === range.endContainer.childNodes[range.endOffset])) &&
|
|
120
|
+
startNode.childNodes.length === 0) {
|
|
120
121
|
return [startNode];
|
|
121
122
|
}
|
|
122
123
|
if (range.startOffset === range.endOffset && range.startOffset !== 0 && range.startContainer.nodeName === 'PRE') {
|
|
@@ -137,7 +138,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
137
138
|
* @param {Range} range - specifies the range value.
|
|
138
139
|
* @returns {void}
|
|
139
140
|
* @hidden
|
|
140
|
-
|
|
141
|
+
* @deprecated
|
|
141
142
|
*/
|
|
142
143
|
NodeSelection.prototype.getParentNodeCollection = function (range) {
|
|
143
144
|
return this.getParentNodes(this.getNodeCollection(range), range);
|
|
@@ -149,7 +150,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
149
150
|
* @param {Range} range - specifies the range values.
|
|
150
151
|
* @returns {void}
|
|
151
152
|
* @hidden
|
|
152
|
-
|
|
153
|
+
* @deprecated
|
|
153
154
|
*/
|
|
154
155
|
NodeSelection.prototype.getParentNodes = function (nodeCollection, range) {
|
|
155
156
|
nodeCollection = nodeCollection.reverse();
|
|
@@ -173,7 +174,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
173
174
|
* @param {Range} range - specifies the range value.
|
|
174
175
|
* @returns {void}
|
|
175
176
|
* @hidden
|
|
176
|
-
|
|
177
|
+
* @deprecated
|
|
177
178
|
*/
|
|
178
179
|
NodeSelection.prototype.getSelectionNodeCollection = function (range) {
|
|
179
180
|
return this.getSelectionNodes(this.getNodeCollection(range));
|
|
@@ -184,7 +185,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
184
185
|
* @param {Range} range - specifies the range value.
|
|
185
186
|
* @returns {void}
|
|
186
187
|
* @hidden
|
|
187
|
-
|
|
188
|
+
* @deprecated
|
|
188
189
|
*/
|
|
189
190
|
NodeSelection.prototype.getSelectionNodeCollectionBr = function (range) {
|
|
190
191
|
return this.getSelectionNodesBr(this.getNodeCollection(range));
|
|
@@ -195,7 +196,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
195
196
|
* @param {Node[]} nodeCollection - specifies the collection of nodes.
|
|
196
197
|
* @returns {void}
|
|
197
198
|
* @hidden
|
|
198
|
-
|
|
199
|
+
* @deprecated
|
|
199
200
|
*/
|
|
200
201
|
NodeSelection.prototype.getSelectionNodes = function (nodeCollection) {
|
|
201
202
|
nodeCollection = nodeCollection.reverse();
|
|
@@ -215,7 +216,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
215
216
|
* @param {Node[]} nodeCollection - specifies the collection of nodes.
|
|
216
217
|
* @returns {void}
|
|
217
218
|
* @hidden
|
|
218
|
-
|
|
219
|
+
* @deprecated
|
|
219
220
|
*/
|
|
220
221
|
NodeSelection.prototype.getSelectionNodesBr = function (nodeCollection) {
|
|
221
222
|
nodeCollection = nodeCollection.reverse();
|
|
@@ -236,7 +237,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
236
237
|
* @param {Range} range - specifies the range value.
|
|
237
238
|
* @returns {void}
|
|
238
239
|
* @hidden
|
|
239
|
-
|
|
240
|
+
* @deprecated
|
|
240
241
|
*/
|
|
241
242
|
NodeSelection.prototype.getInsertNodeCollection = function (range) {
|
|
242
243
|
return this.getInsertNodes(this.getNodeCollection(range));
|
|
@@ -247,7 +248,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
247
248
|
* @param {Node[]} nodeCollection - specifies the collection of nodes.
|
|
248
249
|
* @returns {void}
|
|
249
250
|
* @hidden
|
|
250
|
-
|
|
251
|
+
* @deprecated
|
|
251
252
|
*/
|
|
252
253
|
NodeSelection.prototype.getInsertNodes = function (nodeCollection) {
|
|
253
254
|
nodeCollection = nodeCollection.reverse();
|
|
@@ -270,7 +271,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
270
271
|
* @param {Document} root - specifies the root document.
|
|
271
272
|
* @returns {void}
|
|
272
273
|
* @hidden
|
|
273
|
-
|
|
274
|
+
* @deprecated
|
|
274
275
|
*/
|
|
275
276
|
NodeSelection.prototype.getNodeArray = function (node, isStart, root) {
|
|
276
277
|
var array = [];
|
|
@@ -304,7 +305,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
304
305
|
*
|
|
305
306
|
* @returns {void}
|
|
306
307
|
* @hidden
|
|
307
|
-
|
|
308
|
+
* @deprecated
|
|
308
309
|
*/
|
|
309
310
|
NodeSelection.prototype.restore = function () {
|
|
310
311
|
var range = this.range.cloneRange();
|
|
@@ -324,7 +325,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
324
325
|
* @param {Range} range - specifies the range.
|
|
325
326
|
* @returns {void}
|
|
326
327
|
* @hidden
|
|
327
|
-
|
|
328
|
+
* @deprecated
|
|
328
329
|
*/
|
|
329
330
|
NodeSelection.prototype.setRange = function (docElement, range) {
|
|
330
331
|
var selection = this.get(docElement);
|
|
@@ -341,7 +342,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
341
342
|
* @param {number} endIndex - specifies the end index.
|
|
342
343
|
* @returns {void}
|
|
343
344
|
* @hidden
|
|
344
|
-
|
|
345
|
+
* @deprecated
|
|
345
346
|
*/
|
|
346
347
|
NodeSelection.prototype.setSelectionText = function (docElement, startNode, endNode, startIndex, endIndex) {
|
|
347
348
|
var range = docElement.createRange();
|
|
@@ -356,7 +357,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
356
357
|
* @param {Node} element - specifies the node.
|
|
357
358
|
* @returns {void}
|
|
358
359
|
* @hidden
|
|
359
|
-
|
|
360
|
+
* @deprecated
|
|
360
361
|
*/
|
|
361
362
|
NodeSelection.prototype.setSelectionContents = function (docElement, element) {
|
|
362
363
|
var range = docElement.createRange();
|
|
@@ -370,7 +371,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
370
371
|
* @param {Node} element - specifies the node.
|
|
371
372
|
* @returns {void}
|
|
372
373
|
* @hidden
|
|
373
|
-
|
|
374
|
+
* @deprecated
|
|
374
375
|
*/
|
|
375
376
|
NodeSelection.prototype.setSelectionNode = function (docElement, element) {
|
|
376
377
|
var range = docElement.createRange();
|
|
@@ -383,7 +384,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
383
384
|
* @param {Document} docElement - specifies the document.
|
|
384
385
|
* @returns {void}
|
|
385
386
|
* @hidden
|
|
386
|
-
|
|
387
|
+
* @deprecated
|
|
387
388
|
*/
|
|
388
389
|
NodeSelection.prototype.getSelectedNodes = function (docElement) {
|
|
389
390
|
return this.getNodeCollection(this.getRange(docElement));
|
|
@@ -394,7 +395,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
394
395
|
* @param {Document} docElement - specifies the document.
|
|
395
396
|
* @returns {void}
|
|
396
397
|
* @hidden
|
|
397
|
-
|
|
398
|
+
* @deprecated
|
|
398
399
|
*/
|
|
399
400
|
NodeSelection.prototype.Clear = function (docElement) {
|
|
400
401
|
this.get(docElement).removeAllRanges();
|
|
@@ -407,7 +408,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
407
408
|
* @param {Range} range - specifies the range.
|
|
408
409
|
* @returns {void}
|
|
409
410
|
* @hidden
|
|
410
|
-
|
|
411
|
+
* @deprecated
|
|
411
412
|
*/
|
|
412
413
|
NodeSelection.prototype.insertParentNode = function (docElement, newNode, range) {
|
|
413
414
|
range.surroundContents(newNode);
|
|
@@ -421,7 +422,7 @@ var NodeSelection = /** @class */ (function () {
|
|
|
421
422
|
* @param {number} point - specifies the point.
|
|
422
423
|
* @returns {void}
|
|
423
424
|
* @hidden
|
|
424
|
-
|
|
425
|
+
* @deprecated
|
|
425
426
|
*/
|
|
426
427
|
NodeSelection.prototype.setCursorPoint = function (docElement, element, point) {
|
|
427
428
|
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
|
+
|
|
@@ -1324,6 +1324,10 @@
|
|
|
1324
1324
|
margin-top: 0;
|
|
1325
1325
|
}
|
|
1326
1326
|
|
|
1327
|
+
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1328
|
+
margin-right: 30px;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1327
1331
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
|
|
1328
1332
|
border-bottom: 0 solid transparent;
|
|
1329
1333
|
min-height: initial;
|
package/styles/bootstrap.css
CHANGED
|
@@ -1470,6 +1470,10 @@
|
|
|
1470
1470
|
margin-top: 0;
|
|
1471
1471
|
}
|
|
1472
1472
|
|
|
1473
|
+
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1474
|
+
margin-right: 30px;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1473
1477
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
|
|
1474
1478
|
border-bottom: 0 solid transparent;
|
|
1475
1479
|
min-height: initial;
|
package/styles/bootstrap4.css
CHANGED
|
@@ -1603,6 +1603,10 @@
|
|
|
1603
1603
|
margin-top: 0;
|
|
1604
1604
|
}
|
|
1605
1605
|
|
|
1606
|
+
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1607
|
+
margin-right: 30px;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1606
1610
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
|
|
1607
1611
|
border-bottom: 0 solid transparent;
|
|
1608
1612
|
min-height: initial;
|
|
@@ -1320,6 +1320,10 @@
|
|
|
1320
1320
|
margin-top: 0;
|
|
1321
1321
|
}
|
|
1322
1322
|
|
|
1323
|
+
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1324
|
+
margin-right: 30px;
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1323
1327
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
|
|
1324
1328
|
border-bottom: 0 solid transparent;
|
|
1325
1329
|
min-height: initial;
|
package/styles/bootstrap5.css
CHANGED
|
@@ -1320,6 +1320,10 @@
|
|
|
1320
1320
|
margin-top: 0;
|
|
1321
1321
|
}
|
|
1322
1322
|
|
|
1323
|
+
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1324
|
+
margin-right: 30px;
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1323
1327
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
|
|
1324
1328
|
border-bottom: 0 solid transparent;
|
|
1325
1329
|
min-height: initial;
|
package/styles/fabric-dark.css
CHANGED
|
@@ -1313,6 +1313,10 @@
|
|
|
1313
1313
|
margin-top: 0;
|
|
1314
1314
|
}
|
|
1315
1315
|
|
|
1316
|
+
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1317
|
+
margin-right: 30px;
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1316
1320
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
|
|
1317
1321
|
border-bottom: 0 solid transparent;
|
|
1318
1322
|
min-height: initial;
|
package/styles/fabric.css
CHANGED
|
@@ -1313,6 +1313,10 @@
|
|
|
1313
1313
|
margin-top: 0;
|
|
1314
1314
|
}
|
|
1315
1315
|
|
|
1316
|
+
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1317
|
+
margin-right: 30px;
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1316
1320
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
|
|
1317
1321
|
border-bottom: 0 solid transparent;
|
|
1318
1322
|
min-height: initial;
|
|
@@ -1313,6 +1313,10 @@
|
|
|
1313
1313
|
margin-top: 0;
|
|
1314
1314
|
}
|
|
1315
1315
|
|
|
1316
|
+
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1317
|
+
margin-right: 30px;
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1316
1320
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
|
|
1317
1321
|
border-bottom: 0 solid transparent;
|
|
1318
1322
|
min-height: initial;
|
package/styles/highcontrast.css
CHANGED
|
@@ -1313,6 +1313,10 @@
|
|
|
1313
1313
|
margin-top: 0;
|
|
1314
1314
|
}
|
|
1315
1315
|
|
|
1316
|
+
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1317
|
+
margin-right: 30px;
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1316
1320
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
|
|
1317
1321
|
border-bottom: 0 solid transparent;
|
|
1318
1322
|
min-height: initial;
|
package/styles/material-dark.css
CHANGED
|
@@ -1314,6 +1314,10 @@
|
|
|
1314
1314
|
margin-top: 0;
|
|
1315
1315
|
}
|
|
1316
1316
|
|
|
1317
|
+
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1318
|
+
margin-right: 30px;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1317
1321
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
|
|
1318
1322
|
border-bottom: 0 solid transparent;
|
|
1319
1323
|
min-height: initial;
|
package/styles/material.css
CHANGED
|
@@ -1314,6 +1314,10 @@
|
|
|
1314
1314
|
margin-top: 0;
|
|
1315
1315
|
}
|
|
1316
1316
|
|
|
1317
|
+
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-file-abort-btn.e-icons {
|
|
1318
|
+
margin-right: 30px;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1317
1321
|
.e-richtexteditor .e-img-uploadwrap.e-droparea .e-upload .e-upload-files .e-upload-file-list {
|
|
1318
1322
|
border-bottom: 0 solid transparent;
|
|
1319
1323
|
min-height: initial;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@import 'layout.scss';
|
|
2
|
-
@import 'theme.scss';
|
|
1
|
+
@import 'layout.scss';
|
|
2
|
+
@import 'theme.scss';
|