@syncfusion/ej2-richtexteditor 27.1.55 → 27.1.57

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.
@@ -6628,6 +6628,9 @@ var Link = /** @__PURE__ @class */ (function () {
6628
6628
  if (document.body.contains(proxy.dialogObj.element)) {
6629
6629
  this.selfLink.dialogObj.hide({ returnValue: false });
6630
6630
  }
6631
+ if (this.selfLink.dialogObj !== null) {
6632
+ return;
6633
+ }
6631
6634
  if (isIDevice$1() && proxy.parent.iframeSettings.enable) {
6632
6635
  select('iframe', proxy.parent.element).contentWindow.focus();
6633
6636
  }
@@ -6925,6 +6928,18 @@ var imageResizeFactor = {
6925
6928
  botRight: [1, 1],
6926
6929
  botLeft: [-1, 1]
6927
6930
  };
6931
+ /**
6932
+ * Resize factor for image in iframe editor.
6933
+ *
6934
+ *@hidden
6935
+ *
6936
+ */
6937
+ var iframeResizeFactor = {
6938
+ topLeft: [-1.2, -1.2],
6939
+ topRight: [1.2, -1.2],
6940
+ botRight: [1.2, 1.2],
6941
+ botLeft: [-1.2, 1.2]
6942
+ };
6928
6943
  /**
6929
6944
  * Mention restrict key configuration.
6930
6945
  *
@@ -7138,8 +7153,14 @@ var Image$1 = /** @__PURE__ @class */ (function () {
7138
7153
  if (this.parent.formatter.getUndoRedoStack().length === 0) {
7139
7154
  this.parent.formatter.saveData();
7140
7155
  }
7141
- this.pageX = this.getPointX(e);
7142
- this.pageY = this.getPointY(e);
7156
+ if (this.parent.iframeSettings.enable) {
7157
+ this.pageX = e.screenX;
7158
+ this.pageY = e.screenY;
7159
+ }
7160
+ else {
7161
+ this.pageX = this.getPointX(e);
7162
+ this.pageY = this.getPointY(e);
7163
+ }
7143
7164
  e.preventDefault();
7144
7165
  e.stopImmediatePropagation();
7145
7166
  this.resizeBtnInit();
@@ -7404,29 +7425,50 @@ var Image$1 = /** @__PURE__ @class */ (function () {
7404
7425
  return;
7405
7426
  }
7406
7427
  if (this.resizeBtnStat.botRight || this.resizeBtnStat.botLeft || this.resizeBtnStat.topRight || this.resizeBtnStat.topLeft) {
7407
- var pageX = this.getPointX(e);
7408
- var pageY = this.getPointY(e);
7409
- var resizeFactor = this.getResizeFactor(this.currentResizeHandler);
7410
- var diffX = (pageX - this.pageX);
7411
- var diffY = (pageY - this.pageY);
7412
- var currentWidth = this.imgEle.clientWidth;
7413
- var currentHeight = this.imgEle.clientHeight;
7414
- var width = diffX * resizeFactor[0] + currentWidth;
7415
- var height = diffY * resizeFactor[1] + currentHeight;
7416
- var dimensions = this.adjustDimensions(width, height, diffX, diffY, this.aspectRatio);
7417
- this.pageX = pageX;
7418
- this.pageY = pageY;
7419
- this.imgDupMouseMove(dimensions.width + 'px', dimensions.height + 'px', e);
7428
+ if (this.parent.iframeSettings.enable) {
7429
+ var resizeFactor = this.getResizeFactor(this.currentResizeHandler);
7430
+ var currentScreenX = e.screenX;
7431
+ var currentScreenY = e.screenY;
7432
+ var currentWidth = this.imgEle.clientWidth;
7433
+ var currentHeight = this.imgEle.clientHeight;
7434
+ var deltaX = currentScreenX - this.pageX;
7435
+ var deltaY = currentScreenY - this.pageY;
7436
+ var width = deltaX * resizeFactor[0] + currentWidth;
7437
+ var height = deltaY * resizeFactor[1] + currentHeight;
7438
+ var dimensions = this.adjustDimensions(width, height, deltaX, deltaY, this.aspectRatio);
7439
+ this.pageX = currentScreenX;
7440
+ this.pageY = currentScreenY;
7441
+ this.imgDupMouseMove(dimensions.width + 'px', dimensions.height + 'px', e);
7442
+ this.parent.autoResize();
7443
+ }
7444
+ else {
7445
+ var pageX = this.getPointX(e);
7446
+ var pageY = this.getPointY(e);
7447
+ var resizeFactor = this.getResizeFactor(this.currentResizeHandler);
7448
+ var diffX = (pageX - this.pageX);
7449
+ var diffY = (pageY - this.pageY);
7450
+ var currentWidth = this.imgEle.clientWidth;
7451
+ var currentHeight = this.imgEle.clientHeight;
7452
+ var width = diffX * resizeFactor[0] + currentWidth;
7453
+ var height = diffY * resizeFactor[1] + currentHeight;
7454
+ var dimensions = this.adjustDimensions(width, height, diffX, diffY, this.aspectRatio);
7455
+ this.pageX = pageX;
7456
+ this.pageY = pageY;
7457
+ this.imgDupMouseMove(dimensions.width + 'px', dimensions.height + 'px', e);
7458
+ }
7420
7459
  }
7421
7460
  };
7422
7461
  Image.prototype.adjustDimensions = function (width, height, diffX, diffY, aspectRatio) {
7423
7462
  width = (width < 16) ? 16 : width;
7424
7463
  height = (height < 16) ? 16 : height;
7425
- var isWidthPrimary = Math.abs(diffX) > Math.abs(diffY);
7464
+ var isWidthPrimary = width > height;
7426
7465
  var dimensions = this.adjustDimensionsByAspectRatio(width, height, aspectRatio, isWidthPrimary);
7427
7466
  return dimensions;
7428
7467
  };
7429
7468
  Image.prototype.getResizeFactor = function (value) {
7469
+ if (this.parent.iframeSettings.enable) {
7470
+ return iframeResizeFactor[value];
7471
+ }
7430
7472
  return imageResizeFactor[value];
7431
7473
  };
7432
7474
  Image.prototype.findAspectRatio = function (image) {
@@ -8519,6 +8561,9 @@ var Image$1 = /** @__PURE__ @class */ (function () {
8519
8561
  proxy.uploadUrl.cssClass = (proxy.parent.insertImageSettings.display === 'inline' ?
8520
8562
  CLS_IMGINLINE : CLS_IMGBREAK);
8521
8563
  proxy.dialogObj.hide({ returnValue: false });
8564
+ if (proxy.dialogObj !== null) {
8565
+ return;
8566
+ }
8522
8567
  proxy.parent.formatter.process(proxy.parent, this.args, this.args.originalEvent, proxy.uploadUrl);
8523
8568
  proxy.uploadUrl.url = '';
8524
8569
  if (proxy.contentModule.getEditPanel().querySelector('.e-img-resize')) {
@@ -8549,8 +8594,11 @@ var Image$1 = /** @__PURE__ @class */ (function () {
8549
8594
  maxHeight: proxy.parent.insertImageSettings.maxHeight
8550
8595
  }
8551
8596
  };
8552
- proxy.parent.formatter.process(proxy.parent, this.args, this.args.originalEvent, value);
8553
8597
  proxy.dialogObj.hide({ returnValue: false });
8598
+ if (proxy.dialogObj !== null) {
8599
+ return;
8600
+ }
8601
+ proxy.parent.formatter.process(proxy.parent, this.args, this.args.originalEvent, value);
8554
8602
  }
8555
8603
  };
8556
8604
  Image.prototype.imgsizeInput = function (e) {
@@ -10209,6 +10257,9 @@ var Audio = /** @__PURE__ @class */ (function () {
10209
10257
  proxy.uploadUrl.cssClass = (proxy.parent.insertAudioSettings.layoutOption === 'Inline' ?
10210
10258
  CLS_AUDIOINLINE : CLS_AUDIOBREAK);
10211
10259
  proxy.dialogObj.hide({ returnValue: false });
10260
+ if (proxy.dialogObj !== null) {
10261
+ return;
10262
+ }
10212
10263
  proxy.parent.formatter.process(proxy.parent, this.args, this.args.originalEvent, proxy.uploadUrl);
10213
10264
  proxy.uploadUrl.url = '';
10214
10265
  }
@@ -10227,8 +10278,11 @@ var Audio = /** @__PURE__ @class */ (function () {
10227
10278
  url: url, selection: this.selection, fileName: name_1,
10228
10279
  selectParent: this.selectParent
10229
10280
  };
10230
- proxy.parent.formatter.process(proxy.parent, this.args, this.args.originalEvent, value);
10231
10281
  proxy.dialogObj.hide({ returnValue: false });
10282
+ if (proxy.dialogObj !== null) {
10283
+ return;
10284
+ }
10285
+ proxy.parent.formatter.process(proxy.parent, this.args, this.args.originalEvent, value);
10232
10286
  }
10233
10287
  };
10234
10288
  /* eslint-disable */
@@ -11702,6 +11756,9 @@ var Video = /** @__PURE__ @class */ (function () {
11702
11756
  maxHeight: proxy.parent.insertVideoSettings.maxHeight
11703
11757
  };
11704
11758
  proxy.dialogObj.hide({ returnValue: false });
11759
+ if (proxy.dialogObj !== null) {
11760
+ return;
11761
+ }
11705
11762
  proxy.parent.formatter.process(proxy.parent, this.args, this.args.originalEvent, proxy.uploadUrl);
11706
11763
  proxy.uploadUrl.url = '';
11707
11764
  }
@@ -11728,8 +11785,11 @@ var Video = /** @__PURE__ @class */ (function () {
11728
11785
  maxHeight: proxy.parent.insertVideoSettings.maxHeight
11729
11786
  }
11730
11787
  };
11731
- proxy.parent.formatter.process(proxy.parent, this.args, this.args.originalEvent, value);
11732
11788
  proxy.dialogObj.hide({ returnValue: false });
11789
+ if (proxy.dialogObj !== null) {
11790
+ return;
11791
+ }
11792
+ proxy.parent.formatter.process(proxy.parent, this.args, this.args.originalEvent, value);
11733
11793
  }
11734
11794
  };
11735
11795
  /* eslint-disable */
@@ -13767,7 +13827,8 @@ var Table = /** @__PURE__ @class */ (function () {
13767
13827
  else {
13768
13828
  var tableReBox = _this.contentModule.getEditPanel().querySelector('.e-table-box');
13769
13829
  var tableWidth = parseInt(getComputedStyle(_this.curTable).width, 10);
13770
- var tableHeight = parseInt(getComputedStyle(_this.curTable).height, 10);
13830
+ var tableHeight = !isNaN(parseInt(_this.curTable.style.height, 10)) ?
13831
+ parseInt(_this.curTable.style.height, 10) : parseInt(getComputedStyle(_this.curTable).height, 10);
13771
13832
  var paddingSize = +getComputedStyle(_this.contentModule.getEditPanel()).paddingRight.match(/\d/g).join('');
13772
13833
  var rteWidth = _this.contentModule.getEditPanel().offsetWidth -
13773
13834
  (_this.contentModule.getEditPanel().offsetWidth -
@@ -13912,7 +13973,7 @@ var Table = /** @__PURE__ @class */ (function () {
13912
13973
  _this.curTable.style.height = tableHeight + mouseY + 'px';
13913
13974
  if (!isNullOrUndefined(tableReBox)) {
13914
13975
  tableReBox.classList.add('e-rbox-select');
13915
- tableReBox.style.cssText = 'top: ' + (_this.calcPos(_this.curTable).top + tableHeight - 4) +
13976
+ tableReBox.style.cssText = 'top: ' + (_this.calcPos(_this.curTable).top + parseInt(getComputedStyle(_this.curTable).height, 10) - 4) +
13916
13977
  'px; left:' + (_this.calcPos(_this.curTable).left + tableWidth - 4) + 'px;';
13917
13978
  }
13918
13979
  if (_this.curTable.closest('li')) {
@@ -25481,8 +25542,8 @@ var ImageCommand = /** @__PURE__ @class */ (function () {
25481
25542
  (Browser.isIE ? selectedNode.previousSibling : selectedNode.previousElementSibling);
25482
25543
  var onImageLoadEvent_1 = function () {
25483
25544
  if (!isNullOrUndefined(_this.parent.currentDocument)) {
25484
- imgElm_1.setAttribute('width', _this.calculateStyleValue(imgElm_1.offsetWidth));
25485
- imgElm_1.setAttribute('height', _this.calculateStyleValue(imgElm_1.offsetHeight));
25545
+ imgElm_1.setAttribute('width', imgElm_1.offsetWidth.toString());
25546
+ imgElm_1.setAttribute('height', imgElm_1.offsetHeight.toString());
25486
25547
  e.callBack({
25487
25548
  requestType: (e.value === 'Replace') ? (e.item.subCommand = 'Replace', 'Replace') : 'Images',
25488
25549
  editorMode: 'HTML',
@@ -29095,6 +29156,9 @@ var MsWordPaste = /** @__PURE__ @class */ (function () {
29095
29156
  e.callBack(elm.innerHTML, this.cropImageDimensions, source);
29096
29157
  }
29097
29158
  else {
29159
+ if (source === PASTE_SOURCE[2]) {
29160
+ this.handleOneNoteContent(elm);
29161
+ }
29098
29162
  e.callBack(elm.innerHTML, null, source);
29099
29163
  }
29100
29164
  };
@@ -30089,6 +30153,18 @@ var MsWordPaste = /** @__PURE__ @class */ (function () {
30089
30153
  }
30090
30154
  return 'html';
30091
30155
  };
30156
+ MsWordPaste.prototype.handleOneNoteContent = function (element) {
30157
+ var allListElements = element.querySelectorAll('ul, ol');
30158
+ if (allListElements.length > 0) {
30159
+ for (var i = 0; i < allListElements.length; i++) {
30160
+ // Removing the ul and ol parent node for the p tag
30161
+ var currentList = allListElements[i];
30162
+ if (currentList.querySelectorAll('li').length === 0 && currentList.childNodes.length > 0) {
30163
+ InsertMethods.unwrap(currentList);
30164
+ }
30165
+ }
30166
+ }
30167
+ };
30092
30168
  MsWordPaste.prototype.destroy = function () {
30093
30169
  this.removeEventListener();
30094
30170
  };
@@ -33862,6 +33938,10 @@ var Resize = /** @__PURE__ @class */ (function () {
33862
33938
  this.parent.element.style.height = eventType.clientY - boundRect.top + 'px';
33863
33939
  this.parent.element.style.width = (!this.parent.enableRtl) ? eventType.clientX - boundRect.left + 'px' : boundRect.right - eventType.clientX + 'px';
33864
33940
  }
33941
+ var rteContent = this.parent.element.querySelector('#' + this.parent.getID() + '_source-view');
33942
+ if (!isNullOrUndefined(rteContent)) {
33943
+ rteContent.style.height = this.parent.element.style.height;
33944
+ }
33865
33945
  this.parent.refreshUI();
33866
33946
  };
33867
33947
  Resize.prototype.stopResize = function (e) {
@@ -40098,5 +40178,5 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
40098
40178
  return RichTextEditor;
40099
40179
  }(Component));
40100
40180
 
40101
- export { ACTION, ALIGNMENT_TYPE, ALLOWED_ACTIONKEYS, AUDIO, Alignments, Audio, AudioCommand, BLOCKQUOTE_LIST_HANDLE, BLOCK_TAGS, BaseQuickToolbar, BaseToolbar, CLASS_AUDIO, CLASS_AUDIO_BREAK, CLASS_AUDIO_FOCUS, CLASS_AUDIO_INLINE, CLASS_AUDIO_WRAP, CLASS_CAPTION, CLASS_CAPTION_INLINE, CLASS_CLICK_ELEM, CLASS_EMBED_VIDEO_WRAP, CLASS_IMAGE_BREAK, CLASS_IMAGE_CENTER, CLASS_IMAGE_INLINE, CLASS_IMAGE_LEFT, CLASS_IMAGE_RIGHT, CLASS_RTE_CAPTION, CLASS_VIDEO, CLASS_VIDEO_BREAK, CLASS_VIDEO_CENTER, CLASS_VIDEO_CLICK_ELEM, CLASS_VIDEO_FOCUS, CLASS_VIDEO_INLINE, CLASS_VIDEO_LEFT, CLASS_VIDEO_RIGHT, CLASS_VIDEO_WRAP, CLEAR_COMMAND, CLEAR_TYPE, CLS_ACTIVE, CLS_ALIGN_TB_BTN, CLS_AUDIOBREAK, CLS_AUDIOINLINE, CLS_AUDIOWRAP, CLS_AUD_FOCUS, CLS_BACK, CLS_BACKGROUND_COLOR_DROPDOWN, CLS_BACKGROUND_COLOR_PICKER, CLS_BACKGROUND_COLOR_TARGET, CLS_BULLETFORMATLIST_TB_BTN, CLS_CAPINLINE, CLS_CAPTION, CLS_CLICKELEM, CLS_COLOR_CONTENT, CLS_COLOR_PALETTE, CLS_CONTENT, CLS_COUNT, CLS_CUSTOM_TILE, CLS_DISABLED, CLS_DROPAREA, CLS_DROPDOWN_BTN, CLS_DROPDOWN_ICONS, CLS_DROPDOWN_ITEMS, CLS_DROPDOWN_POPUP, CLS_ERROR, CLS_EXPAND_OPEN, CLS_FOCUS, CLS_FONT_COLOR_DROPDOWN, CLS_FONT_COLOR_PICKER, CLS_FONT_COLOR_TARGET, CLS_FONT_NAME_TB_BTN, CLS_FONT_SIZE_TB_BTN, CLS_FORMATS_TB_BTN, CLS_FULL_SCREEN, CLS_HIDE, CLS_HR_SEPARATOR, CLS_ICONS, CLS_IMAGE_POP, CLS_IMGBREAK, CLS_IMGCENTER, CLS_IMGINLINE, CLS_IMGLEFT, CLS_IMGRIGHT, CLS_IMG_FOCUS, CLS_IMG_INNER, CLS_IMG_RESIZE, CLS_INLINE, CLS_INLINE_DROPDOWN, CLS_INLINE_POP, CLS_LIST_PRIMARY_CONTENT, CLS_MAXIMIZE, CLS_MINIMIZE, CLS_NOCOLOR_ITEM, CLS_NUMBERFORMATLIST_TB_BTN, CLS_POP, CLS_POPUP, CLS_POPUP_OPEN, CLS_QUICK_DROPDOWN, CLS_QUICK_POP, CLS_QUICK_TB, CLS_RESIZE, CLS_RM_WHITE_SPACE, CLS_RTE, CLS_RTE_CAPTION, CLS_RTE_CONTAINER, CLS_RTE_CONTENT, CLS_RTE_DIALOG_MIN_HEIGHT, CLS_RTE_DIALOG_UPLOAD, CLS_RTE_DRAG_IMAGE, CLS_RTE_ELEMENTS, CLS_RTE_EXPAND_TB, CLS_RTE_FIXED_TB_EXPAND, CLS_RTE_HIDDEN, CLS_RTE_IMAGE, CLS_RTE_PASTE_CANCEL, CLS_RTE_PASTE_KEEP_FORMAT, CLS_RTE_PASTE_OK, CLS_RTE_PASTE_PLAIN_FORMAT, CLS_RTE_PASTE_REMOVE_FORMAT, CLS_RTE_READONLY, CLS_RTE_RES_CNT, CLS_RTE_RES_EAST, CLS_RTE_RES_HANDLE, CLS_RTE_RES_WEST, CLS_RTE_SOURCE_CODE_TXTAREA, CLS_RTE_TABLE_RESIZE, CLS_RTE_TB_ENABLED, CLS_RTE_UPLOAD_POPUP, CLS_RTL, CLS_SCRIPT_SHEET, CLS_SEPARATOR, CLS_SHOW, CLS_STYLE_SHEET, CLS_TABLE, CLS_TABLE_BORDER, CLS_TABLE_MULTI_CELL, CLS_TABLE_SEL, CLS_TABLE_SEL_END, CLS_TB_ALT_BOR, CLS_TB_BOX_RES, CLS_TB_BTN, CLS_TB_COL_RES, CLS_TB_DASH_BOR, CLS_TB_EXTENDED, CLS_TB_FIXED, CLS_TB_FLOAT, CLS_TB_INLINE, CLS_TB_IOS_FIX, CLS_TB_ITEM, CLS_TB_ROW_RES, CLS_TB_STATIC, CLS_TB_WRAP, CLS_TEXT_POP, CLS_TEXT_QUICK_TB, CLS_TOOLBAR, CLS_UPLOAD_FILES, CLS_VIDEOBREAK, CLS_VIDEOINLINE, CLS_VIDEOWRAP, CLS_VID_CLICK_ELEM, CLS_VID_FOCUS, CLS_VISIBLE, CLS_WARNING, ClearFormat, ClearFormatExec, ColorPickerInput, ContentRender, Count, DEFAULT_TAG, DELETECOLUMN, DELETEROW, DESTROY, DOMNode, DialogRenderer, DialogType, DropDownButtons, EMOJI_PICKER_ACTIONS, EditorManager, EmojiPicker, EmojiPickerAction, ExecCommandCallBack, FORMAT_PAINTER_ACTIONS, FORMAT_TYPE, FileManager, FormatPainter, FormatPainterActions, Formats, Formatter, FullScreen, HTMLFormatter, HtmlEditor, HtmlToolbarStatus, IGNORE_BLOCK_TAGS, IMAGE, INDENT_TYPE, INSERTHTML_TYPE, INSERT_COLUMN, INSERT_ROW, INSERT_TEXT_COMMAND, INSERT_TEXT_TYPE, INTERNAL_DESTROY, IframeContentRender, Image$1 as Image, ImageCommand, ImageInputSource, ImportExport, Indents, InsertHtml, InsertHtmlExec, InsertMethods, InsertTextExec, IsFormatted, KEY_DOWN, KEY_DOWN_HANDLER, KEY_UP, KEY_UP_HANDLER, KeyboardEvents, LINK, LINK_COMMAND, LISTS_COMMAND, LIST_TYPE, Link, LinkCommand, Lists, MDFormats, MDLink, MDLists, MDSelectionFormats, MDTable, MD_TABLE, MODEL_CHANGED, MODEL_CHANGED_PLUGIN, MOUSE_DOWN, MS_WORD_CLEANUP, MS_WORD_CLEANUP_PLUGIN, MarkdownEditor, MarkdownFormatter, MarkdownParser, MarkdownRender, MarkdownSelection, MarkdownToolbarStatus, MsWordPaste, NodeCutter, NodeSelection, ON_BEGIN, PASTE_SOURCE, PasteCleanup, PopupRenderer, QuickToolbar, REMOVETABLE, Render, RenderType, RendererFactory, Resize, RichTextEditor, SELECTION_TYPE, SELF_CLOSING_TAGS, SPACE_ACTION, SelectionBasedExec, SelectionCommands, ServiceLocator, SlashMenu, TABLE, TABLEHEADER, TABLE_BLOCK_TAGS, TABLE_HORIZONTAL_SPLIT, TABLE_MERGE, TABLE_MOVE, TABLE_VERTICAL_ALIGN, TABLE_VERTICAL_SPLIT, Table, TableCommand, Toolbar, ToolbarAction, ToolbarRenderer, ToolbarStatus, ToolbarType, UndoRedoCommands, UndoRedoManager, VIDEO, Video, VideoCommand, ViewSource, XhtmlValidation, actionBegin, actionComplete, actionSuccess, afterImageDelete, afterKeyDown, afterMediaDelete, afterPasteCleanup, audioDelete, audioToolbarAction, autoResize, beforeDialogClose, beforeDialogOpen, beforeDropDownItemRender, beforeDropDownOpen, beforeFileUpload, beforeImageDrop, beforeImageUpload, beforePasteCleanup, beforeQuickToolbarOpen, bindCssClass, bindOnEnd, blockEmptyNodes, checkUndo, cleanupResizeElements, clearDialogObj, closeAudioDialog, closeImageDialog, closeLinkDialog, closeTableDialog, closeTooltip, closeVideoDialog, colorPickerChanged, contentBlur, contentChanged, contentFocus, contentscroll, conversionFactors, convertToBlob, count, createTable, created, decode, destroy, destroyTooltip, destroyed, dialogClose, dialogOpen, disableFullScreen, dispatchEvent, docClick, documentClickClosedBy, drop, dropDownSelect, dynamicModule, editAreaClick, editLink, emojiPicker, enableFullScreen, enterHandler, execCommandCallBack, executeGroup, expandPopupClick, fileRemoving, fileSelected, fileUploadFailed, fileUploadSuccess, fileUploading, focusChange, formatPainterClick, formatPainterDoubleClick, getCollection, getDefaultValue, getDropDownValue, getEditValue, getFormattedFontSize, getIndex, getLocaleFontFormat, getSelectedHtml, getTBarItemsIndex, getTextNodesUnder, getTooltipText, hasClass, hidePopup, htmlKeyConfig, htmlToolbarClick, iframeMouseDown, imageAlt, imageBreak, imageCaption, imageCenter, imageDelete, imageInline, imageLeft, imageLink, imageRemoving, imageResizeFactor, imageRight, imageSelected, imageSize, imageToolbarAction, imageUploadFailed, imageUploadSuccess, imageUploading, imgModule, initialEnd, initialLoad, inlineEmptyNodes, insertAudio, insertCompleted, insertImage, insertLink, insertVideo, isEditableValueEmpty, isIDevice, keyDown, keyUp, linkToolbarAction, listConversionFilters, load, markdownFormatTags, markdownKeyConfig, markdownListsTags, markdownSelectionTags, markdownToolbarClick, markerClassName, mentionRestrictKeys, modelChanged, mouseDown, mouseUp, onExport, onHandleFontsizeChange, onImport, onResize, openLink, pageYOffset, parseHtml, paste, pasteClean, pasteCleanupGroupingTags, popupHide, quickToolbarClose, quickToolbarOpen, readOnlyMode, redo, refreshBegin, renderFileManager, renderInlineToolbar, resizeInitialized, resizeStart, resizeStop, rtlMode, sanitizeHelper, scroll, selectAll, selectRange, selectionCommand, selectionRestore, selectionSave, selfClosingTags, setAttributes, setToolbarStatus, showAudioDialog, showColorPicker, showImageDialog, showLinkDialog, showTableDialog, showVideoDialog, sourceCode, sourceCodeMouseDown, statusCollection, supportedUnits, tableColorPickerChanged, tableModulekeyUp, tableToolbarAction, tableclass, toObjectLowerCase, toolbarClick, toolbarCreated, toolbarOpen, toolbarRefresh, toolbarRenderComplete, toolbarUpdated, unLink, undo, updateDropDownFontFormatLocale, updateSource, updateTbItemsStatus, updateTextNode, updateToolbarItem, updateUndoRedoStatus, updateValueOnIdle, updatedToolbarStatus, videoDelete, videoSize, videoToolbarAction, windowResize, xhtmlValidation };
40181
+ export { ACTION, ALIGNMENT_TYPE, ALLOWED_ACTIONKEYS, AUDIO, Alignments, Audio, AudioCommand, BLOCKQUOTE_LIST_HANDLE, BLOCK_TAGS, BaseQuickToolbar, BaseToolbar, CLASS_AUDIO, CLASS_AUDIO_BREAK, CLASS_AUDIO_FOCUS, CLASS_AUDIO_INLINE, CLASS_AUDIO_WRAP, CLASS_CAPTION, CLASS_CAPTION_INLINE, CLASS_CLICK_ELEM, CLASS_EMBED_VIDEO_WRAP, CLASS_IMAGE_BREAK, CLASS_IMAGE_CENTER, CLASS_IMAGE_INLINE, CLASS_IMAGE_LEFT, CLASS_IMAGE_RIGHT, CLASS_RTE_CAPTION, CLASS_VIDEO, CLASS_VIDEO_BREAK, CLASS_VIDEO_CENTER, CLASS_VIDEO_CLICK_ELEM, CLASS_VIDEO_FOCUS, CLASS_VIDEO_INLINE, CLASS_VIDEO_LEFT, CLASS_VIDEO_RIGHT, CLASS_VIDEO_WRAP, CLEAR_COMMAND, CLEAR_TYPE, CLS_ACTIVE, CLS_ALIGN_TB_BTN, CLS_AUDIOBREAK, CLS_AUDIOINLINE, CLS_AUDIOWRAP, CLS_AUD_FOCUS, CLS_BACK, CLS_BACKGROUND_COLOR_DROPDOWN, CLS_BACKGROUND_COLOR_PICKER, CLS_BACKGROUND_COLOR_TARGET, CLS_BULLETFORMATLIST_TB_BTN, CLS_CAPINLINE, CLS_CAPTION, CLS_CLICKELEM, CLS_COLOR_CONTENT, CLS_COLOR_PALETTE, CLS_CONTENT, CLS_COUNT, CLS_CUSTOM_TILE, CLS_DISABLED, CLS_DROPAREA, CLS_DROPDOWN_BTN, CLS_DROPDOWN_ICONS, CLS_DROPDOWN_ITEMS, CLS_DROPDOWN_POPUP, CLS_ERROR, CLS_EXPAND_OPEN, CLS_FOCUS, CLS_FONT_COLOR_DROPDOWN, CLS_FONT_COLOR_PICKER, CLS_FONT_COLOR_TARGET, CLS_FONT_NAME_TB_BTN, CLS_FONT_SIZE_TB_BTN, CLS_FORMATS_TB_BTN, CLS_FULL_SCREEN, CLS_HIDE, CLS_HR_SEPARATOR, CLS_ICONS, CLS_IMAGE_POP, CLS_IMGBREAK, CLS_IMGCENTER, CLS_IMGINLINE, CLS_IMGLEFT, CLS_IMGRIGHT, CLS_IMG_FOCUS, CLS_IMG_INNER, CLS_IMG_RESIZE, CLS_INLINE, CLS_INLINE_DROPDOWN, CLS_INLINE_POP, CLS_LIST_PRIMARY_CONTENT, CLS_MAXIMIZE, CLS_MINIMIZE, CLS_NOCOLOR_ITEM, CLS_NUMBERFORMATLIST_TB_BTN, CLS_POP, CLS_POPUP, CLS_POPUP_OPEN, CLS_QUICK_DROPDOWN, CLS_QUICK_POP, CLS_QUICK_TB, CLS_RESIZE, CLS_RM_WHITE_SPACE, CLS_RTE, CLS_RTE_CAPTION, CLS_RTE_CONTAINER, CLS_RTE_CONTENT, CLS_RTE_DIALOG_MIN_HEIGHT, CLS_RTE_DIALOG_UPLOAD, CLS_RTE_DRAG_IMAGE, CLS_RTE_ELEMENTS, CLS_RTE_EXPAND_TB, CLS_RTE_FIXED_TB_EXPAND, CLS_RTE_HIDDEN, CLS_RTE_IMAGE, CLS_RTE_PASTE_CANCEL, CLS_RTE_PASTE_KEEP_FORMAT, CLS_RTE_PASTE_OK, CLS_RTE_PASTE_PLAIN_FORMAT, CLS_RTE_PASTE_REMOVE_FORMAT, CLS_RTE_READONLY, CLS_RTE_RES_CNT, CLS_RTE_RES_EAST, CLS_RTE_RES_HANDLE, CLS_RTE_RES_WEST, CLS_RTE_SOURCE_CODE_TXTAREA, CLS_RTE_TABLE_RESIZE, CLS_RTE_TB_ENABLED, CLS_RTE_UPLOAD_POPUP, CLS_RTL, CLS_SCRIPT_SHEET, CLS_SEPARATOR, CLS_SHOW, CLS_STYLE_SHEET, CLS_TABLE, CLS_TABLE_BORDER, CLS_TABLE_MULTI_CELL, CLS_TABLE_SEL, CLS_TABLE_SEL_END, CLS_TB_ALT_BOR, CLS_TB_BOX_RES, CLS_TB_BTN, CLS_TB_COL_RES, CLS_TB_DASH_BOR, CLS_TB_EXTENDED, CLS_TB_FIXED, CLS_TB_FLOAT, CLS_TB_INLINE, CLS_TB_IOS_FIX, CLS_TB_ITEM, CLS_TB_ROW_RES, CLS_TB_STATIC, CLS_TB_WRAP, CLS_TEXT_POP, CLS_TEXT_QUICK_TB, CLS_TOOLBAR, CLS_UPLOAD_FILES, CLS_VIDEOBREAK, CLS_VIDEOINLINE, CLS_VIDEOWRAP, CLS_VID_CLICK_ELEM, CLS_VID_FOCUS, CLS_VISIBLE, CLS_WARNING, ClearFormat, ClearFormatExec, ColorPickerInput, ContentRender, Count, DEFAULT_TAG, DELETECOLUMN, DELETEROW, DESTROY, DOMNode, DialogRenderer, DialogType, DropDownButtons, EMOJI_PICKER_ACTIONS, EditorManager, EmojiPicker, EmojiPickerAction, ExecCommandCallBack, FORMAT_PAINTER_ACTIONS, FORMAT_TYPE, FileManager, FormatPainter, FormatPainterActions, Formats, Formatter, FullScreen, HTMLFormatter, HtmlEditor, HtmlToolbarStatus, IGNORE_BLOCK_TAGS, IMAGE, INDENT_TYPE, INSERTHTML_TYPE, INSERT_COLUMN, INSERT_ROW, INSERT_TEXT_COMMAND, INSERT_TEXT_TYPE, INTERNAL_DESTROY, IframeContentRender, Image$1 as Image, ImageCommand, ImageInputSource, ImportExport, Indents, InsertHtml, InsertHtmlExec, InsertMethods, InsertTextExec, IsFormatted, KEY_DOWN, KEY_DOWN_HANDLER, KEY_UP, KEY_UP_HANDLER, KeyboardEvents, LINK, LINK_COMMAND, LISTS_COMMAND, LIST_TYPE, Link, LinkCommand, Lists, MDFormats, MDLink, MDLists, MDSelectionFormats, MDTable, MD_TABLE, MODEL_CHANGED, MODEL_CHANGED_PLUGIN, MOUSE_DOWN, MS_WORD_CLEANUP, MS_WORD_CLEANUP_PLUGIN, MarkdownEditor, MarkdownFormatter, MarkdownParser, MarkdownRender, MarkdownSelection, MarkdownToolbarStatus, MsWordPaste, NodeCutter, NodeSelection, ON_BEGIN, PASTE_SOURCE, PasteCleanup, PopupRenderer, QuickToolbar, REMOVETABLE, Render, RenderType, RendererFactory, Resize, RichTextEditor, SELECTION_TYPE, SELF_CLOSING_TAGS, SPACE_ACTION, SelectionBasedExec, SelectionCommands, ServiceLocator, SlashMenu, TABLE, TABLEHEADER, TABLE_BLOCK_TAGS, TABLE_HORIZONTAL_SPLIT, TABLE_MERGE, TABLE_MOVE, TABLE_VERTICAL_ALIGN, TABLE_VERTICAL_SPLIT, Table, TableCommand, Toolbar, ToolbarAction, ToolbarRenderer, ToolbarStatus, ToolbarType, UndoRedoCommands, UndoRedoManager, VIDEO, Video, VideoCommand, ViewSource, XhtmlValidation, actionBegin, actionComplete, actionSuccess, afterImageDelete, afterKeyDown, afterMediaDelete, afterPasteCleanup, audioDelete, audioToolbarAction, autoResize, beforeDialogClose, beforeDialogOpen, beforeDropDownItemRender, beforeDropDownOpen, beforeFileUpload, beforeImageDrop, beforeImageUpload, beforePasteCleanup, beforeQuickToolbarOpen, bindCssClass, bindOnEnd, blockEmptyNodes, checkUndo, cleanupResizeElements, clearDialogObj, closeAudioDialog, closeImageDialog, closeLinkDialog, closeTableDialog, closeTooltip, closeVideoDialog, colorPickerChanged, contentBlur, contentChanged, contentFocus, contentscroll, conversionFactors, convertToBlob, count, createTable, created, decode, destroy, destroyTooltip, destroyed, dialogClose, dialogOpen, disableFullScreen, dispatchEvent, docClick, documentClickClosedBy, drop, dropDownSelect, dynamicModule, editAreaClick, editLink, emojiPicker, enableFullScreen, enterHandler, execCommandCallBack, executeGroup, expandPopupClick, fileRemoving, fileSelected, fileUploadFailed, fileUploadSuccess, fileUploading, focusChange, formatPainterClick, formatPainterDoubleClick, getCollection, getDefaultValue, getDropDownValue, getEditValue, getFormattedFontSize, getIndex, getLocaleFontFormat, getSelectedHtml, getTBarItemsIndex, getTextNodesUnder, getTooltipText, hasClass, hidePopup, htmlKeyConfig, htmlToolbarClick, iframeMouseDown, iframeResizeFactor, imageAlt, imageBreak, imageCaption, imageCenter, imageDelete, imageInline, imageLeft, imageLink, imageRemoving, imageResizeFactor, imageRight, imageSelected, imageSize, imageToolbarAction, imageUploadFailed, imageUploadSuccess, imageUploading, imgModule, initialEnd, initialLoad, inlineEmptyNodes, insertAudio, insertCompleted, insertImage, insertLink, insertVideo, isEditableValueEmpty, isIDevice, keyDown, keyUp, linkToolbarAction, listConversionFilters, load, markdownFormatTags, markdownKeyConfig, markdownListsTags, markdownSelectionTags, markdownToolbarClick, markerClassName, mentionRestrictKeys, modelChanged, mouseDown, mouseUp, onExport, onHandleFontsizeChange, onImport, onResize, openLink, pageYOffset, parseHtml, paste, pasteClean, pasteCleanupGroupingTags, popupHide, quickToolbarClose, quickToolbarOpen, readOnlyMode, redo, refreshBegin, renderFileManager, renderInlineToolbar, resizeInitialized, resizeStart, resizeStop, rtlMode, sanitizeHelper, scroll, selectAll, selectRange, selectionCommand, selectionRestore, selectionSave, selfClosingTags, setAttributes, setToolbarStatus, showAudioDialog, showColorPicker, showImageDialog, showLinkDialog, showTableDialog, showVideoDialog, sourceCode, sourceCodeMouseDown, statusCollection, supportedUnits, tableColorPickerChanged, tableModulekeyUp, tableToolbarAction, tableclass, toObjectLowerCase, toolbarClick, toolbarCreated, toolbarOpen, toolbarRefresh, toolbarRenderComplete, toolbarUpdated, unLink, undo, updateDropDownFontFormatLocale, updateSource, updateTbItemsStatus, updateTextNode, updateToolbarItem, updateUndoRedoStatus, updateValueOnIdle, updatedToolbarStatus, videoDelete, videoSize, videoToolbarAction, windowResize, xhtmlValidation };
40102
40182
  //# sourceMappingURL=ej2-richtexteditor.es5.js.map