@syncfusion/ej2-richtexteditor 25.1.42 → 25.2.4-621927

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.
Files changed (280) hide show
  1. package/.eslintrc.json +259 -259
  2. package/CHANGELOG.md +2067 -2001
  3. package/README.md +76 -76
  4. package/dist/ej2-richtexteditor.umd.min.js +1 -10
  5. package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-richtexteditor.es2015.js +642 -305
  7. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  8. package/dist/es6/ej2-richtexteditor.es5.js +742 -401
  9. package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
  10. package/helpers/e2e/index.js +3 -3
  11. package/helpers/e2e/rte-helper.js +13 -13
  12. package/license +9 -9
  13. package/package.json +84 -84
  14. package/src/common/interface.d.ts +22 -8
  15. package/src/common/util.d.ts +8 -0
  16. package/src/common/util.js +56 -1
  17. package/src/editor-manager/base/classes.d.ts +1 -1
  18. package/src/editor-manager/base/classes.js +1 -1
  19. package/src/editor-manager/base/editor-manager.d.ts +3 -3
  20. package/src/editor-manager/base/editor-manager.js +8 -6
  21. package/src/editor-manager/base/enum.d.ts +2 -2
  22. package/src/editor-manager/base/interface.d.ts +9 -9
  23. package/src/editor-manager/base/types.d.ts +1 -1
  24. package/src/editor-manager/plugin/alignments.d.ts +2 -2
  25. package/src/editor-manager/plugin/alignments.js +5 -2
  26. package/src/editor-manager/plugin/audio.d.ts +3 -3
  27. package/src/editor-manager/plugin/audio.js +3 -3
  28. package/src/editor-manager/plugin/clearformat-exec.d.ts +2 -2
  29. package/src/editor-manager/plugin/clearformat-exec.js +2 -2
  30. package/src/editor-manager/plugin/clearformat.d.ts +1 -1
  31. package/src/editor-manager/plugin/clearformat.js +1 -1
  32. package/src/editor-manager/plugin/dom-node.d.ts +54 -34
  33. package/src/editor-manager/plugin/dom-node.js +139 -36
  34. package/src/editor-manager/plugin/format-painter-actions.d.ts +1 -1
  35. package/src/editor-manager/plugin/format-painter-actions.js +1 -1
  36. package/src/editor-manager/plugin/formats.d.ts +2 -2
  37. package/src/editor-manager/plugin/formats.js +3 -3
  38. package/src/editor-manager/plugin/image.d.ts +3 -3
  39. package/src/editor-manager/plugin/image.js +3 -3
  40. package/src/editor-manager/plugin/indents.d.ts +2 -2
  41. package/src/editor-manager/plugin/indents.js +5 -2
  42. package/src/editor-manager/plugin/insert-methods.d.ts +4 -4
  43. package/src/editor-manager/plugin/insert-methods.js +4 -4
  44. package/src/editor-manager/plugin/insert-text.d.ts +2 -2
  45. package/src/editor-manager/plugin/insert-text.js +2 -2
  46. package/src/editor-manager/plugin/inserthtml-exec.d.ts +2 -2
  47. package/src/editor-manager/plugin/inserthtml-exec.js +2 -2
  48. package/src/editor-manager/plugin/inserthtml.d.ts +2 -2
  49. package/src/editor-manager/plugin/inserthtml.js +5 -2
  50. package/src/editor-manager/plugin/isformatted.d.ts +8 -8
  51. package/src/editor-manager/plugin/isformatted.js +8 -8
  52. package/src/editor-manager/plugin/link.d.ts +2 -2
  53. package/src/editor-manager/plugin/link.js +2 -2
  54. package/src/editor-manager/plugin/lists.d.ts +2 -3
  55. package/src/editor-manager/plugin/lists.js +57 -80
  56. package/src/editor-manager/plugin/ms-word-clean-up.d.ts +1 -1
  57. package/src/editor-manager/plugin/ms-word-clean-up.js +4 -4
  58. package/src/editor-manager/plugin/nodecutter.d.ts +6 -6
  59. package/src/editor-manager/plugin/nodecutter.js +6 -6
  60. package/src/editor-manager/plugin/selection-commands.d.ts +1 -1
  61. package/src/editor-manager/plugin/selection-commands.js +1 -1
  62. package/src/editor-manager/plugin/selection-exec.d.ts +2 -2
  63. package/src/editor-manager/plugin/selection-exec.js +2 -2
  64. package/src/editor-manager/plugin/table.d.ts +2 -2
  65. package/src/editor-manager/plugin/table.js +2 -2
  66. package/src/editor-manager/plugin/toolbar-status.d.ts +2 -2
  67. package/src/editor-manager/plugin/toolbar-status.js +2 -2
  68. package/src/editor-manager/plugin/undo.d.ts +6 -6
  69. package/src/editor-manager/plugin/undo.js +9 -7
  70. package/src/editor-manager/plugin/video.d.ts +3 -3
  71. package/src/editor-manager/plugin/video.js +3 -3
  72. package/src/markdown-parser/base/interface.d.ts +10 -10
  73. package/src/markdown-parser/base/markdown-parser.d.ts +3 -3
  74. package/src/markdown-parser/base/markdown-parser.js +3 -3
  75. package/src/markdown-parser/base/types.d.ts +1 -1
  76. package/src/markdown-parser/plugin/clearformat.d.ts +2 -2
  77. package/src/markdown-parser/plugin/clearformat.js +2 -2
  78. package/src/markdown-parser/plugin/formats.d.ts +2 -2
  79. package/src/markdown-parser/plugin/formats.js +2 -2
  80. package/src/markdown-parser/plugin/insert-text.d.ts +2 -2
  81. package/src/markdown-parser/plugin/insert-text.js +2 -2
  82. package/src/markdown-parser/plugin/link.d.ts +2 -2
  83. package/src/markdown-parser/plugin/link.js +2 -2
  84. package/src/markdown-parser/plugin/markdown-selection.d.ts +14 -14
  85. package/src/markdown-parser/plugin/markdown-selection.js +14 -14
  86. package/src/markdown-parser/plugin/md-selection-formats.d.ts +1 -1
  87. package/src/markdown-parser/plugin/md-selection-formats.js +1 -1
  88. package/src/markdown-parser/plugin/table.d.ts +3 -3
  89. package/src/markdown-parser/plugin/table.js +3 -3
  90. package/src/markdown-parser/plugin/undo.d.ts +6 -6
  91. package/src/markdown-parser/plugin/undo.js +6 -6
  92. package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +9 -9
  93. package/src/rich-text-editor/actions/base-quick-toolbar.js +9 -9
  94. package/src/rich-text-editor/actions/base-toolbar.d.ts +3 -3
  95. package/src/rich-text-editor/actions/base-toolbar.js +3 -3
  96. package/src/rich-text-editor/actions/color-picker.d.ts +2 -2
  97. package/src/rich-text-editor/actions/color-picker.js +2 -2
  98. package/src/rich-text-editor/actions/count.d.ts +3 -3
  99. package/src/rich-text-editor/actions/count.js +3 -3
  100. package/src/rich-text-editor/actions/dropdown-buttons.d.ts +2 -2
  101. package/src/rich-text-editor/actions/dropdown-buttons.js +2 -2
  102. package/src/rich-text-editor/actions/emoji-picker.d.ts +1 -1
  103. package/src/rich-text-editor/actions/emoji-picker.js +1 -1
  104. package/src/rich-text-editor/actions/enter-key.d.ts +5 -0
  105. package/src/rich-text-editor/actions/enter-key.js +98 -13
  106. package/src/rich-text-editor/actions/full-screen.d.ts +3 -3
  107. package/src/rich-text-editor/actions/full-screen.js +3 -9
  108. package/src/rich-text-editor/actions/html-editor.d.ts +4 -3
  109. package/src/rich-text-editor/actions/html-editor.js +68 -23
  110. package/src/rich-text-editor/actions/keyboard-model.d.ts +16 -16
  111. package/src/rich-text-editor/actions/keyboard.d.ts +1 -1
  112. package/src/rich-text-editor/actions/keyboard.js +20 -20
  113. package/src/rich-text-editor/actions/markdown-editor.d.ts +2 -2
  114. package/src/rich-text-editor/actions/markdown-editor.js +2 -2
  115. package/src/rich-text-editor/actions/paste-clean-up.d.ts +2 -1
  116. package/src/rich-text-editor/actions/paste-clean-up.js +55 -14
  117. package/src/rich-text-editor/actions/quick-toolbar.d.ts +9 -9
  118. package/src/rich-text-editor/actions/quick-toolbar.js +9 -9
  119. package/src/rich-text-editor/actions/toolbar.d.ts +13 -13
  120. package/src/rich-text-editor/actions/toolbar.js +13 -13
  121. package/src/rich-text-editor/actions/xhtml-validation.d.ts +1 -1
  122. package/src/rich-text-editor/actions/xhtml-validation.js +1 -1
  123. package/src/rich-text-editor/base/classes.d.ts +121 -121
  124. package/src/rich-text-editor/base/classes.js +121 -121
  125. package/src/rich-text-editor/base/constant.d.ts +158 -158
  126. package/src/rich-text-editor/base/constant.js +158 -158
  127. package/src/rich-text-editor/base/enum.d.ts +1 -1
  128. package/src/rich-text-editor/base/enum.js +1 -1
  129. package/src/rich-text-editor/base/interface.d.ts +50 -50
  130. package/src/rich-text-editor/base/interface.js +1 -1
  131. package/src/rich-text-editor/base/rich-text-editor-model.d.ts +891 -891
  132. package/src/rich-text-editor/base/rich-text-editor.d.ts +63 -61
  133. package/src/rich-text-editor/base/rich-text-editor.js +82 -67
  134. package/src/rich-text-editor/base/util.d.ts +1 -1
  135. package/src/rich-text-editor/base/util.js +1 -1
  136. package/src/rich-text-editor/formatter/formatter.d.ts +8 -8
  137. package/src/rich-text-editor/formatter/formatter.js +8 -8
  138. package/src/rich-text-editor/formatter/html-formatter.d.ts +2 -2
  139. package/src/rich-text-editor/formatter/html-formatter.js +15 -15
  140. package/src/rich-text-editor/formatter/markdown-formatter.d.ts +2 -2
  141. package/src/rich-text-editor/formatter/markdown-formatter.js +15 -15
  142. package/src/rich-text-editor/models/iframe-settings-model.d.ts +26 -26
  143. package/src/rich-text-editor/models/iframe-settings.js +19 -19
  144. package/src/rich-text-editor/models/inline-mode-model.d.ts +11 -11
  145. package/src/rich-text-editor/models/inline-mode.js +19 -19
  146. package/src/rich-text-editor/models/toolbar-settings-model.d.ts +760 -760
  147. package/src/rich-text-editor/models/toolbar-settings.js +19 -19
  148. package/src/rich-text-editor/renderer/audio-module.d.ts +1 -1
  149. package/src/rich-text-editor/renderer/audio-module.js +7 -2
  150. package/src/rich-text-editor/renderer/content-renderer.d.ts +6 -6
  151. package/src/rich-text-editor/renderer/content-renderer.js +6 -6
  152. package/src/rich-text-editor/renderer/dialog-renderer.d.ts +2 -2
  153. package/src/rich-text-editor/renderer/dialog-renderer.js +2 -2
  154. package/src/rich-text-editor/renderer/iframe-content-renderer.d.ts +4 -4
  155. package/src/rich-text-editor/renderer/iframe-content-renderer.js +17 -17
  156. package/src/rich-text-editor/renderer/image-module.d.ts +1 -1
  157. package/src/rich-text-editor/renderer/image-module.js +10 -5
  158. package/src/rich-text-editor/renderer/link-module.d.ts +1 -1
  159. package/src/rich-text-editor/renderer/link-module.js +1 -1
  160. package/src/rich-text-editor/renderer/markdown-renderer.d.ts +6 -6
  161. package/src/rich-text-editor/renderer/markdown-renderer.js +6 -6
  162. package/src/rich-text-editor/renderer/popup-renderer.d.ts +5 -5
  163. package/src/rich-text-editor/renderer/popup-renderer.js +5 -5
  164. package/src/rich-text-editor/renderer/render.d.ts +2 -2
  165. package/src/rich-text-editor/renderer/render.js +2 -2
  166. package/src/rich-text-editor/renderer/table-module.d.ts +1 -1
  167. package/src/rich-text-editor/renderer/table-module.js +3 -2
  168. package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +9 -9
  169. package/src/rich-text-editor/renderer/toolbar-renderer.js +16 -18
  170. package/src/rich-text-editor/renderer/video-module.d.ts +1 -1
  171. package/src/rich-text-editor/renderer/video-module.js +7 -2
  172. package/src/rich-text-editor/renderer/view-source.d.ts +6 -6
  173. package/src/rich-text-editor/renderer/view-source.js +6 -6
  174. package/src/rich-text-editor/services/renderer-factory.d.ts +3 -3
  175. package/src/rich-text-editor/services/renderer-factory.js +3 -3
  176. package/src/rich-text-editor/services/service-locator.d.ts +3 -3
  177. package/src/rich-text-editor/services/service-locator.js +3 -3
  178. package/src/selection/selection.d.ts +22 -22
  179. package/src/selection/selection.js +22 -22
  180. package/styles/_all.scss +1 -1
  181. package/styles/bootstrap-dark.css +705 -801
  182. package/styles/bootstrap-dark.scss +4 -1
  183. package/styles/bootstrap.css +689 -801
  184. package/styles/bootstrap.scss +4 -1
  185. package/styles/bootstrap4.css +692 -803
  186. package/styles/bootstrap4.scss +4 -1
  187. package/styles/bootstrap5-dark.css +716 -840
  188. package/styles/bootstrap5-dark.scss +4 -1
  189. package/styles/bootstrap5.css +715 -839
  190. package/styles/bootstrap5.scss +4 -1
  191. package/styles/fabric-dark.css +690 -797
  192. package/styles/fabric-dark.scss +4 -1
  193. package/styles/fabric.css +686 -797
  194. package/styles/fabric.scss +4 -1
  195. package/styles/fluent-dark.css +693 -820
  196. package/styles/fluent-dark.scss +4 -1
  197. package/styles/fluent.css +692 -819
  198. package/styles/fluent.scss +4 -1
  199. package/styles/fluent2.css +4219 -0
  200. package/styles/fluent2.scss +4 -0
  201. package/styles/highcontrast-light.css +661 -795
  202. package/styles/highcontrast-light.scss +4 -1
  203. package/styles/highcontrast.css +667 -793
  204. package/styles/highcontrast.scss +4 -1
  205. package/styles/material-dark.css +682 -798
  206. package/styles/material-dark.scss +4 -1
  207. package/styles/material.css +679 -800
  208. package/styles/material.scss +4 -1
  209. package/styles/material3-dark.css +717 -857
  210. package/styles/material3-dark.scss +4 -1
  211. package/styles/material3.css +717 -857
  212. package/styles/material3.scss +4 -1
  213. package/styles/rich-text-editor/_all.scss +2 -2
  214. package/styles/rich-text-editor/_bds-definition.scss +288 -285
  215. package/styles/rich-text-editor/_bigger.scss +610 -0
  216. package/styles/rich-text-editor/_bootstrap-dark-definition.scss +289 -287
  217. package/styles/rich-text-editor/_bootstrap-definition.scss +347 -343
  218. package/styles/rich-text-editor/_bootstrap4-definition.scss +474 -470
  219. package/styles/rich-text-editor/_bootstrap5-definition.scss +276 -272
  220. package/styles/rich-text-editor/_bootstrap5.3-definition.scss +276 -0
  221. package/styles/rich-text-editor/_fabric-dark-definition.scss +273 -269
  222. package/styles/rich-text-editor/_fabric-definition.scss +271 -267
  223. package/styles/rich-text-editor/_fluent-definition.scss +277 -273
  224. package/styles/rich-text-editor/_fluent2-definition.scss +285 -0
  225. package/styles/rich-text-editor/_fusionnew-definition.scss +274 -271
  226. package/styles/rich-text-editor/_highcontrast-definition.scss +272 -267
  227. package/styles/rich-text-editor/_highcontrast-light-definition.scss +271 -267
  228. package/styles/rich-text-editor/_layout.scss +2148 -2272
  229. package/styles/rich-text-editor/_material-dark-definition.scss +276 -272
  230. package/styles/rich-text-editor/_material-definition.scss +274 -270
  231. package/styles/rich-text-editor/_material3-definition.scss +276 -272
  232. package/styles/rich-text-editor/_tailwind-definition.scss +271 -267
  233. package/styles/rich-text-editor/_theme.scss +802 -927
  234. package/styles/rich-text-editor/bootstrap-dark.css +705 -801
  235. package/styles/rich-text-editor/bootstrap.css +689 -801
  236. package/styles/rich-text-editor/bootstrap4.css +692 -803
  237. package/styles/rich-text-editor/bootstrap5-dark.css +716 -840
  238. package/styles/rich-text-editor/bootstrap5.css +715 -839
  239. package/styles/rich-text-editor/fabric-dark.css +690 -797
  240. package/styles/rich-text-editor/fabric.css +686 -797
  241. package/styles/rich-text-editor/fluent-dark.css +693 -820
  242. package/styles/rich-text-editor/fluent.css +692 -819
  243. package/styles/rich-text-editor/fluent2.css +4219 -0
  244. package/styles/rich-text-editor/fluent2.scss +4 -0
  245. package/styles/rich-text-editor/highcontrast-light.css +661 -795
  246. package/styles/rich-text-editor/highcontrast.css +667 -793
  247. package/styles/rich-text-editor/icons/_bds.scss +372 -351
  248. package/styles/rich-text-editor/icons/_bootstrap-dark.scss +373 -352
  249. package/styles/rich-text-editor/icons/_bootstrap.scss +373 -352
  250. package/styles/rich-text-editor/icons/_bootstrap4.scss +373 -352
  251. package/styles/rich-text-editor/icons/_bootstrap5.3.scss +372 -0
  252. package/styles/rich-text-editor/icons/_bootstrap5.scss +372 -351
  253. package/styles/rich-text-editor/icons/_fabric-dark.scss +373 -352
  254. package/styles/rich-text-editor/icons/_fabric.scss +373 -352
  255. package/styles/rich-text-editor/icons/_fluent.scss +372 -351
  256. package/styles/rich-text-editor/icons/_fluent2.scss +369 -0
  257. package/styles/rich-text-editor/icons/_fusionnew.scss +357 -348
  258. package/styles/rich-text-editor/icons/_highcontrast-light.scss +361 -352
  259. package/styles/rich-text-editor/icons/_highcontrast.scss +361 -352
  260. package/styles/rich-text-editor/icons/_material-dark.scss +373 -352
  261. package/styles/rich-text-editor/icons/_material.scss +373 -352
  262. package/styles/rich-text-editor/icons/_material3.scss +372 -351
  263. package/styles/rich-text-editor/icons/_tailwind.scss +372 -351
  264. package/styles/rich-text-editor/material-dark.css +682 -798
  265. package/styles/rich-text-editor/material.css +679 -800
  266. package/styles/rich-text-editor/material3-dark.css +717 -857
  267. package/styles/rich-text-editor/material3-dark.scss +1 -1
  268. package/styles/rich-text-editor/material3.css +717 -857
  269. package/styles/rich-text-editor/material3.scss +1 -1
  270. package/styles/rich-text-editor/tailwind-dark.css +705 -828
  271. package/styles/rich-text-editor/tailwind.css +705 -828
  272. package/styles/tailwind-dark.css +705 -828
  273. package/styles/tailwind-dark.scss +4 -1
  274. package/styles/tailwind.css +705 -828
  275. package/styles/tailwind.scss +4 -1
  276. package/dist/ej2-richtexteditor.min.js +0 -10
  277. package/dist/global/ej2-richtexteditor.min.js +0 -11
  278. package/dist/global/ej2-richtexteditor.min.js.map +0 -1
  279. package/dist/global/index.d.ts +0 -14
  280. package/tslint.json +0 -111
@@ -1,22 +1,22 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- };
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  import { Property, ChildProperty, Complex, Event } from '@syncfusion/ej2-base';
21
21
  import { AjaxSettings, ContextMenuSettings } from '@syncfusion/ej2-filemanager';
22
22
  import { DetailsViewSettings, NavigationPaneSettings } from '@syncfusion/ej2-filemanager';
@@ -64,7 +64,7 @@ export declare class Audio {
64
64
  * @method destroy
65
65
  * @returns {void}
66
66
  * @hidden
67
-
67
+ * @deprecated
68
68
  */
69
69
  destroy(): void;
70
70
  /**
@@ -583,7 +583,12 @@ var Audio = /** @class */ (function () {
583
583
  animationSettings: { effect: 'None' },
584
584
  close: function (event) {
585
585
  if (_this.isAudioUploaded) {
586
- _this.uploadObj.removing();
586
+ if (_this.dialogObj.element.querySelector('.e-file-abort-btn')) {
587
+ _this.dialogObj.element.querySelector('.e-file-abort-btn').click();
588
+ }
589
+ else {
590
+ _this.uploadObj.remove();
591
+ }
587
592
  }
588
593
  _this.parent.isBlur = false;
589
594
  if (event && !isNOU(event.event) && event.event.returnValue) {
@@ -851,7 +856,7 @@ var Audio = /** @class */ (function () {
851
856
  * @method destroy
852
857
  * @returns {void}
853
858
  * @hidden
854
-
859
+ * @deprecated
855
860
  */
856
861
  /* eslint-enable */
857
862
  Audio.prototype.destroy = function () {
@@ -4,7 +4,7 @@ import { ServiceLocator } from '../services/service-locator';
4
4
  * Content module is used to render Rich Text Editor content
5
5
  *
6
6
  * @hidden
7
-
7
+ * @deprecated
8
8
  */
9
9
  export declare class ContentRender implements IRenderer {
10
10
  protected contentPanel: Element;
@@ -24,7 +24,7 @@ export declare class ContentRender implements IRenderer {
24
24
  *
25
25
  * @returns {void}
26
26
  * @hidden
27
-
27
+ * @deprecated
28
28
  */
29
29
  renderPanel(): void;
30
30
  /**
@@ -32,7 +32,7 @@ export declare class ContentRender implements IRenderer {
32
32
  *
33
33
  * @returns {Element} - specifies the element.
34
34
  * @hidden
35
-
35
+ * @deprecated
36
36
  */
37
37
  getPanel(): Element;
38
38
  /**
@@ -40,7 +40,7 @@ export declare class ContentRender implements IRenderer {
40
40
  *
41
41
  * @returns {Element} - specifies the return element.
42
42
  * @hidden
43
-
43
+ * @deprecated
44
44
  */
45
45
  getEditPanel(): Element;
46
46
  /**
@@ -55,7 +55,7 @@ export declare class ContentRender implements IRenderer {
55
55
  * @param {Element} panel - specifies the panel element.
56
56
  * @returns {void}
57
57
  * @hidden
58
-
58
+ * @deprecated
59
59
  */
60
60
  setPanel(panel: Element): void;
61
61
  /**
@@ -63,7 +63,7 @@ export declare class ContentRender implements IRenderer {
63
63
  *
64
64
  * @returns {Document} - specifies the document.
65
65
  * @hidden
66
-
66
+ * @deprecated
67
67
  */
68
68
  getDocument(): Document;
69
69
  }
@@ -3,7 +3,7 @@ import { getEditValue } from '../base/util';
3
3
  * Content module is used to render Rich Text Editor content
4
4
  *
5
5
  * @hidden
6
-
6
+ * @deprecated
7
7
  */
8
8
  var ContentRender = /** @class */ (function () {
9
9
  /**
@@ -22,7 +22,7 @@ var ContentRender = /** @class */ (function () {
22
22
  *
23
23
  * @returns {void}
24
24
  * @hidden
25
-
25
+ * @deprecated
26
26
  */
27
27
  ContentRender.prototype.renderPanel = function () {
28
28
  var rteObj = this.parent;
@@ -45,7 +45,7 @@ var ContentRender = /** @class */ (function () {
45
45
  *
46
46
  * @returns {Element} - specifies the element.
47
47
  * @hidden
48
-
48
+ * @deprecated
49
49
  */
50
50
  ContentRender.prototype.getPanel = function () {
51
51
  return this.contentPanel;
@@ -55,7 +55,7 @@ var ContentRender = /** @class */ (function () {
55
55
  *
56
56
  * @returns {Element} - specifies the return element.
57
57
  * @hidden
58
-
58
+ * @deprecated
59
59
  */
60
60
  ContentRender.prototype.getEditPanel = function () {
61
61
  return this.editableElement;
@@ -75,7 +75,7 @@ var ContentRender = /** @class */ (function () {
75
75
  * @param {Element} panel - specifies the panel element.
76
76
  * @returns {void}
77
77
  * @hidden
78
-
78
+ * @deprecated
79
79
  */
80
80
  ContentRender.prototype.setPanel = function (panel) {
81
81
  this.contentPanel = panel;
@@ -85,7 +85,7 @@ var ContentRender = /** @class */ (function () {
85
85
  *
86
86
  * @returns {Document} - specifies the document.
87
87
  * @hidden
88
-
88
+ * @deprecated
89
89
  */
90
90
  ContentRender.prototype.getDocument = function () {
91
91
  return this.getEditPanel().ownerDocument;
@@ -17,7 +17,7 @@ export declare class DialogRenderer {
17
17
  * @param {DialogModel} e - specifies the dialog model.
18
18
  * @returns {void}
19
19
  * @hidden
20
-
20
+ * @deprecated
21
21
  */
22
22
  render(e: DialogModel): Dialog;
23
23
  private beforeOpen;
@@ -33,7 +33,7 @@ export declare class DialogRenderer {
33
33
  * @param {Object} args - specifies the arguments.
34
34
  * @returns {void}
35
35
  * @hidden
36
-
36
+ * @deprecated
37
37
  */
38
38
  close(args: Object): void;
39
39
  private moduleDestroy;
@@ -31,7 +31,7 @@ var DialogRenderer = /** @class */ (function () {
31
31
  * @param {DialogModel} e - specifies the dialog model.
32
32
  * @returns {void}
33
33
  * @hidden
34
-
34
+ * @deprecated
35
35
  */
36
36
  DialogRenderer.prototype.render = function (e) {
37
37
  var dlgObj;
@@ -116,7 +116,7 @@ var DialogRenderer = /** @class */ (function () {
116
116
  * @param {Object} args - specifies the arguments.
117
117
  * @returns {void}
118
118
  * @hidden
119
-
119
+ * @deprecated
120
120
  */
121
121
  DialogRenderer.prototype.close = function (args) {
122
122
  this.parent.trigger(events.dialogClose, args);
@@ -3,14 +3,14 @@ import { ContentRender } from '../renderer/content-renderer';
3
3
  * Content module is used to render Rich Text Editor content
4
4
  *
5
5
  * @hidden
6
-
6
+ * @deprecated
7
7
  */
8
8
  export declare class IframeContentRender extends ContentRender {
9
9
  /**
10
10
  * The function is used to render Rich Text Editor iframe
11
11
  *
12
12
  * @hidden
13
-
13
+ * @deprecated
14
14
  */
15
15
  renderPanel(): void;
16
16
  private setThemeColor;
@@ -19,7 +19,7 @@ export declare class IframeContentRender extends ContentRender {
19
19
  *
20
20
  * @returns {Element} - specifies the element.
21
21
  * @hidden
22
-
22
+ * @deprecated
23
23
  */
24
24
  getEditPanel(): Element;
25
25
  /**
@@ -27,7 +27,7 @@ export declare class IframeContentRender extends ContentRender {
27
27
  *
28
28
  * @returns {void}
29
29
  * @hidden
30
-
30
+ * @deprecated
31
31
  */
32
32
  getDocument(): Document;
33
33
  }
@@ -1,16 +1,16 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- };
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
14
  import { ContentRender } from '../renderer/content-renderer';
15
15
  import { isNullOrUndefined } from '@syncfusion/ej2-base';
16
16
  import { getEditValue } from '../base/util';
@@ -19,7 +19,7 @@ var IFRAMEHEADER = "\n<!DOCTYPE html> \n <html>\n <head>\n
19
19
  * Content module is used to render Rich Text Editor content
20
20
  *
21
21
  * @hidden
22
-
22
+ * @deprecated
23
23
  */
24
24
  var IframeContentRender = /** @class */ (function (_super) {
25
25
  __extends(IframeContentRender, _super);
@@ -30,7 +30,7 @@ var IframeContentRender = /** @class */ (function (_super) {
30
30
  * The function is used to render Rich Text Editor iframe
31
31
  *
32
32
  * @hidden
33
-
33
+ * @deprecated
34
34
  */
35
35
  IframeContentRender.prototype.renderPanel = function () {
36
36
  var rteObj = this.parent;
@@ -66,7 +66,7 @@ var IframeContentRender = /** @class */ (function (_super) {
66
66
  *
67
67
  * @returns {Element} - specifies the element.
68
68
  * @hidden
69
-
69
+ * @deprecated
70
70
  */
71
71
  IframeContentRender.prototype.getEditPanel = function () {
72
72
  var editNode;
@@ -83,7 +83,7 @@ var IframeContentRender = /** @class */ (function (_super) {
83
83
  *
84
84
  * @returns {void}
85
85
  * @hidden
86
-
86
+ * @deprecated
87
87
  */
88
88
  IframeContentRender.prototype.getDocument = function () {
89
89
  return this.getEditPanel().ownerDocument;
@@ -170,7 +170,7 @@ export declare class Image {
170
170
  * @method destroy
171
171
  * @returns {void}
172
172
  * @hidden
173
-
173
+ * @deprecated
174
174
  */
175
175
  destroy(): void;
176
176
  private moduleDestroy;
@@ -624,13 +624,13 @@ var Image = /** @class */ (function () {
624
624
  selectParentEle = this.parent.formatter.editorManager.nodeSelection.getParentNodeCollection(range);
625
625
  if (!originalEvent.ctrlKey && originalEvent.key && (originalEvent.key.length === 1 || originalEvent.action === 'enter') &&
626
626
  (!isNOU(selectParentEle[0]) && selectParentEle[0].tagName === 'IMG') && selectParentEle[0].parentElement) {
627
- var prev = selectParentEle[0].parentElement.childNodes[0];
628
627
  if (this.contentModule.getEditPanel().querySelector('.e-img-resize')) {
629
628
  this.removeResizeEle();
630
629
  }
631
- this.parent.formatter.editorManager.nodeSelection.setSelectionText(this.contentModule.getDocument(), prev, prev, prev.textContent.length, prev.textContent.length);
632
630
  removeClass([selectParentEle[0]], 'e-img-focus');
633
- this.quickToolObj.imageQTBar.hidePopup();
631
+ if (this.quickToolObj && this.quickToolObj.imageQTBar) {
632
+ this.quickToolObj.imageQTBar.hidePopup();
633
+ }
634
634
  }
635
635
  }
636
636
  if (originalEvent.ctrlKey && (originalEvent.keyCode === 89 || originalEvent.keyCode === 90)) {
@@ -1396,7 +1396,12 @@ var Image = /** @class */ (function () {
1396
1396
  animationSettings: { effect: 'None' },
1397
1397
  close: function (event) {
1398
1398
  if (_this.isImgUploaded) {
1399
- _this.uploadObj.remove();
1399
+ if (_this.dialogObj.element.querySelector('.e-file-abort-btn')) {
1400
+ _this.dialogObj.element.querySelector('.e-file-abort-btn').click();
1401
+ }
1402
+ else {
1403
+ _this.uploadObj.remove();
1404
+ }
1400
1405
  }
1401
1406
  _this.parent.isBlur = false;
1402
1407
  if (event && !isNOU(event.event) && event.event.returnValue) {
@@ -2317,7 +2322,7 @@ var Image = /** @class */ (function () {
2317
2322
  * @method destroy
2318
2323
  * @returns {void}
2319
2324
  * @hidden
2320
-
2325
+ * @deprecated
2321
2326
  */
2322
2327
  /* eslint-enable */
2323
2328
  Image.prototype.destroy = function () {
@@ -45,7 +45,7 @@ export declare class Link {
45
45
  * @function destroy
46
46
  * @returns {void}
47
47
  * @hidden
48
-
48
+ * @deprecated
49
49
  */
50
50
  destroy(): void;
51
51
  private moduleDestroy;
@@ -556,7 +556,7 @@ var Link = /** @class */ (function () {
556
556
  * @function destroy
557
557
  * @returns {void}
558
558
  * @hidden
559
-
559
+ * @deprecated
560
560
  */
561
561
  Link.prototype.destroy = function () {
562
562
  if (isNOU(this.parent)) {
@@ -3,7 +3,7 @@ import { IRenderer, IRichTextEditor } from '../base/interface';
3
3
  * Markdown module is used to render Rich Text Editor as Markdown editor content
4
4
  *
5
5
  * @hidden
6
-
6
+ * @deprecated
7
7
  */
8
8
  export declare class MarkdownRender implements IRenderer {
9
9
  private contentPanel;
@@ -20,7 +20,7 @@ export declare class MarkdownRender implements IRenderer {
20
20
  *
21
21
  * @returns {void}
22
22
  * @hidden
23
-
23
+ * @deprecated
24
24
  */
25
25
  renderPanel(): void;
26
26
  /**
@@ -28,7 +28,7 @@ export declare class MarkdownRender implements IRenderer {
28
28
  *
29
29
  * @returns {Element} - specifies the element
30
30
  * @hidden
31
-
31
+ * @deprecated
32
32
  */
33
33
  getPanel(): Element;
34
34
  /**
@@ -36,7 +36,7 @@ export declare class MarkdownRender implements IRenderer {
36
36
  *
37
37
  * @returns {Element} - specifies the element
38
38
  * @hidden
39
-
39
+ * @deprecated
40
40
  */
41
41
  getEditPanel(): Element;
42
42
  /**
@@ -51,7 +51,7 @@ export declare class MarkdownRender implements IRenderer {
51
51
  * @param {Element} panel - specifies the element.
52
52
  * @returns {void}
53
53
  * @hidden
54
-
54
+ * @deprecated
55
55
  */
56
56
  setPanel(panel: Element): void;
57
57
  /**
@@ -59,7 +59,7 @@ export declare class MarkdownRender implements IRenderer {
59
59
  *
60
60
  * @returns {void}
61
61
  * @hidden
62
-
62
+ * @deprecated
63
63
  */
64
64
  getDocument(): Document;
65
65
  }
@@ -2,7 +2,7 @@
2
2
  * Markdown module is used to render Rich Text Editor as Markdown editor content
3
3
  *
4
4
  * @hidden
5
-
5
+ * @deprecated
6
6
  */
7
7
  var MarkdownRender = /** @class */ (function () {
8
8
  /**
@@ -18,7 +18,7 @@ var MarkdownRender = /** @class */ (function () {
18
18
  *
19
19
  * @returns {void}
20
20
  * @hidden
21
-
21
+ * @deprecated
22
22
  */
23
23
  MarkdownRender.prototype.renderPanel = function () {
24
24
  var rteObj = this.parent;
@@ -37,7 +37,7 @@ var MarkdownRender = /** @class */ (function () {
37
37
  *
38
38
  * @returns {Element} - specifies the element
39
39
  * @hidden
40
-
40
+ * @deprecated
41
41
  */
42
42
  MarkdownRender.prototype.getPanel = function () {
43
43
  return this.contentPanel;
@@ -47,7 +47,7 @@ var MarkdownRender = /** @class */ (function () {
47
47
  *
48
48
  * @returns {Element} - specifies the element
49
49
  * @hidden
50
-
50
+ * @deprecated
51
51
  */
52
52
  MarkdownRender.prototype.getEditPanel = function () {
53
53
  return this.editableElement;
@@ -66,7 +66,7 @@ var MarkdownRender = /** @class */ (function () {
66
66
  * @param {Element} panel - specifies the element.
67
67
  * @returns {void}
68
68
  * @hidden
69
-
69
+ * @deprecated
70
70
  */
71
71
  MarkdownRender.prototype.setPanel = function (panel) {
72
72
  this.contentPanel = panel;
@@ -76,7 +76,7 @@ var MarkdownRender = /** @class */ (function () {
76
76
  *
77
77
  * @returns {void}
78
78
  * @hidden
79
-
79
+ * @deprecated
80
80
  */
81
81
  MarkdownRender.prototype.getDocument = function () {
82
82
  return this.getEditPanel().ownerDocument;
@@ -4,7 +4,7 @@ import { BaseQuickToolbar } from '../actions/base-quick-toolbar';
4
4
  * `Popup renderer` module is used to render popup in RichTextEditor.
5
5
  *
6
6
  * @hidden
7
-
7
+ * @deprecated
8
8
  */
9
9
  export declare class PopupRenderer implements IRenderer {
10
10
  private popupObj;
@@ -23,7 +23,7 @@ export declare class PopupRenderer implements IRenderer {
23
23
  * @param {BaseQuickToolbar} args - specifies the arguments.
24
24
  * @returns {void}
25
25
  * @hidden
26
-
26
+ * @deprecated
27
27
  */
28
28
  renderPopup(args: BaseQuickToolbar): void;
29
29
  /**
@@ -31,7 +31,7 @@ export declare class PopupRenderer implements IRenderer {
31
31
  *
32
32
  * @returns {void}
33
33
  * @hidden
34
-
34
+ * @deprecated
35
35
  */
36
36
  renderPanel(): void;
37
37
  /**
@@ -39,7 +39,7 @@ export declare class PopupRenderer implements IRenderer {
39
39
  *
40
40
  * @returns {Element} - specifies the element
41
41
  * @hidden
42
-
42
+ * @deprecated
43
43
  */
44
44
  getPanel(): Element;
45
45
  /**
@@ -48,7 +48,7 @@ export declare class PopupRenderer implements IRenderer {
48
48
  * @returns {void}
49
49
  * @param {Element} panel - specifies the element
50
50
  * @hidden
51
-
51
+ * @deprecated
52
52
  */
53
53
  setPanel(panel: Element): void;
54
54
  }
@@ -5,7 +5,7 @@ import * as events from '../base/constant';
5
5
  * `Popup renderer` module is used to render popup in RichTextEditor.
6
6
  *
7
7
  * @hidden
8
-
8
+ * @deprecated
9
9
  */
10
10
  var PopupRenderer = /** @class */ (function () {
11
11
  /**
@@ -26,7 +26,7 @@ var PopupRenderer = /** @class */ (function () {
26
26
  * @param {BaseQuickToolbar} args - specifies the arguments.
27
27
  * @returns {void}
28
28
  * @hidden
29
-
29
+ * @deprecated
30
30
  */
31
31
  PopupRenderer.prototype.renderPopup = function (args) {
32
32
  this.setPanel(args.element);
@@ -44,7 +44,7 @@ var PopupRenderer = /** @class */ (function () {
44
44
  *
45
45
  * @returns {void}
46
46
  * @hidden
47
-
47
+ * @deprecated
48
48
  */
49
49
  PopupRenderer.prototype.renderPanel = function () {
50
50
  this.getPanel().classList.add(CLS_QUICK_POP);
@@ -54,7 +54,7 @@ var PopupRenderer = /** @class */ (function () {
54
54
  *
55
55
  * @returns {Element} - specifies the element
56
56
  * @hidden
57
-
57
+ * @deprecated
58
58
  */
59
59
  PopupRenderer.prototype.getPanel = function () {
60
60
  return this.popupPanel;
@@ -65,7 +65,7 @@ var PopupRenderer = /** @class */ (function () {
65
65
  * @returns {void}
66
66
  * @param {Element} panel - specifies the element
67
67
  * @hidden
68
-
68
+ * @deprecated
69
69
  */
70
70
  PopupRenderer.prototype.setPanel = function (panel) {
71
71
  this.popupPanel = panel;
@@ -4,7 +4,7 @@ import { ServiceLocator } from '../services/service-locator';
4
4
  * Content module is used to render Rich Text Editor content
5
5
  *
6
6
  * @hidden
7
-
7
+ * @deprecated
8
8
  */
9
9
  export declare class Render {
10
10
  private parent;
@@ -24,7 +24,7 @@ export declare class Render {
24
24
  *
25
25
  * @returns {void}
26
26
  * @hidden
27
-
27
+ * @deprecated
28
28
  */
29
29
  render(): void;
30
30
  /**
@@ -5,7 +5,7 @@ import { isNullOrUndefined } from '@syncfusion/ej2-base';
5
5
  * Content module is used to render Rich Text Editor content
6
6
  *
7
7
  * @hidden
8
-
8
+ * @deprecated
9
9
  */
10
10
  var Render = /** @class */ (function () {
11
11
  /**
@@ -26,7 +26,7 @@ var Render = /** @class */ (function () {
26
26
  *
27
27
  * @returns {void}
28
28
  * @hidden
29
-
29
+ * @deprecated
30
30
  */
31
31
  Render.prototype.render = function () {
32
32
  // eslint-disable-next-line
@@ -115,7 +115,7 @@ export declare class Table {
115
115
  * @function destroy
116
116
  * @returns {void}
117
117
  * @hidden
118
-
118
+ * @deprecated
119
119
  */
120
120
  destroy(): void;
121
121
  private moduleDestroy;
@@ -1593,7 +1593,8 @@ var Table = /** @class */ (function () {
1593
1593
  var argument = ((Browser.isDevice || (!isNullOrUndefined(args.args)
1594
1594
  && !isNullOrUndefined(args.args.originalEvent) &&
1595
1595
  args.args.originalEvent.action === 'insert-table')
1596
- || proxy.parent.inlineMode.enable || !isNullOrUndefined(proxy.parent.quickToolbarSettings.text)) ? args :
1596
+ || proxy.parent.inlineMode.enable || ((!isNullOrUndefined(proxy.parent.quickToolbarSettings.text)) &&
1597
+ !(args instanceof PointerEvent))) ? args :
1597
1598
  this);
1598
1599
  proxy.tableInsert(proxy.rowTextBox.value, proxy.columnTextBox.value, e, argument);
1599
1600
  }
@@ -1687,7 +1688,7 @@ var Table = /** @class */ (function () {
1687
1688
  * @function destroy
1688
1689
  * @returns {void}
1689
1690
  * @hidden
1690
-
1691
+ * @deprecated
1691
1692
  */
1692
1693
  Table.prototype.destroy = function () {
1693
1694
  if (isNOU(this.parent)) {