@syncfusion/ej2-richtexteditor 23.2.7 → 24.1.41-569421
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 +259 -259
- package/CHANGELOG.md +1953 -1749
- package/README.md +76 -76
- package/dist/ej2-richtexteditor.umd.min.js +1 -10
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +9971 -8025
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +8445 -6498
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- 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.d.ts +7 -0
- package/src/common/config.js +12 -1
- package/src/common/constant.d.ts +6 -0
- package/src/common/constant.js +6 -0
- package/src/common/interface.d.ts +19 -7
- package/src/common/types.d.ts +6 -0
- package/src/common/util.d.ts +6 -0
- package/src/common/util.js +61 -20
- package/src/editor-manager/base/classes.d.ts +1 -1
- package/src/editor-manager/base/classes.js +1 -1
- package/src/editor-manager/base/constant.d.ts +6 -0
- package/src/editor-manager/base/constant.js +6 -0
- package/src/editor-manager/base/editor-manager.d.ts +8 -3
- package/src/editor-manager/base/editor-manager.js +62 -3
- package/src/editor-manager/base/enum.d.ts +2 -2
- package/src/editor-manager/base/interface.d.ts +17 -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 +39 -35
- package/src/editor-manager/plugin/dom-node.js +203 -62
- package/src/editor-manager/plugin/format-painter-actions.d.ts +2 -1
- package/src/editor-manager/plugin/format-painter-actions.js +20 -2
- package/src/editor-manager/plugin/formats.d.ts +3 -2
- package/src/editor-manager/plugin/formats.js +40 -5
- package/src/editor-manager/plugin/image.d.ts +3 -3
- package/src/editor-manager/plugin/image.js +41 -18
- package/src/editor-manager/plugin/indents.d.ts +2 -2
- package/src/editor-manager/plugin/indents.js +3 -3
- 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 +3 -2
- package/src/editor-manager/plugin/inserthtml.js +85 -22
- 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 +10 -5
- package/src/editor-manager/plugin/lists.d.ts +2 -2
- package/src/editor-manager/plugin/lists.js +161 -72
- package/src/editor-manager/plugin/ms-word-clean-up.d.ts +4 -1
- package/src/editor-manager/plugin/ms-word-clean-up.js +216 -86
- package/src/editor-manager/plugin/nodecutter.d.ts +6 -6
- package/src/editor-manager/plugin/nodecutter.js +11 -8
- package/src/editor-manager/plugin/selection-commands.d.ts +3 -1
- package/src/editor-manager/plugin/selection-commands.js +249 -5
- 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 +6 -3
- package/src/editor-manager/plugin/table.js +97 -51
- package/src/editor-manager/plugin/toolbar-status.d.ts +4 -4
- package/src/editor-manager/plugin/toolbar-status.js +22 -12
- package/src/editor-manager/plugin/undo.d.ts +7 -6
- package/src/editor-manager/plugin/undo.js +27 -7
- package/src/editor-manager/plugin/video.d.ts +3 -3
- package/src/editor-manager/plugin/video.js +3 -3
- package/src/global.d.ts +1 -0
- 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 +13 -12
- package/src/rich-text-editor/actions/base-quick-toolbar.js +70 -23
- package/src/rich-text-editor/actions/base-toolbar.d.ts +3 -3
- package/src/rich-text-editor/actions/base-toolbar.js +36 -37
- package/src/rich-text-editor/actions/color-picker.d.ts +3 -2
- package/src/rich-text-editor/actions/color-picker.js +15 -5
- package/src/rich-text-editor/actions/count.d.ts +3 -3
- package/src/rich-text-editor/actions/count.js +4 -4
- package/src/rich-text-editor/actions/dropdown-buttons.d.ts +3 -2
- package/src/rich-text-editor/actions/dropdown-buttons.js +13 -7
- package/src/rich-text-editor/actions/emoji-picker.d.ts +1 -1
- package/src/rich-text-editor/actions/emoji-picker.js +17 -8
- package/src/rich-text-editor/actions/enter-key.js +10 -5
- package/src/rich-text-editor/actions/file-manager.js +1 -1
- package/src/rich-text-editor/actions/format-painter.js +5 -2
- package/src/rich-text-editor/actions/full-screen.d.ts +3 -3
- package/src/rich-text-editor/actions/full-screen.js +8 -7
- package/src/rich-text-editor/actions/html-editor.d.ts +5 -3
- package/src/rich-text-editor/actions/html-editor.js +134 -22
- 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 +23 -21
- package/src/rich-text-editor/actions/markdown-editor.d.ts +2 -2
- package/src/rich-text-editor/actions/markdown-editor.js +5 -3
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +6 -1
- package/src/rich-text-editor/actions/paste-clean-up.js +157 -29
- package/src/rich-text-editor/actions/quick-toolbar.d.ts +17 -9
- package/src/rich-text-editor/actions/quick-toolbar.js +68 -21
- package/src/rich-text-editor/actions/resize.js +2 -1
- package/src/rich-text-editor/actions/toolbar-action.js +1 -1
- package/src/rich-text-editor/actions/toolbar.d.ts +16 -16
- package/src/rich-text-editor/actions/toolbar.js +48 -109
- 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 +125 -125
- package/src/rich-text-editor/base/classes.js +125 -125
- package/src/rich-text-editor/base/constant.d.ts +195 -150
- package/src/rich-text-editor/base/constant.js +364 -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 +96 -52
- 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 +76 -64
- package/src/rich-text-editor/base/rich-text-editor.js +247 -160
- package/src/rich-text-editor/base/util.d.ts +1 -1
- package/src/rich-text-editor/base/util.js +23 -5
- package/src/rich-text-editor/formatter/formatter.d.ts +8 -8
- package/src/rich-text-editor/formatter/formatter.js +24 -12
- 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 +31 -25
- 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 +3 -3
- package/src/rich-text-editor/models/toolbar-settings-model.d.ts +760 -760
- package/src/rich-text-editor/models/toolbar-settings.d.ts +1 -1
- package/src/rich-text-editor/models/toolbar-settings.js +20 -20
- package/src/rich-text-editor/renderer/audio-module.d.ts +2 -1
- package/src/rich-text-editor/renderer/audio-module.js +23 -5
- 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 +4 -2
- package/src/rich-text-editor/renderer/dialog-renderer.js +24 -4
- package/src/rich-text-editor/renderer/iframe-content-renderer.d.ts +4 -4
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +19 -18
- package/src/rich-text-editor/renderer/image-module.d.ts +10 -2
- package/src/rich-text-editor/renderer/image-module.js +265 -221
- package/src/rich-text-editor/renderer/link-module.d.ts +1 -1
- package/src/rich-text-editor/renderer/link-module.js +54 -25
- 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 +11 -2
- package/src/rich-text-editor/renderer/table-module.js +344 -169
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +12 -15
- package/src/rich-text-editor/renderer/toolbar-renderer.js +115 -110
- package/src/rich-text-editor/renderer/video-module.d.ts +4 -1
- package/src/rich-text-editor/renderer/video-module.js +83 -42
- package/src/rich-text-editor/renderer/view-source.d.ts +7 -6
- package/src/rich-text-editor/renderer/view-source.js +21 -11
- 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 +25 -22
- package/styles/_all.scss +1 -1
- package/styles/bootstrap-dark.css +353 -103
- package/styles/bootstrap.css +357 -112
- package/styles/bootstrap4.css +338 -96
- package/styles/bootstrap5-dark.css +344 -97
- package/styles/bootstrap5.css +344 -97
- package/styles/fabric-dark.css +332 -90
- package/styles/fabric.css +333 -91
- package/styles/fluent-dark.css +360 -98
- package/styles/fluent.css +360 -98
- package/styles/highcontrast-light.css +332 -90
- package/styles/highcontrast.css +336 -91
- package/styles/material-dark.css +339 -92
- package/styles/material.css +339 -92
- package/styles/material3-dark.css +348 -100
- package/styles/material3-dark.scss +1 -1
- package/styles/material3.css +348 -100
- package/styles/material3.scss +1 -1
- package/styles/rich-text-editor/_all.scss +2 -2
- package/styles/rich-text-editor/_bds-definition.scss +279 -0
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +281 -277
- package/styles/rich-text-editor/_bootstrap-definition.scss +337 -334
- package/styles/rich-text-editor/_bootstrap4-definition.scss +464 -460
- package/styles/rich-text-editor/_bootstrap5-definition.scss +266 -262
- package/styles/rich-text-editor/_fabric-dark-definition.scss +263 -259
- package/styles/rich-text-editor/_fabric-definition.scss +261 -257
- package/styles/rich-text-editor/_fluent-definition.scss +267 -263
- package/styles/rich-text-editor/_fusionnew-definition.scss +265 -261
- package/styles/rich-text-editor/_highcontrast-definition.scss +261 -257
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +261 -257
- package/styles/rich-text-editor/_layout.scss +2249 -2072
- package/styles/rich-text-editor/_material-dark-definition.scss +266 -262
- package/styles/rich-text-editor/_material-definition.scss +264 -260
- package/styles/rich-text-editor/_material3-definition.scss +266 -262
- package/styles/rich-text-editor/_tailwind-definition.scss +261 -257
- package/styles/rich-text-editor/_theme.scss +926 -837
- package/styles/rich-text-editor/bootstrap-dark.css +353 -103
- package/styles/rich-text-editor/bootstrap.css +357 -112
- package/styles/rich-text-editor/bootstrap4.css +338 -96
- package/styles/rich-text-editor/bootstrap5-dark.css +344 -97
- package/styles/rich-text-editor/bootstrap5.css +344 -97
- package/styles/rich-text-editor/fabric-dark.css +332 -90
- package/styles/rich-text-editor/fabric.css +333 -91
- package/styles/rich-text-editor/fluent-dark.css +360 -98
- package/styles/rich-text-editor/fluent.css +360 -98
- package/styles/rich-text-editor/highcontrast-light.css +332 -90
- package/styles/rich-text-editor/highcontrast.css +336 -91
- package/styles/rich-text-editor/icons/_bds.scss +348 -0
- 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 +339 -92
- package/styles/rich-text-editor/material.css +339 -92
- package/styles/rich-text-editor/material3-dark.css +348 -100
- package/styles/rich-text-editor/material3-dark.scss +1 -1
- package/styles/rich-text-editor/material3.css +348 -100
- package/styles/rich-text-editor/material3.scss +1 -1
- package/styles/rich-text-editor/tailwind-dark.css +383 -113
- package/styles/rich-text-editor/tailwind.css +383 -113
- package/styles/tailwind-dark.css +383 -113
- package/styles/tailwind.css +383 -113
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -41
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +0 -27
- package/dist/ej2-richtexteditor.min.js +0 -10
- package/dist/global/ej2-richtexteditor.min.js +0 -11
- package/dist/global/ej2-richtexteditor.min.js.map +0 -1
- package/dist/global/index.d.ts +0 -14
- package/tslint.json +0 -111
|
@@ -3,606 +3,606 @@
|
|
|
3
3
|
*/
|
|
4
4
|
/**
|
|
5
5
|
* @hidden
|
|
6
|
-
|
|
6
|
+
* @deprecated
|
|
7
7
|
*/
|
|
8
8
|
export declare const CLS_RTE: string;
|
|
9
9
|
/**
|
|
10
10
|
* @hidden
|
|
11
|
-
|
|
11
|
+
* @deprecated
|
|
12
12
|
*/
|
|
13
13
|
export declare const CLS_RTL: string;
|
|
14
14
|
/**
|
|
15
15
|
* @hidden
|
|
16
|
-
|
|
16
|
+
* @deprecated
|
|
17
17
|
*/
|
|
18
18
|
export declare const CLS_CONTENT: string;
|
|
19
19
|
/**
|
|
20
20
|
* @hidden
|
|
21
|
-
|
|
21
|
+
* @deprecated
|
|
22
22
|
*/
|
|
23
23
|
export declare const CLS_DISABLED: string;
|
|
24
24
|
/**
|
|
25
25
|
* @hidden
|
|
26
|
-
|
|
26
|
+
* @deprecated
|
|
27
27
|
*/
|
|
28
28
|
export declare const CLS_SCRIPT_SHEET: string;
|
|
29
29
|
/**
|
|
30
30
|
* @hidden
|
|
31
|
-
|
|
31
|
+
* @deprecated
|
|
32
32
|
*/
|
|
33
33
|
export declare const CLS_STYLE_SHEET: string;
|
|
34
34
|
/**
|
|
35
35
|
* @hidden
|
|
36
|
-
|
|
36
|
+
* @deprecated
|
|
37
37
|
*/
|
|
38
38
|
export declare const CLS_TOOLBAR: string;
|
|
39
39
|
/**
|
|
40
40
|
* @hidden
|
|
41
|
-
|
|
41
|
+
* @deprecated
|
|
42
42
|
*/
|
|
43
43
|
export declare const CLS_TB_FIXED: string;
|
|
44
44
|
/**
|
|
45
45
|
* @hidden
|
|
46
|
-
|
|
46
|
+
* @deprecated
|
|
47
47
|
*/
|
|
48
48
|
export declare const CLS_TB_FLOAT: string;
|
|
49
49
|
/**
|
|
50
50
|
* @hidden
|
|
51
|
-
|
|
52
|
-
*/
|
|
53
|
-
export declare const CLS_TB_ABS_FLOAT: string;
|
|
54
|
-
/**
|
|
55
|
-
* @hidden
|
|
56
|
-
|
|
51
|
+
* @deprecated
|
|
57
52
|
*/
|
|
58
53
|
export declare const CLS_INLINE: string;
|
|
59
54
|
/**
|
|
60
55
|
* @hidden
|
|
61
|
-
|
|
56
|
+
* @deprecated
|
|
62
57
|
*/
|
|
63
58
|
export declare const CLS_TB_INLINE: string;
|
|
64
59
|
/**
|
|
65
60
|
* @hidden
|
|
66
|
-
|
|
61
|
+
* @deprecated
|
|
67
62
|
*/
|
|
68
63
|
export declare const CLS_RTE_EXPAND_TB: string;
|
|
69
64
|
/**
|
|
70
65
|
* @hidden
|
|
71
|
-
|
|
66
|
+
* @deprecated
|
|
72
67
|
*/
|
|
73
68
|
export declare const CLS_FULL_SCREEN: string;
|
|
74
69
|
/**
|
|
75
70
|
* @hidden
|
|
76
|
-
|
|
71
|
+
* @deprecated
|
|
77
72
|
*/
|
|
78
73
|
export declare const CLS_QUICK_TB: string;
|
|
79
74
|
/**
|
|
80
75
|
* @hidden
|
|
81
|
-
|
|
76
|
+
* @deprecated
|
|
77
|
+
*/
|
|
78
|
+
export declare const CLS_TEXT_QUICK_TB: string;
|
|
79
|
+
/**
|
|
80
|
+
* @hidden
|
|
81
|
+
* @deprecated
|
|
82
82
|
*/
|
|
83
83
|
export declare const CLS_POP: string;
|
|
84
84
|
/**
|
|
85
85
|
* @hidden
|
|
86
|
-
|
|
86
|
+
* @deprecated
|
|
87
87
|
*/
|
|
88
88
|
export declare const CLS_TB_STATIC: string;
|
|
89
89
|
/**
|
|
90
90
|
* @hidden
|
|
91
|
-
|
|
91
|
+
* @deprecated
|
|
92
92
|
*/
|
|
93
93
|
export declare const CLS_QUICK_POP: string;
|
|
94
94
|
/**
|
|
95
95
|
* @hidden
|
|
96
|
-
|
|
96
|
+
* @deprecated
|
|
97
97
|
*/
|
|
98
98
|
export declare const CLS_QUICK_DROPDOWN: string;
|
|
99
99
|
/**
|
|
100
100
|
* @hidden
|
|
101
|
-
|
|
101
|
+
* @deprecated
|
|
102
102
|
*/
|
|
103
103
|
export declare const CLS_IMAGE_POP: string;
|
|
104
104
|
/**
|
|
105
105
|
* @hidden
|
|
106
|
-
|
|
106
|
+
* @deprecated
|
|
107
107
|
*/
|
|
108
108
|
export declare const CLS_TEXT_POP: string;
|
|
109
109
|
/**
|
|
110
110
|
* @hidden
|
|
111
|
-
|
|
111
|
+
* @deprecated
|
|
112
112
|
*/
|
|
113
113
|
export declare const CLS_INLINE_POP: string;
|
|
114
114
|
/**
|
|
115
115
|
* @hidden
|
|
116
|
-
|
|
116
|
+
* @deprecated
|
|
117
117
|
*/
|
|
118
118
|
export declare const CLS_INLINE_DROPDOWN: string;
|
|
119
119
|
/**
|
|
120
120
|
* @hidden
|
|
121
|
-
|
|
121
|
+
* @deprecated
|
|
122
122
|
*/
|
|
123
123
|
export declare const CLS_DROPDOWN_POPUP: string;
|
|
124
124
|
/**
|
|
125
125
|
* @hidden
|
|
126
|
-
|
|
126
|
+
* @deprecated
|
|
127
127
|
*/
|
|
128
128
|
export declare const CLS_DROPDOWN_ICONS: string;
|
|
129
129
|
/**
|
|
130
130
|
* @hidden
|
|
131
|
-
|
|
131
|
+
* @deprecated
|
|
132
132
|
*/
|
|
133
133
|
export declare const CLS_DROPDOWN_ITEMS: string;
|
|
134
134
|
/**
|
|
135
135
|
* @hidden
|
|
136
|
-
|
|
136
|
+
* @deprecated
|
|
137
137
|
*/
|
|
138
138
|
export declare const CLS_DROPDOWN_BTN: string;
|
|
139
139
|
/**
|
|
140
140
|
* @hidden
|
|
141
|
-
|
|
141
|
+
* @deprecated
|
|
142
142
|
*/
|
|
143
143
|
export declare const CLS_RTE_CONTENT: string;
|
|
144
144
|
/**
|
|
145
145
|
* @hidden
|
|
146
|
-
|
|
146
|
+
* @deprecated
|
|
147
147
|
*/
|
|
148
148
|
export declare const CLS_TB_ITEM: string;
|
|
149
149
|
/**
|
|
150
150
|
* @hidden
|
|
151
|
-
|
|
151
|
+
* @deprecated
|
|
152
152
|
*/
|
|
153
153
|
export declare const CLS_TB_EXTENDED: string;
|
|
154
154
|
/**
|
|
155
155
|
* @hidden
|
|
156
|
-
|
|
156
|
+
* @deprecated
|
|
157
157
|
*/
|
|
158
158
|
export declare const CLS_TB_WRAP: string;
|
|
159
159
|
/**
|
|
160
160
|
* @hidden
|
|
161
|
-
|
|
161
|
+
* @deprecated
|
|
162
162
|
*/
|
|
163
163
|
export declare const CLS_POPUP: string;
|
|
164
164
|
/**
|
|
165
165
|
* @hidden
|
|
166
|
-
|
|
166
|
+
* @deprecated
|
|
167
167
|
*/
|
|
168
168
|
export declare const CLS_SEPARATOR: string;
|
|
169
169
|
/**
|
|
170
170
|
* @hidden
|
|
171
|
-
|
|
171
|
+
* @deprecated
|
|
172
172
|
*/
|
|
173
173
|
export declare const CLS_MINIMIZE: string;
|
|
174
174
|
/**
|
|
175
175
|
* @hidden
|
|
176
|
-
|
|
176
|
+
* @deprecated
|
|
177
177
|
*/
|
|
178
178
|
export declare const CLS_MAXIMIZE: string;
|
|
179
179
|
/**
|
|
180
180
|
* @hidden
|
|
181
|
-
|
|
181
|
+
* @deprecated
|
|
182
182
|
*/
|
|
183
183
|
export declare const CLS_BACK: string;
|
|
184
184
|
/**
|
|
185
185
|
* @hidden
|
|
186
|
-
|
|
186
|
+
* @deprecated
|
|
187
187
|
*/
|
|
188
188
|
export declare const CLS_SHOW: string;
|
|
189
189
|
/**
|
|
190
190
|
* @hidden
|
|
191
|
-
|
|
191
|
+
* @deprecated
|
|
192
192
|
*/
|
|
193
193
|
export declare const CLS_HIDE: string;
|
|
194
194
|
/**
|
|
195
195
|
* @hidden
|
|
196
|
-
|
|
196
|
+
* @deprecated
|
|
197
197
|
*/
|
|
198
198
|
export declare const CLS_VISIBLE: string;
|
|
199
199
|
/**
|
|
200
200
|
* @hidden
|
|
201
|
-
|
|
201
|
+
* @deprecated
|
|
202
202
|
*/
|
|
203
203
|
export declare const CLS_FOCUS: string;
|
|
204
204
|
/**
|
|
205
205
|
* @hidden
|
|
206
|
-
|
|
206
|
+
* @deprecated
|
|
207
207
|
*/
|
|
208
208
|
export declare const CLS_RM_WHITE_SPACE: string;
|
|
209
209
|
/**
|
|
210
210
|
* @hidden
|
|
211
|
-
|
|
211
|
+
* @deprecated
|
|
212
212
|
*/
|
|
213
213
|
export declare const CLS_IMGRIGHT: string;
|
|
214
214
|
/**
|
|
215
215
|
* @hidden
|
|
216
|
-
|
|
216
|
+
* @deprecated
|
|
217
217
|
*/
|
|
218
218
|
export declare const CLS_IMGLEFT: string;
|
|
219
219
|
/**
|
|
220
220
|
* @hidden
|
|
221
|
-
|
|
221
|
+
* @deprecated
|
|
222
222
|
*/
|
|
223
223
|
export declare const CLS_IMGCENTER: string;
|
|
224
224
|
/**
|
|
225
225
|
* @hidden
|
|
226
|
-
|
|
226
|
+
* @deprecated
|
|
227
227
|
*/
|
|
228
228
|
export declare const CLS_IMGBREAK: string;
|
|
229
229
|
/**
|
|
230
230
|
* @hidden
|
|
231
|
-
|
|
231
|
+
* @deprecated
|
|
232
232
|
*/
|
|
233
233
|
export declare const CLS_AUDIOBREAK: string;
|
|
234
234
|
/**
|
|
235
235
|
* @hidden
|
|
236
|
-
|
|
236
|
+
* @deprecated
|
|
237
237
|
*/
|
|
238
238
|
export declare const CLS_CLICKELEM: string;
|
|
239
239
|
/**
|
|
240
240
|
* @hidden
|
|
241
|
-
|
|
241
|
+
* @deprecated
|
|
242
242
|
*/
|
|
243
243
|
export declare const CLS_VID_CLICK_ELEM: string;
|
|
244
244
|
/**
|
|
245
245
|
* @hidden
|
|
246
|
-
|
|
246
|
+
* @deprecated
|
|
247
247
|
*/
|
|
248
248
|
export declare const CLS_AUDIOWRAP: string;
|
|
249
249
|
/**
|
|
250
250
|
* @hidden
|
|
251
|
-
|
|
251
|
+
* @deprecated
|
|
252
252
|
*/
|
|
253
253
|
export declare const CLS_VIDEOWRAP: string;
|
|
254
254
|
/**
|
|
255
255
|
* @hidden
|
|
256
|
-
|
|
256
|
+
* @deprecated
|
|
257
257
|
*/
|
|
258
258
|
export declare const CLS_VIDEOBREAK: string;
|
|
259
259
|
/**
|
|
260
260
|
* @hidden
|
|
261
|
-
|
|
261
|
+
* @deprecated
|
|
262
262
|
*/
|
|
263
263
|
export declare const CLS_CAPTION: string;
|
|
264
264
|
/**
|
|
265
265
|
* @hidden
|
|
266
|
-
|
|
266
|
+
* @deprecated
|
|
267
267
|
*/
|
|
268
268
|
export declare const CLS_RTE_CAPTION: string;
|
|
269
269
|
/**
|
|
270
270
|
* @hidden
|
|
271
|
-
|
|
271
|
+
* @deprecated
|
|
272
272
|
*/
|
|
273
273
|
export declare const CLS_CAPINLINE: string;
|
|
274
274
|
/**
|
|
275
275
|
* @hidden
|
|
276
|
-
|
|
276
|
+
* @deprecated
|
|
277
277
|
*/
|
|
278
278
|
export declare const CLS_IMGINLINE: string;
|
|
279
279
|
/**
|
|
280
280
|
* @hidden
|
|
281
|
-
|
|
281
|
+
* @deprecated
|
|
282
282
|
*/
|
|
283
283
|
export declare const CLS_AUDIOINLINE: string;
|
|
284
284
|
/**
|
|
285
285
|
* @hidden
|
|
286
|
-
|
|
286
|
+
* @deprecated
|
|
287
287
|
*/
|
|
288
288
|
export declare const CLS_VIDEOINLINE: string;
|
|
289
289
|
/**
|
|
290
290
|
* @hidden
|
|
291
|
-
|
|
291
|
+
* @deprecated
|
|
292
292
|
*/
|
|
293
293
|
export declare const CLS_COUNT: string;
|
|
294
294
|
/**
|
|
295
295
|
* @hidden
|
|
296
|
-
|
|
296
|
+
* @deprecated
|
|
297
297
|
*/
|
|
298
298
|
export declare const CLS_WARNING: string;
|
|
299
299
|
/**
|
|
300
300
|
* @hidden
|
|
301
|
-
|
|
301
|
+
* @deprecated
|
|
302
302
|
*/
|
|
303
303
|
export declare const CLS_ERROR: string;
|
|
304
304
|
/**
|
|
305
305
|
* @hidden
|
|
306
|
-
|
|
306
|
+
* @deprecated
|
|
307
307
|
*/
|
|
308
308
|
export declare const CLS_ICONS: string;
|
|
309
309
|
/**
|
|
310
310
|
* @hidden
|
|
311
|
-
|
|
311
|
+
* @deprecated
|
|
312
312
|
*/
|
|
313
313
|
export declare const CLS_ACTIVE: string;
|
|
314
314
|
/**
|
|
315
315
|
* @hidden
|
|
316
|
-
|
|
316
|
+
* @deprecated
|
|
317
317
|
*/
|
|
318
318
|
export declare const CLS_EXPAND_OPEN: string;
|
|
319
319
|
/**
|
|
320
320
|
* @hidden
|
|
321
|
-
|
|
321
|
+
* @deprecated
|
|
322
322
|
*/
|
|
323
323
|
export declare const CLS_RTE_ELEMENTS: string;
|
|
324
324
|
/**
|
|
325
325
|
* @hidden
|
|
326
|
-
|
|
326
|
+
* @deprecated
|
|
327
327
|
*/
|
|
328
328
|
export declare const CLS_TB_BTN: string;
|
|
329
329
|
/**
|
|
330
330
|
* @hidden
|
|
331
|
-
|
|
331
|
+
* @deprecated
|
|
332
332
|
*/
|
|
333
333
|
export declare const CLS_HR_SEPARATOR: string;
|
|
334
334
|
/**
|
|
335
335
|
* @hidden
|
|
336
|
-
|
|
336
|
+
* @deprecated
|
|
337
337
|
*/
|
|
338
338
|
export declare const CLS_TB_IOS_FIX: string;
|
|
339
339
|
/**
|
|
340
340
|
* @hidden
|
|
341
|
-
|
|
341
|
+
* @deprecated
|
|
342
342
|
*/
|
|
343
343
|
export declare const CLS_LIST_PRIMARY_CONTENT: string;
|
|
344
344
|
/**
|
|
345
345
|
* @hidden
|
|
346
|
-
|
|
346
|
+
* @deprecated
|
|
347
347
|
*/
|
|
348
348
|
export declare const CLS_NUMBERFORMATLIST_TB_BTN: string;
|
|
349
349
|
/**
|
|
350
350
|
* @hidden
|
|
351
|
-
|
|
351
|
+
* @deprecated
|
|
352
352
|
*/
|
|
353
353
|
export declare const CLS_BULLETFORMATLIST_TB_BTN: string;
|
|
354
354
|
/**
|
|
355
355
|
* @hidden
|
|
356
|
-
|
|
356
|
+
* @deprecated
|
|
357
357
|
*/
|
|
358
358
|
export declare const CLS_FORMATS_TB_BTN: string;
|
|
359
359
|
/**
|
|
360
360
|
* @hidden
|
|
361
|
-
|
|
361
|
+
* @deprecated
|
|
362
362
|
*/
|
|
363
363
|
export declare const CLS_FONT_NAME_TB_BTN: string;
|
|
364
364
|
/**
|
|
365
365
|
* @hidden
|
|
366
|
-
|
|
366
|
+
* @deprecated
|
|
367
367
|
*/
|
|
368
368
|
export declare const CLS_FONT_SIZE_TB_BTN: string;
|
|
369
369
|
/**
|
|
370
370
|
* @hidden
|
|
371
|
-
|
|
371
|
+
* @deprecated
|
|
372
372
|
*/
|
|
373
373
|
export declare const CLS_ALIGN_TB_BTN: string;
|
|
374
374
|
/**
|
|
375
375
|
* @hidden
|
|
376
|
-
|
|
376
|
+
* @deprecated
|
|
377
377
|
*/
|
|
378
378
|
export declare const CLS_FONT_COLOR_TARGET: string;
|
|
379
379
|
/**
|
|
380
380
|
* @hidden
|
|
381
|
-
|
|
381
|
+
* @deprecated
|
|
382
382
|
*/
|
|
383
383
|
export declare const CLS_BACKGROUND_COLOR_TARGET: string;
|
|
384
384
|
/**
|
|
385
385
|
* @hidden
|
|
386
|
-
|
|
386
|
+
* @deprecated
|
|
387
387
|
*/
|
|
388
388
|
export declare const CLS_COLOR_CONTENT: string;
|
|
389
389
|
/**
|
|
390
390
|
* @hidden
|
|
391
|
-
|
|
391
|
+
* @deprecated
|
|
392
392
|
*/
|
|
393
393
|
export declare const CLS_FONT_COLOR_DROPDOWN: string;
|
|
394
394
|
/**
|
|
395
395
|
* @hidden
|
|
396
|
-
|
|
396
|
+
* @deprecated
|
|
397
397
|
*/
|
|
398
398
|
export declare const CLS_BACKGROUND_COLOR_DROPDOWN: string;
|
|
399
399
|
/**
|
|
400
400
|
* @hidden
|
|
401
|
-
|
|
401
|
+
* @deprecated
|
|
402
402
|
*/
|
|
403
403
|
export declare const CLS_COLOR_PALETTE: string;
|
|
404
404
|
/**
|
|
405
405
|
* @hidden
|
|
406
|
-
|
|
406
|
+
* @deprecated
|
|
407
407
|
*/
|
|
408
408
|
export declare const CLS_FONT_COLOR_PICKER: string;
|
|
409
409
|
/**
|
|
410
410
|
* @hidden
|
|
411
|
-
|
|
411
|
+
* @deprecated
|
|
412
412
|
*/
|
|
413
413
|
export declare const CLS_BACKGROUND_COLOR_PICKER: string;
|
|
414
414
|
/**
|
|
415
415
|
* @hidden
|
|
416
|
-
|
|
416
|
+
* @deprecated
|
|
417
417
|
*/
|
|
418
418
|
export declare const CLS_RTE_READONLY: string;
|
|
419
419
|
/**
|
|
420
420
|
* @hidden
|
|
421
|
-
|
|
421
|
+
* @deprecated
|
|
422
422
|
*/
|
|
423
423
|
export declare const CLS_TABLE_SEL: string;
|
|
424
424
|
/**
|
|
425
425
|
* @hidden
|
|
426
|
-
|
|
426
|
+
* @deprecated
|
|
427
427
|
*/
|
|
428
428
|
export declare const CLS_TB_DASH_BOR: string;
|
|
429
429
|
/**
|
|
430
430
|
* @hidden
|
|
431
|
-
|
|
431
|
+
* @deprecated
|
|
432
432
|
*/
|
|
433
433
|
export declare const CLS_TB_ALT_BOR: string;
|
|
434
434
|
/**
|
|
435
435
|
* @hidden
|
|
436
|
-
|
|
436
|
+
* @deprecated
|
|
437
437
|
*/
|
|
438
438
|
export declare const CLS_TB_COL_RES: string;
|
|
439
439
|
/**
|
|
440
440
|
* @hidden
|
|
441
|
-
|
|
441
|
+
* @deprecated
|
|
442
442
|
*/
|
|
443
443
|
export declare const CLS_TB_ROW_RES: string;
|
|
444
444
|
/**
|
|
445
445
|
* @hidden
|
|
446
|
-
|
|
446
|
+
* @deprecated
|
|
447
447
|
*/
|
|
448
448
|
export declare const CLS_TB_BOX_RES: string;
|
|
449
449
|
/**
|
|
450
450
|
* @hidden
|
|
451
|
-
|
|
451
|
+
* @deprecated
|
|
452
452
|
*/
|
|
453
453
|
export declare const CLS_RTE_HIDDEN: string;
|
|
454
454
|
/**
|
|
455
455
|
* @hidden
|
|
456
|
-
|
|
456
|
+
* @deprecated
|
|
457
457
|
*/
|
|
458
458
|
export declare const CLS_RTE_PASTE_KEEP_FORMAT: string;
|
|
459
459
|
/**
|
|
460
460
|
* @hidden
|
|
461
|
-
|
|
461
|
+
* @deprecated
|
|
462
462
|
*/
|
|
463
463
|
export declare const CLS_RTE_PASTE_REMOVE_FORMAT: string;
|
|
464
464
|
/**
|
|
465
465
|
* @hidden
|
|
466
|
-
|
|
466
|
+
* @deprecated
|
|
467
467
|
*/
|
|
468
468
|
export declare const CLS_RTE_PASTE_PLAIN_FORMAT: string;
|
|
469
469
|
/**
|
|
470
470
|
* @hidden
|
|
471
|
-
|
|
471
|
+
* @deprecated
|
|
472
472
|
*/
|
|
473
473
|
export declare const CLS_RTE_PASTE_OK: string;
|
|
474
474
|
/**
|
|
475
475
|
* @hidden
|
|
476
|
-
|
|
476
|
+
* @deprecated
|
|
477
477
|
*/
|
|
478
478
|
export declare const CLS_RTE_PASTE_CANCEL: string;
|
|
479
479
|
/**
|
|
480
480
|
* @hidden
|
|
481
|
-
|
|
481
|
+
* @deprecated
|
|
482
482
|
*/
|
|
483
483
|
export declare const CLS_RTE_DIALOG_MIN_HEIGHT: string;
|
|
484
484
|
/**
|
|
485
485
|
* @hidden
|
|
486
|
-
|
|
486
|
+
* @deprecated
|
|
487
487
|
*/
|
|
488
488
|
export declare const CLS_RTE_RES_HANDLE: string;
|
|
489
489
|
/**
|
|
490
490
|
* @hidden
|
|
491
|
-
|
|
491
|
+
* @deprecated
|
|
492
492
|
*/
|
|
493
493
|
export declare const CLS_RTE_RES_EAST: string;
|
|
494
494
|
/**
|
|
495
495
|
* @hidden
|
|
496
|
-
|
|
496
|
+
* @deprecated
|
|
497
497
|
*/
|
|
498
498
|
export declare const CLS_RTE_IMAGE: string;
|
|
499
499
|
/**
|
|
500
500
|
* @hidden
|
|
501
|
-
|
|
501
|
+
* @deprecated
|
|
502
502
|
*/
|
|
503
503
|
export declare const CLS_RESIZE: string;
|
|
504
504
|
/**
|
|
505
505
|
* @hidden
|
|
506
|
-
|
|
506
|
+
* @deprecated
|
|
507
507
|
*/
|
|
508
508
|
export declare const CLS_IMG_FOCUS: string;
|
|
509
509
|
/**
|
|
510
510
|
* @hidden
|
|
511
|
-
|
|
511
|
+
* @deprecated
|
|
512
512
|
*/
|
|
513
513
|
export declare const CLS_AUD_FOCUS: string;
|
|
514
514
|
/**
|
|
515
515
|
* @hidden
|
|
516
|
-
|
|
516
|
+
* @deprecated
|
|
517
517
|
*/
|
|
518
518
|
export declare const CLS_VID_FOCUS: string;
|
|
519
519
|
/**
|
|
520
520
|
* @hidden
|
|
521
|
-
|
|
521
|
+
* @deprecated
|
|
522
522
|
*/
|
|
523
523
|
export declare const CLS_RTE_DRAG_IMAGE: string;
|
|
524
524
|
/**
|
|
525
525
|
* @hidden
|
|
526
|
-
|
|
526
|
+
* @deprecated
|
|
527
527
|
*/
|
|
528
528
|
export declare const CLS_RTE_UPLOAD_POPUP: string;
|
|
529
529
|
/**
|
|
530
530
|
* @hidden
|
|
531
|
-
|
|
531
|
+
* @deprecated
|
|
532
532
|
*/
|
|
533
533
|
export declare const CLS_POPUP_OPEN: string;
|
|
534
534
|
/**
|
|
535
535
|
* @hidden
|
|
536
|
-
|
|
536
|
+
* @deprecated
|
|
537
537
|
*/
|
|
538
538
|
export declare const CLS_IMG_RESIZE: string;
|
|
539
539
|
/**
|
|
540
540
|
* @hidden
|
|
541
|
-
|
|
541
|
+
* @deprecated
|
|
542
542
|
*/
|
|
543
543
|
export declare const CLS_DROPAREA: string;
|
|
544
544
|
/**
|
|
545
545
|
* @hidden
|
|
546
|
-
|
|
546
|
+
* @deprecated
|
|
547
547
|
*/
|
|
548
548
|
export declare const CLS_IMG_INNER: string;
|
|
549
549
|
/**
|
|
550
550
|
* @hidden
|
|
551
|
-
|
|
551
|
+
* @deprecated
|
|
552
552
|
*/
|
|
553
553
|
export declare const CLS_UPLOAD_FILES: string;
|
|
554
554
|
/**
|
|
555
555
|
* @hidden
|
|
556
|
-
|
|
556
|
+
* @deprecated
|
|
557
557
|
*/
|
|
558
558
|
export declare const CLS_RTE_DIALOG_UPLOAD: string;
|
|
559
559
|
/**
|
|
560
560
|
* @hidden
|
|
561
|
-
|
|
561
|
+
* @deprecated
|
|
562
562
|
*/
|
|
563
563
|
export declare const CLS_RTE_RES_CNT: string;
|
|
564
564
|
/**
|
|
565
565
|
* @hidden
|
|
566
|
-
|
|
566
|
+
* @deprecated
|
|
567
567
|
*/
|
|
568
568
|
export declare const CLS_CUSTOM_TILE: string;
|
|
569
569
|
/**
|
|
570
570
|
* @hidden
|
|
571
|
-
|
|
571
|
+
* @deprecated
|
|
572
572
|
*/
|
|
573
573
|
export declare const CLS_NOCOLOR_ITEM: string;
|
|
574
574
|
/**
|
|
575
575
|
* @hidden
|
|
576
|
-
|
|
576
|
+
* @deprecated
|
|
577
577
|
*/
|
|
578
578
|
export declare const CLS_TABLE: string;
|
|
579
579
|
/**
|
|
580
580
|
* @hidden
|
|
581
|
-
|
|
581
|
+
* @deprecated
|
|
582
582
|
*/
|
|
583
583
|
export declare const CLS_TABLE_BORDER: string;
|
|
584
584
|
/**
|
|
585
585
|
* @hidden
|
|
586
|
-
|
|
586
|
+
* @deprecated
|
|
587
587
|
*/
|
|
588
588
|
export declare const CLS_RTE_TABLE_RESIZE: string;
|
|
589
589
|
/**
|
|
590
590
|
* @hidden
|
|
591
|
-
|
|
591
|
+
* @deprecated
|
|
592
592
|
*/
|
|
593
593
|
export declare const CLS_RTE_FIXED_TB_EXPAND: string;
|
|
594
594
|
/**
|
|
595
595
|
* @hidden
|
|
596
|
-
|
|
596
|
+
* @deprecated
|
|
597
597
|
*/
|
|
598
598
|
export declare const CLS_RTE_TB_ENABLED: string;
|
|
599
599
|
/**
|
|
600
600
|
* @hidden
|
|
601
|
-
|
|
601
|
+
* @deprecated
|
|
602
602
|
*/
|
|
603
603
|
export declare const CLS_RTE_RES_WEST: string;
|
|
604
604
|
/**
|
|
605
605
|
* @hidden
|
|
606
|
-
|
|
606
|
+
* @deprecated
|
|
607
607
|
*/
|
|
608
608
|
export declare const CLS_RTE_SOURCE_CODE_TXTAREA: string;
|