@syncfusion/ej2-richtexteditor 20.2.38 → 20.2.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- 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 +89 -21
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +87 -18
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/dist/global/ej2-richtexteditor.min.js +2 -2
- package/dist/global/ej2-richtexteditor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +12 -12
- package/src/editor-manager/plugin/toolbar-status.js +1 -1
- package/src/rich-text-editor/base/constant.d.ts +6 -1
- package/src/rich-text-editor/base/constant.js +6 -1
- package/src/rich-text-editor/base/rich-text-editor.js +20 -4
- package/src/rich-text-editor/base/util.js +7 -3
- package/src/rich-text-editor/renderer/image-module.d.ts +9 -0
- package/src/rich-text-editor/renderer/image-module.js +26 -4
- package/src/rich-text-editor/renderer/link-module.d.ts +8 -0
- package/src/rich-text-editor/renderer/link-module.js +10 -0
- package/src/rich-text-editor/renderer/render.d.ts +6 -0
- package/src/rich-text-editor/renderer/render.js +8 -0
- package/src/rich-text-editor/renderer/table-module.js +4 -2
- package/src/rich-text-editor/renderer/toolbar-renderer.js +4 -2
- package/styles/fluent-dark.css +3 -3
- package/styles/rich-text-editor/fluent-dark.css +3 -3
|
@@ -658,7 +658,12 @@ var bindCssClass = 'closeTableDialog';
|
|
|
658
658
|
* @hidden
|
|
659
659
|
* @deprecated
|
|
660
660
|
*/
|
|
661
|
-
var
|
|
661
|
+
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";
|
|
662
|
+
/**
|
|
663
|
+
* @hidden
|
|
664
|
+
* @deprecated
|
|
665
|
+
*/
|
|
666
|
+
var inlineEmptyNodes = "a:empty, abbr:empty, acronym:empty, b:empty, bdi:empty, bdo:empty, big:empty, button:empty,\n canvas:empty, cite:empty, code:empty, data:empty, datalist:empty, del:empty, dfn:empty, em:empty, font:empty, i:empty, iframe:empty,\n ins:empty, kbd:empty, label:empty, map:empty, mark:empty, meter:empty, noscript:empty, object:empty, output:empty, picture:empty, progress:empty,\n q:empty, ruby:empty, s:empty, samp:empty, script:empty, select:empty, slot:empty, small:empty, span:empty, strong:empty, strike:empty, sub:empty, sup:empty, svg:empty,\n template:empty, textarea:empty, time:empty, u:empty, tt:empty, var:empty, wbr:empty";
|
|
662
667
|
|
|
663
668
|
/**
|
|
664
669
|
* Rich Text Editor classes defined here.
|
|
@@ -2590,9 +2595,13 @@ function updateTextNode(value, rteObj) {
|
|
|
2590
2595
|
var previousParent = void 0;
|
|
2591
2596
|
var insertElem = void 0;
|
|
2592
2597
|
while (tempNode.firstChild) {
|
|
2593
|
-
var
|
|
2594
|
-
for (var i = 0; i <
|
|
2595
|
-
|
|
2598
|
+
var emptyBlockElem = tempNode.querySelectorAll(blockEmptyNodes);
|
|
2599
|
+
for (var i = 0; i < emptyBlockElem.length; i++) {
|
|
2600
|
+
emptyBlockElem[i].innerHTML = '<br>';
|
|
2601
|
+
}
|
|
2602
|
+
var emptyInlineElem = tempNode.querySelectorAll(inlineEmptyNodes);
|
|
2603
|
+
for (var i = 0; i < emptyInlineElem.length; i++) {
|
|
2604
|
+
emptyInlineElem[i].innerHTML = '​';
|
|
2596
2605
|
}
|
|
2597
2606
|
if (rteObj.enterKey !== 'BR' && ((tempNode.firstChild.nodeName === '#text' &&
|
|
2598
2607
|
(tempNode.firstChild.textContent.indexOf('\n') < 0 || tempNode.firstChild.textContent.trim() !== '')) ||
|
|
@@ -3067,10 +3076,11 @@ var ToolbarRenderer = /** @__PURE__ @class */ (function () {
|
|
|
3067
3076
|
proxy.parent.notify(selectionRestore, {});
|
|
3068
3077
|
range = proxy.parent.formatter.editorManager.nodeSelection.getRange(proxy.parent.contentModule.getDocument());
|
|
3069
3078
|
var parentNode = range.startContainer.parentNode;
|
|
3079
|
+
var closestElement = closest(range.startContainer.parentNode, 'table');
|
|
3070
3080
|
if ((range.startContainer.nodeName === 'TD' || range.startContainer.nodeName === 'TH' ||
|
|
3071
3081
|
(closest(range.startContainer.parentNode, 'td,th')) ||
|
|
3072
3082
|
(proxy.parent.iframeSettings.enable && !hasClass(parentNode.ownerDocument.querySelector('body'), 'e-lib')))
|
|
3073
|
-
&& range.collapsed && args.subCommand === 'BackgroundColor') {
|
|
3083
|
+
&& range.collapsed && args.subCommand === 'BackgroundColor' && closest(closestElement, '.' + CLS_RTE)) {
|
|
3074
3084
|
proxy.parent.notify(tableColorPickerChanged, {
|
|
3075
3085
|
item: { command: args.command, subCommand: args.subCommand,
|
|
3076
3086
|
value: colorpickerValue }
|
|
@@ -3250,8 +3260,9 @@ var ToolbarRenderer = /** @__PURE__ @class */ (function () {
|
|
|
3250
3260
|
proxy.parent.notify(selectionRestore, {});
|
|
3251
3261
|
proxy.currentElement.querySelector('.' + CLS_RTE_ELEMENTS).style.borderBottomColor = colorpickerValue;
|
|
3252
3262
|
var range = proxy.parent.formatter.editorManager.nodeSelection.getRange(proxy.parent.contentModule.getDocument());
|
|
3263
|
+
var closestElement = closest(range.startContainer.parentNode, 'table');
|
|
3253
3264
|
if ((range.startContainer.nodeName === 'TD' || range.startContainer.nodeName === 'TH' || range.startContainer.nodeName === 'BODY' ||
|
|
3254
|
-
closest(range.startContainer.parentNode, 'td,th')) && range.collapsed && args.subCommand === 'BackgroundColor') {
|
|
3265
|
+
closest(range.startContainer.parentNode, 'td,th')) && range.collapsed && args.subCommand === 'BackgroundColor' && closest(closestElement, '.' + CLS_RTE)) {
|
|
3255
3266
|
proxy.parent.notify(tableColorPickerChanged, colorPickerArgs);
|
|
3256
3267
|
}
|
|
3257
3268
|
else {
|
|
@@ -17113,7 +17124,7 @@ var ToolbarStatus = /** @__PURE__ @class */ (function () {
|
|
|
17113
17124
|
if ((name !== null && name !== '' && name !== undefined)
|
|
17114
17125
|
&& (fontName === null || fontName === undefined || (fontName.filter(function (value, pos) {
|
|
17115
17126
|
var pattern = new RegExp(name, 'i');
|
|
17116
|
-
if ((value.replace(/"/g, '').replace(/ /g, '') === name.replace(/"/g, '').replace(/ /g, '')) ||
|
|
17127
|
+
if ((value.replace(/"/g, '').replace(/ /g, '').toLowerCase() === name.replace(/"/g, '').replace(/ /g, '').toLowerCase()) ||
|
|
17117
17128
|
(value.search(pattern) > -1)) {
|
|
17118
17129
|
index = pos;
|
|
17119
17130
|
}
|
|
@@ -19905,6 +19916,14 @@ var Render = /** @__PURE__ @class */ (function () {
|
|
|
19905
19916
|
Render.prototype.destroy = function () {
|
|
19906
19917
|
this.removeEventListener();
|
|
19907
19918
|
};
|
|
19919
|
+
/**
|
|
19920
|
+
* Clears the Render Module.
|
|
19921
|
+
*
|
|
19922
|
+
* @returns {void}
|
|
19923
|
+
*/
|
|
19924
|
+
Render.prototype.moduleDestroy = function () {
|
|
19925
|
+
this.parent = null;
|
|
19926
|
+
};
|
|
19908
19927
|
Render.prototype.addEventListener = function () {
|
|
19909
19928
|
if (this.parent.isDestroyed) {
|
|
19910
19929
|
return;
|
|
@@ -20462,6 +20481,16 @@ var Link = /** @__PURE__ @class */ (function () {
|
|
|
20462
20481
|
Link.prototype.destroy = function () {
|
|
20463
20482
|
this.removeEventListener();
|
|
20464
20483
|
};
|
|
20484
|
+
/**
|
|
20485
|
+
* Clears the Link Module.
|
|
20486
|
+
*
|
|
20487
|
+
* @returns {void}
|
|
20488
|
+
* @hidden
|
|
20489
|
+
* @deprecated
|
|
20490
|
+
*/
|
|
20491
|
+
Link.prototype.moduleDestroy = function () {
|
|
20492
|
+
this.parent = null;
|
|
20493
|
+
};
|
|
20465
20494
|
/**
|
|
20466
20495
|
* For internal use only - Get the module name.
|
|
20467
20496
|
*
|
|
@@ -20482,6 +20511,7 @@ var Image = /** @__PURE__ @class */ (function () {
|
|
|
20482
20511
|
this.isAllowedTypes = true;
|
|
20483
20512
|
this.pageX = null;
|
|
20484
20513
|
this.pageY = null;
|
|
20514
|
+
this.mouseX = null;
|
|
20485
20515
|
this.deletedImg = [];
|
|
20486
20516
|
this.parent = parent;
|
|
20487
20517
|
this.rteID = parent.element.id;
|
|
@@ -20818,8 +20848,9 @@ var Image = /** @__PURE__ @class */ (function () {
|
|
|
20818
20848
|
img.style.minWidth = this.parent.insertImageSettings.minWidth === 0 ? '20px' : formatUnit(this.parent.insertImageSettings.minWidth);
|
|
20819
20849
|
if (this.parent.insertImageSettings.resizeByPercent) {
|
|
20820
20850
|
if (parseInt('' + img.getBoundingClientRect().width + '', 10) !== 0 && parseInt('' + width + '', 10) !== 0) {
|
|
20821
|
-
var
|
|
20822
|
-
img.style.width
|
|
20851
|
+
var original = img.offsetWidth + this.mouseX;
|
|
20852
|
+
var finalWidthByPerc = (original / img.offsetWidth) * (parseFloat(img.style.width).toString() == 'NaN' ? (img.offsetWidth / (parseFloat(getComputedStyle(this.parent.element).width)) * 100) : parseFloat(img.style.width));
|
|
20853
|
+
img.style.width = ((finalWidthByPerc > 3) ? finalWidthByPerc : 3) + '%';
|
|
20823
20854
|
}
|
|
20824
20855
|
else {
|
|
20825
20856
|
img.style.width = this.pixToPerc((width / height * expectedY), (img.previousElementSibling || img.parentElement)) + '%';
|
|
@@ -20842,13 +20873,20 @@ var Image = /** @__PURE__ @class */ (function () {
|
|
|
20842
20873
|
img.style.height = expectedY + 'px';
|
|
20843
20874
|
}
|
|
20844
20875
|
else {
|
|
20845
|
-
|
|
20876
|
+
if (this.parent.iframeSettings.enable) {
|
|
20877
|
+
img.setAttribute('width', (img.width + this.mouseX).toString());
|
|
20878
|
+
}
|
|
20879
|
+
else {
|
|
20880
|
+
img.setAttribute('width', (img.offsetWidth + this.mouseX).toString());
|
|
20881
|
+
}
|
|
20846
20882
|
}
|
|
20847
20883
|
}
|
|
20848
20884
|
else if (height > width) {
|
|
20849
20885
|
if (this.parent.insertImageSettings.resizeByPercent) {
|
|
20850
20886
|
if (parseInt('' + img.getBoundingClientRect().width + '', 10) !== 0 && parseInt('' + width + '', 10) !== 0) {
|
|
20851
|
-
|
|
20887
|
+
var original = img.offsetWidth + this.mouseX;
|
|
20888
|
+
var finalWidthByPerc = (original / img.offsetWidth) * (parseFloat(img.style.width).toString() == 'NaN' ? (img.offsetWidth / (parseFloat(getComputedStyle(this.parent.element).width)) * 100) : parseFloat(img.style.width));
|
|
20889
|
+
img.style.width = ((finalWidthByPerc > 3) ? finalWidthByPerc : 3) + '%';
|
|
20852
20890
|
}
|
|
20853
20891
|
else {
|
|
20854
20892
|
img.style.width = this.pixToPerc((expectedX / height * expectedY), (img.previousElementSibling || img.parentElement)) + '%';
|
|
@@ -20915,6 +20953,7 @@ var Image = /** @__PURE__ @class */ (function () {
|
|
|
20915
20953
|
var mouseY = (this.resizeBtnStat.topLeft || this.resizeBtnStat.topRight) ? -(pageY - this.pageY) : (pageY - this.pageY);
|
|
20916
20954
|
var width = parseInt(this.imgDupPos.width, 10) + mouseX;
|
|
20917
20955
|
var height = parseInt(this.imgDupPos.height, 10) + mouseY;
|
|
20956
|
+
this.mouseX = mouseX;
|
|
20918
20957
|
this.pageX = pageX;
|
|
20919
20958
|
this.pageY = pageY;
|
|
20920
20959
|
if (this.resizeBtnStat.botRight) {
|
|
@@ -22749,6 +22788,18 @@ var Image = /** @__PURE__ @class */ (function () {
|
|
|
22749
22788
|
this.prevSelectedImgEle = undefined;
|
|
22750
22789
|
this.removeEventListener();
|
|
22751
22790
|
};
|
|
22791
|
+
/* eslint-disable */
|
|
22792
|
+
/**
|
|
22793
|
+
* Clears the ImageModule.
|
|
22794
|
+
*
|
|
22795
|
+
* @returns {void}
|
|
22796
|
+
* @hidden
|
|
22797
|
+
* @deprecated
|
|
22798
|
+
*/
|
|
22799
|
+
/* eslint-enable */
|
|
22800
|
+
Image.prototype.moduleDestroy = function () {
|
|
22801
|
+
this.parent = null;
|
|
22802
|
+
};
|
|
22752
22803
|
/**
|
|
22753
22804
|
* For internal use only - Get the module name.
|
|
22754
22805
|
*
|
|
@@ -23561,7 +23612,8 @@ var Table = /** @__PURE__ @class */ (function () {
|
|
|
23561
23612
|
}
|
|
23562
23613
|
var target = e.target || e.targetTouches[0].target;
|
|
23563
23614
|
var closestTable = closest(target, 'table.e-rte-table');
|
|
23564
|
-
if (!isNullOrUndefined(this.curTable) && !isNullOrUndefined(closestTable) && closestTable !== this.curTable
|
|
23615
|
+
if (!isNullOrUndefined(this.curTable) && !isNullOrUndefined(closestTable) && closestTable !== this.curTable &&
|
|
23616
|
+
this.parent.contentModule.getEditPanel().contains(closestTable)) {
|
|
23565
23617
|
this.removeResizeElement();
|
|
23566
23618
|
this.removeHelper(e);
|
|
23567
23619
|
this.cancelResizeAction();
|
|
@@ -23838,7 +23890,8 @@ var Table = /** @__PURE__ @class */ (function () {
|
|
|
23838
23890
|
var rteWidth = _this.contentModule.getEditPanel().offsetWidth - (_this.contentModule.getEditPanel().offsetWidth -
|
|
23839
23891
|
_this.contentModule.getEditPanel().clientWidth) - paddingSize * 2;
|
|
23840
23892
|
var widthCompare = void 0;
|
|
23841
|
-
if (!isNullOrUndefined(_this.curTable.parentElement.closest('table')))
|
|
23893
|
+
if (!isNullOrUndefined(_this.curTable.parentElement.closest('table')) && !isNullOrUndefined(_this.curTable.closest('td')) &&
|
|
23894
|
+
_this.contentModule.getEditPanel().contains(_this.curTable.closest('td'))) {
|
|
23842
23895
|
var currentTd = _this.curTable.closest('td');
|
|
23843
23896
|
var currentTDPad = +getComputedStyle(currentTd).paddingRight.match(/\d/g).join('');
|
|
23844
23897
|
// Padding of the current table with the parent element multiply with 2.
|
|
@@ -25906,10 +25959,10 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
|
|
|
25906
25959
|
}
|
|
25907
25960
|
}
|
|
25908
25961
|
var currentLastElem = closestLI;
|
|
25909
|
-
while (currentLastElem.nodeName !== '#text') {
|
|
25962
|
+
while (currentLastElem.lastChild !== null && currentLastElem.nodeName !== '#text') {
|
|
25910
25963
|
currentLastElem = currentLastElem.lastChild;
|
|
25911
25964
|
}
|
|
25912
|
-
this.formatter.editorManager.nodeSelection.setSelectionText(this.contentModule.getDocument(), isSameContainer ? currentLastElem : currentStartContainer, currentLastElem, currentStartOffset, currentLastElem.textContent.length);
|
|
25965
|
+
this.formatter.editorManager.nodeSelection.setSelectionText(this.contentModule.getDocument(), isSameContainer ? (currentLastElem.nodeName === 'BR' && !isNullOrUndefined(currentLastElem.previousSibling) ? currentLastElem.previousSibling : currentLastElem) : currentStartContainer, currentLastElem, currentStartOffset, (currentLastElem.nodeName === 'BR' ? 0 : currentLastElem.textContent.length));
|
|
25913
25966
|
}
|
|
25914
25967
|
};
|
|
25915
25968
|
/**
|
|
@@ -26248,8 +26301,19 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
|
|
|
26248
26301
|
if (this.isDestroyed || !this.isRendered) {
|
|
26249
26302
|
return;
|
|
26250
26303
|
}
|
|
26251
|
-
if (this.element.offsetParent === null
|
|
26252
|
-
this.toolbarModule
|
|
26304
|
+
if (this.element.offsetParent === null) {
|
|
26305
|
+
if (!isNullOrUndefined(this.toolbarModule)) {
|
|
26306
|
+
this.toolbarModule.destroy();
|
|
26307
|
+
}
|
|
26308
|
+
if (!isNullOrUndefined(this.imageModule)) {
|
|
26309
|
+
this.imageModule.moduleDestroy();
|
|
26310
|
+
}
|
|
26311
|
+
if (!isNullOrUndefined(this.linkModule)) {
|
|
26312
|
+
this.linkModule.moduleDestroy();
|
|
26313
|
+
}
|
|
26314
|
+
if (!isNullOrUndefined(this.renderModule)) {
|
|
26315
|
+
this.renderModule.moduleDestroy();
|
|
26316
|
+
}
|
|
26253
26317
|
return;
|
|
26254
26318
|
}
|
|
26255
26319
|
this.notify(destroy, {});
|
|
@@ -27543,6 +27607,11 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
|
|
|
27543
27607
|
case 'cut':
|
|
27544
27608
|
this.onCut();
|
|
27545
27609
|
break;
|
|
27610
|
+
case 'tab':
|
|
27611
|
+
if (this.iframeSettings.enable) {
|
|
27612
|
+
this.isBlur = true;
|
|
27613
|
+
}
|
|
27614
|
+
break;
|
|
27546
27615
|
}
|
|
27547
27616
|
if (e.callBack && (e.event.action === 'copy' || e.event.action === 'cut' || e.event.action === 'delete')) {
|
|
27548
27617
|
e.callBack({
|
|
@@ -27860,5 +27929,5 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
|
|
|
27860
27929
|
* Rich Text Editor component exported items
|
|
27861
27930
|
*/
|
|
27862
27931
|
|
|
27863
|
-
export { Toolbar$2 as Toolbar, KeyboardEvents$1 as KeyboardEvents, BaseToolbar, BaseQuickToolbar, QuickToolbar, Count, ColorPickerInput, MarkdownToolbarStatus, ExecCommandCallBack, ToolbarAction, MarkdownEditor, HtmlEditor, PasteCleanup, Resize, DropDownButtons, FileManager$1 as FileManager, FullScreen, setAttributes, HtmlToolbarStatus, XhtmlValidation, HTMLFormatter, Formatter, MarkdownFormatter, ContentRender, Render, ToolbarRenderer, Link, Image, ViewSource, Table, DialogRenderer, IframeContentRender, MarkdownRender, PopupRenderer, RichTextEditor, RenderType, ToolbarType, DialogType, executeGroup, created, destroyed, load, initialLoad, contentChanged, initialEnd, iframeMouseDown, destroy, toolbarClick, toolbarRefresh, refreshBegin, toolbarUpdated, bindOnEnd, renderColorPicker, htmlToolbarClick, markdownToolbarClick, destroyColorPicker, modelChanged, keyUp, keyDown, mouseUp, toolbarCreated, toolbarRenderComplete, enableFullScreen, disableFullScreen, dropDownSelect, beforeDropDownItemRender, execCommandCallBack, imageToolbarAction, linkToolbarAction, windowResize, resizeStart, onResize, resizeStop, undo, redo, insertLink, unLink, editLink, openLink, actionBegin, actionComplete, updatedToolbarStatus, actionSuccess, updateToolbarItem, insertImage, insertCompleted, imageLeft, imageRight, imageCenter, imageBreak, imageInline, imageLink, imageAlt, imageDelete, imageCaption, imageSize, sourceCode, updateSource, toolbarOpen, beforeDropDownOpen, selectionSave, selectionRestore, expandPopupClick, count, contentFocus, contentBlur, mouseDown, sourceCodeMouseDown, editAreaClick, scroll, contentscroll, colorPickerChanged, tableColorPickerChanged, focusChange, selectAll$1 as selectAll, selectRange, getSelectedHtml, renderInlineToolbar, paste, imgModule, rtlMode, createTable, docClick, tableToolbarAction, checkUndo, readOnlyMode, pasteClean, enterHandler, beforeDialogOpen, clearDialogObj, dialogOpen, beforeDialogClose, dialogClose, beforeQuickToolbarOpen, quickToolbarOpen, quickToolbarClose, popupHide, imageSelected, imageUploading, imageUploadSuccess, imageUploadFailed, imageRemoving, mediaSelected, mediaUploading, mediaUploadSuccess, mediaUploadFailed, mediaRemoving, afterImageDelete, afterMediaDelete, drop, xhtmlValidation, beforeImageUpload, beforeMediaUpload, resizeInitialized, renderFileManager, beforeImageDrop, dynamicModule, beforePasteCleanup, afterPasteCleanup, updateTbItemsStatus, showLinkDialog, closeLinkDialog, showImageDialog, closeImageDialog, closeAudioDialog, showTableDialog, closeTableDialog, bindCssClass,
|
|
27932
|
+
export { Toolbar$2 as Toolbar, KeyboardEvents$1 as KeyboardEvents, BaseToolbar, BaseQuickToolbar, QuickToolbar, Count, ColorPickerInput, MarkdownToolbarStatus, ExecCommandCallBack, ToolbarAction, MarkdownEditor, HtmlEditor, PasteCleanup, Resize, DropDownButtons, FileManager$1 as FileManager, FullScreen, setAttributes, HtmlToolbarStatus, XhtmlValidation, HTMLFormatter, Formatter, MarkdownFormatter, ContentRender, Render, ToolbarRenderer, Link, Image, ViewSource, Table, DialogRenderer, IframeContentRender, MarkdownRender, PopupRenderer, RichTextEditor, RenderType, ToolbarType, DialogType, executeGroup, created, destroyed, load, initialLoad, contentChanged, initialEnd, iframeMouseDown, destroy, toolbarClick, toolbarRefresh, refreshBegin, toolbarUpdated, bindOnEnd, renderColorPicker, htmlToolbarClick, markdownToolbarClick, destroyColorPicker, modelChanged, keyUp, keyDown, mouseUp, toolbarCreated, toolbarRenderComplete, enableFullScreen, disableFullScreen, dropDownSelect, beforeDropDownItemRender, execCommandCallBack, imageToolbarAction, linkToolbarAction, windowResize, resizeStart, onResize, resizeStop, undo, redo, insertLink, unLink, editLink, openLink, actionBegin, actionComplete, updatedToolbarStatus, actionSuccess, updateToolbarItem, insertImage, insertCompleted, imageLeft, imageRight, imageCenter, imageBreak, imageInline, imageLink, imageAlt, imageDelete, imageCaption, imageSize, sourceCode, updateSource, toolbarOpen, beforeDropDownOpen, selectionSave, selectionRestore, expandPopupClick, count, contentFocus, contentBlur, mouseDown, sourceCodeMouseDown, editAreaClick, scroll, contentscroll, colorPickerChanged, tableColorPickerChanged, focusChange, selectAll$1 as selectAll, selectRange, getSelectedHtml, renderInlineToolbar, paste, imgModule, rtlMode, createTable, docClick, tableToolbarAction, checkUndo, readOnlyMode, pasteClean, enterHandler, beforeDialogOpen, clearDialogObj, dialogOpen, beforeDialogClose, dialogClose, beforeQuickToolbarOpen, quickToolbarOpen, quickToolbarClose, popupHide, imageSelected, imageUploading, imageUploadSuccess, imageUploadFailed, imageRemoving, mediaSelected, mediaUploading, mediaUploadSuccess, mediaUploadFailed, mediaRemoving, afterImageDelete, afterMediaDelete, drop, xhtmlValidation, beforeImageUpload, beforeMediaUpload, resizeInitialized, renderFileManager, beforeImageDrop, dynamicModule, beforePasteCleanup, afterPasteCleanup, updateTbItemsStatus, showLinkDialog, closeLinkDialog, showImageDialog, closeImageDialog, closeAudioDialog, showTableDialog, closeTableDialog, bindCssClass, blockEmptyNodes, inlineEmptyNodes, CLS_RTE, CLS_RTL, CLS_CONTENT, CLS_DISABLED, CLS_SCRIPT_SHEET, CLS_STYLE_SHEET, CLS_TOOLBAR, CLS_TB_FIXED, CLS_TB_FLOAT, CLS_TB_ABS_FLOAT, CLS_INLINE, CLS_TB_INLINE, CLS_RTE_EXPAND_TB, CLS_FULL_SCREEN, CLS_QUICK_TB, CLS_POP, CLS_TB_STATIC, CLS_QUICK_POP, CLS_QUICK_DROPDOWN, CLS_IMAGE_POP, CLS_INLINE_POP, CLS_INLINE_DROPDOWN, CLS_DROPDOWN_POPUP, CLS_DROPDOWN_ICONS, CLS_DROPDOWN_ITEMS, CLS_DROPDOWN_BTN, CLS_RTE_CONTENT, CLS_TB_ITEM, CLS_TB_EXTENDED, CLS_TB_WRAP, CLS_POPUP, CLS_SEPARATOR, CLS_MINIMIZE, CLS_MAXIMIZE, CLS_BACK, CLS_SHOW, CLS_HIDE, CLS_VISIBLE, CLS_FOCUS, CLS_RM_WHITE_SPACE, CLS_IMGRIGHT, CLS_IMGLEFT, CLS_IMGCENTER, CLS_IMGBREAK, CLS_CAPTION, CLS_RTE_CAPTION, CLS_CAPINLINE, CLS_IMGINLINE, CLS_COUNT, CLS_WARNING, CLS_ERROR, CLS_ICONS, CLS_ACTIVE, CLS_EXPAND_OPEN, CLS_RTE_ELEMENTS, CLS_TB_BTN, CLS_HR_SEPARATOR, CLS_TB_IOS_FIX, CLS_LIST_PRIMARY_CONTENT, CLS_NUMBERFORMATLIST_TB_BTN, CLS_BULLETFORMATLIST_TB_BTN, CLS_FORMATS_TB_BTN, CLS_FONT_NAME_TB_BTN, CLS_FONT_SIZE_TB_BTN, CLS_ALIGN_TB_BTN, CLS_FONT_COLOR_TARGET, CLS_BACKGROUND_COLOR_TARGET, CLS_COLOR_CONTENT, CLS_FONT_COLOR_DROPDOWN, CLS_BACKGROUND_COLOR_DROPDOWN, CLS_COLOR_PALETTE, CLS_FONT_COLOR_PICKER, CLS_BACKGROUND_COLOR_PICKER, CLS_RTE_READONLY, CLS_TABLE_SEL, CLS_TB_DASH_BOR, CLS_TB_ALT_BOR, CLS_TB_COL_RES, CLS_TB_ROW_RES, CLS_TB_BOX_RES, CLS_RTE_HIDDEN, CLS_RTE_PASTE_KEEP_FORMAT, CLS_RTE_PASTE_REMOVE_FORMAT, CLS_RTE_PASTE_PLAIN_FORMAT, CLS_RTE_PASTE_OK, CLS_RTE_PASTE_CANCEL, CLS_RTE_DIALOG_MIN_HEIGHT, CLS_RTE_RES_HANDLE, CLS_RTE_RES_EAST, CLS_RTE_IMAGE, CLS_RESIZE, CLS_IMG_FOCUS, CLS_RTE_DRAG_IMAGE, CLS_RTE_UPLOAD_POPUP, CLS_POPUP_OPEN, CLS_IMG_RESIZE, CLS_DROPAREA, CLS_IMG_INNER, CLS_UPLOAD_FILES, CLS_RTE_DIALOG_UPLOAD, CLS_RTE_RES_CNT, CLS_CUSTOM_TILE, CLS_NOCOLOR_ITEM, CLS_TABLE, CLS_TABLE_BORDER, CLS_RTE_TABLE_RESIZE, CLS_RTE_FIXED_TB_EXPAND, CLS_RTE_TB_ENABLED, CLS_RTE_RES_WEST, getIndex, hasClass, getDropDownValue, isIDevice, getFormattedFontSize, pageYOffset, getTooltipText, setToolbarStatus, getCollection, getTBarItemsIndex, updateUndoRedoStatus, dispatchEvent, parseHtml, getTextNodesUnder, toObjectLowerCase, getEditValue, updateTextNode, getDefaultValue, isEditableValueEmpty, decode, sanitizeHelper, convertToBlob, getLocaleFontFormat, updateDropDownFontFormatLocale, ServiceLocator, RendererFactory, EditorManager, IMAGE, TABLE, LINK, INSERT_ROW, INSERT_COLUMN, DELETEROW, DELETECOLUMN, REMOVETABLE, TABLEHEADER, TABLE_VERTICAL_ALIGN, TABLE_MERGE, TABLE_VERTICAL_SPLIT, TABLE_HORIZONTAL_SPLIT, TABLE_MOVE, ALIGNMENT_TYPE, INDENT_TYPE, DEFAULT_TAG, BLOCK_TAGS, IGNORE_BLOCK_TAGS, TABLE_BLOCK_TAGS, SELECTION_TYPE, INSERTHTML_TYPE, INSERT_TEXT_TYPE, CLEAR_TYPE, SELF_CLOSING_TAGS, CLASS_IMAGE_RIGHT, CLASS_IMAGE_LEFT, CLASS_IMAGE_CENTER, CLASS_IMAGE_BREAK, CLASS_CAPTION, CLASS_RTE_CAPTION, CLASS_CAPTION_INLINE, CLASS_IMAGE_INLINE, Lists, markerClassName, DOMNode, Alignments, Indents, Formats, LinkCommand, InsertMethods, InsertTextExec, InsertHtmlExec, InsertHtml, IsFormatted, MsWordPaste, NodeCutter, ImageCommand, SelectionCommands, SelectionBasedExec, ClearFormatExec, UndoRedoManager, TableCommand, statusCollection, ToolbarStatus, NodeSelection, MarkdownParser, LISTS_COMMAND, selectionCommand, LINK_COMMAND, CLEAR_COMMAND, MD_TABLE, INSERT_TEXT_COMMAND, ClearFormat, MDLists, MDFormats, MarkdownSelection, UndoRedoCommands, MDSelectionFormats, MDLink, MDTable, markdownFormatTags, markdownSelectionTags, markdownListsTags, htmlKeyConfig, markdownKeyConfig, pasteCleanupGroupingTags, listConversionFilters, selfClosingTags, KEY_DOWN, ACTION, FORMAT_TYPE, KEY_DOWN_HANDLER, LIST_TYPE, KEY_UP_HANDLER, KEY_UP, MODEL_CHANGED_PLUGIN, MODEL_CHANGED, MS_WORD_CLEANUP_PLUGIN, MS_WORD_CLEANUP, ON_BEGIN, SPACE_ACTION };
|
|
27864
27933
|
//# sourceMappingURL=ej2-richtexteditor.es5.js.map
|