@syncfusion/ej2-richtexteditor 20.1.56 → 20.1.59

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.
@@ -614,6 +614,19 @@ const closeTableDialog = 'closeTableDialog';
614
614
  * @deprecated
615
615
  */
616
616
  const bindCssClass = 'closeTableDialog';
617
+ /**
618
+ * @hidden
619
+ * @deprecated
620
+ */
621
+ const blockInlineEmptyNodes = `address:empty, article:empty, aside:empty, blockquote:empty,
622
+ details:empty, dd:empty, div:empty, dl:empty, dt:empty, fieldset:empty, footer:empty,form:empty, h1:empty,
623
+ h2:empty, h3:empty, h4:empty, h5:empty, h6:empty, header:empty, hgroup:empty, hr:empty, li:empty, main:empty, nav:empty,
624
+ noscript:empty, output:empty, p:empty, pre:empty, section:empty, td:empty, th:empty,
625
+ a:empty, abbr:empty, acronym:empty, b:empty, bdi:empty, bdo:empty, big:empty, button:empty,
626
+ canvas:empty, cite:empty, code:empty, data:empty, datalist:empty, del:empty, dfn:empty, em:empty, font:empty, i:empty, iframe:empty,
627
+ ins:empty, kbd:empty, label:empty, map:empty, mark:empty, meter:empty, noscript:empty, object:empty, output:empty, picture:empty, progress:empty,
628
+ 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,
629
+ template:empty, textarea:empty, time:empty, u:empty, tt:empty, var:empty, wbr:empty`;
617
630
 
618
631
  /**
619
632
  * Rich Text Editor classes defined here.
@@ -2538,6 +2551,10 @@ function updateTextNode(value, rteObj) {
2538
2551
  let previousParent;
2539
2552
  let insertElem;
2540
2553
  while (tempNode.firstChild) {
2554
+ const emptyElem = tempNode.querySelectorAll(blockInlineEmptyNodes);
2555
+ for (let i = 0; i < emptyElem.length; i++) {
2556
+ emptyElem[i].innerHTML = '<br>';
2557
+ }
2541
2558
  if (rteObj.enterKey !== 'BR' && ((tempNode.firstChild.nodeName === '#text' &&
2542
2559
  (tempNode.firstChild.textContent.indexOf('\n') < 0 || tempNode.firstChild.textContent.trim() !== '')) ||
2543
2560
  inlineNode.indexOf(tempNode.firstChild.nodeName.toLocaleLowerCase()) >= 0)) {
@@ -4714,7 +4731,9 @@ class Toolbar$2 {
4714
4731
  }
4715
4732
  }
4716
4733
  onRefresh() {
4717
- this.refreshToolbarOverflow();
4734
+ if (!this.parent.inlineMode.enable) {
4735
+ this.refreshToolbarOverflow();
4736
+ }
4718
4737
  this.parent.setContentHeight('', true);
4719
4738
  }
4720
4739
  /**
@@ -6908,6 +6927,21 @@ class Formatter {
6908
6927
  || self.contentModule.getPanel() === range.commonAncestorContainer)) {
6909
6928
  return;
6910
6929
  }
6930
+ if (!isNullOrUndefined(args) && self.maxLength !== -1 && !isNullOrUndefined(args.item.command)) {
6931
+ let currentInsertContentLength = 0;
6932
+ if (args.item.command === 'Links') {
6933
+ currentInsertContentLength = value.text.length === 0 ? value.url.length : value.text.length;
6934
+ }
6935
+ if (args.item.command === 'Images' || args.item.command === 'Table' || args.item.command === 'Files') {
6936
+ currentInsertContentLength = 1;
6937
+ }
6938
+ const currentLength = self.getText().trim().length;
6939
+ const selectionLength = self.getSelection().length;
6940
+ const totalLength = (currentLength - selectionLength) + currentInsertContentLength;
6941
+ if (!(self.maxLength === -1 || totalLength <= self.maxLength)) {
6942
+ return;
6943
+ }
6944
+ }
6911
6945
  if (isNullOrUndefined(args)) {
6912
6946
  const action = event.action;
6913
6947
  if (action !== 'tab' && action !== 'enter' && action !== 'space' && action !== 'escape') {
@@ -10723,6 +10757,29 @@ class Lists {
10723
10757
  parentList.parentElement.insertBefore(startNode.children[1], parentList);
10724
10758
  }
10725
10759
  }
10760
+ this.removeList(range, e);
10761
+ }
10762
+ removeList(range, e) {
10763
+ let startNode = this.parent.domNode.getSelectedNode(range.startContainer, range.startOffset);
10764
+ let endNode = this.parent.domNode.getSelectedNode(range.endContainer, range.endOffset);
10765
+ startNode = startNode.nodeName === 'BR' ? startNode.parentElement : startNode;
10766
+ endNode = endNode.nodeName === 'BR' ? endNode.parentElement : endNode;
10767
+ if (((range.commonAncestorContainer.nodeName === 'OL' || range.commonAncestorContainer.nodeName === 'UL' || range.commonAncestorContainer.nodeName === 'LI') &&
10768
+ isNullOrUndefined(endNode.nextElementSibling) && endNode.textContent.length === range.endOffset &&
10769
+ isNullOrUndefined(startNode.previousElementSibling) && range.startOffset === 0) ||
10770
+ (Browser.userAgent.indexOf('Firefox') != -1 && range.startContainer === range.endContainer && range.startContainer === this.parent.editableElement &&
10771
+ range.startOffset === 0 && range.endOffset === 1)) {
10772
+ if (Browser.userAgent.indexOf('Firefox') != -1) {
10773
+ detach(range.commonAncestorContainer.childNodes[0]);
10774
+ }
10775
+ else if (range.commonAncestorContainer.nodeName === 'LI') {
10776
+ detach(range.commonAncestorContainer.parentElement);
10777
+ }
10778
+ else {
10779
+ detach(range.commonAncestorContainer);
10780
+ }
10781
+ e.event.preventDefault();
10782
+ }
10726
10783
  }
10727
10784
  keyDownHandler(e) {
10728
10785
  if (e.event.which === 13) {
@@ -10747,6 +10804,7 @@ class Lists {
10747
10804
  && (commonAncestor.lastElementChild === closest(endNode, 'li')) && !range.collapsed) {
10748
10805
  detach(commonAncestor);
10749
10806
  }
10807
+ this.removeList(range, e);
10750
10808
  }
10751
10809
  if (e.event.which === 9) {
10752
10810
  const range = this.parent.nodeSelection.getRange(this.parent.currentDocument);
@@ -10962,6 +11020,19 @@ class Lists {
10962
11020
  }
10963
11021
  applyListsHandler(e) {
10964
11022
  let range = this.parent.nodeSelection.getRange(this.parent.currentDocument);
11023
+ if (Browser.userAgent.indexOf('Firefox') != -1 && range.startContainer === range.endContainer && range.startContainer === this.parent.editableElement) {
11024
+ const startChildNodes = range.startContainer.childNodes;
11025
+ let startNode = ((startChildNodes[(range.startOffset > 0) ? (range.startOffset - 1) : range.startOffset]) || range.startContainer);
11026
+ let endNode = (range.endContainer.childNodes[(range.endOffset > 0) ? (range.endOffset - 1) : range.endOffset] || range.endContainer);
11027
+ let lastSelectionNode = endNode.lastChild.nodeName === 'BR' ? (isNullOrUndefined(endNode.lastChild.previousSibling) ? endNode
11028
+ : endNode.lastChild.previousSibling) : endNode.lastChild;
11029
+ while (!isNullOrUndefined(lastSelectionNode) && lastSelectionNode.nodeName !== '#text' && lastSelectionNode.nodeName !== 'IMG' &&
11030
+ lastSelectionNode.nodeName !== 'BR' && lastSelectionNode.nodeName !== 'HR') {
11031
+ lastSelectionNode = lastSelectionNode.lastChild;
11032
+ }
11033
+ this.parent.nodeSelection.setSelectionText(this.parent.currentDocument, startNode, lastSelectionNode, 0, lastSelectionNode.textContent.length);
11034
+ range = this.parent.nodeSelection.getRange(this.parent.currentDocument);
11035
+ }
10965
11036
  if (range.startContainer === range.endContainer && range.startContainer === this.parent.editableElement &&
10966
11037
  range.startOffset === range.endOffset && range.startOffset === 0 &&
10967
11038
  this.parent.editableElement.textContent.length === 0 && (this.parent.editableElement.childNodes[0].nodeName != 'TABLE' &&
@@ -14731,8 +14802,16 @@ class SelectionCommands {
14731
14802
  for (; nodeTraverse && nodeTraverse.parentElement && nodeTraverse.parentElement !== endNode;
14732
14803
  // eslint-disable-next-line
14733
14804
  nodeTraverse = nodeTraverse) {
14734
- if (nodeTraverse.parentElement && nodeTraverse.parentElement.tagName.toLocaleLowerCase()
14735
- === formatNode.tagName.toLocaleLowerCase() &&
14805
+ let nodeTraverseCondition;
14806
+ if (formatNode.nodeName === 'SPAN') {
14807
+ nodeTraverseCondition = nodeTraverse.parentElement.tagName.toLocaleLowerCase()
14808
+ === formatNode.tagName.toLocaleLowerCase() && nodeTraverse.parentElement.getAttribute('style') === formatNodeStyles;
14809
+ }
14810
+ else {
14811
+ nodeTraverseCondition = nodeTraverse.parentElement.tagName.toLocaleLowerCase()
14812
+ === formatNode.tagName.toLocaleLowerCase();
14813
+ }
14814
+ if (nodeTraverse.parentElement && nodeTraverseCondition &&
14736
14815
  (nodeTraverse.parentElement.childElementCount > 1 || range.startOffset > 1)) {
14737
14816
  if (textNode.parentElement && textNode.parentElement.tagName.toLocaleLowerCase()
14738
14817
  === formatNode.tagName.toLocaleLowerCase()) {
@@ -17449,7 +17528,17 @@ class HtmlEditor {
17449
17528
  e.args.keyCode === 13) {
17450
17529
  this.spaceLink(e.args);
17451
17530
  if (this.parent.editorMode === 'HTML' && !this.parent.readonly) {
17452
- this.parent.notify(enterHandler, { args: e.args });
17531
+ const currentLength = this.parent.getText().trim().length;
17532
+ const selectionLength = this.parent.getSelection().length;
17533
+ const totalLength = (currentLength - selectionLength) + 1;
17534
+ if (!(this.parent.maxLength === -1 || totalLength <= this.parent.maxLength) &&
17535
+ e.args.keyCode === 13) {
17536
+ e.args.preventDefault();
17537
+ return;
17538
+ }
17539
+ else {
17540
+ this.parent.notify(enterHandler, { args: e.args });
17541
+ }
17453
17542
  }
17454
17543
  }
17455
17544
  if (e.args.action === 'space') {
@@ -25129,6 +25218,35 @@ let RichTextEditor = class RichTextEditor extends Component {
25129
25218
  this.formatter.saveData();
25130
25219
  }
25131
25220
  }
25221
+ if (this.maxLength !== -1 && !isNullOrUndefined(tool.command)) {
25222
+ let currentInsertContentLength = 0;
25223
+ if (tool.command === 'Links') {
25224
+ currentInsertContentLength = value.text.length === 0 ?
25225
+ value.url.length : value.text.length;
25226
+ }
25227
+ if (tool.command === 'Images' || tool.command === 'Table' || tool.command === 'Files') {
25228
+ currentInsertContentLength = 1;
25229
+ }
25230
+ if (tool.command === 'InsertHTML') {
25231
+ if (!isNullOrUndefined(value)) {
25232
+ let tempElem = this.createElement('div');
25233
+ tempElem.innerHTML = value;
25234
+ currentInsertContentLength = tempElem.textContent.length;
25235
+ }
25236
+ else if (!isNullOrUndefined(tool.value) && (tool.value === '<hr/>' || tool.value === '<br/>')) {
25237
+ currentInsertContentLength = 1;
25238
+ }
25239
+ }
25240
+ if (tool.command === 'InsertText') {
25241
+ currentInsertContentLength = value.length;
25242
+ }
25243
+ const currentLength = this.getText().trim().length;
25244
+ const selectionLength = this.getSelection().length;
25245
+ const totalLength = (currentLength - selectionLength) + currentInsertContentLength;
25246
+ if (!(this.maxLength === -1 || totalLength <= this.maxLength)) {
25247
+ return;
25248
+ }
25249
+ }
25132
25250
  this.formatter.editorManager.execCommand(tool.command, tool.subCommand ? tool.subCommand : (value ? value : tool.value), null, null, (value ? value : tool.value), (value ? value : tool.value));
25133
25251
  if (option && option.undo) {
25134
25252
  this.formatter.saveData();
@@ -25265,7 +25383,7 @@ let RichTextEditor = class RichTextEditor extends Component {
25265
25383
  range.endContainer;
25266
25384
  let closestLI = closest(endNode, 'LI');
25267
25385
  if (!isNullOrUndefined(closestLI) && endNode.textContent.length === range.endOffset &&
25268
- !range.collapsed) {
25386
+ !range.collapsed && isNullOrUndefined(endNode.nextElementSibling)) {
25269
25387
  closestLI.textContent = closestLI.textContent.trim();
25270
25388
  currentEndOffset = closestLI.textContent.length - 1;
25271
25389
  let currentLastElem = closestLI;
@@ -25361,6 +25479,17 @@ let RichTextEditor = class RichTextEditor extends Component {
25361
25479
  this.autoResize();
25362
25480
  }
25363
25481
  keyUp(e) {
25482
+ if (this.editorMode === "HTML") {
25483
+ const range = this.getRange();
25484
+ if (Browser.userAgent.indexOf('Firefox') != -1 && range.startContainer.nodeName === '#text' &&
25485
+ range.startContainer.parentElement === this.inputElement && this.enterKey !== 'BR') {
25486
+ const range = this.getRange();
25487
+ const tempElem = this.createElement(this.enterKey);
25488
+ range.startContainer.parentElement.insertBefore(tempElem, range.startContainer);
25489
+ tempElem.appendChild(range.startContainer);
25490
+ this.formatter.editorManager.nodeSelection.setSelectionText(this.contentModule.getDocument(), tempElem.childNodes[0], tempElem.childNodes[0], tempElem.childNodes[0].textContent.length, tempElem.childNodes[0].textContent.length);
25491
+ }
25492
+ }
25364
25493
  this.notify(keyUp, { member: 'keyup', args: e });
25365
25494
  if (e.code === 'KeyX' && e.which === 88 && e.keyCode === 88 && e.ctrlKey && (this.inputElement.innerHTML === '' ||
25366
25495
  this.inputElement.innerHTML === '<br>')) {
@@ -25512,7 +25641,7 @@ let RichTextEditor = class RichTextEditor extends Component {
25512
25641
  requestType: 'Paste'
25513
25642
  };
25514
25643
  this.trigger(actionBegin, evenArgs, (pasteArgs) => {
25515
- const currentLength = this.getText().trim().length;
25644
+ const currentLength = this.inputElement.textContent.length;
25516
25645
  const selectionLength = this.getSelection().length;
25517
25646
  const pastedContentLength = (isNullOrUndefined(e) || isNullOrUndefined(e.clipboardData))
25518
25647
  ? 0 : e.clipboardData.getData('text/plain').length;
@@ -27198,5 +27327,5 @@ RichTextEditor = __decorate$1([
27198
27327
  * Rich Text Editor component exported items
27199
27328
  */
27200
27329
 
27201
- 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, afterImageDelete, drop, xhtmlValidation, beforeImageUpload, resizeInitialized, renderFileManager, beforeImageDrop, dynamicModule, beforePasteCleanup, afterPasteCleanup, updateTbItemsStatus, showLinkDialog, closeLinkDialog, showImageDialog, closeImageDialog, showTableDialog, closeTableDialog, bindCssClass, 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, 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, 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 };
27330
+ 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, afterImageDelete, drop, xhtmlValidation, beforeImageUpload, resizeInitialized, renderFileManager, beforeImageDrop, dynamicModule, beforePasteCleanup, afterPasteCleanup, updateTbItemsStatus, showLinkDialog, closeLinkDialog, showImageDialog, closeImageDialog, showTableDialog, closeTableDialog, bindCssClass, blockInlineEmptyNodes, 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, 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, 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 };
27202
27331
  //# sourceMappingURL=ej2-richtexteditor.es2015.js.map