@syncfusion/ej2-richtexteditor 24.2.9 → 25.1.35
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 -0
- 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 +908 -485
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +892 -474
- 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 +13 -13
- package/src/common/config.d.ts +7 -0
- package/src/common/config.js +11 -0
- package/src/common/interface.d.ts +12 -0
- package/src/common/types.d.ts +6 -0
- package/src/editor-manager/plugin/dom-node.d.ts +5 -1
- package/src/editor-manager/plugin/dom-node.js +161 -12
- package/src/editor-manager/plugin/formats.js +1 -1
- package/src/editor-manager/plugin/image.js +12 -16
- package/src/editor-manager/plugin/inserthtml.d.ts +1 -0
- package/src/editor-manager/plugin/inserthtml.js +31 -0
- package/src/editor-manager/plugin/link.js +1 -1
- package/src/editor-manager/plugin/lists.js +24 -2
- package/src/editor-manager/plugin/ms-word-clean-up.js +65 -57
- package/src/editor-manager/plugin/selection-commands.js +52 -3
- package/src/editor-manager/plugin/table.js +18 -3
- package/src/editor-manager/plugin/toolbar-status.d.ts +2 -2
- package/src/editor-manager/plugin/toolbar-status.js +17 -9
- package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +3 -3
- package/src/rich-text-editor/actions/base-quick-toolbar.js +41 -10
- package/src/rich-text-editor/actions/base-toolbar.js +24 -30
- package/src/rich-text-editor/actions/dropdown-buttons.js +4 -4
- package/src/rich-text-editor/actions/emoji-picker.js +1 -1
- package/src/rich-text-editor/actions/enter-key.js +2 -1
- package/src/rich-text-editor/actions/full-screen.js +2 -2
- package/src/rich-text-editor/actions/html-editor.d.ts +0 -2
- package/src/rich-text-editor/actions/html-editor.js +8 -26
- package/src/rich-text-editor/actions/markdown-editor.js +3 -1
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -0
- package/src/rich-text-editor/actions/paste-clean-up.js +23 -0
- package/src/rich-text-editor/actions/quick-toolbar.d.ts +7 -0
- package/src/rich-text-editor/actions/quick-toolbar.js +23 -8
- package/src/rich-text-editor/actions/resize.js +2 -1
- package/src/rich-text-editor/actions/toolbar.d.ts +0 -2
- package/src/rich-text-editor/actions/toolbar.js +13 -85
- package/src/rich-text-editor/base/classes.d.ts +0 -5
- package/src/rich-text-editor/base/classes.js +0 -5
- package/src/rich-text-editor/base/constant.d.ts +5 -0
- package/src/rich-text-editor/base/constant.js +5 -0
- package/src/rich-text-editor/base/interface.d.ts +36 -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 +4 -3
- package/src/rich-text-editor/base/rich-text-editor.js +81 -58
- package/src/rich-text-editor/base/util.js +8 -2
- package/src/rich-text-editor/models/default-locale.js +15 -12
- package/src/rich-text-editor/models/toolbar-settings-model.d.ts +1 -1
- package/src/rich-text-editor/models/toolbar-settings.d.ts +1 -1
- package/src/rich-text-editor/models/toolbar-settings.js +1 -1
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +2 -1
- package/src/rich-text-editor/renderer/image-module.d.ts +8 -1
- package/src/rich-text-editor/renderer/image-module.js +148 -155
- package/src/rich-text-editor/renderer/table-module.d.ts +2 -0
- package/src/rich-text-editor/renderer/table-module.js +71 -8
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +3 -0
- package/src/rich-text-editor/renderer/toolbar-renderer.js +61 -2
- package/src/rich-text-editor/renderer/video-module.js +7 -4
- package/src/rich-text-editor/renderer/view-source.js +7 -4
- package/styles/bootstrap-dark.css +57 -17
- package/styles/bootstrap.css +58 -18
- package/styles/bootstrap4.css +58 -18
- package/styles/bootstrap5-dark.css +64 -17
- package/styles/bootstrap5.css +64 -17
- package/styles/fabric-dark.css +57 -17
- package/styles/fabric.css +58 -18
- package/styles/fluent-dark.css +57 -17
- package/styles/fluent.css +57 -17
- package/styles/highcontrast-light.css +57 -17
- package/styles/highcontrast.css +58 -18
- package/styles/material-dark.css +57 -17
- package/styles/material.css +57 -17
- package/styles/material3-dark.css +59 -19
- package/styles/material3.css +59 -19
- package/styles/rich-text-editor/_bds-definition.scss +279 -0
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_bootstrap-definition.scss +1 -1
- package/styles/rich-text-editor/_bootstrap4-definition.scss +3 -2
- package/styles/rich-text-editor/_bootstrap5-definition.scss +1 -0
- package/styles/rich-text-editor/_fabric-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_fabric-definition.scss +2 -1
- package/styles/rich-text-editor/_fluent-definition.scss +1 -0
- package/styles/rich-text-editor/_fusionnew-definition.scss +1 -0
- package/styles/rich-text-editor/_highcontrast-definition.scss +2 -1
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +1 -0
- package/styles/rich-text-editor/_layout.scss +47 -13
- package/styles/rich-text-editor/_material-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_material-definition.scss +1 -0
- package/styles/rich-text-editor/_material3-definition.scss +1 -0
- package/styles/rich-text-editor/_tailwind-definition.scss +4 -3
- package/styles/rich-text-editor/_theme.scss +18 -5
- package/styles/rich-text-editor/bootstrap-dark.css +57 -17
- package/styles/rich-text-editor/bootstrap.css +58 -18
- package/styles/rich-text-editor/bootstrap4.css +58 -18
- package/styles/rich-text-editor/bootstrap5-dark.css +64 -17
- package/styles/rich-text-editor/bootstrap5.css +64 -17
- package/styles/rich-text-editor/fabric-dark.css +57 -17
- package/styles/rich-text-editor/fabric.css +58 -18
- package/styles/rich-text-editor/fluent-dark.css +57 -17
- package/styles/rich-text-editor/fluent.css +57 -17
- package/styles/rich-text-editor/highcontrast-light.css +57 -17
- package/styles/rich-text-editor/highcontrast.css +58 -18
- package/styles/rich-text-editor/icons/_bds.scss +351 -0
- package/styles/rich-text-editor/icons/_bootstrap-dark.scss +7 -4
- package/styles/rich-text-editor/icons/_bootstrap.scss +7 -4
- package/styles/rich-text-editor/icons/_bootstrap4.scss +7 -4
- package/styles/rich-text-editor/icons/_bootstrap5.scss +7 -4
- package/styles/rich-text-editor/icons/_fabric-dark.scss +7 -4
- package/styles/rich-text-editor/icons/_fabric.scss +7 -4
- package/styles/rich-text-editor/icons/_fluent.scss +7 -4
- package/styles/rich-text-editor/icons/_highcontrast-light.scss +7 -4
- package/styles/rich-text-editor/icons/_highcontrast.scss +7 -4
- package/styles/rich-text-editor/icons/_material-dark.scss +7 -4
- package/styles/rich-text-editor/icons/_material.scss +7 -4
- package/styles/rich-text-editor/icons/_material3.scss +7 -4
- package/styles/rich-text-editor/icons/_tailwind.scss +7 -4
- package/styles/rich-text-editor/material-dark.css +57 -17
- package/styles/rich-text-editor/material.css +57 -17
- package/styles/rich-text-editor/material3-dark.css +59 -19
- package/styles/rich-text-editor/material3.css +59 -19
- package/styles/rich-text-editor/tailwind-dark.css +61 -21
- package/styles/rich-text-editor/tailwind.css +61 -21
- package/styles/tailwind-dark.css +61 -21
- package/styles/tailwind.css +61 -21
|
@@ -46,7 +46,7 @@ var FullScreen = /** @class */ (function () {
|
|
|
46
46
|
_this.parent.element.classList.add(classes.CLS_FULL_SCREEN);
|
|
47
47
|
_this.toggleParentOverflow(true);
|
|
48
48
|
var isExpand = _this.parent.element.querySelectorAll('.e-toolbar-extended.e-popup-open').length > 0 ? true : false;
|
|
49
|
-
_this.parent.setContentHeight(
|
|
49
|
+
_this.parent.setContentHeight('Maximize', isExpand);
|
|
50
50
|
if (_this.parent.toolbarModule) {
|
|
51
51
|
if (!_this.parent.getBaseToolbarObject().toolbarObj.items[0].properties) {
|
|
52
52
|
_this.parent.getBaseToolbarObject().toolbarObj.removeItems(0);
|
|
@@ -98,7 +98,7 @@ var FullScreen = /** @class */ (function () {
|
|
|
98
98
|
removeClass([elem[i]], ['e-rte-overflow']);
|
|
99
99
|
}
|
|
100
100
|
var isExpand = _this.parent.element.querySelectorAll('.e-toolbar-extended.e-popup-open').length > 0 ? true : false;
|
|
101
|
-
_this.parent.setContentHeight(
|
|
101
|
+
_this.parent.setContentHeight('Minimize', isExpand);
|
|
102
102
|
if (_this.parent.toolbarModule) {
|
|
103
103
|
if (!_this.parent.getBaseToolbarObject().toolbarObj.items[0].properties) {
|
|
104
104
|
_this.parent.getBaseToolbarObject().toolbarObj.removeItems(0);
|
|
@@ -22,7 +22,6 @@ export declare class HtmlEditor {
|
|
|
22
22
|
private saveSelection;
|
|
23
23
|
xhtmlValidation: XhtmlValidation;
|
|
24
24
|
private clickTimeout;
|
|
25
|
-
private tooltipTargetEle;
|
|
26
25
|
constructor(parent?: IRichTextEditor, serviceLocator?: ServiceLocator);
|
|
27
26
|
/**
|
|
28
27
|
* Destroys the Markdown.
|
|
@@ -59,7 +58,6 @@ export declare class HtmlEditor {
|
|
|
59
58
|
private getRangeLiNode;
|
|
60
59
|
private onPaste;
|
|
61
60
|
private spaceLink;
|
|
62
|
-
private mouseOutHandler;
|
|
63
61
|
private onToolbarClick;
|
|
64
62
|
private renderColorPicker;
|
|
65
63
|
private instantiateRenderer;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as events from '../base/constant';
|
|
2
|
-
import { isNullOrUndefined, closest, attributes, removeClass, addClass, Browser, detach
|
|
2
|
+
import { isNullOrUndefined, closest, attributes, removeClass, addClass, Browser, detach } from '@syncfusion/ej2-base';
|
|
3
3
|
import { isNullOrUndefined as isNOU } from '@syncfusion/ej2-base';
|
|
4
4
|
import { HTMLFormatter } from '../formatter/html-formatter';
|
|
5
5
|
import { RenderType } from '../base/enum';
|
|
@@ -507,7 +507,11 @@ var HtmlEditor = /** @class */ (function () {
|
|
|
507
507
|
(!isNullOrUndefined(this.deleteRangeElement.nextElementSibling) && this.deleteRangeElement.nextElementSibling.tagName === 'TABLE'))) {
|
|
508
508
|
return;
|
|
509
509
|
}
|
|
510
|
-
|
|
510
|
+
var isImgWithEmptyBlockNode = false;
|
|
511
|
+
if (this.deleteRangeElement.querySelectorAll('img').length > 0 && this.deleteRangeElement.textContent.trim() === '') {
|
|
512
|
+
isImgWithEmptyBlockNode = true;
|
|
513
|
+
}
|
|
514
|
+
if (this.getCaretIndex(currentRange, this.deleteRangeElement) === this.deleteRangeElement.textContent.length && !isImgWithEmptyBlockNode) {
|
|
511
515
|
if (!isNullOrUndefined(liElement)) {
|
|
512
516
|
if (isLiElement || !isNullOrUndefined(liElement.nextElementSibling)) {
|
|
513
517
|
this.deleteOldRangeElement = this.getRangeElement(liElement.nextElementSibling);
|
|
@@ -699,19 +703,6 @@ var HtmlEditor = /** @class */ (function () {
|
|
|
699
703
|
}, e, value);
|
|
700
704
|
}
|
|
701
705
|
};
|
|
702
|
-
HtmlEditor.prototype.mouseOutHandler = function () {
|
|
703
|
-
if (!isNOU(this.tooltipTargetEle)) {
|
|
704
|
-
this.tooltipTargetEle.setAttribute('title', this.tooltipTargetEle.getAttribute('data-title'));
|
|
705
|
-
}
|
|
706
|
-
else {
|
|
707
|
-
var currentDocument = this.parent.iframeSettings.enable ? this.parent.contentModule.getPanel().ownerDocument :
|
|
708
|
-
this.parent.contentModule.getDocument();
|
|
709
|
-
this.tooltipTargetEle = currentDocument.querySelector('[data-title]');
|
|
710
|
-
this.tooltipTargetEle.setAttribute('title', this.tooltipTargetEle.getAttribute('data-title'));
|
|
711
|
-
}
|
|
712
|
-
this.tooltipTargetEle.removeAttribute('data-title');
|
|
713
|
-
EventHandler.remove(this.tooltipTargetEle, 'mouseout', this.mouseOutHandler);
|
|
714
|
-
};
|
|
715
706
|
HtmlEditor.prototype.onToolbarClick = function (args) {
|
|
716
707
|
var _this = this;
|
|
717
708
|
var save;
|
|
@@ -719,17 +710,8 @@ var HtmlEditor = /** @class */ (function () {
|
|
|
719
710
|
var selectParentEle;
|
|
720
711
|
var item = args.item;
|
|
721
712
|
var closestElement = closest(args.originalEvent.target, '.e-rte-quick-popup');
|
|
722
|
-
var
|
|
723
|
-
|
|
724
|
-
this.tooltipTargetEle = closest(args.originalEvent.target, '[data-tooltip-id]');
|
|
725
|
-
if (!isNOU(this.tooltipTargetEle) && this.parent.showTooltip && !isNOU(currentDocument.querySelector('.e-tooltip-wrap'))) {
|
|
726
|
-
this.parent.notify(events.destroyTooltip, { args: event });
|
|
727
|
-
if (!this.tooltipTargetEle.closest('.e-rte-quick-popup')) {
|
|
728
|
-
this.tooltipTargetEle.setAttribute('data-title', this.tooltipTargetEle.getAttribute('title'));
|
|
729
|
-
this.tooltipTargetEle.removeAttribute('title');
|
|
730
|
-
EventHandler.add(this.tooltipTargetEle, 'mouseout', this.mouseOutHandler, this);
|
|
731
|
-
}
|
|
732
|
-
}
|
|
713
|
+
var target = args.originalEvent.target;
|
|
714
|
+
this.parent.notify(events.closeTooltip, { target: target });
|
|
733
715
|
if (item.command !== 'FormatPainter') {
|
|
734
716
|
if (closestElement && !closestElement.classList.contains('e-rte-inline-popup') && !closestElement.classList.contains('e-rte-text-popup')) {
|
|
735
717
|
if (!(item.subCommand === 'SourceCode' || item.subCommand === 'Preview' ||
|
|
@@ -74,7 +74,9 @@ var MarkdownEditor = /** @class */ (function () {
|
|
|
74
74
|
MarkdownEditor.prototype.onToolbarClick = function (args) {
|
|
75
75
|
var item = args.item;
|
|
76
76
|
var textArea = this.parent.contentModule.getEditPanel();
|
|
77
|
-
|
|
77
|
+
if (item.command !== 'Formats') {
|
|
78
|
+
textArea.focus();
|
|
79
|
+
}
|
|
78
80
|
var startOffset = textArea.selectionStart;
|
|
79
81
|
var endOffset = textArea.selectionEnd;
|
|
80
82
|
var text = textArea.value.substring(startOffset, endOffset);
|
|
@@ -679,6 +679,9 @@ var PasteCleanup = /** @class */ (function () {
|
|
|
679
679
|
this.setImageProperties(allImg[i]);
|
|
680
680
|
}
|
|
681
681
|
this.addTempClass(clipBoardElem);
|
|
682
|
+
if (clipBoardElem.querySelectorAll('picture').length > 0) {
|
|
683
|
+
this.processPictureElement(clipBoardElem);
|
|
684
|
+
}
|
|
682
685
|
if (clipBoardElem.textContent !== '' || !isNOU(clipBoardElem.querySelector('img')) ||
|
|
683
686
|
!isNOU(clipBoardElem.querySelector('table'))) {
|
|
684
687
|
var tempWrapperElem = this.parent.createElement('div');
|
|
@@ -1138,6 +1141,26 @@ var PasteCleanup = /** @class */ (function () {
|
|
|
1138
1141
|
}
|
|
1139
1142
|
return null;
|
|
1140
1143
|
};
|
|
1144
|
+
PasteCleanup.prototype.processPictureElement = function (clipBoardElem) {
|
|
1145
|
+
var pictureElems = clipBoardElem.querySelectorAll('picture');
|
|
1146
|
+
for (var i = 0; i < pictureElems.length; i++) {
|
|
1147
|
+
var imgElem = pictureElems[i].querySelector('img');
|
|
1148
|
+
var sourceElems = pictureElems[i].querySelectorAll('source');
|
|
1149
|
+
if (imgElem && imgElem.getAttribute('src')) {
|
|
1150
|
+
var srcValue = imgElem.getAttribute('src');
|
|
1151
|
+
var url = new URL(srcValue);
|
|
1152
|
+
for (var j = 0; j < sourceElems.length; j++) {
|
|
1153
|
+
var srcset = sourceElems[j].getAttribute('srcset');
|
|
1154
|
+
if (srcset) {
|
|
1155
|
+
if (srcset.indexOf('http') === -1) {
|
|
1156
|
+
var fullPath = url.origin + srcset;
|
|
1157
|
+
sourceElems[j].setAttribute('srcset', fullPath);
|
|
1158
|
+
}
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
}
|
|
1162
|
+
}
|
|
1163
|
+
};
|
|
1141
1164
|
/**
|
|
1142
1165
|
* For internal use only - Get the module name.
|
|
1143
1166
|
*
|
|
@@ -137,4 +137,11 @@ export declare class QuickToolbar {
|
|
|
137
137
|
* @hidden
|
|
138
138
|
*/
|
|
139
139
|
private getModuleName;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @returns {BaseQuickToolbar[]} - specifies the quick toolbar instance.
|
|
143
|
+
* @hidden
|
|
144
|
+
* @private
|
|
145
|
+
*/
|
|
146
|
+
getQuickToolbarInstance(): BaseQuickToolbar[];
|
|
140
147
|
}
|
|
@@ -238,6 +238,9 @@ var QuickToolbar = /** @class */ (function () {
|
|
|
238
238
|
}
|
|
239
239
|
}
|
|
240
240
|
if (!isNOU(this.textQTBar) && !isNOU(this.parent.quickToolbarSettings.text) && !this.parent.inlineMode.enable) {
|
|
241
|
+
if (!isNOU(e) && !isNOU(e.name) && e.name === 'sourceCodeMouseDown') {
|
|
242
|
+
return;
|
|
243
|
+
}
|
|
241
244
|
var args = e.args.touches ?
|
|
242
245
|
e.args.changedTouches[0] : e.args;
|
|
243
246
|
var target = e.args.target;
|
|
@@ -248,7 +251,7 @@ var QuickToolbar = /** @class */ (function () {
|
|
|
248
251
|
this.offsetY = pageYOffset(args, this.parent.element, this.parent.iframeSettings.enable);
|
|
249
252
|
var range = this.parent.getRange();
|
|
250
253
|
if ((range.endContainer.parentElement.tagName === range.startContainer.parentElement.tagName && (range.startContainer.parentElement.tagName === 'A' && range.endContainer.parentElement.tagName === 'A')) ||
|
|
251
|
-
(target.tagName === 'IMG') || (target.tagName === 'VIDEO') || (target.tagName === 'AUDIO') || (target.childNodes[0].nodeType === 1 && target.childNodes[0].classList.contains('e-rte-audio')) ||
|
|
254
|
+
(target.tagName === 'IMG') || (target.tagName === 'VIDEO') || (target.tagName === 'AUDIO') || (target.childNodes[0] && target.childNodes[0].nodeType === 1 && target.childNodes[0].classList.contains('e-rte-audio')) ||
|
|
252
255
|
(this.parent.getRange().startOffset === this.parent.getRange().endOffset)) {
|
|
253
256
|
return;
|
|
254
257
|
}
|
|
@@ -256,13 +259,16 @@ var QuickToolbar = /** @class */ (function () {
|
|
|
256
259
|
this.textQTBar.showPopup(this.offsetX, this.offsetY, target, 'text');
|
|
257
260
|
}
|
|
258
261
|
};
|
|
259
|
-
QuickToolbar.prototype.keyDownHandler = function () {
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
this.
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
262
|
+
QuickToolbar.prototype.keyDownHandler = function (e) {
|
|
263
|
+
var preventHide = e.args.altKey;
|
|
264
|
+
if (!preventHide) {
|
|
265
|
+
if ((this.parent.inlineMode.enable && (!Browser.isDevice || isIDevice()))
|
|
266
|
+
&& !isNullOrUndefined(select('.' + CLS_INLINE_POP, document))) {
|
|
267
|
+
this.hideInlineQTBar();
|
|
268
|
+
}
|
|
269
|
+
if (this.textQTBar && !hasClass(this.textQTBar.element, 'e-popup-close')) {
|
|
270
|
+
this.textQTBar.hidePopup();
|
|
271
|
+
}
|
|
266
272
|
}
|
|
267
273
|
};
|
|
268
274
|
QuickToolbar.prototype.inlineQTBarMouseDownHandler = function () {
|
|
@@ -590,6 +596,15 @@ var QuickToolbar = /** @class */ (function () {
|
|
|
590
596
|
QuickToolbar.prototype.getModuleName = function () {
|
|
591
597
|
return 'quickToolbar';
|
|
592
598
|
};
|
|
599
|
+
/**
|
|
600
|
+
*
|
|
601
|
+
* @returns {BaseQuickToolbar[]} - specifies the quick toolbar instance.
|
|
602
|
+
* @hidden
|
|
603
|
+
* @private
|
|
604
|
+
*/
|
|
605
|
+
QuickToolbar.prototype.getQuickToolbarInstance = function () {
|
|
606
|
+
return [this.linkQTBar, this.imageQTBar, this.audioQTBar, this.videoQTBar, this.tableQTBar, this.textQTBar, this.inlineQTBar];
|
|
607
|
+
};
|
|
593
608
|
return QuickToolbar;
|
|
594
609
|
}());
|
|
595
610
|
export { QuickToolbar };
|
|
@@ -71,7 +71,8 @@ var Resize = /** @class */ (function () {
|
|
|
71
71
|
this.parent.element.style.width = (!this.parent.enableRtl) ? eventType.clientX - boundRect.left + 'px' : boundRect.right - eventType.clientX + 'px';
|
|
72
72
|
}
|
|
73
73
|
if (!this.parent.toolbarSettings.enable) {
|
|
74
|
-
this.parent.
|
|
74
|
+
var isExpand = this.parent.element.querySelectorAll('.e-toolbar-extended.e-popup-open').length > 0 ? true : false;
|
|
75
|
+
this.parent.setContentHeight('Resize', isExpand);
|
|
75
76
|
}
|
|
76
77
|
this.parent.refreshUI();
|
|
77
78
|
};
|
|
@@ -150,72 +150,14 @@ var Toolbar = /** @class */ (function () {
|
|
|
150
150
|
}
|
|
151
151
|
};
|
|
152
152
|
Toolbar.prototype.toggleFloatClass = function (e) {
|
|
153
|
-
var topValue;
|
|
154
|
-
var isBody = false;
|
|
155
|
-
var isFloat = false;
|
|
156
|
-
var scrollParent;
|
|
157
153
|
var floatOffset = this.parent.floatingToolbarOffset;
|
|
158
|
-
if (
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
else if (e && e.target !== document) {
|
|
162
|
-
scrollParent = e.target;
|
|
163
|
-
}
|
|
164
|
-
else {
|
|
165
|
-
isBody = true;
|
|
166
|
-
scrollParent = document.body;
|
|
167
|
-
}
|
|
168
|
-
var tbHeight = this.getToolbarHeight() + this.getExpandTBarPopHeight();
|
|
169
|
-
if (this.isTransformChild) {
|
|
170
|
-
topValue = 0;
|
|
171
|
-
var scrollParentRelativeTop = 0;
|
|
172
|
-
var trgHeight = this.parent.element.offsetHeight;
|
|
173
|
-
if (isBody) {
|
|
174
|
-
var bodyStyle = window.getComputedStyle(scrollParent);
|
|
175
|
-
scrollParentRelativeTop = parseFloat(bodyStyle.marginTop.split('px')[0]) + parseFloat(bodyStyle.paddingTop.split('px')[0]);
|
|
176
|
-
}
|
|
177
|
-
var targetTop = this.parent.element.getBoundingClientRect().top;
|
|
178
|
-
var scrollParentYOffset = (Browser.isMSPointer && isBody) ? window.pageYOffset : scrollParent.parentElement.scrollTop;
|
|
179
|
-
var scrollParentRect = scrollParent.getBoundingClientRect();
|
|
180
|
-
var scrollParentTop = (!isBody) ? scrollParentRect.top : (scrollParentRect.top + scrollParentYOffset);
|
|
181
|
-
var outOfRange = ((targetTop - ((!isBody) ? scrollParentTop : 0))
|
|
182
|
-
+ trgHeight > tbHeight + floatOffset) ? false : true;
|
|
183
|
-
if (targetTop > (scrollParentTop + floatOffset) || targetTop < -trgHeight || ((targetTop < 0) ? outOfRange : false)) {
|
|
184
|
-
isFloat = false;
|
|
185
|
-
removeClass([this.tbElement], [classes.CLS_TB_ABS_FLOAT]);
|
|
186
|
-
}
|
|
187
|
-
else if (targetTop < (scrollParentTop + floatOffset)) {
|
|
188
|
-
if (targetTop < 0) {
|
|
189
|
-
topValue = (-targetTop) + scrollParentTop;
|
|
190
|
-
}
|
|
191
|
-
else {
|
|
192
|
-
topValue = scrollParentTop - targetTop;
|
|
193
|
-
}
|
|
194
|
-
topValue = (isBody) ? topValue - scrollParentRelativeTop : topValue;
|
|
195
|
-
addClass([this.tbElement], [classes.CLS_TB_ABS_FLOAT]);
|
|
196
|
-
isFloat = true;
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
else {
|
|
200
|
-
var parent_1 = this.parent.element.getBoundingClientRect();
|
|
201
|
-
if (window.innerHeight < parent_1.top) {
|
|
202
|
-
return;
|
|
203
|
-
}
|
|
204
|
-
topValue = (e && e.target !== document) ? scrollParent.getBoundingClientRect().top : 0;
|
|
205
|
-
if ((parent_1.bottom < (floatOffset + tbHeight + topValue)) || parent_1.bottom < 0 || parent_1.top > floatOffset + topValue) {
|
|
206
|
-
isFloat = false;
|
|
207
|
-
}
|
|
208
|
-
else if (parent_1.top < floatOffset || parent_1.top < floatOffset + topValue) {
|
|
209
|
-
isFloat = true;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
if (!isFloat) {
|
|
213
|
-
removeClass([this.tbElement], [classes.CLS_TB_FLOAT]);
|
|
214
|
-
setStyleAttribute(this.tbElement, { top: 0 + 'px', width: '100%' });
|
|
154
|
+
if (this.parent.toolbarSettings.enableFloating) {
|
|
155
|
+
addClass([this.tbElement.parentElement], [classes.CLS_TB_FLOAT]);
|
|
156
|
+
setStyleAttribute(this.tbElement.parentElement, { top: (floatOffset) + 'px' });
|
|
215
157
|
}
|
|
216
158
|
else {
|
|
217
|
-
|
|
218
|
-
setStyleAttribute(this.tbElement, {
|
|
159
|
+
removeClass([this.tbElement.parentElement], [classes.CLS_TB_FLOAT]);
|
|
160
|
+
setStyleAttribute(this.tbElement.parentElement, { top: '' });
|
|
219
161
|
}
|
|
220
162
|
};
|
|
221
163
|
Toolbar.prototype.renderToolbar = function () {
|
|
@@ -521,19 +463,6 @@ var Toolbar = /** @class */ (function () {
|
|
|
521
463
|
this.toolbarActionModule.parent = null;
|
|
522
464
|
this.dropDownModule.parent = null;
|
|
523
465
|
};
|
|
524
|
-
Toolbar.prototype.scrollHandler = function (e) {
|
|
525
|
-
if (!this.parent.inlineMode.enable) {
|
|
526
|
-
if (this.parent.toolbarSettings.enableFloating && this.getDOMVisibility(this.tbElement)) {
|
|
527
|
-
this.toggleFloatClass(e.args);
|
|
528
|
-
}
|
|
529
|
-
}
|
|
530
|
-
};
|
|
531
|
-
Toolbar.prototype.getDOMVisibility = function (el) {
|
|
532
|
-
if (!el.offsetParent && el.offsetWidth === 0 && el.offsetHeight === 0) {
|
|
533
|
-
return false;
|
|
534
|
-
}
|
|
535
|
-
return true;
|
|
536
|
-
};
|
|
537
466
|
Toolbar.prototype.mouseDownHandler = function () {
|
|
538
467
|
if (Browser.isDevice && this.parent.inlineMode.enable && !isIDevice()) {
|
|
539
468
|
this.showFixedTBar();
|
|
@@ -570,11 +499,6 @@ var Toolbar = /** @class */ (function () {
|
|
|
570
499
|
};
|
|
571
500
|
Toolbar.prototype.adjustContentHeight = function (trg, isKeyboard) {
|
|
572
501
|
if (trg && this.parent.toolbarSettings.type === ToolbarType.Expand && !isNOU(trg)) {
|
|
573
|
-
var extendedTbar = this.tbElement.querySelector('.e-toolbar-extended');
|
|
574
|
-
if (!isNOU(extendedTbar)) {
|
|
575
|
-
setStyleAttribute(extendedTbar, { maxHeight: '', display: 'block' });
|
|
576
|
-
setStyleAttribute(extendedTbar, { maxHeight: extendedTbar.offsetHeight + 'px', display: '' });
|
|
577
|
-
}
|
|
578
502
|
var hasActiveClass = trg.classList.contains('e-nav-active');
|
|
579
503
|
var isExpand = isKeyboard ? (hasActiveClass ? false : true) : (hasActiveClass ? true : false);
|
|
580
504
|
if (isExpand) {
|
|
@@ -583,7 +507,7 @@ var Toolbar = /** @class */ (function () {
|
|
|
583
507
|
else {
|
|
584
508
|
removeClass([this.tbElement], [classes.CLS_EXPAND_OPEN]);
|
|
585
509
|
}
|
|
586
|
-
this.parent.setContentHeight('
|
|
510
|
+
this.parent.setContentHeight('Toolbar', isExpand);
|
|
587
511
|
}
|
|
588
512
|
else if (Browser.isDevice || this.parent.inlineMode.enable) {
|
|
589
513
|
this.isToolbar = true;
|
|
@@ -608,7 +532,6 @@ var Toolbar = /** @class */ (function () {
|
|
|
608
532
|
this.dropDownModule = new DropDownButtons(this.parent, this.locator);
|
|
609
533
|
this.toolbarActionModule = new ToolbarAction(this.parent);
|
|
610
534
|
this.parent.on(events.initialEnd, this.renderToolbar, this);
|
|
611
|
-
this.parent.on(events.scroll, this.scrollHandler, this);
|
|
612
535
|
this.parent.on(events.bindOnEnd, this.toolbarBindEvent, this);
|
|
613
536
|
this.parent.on(events.toolbarUpdated, this.updateToolbarStatus, this);
|
|
614
537
|
this.parent.on(events.modelChanged, this.onPropertyChanged, this);
|
|
@@ -633,7 +556,6 @@ var Toolbar = /** @class */ (function () {
|
|
|
633
556
|
return;
|
|
634
557
|
}
|
|
635
558
|
this.parent.off(events.initialEnd, this.renderToolbar);
|
|
636
|
-
this.parent.off(events.scroll, this.scrollHandler);
|
|
637
559
|
this.parent.off(events.bindOnEnd, this.toolbarBindEvent);
|
|
638
560
|
this.parent.off(events.toolbarUpdated, this.updateToolbarStatus);
|
|
639
561
|
this.parent.off(events.modelChanged, this.onPropertyChanged);
|
|
@@ -668,7 +590,8 @@ var Toolbar = /** @class */ (function () {
|
|
|
668
590
|
if (!this.parent.inlineMode.enable) {
|
|
669
591
|
this.refreshToolbarOverflow();
|
|
670
592
|
}
|
|
671
|
-
this.parent.
|
|
593
|
+
var isExpand = this.parent.element.querySelectorAll('.e-toolbar-extended.e-popup-open').length > 0 ? true : false;
|
|
594
|
+
this.parent.setContentHeight('Refresh', isExpand);
|
|
672
595
|
};
|
|
673
596
|
/**
|
|
674
597
|
* Called internally if any of the property value changed.
|
|
@@ -689,6 +612,11 @@ var Toolbar = /** @class */ (function () {
|
|
|
689
612
|
}
|
|
690
613
|
}
|
|
691
614
|
}
|
|
615
|
+
if (!isNullOrUndefined(e.newProp.toolbarSettings)) {
|
|
616
|
+
if (!isNullOrUndefined(e.newProp.toolbarSettings.enableFloating)) {
|
|
617
|
+
this.toggleFloatClass();
|
|
618
|
+
}
|
|
619
|
+
}
|
|
692
620
|
if (e.module !== this.getModuleName()) {
|
|
693
621
|
return;
|
|
694
622
|
}
|
|
@@ -764,6 +764,11 @@ export var showColorPicker = 'showColorPicker';
|
|
|
764
764
|
/**
|
|
765
765
|
* @hidden
|
|
766
766
|
|
|
767
|
+
*/
|
|
768
|
+
export var closeTooltip = 'closeTooltip';
|
|
769
|
+
/**
|
|
770
|
+
* @hidden
|
|
771
|
+
|
|
767
772
|
*/
|
|
768
773
|
export var blockEmptyNodes = "address:empty, article:empty, aside:empty, blockquote:empty,\n details:empty, dd:empty, div:empty, dl:empty, dt:empty, fieldset:empty, footer:empty,form:empty, h1:empty,\n h2:empty, h3:empty, h4:empty, h5:empty, h6:empty, header:empty, hgroup:empty, li:empty, main:empty, nav:empty,\n noscript:empty, output:empty, p:empty, pre:empty, section:empty, td:empty, th:empty";
|
|
769
774
|
/**
|
|
@@ -8,7 +8,7 @@ import { ClickEventArgs } from '@syncfusion/ej2-navigations';
|
|
|
8
8
|
import { BaseToolbar } from '../actions/base-toolbar';
|
|
9
9
|
import { BaseQuickToolbar } from '../actions/base-quick-toolbar';
|
|
10
10
|
import { NodeSelection } from '../../selection/selection';
|
|
11
|
-
import { EditorMode, EnterKey, ShiftEnterKey } from './../../common/types';
|
|
11
|
+
import { ContentHeightSource, EditorMode, EnterKey, ShiftEnterKey } from './../../common/types';
|
|
12
12
|
import { MarkdownSelection } from './../../markdown-parser/plugin/markdown-selection';
|
|
13
13
|
import { ToolbarSettingsModel, IFrameSettingsModel, ImageSettingsModel, AudioSettingsModel, VideoSettingsModel, TableSettingsModel, FormatPainterSettingsModel, EmojiSettingsModel } from '../models/models';
|
|
14
14
|
import { QuickToolbarSettingsModel, InlineModeModel, PasteCleanupSettingsModel, FileManagerSettingsModel } from '../models/models';
|
|
@@ -163,7 +163,7 @@ export interface IRichTextEditor extends Component<HTMLElement> {
|
|
|
163
163
|
getText(): string;
|
|
164
164
|
updateValueData?(): void;
|
|
165
165
|
getBaseToolbarObject(): BaseToolbar;
|
|
166
|
-
setContentHeight(target
|
|
166
|
+
setContentHeight(target: ContentHeightSource, isExpand?: boolean): void;
|
|
167
167
|
keyConfig?: {
|
|
168
168
|
[key: string]: string;
|
|
169
169
|
};
|
|
@@ -667,6 +667,10 @@ export interface IToolsItemConfigs {
|
|
|
667
667
|
subCommand?: string;
|
|
668
668
|
value?: string;
|
|
669
669
|
}
|
|
670
|
+
/**
|
|
671
|
+
* @hidden
|
|
672
|
+
|
|
673
|
+
*/
|
|
670
674
|
export interface IListDropDownModel extends DropDownItemModel {
|
|
671
675
|
cssClass?: string;
|
|
672
676
|
command?: string;
|
|
@@ -676,6 +680,10 @@ export interface IListDropDownModel extends DropDownItemModel {
|
|
|
676
680
|
listStyle?: string;
|
|
677
681
|
listImage?: string;
|
|
678
682
|
}
|
|
683
|
+
/**
|
|
684
|
+
* @hidden
|
|
685
|
+
|
|
686
|
+
*/
|
|
679
687
|
export interface IDropDownItemModel extends DropDownItemModel {
|
|
680
688
|
cssClass?: string;
|
|
681
689
|
command?: string;
|
|
@@ -1378,3 +1386,29 @@ export interface CleanupResizeElemArgs {
|
|
|
1378
1386
|
value: string;
|
|
1379
1387
|
callBack(value: string): void;
|
|
1380
1388
|
}
|
|
1389
|
+
/**
|
|
1390
|
+
* @hidden
|
|
1391
|
+
* @private
|
|
1392
|
+
*/
|
|
1393
|
+
export interface IBaseQuickToolbar {
|
|
1394
|
+
/**
|
|
1395
|
+
* Instance of the Quick Toolabr Popup.
|
|
1396
|
+
*/
|
|
1397
|
+
popupObj: Popup;
|
|
1398
|
+
/**
|
|
1399
|
+
* Parent Element of the Quick Toolbar.
|
|
1400
|
+
*/
|
|
1401
|
+
element: HTMLElement;
|
|
1402
|
+
/**
|
|
1403
|
+
* Boolean to check whether the quick toolbar is rendered in the DOM.
|
|
1404
|
+
*/
|
|
1405
|
+
isRendered: boolean;
|
|
1406
|
+
/**
|
|
1407
|
+
* Instance of the Toolbar rendered inside the Popup.
|
|
1408
|
+
*/
|
|
1409
|
+
quickTBarObj: BaseToolbar;
|
|
1410
|
+
/**
|
|
1411
|
+
* Element of the Toolbar rendered inside the Popup.
|
|
1412
|
+
*/
|
|
1413
|
+
toolbarElement: HTMLElement;
|
|
1414
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component, ModuleDeclaration, EventHandler, Complex, Browser, EmitType, addClass, select, detach } from '@syncfusion/ej2-base';import { Property, NotifyPropertyChanges, INotifyPropertyChanged, formatUnit, L10n, closest } from '@syncfusion/ej2-base';import { setStyleAttribute, Event, removeClass, print as printWindow, attributes } from '@syncfusion/ej2-base';import { isNullOrUndefined as isNOU, compile, append, extend, debounce } from '@syncfusion/ej2-base';import { Touch as EJ2Touch, TapEventArgs } from '@syncfusion/ej2-base';import { getScrollableParent, BeforeOpenEventArgs, BeforeCloseEventArgs } from '@syncfusion/ej2-popups';import * as events from '../base/constant';import * as classes from '../base/classes';import { Render } from '../renderer/render';import { ViewSource } from '../renderer/view-source';import { IRenderer, IFormatter, PrintEventArgs, ActionCompleteEventArgs, ActionBeginEventArgs, ImageDropEventArgs, IFormatPainterArgs, CleanupResizeElemArgs } from './interface';import { IExecutionGroup, executeGroup, CommandName, ResizeArgs, StatusArgs, ToolbarStatusEventArgs } from './interface';import { BeforeQuickToolbarOpenArgs, ChangeEventArgs, AfterImageDeleteEventArgs, AfterMediaDeleteEventArgs, PasteCleanupArgs } from './interface';import { ILinkCommandsArgs, IImageCommandsArgs, IAudioCommandsArgs, IVideoCommandsArgs, BeforeSanitizeHtmlArgs, ITableCommandsArgs, ExecuteCommandOption } from './interface';import { ServiceLocator } from '../services/service-locator';import { RendererFactory } from '../services/renderer-factory';import { RenderType, ToolbarType, DialogType } from './enum';import { EditorMode, ShiftEnterKey, EnterKey } from './../../common/types';import { Toolbar } from '../actions/toolbar';import { ExecCommandCallBack } from '../actions/execute-command-callback';import { KeyboardEvents, KeyboardEventArgs } from '../actions/keyboard';import { FontFamilyModel, FontSizeModel, FontColorModel, FormatModel, BackgroundColorModel, NumberFormatListModel, BulletFormatListModel } from '../models/models';import { ToolbarSettingsModel, IFrameSettingsModel, ImageSettingsModel, AudioSettingsModel, VideoSettingsModel, TableSettingsModel } from '../models/models';import { QuickToolbarSettingsModel, InlineModeModel, PasteCleanupSettingsModel, FileManagerSettingsModel, FormatPainterSettingsModel, EmojiSettingsModel } from '../models/models';import { ToolbarSettings, ImageSettings, AudioSettings, VideoSettings, QuickToolbarSettings, FontFamily, FontSize, Format, NumberFormatList, BulletFormatList, FormatPainterSettings, EmojiSettings } from '../models/toolbar-settings';import { FileManagerSettings } from '../models/toolbar-settings';import { TableSettings, PasteCleanupSettings } from '../models/toolbar-settings';import { FontColor, BackgroundColor } from '../models/toolbar-settings';import { IFrameSettings } from '../models/iframe-settings';import { InlineMode } from '../models/inline-mode';import { Link } from '../renderer/link-module';import { Image } from '../renderer/image-module';import { Audio } from '../renderer/audio-module';import { Video } from '../renderer/video-module';import { Table } from '../renderer/table-module';import { Count } from '../actions/count';import { HtmlEditor } from '../actions/html-editor';import { MarkdownEditor } from '../actions/markdown-editor';import { defaultLocale } from '../models/default-locale';import { setAttributes } from '../actions/html-attributes';import { BaseToolbar } from '../actions/base-toolbar';import { QuickToolbar } from '../actions/quick-toolbar';import { FullScreen } from '../actions/full-screen';import { PasteCleanup } from '../actions/paste-clean-up';import { EnterKeyAction } from '../actions/enter-key';import * as CONSTANT from '../../common/constant';import { IHtmlKeyboardEvent } from '../../editor-manager/base/interface';import { dispatchEvent, getEditValue, isIDevice, decode, isEditableValueEmpty, getDefaultValue } from '../base/util';import { DialogRenderer } from '../renderer/dialog-renderer';import { SelectedEventArgs, RemovingEventArgs, UploadingEventArgs, BeforeUploadEventArgs } from '@syncfusion/ej2-inputs';import { Resize } from '../actions/resize';import { FileManager } from '../actions/file-manager';import { FormatPainter } from '../actions/format-painter';import { EmojiPicker } from '../actions/emoji-picker';
|
|
1
|
+
import { Component, ModuleDeclaration, EventHandler, Complex, Browser, EmitType, addClass, select, detach } from '@syncfusion/ej2-base';import { Property, NotifyPropertyChanges, INotifyPropertyChanged, formatUnit, L10n, closest } from '@syncfusion/ej2-base';import { setStyleAttribute, Event, removeClass, print as printWindow, attributes } from '@syncfusion/ej2-base';import { isNullOrUndefined as isNOU, compile, append, extend, debounce } from '@syncfusion/ej2-base';import { Touch as EJ2Touch, TapEventArgs } from '@syncfusion/ej2-base';import { getScrollableParent, BeforeOpenEventArgs, BeforeCloseEventArgs } from '@syncfusion/ej2-popups';import * as events from '../base/constant';import * as classes from '../base/classes';import { Render } from '../renderer/render';import { ViewSource } from '../renderer/view-source';import { IRenderer, IFormatter, PrintEventArgs, ActionCompleteEventArgs, ActionBeginEventArgs, ImageDropEventArgs, IFormatPainterArgs, CleanupResizeElemArgs, IBaseQuickToolbar } from './interface';import { IExecutionGroup, executeGroup, CommandName, ResizeArgs, StatusArgs, ToolbarStatusEventArgs } from './interface';import { BeforeQuickToolbarOpenArgs, ChangeEventArgs, AfterImageDeleteEventArgs, AfterMediaDeleteEventArgs, PasteCleanupArgs } from './interface';import { ILinkCommandsArgs, IImageCommandsArgs, IAudioCommandsArgs, IVideoCommandsArgs, BeforeSanitizeHtmlArgs, ITableCommandsArgs, ExecuteCommandOption } from './interface';import { ServiceLocator } from '../services/service-locator';import { RendererFactory } from '../services/renderer-factory';import { RenderType, ToolbarType, DialogType } from './enum';import { EditorMode, ShiftEnterKey, EnterKey, ContentHeightSource } from './../../common/types';import { Toolbar } from '../actions/toolbar';import { ExecCommandCallBack } from '../actions/execute-command-callback';import { KeyboardEvents, KeyboardEventArgs } from '../actions/keyboard';import { FontFamilyModel, FontSizeModel, FontColorModel, FormatModel, BackgroundColorModel, NumberFormatListModel, BulletFormatListModel } from '../models/models';import { ToolbarSettingsModel, IFrameSettingsModel, ImageSettingsModel, AudioSettingsModel, VideoSettingsModel, TableSettingsModel } from '../models/models';import { QuickToolbarSettingsModel, InlineModeModel, PasteCleanupSettingsModel, FileManagerSettingsModel, FormatPainterSettingsModel, EmojiSettingsModel } from '../models/models';import { ToolbarSettings, ImageSettings, AudioSettings, VideoSettings, QuickToolbarSettings, FontFamily, FontSize, Format, NumberFormatList, BulletFormatList, FormatPainterSettings, EmojiSettings } from '../models/toolbar-settings';import { FileManagerSettings } from '../models/toolbar-settings';import { TableSettings, PasteCleanupSettings } from '../models/toolbar-settings';import { FontColor, BackgroundColor } from '../models/toolbar-settings';import { IFrameSettings } from '../models/iframe-settings';import { InlineMode } from '../models/inline-mode';import { Link } from '../renderer/link-module';import { Image } from '../renderer/image-module';import { Audio } from '../renderer/audio-module';import { Video } from '../renderer/video-module';import { Table } from '../renderer/table-module';import { Count } from '../actions/count';import { HtmlEditor } from '../actions/html-editor';import { MarkdownEditor } from '../actions/markdown-editor';import { defaultLocale } from '../models/default-locale';import { setAttributes } from '../actions/html-attributes';import { BaseToolbar } from '../actions/base-toolbar';import { QuickToolbar } from '../actions/quick-toolbar';import { FullScreen } from '../actions/full-screen';import { PasteCleanup } from '../actions/paste-clean-up';import { EnterKeyAction } from '../actions/enter-key';import * as CONSTANT from '../../common/constant';import { IHtmlKeyboardEvent } from '../../editor-manager/base/interface';import { dispatchEvent, getEditValue, isIDevice, decode, isEditableValueEmpty, getDefaultValue } from '../base/util';import { DialogRenderer } from '../renderer/dialog-renderer';import { SelectedEventArgs, RemovingEventArgs, UploadingEventArgs, BeforeUploadEventArgs } from '@syncfusion/ej2-inputs';import { Resize } from '../actions/resize';import { FileManager } from '../actions/file-manager';import { FormatPainter } from '../actions/format-painter';import { EmojiPicker } from '../actions/emoji-picker';
|
|
2
2
|
import {ComponentModel} from '@syncfusion/ej2-base';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -83,7 +83,7 @@ export interface RichTextEditorModel extends ComponentModel{
|
|
|
83
83
|
* 'height', 'left', 'line-height', 'list-style-type', 'margin', 'margin-top', 'margin-left',
|
|
84
84
|
* 'margin-right', 'margin-bottom', 'max-height', 'max-width', 'min-height', 'min-width',
|
|
85
85
|
* 'overflow', 'overflow-x', 'overflow-y', 'padding', 'padding-bottom', 'padding-left', 'padding-right',
|
|
86
|
-
* 'padding-top', 'position', 'right', 'table-layout', 'text-align', 'text-decoration', 'text-indent',
|
|
86
|
+
* 'padding-top', 'position', 'right', 'table-layout', 'text-align', 'text-decoration', 'text-transform', 'text-indent',
|
|
87
87
|
* 'top', 'vertical-align', 'visibility', 'white-space', 'width'],
|
|
88
88
|
* deniedTags: null,
|
|
89
89
|
* keepFormat: true,
|
|
@@ -10,7 +10,7 @@ import { BeforeQuickToolbarOpenArgs, ChangeEventArgs, AfterImageDeleteEventArgs,
|
|
|
10
10
|
import { ILinkCommandsArgs, IImageCommandsArgs, BeforeSanitizeHtmlArgs, ITableCommandsArgs, ExecuteCommandOption } from './interface';
|
|
11
11
|
import { ServiceLocator } from '../services/service-locator';
|
|
12
12
|
import { DialogType } from './enum';
|
|
13
|
-
import { EditorMode, ShiftEnterKey, EnterKey } from './../../common/types';
|
|
13
|
+
import { EditorMode, ShiftEnterKey, EnterKey, ContentHeightSource } from './../../common/types';
|
|
14
14
|
import { Toolbar } from '../actions/toolbar';
|
|
15
15
|
import { KeyboardEvents } from '../actions/keyboard';
|
|
16
16
|
import { FontFamilyModel, FontSizeModel, FontColorModel, FormatModel, BackgroundColorModel, NumberFormatListModel, BulletFormatListModel } from '../models/models';
|
|
@@ -266,7 +266,7 @@ export declare class RichTextEditor extends Component<HTMLElement> implements IN
|
|
|
266
266
|
* 'height', 'left', 'line-height', 'list-style-type', 'margin', 'margin-top', 'margin-left',
|
|
267
267
|
* 'margin-right', 'margin-bottom', 'max-height', 'max-width', 'min-height', 'min-width',
|
|
268
268
|
* 'overflow', 'overflow-x', 'overflow-y', 'padding', 'padding-bottom', 'padding-left', 'padding-right',
|
|
269
|
-
* 'padding-top', 'position', 'right', 'table-layout', 'text-align', 'text-decoration', 'text-indent',
|
|
269
|
+
* 'padding-top', 'position', 'right', 'table-layout', 'text-align', 'text-decoration', 'text-transform', 'text-indent',
|
|
270
270
|
* 'top', 'vertical-align', 'visibility', 'white-space', 'width'],
|
|
271
271
|
* deniedTags: null,
|
|
272
272
|
* keepFormat: true,
|
|
@@ -1444,7 +1444,7 @@ export declare class RichTextEditor extends Component<HTMLElement> implements IN
|
|
|
1444
1444
|
* @hidden
|
|
1445
1445
|
|
|
1446
1446
|
*/
|
|
1447
|
-
setContentHeight(target
|
|
1447
|
+
setContentHeight(target: ContentHeightSource, isExpand?: boolean): void;
|
|
1448
1448
|
/**
|
|
1449
1449
|
* Retrieves the HTML from RichTextEditor.
|
|
1450
1450
|
*
|
|
@@ -1608,4 +1608,5 @@ export declare class RichTextEditor extends Component<HTMLElement> implements IN
|
|
|
1608
1608
|
*/
|
|
1609
1609
|
private resetToolbarTabIndex;
|
|
1610
1610
|
private removeSelectionClassStates;
|
|
1611
|
+
private getRenderedQuickToolbarElem;
|
|
1611
1612
|
}
|