@syncfusion/ej2-richtexteditor 20.2.46 → 20.2.50

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.
@@ -16,6 +16,11 @@ var created = 'create';
16
16
  * @deprecated
17
17
  */
18
18
  var destroyed = 'destroy';
19
+ /**
20
+ * @hidden
21
+ * @deprecated
22
+ */
23
+ var tableclass = 'tableclass';
19
24
  /**
20
25
  * @hidden
21
26
  * @deprecated
@@ -1972,6 +1977,8 @@ var defaultLocale = {
1972
1977
  'upperCase': 'Upper Case',
1973
1978
  'print': 'Print',
1974
1979
  'formats': 'Formats',
1980
+ 'numberFormatList': 'Number Format List',
1981
+ 'bulletFormatList': 'Bullet Format List',
1975
1982
  'sourcecode': 'Code View',
1976
1983
  'preview': 'Preview',
1977
1984
  'viewside': 'ViewSide',
@@ -2131,6 +2138,8 @@ var toolsLocale = {
2131
2138
  'uppercase': 'upperCase',
2132
2139
  'print': 'print',
2133
2140
  'formats': 'formats',
2141
+ 'numberformatlist': 'numberFormatList',
2142
+ 'bulletformatlist': 'bulletFormatList',
2134
2143
  'sourcecode': 'sourcecode',
2135
2144
  'preview': 'preview',
2136
2145
  'viewside': 'viewside',
@@ -12660,7 +12669,7 @@ var InsertHtml = /** @__PURE__ @class */ (function () {
12660
12669
  InsertHtml.getNodeCollection = function (range, nodeSelection, node) {
12661
12670
  var nodes = [];
12662
12671
  if (range.startOffset === range.endOffset && range.startContainer === range.endContainer &&
12663
- range.startContainer.nodeName != 'BR' &&
12672
+ range.startContainer.nodeName != 'BR' && range.startContainer.childNodes.length > 0 &&
12664
12673
  (range.startContainer.nodeName === 'TD' || (range.startContainer.nodeType !== 3 &&
12665
12674
  node.classList && node.classList.contains('pasteContent')))) {
12666
12675
  nodes.push(range.startContainer.childNodes[range.endOffset]);
@@ -12713,7 +12722,7 @@ var InsertHtml = /** @__PURE__ @class */ (function () {
12713
12722
  node.firstElementChild.insertAdjacentElement('afterend', liNode);
12714
12723
  }
12715
12724
  }
12716
- if (blockNode.nodeName === 'TD' || blockNode.nodeName === 'TH') {
12725
+ if (blockNode.nodeName === 'TD' || blockNode.nodeName === 'TH' || blockNode.nodeName === 'TR') {
12717
12726
  var tempSpan = createElement('span', { className: 'tempSpan' });
12718
12727
  range.insertNode(tempSpan);
12719
12728
  tempSpan.parentNode.replaceChild(node, tempSpan);
@@ -17746,6 +17755,7 @@ var HtmlEditor = /** @__PURE__ @class */ (function () {
17746
17755
  this.parent.on(selectionRestore, this.onSelectionRestore, this);
17747
17756
  this.parent.on(readOnlyMode, this.updateReadOnly, this);
17748
17757
  this.parent.on(paste, this.onPaste, this);
17758
+ this.parent.on(tableclass, this.isTableClassAdded, this);
17749
17759
  };
17750
17760
  HtmlEditor.prototype.updateReadOnly = function () {
17751
17761
  if (this.parent.readonly) {
@@ -17757,6 +17767,14 @@ var HtmlEditor = /** @__PURE__ @class */ (function () {
17757
17767
  removeClass([this.parent.element], CLS_RTE_READONLY);
17758
17768
  }
17759
17769
  };
17770
+ HtmlEditor.prototype.isTableClassAdded = function () {
17771
+ var tableElement = this.parent.inputElement.querySelectorAll('table');
17772
+ for (var i = 0; i < tableElement.length; i++) {
17773
+ if (!tableElement[i].classList.contains('e-rte-table')) {
17774
+ tableElement[i].classList.add('e-rte-table');
17775
+ }
17776
+ }
17777
+ };
17760
17778
  HtmlEditor.prototype.onSelectionSave = function () {
17761
17779
  var currentDocument = this.contentRenderer.getDocument();
17762
17780
  var range = this.nodeSelectionObj.getRange(currentDocument);
@@ -18305,6 +18323,7 @@ var HtmlEditor = /** @__PURE__ @class */ (function () {
18305
18323
  this.parent.off(selectionRestore, this.onSelectionRestore);
18306
18324
  this.parent.off(readOnlyMode, this.updateReadOnly);
18307
18325
  this.parent.off(paste, this.onPaste);
18326
+ this.parent.off(tableclass, this.isTableClassAdded);
18308
18327
  };
18309
18328
  HtmlEditor.prototype.render = function () {
18310
18329
  this.contentRenderer = this.renderFactory.getRenderer(RenderType.Content);
@@ -23081,6 +23100,7 @@ var ViewSource = /** @__PURE__ @class */ (function () {
23081
23100
  this.parent.trigger(actionComplete, { requestType: 'Preview', targetItem: 'Preview', args: args });
23082
23101
  this.parent.formatter.enableUndo(this.parent);
23083
23102
  this.parent.invokeChangeEvent();
23103
+ this.parent.notify(tableclass, {});
23084
23104
  };
23085
23105
  ViewSource.prototype.getTextAreaValue = function () {
23086
23106
  return (this.contentModule.getEditPanel().innerHTML === '<p><br></p>') ||
@@ -24116,6 +24136,17 @@ var Table = /** @__PURE__ @class */ (function () {
24116
24136
  };
24117
24137
  this.parent.formatter.process(this.parent, (delKey) ? cmd : args, args.originalEvent, value);
24118
24138
  this.contentModule.getEditPanel().focus();
24139
+ if (this.parent.inputElement.innerHTML === null || this.parent.inputElement.innerHTML === '') {
24140
+ if (this.parent.enterKey === 'DIV') {
24141
+ this.contentModule.getEditPanel().innerHTML = '<div><br/></div>';
24142
+ }
24143
+ else if (this.parent.enterKey === 'BR') {
24144
+ this.contentModule.getEditPanel().innerHTML = '<br/>';
24145
+ }
24146
+ else {
24147
+ this.contentModule.getEditPanel().innerHTML = '<p><br/></p>';
24148
+ }
24149
+ }
24119
24150
  this.removeResizeElement();
24120
24151
  this.hideTableQuickToolbar();
24121
24152
  };
@@ -25609,7 +25640,9 @@ var __decorate$1 = (undefined && undefined.__decorate) || function (decorators,
25609
25640
  var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
25610
25641
  __extends$4(RichTextEditor, _super);
25611
25642
  function RichTextEditor(options, element) {
25612
- return _super.call(this, options, element) || this;
25643
+ var _this = _super.call(this, options, element) || this;
25644
+ _this.needsID = true;
25645
+ return _this;
25613
25646
  }
25614
25647
  /**
25615
25648
  * To provide the array of modules needed for component rendering
@@ -25694,7 +25727,6 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
25694
25727
  this.isFocusOut = false;
25695
25728
  this.isRTE = false;
25696
25729
  this.isBlur = true;
25697
- this.needsID = true;
25698
25730
  this.defaultResetValue = null;
25699
25731
  this.isResizeInitialized = false;
25700
25732
  };
@@ -26016,6 +26048,7 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
26016
26048
  // eslint-disable-next-line
26017
26049
  (!this.enabled) ? this.unWireEvents() : this.eventInitializer();
26018
26050
  this.notify(bindCssClass, { cssClass: this.cssClass });
26051
+ this.notify(tableclass, {});
26019
26052
  this.renderComplete();
26020
26053
  };
26021
26054
  /**
@@ -26588,6 +26621,9 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
26588
26621
  this.value = this.serializeValue(((this.enableHtmlEncode) ? this.encode(decode(val)) : val));
26589
26622
  }
26590
26623
  this.updatePanelValue();
26624
+ if (this.inputElement) {
26625
+ this.notify(tableclass, {});
26626
+ }
26591
26627
  this.setPlaceHolder();
26592
26628
  this.notify(xhtmlValidation, { module: 'XhtmlValidation', newProp: newProp, oldProp: oldProp });
26593
26629
  if (this.enableXhtml) {
@@ -27419,6 +27455,7 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
27419
27455
  }
27420
27456
  this.setProperties({ value: this.getUpdatedValue() }, true);
27421
27457
  this.valueContainer.value = this.value;
27458
+ this.isValueChangeBlurhandler = false;
27422
27459
  this.invokeChangeEvent();
27423
27460
  };
27424
27461
  RichTextEditor.prototype.updateIntervalValue = function () {
@@ -27474,6 +27511,7 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
27474
27511
  var value = this.getUpdatedValue();
27475
27512
  this.setProperties({ value: value });
27476
27513
  this.notify(toolbarRefresh, { args: e, documentNode: document });
27514
+ this.isValueChangeBlurhandler = true;
27477
27515
  this.invokeChangeEvent();
27478
27516
  this.isFocusOut = true;
27479
27517
  this.isBlur = false;
@@ -27521,7 +27559,8 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
27521
27559
  currentValue = this.value;
27522
27560
  }
27523
27561
  var eventArgs = {
27524
- value: currentValue
27562
+ value: currentValue,
27563
+ isInteracted: this.isValueChangeBlurhandler
27525
27564
  };
27526
27565
  if (this.value !== this.cloneValue) {
27527
27566
  this.trigger('change', eventArgs);
@@ -28013,5 +28052,5 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
28013
28052
  * Rich Text Editor component exported items
28014
28053
  */
28015
28054
 
28016
- 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, moduleDestroy, 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 };
28055
+ 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, tableclass, 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, moduleDestroy, 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 };
28017
28056
  //# sourceMappingURL=ej2-richtexteditor.es5.js.map