@syncfusion/ej2-richtexteditor 20.1.57 → 20.1.58

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)) {
@@ -4533,9 +4550,7 @@ class Toolbar$2 {
4533
4550
  * @deprecated
4534
4551
  */
4535
4552
  refreshToolbarOverflow() {
4536
- if (!this.parent.inlineMode.enable) {
4537
- this.baseToolbar.toolbarObj.refreshOverflow();
4538
- }
4553
+ this.baseToolbar.toolbarObj.refreshOverflow();
4539
4554
  }
4540
4555
  isToolbarDestroyed() {
4541
4556
  return this.baseToolbar.toolbarObj && !this.baseToolbar.toolbarObj.isDestroyed;
@@ -4716,7 +4731,9 @@ class Toolbar$2 {
4716
4731
  }
4717
4732
  }
4718
4733
  onRefresh() {
4719
- this.refreshToolbarOverflow();
4734
+ if (!this.parent.inlineMode.enable) {
4735
+ this.refreshToolbarOverflow();
4736
+ }
4720
4737
  this.parent.setContentHeight('', true);
4721
4738
  }
4722
4739
  /**
@@ -6910,6 +6927,21 @@ class Formatter {
6910
6927
  || self.contentModule.getPanel() === range.commonAncestorContainer)) {
6911
6928
  return;
6912
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
+ }
6913
6945
  if (isNullOrUndefined(args)) {
6914
6946
  const action = event.action;
6915
6947
  if (action !== 'tab' && action !== 'enter' && action !== 'space' && action !== 'escape') {
@@ -10725,6 +10757,29 @@ class Lists {
10725
10757
  parentList.parentElement.insertBefore(startNode.children[1], parentList);
10726
10758
  }
10727
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
+ }
10728
10783
  }
10729
10784
  keyDownHandler(e) {
10730
10785
  if (e.event.which === 13) {
@@ -10749,6 +10804,7 @@ class Lists {
10749
10804
  && (commonAncestor.lastElementChild === closest(endNode, 'li')) && !range.collapsed) {
10750
10805
  detach(commonAncestor);
10751
10806
  }
10807
+ this.removeList(range, e);
10752
10808
  }
10753
10809
  if (e.event.which === 9) {
10754
10810
  const range = this.parent.nodeSelection.getRange(this.parent.currentDocument);
@@ -10964,6 +11020,19 @@ class Lists {
10964
11020
  }
10965
11021
  applyListsHandler(e) {
10966
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
+ }
10967
11036
  if (range.startContainer === range.endContainer && range.startContainer === this.parent.editableElement &&
10968
11037
  range.startOffset === range.endOffset && range.startOffset === 0 &&
10969
11038
  this.parent.editableElement.textContent.length === 0 && (this.parent.editableElement.childNodes[0].nodeName != 'TABLE' &&
@@ -14733,8 +14802,16 @@ class SelectionCommands {
14733
14802
  for (; nodeTraverse && nodeTraverse.parentElement && nodeTraverse.parentElement !== endNode;
14734
14803
  // eslint-disable-next-line
14735
14804
  nodeTraverse = nodeTraverse) {
14736
- if (nodeTraverse.parentElement && nodeTraverse.parentElement.tagName.toLocaleLowerCase()
14737
- === 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 &&
14738
14815
  (nodeTraverse.parentElement.childElementCount > 1 || range.startOffset > 1)) {
14739
14816
  if (textNode.parentElement && textNode.parentElement.tagName.toLocaleLowerCase()
14740
14817
  === formatNode.tagName.toLocaleLowerCase()) {
@@ -17451,7 +17528,17 @@ class HtmlEditor {
17451
17528
  e.args.keyCode === 13) {
17452
17529
  this.spaceLink(e.args);
17453
17530
  if (this.parent.editorMode === 'HTML' && !this.parent.readonly) {
17454
- 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
+ }
17455
17542
  }
17456
17543
  }
17457
17544
  if (e.args.action === 'space') {
@@ -25131,6 +25218,35 @@ let RichTextEditor = class RichTextEditor extends Component {
25131
25218
  this.formatter.saveData();
25132
25219
  }
25133
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
+ }
25134
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));
25135
25251
  if (option && option.undo) {
25136
25252
  this.formatter.saveData();
@@ -25363,6 +25479,17 @@ let RichTextEditor = class RichTextEditor extends Component {
25363
25479
  this.autoResize();
25364
25480
  }
25365
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
+ }
25366
25493
  this.notify(keyUp, { member: 'keyup', args: e });
25367
25494
  if (e.code === 'KeyX' && e.which === 88 && e.keyCode === 88 && e.ctrlKey && (this.inputElement.innerHTML === '' ||
25368
25495
  this.inputElement.innerHTML === '<br>')) {
@@ -25514,7 +25641,7 @@ let RichTextEditor = class RichTextEditor extends Component {
25514
25641
  requestType: 'Paste'
25515
25642
  };
25516
25643
  this.trigger(actionBegin, evenArgs, (pasteArgs) => {
25517
- const currentLength = this.getText().trim().length;
25644
+ const currentLength = this.inputElement.textContent.length;
25518
25645
  const selectionLength = this.getSelection().length;
25519
25646
  const pastedContentLength = (isNullOrUndefined(e) || isNullOrUndefined(e.clipboardData))
25520
25647
  ? 0 : e.clipboardData.getData('text/plain').length;
@@ -27200,5 +27327,5 @@ RichTextEditor = __decorate$1([
27200
27327
  * Rich Text Editor component exported items
27201
27328
  */
27202
27329
 
27203
- 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 };
27204
27331
  //# sourceMappingURL=ej2-richtexteditor.es2015.js.map