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