vue-editify 0.1.19 → 0.1.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/README.md +3 -3
  2. package/examples/App.vue +102 -62
  3. package/examples/main.ts +4 -4
  4. package/lib/components/button/button.vue.d.ts +11 -11
  5. package/lib/components/checkbox/checkbox.vue.d.ts +8 -8
  6. package/lib/components/colors/colors.vue.d.ts +4 -4
  7. package/lib/components/icon/icon.vue.d.ts +1 -1
  8. package/lib/components/insertImage/insertImage.vue.d.ts +9 -9
  9. package/lib/components/insertLink/insertLink.vue.d.ts +2 -2
  10. package/lib/components/insertTable/insertTable.vue.d.ts +2 -2
  11. package/lib/components/insertVideo/insertVideo.vue.d.ts +9 -9
  12. package/lib/components/layer/layer.vue.d.ts +9 -9
  13. package/lib/components/menu/menu.vue.d.ts +4 -4
  14. package/lib/components/toolbar/toolbar.vue.d.ts +9 -9
  15. package/lib/components/tooltip/tooltip.vue.d.ts +1 -1
  16. package/lib/components/triangle/triangle.vue.d.ts +4 -4
  17. package/lib/core/tool.d.ts +35 -35
  18. package/lib/editify/editify.vue.d.ts +68 -68
  19. package/lib/editify.es.js +57 -46
  20. package/lib/editify.umd.js +1 -1
  21. package/lib/index.d.ts +1 -1
  22. package/lib/style.css +1 -1
  23. package/package.json +45 -45
  24. package/src/components/button/button.less +145 -145
  25. package/src/components/button/button.vue +197 -197
  26. package/src/components/button/props.ts +95 -95
  27. package/src/components/checkbox/checkbox.less +84 -84
  28. package/src/components/checkbox/checkbox.vue +68 -68
  29. package/src/components/checkbox/props.ts +49 -49
  30. package/src/components/colors/colors.less +75 -75
  31. package/src/components/colors/colors.vue +36 -36
  32. package/src/components/colors/props.ts +29 -29
  33. package/src/components/icon/icon.less +14 -14
  34. package/src/components/icon/icon.vue +12 -12
  35. package/src/components/icon/props.ts +11 -11
  36. package/src/components/insertImage/insertImage.less +135 -135
  37. package/src/components/insertImage/insertImage.vue +146 -146
  38. package/src/components/insertImage/props.ts +43 -43
  39. package/src/components/insertLink/insertLink.less +64 -64
  40. package/src/components/insertLink/insertLink.vue +58 -58
  41. package/src/components/insertLink/props.ts +16 -16
  42. package/src/components/insertTable/insertTable.less +54 -54
  43. package/src/components/insertTable/insertTable.vue +85 -85
  44. package/src/components/insertTable/props.ts +27 -27
  45. package/src/components/insertVideo/insertVideo.less +135 -135
  46. package/src/components/insertVideo/insertVideo.vue +146 -146
  47. package/src/components/insertVideo/props.ts +43 -43
  48. package/src/components/layer/layer.less +49 -49
  49. package/src/components/layer/layer.vue +598 -598
  50. package/src/components/layer/props.ts +71 -71
  51. package/src/components/menu/menu.less +63 -63
  52. package/src/components/menu/menu.vue +1569 -1569
  53. package/src/components/menu/props.ts +17 -17
  54. package/src/components/toolbar/props.ts +35 -35
  55. package/src/components/toolbar/toolbar.less +89 -89
  56. package/src/components/toolbar/toolbar.vue +1101 -1101
  57. package/src/components/tooltip/props.ts +21 -21
  58. package/src/components/tooltip/tooltip.less +23 -23
  59. package/src/components/tooltip/tooltip.vue +37 -37
  60. package/src/components/triangle/props.ts +26 -26
  61. package/src/components/triangle/triangle.less +79 -79
  62. package/src/components/triangle/triangle.vue +65 -65
  63. package/src/core/function.ts +1150 -1144
  64. package/src/core/rule.ts +259 -259
  65. package/src/core/tool.ts +1137 -1137
  66. package/src/css/base.less +30 -30
  67. package/src/css/hljs.less +54 -54
  68. package/src/editify/editify.less +405 -404
  69. package/src/editify/editify.vue +810 -803
  70. package/src/editify/props.ts +156 -156
  71. package/src/hljs/index.ts +197 -197
  72. package/src/icon/iconfont.css +219 -219
  73. package/src/index.ts +32 -32
  74. package/src/locale/en_US.ts +88 -88
  75. package/src/locale/index.ts +12 -12
  76. package/src/locale/zh_CN.ts +88 -88
  77. package/tsconfig.json +27 -27
  78. package/tsconfig.node.json +11 -11
  79. package/vite-env.d.ts +1 -1
  80. package/vite.config.ts +42 -42
@@ -1,219 +1,219 @@
1
- .editify-icon-full-screen:before {
2
- content: '\e62f';
3
- }
4
-
5
- .editify-icon-auto-width:before {
6
- content: '\e61d';
7
- }
8
-
9
- .editify-icon-task:before {
10
- content: '\e605';
11
- }
12
-
13
- .editify-icon-source-view:before {
14
- content: '\e6a1';
15
- }
16
-
17
- .editify-icon-upload:before {
18
- content: '\e637';
19
- }
20
-
21
- .editify-icon-remove:before {
22
- content: '\e852';
23
- }
24
-
25
- .editify-icon-code:before {
26
- content: '\e6a0';
27
- }
28
-
29
- .editify-icon-stop:before {
30
- content: '\e67c';
31
- }
32
-
33
- .editify-icon-loop:before {
34
- content: '\e621';
35
- }
36
-
37
- .editify-icon-autoplay:before {
38
- content: '\e618';
39
- }
40
-
41
- .editify-icon-muted:before {
42
- content: '\ea0f';
43
- }
44
-
45
- .editify-icon-unmuted:before {
46
- content: '\ea11';
47
- }
48
-
49
- .editify-icon-controls:before {
50
- content: '\e627';
51
- }
52
-
53
- .editify-icon-video:before {
54
- content: '\e622';
55
- }
56
-
57
- .editify-icon-single:before {
58
- content: '\e63e';
59
- }
60
-
61
- .editify-icon-rotate:before {
62
- content: '\e652';
63
- }
64
-
65
- .editify-icon-delete:before {
66
- content: '\e60f';
67
- }
68
-
69
- .editify-icon-image:before {
70
- content: '\e6ed';
71
- }
72
-
73
- .editify-icon-brush:before {
74
- content: '\e71c';
75
- }
76
-
77
- .editify-icon-check:before {
78
- content: '\e6cc';
79
- }
80
-
81
- .editify-icon-italic:before {
82
- content: '\e69f';
83
- }
84
-
85
- .editify-icon-redo:before {
86
- content: '\e6df';
87
- }
88
-
89
- .editify-icon-undo:before {
90
- content: '\e713';
91
- }
92
-
93
- .editify-icon-code-block:before {
94
- content: '\e620';
95
- }
96
-
97
- .editify-icon-width:before {
98
- content: '\e674';
99
- }
100
-
101
- .editify-icon-edit:before {
102
- content: '\e817';
103
- }
104
-
105
- .editify-icon-table:before {
106
- content: '\e6c4';
107
- }
108
-
109
- .editify-icon-delete-table:before {
110
- content: '\e7a2';
111
- }
112
-
113
- .editify-icon-align-center:before {
114
- content: '\e783';
115
- }
116
-
117
- .editify-icon-align-justify:before {
118
- content: '\e786';
119
- }
120
-
121
- .editify-icon-align-left:before {
122
- content: '\e787';
123
- }
124
-
125
- .editify-icon-bold:before {
126
- content: '\e78d';
127
- }
128
-
129
- .editify-icon-align-right:before {
130
- content: '\e78f';
131
- }
132
-
133
- .editify-icon-font-color:before {
134
- content: '\e792';
135
- }
136
-
137
- .editify-icon-format-clear:before {
138
- content: '\e793';
139
- }
140
-
141
- .editify-icon-indent-increase:before {
142
- content: '\e798';
143
- }
144
-
145
- .editify-icon-quote:before {
146
- content: '\e79b';
147
- }
148
-
149
- .editify-icon-indent-decrease:before {
150
- content: '\e79c';
151
- }
152
-
153
- .editify-icon-list-ordered:before {
154
- content: '\e79f';
155
- }
156
-
157
- .editify-icon-list-unordered:before {
158
- content: '\e7a0';
159
- }
160
-
161
- .editify-icon-link:before {
162
- content: '\e7a1';
163
- }
164
-
165
- .editify-icon-paragraph:before {
166
- content: '\e7a3';
167
- }
168
-
169
- .editify-icon-separator:before {
170
- content: '\e7a4';
171
- }
172
-
173
- .editify-icon-subscript:before {
174
- content: '\e7a5';
175
- }
176
-
177
- .editify-icon-superscript:before {
178
- content: '\e7a6';
179
- }
180
-
181
- .editify-icon-strikethrough:before {
182
- content: '\e7a7';
183
- }
184
-
185
- .editify-icon-underline:before {
186
- content: '\e7a8';
187
- }
188
-
189
- .editify-icon-text-wrap:before {
190
- content: '\e7a9';
191
- }
192
-
193
- .editify-icon-caret-down:before {
194
- content: '\e78c';
195
- }
196
-
197
- .editify-icon-delete-column:before {
198
- content: '\e784';
199
- }
200
-
201
- .editify-icon-delete-row:before {
202
- content: '\e785';
203
- }
204
-
205
- .editify-icon-insert-column-left:before {
206
- content: '\e788';
207
- }
208
-
209
- .editify-icon-insert-column-right:before {
210
- content: '\e789';
211
- }
212
-
213
- .editify-icon-insert-row-bottom:before {
214
- content: '\e78a';
215
- }
216
-
217
- .editify-icon-insert-row-top:before {
218
- content: '\e78b';
219
- }
1
+ .editify-icon-full-screen:before {
2
+ content: '\e62f';
3
+ }
4
+
5
+ .editify-icon-auto-width:before {
6
+ content: '\e61d';
7
+ }
8
+
9
+ .editify-icon-task:before {
10
+ content: '\e605';
11
+ }
12
+
13
+ .editify-icon-source-view:before {
14
+ content: '\e6a1';
15
+ }
16
+
17
+ .editify-icon-upload:before {
18
+ content: '\e637';
19
+ }
20
+
21
+ .editify-icon-remove:before {
22
+ content: '\e852';
23
+ }
24
+
25
+ .editify-icon-code:before {
26
+ content: '\e6a0';
27
+ }
28
+
29
+ .editify-icon-stop:before {
30
+ content: '\e67c';
31
+ }
32
+
33
+ .editify-icon-loop:before {
34
+ content: '\e621';
35
+ }
36
+
37
+ .editify-icon-autoplay:before {
38
+ content: '\e618';
39
+ }
40
+
41
+ .editify-icon-muted:before {
42
+ content: '\ea0f';
43
+ }
44
+
45
+ .editify-icon-unmuted:before {
46
+ content: '\ea11';
47
+ }
48
+
49
+ .editify-icon-controls:before {
50
+ content: '\e627';
51
+ }
52
+
53
+ .editify-icon-video:before {
54
+ content: '\e622';
55
+ }
56
+
57
+ .editify-icon-single:before {
58
+ content: '\e63e';
59
+ }
60
+
61
+ .editify-icon-rotate:before {
62
+ content: '\e652';
63
+ }
64
+
65
+ .editify-icon-delete:before {
66
+ content: '\e60f';
67
+ }
68
+
69
+ .editify-icon-image:before {
70
+ content: '\e6ed';
71
+ }
72
+
73
+ .editify-icon-brush:before {
74
+ content: '\e71c';
75
+ }
76
+
77
+ .editify-icon-check:before {
78
+ content: '\e6cc';
79
+ }
80
+
81
+ .editify-icon-italic:before {
82
+ content: '\e69f';
83
+ }
84
+
85
+ .editify-icon-redo:before {
86
+ content: '\e6df';
87
+ }
88
+
89
+ .editify-icon-undo:before {
90
+ content: '\e713';
91
+ }
92
+
93
+ .editify-icon-code-block:before {
94
+ content: '\e620';
95
+ }
96
+
97
+ .editify-icon-width:before {
98
+ content: '\e674';
99
+ }
100
+
101
+ .editify-icon-edit:before {
102
+ content: '\e817';
103
+ }
104
+
105
+ .editify-icon-table:before {
106
+ content: '\e6c4';
107
+ }
108
+
109
+ .editify-icon-delete-table:before {
110
+ content: '\e7a2';
111
+ }
112
+
113
+ .editify-icon-align-center:before {
114
+ content: '\e783';
115
+ }
116
+
117
+ .editify-icon-align-justify:before {
118
+ content: '\e786';
119
+ }
120
+
121
+ .editify-icon-align-left:before {
122
+ content: '\e787';
123
+ }
124
+
125
+ .editify-icon-bold:before {
126
+ content: '\e78d';
127
+ }
128
+
129
+ .editify-icon-align-right:before {
130
+ content: '\e78f';
131
+ }
132
+
133
+ .editify-icon-font-color:before {
134
+ content: '\e792';
135
+ }
136
+
137
+ .editify-icon-format-clear:before {
138
+ content: '\e793';
139
+ }
140
+
141
+ .editify-icon-indent-increase:before {
142
+ content: '\e798';
143
+ }
144
+
145
+ .editify-icon-quote:before {
146
+ content: '\e79b';
147
+ }
148
+
149
+ .editify-icon-indent-decrease:before {
150
+ content: '\e79c';
151
+ }
152
+
153
+ .editify-icon-list-ordered:before {
154
+ content: '\e79f';
155
+ }
156
+
157
+ .editify-icon-list-unordered:before {
158
+ content: '\e7a0';
159
+ }
160
+
161
+ .editify-icon-link:before {
162
+ content: '\e7a1';
163
+ }
164
+
165
+ .editify-icon-paragraph:before {
166
+ content: '\e7a3';
167
+ }
168
+
169
+ .editify-icon-separator:before {
170
+ content: '\e7a4';
171
+ }
172
+
173
+ .editify-icon-subscript:before {
174
+ content: '\e7a5';
175
+ }
176
+
177
+ .editify-icon-superscript:before {
178
+ content: '\e7a6';
179
+ }
180
+
181
+ .editify-icon-strikethrough:before {
182
+ content: '\e7a7';
183
+ }
184
+
185
+ .editify-icon-underline:before {
186
+ content: '\e7a8';
187
+ }
188
+
189
+ .editify-icon-text-wrap:before {
190
+ content: '\e7a9';
191
+ }
192
+
193
+ .editify-icon-caret-down:before {
194
+ content: '\e78c';
195
+ }
196
+
197
+ .editify-icon-delete-column:before {
198
+ content: '\e784';
199
+ }
200
+
201
+ .editify-icon-delete-row:before {
202
+ content: '\e785';
203
+ }
204
+
205
+ .editify-icon-insert-column-left:before {
206
+ content: '\e788';
207
+ }
208
+
209
+ .editify-icon-insert-column-right:before {
210
+ content: '\e789';
211
+ }
212
+
213
+ .editify-icon-insert-row-bottom:before {
214
+ content: '\e78a';
215
+ }
216
+
217
+ .editify-icon-insert-row-top:before {
218
+ content: '\e78b';
219
+ }
package/src/index.ts CHANGED
@@ -1,32 +1,32 @@
1
- //引入AlexElement
2
- import { AlexElement } from 'alex-editor'
3
- //引入组件
4
- import Editify from './editify/editify.vue'
5
- //引入图标样式
6
- import './icon/iconfont.css'
7
-
8
- import { App } from 'vue'
9
- import { ButtonTypeType, ButtonOptionsItemType, ButtonSelectConfigType, ButtonDisplayConfigType } from './components/button/props'
10
- import { MenuButtonType, MenuSelectButtonType, MenuDisplayButtonType, MenuImageButtonType, MenuVideoButtonType, MenuTableButtonType, MenuCustomButtonType, CodeBlockToolbarType, TextToolbarType, ToolbarConfigType, MenuSequenceType, MenuModeType, MenuConfigType } from './core/tool'
11
- import { InsertImageUploadErrorType } from './components/insertImage/props'
12
- import { InsertVideoUploadErrorType } from './components/insertVideo/props'
13
-
14
- //版本号
15
- const version = '0.1.19'
16
- //安装函数
17
- const install = (app: App) => {
18
- app.component(Editify.name!, Editify)
19
- }
20
- //全局导出的对象
21
- const stdin_default = {
22
- install,
23
- version
24
- }
25
-
26
- //导出一些编辑器操作方法
27
- export * from './core/function'
28
-
29
- //导出类型
30
- export type { ButtonTypeType, ButtonOptionsItemType, ButtonSelectConfigType, ButtonDisplayConfigType, MenuButtonType, MenuSelectButtonType, MenuDisplayButtonType, MenuImageButtonType, MenuVideoButtonType, MenuTableButtonType, MenuCustomButtonType, CodeBlockToolbarType, TextToolbarType, ToolbarConfigType, MenuSequenceType, MenuModeType, MenuConfigType, InsertImageUploadErrorType, InsertVideoUploadErrorType }
31
-
32
- export { stdin_default as default, install, version, Editify, AlexElement }
1
+ //引入AlexElement
2
+ import { AlexElement } from 'alex-editor'
3
+ //引入组件
4
+ import Editify from './editify/editify.vue'
5
+ //引入图标样式
6
+ import './icon/iconfont.css'
7
+
8
+ import { App } from 'vue'
9
+ import { ButtonTypeType, ButtonOptionsItemType, ButtonSelectConfigType, ButtonDisplayConfigType } from './components/button/props'
10
+ import { MenuButtonType, MenuSelectButtonType, MenuDisplayButtonType, MenuImageButtonType, MenuVideoButtonType, MenuTableButtonType, MenuCustomButtonType, CodeBlockToolbarType, TextToolbarType, ToolbarConfigType, MenuSequenceType, MenuModeType, MenuConfigType } from './core/tool'
11
+ import { InsertImageUploadErrorType } from './components/insertImage/props'
12
+ import { InsertVideoUploadErrorType } from './components/insertVideo/props'
13
+
14
+ //版本号
15
+ const version = '0.1.21'
16
+ //安装函数
17
+ const install = (app: App) => {
18
+ app.component(Editify.name!, Editify)
19
+ }
20
+ //全局导出的对象
21
+ const stdin_default = {
22
+ install,
23
+ version
24
+ }
25
+
26
+ //导出一些编辑器操作方法
27
+ export * from './core/function'
28
+
29
+ //导出类型
30
+ export type { ButtonTypeType, ButtonOptionsItemType, ButtonSelectConfigType, ButtonDisplayConfigType, MenuButtonType, MenuSelectButtonType, MenuDisplayButtonType, MenuImageButtonType, MenuVideoButtonType, MenuTableButtonType, MenuCustomButtonType, CodeBlockToolbarType, TextToolbarType, ToolbarConfigType, MenuSequenceType, MenuModeType, MenuConfigType, InsertImageUploadErrorType, InsertVideoUploadErrorType }
31
+
32
+ export { stdin_default as default, install, version, Editify, AlexElement }
@@ -1,88 +1,88 @@
1
- import { ObjectType } from '../core/tool'
2
-
3
- export const en_US: ObjectType = {
4
- textWrapUp: 'Up feed',
5
- textWrapDown: 'Down feed',
6
- insertRowTop: 'Insert row forward',
7
- insertRowBottom: 'Insert row backward',
8
- insertColumnLeft: 'Insert column forward',
9
- insertColumnRight: 'Insert column backward',
10
- deleteRow: 'Delete rows',
11
- deleteColumn: 'Delete column',
12
- deleteTable: 'Delete table',
13
- selectLanguages: 'Select language',
14
- autoRecognize: 'Auto',
15
- linkAddress: 'Link address',
16
- newWindowOpen: 'Open in new window',
17
- removeLink: 'Remove',
18
- viewLink: 'View',
19
- linkUrlEnterPlaceholder: 'Please enter the link address',
20
- linkTextEnterPlaceholder: 'Please enter the link text',
21
- width30: 'Set the width to 30%',
22
- width50: 'Set the width to 50%',
23
- width100: 'Set the width to 100%',
24
- deleteImage: 'Delete image',
25
- autoplay: 'Autoplay',
26
- disabledAutoplay: 'Turn off autoplay',
27
- loop: 'Loop',
28
- disabledLoop: 'Close loop',
29
- muted: 'Mute',
30
- unmuted: 'Unmute',
31
- controls: 'Play control',
32
- deleteVideo: 'Delete video',
33
- heading: 'Heading',
34
- bold: 'Bold',
35
- h1: 'Heading 1',
36
- h2: 'Heading 2',
37
- h3: 'Heading 3',
38
- h4: 'Heading 4',
39
- h5: 'Heading 5',
40
- h6: 'Heading 6',
41
- text: 'Paragraph',
42
- italic: 'Italic',
43
- orderList: 'Ordered list',
44
- unorderList: 'Unordered list',
45
- strikethrough: 'Strikethrough',
46
- underline: 'Underline',
47
- code: 'Inline code',
48
- superscript: 'Superscript',
49
- subscript: 'Subscript',
50
- fontSize: 'Font size',
51
- fontFamily: 'Font family',
52
- defaultFontFamily: 'Default',
53
- foreColor: 'Forecolor',
54
- defaultColor: 'Default color',
55
- backColor: 'Backcolor',
56
- formatClear: 'Clear format',
57
- defaultSize: 'Default',
58
- totalWordCount: 'Total word count: ',
59
- align: 'Alignment mode',
60
- undo: 'Undo',
61
- redo: 'Redo',
62
- quote: 'Quote',
63
- lineHeight: 'Line height',
64
- indent: 'Indent',
65
- insertLink: 'Insert Link',
66
- insertImage: 'Insert Image',
67
- remoteImage: 'Remote',
68
- uploadImage: 'Upload',
69
- imageUrlPlaceholder: 'Please enter the image address',
70
- insert: 'Insert',
71
- insertVideo: 'Insert Video',
72
- remoteVideo: 'Remote',
73
- uploadVideo: 'Upload',
74
- videoUrlPlaceholder: 'Please enter the video address',
75
- insertTable: 'Insert table',
76
- inserCodeBlock: 'Insert code block',
77
- sourceView: 'Code view',
78
- task: 'Task',
79
- indentIncrease: 'Increase indent',
80
- indentDecrease: 'Reduce indent',
81
- alignLeft: 'Align left',
82
- alignCenter: 'Align center',
83
- alignRight: 'Align right',
84
- alignJustify: 'Align justify',
85
- defaultLineHeight: 'Default',
86
- auto: 'auto',
87
- fullScreen: 'Full screen'
88
- }
1
+ import { ObjectType } from '../core/tool'
2
+
3
+ export const en_US: ObjectType = {
4
+ textWrapUp: 'Up feed',
5
+ textWrapDown: 'Down feed',
6
+ insertRowTop: 'Insert row forward',
7
+ insertRowBottom: 'Insert row backward',
8
+ insertColumnLeft: 'Insert column forward',
9
+ insertColumnRight: 'Insert column backward',
10
+ deleteRow: 'Delete rows',
11
+ deleteColumn: 'Delete column',
12
+ deleteTable: 'Delete table',
13
+ selectLanguages: 'Select language',
14
+ autoRecognize: 'Auto',
15
+ linkAddress: 'Link address',
16
+ newWindowOpen: 'Open in new window',
17
+ removeLink: 'Remove',
18
+ viewLink: 'View',
19
+ linkUrlEnterPlaceholder: 'Please enter the link address',
20
+ linkTextEnterPlaceholder: 'Please enter the link text',
21
+ width30: 'Set the width to 30%',
22
+ width50: 'Set the width to 50%',
23
+ width100: 'Set the width to 100%',
24
+ deleteImage: 'Delete image',
25
+ autoplay: 'Autoplay',
26
+ disabledAutoplay: 'Turn off autoplay',
27
+ loop: 'Loop',
28
+ disabledLoop: 'Close loop',
29
+ muted: 'Mute',
30
+ unmuted: 'Unmute',
31
+ controls: 'Play control',
32
+ deleteVideo: 'Delete video',
33
+ heading: 'Heading',
34
+ bold: 'Bold',
35
+ h1: 'Heading 1',
36
+ h2: 'Heading 2',
37
+ h3: 'Heading 3',
38
+ h4: 'Heading 4',
39
+ h5: 'Heading 5',
40
+ h6: 'Heading 6',
41
+ text: 'Paragraph',
42
+ italic: 'Italic',
43
+ orderList: 'Ordered list',
44
+ unorderList: 'Unordered list',
45
+ strikethrough: 'Strikethrough',
46
+ underline: 'Underline',
47
+ code: 'Inline code',
48
+ superscript: 'Superscript',
49
+ subscript: 'Subscript',
50
+ fontSize: 'Font size',
51
+ fontFamily: 'Font family',
52
+ defaultFontFamily: 'Default',
53
+ foreColor: 'Forecolor',
54
+ defaultColor: 'Default color',
55
+ backColor: 'Backcolor',
56
+ formatClear: 'Clear format',
57
+ defaultSize: 'Default',
58
+ totalWordCount: 'Total word count: ',
59
+ align: 'Alignment mode',
60
+ undo: 'Undo',
61
+ redo: 'Redo',
62
+ quote: 'Quote',
63
+ lineHeight: 'Line height',
64
+ indent: 'Indent',
65
+ insertLink: 'Insert Link',
66
+ insertImage: 'Insert Image',
67
+ remoteImage: 'Remote',
68
+ uploadImage: 'Upload',
69
+ imageUrlPlaceholder: 'Please enter the image address',
70
+ insert: 'Insert',
71
+ insertVideo: 'Insert Video',
72
+ remoteVideo: 'Remote',
73
+ uploadVideo: 'Upload',
74
+ videoUrlPlaceholder: 'Please enter the video address',
75
+ insertTable: 'Insert table',
76
+ inserCodeBlock: 'Insert code block',
77
+ sourceView: 'Code view',
78
+ task: 'Task',
79
+ indentIncrease: 'Increase indent',
80
+ indentDecrease: 'Reduce indent',
81
+ alignLeft: 'Align left',
82
+ alignCenter: 'Align center',
83
+ alignRight: 'Align right',
84
+ alignJustify: 'Align justify',
85
+ defaultLineHeight: 'Default',
86
+ auto: 'auto',
87
+ fullScreen: 'Full screen'
88
+ }