@syncfusion/ej2-richtexteditor 27.1.55 → 27.1.57-643705

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 (233) hide show
  1. package/.eslintignore +4 -4
  2. package/.eslintrc.json +260 -260
  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 +985 -738
  7. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  8. package/dist/es6/ej2-richtexteditor.es5.js +601 -352
  9. package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
  10. package/ej2-richtexteditor-component.sln +30 -0
  11. package/helpers/e2e/index.js +3 -3
  12. package/helpers/e2e/rte-helper.js +13 -13
  13. package/license +9 -9
  14. package/package.json +85 -85
  15. package/src/common/config.d.ts +7 -0
  16. package/src/common/config.js +12 -0
  17. package/src/common/interface.d.ts +10 -8
  18. package/src/common/util.js +2 -1
  19. package/src/editor-manager/base/classes.d.ts +1 -1
  20. package/src/editor-manager/base/classes.js +1 -1
  21. package/src/editor-manager/base/constant.d.ts +4 -0
  22. package/src/editor-manager/base/constant.js +4 -0
  23. package/src/editor-manager/base/editor-manager.d.ts +3 -3
  24. package/src/editor-manager/base/editor-manager.js +3 -3
  25. package/src/editor-manager/base/enum.d.ts +2 -2
  26. package/src/editor-manager/base/interface.d.ts +9 -9
  27. package/src/editor-manager/base/types.d.ts +1 -1
  28. package/src/editor-manager/plugin/alignments.d.ts +2 -2
  29. package/src/editor-manager/plugin/alignments.js +2 -2
  30. package/src/editor-manager/plugin/audio.d.ts +3 -3
  31. package/src/editor-manager/plugin/audio.js +3 -3
  32. package/src/editor-manager/plugin/clearformat-exec.d.ts +2 -2
  33. package/src/editor-manager/plugin/clearformat-exec.js +2 -2
  34. package/src/editor-manager/plugin/clearformat.d.ts +1 -1
  35. package/src/editor-manager/plugin/clearformat.js +1 -1
  36. package/src/editor-manager/plugin/dom-node.d.ts +36 -36
  37. package/src/editor-manager/plugin/dom-node.js +36 -36
  38. package/src/editor-manager/plugin/format-painter-actions.d.ts +1 -1
  39. package/src/editor-manager/plugin/format-painter-actions.js +1 -1
  40. package/src/editor-manager/plugin/formats.d.ts +3 -2
  41. package/src/editor-manager/plugin/formats.js +27 -2
  42. package/src/editor-manager/plugin/image.d.ts +3 -3
  43. package/src/editor-manager/plugin/image.js +11 -5
  44. package/src/editor-manager/plugin/indents.d.ts +2 -2
  45. package/src/editor-manager/plugin/indents.js +2 -2
  46. package/src/editor-manager/plugin/insert-methods.d.ts +4 -4
  47. package/src/editor-manager/plugin/insert-methods.js +4 -4
  48. package/src/editor-manager/plugin/insert-text.d.ts +2 -2
  49. package/src/editor-manager/plugin/insert-text.js +2 -2
  50. package/src/editor-manager/plugin/inserthtml-exec.d.ts +2 -2
  51. package/src/editor-manager/plugin/inserthtml-exec.js +2 -2
  52. package/src/editor-manager/plugin/inserthtml.d.ts +4 -2
  53. package/src/editor-manager/plugin/inserthtml.js +98 -19
  54. package/src/editor-manager/plugin/isformatted.d.ts +9 -9
  55. package/src/editor-manager/plugin/isformatted.js +9 -9
  56. package/src/editor-manager/plugin/link.d.ts +2 -2
  57. package/src/editor-manager/plugin/link.js +2 -2
  58. package/src/editor-manager/plugin/lists.d.ts +2 -2
  59. package/src/editor-manager/plugin/lists.js +2 -2
  60. package/src/editor-manager/plugin/ms-word-clean-up.d.ts +2 -1
  61. package/src/editor-manager/plugin/ms-word-clean-up.js +17 -1
  62. package/src/editor-manager/plugin/nodecutter.d.ts +6 -6
  63. package/src/editor-manager/plugin/nodecutter.js +8 -8
  64. package/src/editor-manager/plugin/selection-commands.d.ts +1 -1
  65. package/src/editor-manager/plugin/selection-commands.js +1 -1
  66. package/src/editor-manager/plugin/selection-exec.d.ts +2 -2
  67. package/src/editor-manager/plugin/selection-exec.js +2 -2
  68. package/src/editor-manager/plugin/table.d.ts +2 -2
  69. package/src/editor-manager/plugin/table.js +2 -2
  70. package/src/editor-manager/plugin/toolbar-status.d.ts +2 -2
  71. package/src/editor-manager/plugin/toolbar-status.js +2 -2
  72. package/src/editor-manager/plugin/undo.d.ts +6 -6
  73. package/src/editor-manager/plugin/undo.js +6 -6
  74. package/src/editor-manager/plugin/video.d.ts +3 -3
  75. package/src/editor-manager/plugin/video.js +3 -3
  76. package/src/markdown-parser/base/interface.d.ts +10 -10
  77. package/src/markdown-parser/base/markdown-parser.d.ts +3 -3
  78. package/src/markdown-parser/base/markdown-parser.js +3 -3
  79. package/src/markdown-parser/base/types.d.ts +1 -1
  80. package/src/markdown-parser/plugin/clearformat.d.ts +2 -2
  81. package/src/markdown-parser/plugin/clearformat.js +2 -2
  82. package/src/markdown-parser/plugin/formats.d.ts +2 -2
  83. package/src/markdown-parser/plugin/formats.js +2 -2
  84. package/src/markdown-parser/plugin/insert-text.d.ts +2 -2
  85. package/src/markdown-parser/plugin/insert-text.js +2 -2
  86. package/src/markdown-parser/plugin/link.d.ts +2 -2
  87. package/src/markdown-parser/plugin/link.js +2 -2
  88. package/src/markdown-parser/plugin/markdown-selection.d.ts +14 -14
  89. package/src/markdown-parser/plugin/markdown-selection.js +14 -14
  90. package/src/markdown-parser/plugin/md-selection-formats.d.ts +1 -1
  91. package/src/markdown-parser/plugin/md-selection-formats.js +1 -1
  92. package/src/markdown-parser/plugin/table.d.ts +3 -3
  93. package/src/markdown-parser/plugin/table.js +3 -3
  94. package/src/markdown-parser/plugin/undo.d.ts +6 -6
  95. package/src/markdown-parser/plugin/undo.js +6 -6
  96. package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +9 -9
  97. package/src/rich-text-editor/actions/base-quick-toolbar.js +9 -9
  98. package/src/rich-text-editor/actions/base-toolbar.d.ts +3 -3
  99. package/src/rich-text-editor/actions/base-toolbar.js +3 -3
  100. package/src/rich-text-editor/actions/color-picker.d.ts +2 -2
  101. package/src/rich-text-editor/actions/color-picker.js +2 -2
  102. package/src/rich-text-editor/actions/count.d.ts +3 -3
  103. package/src/rich-text-editor/actions/count.js +3 -3
  104. package/src/rich-text-editor/actions/dropdown-buttons.d.ts +2 -2
  105. package/src/rich-text-editor/actions/dropdown-buttons.js +2 -2
  106. package/src/rich-text-editor/actions/emoji-picker.d.ts +1 -1
  107. package/src/rich-text-editor/actions/emoji-picker.js +1 -1
  108. package/src/rich-text-editor/actions/full-screen.d.ts +3 -3
  109. package/src/rich-text-editor/actions/full-screen.js +3 -3
  110. package/src/rich-text-editor/actions/html-editor.d.ts +3 -3
  111. package/src/rich-text-editor/actions/html-editor.js +12 -4
  112. package/src/rich-text-editor/actions/keyboard-model.d.ts +16 -16
  113. package/src/rich-text-editor/actions/keyboard.d.ts +1 -1
  114. package/src/rich-text-editor/actions/keyboard.js +20 -20
  115. package/src/rich-text-editor/actions/markdown-editor.d.ts +2 -2
  116. package/src/rich-text-editor/actions/markdown-editor.js +2 -2
  117. package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -1
  118. package/src/rich-text-editor/actions/paste-clean-up.js +49 -22
  119. package/src/rich-text-editor/actions/quick-toolbar.d.ts +9 -9
  120. package/src/rich-text-editor/actions/quick-toolbar.js +9 -9
  121. package/src/rich-text-editor/actions/resize.js +4 -0
  122. package/src/rich-text-editor/actions/toolbar.d.ts +13 -13
  123. package/src/rich-text-editor/actions/toolbar.js +13 -13
  124. package/src/rich-text-editor/actions/xhtml-validation.d.ts +1 -1
  125. package/src/rich-text-editor/actions/xhtml-validation.js +1 -1
  126. package/src/rich-text-editor/base/classes.d.ts +125 -125
  127. package/src/rich-text-editor/base/classes.js +125 -125
  128. package/src/rich-text-editor/base/constant.d.ts +158 -158
  129. package/src/rich-text-editor/base/constant.js +158 -158
  130. package/src/rich-text-editor/base/enum.d.ts +1 -1
  131. package/src/rich-text-editor/base/enum.js +1 -1
  132. package/src/rich-text-editor/base/interface.d.ts +51 -51
  133. package/src/rich-text-editor/base/interface.js +1 -1
  134. package/src/rich-text-editor/base/rich-text-editor-model.d.ts +958 -958
  135. package/src/rich-text-editor/base/rich-text-editor.d.ts +62 -62
  136. package/src/rich-text-editor/base/rich-text-editor.js +68 -65
  137. package/src/rich-text-editor/base/util.d.ts +1 -1
  138. package/src/rich-text-editor/base/util.js +1 -1
  139. package/src/rich-text-editor/formatter/formatter.d.ts +8 -8
  140. package/src/rich-text-editor/formatter/formatter.js +8 -8
  141. package/src/rich-text-editor/formatter/html-formatter.d.ts +2 -2
  142. package/src/rich-text-editor/formatter/html-formatter.js +15 -15
  143. package/src/rich-text-editor/formatter/markdown-formatter.d.ts +2 -2
  144. package/src/rich-text-editor/formatter/markdown-formatter.js +15 -15
  145. package/src/rich-text-editor/models/iframe-settings-model.d.ts +38 -38
  146. package/src/rich-text-editor/models/iframe-settings.js +19 -19
  147. package/src/rich-text-editor/models/inline-mode-model.d.ts +11 -11
  148. package/src/rich-text-editor/models/inline-mode.js +19 -19
  149. package/src/rich-text-editor/models/slash-menu-settings-model.d.ts +25 -25
  150. package/src/rich-text-editor/models/slash-menu-settings.js +19 -19
  151. package/src/rich-text-editor/models/toolbar-settings-model.d.ts +807 -807
  152. package/src/rich-text-editor/models/toolbar-settings.js +19 -19
  153. package/src/rich-text-editor/renderer/audio-module.d.ts +1 -1
  154. package/src/rich-text-editor/renderer/audio-module.js +8 -2
  155. package/src/rich-text-editor/renderer/content-renderer.d.ts +6 -6
  156. package/src/rich-text-editor/renderer/content-renderer.js +6 -6
  157. package/src/rich-text-editor/renderer/dialog-renderer.d.ts +2 -2
  158. package/src/rich-text-editor/renderer/dialog-renderer.js +2 -2
  159. package/src/rich-text-editor/renderer/iframe-content-renderer.d.ts +4 -4
  160. package/src/rich-text-editor/renderer/iframe-content-renderer.js +17 -17
  161. package/src/rich-text-editor/renderer/image-module.d.ts +1 -1
  162. package/src/rich-text-editor/renderer/image-module.js +58 -21
  163. package/src/rich-text-editor/renderer/link-module.d.ts +1 -1
  164. package/src/rich-text-editor/renderer/link-module.js +4 -1
  165. package/src/rich-text-editor/renderer/markdown-renderer.d.ts +6 -6
  166. package/src/rich-text-editor/renderer/markdown-renderer.js +6 -6
  167. package/src/rich-text-editor/renderer/popup-renderer.d.ts +5 -5
  168. package/src/rich-text-editor/renderer/popup-renderer.js +5 -5
  169. package/src/rich-text-editor/renderer/render.d.ts +2 -2
  170. package/src/rich-text-editor/renderer/render.js +2 -2
  171. package/src/rich-text-editor/renderer/slash-menu.js +9 -0
  172. package/src/rich-text-editor/renderer/table-module.d.ts +1 -1
  173. package/src/rich-text-editor/renderer/table-module.js +5 -4
  174. package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +9 -9
  175. package/src/rich-text-editor/renderer/toolbar-renderer.js +9 -9
  176. package/src/rich-text-editor/renderer/video-module.d.ts +1 -1
  177. package/src/rich-text-editor/renderer/video-module.js +8 -2
  178. package/src/rich-text-editor/renderer/view-source.d.ts +5 -5
  179. package/src/rich-text-editor/renderer/view-source.js +5 -5
  180. package/src/rich-text-editor/services/renderer-factory.d.ts +3 -3
  181. package/src/rich-text-editor/services/renderer-factory.js +3 -3
  182. package/src/rich-text-editor/services/service-locator.d.ts +3 -3
  183. package/src/rich-text-editor/services/service-locator.js +3 -3
  184. package/src/selection/selection.d.ts +24 -23
  185. package/src/selection/selection.js +37 -34
  186. package/styles/_all.scss +1 -1
  187. package/styles/material3-dark.scss +1 -1
  188. package/styles/material3.scss +1 -1
  189. package/styles/rich-text-editor/_all.scss +2 -2
  190. package/styles/rich-text-editor/_bds-definition.scss +290 -290
  191. package/styles/rich-text-editor/_bigger.scss +610 -610
  192. package/styles/rich-text-editor/_bootstrap-dark-definition.scss +291 -291
  193. package/styles/rich-text-editor/_bootstrap-definition.scss +349 -349
  194. package/styles/rich-text-editor/_bootstrap4-definition.scss +476 -476
  195. package/styles/rich-text-editor/_bootstrap5-definition.scss +278 -278
  196. package/styles/rich-text-editor/_bootstrap5.3-definition.scss +278 -278
  197. package/styles/rich-text-editor/_fabric-dark-definition.scss +275 -275
  198. package/styles/rich-text-editor/_fabric-definition.scss +273 -273
  199. package/styles/rich-text-editor/_fluent-definition.scss +279 -279
  200. package/styles/rich-text-editor/_fluent2-definition.scss +287 -287
  201. package/styles/rich-text-editor/_fusionnew-definition.scss +276 -276
  202. package/styles/rich-text-editor/_highcontrast-definition.scss +274 -274
  203. package/styles/rich-text-editor/_highcontrast-light-definition.scss +273 -273
  204. package/styles/rich-text-editor/_layout.scss +2180 -2180
  205. package/styles/rich-text-editor/_material-dark-definition.scss +278 -278
  206. package/styles/rich-text-editor/_material-definition.scss +276 -276
  207. package/styles/rich-text-editor/_material3-definition.scss +278 -278
  208. package/styles/rich-text-editor/_tailwind-definition.scss +273 -273
  209. package/styles/rich-text-editor/_theme.scss +844 -844
  210. package/styles/rich-text-editor/icons/_bds.scss +372 -372
  211. package/styles/rich-text-editor/icons/_bootstrap-dark.scss +373 -373
  212. package/styles/rich-text-editor/icons/_bootstrap.scss +373 -373
  213. package/styles/rich-text-editor/icons/_bootstrap4.scss +373 -373
  214. package/styles/rich-text-editor/icons/_bootstrap5.3.scss +372 -372
  215. package/styles/rich-text-editor/icons/_bootstrap5.scss +372 -372
  216. package/styles/rich-text-editor/icons/_fabric-dark.scss +373 -373
  217. package/styles/rich-text-editor/icons/_fabric.scss +373 -373
  218. package/styles/rich-text-editor/icons/_fluent.scss +372 -372
  219. package/styles/rich-text-editor/icons/_fluent2.scss +369 -369
  220. package/styles/rich-text-editor/icons/_fusionnew.scss +357 -357
  221. package/styles/rich-text-editor/icons/_highcontrast-light.scss +361 -361
  222. package/styles/rich-text-editor/icons/_highcontrast.scss +373 -373
  223. package/styles/rich-text-editor/icons/_material-dark.scss +373 -373
  224. package/styles/rich-text-editor/icons/_material.scss +373 -373
  225. package/styles/rich-text-editor/icons/_material3.scss +372 -372
  226. package/styles/rich-text-editor/icons/_tailwind.scss +372 -372
  227. package/styles/rich-text-editor/material3-dark.scss +1 -1
  228. package/styles/rich-text-editor/material3.scss +1 -1
  229. package/dist/ej2-richtexteditor.min.js +0 -10
  230. package/dist/global/ej2-richtexteditor.min.js +0 -11
  231. package/dist/global/ej2-richtexteditor.min.js.map +0 -1
  232. package/dist/global/index.d.ts +0 -14
  233. package/tslint.json +0 -111
@@ -1,4 +1,4 @@
1
- import { Property, ChildProperty, Complex, Event, EmitType } from '@syncfusion/ej2-base';import { AjaxSettings, AjaxSettingsModel, ContextMenuSettings, ContextMenuSettingsModel, BeforeSendEventArgs } from '@syncfusion/ej2-filemanager';import { DetailsViewSettings, DetailsViewSettingsModel, NavigationPaneSettings } from '@syncfusion/ej2-filemanager';import { NavigationPaneSettingsModel, SearchSettings, SearchSettingsModel, SortOrder } from '@syncfusion/ej2-filemanager';import { ToolbarSettingsModel as FileToolbarSettingsModel, ToolbarSettings as FileToolbarSettings } from '@syncfusion/ej2-filemanager';import { UploadSettings, UploadSettingsModel, ViewType } from '@syncfusion/ej2-filemanager';import { SaveFormat, DisplayLayoutOptions } from '../../common';import { ToolbarType, ActionOnScroll, ToolbarItems, ToolbarConfigItems } from '../base/enum';import { IToolbarItems, IDropDownItemModel, ColorModeType, IToolsItemConfigs, IListDropDownModel, EmojiIconsSet } from '../base/interface';import { backgroundColor, fontColor, fontFamily, fontSize, formatItems, predefinedItems, TableStyleItems, numberFormatList, bulletFormatList, defaultEmojiIcons } from './items';
1
+ import { Property, ChildProperty, Complex, Event, EmitType } from '@syncfusion/ej2-base';
2
2
 
3
3
  /**
4
4
  * Interface for a class ToolbarSettings
@@ -6,44 +6,44 @@ import { Property, ChildProperty, Complex, Event, EmitType } from '@syncfusion/e
6
6
  export interface ToolbarSettingsModel {
7
7
 
8
8
  /**
9
- * Specifies whether to render toolbar in RichTextEditor.
10
- *
11
- * @default true
12
- */
13
- enable?: boolean;
9
+ * Specifies whether to render toolbar in RichTextEditor.
10
+ *
11
+ * @default true
12
+ */
13
+ enable?: boolean;
14
14
 
15
15
  /**
16
- * Specifies whether to enable/disable floating toolbar.
17
- *
18
- * @default true
19
- */
20
- enableFloating?: boolean;
16
+ * Specifies whether to enable/disable floating toolbar.
17
+ *
18
+ * @default true
19
+ */
20
+ enableFloating?: boolean;
21
21
 
22
22
  /**
23
- * Specifies the Toolbar display types.
24
- * The possible types are:
25
- * - Expand: Toolbar items placed within the available space and rest of the items are placed to the extended menu section.
26
- * - MultiRow: Toolbar which placed at top of Rich Text Editor editing area.
27
- * - Scrollable: All the toolbar items are displayed in a single line with horizontal scrolling enabled.
28
- *
29
- * @default Expand
30
- */
31
- type?: ToolbarType;
23
+ * Specifies the Toolbar display types.
24
+ * The possible types are:
25
+ * - Expand: Toolbar items placed within the available space and rest of the items are placed to the extended menu section.
26
+ * - MultiRow: Toolbar which placed at top of Rich Text Editor editing area.
27
+ * - Scrollable: All the toolbar items are displayed in a single line with horizontal scrolling enabled.
28
+ *
29
+ * @default Expand
30
+ */
31
+ type?: ToolbarType;
32
32
 
33
33
  /**
34
- * An array of string or object that is used to configure items.
35
- *
36
- * @default ['Bold', 'Italic', 'Underline', '|', 'Formats', 'Alignments', 'Blockquote' 'OrderedList',
37
- * 'UnorderedList', '|', 'CreateLink', 'Image', '|', 'SourceCode', 'Undo', 'Redo']
38
- */
39
- items?: (string |ToolbarConfigItems | IToolbarItems)[];
34
+ * An array of string or object that is used to configure items.
35
+ *
36
+ * @default ['Bold', 'Italic', 'Underline', '|', 'Formats', 'Alignments', 'Blockquote' 'OrderedList',
37
+ * 'UnorderedList', '|', 'CreateLink', 'Image', '|', 'SourceCode', 'Undo', 'Redo']
38
+ */
39
+ items?: (string |ToolbarConfigItems | IToolbarItems)[];
40
40
 
41
41
  /**
42
- * Using this property, Modify the default toolbar item configuration like icon class.
43
- *
44
- * @default {}
45
- */
46
- itemConfigs?: { [key in ToolbarItems]?: IToolsItemConfigs };
42
+ * Using this property, Modify the default toolbar item configuration like icon class.
43
+ *
44
+ * @default {}
45
+ */
46
+ itemConfigs?: { [key in ToolbarItems]?: IToolsItemConfigs };
47
47
 
48
48
  }
49
49
 
@@ -53,11 +53,11 @@ export interface ToolbarSettingsModel {
53
53
  export interface ImportWordModel {
54
54
 
55
55
  /**
56
- * Specifies the URL that will receive and handle file uploads on the server.
57
- *
58
- * @default 'null'
59
- */
60
- serviceUrl?: string;
56
+ * Specifies the URL that will receive and handle file uploads on the server.
57
+ *
58
+ * @default 'null'
59
+ */
60
+ serviceUrl?: string;
61
61
 
62
62
  }
63
63
 
@@ -67,25 +67,25 @@ export interface ImportWordModel {
67
67
  export interface ExportWordModel {
68
68
 
69
69
  /**
70
- * Specifies the URL used to export Rich Text Editor content into Word files.
71
- *
72
- * @default 'null'
73
- */
74
- serviceUrl?: string;
70
+ * Specifies the URL used to export Rich Text Editor content into Word files.
71
+ *
72
+ * @default 'null'
73
+ */
74
+ serviceUrl?: string;
75
75
 
76
76
  /**
77
- * Specifies the file name of the exported word file.
78
- *
79
- * @default 'Sample.docx'
80
- */
81
- fileName?: string;
77
+ * Specifies the file name of the exported word file.
78
+ *
79
+ * @default 'Sample.docx'
80
+ */
81
+ fileName?: string;
82
82
 
83
83
  /**
84
- * Specifies the stylesheet to be applied to the exported file.
85
- *
86
- * @default 'null'
87
- */
88
- stylesheet?: string;
84
+ * Specifies the stylesheet to be applied to the exported file.
85
+ *
86
+ * @default 'null'
87
+ */
88
+ stylesheet?: string;
89
89
 
90
90
  }
91
91
 
@@ -95,25 +95,25 @@ export interface ExportWordModel {
95
95
  export interface ExportPdfModel {
96
96
 
97
97
  /**
98
- * Specifies the URL used to export Rich Text Editor content into PDF files.
99
- *
100
- * @default 'null'
101
- */
102
- serviceUrl?: string;
98
+ * Specifies the URL used to export Rich Text Editor content into PDF files.
99
+ *
100
+ * @default 'null'
101
+ */
102
+ serviceUrl?: string;
103
103
 
104
104
  /**
105
- * Specifies the file name of the exported pdf file.
106
- *
107
- * @default 'Sample.pdf'
108
- */
109
- fileName?: string;
105
+ * Specifies the file name of the exported pdf file.
106
+ *
107
+ * @default 'Sample.pdf'
108
+ */
109
+ fileName?: string;
110
110
 
111
111
  /**
112
- * Specifies the stylesheet to be applied to the exported file.
113
- *
114
- * @default 'null'
115
- */
116
- stylesheet?: string;
112
+ * Specifies the stylesheet to be applied to the exported file.
113
+ *
114
+ * @default 'null'
115
+ */
116
+ stylesheet?: string;
117
117
 
118
118
  }
119
119
 
@@ -123,114 +123,114 @@ export interface ExportPdfModel {
123
123
  export interface ImageSettingsModel {
124
124
 
125
125
  /**
126
- * Specifies whether to allowType based file select.
127
- *
128
- * @default ['.jpeg', '.jpg', '.png']
129
- */
130
- allowedTypes?: string[];
126
+ * Specifies whether to allowType based file select.
127
+ *
128
+ * @default ['.jpeg', '.jpg', '.png']
129
+ */
130
+ allowedTypes?: string[];
131
131
 
132
132
  /**
133
- * Specifies whether insert image inline or break.
134
- *
135
- * @default 'inline'
136
- */
137
- display?: string;
133
+ * Specifies whether insert image inline or break.
134
+ *
135
+ * @default 'inline'
136
+ */
137
+ display?: string;
138
138
 
139
139
  /**
140
- * Specifies whether the inserted image is saved as blob or base64.
141
- *
142
- * @default 'Blob'
143
- */
144
- saveFormat?: SaveFormat;
140
+ * Specifies whether the inserted image is saved as blob or base64.
141
+ *
142
+ * @default 'Blob'
143
+ */
144
+ saveFormat?: SaveFormat;
145
145
 
146
146
  /**
147
- * Specifies whether image width.
148
- *
149
- * @default 'auto'
150
- */
151
- width?: string;
147
+ * Specifies whether image width.
148
+ *
149
+ * @default 'auto'
150
+ */
151
+ width?: string;
152
152
 
153
153
  /**
154
- * Specifies whether image height.
155
- *
156
- * @default 'auto'
157
- */
158
- height?: string;
154
+ * Specifies whether image height.
155
+ *
156
+ * @default 'auto'
157
+ */
158
+ height?: string;
159
159
 
160
160
  /**
161
- * Specifies the URL of save action that will receive the uploaded image and save it on the server.
162
- *
163
- *
164
- * The URL of the save action for uploading and saving images on the server.
165
- * The save action should handle a `POST` request and define an argument with the name `UploadFiles`.
166
- *
167
- * Trigger the event when inserting the image via Insert image dialog, pasting the image, replacing the existing image, and dragging and dropping from the file browser.
168
- *
169
- * @default null
170
- */
171
- saveUrl?: string;
161
+ * Specifies the URL of save action that will receive the uploaded image and save it on the server.
162
+ *
163
+ *
164
+ * The URL of the save action for uploading and saving images on the server.
165
+ * The save action should handle a `POST` request and define an argument with the name `UploadFiles`.
166
+ *
167
+ * Trigger the event when inserting the image via Insert image dialog, pasting the image, replacing the existing image, and dragging and dropping from the file browser.
168
+ *
169
+ * @default null
170
+ */
171
+ saveUrl?: string;
172
172
 
173
173
  /**
174
- * Specifies the path of the location to store the images and refer it to display the images.
175
- *
176
- * @default null
177
- */
178
- path?: string;
174
+ * Specifies the path of the location to store the images and refer it to display the images.
175
+ *
176
+ * @default null
177
+ */
178
+ path?: string;
179
179
 
180
180
  /**
181
- * To enable resizing for image element.
182
- *
183
- * @default 'true'
184
- */
185
- resize?: boolean;
181
+ * To enable resizing for image element.
182
+ *
183
+ * @default 'true'
184
+ */
185
+ resize?: boolean;
186
186
 
187
187
  /**
188
- * Specifies the URL of remove action that receives the image information and handles the remove operation on the server.
189
- *
190
- * The URL of the remove action for removing the image on the server.
191
- *
192
- * The remove action should handle a `POST` request and define an argument with the name `UploadFiles`.
193
- *
194
- * Trigger the event when uploading and canceling or removing an image in the insert image dialog, pasting and removing an image in Paste cleanup popup.
195
- *
196
- * @default null
197
- */
198
- removeUrl?: string;
188
+ * Specifies the URL of remove action that receives the image information and handles the remove operation on the server.
189
+ *
190
+ * The URL of the remove action for removing the image on the server.
191
+ *
192
+ * The remove action should handle a `POST` request and define an argument with the name `UploadFiles`.
193
+ *
194
+ * Trigger the event when uploading and canceling or removing an image in the insert image dialog, pasting and removing an image in Paste cleanup popup.
195
+ *
196
+ * @default null
197
+ */
198
+ removeUrl?: string;
199
199
 
200
200
  /**
201
- * Defines the minimum Width of the image.
202
- *
203
- * @default '0'
204
- */
205
- minWidth?: string | number;
201
+ * Defines the minimum Width of the image.
202
+ *
203
+ * @default '0'
204
+ */
205
+ minWidth?: string | number;
206
206
 
207
207
  /**
208
- * Defines the maximum Width of the image.
209
- *
210
- * @default null
211
- */
212
- maxWidth?: string | number;
208
+ * Defines the maximum Width of the image.
209
+ *
210
+ * @default null
211
+ */
212
+ maxWidth?: string | number;
213
213
 
214
214
  /**
215
- * Defines the minimum Height of the image.
216
- *
217
- * @default '0'
218
- */
219
- minHeight?: string | number;
215
+ * Defines the minimum Height of the image.
216
+ *
217
+ * @default '0'
218
+ */
219
+ minHeight?: string | number;
220
220
 
221
221
  /**
222
- * Defines the maximum Height of the image.
223
- *
224
- * @default null
225
- */
226
- maxHeight?: string | number;
222
+ * Defines the maximum Height of the image.
223
+ *
224
+ * @default null
225
+ */
226
+ maxHeight?: string | number;
227
227
 
228
228
  /**
229
- * image resizing should be done by percentage calculation.
230
- *
231
- * @default false
232
- */
233
- resizeByPercent?: boolean;
229
+ * image resizing should be done by percentage calculation.
230
+ *
231
+ * @default false
232
+ */
233
+ resizeByPercent?: boolean;
234
234
 
235
235
  }
236
236
 
@@ -240,46 +240,46 @@ export interface ImageSettingsModel {
240
240
  export interface AudioSettingsModel {
241
241
 
242
242
  /**
243
- * Specifies whether to allowType based file select.
244
- *
245
- * @default ['.wav', '.mp3', '.m4a','.wma']
246
- */
247
- allowedTypes?: string[];
243
+ * Specifies whether to allowType based file select.
244
+ *
245
+ * @default ['.wav', '.mp3', '.m4a','.wma']
246
+ */
247
+ allowedTypes?: string[];
248
248
 
249
249
  /**
250
- * Specifies whether insert audio inline or break.
251
- *
252
- * @default 'Inline'
253
- */
254
- layoutOption?: DisplayLayoutOptions;
250
+ * Specifies whether insert audio inline or break.
251
+ *
252
+ * @default 'Inline'
253
+ */
254
+ layoutOption?: DisplayLayoutOptions;
255
255
 
256
256
  /**
257
- * Specifies whether the inserted audio is saved as blob or base64.
258
- *
259
- * @default 'Blob'
260
- */
261
- saveFormat?: SaveFormat;
257
+ * Specifies whether the inserted audio is saved as blob or base64.
258
+ *
259
+ * @default 'Blob'
260
+ */
261
+ saveFormat?: SaveFormat;
262
262
 
263
263
  /**
264
- * Specifies the URL of save action that will receive the upload files and save in the server.
265
- *
266
- * @default 'null'
267
- */
268
- saveUrl?: string;
264
+ * Specifies the URL of save action that will receive the upload files and save in the server.
265
+ *
266
+ * @default 'null'
267
+ */
268
+ saveUrl?: string;
269
269
 
270
270
  /**
271
- * Specifies the URL of remove action that receives the file information and handle the remove operation in server.
272
- *
273
- * @default 'null'
274
- */
275
- removeUrl?: string;
271
+ * Specifies the URL of remove action that receives the file information and handle the remove operation in server.
272
+ *
273
+ * @default 'null'
274
+ */
275
+ removeUrl?: string;
276
276
 
277
277
  /**
278
- * Specifies the path of the location to store the audio and refer it to display the audio.
279
- *
280
- * @default 'null'
281
- */
282
- path?: string;
278
+ * Specifies the path of the location to store the audio and refer it to display the audio.
279
+ *
280
+ * @default 'null'
281
+ */
282
+ path?: string;
283
283
 
284
284
  }
285
285
 
@@ -289,102 +289,102 @@ export interface AudioSettingsModel {
289
289
  export interface VideoSettingsModel {
290
290
 
291
291
  /**
292
- * Specifies whether to allowType based file select.
293
- *
294
- * @default ['.mp4', '.mov', '.wmv','.avi']
295
- */
296
- allowedTypes?: string[];
292
+ * Specifies whether to allowType based file select.
293
+ *
294
+ * @default ['.mp4', '.mov', '.wmv','.avi']
295
+ */
296
+ allowedTypes?: string[];
297
297
 
298
298
  /**
299
- * Specifies whether insert video inline or break.
300
- *
301
- * @default 'Inline'
302
- */
303
- layoutOption?: DisplayLayoutOptions;
299
+ * Specifies whether insert video inline or break.
300
+ *
301
+ * @default 'Inline'
302
+ */
303
+ layoutOption?: DisplayLayoutOptions;
304
304
 
305
305
  /**
306
- * Specifies whether the inserted video is saved as blob or base64.
307
- *
308
- * @default 'Blob'
309
- */
310
- saveFormat?: SaveFormat;
306
+ * Specifies whether the inserted video is saved as blob or base64.
307
+ *
308
+ * @default 'Blob'
309
+ */
310
+ saveFormat?: SaveFormat;
311
311
 
312
312
  /**
313
- * Specifies whether video width.
314
- *
315
- * @default 'auto'
316
- */
317
- width?: string;
313
+ * Specifies whether video width.
314
+ *
315
+ * @default 'auto'
316
+ */
317
+ width?: string;
318
318
 
319
319
  /**
320
- * Specifies whether video height.
321
- *
322
- * @default 'auto'
323
- */
324
- height?: string;
320
+ * Specifies whether video height.
321
+ *
322
+ * @default 'auto'
323
+ */
324
+ height?: string;
325
325
 
326
326
  /**
327
- * Specifies the URL of save action that will receive the upload files and save in the server.
328
- *
329
- * @default 'null'
330
- */
331
- saveUrl?: string;
327
+ * Specifies the URL of save action that will receive the upload files and save in the server.
328
+ *
329
+ * @default 'null'
330
+ */
331
+ saveUrl?: string;
332
332
 
333
333
  /**
334
- * Specifies the path of the location to store the images and refer it to display the images.
335
- *
336
- * @default 'null'
337
- */
338
- path?: string;
334
+ * Specifies the path of the location to store the images and refer it to display the images.
335
+ *
336
+ * @default 'null'
337
+ */
338
+ path?: string;
339
339
 
340
340
  /**
341
- * To enable resizing for video element.
342
- *
343
- * @default 'true'
344
- */
345
- resize?: boolean;
341
+ * To enable resizing for video element.
342
+ *
343
+ * @default 'true'
344
+ */
345
+ resize?: boolean;
346
346
 
347
347
  /**
348
- * Specifies the URL of remove action that receives the file information and handle the remove operation in server.
349
- *
350
- * @default 'null'
351
- */
352
- removeUrl?: string;
348
+ * Specifies the URL of remove action that receives the file information and handle the remove operation in server.
349
+ *
350
+ * @default 'null'
351
+ */
352
+ removeUrl?: string;
353
353
 
354
354
  /**
355
- * Defines the minimum Width of the video.
356
- *
357
- * @default '0'
358
- */
359
- minWidth?: string | number;
355
+ * Defines the minimum Width of the video.
356
+ *
357
+ * @default '0'
358
+ */
359
+ minWidth?: string | number;
360
360
 
361
361
  /**
362
- * Defines the maximum Width of the video.
363
- *
364
- * @default null
365
- */
366
- maxWidth?: string | number;
362
+ * Defines the maximum Width of the video.
363
+ *
364
+ * @default null
365
+ */
366
+ maxWidth?: string | number;
367
367
 
368
368
  /**
369
- * Defines the minimum Height of the video.
370
- *
371
- * @default '0'
372
- */
373
- minHeight?: string | number;
369
+ * Defines the minimum Height of the video.
370
+ *
371
+ * @default '0'
372
+ */
373
+ minHeight?: string | number;
374
374
 
375
375
  /**
376
- * Defines the maximum Height of the video.
377
- *
378
- * @default null
379
- */
380
- maxHeight?: string | number;
376
+ * Defines the maximum Height of the video.
377
+ *
378
+ * @default null
379
+ */
380
+ maxHeight?: string | number;
381
381
 
382
382
  /**
383
- * Video resizing should be done by percentage calculation.
384
- *
385
- * @default false
386
- */
387
- resizeByPercent?: boolean;
383
+ * Video resizing should be done by percentage calculation.
384
+ *
385
+ * @default false
386
+ */
387
+ resizeByPercent?: boolean;
388
388
 
389
389
  }
390
390
 
@@ -394,161 +394,161 @@ export interface VideoSettingsModel {
394
394
  export interface FileManagerSettingsModel {
395
395
 
396
396
  /**
397
- * Event triggers before sending the AJAX request to the server.
398
- * Set the cancel argument to true to cancel the request.
399
- *
400
- * @event 'beforeSend'
401
- */
402
-
403
- beforeSend?: EmitType<BeforeSendEventArgs>;
404
-
405
- /**
406
- * Specifies the AJAX settings of the file manager.
407
- *
408
- * @default {
409
- * getImageUrl: null;
410
- * url: null;
411
- * uploadUrl: null;
412
- * downloadUrl: null;
413
- * }
414
- */
415
- ajaxSettings?: AjaxSettingsModel;
416
-
417
- /**
418
- * Enables or disables drag-and-drop of files.
419
- *
420
- * @default false
421
- */
422
- allowDragAndDrop?: boolean;
423
-
424
- /**
425
- * Specifies the context menu settings of the file manager.
426
- *
427
- * @default {
428
- * file: ['Open', '|', 'Cut', 'Copy', '|', 'Delete', 'Rename', '|', 'Details'],
429
- * folder: ['Open', '|', 'Cut', 'Copy', 'Paste', '|', 'Delete', 'Rename', '|', 'Details'],
430
- * layout: ['SortBy', 'View', 'Refresh', '|', 'Paste', '|', 'NewFolder', 'Upload', '|', 'Details', '|', 'SelectAll'],
431
- * visible: true
432
- * }
433
- */
434
- contextMenuSettings?: ContextMenuSettingsModel;
435
-
436
- /**
437
- * Specifies the root CSS class of the file manager that allows you to customize the appearance by overriding the styles.
438
- *
439
- * @default ''
440
- */
441
- cssClass?: string;
442
-
397
+ * Event triggers before sending the AJAX request to the server.
398
+ * Set the cancel argument to true to cancel the request.
399
+ *
400
+ * @event 'beforeSend'
401
+ */
402
+
403
+ beforeSend?: EmitType<BeforeSendEventArgs>;
404
+
405
+ /**
406
+ * Specifies the AJAX settings of the file manager.
407
+ *
408
+ * @default {
409
+ * getImageUrl: null;
410
+ * url: null;
411
+ * uploadUrl: null;
412
+ * downloadUrl: null;
413
+ * }
414
+ */
415
+ ajaxSettings?: AjaxSettingsModel;
416
+
443
417
  /**
444
- * Specifies the details view settings of the file manager.
445
- *
446
- * @default {
447
- * columns: [{
448
- * field: 'name', headerText: 'Name', minWidth: 120, template: '<span class="e-fe-text">${name}</span>',
449
- * customAttributes: { class: 'e-fe-grid-name'}}, { field: '_fm_modified', headerText: 'DateModified', type: 'dateTime',
450
- * format: 'MMMM dd, yyyy HH:mm', minWidth: 120, width: '190' }, { field: 'size', headerText: 'Size', minWidth: 90, width: '110',
451
- * template: '<span class="e-fe-size">${size}</span>'
452
- * }]
453
- * }
454
- */
455
- detailsViewSettings?: DetailsViewSettingsModel;
456
-
457
- /**
458
- * Specifies whether to enable the file manager in RichTextEditor.
459
- *
460
- * @default false
461
- */
462
- enable?: boolean;
463
-
464
- /**
465
- * Specifies the navigation pane settings of the file manager.
466
- *
467
- * @default { maxWidth: '650px', minWidth: '240px', visible: true }
468
- */
469
- navigationPaneSettings?: NavigationPaneSettingsModel;
470
-
471
- /**
472
- * Specifies the current path of the file manager.
473
- *
474
- * @default '/'
475
- */
476
- path?: string;
477
-
478
- /**
479
- * Specifies the root folder alias name in file manager
480
- *
481
- * @default null
482
- */
483
- rootAliasName?: string;
484
-
485
- /**
486
- * Specifies the search settings of the file manager.
487
- *
488
- * @default {
489
- * allowSearchOnTyping: true,
490
- * filterType: 'contains',
491
- * ignoreCase: true
492
- * }
493
- */
494
- searchSettings?: SearchSettingsModel;
495
-
496
- /**
497
- * Shows or hides the file extension in file manager.
498
- *
499
- * @default true
500
- */
501
- showFileExtension?: boolean;
502
-
503
- /**
504
- * Shows or hides the files and folders that are marked as hidden.
505
- *
506
- * @default false
507
- */
508
- showHiddenItems?: boolean;
509
-
510
- /**
511
- * Shows or hides the thumbnail images in large icons view.
512
- *
513
- * @default true
514
- */
515
- showThumbnail?: boolean;
516
-
517
- /**
518
- * Specifies a value that indicates whether the folders and files are sorted in the ascending or descending order,
519
- * or they are not sorted at all. The available types of sort orders are,
520
- * `None` - Indicates that the folders and files are not sorted.
521
- * `Ascending` - Indicates that the folders and files are sorted in the ascending order.
522
- * `Descending` - Indicates that the folders and files are sorted in the descending order.
523
- *
524
- * @default 'Ascending'
525
- */
526
- sortOrder?: SortOrder;
527
-
528
- /**
529
- * Specifies the group of items aligned horizontally in the toolbar.
530
- *
531
- * @default { visible: true, items: ['NewFolder', 'Upload', 'Cut', 'Copy', 'Paste', 'Delete', 'Download', 'Rename', 'SortBy', 'Refresh', 'Selection', 'View', 'Details'] }
532
- */
533
- toolbarSettings?: FileToolbarSettingsModel;
418
+ * Enables or disables drag-and-drop of files.
419
+ *
420
+ * @default false
421
+ */
422
+ allowDragAndDrop?: boolean;
423
+
424
+ /**
425
+ * Specifies the context menu settings of the file manager.
426
+ *
427
+ * @default {
428
+ * file: ['Open', '|', 'Cut', 'Copy', '|', 'Delete', 'Rename', '|', 'Details'],
429
+ * folder: ['Open', '|', 'Cut', 'Copy', 'Paste', '|', 'Delete', 'Rename', '|', 'Details'],
430
+ * layout: ['SortBy', 'View', 'Refresh', '|', 'Paste', '|', 'NewFolder', 'Upload', '|', 'Details', '|', 'SelectAll'],
431
+ * visible: true
432
+ * }
433
+ */
434
+ contextMenuSettings?: ContextMenuSettingsModel;
435
+
436
+ /**
437
+ * Specifies the root CSS class of the file manager that allows you to customize the appearance by overriding the styles.
438
+ *
439
+ * @default ''
440
+ */
441
+ cssClass?: string;
442
+
443
+ /**
444
+ * Specifies the details view settings of the file manager.
445
+ *
446
+ * @default {
447
+ * columns: [{
448
+ * field: 'name', headerText: 'Name', minWidth: 120, template: '<span class="e-fe-text">${name}</span>',
449
+ * customAttributes: { class: 'e-fe-grid-name'}}, { field: '_fm_modified', headerText: 'DateModified', type: 'dateTime',
450
+ * format: 'MMMM dd, yyyy HH:mm', minWidth: 120, width: '190' }, { field: 'size', headerText: 'Size', minWidth: 90, width: '110',
451
+ * template: '<span class="e-fe-size">${size}</span>'
452
+ * }]
453
+ * }
454
+ */
455
+ detailsViewSettings?: DetailsViewSettingsModel;
456
+
457
+ /**
458
+ * Specifies whether to enable the file manager in RichTextEditor.
459
+ *
460
+ * @default false
461
+ */
462
+ enable?: boolean;
463
+
464
+ /**
465
+ * Specifies the navigation pane settings of the file manager.
466
+ *
467
+ * @default { maxWidth: '650px', minWidth: '240px', visible: true }
468
+ */
469
+ navigationPaneSettings?: NavigationPaneSettingsModel;
470
+
471
+ /**
472
+ * Specifies the current path of the file manager.
473
+ *
474
+ * @default '/'
475
+ */
476
+ path?: string;
477
+
478
+ /**
479
+ * Specifies the root folder alias name in file manager
480
+ *
481
+ * @default null
482
+ */
483
+ rootAliasName?: string;
484
+
485
+ /**
486
+ * Specifies the search settings of the file manager.
487
+ *
488
+ * @default {
489
+ * allowSearchOnTyping: true,
490
+ * filterType: 'contains',
491
+ * ignoreCase: true
492
+ * }
493
+ */
494
+ searchSettings?: SearchSettingsModel;
495
+
496
+ /**
497
+ * Shows or hides the file extension in file manager.
498
+ *
499
+ * @default true
500
+ */
501
+ showFileExtension?: boolean;
502
+
503
+ /**
504
+ * Shows or hides the files and folders that are marked as hidden.
505
+ *
506
+ * @default false
507
+ */
508
+ showHiddenItems?: boolean;
509
+
510
+ /**
511
+ * Shows or hides the thumbnail images in large icons view.
512
+ *
513
+ * @default true
514
+ */
515
+ showThumbnail?: boolean;
516
+
517
+ /**
518
+ * Specifies a value that indicates whether the folders and files are sorted in the ascending or descending order,
519
+ * or they are not sorted at all. The available types of sort orders are,
520
+ * `None` - Indicates that the folders and files are not sorted.
521
+ * `Ascending` - Indicates that the folders and files are sorted in the ascending order.
522
+ * `Descending` - Indicates that the folders and files are sorted in the descending order.
523
+ *
524
+ * @default 'Ascending'
525
+ */
526
+ sortOrder?: SortOrder;
527
+
528
+ /**
529
+ * Specifies the group of items aligned horizontally in the toolbar.
530
+ *
531
+ * @default { visible: true, items: ['NewFolder', 'Upload', 'Cut', 'Copy', 'Paste', 'Delete', 'Download', 'Rename', 'SortBy', 'Refresh', 'Selection', 'View', 'Details'] }
532
+ */
533
+ toolbarSettings?: FileToolbarSettingsModel;
534
534
 
535
535
  /**
536
- * Specifies the upload settings for the file manager.
537
- *
538
- * @default { autoUpload: true, minFileSize: 0, maxFileSize: 30000000, allowedExtensions: '', autoClose: false }
539
- */
540
- uploadSettings?: UploadSettingsModel;
541
-
536
+ * Specifies the upload settings for the file manager.
537
+ *
538
+ * @default { autoUpload: true, minFileSize: 0, maxFileSize: 30000000, allowedExtensions: '', autoClose: false }
539
+ */
540
+ uploadSettings?: UploadSettingsModel;
541
+
542
542
  /**
543
- * Specifies the initial view of the file manager.
544
- *
545
- * With the help of this property, initial view can be changed to details or largeicons view. The available views are:
546
- * * `LargeIcons`
547
- * * `Details`
548
- *
549
- * @default 'LargeIcons'
550
- */
551
- view?: ViewType;
543
+ * Specifies the initial view of the file manager.
544
+ *
545
+ * With the help of this property, initial view can be changed to details or largeicons view. The available views are:
546
+ * * `LargeIcons`
547
+ * * `Details`
548
+ *
549
+ * @default 'LargeIcons'
550
+ */
551
+ view?: ViewType;
552
552
 
553
553
  }
554
554
 
@@ -558,40 +558,40 @@ export interface FileManagerSettingsModel {
558
558
  export interface TableSettingsModel {
559
559
 
560
560
  /**
561
- * To specify the width of table
562
- *
563
- * @default '100%'
564
- */
565
- width?: string | number;
561
+ * To specify the width of table
562
+ *
563
+ * @default '100%'
564
+ */
565
+ width?: string | number;
566
566
 
567
567
  /**
568
- * Class name should be appended by default in table element.
569
- * It helps to design the table in specific CSS styles always when inserting in editor.
570
- *
571
- * @default TableStyleItems;
572
- */
573
- styles?: IDropDownItemModel[];
568
+ * Class name should be appended by default in table element.
569
+ * It helps to design the table in specific CSS styles always when inserting in editor.
570
+ *
571
+ * @default TableStyleItems;
572
+ */
573
+ styles?: IDropDownItemModel[];
574
574
 
575
575
  /**
576
- * To enable resizing for table element.
577
- *
578
- * @default 'true'
579
- */
580
- resize?: boolean;
576
+ * To enable resizing for table element.
577
+ *
578
+ * @default 'true'
579
+ */
580
+ resize?: boolean;
581
581
 
582
582
  /**
583
- * Defines the minimum Width of the table.
584
- *
585
- * @default '0'
586
- */
587
- minWidth?: string | number;
583
+ * Defines the minimum Width of the table.
584
+ *
585
+ * @default '0'
586
+ */
587
+ minWidth?: string | number;
588
588
 
589
589
  /**
590
- * Defines the maximum Width of the table.
591
- *
592
- * @default null
593
- */
594
- maxWidth?: string | number;
590
+ * Defines the maximum Width of the table.
591
+ *
592
+ * @default null
593
+ */
594
+ maxWidth?: string | number;
595
595
 
596
596
  }
597
597
 
@@ -601,67 +601,67 @@ export interface TableSettingsModel {
601
601
  export interface QuickToolbarSettingsModel {
602
602
 
603
603
  /**
604
- * Specifies whether to enable quick toolbar in RichTextEditor.
605
- *
606
- * @default true
607
- */
608
- enable?: boolean;
604
+ * Specifies whether to enable quick toolbar in RichTextEditor.
605
+ *
606
+ * @default true
607
+ */
608
+ enable?: boolean;
609
609
 
610
610
  /**
611
- * Specifies whether to opens a quick toolbar on the right click.
612
- *
613
- * @default false
614
- */
615
- showOnRightClick?: boolean;
611
+ * Specifies whether to opens a quick toolbar on the right click.
612
+ *
613
+ * @default false
614
+ */
615
+ showOnRightClick?: boolean;
616
616
 
617
617
  /**
618
- * Specifies the action that should happen when scroll the target-parent container.
619
- *
620
- * @default 'hide'
621
- */
622
- actionOnScroll?: ActionOnScroll;
618
+ * Specifies the action that should happen when scroll the target-parent container.
619
+ *
620
+ * @default 'hide'
621
+ */
622
+ actionOnScroll?: ActionOnScroll;
623
623
 
624
624
  /**
625
- * Specifies the items to render in quick toolbar, when link selected.
626
- *
627
- * @default ['Open', 'Edit', 'UnLink']
628
- */
629
- link?: (string | IToolbarItems)[];
625
+ * Specifies the items to render in quick toolbar, when link selected.
626
+ *
627
+ * @default ['Open', 'Edit', 'UnLink']
628
+ */
629
+ link?: (string | IToolbarItems)[];
630
630
 
631
631
  /**
632
- * Specifies the items to render in quick toolbar, when image selected.
633
- *
634
- * @default ['Replace', 'Align', 'Caption', 'Remove', '-', 'InsertLink','OpenImageLink', 'EditImageLink', 'RemoveImageLink', 'Display', 'AltText', 'Dimension']
635
- */
636
- image?: (string | IToolbarItems)[];
632
+ * Specifies the items to render in quick toolbar, when image selected.
633
+ *
634
+ * @default ['Replace', 'Align', 'Caption', 'Remove', '-', 'InsertLink','OpenImageLink', 'EditImageLink', 'RemoveImageLink', 'Display', 'AltText', 'Dimension']
635
+ */
636
+ image?: (string | IToolbarItems)[];
637
637
 
638
638
  /**
639
- * Specifies the items to render in quick toolbar, when audio selected.
640
- *
641
- * @default ['AudioReplace', 'Remove', 'AudioLayoutOption']
642
- */
643
- audio?: (string | IToolbarItems)[];
639
+ * Specifies the items to render in quick toolbar, when audio selected.
640
+ *
641
+ * @default ['AudioReplace', 'Remove', 'AudioLayoutOption']
642
+ */
643
+ audio?: (string | IToolbarItems)[];
644
644
 
645
645
  /**
646
- * Specifies the items to render in quick toolbar, when video selected.
647
- *
648
- * @default ['VideoReplace', 'VideoAlign', 'VideoRemove', 'VideoLayoutOption', 'VideoDimension']
649
- */
650
- video?: (string | IToolbarItems)[];
646
+ * Specifies the items to render in quick toolbar, when video selected.
647
+ *
648
+ * @default ['VideoReplace', 'VideoAlign', 'VideoRemove', 'VideoLayoutOption', 'VideoDimension']
649
+ */
650
+ video?: (string | IToolbarItems)[];
651
651
 
652
652
  /**
653
- * Specifies the items to render in quick toolbar, when text selected.
654
- *
655
- * @default null
656
- */
657
- text?: (string | ToolbarConfigItems | IToolbarItems)[];
653
+ * Specifies the items to render in quick toolbar, when text selected.
654
+ *
655
+ * @default null
656
+ */
657
+ text?: (string | ToolbarConfigItems | IToolbarItems)[];
658
658
 
659
659
  /**
660
- * Specifies the items to render in quick toolbar, when table selected.
661
- *
662
- * @default ['TableHeader', 'TableRows', 'TableColumns', 'BackgroundColor', '-', 'TableRemove', 'Alignments', 'TableCellVerticalAlign', 'Styles']
663
- */
664
- table?: (string | IToolbarItems)[];
660
+ * Specifies the items to render in quick toolbar, when table selected.
661
+ *
662
+ * @default ['TableHeader', 'TableRows', 'TableColumns', 'BackgroundColor', '-', 'TableRemove', 'Alignments', 'TableCellVerticalAlign', 'Styles']
663
+ */
664
+ table?: (string | IToolbarItems)[];
665
665
 
666
666
  }
667
667
 
@@ -671,18 +671,18 @@ export interface QuickToolbarSettingsModel {
671
671
  export interface FormatPainterSettingsModel {
672
672
 
673
673
  /**
674
- * Defines the tag name selectors for obtaining the formats from the elements.
675
- *
676
- * @default 'b; em; font; sub; sup; kbd; i; s; u; code; strong; span; p; div; h1; h2; h3; h4; h5; h6; blockquote; ol; ul; li; pre;'
677
- */
678
- allowedFormats?: string;
674
+ * Defines the tag name selectors for obtaining the formats from the elements.
675
+ *
676
+ * @default 'b; em; font; sub; sup; kbd; i; s; u; code; strong; span; p; div; h1; h2; h3; h4; h5; h6; blockquote; ol; ul; li; pre;'
677
+ */
678
+ allowedFormats?: string;
679
679
 
680
680
  /**
681
- * Defines selectors for the elements from which fetching formats is expressly prohibited.
682
- *
683
- * @default null
684
- */
685
- deniedFormats?: string;
681
+ * Defines selectors for the elements from which fetching formats is expressly prohibited.
682
+ *
683
+ * @default null
684
+ */
685
+ deniedFormats?: string;
686
686
 
687
687
  }
688
688
 
@@ -692,198 +692,198 @@ export interface FormatPainterSettingsModel {
692
692
  export interface EmojiSettingsModel {
693
693
 
694
694
  /**
695
- * Specify an array of items representing emoji icons.
696
- *
697
- * @default [{
698
- name: 'Smilies & People', code: '1F600', iconCss: 'e-emoji', icons: [{ code: '1F600', desc: 'Grinning face' },
699
- { code: '1F603', desc: 'Grinning face with big eyes' },
700
- { code: '1F604', desc: 'Grinning face with smiling eyes' },
701
- { code: '1F606', desc: 'Grinning squinting face' },
702
- { code: '1F605', desc: 'Grinning face with sweat' },
703
- { code: '1F602', desc: 'Face with tears of joy' },
704
- { code: '1F923', desc: 'Rolling on the floor laughing' },
705
- { code: '1F60A', desc: 'Smiling face with smiling eyes' },
706
- { code: '1F607', desc: 'Smiling face with halo' },
707
- { code: '1F642', desc: 'Slightly smiling face' },
708
- { code: '1F643', desc: 'Upside-down face' },
709
- { code: '1F60D', desc: 'Smiling face with heart-eyes' },
710
- { code: '1F618', desc: 'Face blowing a kiss' },
711
- { code: '1F61B', desc: 'Face with tongue' },
712
- { code: '1F61C', desc: 'Winking face with tongue' },
713
- { code: '1F604', desc: 'Grinning face with smiling eyes' },
714
- { code: '1F469', desc: 'Woman' },
715
- { code: '1F468', desc: 'Man' },
716
- { code: '1F467', desc: 'Girl' },
717
- { code: '1F466', desc: 'Boy' },
718
- { code: '1F476', desc: 'Baby' },
719
- { code: '1F475', desc: 'Old woman' },
720
- { code: '1F474', desc: 'Old man' },
721
- { code: '1F46E', desc: 'Police officer' },
722
- { code: '1F477', desc: 'Construction worker' },
723
- { code: '1F482', desc: 'Guard' },
724
- { code: '1F575', desc: 'Detective' },
725
- { code: '1F9D1', desc: 'Cook' }]
726
- }, {
727
- name: 'Animals & Nature', code: '1F435', iconCss: 'e-animals', icons: [{ code: '1F436', desc: 'Dog face' },
728
- { code: '1F431', desc: 'Cat face' },
729
- { code: '1F42D', desc: 'Mouse face' },
730
- { code: '1F439', desc: 'Hamster face' },
731
- { code: '1F430', desc: 'Rabbit face' },
732
- { code: '1F98A', desc: 'Fox face' },
733
- { code: '1F43B', desc: 'Bear face' },
734
- { code: '1F43C', desc: 'Panda face' },
735
- { code: '1F428', desc: 'Koala' },
736
- { code: '1F42F', desc: 'Tiger face' },
737
- { code: '1F981', desc: 'Lion face' },
738
- { code: '1F42E', desc: 'Cow face' },
739
- { code: '1F437', desc: 'Pig face' },
740
- { code: '1F43D', desc: 'Pig nose' },
741
- { code: '1F438', desc: 'Frog face' },
742
- { code: '1F435', desc: 'Monkey face' },
743
- { code: '1F649', desc: 'Hear-no-evil monkey' },
744
- { code: '1F64A', desc: 'Speak-no-evil monkey' },
745
- { code: '1F412', desc: 'Monkey' },
746
- { code: '1F414', desc: 'Chicken' },
747
- { code: '1F427', desc: 'Penguin' },
748
- { code: '1F426', desc: 'Bird' },
749
- { code: '1F424', desc: 'Baby chick' },
750
- { code: '1F986', desc: 'Duck' },
751
- { code: '1F985', desc: 'Eagle' }]
752
- }, {
753
- name: 'Food & Drink', code: '1F347', iconCss: 'e-food-and-drinks', icons: [{ code: '1F34E', desc: 'Red apple' },
754
- { code: '1F34C', desc: 'Banana' },
755
- { code: '1F347', desc: 'Grapes' },
756
- { code: '1F353', desc: 'Strawberry' },
757
- { code: '1F35E', desc: 'Bread' },
758
- { code: '1F950', desc: 'Croissant' },
759
- { code: '1F955', desc: 'Carrot' },
760
- { code: '1F354', desc: 'Hamburger' },
761
- { code: '1F355', desc: 'Pizza' },
762
- { code: '1F32D', desc: 'Hot dog' },
763
- { code: '1F35F', desc: 'French fries' },
764
- { code: '1F37F', desc: 'Popcorn' },
765
- { code: '1F366', desc: 'Soft ice cream' },
766
- { code: '1F367', desc: 'Shaved ice' },
767
- { code: '1F36A', desc: 'Cookie' },
768
- { code: '1F382', desc: 'Birthday cake' },
769
- { code: '1F370', desc: 'Shortcake' },
770
- { code: '1F36B', desc: 'Chocolate bar' },
771
- { code: '1F369', desc: 'Donut' },
772
- { code: '1F36E', desc: 'Custard' },
773
- { code: '1F36D', desc: 'Lollipop' },
774
- { code: '1F36C', desc: 'Candy' },
775
- { code: '1F377', desc: 'Wine glass' },
776
- { code: '1F37A', desc: 'Beer mug' },
777
- { code: '1F37E', desc: 'Bottle with popping cork' }]
778
- }, {
779
- name: 'Activities', code: '1F383', iconCss: 'e-activities', icons: [{ code: '26BD', desc: 'Soccer ball' },
780
- { code: '1F3C0', desc: 'Basketball' },
781
- { code: '1F3C8', desc: 'American football' },
782
- { code: '26BE', desc: 'Baseball' },
783
- { code: '1F3BE', desc: 'Tennis' },
784
- { code: '1F3D0', desc: 'Volleyball' },
785
- { code: '1F3C9', desc: 'Rugby football' },
786
- { code: '1F3B1', desc: 'Pool 8 ball' },
787
- { code: '1F3D3', desc: 'Ping pong' },
788
- { code: '1F3F8', desc: 'Badminton' },
789
- { code: '1F94A', desc: 'Boxing glove' },
790
- { code: '1F3CA', desc: 'Swimmer' },
791
- { code: '1F3CB', desc: 'Weightlifter' },
792
- { code: '1F6B4', desc: 'Bicyclist' },
793
- { code: '1F6F9', desc: 'Skateboard' },
794
- { code: '1F3AE', desc: 'Video game' },
795
- { code: '1F579', desc: 'Joystick' },
796
- { code: '1F3CF', desc: 'Cricket' },
797
- { code: '1F3C7', desc: 'Horse racing' },
798
- { code: '1F3AF', desc: 'Direct hit' },
799
- { code: '1F3D1', desc: 'Field hockey' },
800
- { code: '1F3B0', desc: 'Slot machine' },
801
- { code: '1F3B3', desc: 'Bowling' },
802
- { code: '1F3B2', desc: 'Game die' },
803
- { code: '265F', desc: 'Chess pawn' }]
804
- }, {
805
- name: 'Travel & Places', code: '1F30D', iconCss: 'e-travel-and-places', icons: [{ code: '2708', desc: 'Airplane' },
806
- { code: '1F697', desc: 'Automobile' },
807
- { code: '1F695', desc: 'Taxi' },
808
- { code: '1F6B2', desc: 'Bicycle' },
809
- { code: '1F68C', desc: 'Bus' },
810
- { code: '1F682', desc: 'Locomotive' },
811
- { code: '1F6F3', desc: 'Passenger ship' },
812
- { code: '1F680', desc: 'Rocket' },
813
- { code: '1F681', desc: 'Helicopter' },
814
- { code: '1F6A2', desc: 'Ship' },
815
- { code: '1F3DF', desc: 'Stadium' },
816
- { code: '1F54C', desc: 'Mosque' },
817
- { code: '26EA', desc: 'Church' },
818
- { code: '1F6D5', desc: 'Hindu Temple' },
819
- { code: '1F3D4', desc: 'Snow-capped mountain' },
820
- { code: '1F3EB', desc: 'School' },
821
- { code: '1F30B', desc: 'Volcano' },
822
- { code: '1F3D6', desc: 'Beach with umbrella' },
823
- { code: '1F3DD', desc: 'Desert island' },
824
- { code: '1F3DE', desc: 'National park' },
825
- { code: '1F3F0', desc: 'Castle' },
826
- { code: '1F5FC', desc: 'Tokyo tower' },
827
- { code: '1F5FD', desc: 'Statue of liberty' },
828
- { code: '26E9', desc: 'Shinto shrine' },
829
- { code: '1F3EF', desc: 'Japanese castle' },
830
- { code: '1F3A2', desc: 'Roller coaster' }]
831
- }, {
832
- name: 'Objects', code: '1F507', iconCss: 'e-objects', icons: [{ code: '1F4A1', desc: 'Light bulb' },
833
- { code: '1F526', desc: 'Flashlight' },
834
- { code: '1F4BB', desc: 'Laptop computer' },
835
- { code: '1F5A5', desc: 'Desktop computer' },
836
- { code: '1F5A8', desc: 'Printer' },
837
- { code: '1F4F7', desc: 'Camera' },
838
- { code: '1F4F8', desc: 'Camera with flash' },
839
- { code: '1F4FD', desc: 'Film projector' },
840
- { code: '1F3A5', desc: 'Movie camera' },
841
- { code: '1F4FA', desc: 'Television' },
842
- { code: '1F4FB', desc: 'Radio' },
843
- { code: '1F50B', desc: 'Battery' },
844
- { code: '231A', desc: 'Watch' },
845
- { code: '1F4F1', desc: 'Mobile phone' },
846
- { code: '260E', desc: 'Telephone' },
847
- { code: '1F4BE', desc: 'Floppy disk' },
848
- { code: '1F4BF', desc: 'Optical disk' },
849
- { code: '1F4C0', desc: 'Digital versatile disc' },
850
- { code: '1F4BD', desc: 'Computer disk' },
851
- { code: '1F3A7', desc: 'Headphone' },
852
- { code: '1F3A4', desc: 'Microphone' },
853
- { code: '1F3B6', desc: 'Multiple musical notes' },
854
- { code: '1F4DA', desc: 'Books' }]
855
- }, {
856
- name: 'Symbols', code: '1F3E7', iconCss: 'e-symbols', icons: [{ code: '274C', desc: 'Cross mark' },
857
- { code: '2714', desc: 'Check mark' },
858
- { code: '26A0', desc: 'Warning sign' },
859
- { code: '1F6AB', desc: 'Prohibited' },
860
- { code: '2139', desc: 'Information' },
861
- { code: '267B', desc: 'Recycling symbol' },
862
- { code: '1F6AD', desc: 'No smoking' },
863
- { code: '1F4F5', desc: 'No mobile phones' },
864
- { code: '1F6AF', desc: 'No littering' },
865
- { code: '1F6B3', desc: 'No bicycles' },
866
- { code: '1F6B7', desc: 'No pedestrians' },
867
- { code: '2795', desc: 'Plus' },
868
- { code: '2796', desc: 'Minus' },
869
- { code: '2797', desc: 'Divide' },
870
- { code: '2716', desc: 'Multiplication' },
871
- { code: '1F4B2', desc: 'Dollar banknote' },
872
- { code: '1F4AC', desc: 'Speech balloon' },
873
- { code: '2755', desc: 'White exclamation mark' },
874
- { code: '2754', desc: 'White question mark' },
875
- { code: '2764', desc: 'Red heart' }]
876
- }]
877
- *
878
- */
879
- iconsSet?: EmojiIconsSet[];
880
-
881
- /**
882
- * Enables or disables the search box in an emoji picker.
883
- *
884
- * @default true
885
- */
886
- showSearchBox?: boolean;
695
+ * Specify an array of items representing emoji icons.
696
+ *
697
+ * @default [{
698
+ name: 'Smilies & People', code: '1F600', iconCss: 'e-emoji', icons: [{ code: '1F600', desc: 'Grinning face' },
699
+ { code: '1F603', desc: 'Grinning face with big eyes' },
700
+ { code: '1F604', desc: 'Grinning face with smiling eyes' },
701
+ { code: '1F606', desc: 'Grinning squinting face' },
702
+ { code: '1F605', desc: 'Grinning face with sweat' },
703
+ { code: '1F602', desc: 'Face with tears of joy' },
704
+ { code: '1F923', desc: 'Rolling on the floor laughing' },
705
+ { code: '1F60A', desc: 'Smiling face with smiling eyes' },
706
+ { code: '1F607', desc: 'Smiling face with halo' },
707
+ { code: '1F642', desc: 'Slightly smiling face' },
708
+ { code: '1F643', desc: 'Upside-down face' },
709
+ { code: '1F60D', desc: 'Smiling face with heart-eyes' },
710
+ { code: '1F618', desc: 'Face blowing a kiss' },
711
+ { code: '1F61B', desc: 'Face with tongue' },
712
+ { code: '1F61C', desc: 'Winking face with tongue' },
713
+ { code: '1F604', desc: 'Grinning face with smiling eyes' },
714
+ { code: '1F469', desc: 'Woman' },
715
+ { code: '1F468', desc: 'Man' },
716
+ { code: '1F467', desc: 'Girl' },
717
+ { code: '1F466', desc: 'Boy' },
718
+ { code: '1F476', desc: 'Baby' },
719
+ { code: '1F475', desc: 'Old woman' },
720
+ { code: '1F474', desc: 'Old man' },
721
+ { code: '1F46E', desc: 'Police officer' },
722
+ { code: '1F477', desc: 'Construction worker' },
723
+ { code: '1F482', desc: 'Guard' },
724
+ { code: '1F575', desc: 'Detective' },
725
+ { code: '1F9D1', desc: 'Cook' }]
726
+ }, {
727
+ name: 'Animals & Nature', code: '1F435', iconCss: 'e-animals', icons: [{ code: '1F436', desc: 'Dog face' },
728
+ { code: '1F431', desc: 'Cat face' },
729
+ { code: '1F42D', desc: 'Mouse face' },
730
+ { code: '1F439', desc: 'Hamster face' },
731
+ { code: '1F430', desc: 'Rabbit face' },
732
+ { code: '1F98A', desc: 'Fox face' },
733
+ { code: '1F43B', desc: 'Bear face' },
734
+ { code: '1F43C', desc: 'Panda face' },
735
+ { code: '1F428', desc: 'Koala' },
736
+ { code: '1F42F', desc: 'Tiger face' },
737
+ { code: '1F981', desc: 'Lion face' },
738
+ { code: '1F42E', desc: 'Cow face' },
739
+ { code: '1F437', desc: 'Pig face' },
740
+ { code: '1F43D', desc: 'Pig nose' },
741
+ { code: '1F438', desc: 'Frog face' },
742
+ { code: '1F435', desc: 'Monkey face' },
743
+ { code: '1F649', desc: 'Hear-no-evil monkey' },
744
+ { code: '1F64A', desc: 'Speak-no-evil monkey' },
745
+ { code: '1F412', desc: 'Monkey' },
746
+ { code: '1F414', desc: 'Chicken' },
747
+ { code: '1F427', desc: 'Penguin' },
748
+ { code: '1F426', desc: 'Bird' },
749
+ { code: '1F424', desc: 'Baby chick' },
750
+ { code: '1F986', desc: 'Duck' },
751
+ { code: '1F985', desc: 'Eagle' }]
752
+ }, {
753
+ name: 'Food & Drink', code: '1F347', iconCss: 'e-food-and-drinks', icons: [{ code: '1F34E', desc: 'Red apple' },
754
+ { code: '1F34C', desc: 'Banana' },
755
+ { code: '1F347', desc: 'Grapes' },
756
+ { code: '1F353', desc: 'Strawberry' },
757
+ { code: '1F35E', desc: 'Bread' },
758
+ { code: '1F950', desc: 'Croissant' },
759
+ { code: '1F955', desc: 'Carrot' },
760
+ { code: '1F354', desc: 'Hamburger' },
761
+ { code: '1F355', desc: 'Pizza' },
762
+ { code: '1F32D', desc: 'Hot dog' },
763
+ { code: '1F35F', desc: 'French fries' },
764
+ { code: '1F37F', desc: 'Popcorn' },
765
+ { code: '1F366', desc: 'Soft ice cream' },
766
+ { code: '1F367', desc: 'Shaved ice' },
767
+ { code: '1F36A', desc: 'Cookie' },
768
+ { code: '1F382', desc: 'Birthday cake' },
769
+ { code: '1F370', desc: 'Shortcake' },
770
+ { code: '1F36B', desc: 'Chocolate bar' },
771
+ { code: '1F369', desc: 'Donut' },
772
+ { code: '1F36E', desc: 'Custard' },
773
+ { code: '1F36D', desc: 'Lollipop' },
774
+ { code: '1F36C', desc: 'Candy' },
775
+ { code: '1F377', desc: 'Wine glass' },
776
+ { code: '1F37A', desc: 'Beer mug' },
777
+ { code: '1F37E', desc: 'Bottle with popping cork' }]
778
+ }, {
779
+ name: 'Activities', code: '1F383', iconCss: 'e-activities', icons: [{ code: '26BD', desc: 'Soccer ball' },
780
+ { code: '1F3C0', desc: 'Basketball' },
781
+ { code: '1F3C8', desc: 'American football' },
782
+ { code: '26BE', desc: 'Baseball' },
783
+ { code: '1F3BE', desc: 'Tennis' },
784
+ { code: '1F3D0', desc: 'Volleyball' },
785
+ { code: '1F3C9', desc: 'Rugby football' },
786
+ { code: '1F3B1', desc: 'Pool 8 ball' },
787
+ { code: '1F3D3', desc: 'Ping pong' },
788
+ { code: '1F3F8', desc: 'Badminton' },
789
+ { code: '1F94A', desc: 'Boxing glove' },
790
+ { code: '1F3CA', desc: 'Swimmer' },
791
+ { code: '1F3CB', desc: 'Weightlifter' },
792
+ { code: '1F6B4', desc: 'Bicyclist' },
793
+ { code: '1F6F9', desc: 'Skateboard' },
794
+ { code: '1F3AE', desc: 'Video game' },
795
+ { code: '1F579', desc: 'Joystick' },
796
+ { code: '1F3CF', desc: 'Cricket' },
797
+ { code: '1F3C7', desc: 'Horse racing' },
798
+ { code: '1F3AF', desc: 'Direct hit' },
799
+ { code: '1F3D1', desc: 'Field hockey' },
800
+ { code: '1F3B0', desc: 'Slot machine' },
801
+ { code: '1F3B3', desc: 'Bowling' },
802
+ { code: '1F3B2', desc: 'Game die' },
803
+ { code: '265F', desc: 'Chess pawn' }]
804
+ }, {
805
+ name: 'Travel & Places', code: '1F30D', iconCss: 'e-travel-and-places', icons: [{ code: '2708', desc: 'Airplane' },
806
+ { code: '1F697', desc: 'Automobile' },
807
+ { code: '1F695', desc: 'Taxi' },
808
+ { code: '1F6B2', desc: 'Bicycle' },
809
+ { code: '1F68C', desc: 'Bus' },
810
+ { code: '1F682', desc: 'Locomotive' },
811
+ { code: '1F6F3', desc: 'Passenger ship' },
812
+ { code: '1F680', desc: 'Rocket' },
813
+ { code: '1F681', desc: 'Helicopter' },
814
+ { code: '1F6A2', desc: 'Ship' },
815
+ { code: '1F3DF', desc: 'Stadium' },
816
+ { code: '1F54C', desc: 'Mosque' },
817
+ { code: '26EA', desc: 'Church' },
818
+ { code: '1F6D5', desc: 'Hindu Temple' },
819
+ { code: '1F3D4', desc: 'Snow-capped mountain' },
820
+ { code: '1F3EB', desc: 'School' },
821
+ { code: '1F30B', desc: 'Volcano' },
822
+ { code: '1F3D6', desc: 'Beach with umbrella' },
823
+ { code: '1F3DD', desc: 'Desert island' },
824
+ { code: '1F3DE', desc: 'National park' },
825
+ { code: '1F3F0', desc: 'Castle' },
826
+ { code: '1F5FC', desc: 'Tokyo tower' },
827
+ { code: '1F5FD', desc: 'Statue of liberty' },
828
+ { code: '26E9', desc: 'Shinto shrine' },
829
+ { code: '1F3EF', desc: 'Japanese castle' },
830
+ { code: '1F3A2', desc: 'Roller coaster' }]
831
+ }, {
832
+ name: 'Objects', code: '1F507', iconCss: 'e-objects', icons: [{ code: '1F4A1', desc: 'Light bulb' },
833
+ { code: '1F526', desc: 'Flashlight' },
834
+ { code: '1F4BB', desc: 'Laptop computer' },
835
+ { code: '1F5A5', desc: 'Desktop computer' },
836
+ { code: '1F5A8', desc: 'Printer' },
837
+ { code: '1F4F7', desc: 'Camera' },
838
+ { code: '1F4F8', desc: 'Camera with flash' },
839
+ { code: '1F4FD', desc: 'Film projector' },
840
+ { code: '1F3A5', desc: 'Movie camera' },
841
+ { code: '1F4FA', desc: 'Television' },
842
+ { code: '1F4FB', desc: 'Radio' },
843
+ { code: '1F50B', desc: 'Battery' },
844
+ { code: '231A', desc: 'Watch' },
845
+ { code: '1F4F1', desc: 'Mobile phone' },
846
+ { code: '260E', desc: 'Telephone' },
847
+ { code: '1F4BE', desc: 'Floppy disk' },
848
+ { code: '1F4BF', desc: 'Optical disk' },
849
+ { code: '1F4C0', desc: 'Digital versatile disc' },
850
+ { code: '1F4BD', desc: 'Computer disk' },
851
+ { code: '1F3A7', desc: 'Headphone' },
852
+ { code: '1F3A4', desc: 'Microphone' },
853
+ { code: '1F3B6', desc: 'Multiple musical notes' },
854
+ { code: '1F4DA', desc: 'Books' }]
855
+ }, {
856
+ name: 'Symbols', code: '1F3E7', iconCss: 'e-symbols', icons: [{ code: '274C', desc: 'Cross mark' },
857
+ { code: '2714', desc: 'Check mark' },
858
+ { code: '26A0', desc: 'Warning sign' },
859
+ { code: '1F6AB', desc: 'Prohibited' },
860
+ { code: '2139', desc: 'Information' },
861
+ { code: '267B', desc: 'Recycling symbol' },
862
+ { code: '1F6AD', desc: 'No smoking' },
863
+ { code: '1F4F5', desc: 'No mobile phones' },
864
+ { code: '1F6AF', desc: 'No littering' },
865
+ { code: '1F6B3', desc: 'No bicycles' },
866
+ { code: '1F6B7', desc: 'No pedestrians' },
867
+ { code: '2795', desc: 'Plus' },
868
+ { code: '2796', desc: 'Minus' },
869
+ { code: '2797', desc: 'Divide' },
870
+ { code: '2716', desc: 'Multiplication' },
871
+ { code: '1F4B2', desc: 'Dollar banknote' },
872
+ { code: '1F4AC', desc: 'Speech balloon' },
873
+ { code: '2755', desc: 'White exclamation mark' },
874
+ { code: '2754', desc: 'White question mark' },
875
+ { code: '2764', desc: 'Red heart' }]
876
+ }]
877
+ *
878
+ */
879
+ iconsSet?: EmojiIconsSet[];
880
+
881
+ /**
882
+ * Enables or disables the search box in an emoji picker.
883
+ *
884
+ * @default true
885
+ */
886
+ showSearchBox?: boolean;
887
887
 
888
888
  }
889
889
 
@@ -893,46 +893,46 @@ export interface EmojiSettingsModel {
893
893
  export interface PasteCleanupSettingsModel {
894
894
 
895
895
  /**
896
- * Specifies whether to enable the prompt for paste in RichTextEditor.
897
- *
898
- * @default false
899
- */
900
- prompt?: boolean;
896
+ * Specifies whether to enable the prompt for paste in RichTextEditor.
897
+ *
898
+ * @default false
899
+ */
900
+ prompt?: boolean;
901
901
 
902
902
  /**
903
- * Specifies the attributes to restrict when pasting in RichTextEditor.
904
- *
905
- * @default null
906
- */
907
- deniedAttrs?: string[];
903
+ * Specifies the attributes to restrict when pasting in RichTextEditor.
904
+ *
905
+ * @default null
906
+ */
907
+ deniedAttrs?: string[];
908
908
 
909
909
  /**
910
- * Specifies the allowed style properties when pasting in RichTextEditor.
911
- *
912
- * @default ['background', 'background-color', 'border', 'border-bottom', 'border-left', 'border-radius', 'border-right', 'border-style', 'border-top', 'border-width', 'clear', 'color', 'cursor', 'direction', 'display', 'float', 'font', 'font-family', 'font-size', 'font-weight', 'font-style', 'height', 'left', 'line-height', 'list-style-type', 'margin', 'margin-top', 'margin-left', 'margin-right', 'margin-bottom', 'max-height', 'max-width', 'min-height', 'min-width', 'overflow', 'overflow-x', 'overflow-y', 'padding', 'padding-bottom', 'padding-left', 'padding-right', 'padding-top', 'position', 'right', 'table-layout', 'text-align', 'text-decoration', 'text-transform', 'text-indent', 'top', 'vertical-align', 'visibility', 'white-space', 'width']
913
- */
914
- allowedStyleProps?: string[];
910
+ * Specifies the allowed style properties when pasting in RichTextEditor.
911
+ *
912
+ * @default ['background', 'background-color', 'border', 'border-bottom', 'border-left', 'border-radius', 'border-right', 'border-style', 'border-top', 'border-width', 'clear', 'color', 'cursor', 'direction', 'display', 'float', 'font', 'font-family', 'font-size', 'font-weight', 'font-style', 'height', 'left', 'line-height', 'list-style-type', 'margin', 'margin-top', 'margin-left', 'margin-right', 'margin-bottom', 'max-height', 'max-width', 'min-height', 'min-width', 'overflow', 'overflow-x', 'overflow-y', 'padding', 'padding-bottom', 'padding-left', 'padding-right', 'padding-top', 'position', 'right', 'table-layout', 'text-align', 'text-decoration', 'text-transform', 'text-indent', 'top', 'vertical-align', 'visibility', 'white-space', 'width']
913
+ */
914
+ allowedStyleProps?: string[];
915
915
 
916
916
  /**
917
- * Specifies the tags to restrict when pasting in RichTextEditor.
918
- *
919
- * @default null
920
- */
921
- deniedTags?: string[];
917
+ * Specifies the tags to restrict when pasting in RichTextEditor.
918
+ *
919
+ * @default null
920
+ */
921
+ deniedTags?: string[];
922
922
 
923
923
  /**
924
- * Specifies whether to keep or remove the format when pasting in RichTextEditor.
925
- *
926
- * @default true
927
- */
928
- keepFormat?: boolean;
924
+ * Specifies whether to keep or remove the format when pasting in RichTextEditor.
925
+ *
926
+ * @default true
927
+ */
928
+ keepFormat?: boolean;
929
929
 
930
930
  /**
931
- * Specifies whether to paste as plain text or not in RichTextEditor.
932
- *
933
- * @default false
934
- */
935
- plainText?: boolean;
931
+ * Specifies whether to paste as plain text or not in RichTextEditor.
932
+ *
933
+ * @default false
934
+ */
935
+ plainText?: boolean;
936
936
 
937
937
  }
938
938
 
@@ -942,25 +942,25 @@ export interface PasteCleanupSettingsModel {
942
942
  export interface FontFamilyModel {
943
943
 
944
944
  /**
945
- * Specifies default font family selection
946
- *
947
- * @default 'null'
948
- */
949
- default?: string;
945
+ * Specifies default font family selection
946
+ *
947
+ * @default 'null'
948
+ */
949
+ default?: string;
950
950
 
951
951
  /**
952
- * Specifies content width
953
- *
954
- * @default '72px'
955
- */
956
- width?: string;
952
+ * Specifies content width
953
+ *
954
+ * @default '72px'
955
+ */
956
+ width?: string;
957
957
 
958
958
  /**
959
- * Specifies default font family items
960
- *
961
- * @default fontFamily
962
- */
963
- items?: IDropDownItemModel[];
959
+ * Specifies default font family items
960
+ *
961
+ * @default fontFamily
962
+ */
963
+ items?: IDropDownItemModel[];
964
964
 
965
965
  }
966
966
 
@@ -970,25 +970,25 @@ export interface FontFamilyModel {
970
970
  export interface FontSizeModel {
971
971
 
972
972
  /**
973
- * Specifies default font size selection
974
- *
975
- * @default 'null'
976
- */
977
- default?: string;
973
+ * Specifies default font size selection
974
+ *
975
+ * @default 'null'
976
+ */
977
+ default?: string;
978
978
 
979
979
  /**
980
- * Specifies content width
981
- *
982
- * @default '60px'
983
- */
984
- width?: string;
980
+ * Specifies content width
981
+ *
982
+ * @default '60px'
983
+ */
984
+ width?: string;
985
985
 
986
986
  /**
987
- * Specifies default font size items
988
- *
989
- * @default fontSize
990
- */
991
- items?: IDropDownItemModel[];
987
+ * Specifies default font size items
988
+ *
989
+ * @default fontSize
990
+ */
991
+ items?: IDropDownItemModel[];
992
992
 
993
993
  }
994
994
 
@@ -998,25 +998,25 @@ export interface FontSizeModel {
998
998
  export interface FormatModel {
999
999
 
1000
1000
  /**
1001
- * Specifies default format
1002
- *
1003
- * @default 'null'
1004
- */
1005
- default?: string;
1001
+ * Specifies default format
1002
+ *
1003
+ * @default 'null'
1004
+ */
1005
+ default?: string;
1006
1006
 
1007
1007
  /**
1008
- * Specifies content width
1009
- *
1010
- * @default '65px'
1011
- */
1012
- width?: string;
1008
+ * Specifies content width
1009
+ *
1010
+ * @default '65px'
1011
+ */
1012
+ width?: string;
1013
1013
 
1014
1014
  /**
1015
- * Specifies default font size items
1016
- *
1017
- * @default formatItems
1018
- */
1019
- types?: IDropDownItemModel[];
1015
+ * Specifies default font size items
1016
+ *
1017
+ * @default formatItems
1018
+ */
1019
+ types?: IDropDownItemModel[];
1020
1020
 
1021
1021
  }
1022
1022
 
@@ -1026,39 +1026,39 @@ export interface FormatModel {
1026
1026
  export interface FontColorModel {
1027
1027
 
1028
1028
  /**
1029
- * Specifies default font color
1030
- *
1031
- * @default '#ff0000'
1032
- */
1033
- default?: string;
1029
+ * Specifies default font color
1030
+ *
1031
+ * @default '#ff0000'
1032
+ */
1033
+ default?: string;
1034
1034
 
1035
1035
  /**
1036
- * Specifies mode
1037
- *
1038
- * @default 'Palette'
1039
- */
1040
- mode?: ColorModeType;
1036
+ * Specifies mode
1037
+ *
1038
+ * @default 'Palette'
1039
+ */
1040
+ mode?: ColorModeType;
1041
1041
 
1042
1042
  /**
1043
- * Specifies columns
1044
- *
1045
- * @default 10
1046
- */
1047
- columns?: number;
1043
+ * Specifies columns
1044
+ *
1045
+ * @default 10
1046
+ */
1047
+ columns?: number;
1048
1048
 
1049
1049
  /**
1050
- * Specifies color code customization
1051
- *
1052
- * @default fontColor
1053
- */
1054
- colorCode?: { [key: string]: string[] };
1050
+ * Specifies color code customization
1051
+ *
1052
+ * @default fontColor
1053
+ */
1054
+ colorCode?: { [key: string]: string[] };
1055
1055
 
1056
1056
  /**
1057
- * Specifies modeSwitcher button
1058
- *
1059
- * @default false
1060
- */
1061
- modeSwitcher?: boolean;
1057
+ * Specifies modeSwitcher button
1058
+ *
1059
+ * @default false
1060
+ */
1061
+ modeSwitcher?: boolean;
1062
1062
 
1063
1063
  }
1064
1064
 
@@ -1068,39 +1068,39 @@ export interface FontColorModel {
1068
1068
  export interface BackgroundColorModel {
1069
1069
 
1070
1070
  /**
1071
- * Specifies default font color
1072
- *
1073
- * @default '#ffff00'
1074
- */
1075
- default?: string;
1071
+ * Specifies default font color
1072
+ *
1073
+ * @default '#ffff00'
1074
+ */
1075
+ default?: string;
1076
1076
 
1077
1077
  /**
1078
- * Specifies mode
1079
- *
1080
- * @default 'Palette'
1081
- */
1082
- mode?: ColorModeType;
1078
+ * Specifies mode
1079
+ *
1080
+ * @default 'Palette'
1081
+ */
1082
+ mode?: ColorModeType;
1083
1083
 
1084
1084
  /**
1085
- * Specifies columns
1086
- *
1087
- * @default 10
1088
- */
1089
- columns?: number;
1085
+ * Specifies columns
1086
+ *
1087
+ * @default 10
1088
+ */
1089
+ columns?: number;
1090
1090
 
1091
1091
  /**
1092
- * Specifies color code customization
1093
- *
1094
- * @default backgroundColor
1095
- */
1096
- colorCode?: { [key: string]: string[] };
1092
+ * Specifies color code customization
1093
+ *
1094
+ * @default backgroundColor
1095
+ */
1096
+ colorCode?: { [key: string]: string[] };
1097
1097
 
1098
1098
  /**
1099
- * Specifies a modeSwitcher button
1100
- *
1101
- * @default false
1102
- */
1103
- modeSwitcher?: boolean;
1099
+ * Specifies a modeSwitcher button
1100
+ *
1101
+ * @default false
1102
+ */
1103
+ modeSwitcher?: boolean;
1104
1104
 
1105
1105
  }
1106
1106
 
@@ -1110,11 +1110,11 @@ export interface BackgroundColorModel {
1110
1110
  export interface NumberFormatListModel {
1111
1111
 
1112
1112
  /**
1113
- * Specifies default numberFormatList items
1114
- *
1115
- * @default numberFormatList
1116
- */
1117
- types?: IListDropDownModel[];
1113
+ * Specifies default numberFormatList items
1114
+ *
1115
+ * @default numberFormatList
1116
+ */
1117
+ types?: IListDropDownModel[];
1118
1118
 
1119
1119
  }
1120
1120
 
@@ -1124,10 +1124,10 @@ export interface NumberFormatListModel {
1124
1124
  export interface BulletFormatListModel {
1125
1125
 
1126
1126
  /**
1127
- * Specifies default numberFormatList items
1128
- *
1129
- * @default bulletFormatList
1130
- */
1131
- types?: IListDropDownModel[];
1127
+ * Specifies default numberFormatList items
1128
+ *
1129
+ * @default bulletFormatList
1130
+ */
1131
+ types?: IListDropDownModel[];
1132
1132
 
1133
1133
  }