suneditor 3.0.0-beta.3 → 3.0.0-beta.30

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 (241) hide show
  1. package/CONTRIBUTING.md +8 -8
  2. package/README.md +44 -49
  3. package/dist/suneditor.min.css +1 -1
  4. package/dist/suneditor.min.js +1 -1
  5. package/package.json +95 -53
  6. package/src/assets/design/color.css +2 -2
  7. package/src/assets/design/size.css +2 -0
  8. package/src/assets/icons/defaultIcons.js +16 -1
  9. package/src/assets/suneditor-contents.css +9 -8
  10. package/src/assets/suneditor.css +29 -26
  11. package/src/core/{section → base}/actives.js +20 -12
  12. package/src/core/base/history.js +4 -4
  13. package/src/core/class/char.js +10 -10
  14. package/src/core/class/component.js +146 -57
  15. package/src/core/class/format.js +94 -2458
  16. package/src/core/class/html.js +187 -129
  17. package/src/core/class/inline.js +1853 -0
  18. package/src/core/class/listFormat.js +582 -0
  19. package/src/core/class/menu.js +14 -3
  20. package/src/core/class/nodeTransform.js +9 -14
  21. package/src/core/class/offset.js +162 -197
  22. package/src/core/class/selection.js +137 -34
  23. package/src/core/class/toolbar.js +73 -52
  24. package/src/core/class/ui.js +11 -11
  25. package/src/core/class/viewer.js +56 -55
  26. package/src/core/config/context.js +122 -0
  27. package/src/core/config/frameContext.js +204 -0
  28. package/src/core/config/options.js +639 -0
  29. package/src/core/editor.js +181 -108
  30. package/src/core/event/actions/index.js +229 -0
  31. package/src/core/event/effects/common.registry.js +60 -0
  32. package/src/core/event/effects/keydown.registry.js +551 -0
  33. package/src/core/event/effects/ruleHelpers.js +145 -0
  34. package/src/core/{base → event}/eventManager.js +119 -201
  35. package/src/core/event/executor.js +21 -0
  36. package/src/core/{base/eventHandlers → event/handlers}/handler_toolbar.js +4 -4
  37. package/src/core/{base/eventHandlers → event/handlers}/handler_ww_dragDrop.js +2 -2
  38. package/src/core/event/handlers/handler_ww_input.js +77 -0
  39. package/src/core/event/handlers/handler_ww_key.js +228 -0
  40. package/src/core/{base/eventHandlers → event/handlers}/handler_ww_mouse.js +3 -3
  41. package/src/core/event/ports.js +211 -0
  42. package/src/core/event/reducers/keydown.reducer.js +89 -0
  43. package/src/core/event/rules/keydown.rule.arrow.js +54 -0
  44. package/src/core/event/rules/keydown.rule.backspace.js +202 -0
  45. package/src/core/event/rules/keydown.rule.delete.js +126 -0
  46. package/src/core/event/rules/keydown.rule.enter.js +144 -0
  47. package/src/core/event/rules/keydown.rule.tab.js +29 -0
  48. package/src/core/section/constructor.js +79 -388
  49. package/src/core/section/documentType.js +47 -26
  50. package/src/core/util/instanceCheck.js +59 -0
  51. package/src/editorInjector/_classes.js +4 -0
  52. package/src/editorInjector/_core.js +17 -7
  53. package/src/editorInjector/index.js +10 -2
  54. package/src/events.js +6 -0
  55. package/src/helper/clipboard.js +24 -10
  56. package/src/helper/converter.js +17 -12
  57. package/src/helper/dom/domCheck.js +22 -3
  58. package/src/helper/dom/domQuery.js +91 -45
  59. package/src/helper/dom/domUtils.js +93 -19
  60. package/src/helper/dom/index.js +4 -0
  61. package/src/helper/env.js +11 -7
  62. package/src/helper/keyCodeMap.js +4 -3
  63. package/src/langs/ckb.js +1 -1
  64. package/src/langs/cs.js +1 -1
  65. package/src/langs/da.js +1 -1
  66. package/src/langs/de.js +1 -1
  67. package/src/langs/en.js +1 -1
  68. package/src/langs/es.js +1 -1
  69. package/src/langs/fa.js +1 -1
  70. package/src/langs/fr.js +1 -1
  71. package/src/langs/he.js +1 -1
  72. package/src/langs/hu.js +1 -1
  73. package/src/langs/it.js +1 -1
  74. package/src/langs/ja.js +1 -1
  75. package/src/langs/km.js +1 -1
  76. package/src/langs/ko.js +1 -1
  77. package/src/langs/lv.js +1 -1
  78. package/src/langs/nl.js +1 -1
  79. package/src/langs/pl.js +1 -1
  80. package/src/langs/pt_br.js +10 -10
  81. package/src/langs/ro.js +1 -1
  82. package/src/langs/ru.js +1 -1
  83. package/src/langs/se.js +1 -1
  84. package/src/langs/tr.js +1 -1
  85. package/src/langs/uk.js +1 -1
  86. package/src/langs/ur.js +1 -1
  87. package/src/langs/zh_cn.js +1 -1
  88. package/src/modules/ApiManager.js +25 -18
  89. package/src/modules/Browser.js +52 -61
  90. package/src/modules/ColorPicker.js +37 -38
  91. package/src/modules/Controller.js +85 -79
  92. package/src/modules/Figure.js +275 -187
  93. package/src/modules/FileManager.js +86 -92
  94. package/src/modules/HueSlider.js +67 -35
  95. package/src/modules/Modal.js +84 -77
  96. package/src/modules/ModalAnchorEditor.js +62 -79
  97. package/src/modules/SelectMenu.js +89 -86
  98. package/src/plugins/browser/audioGallery.js +9 -5
  99. package/src/plugins/browser/fileBrowser.js +10 -6
  100. package/src/plugins/browser/fileGallery.js +9 -5
  101. package/src/plugins/browser/imageGallery.js +9 -5
  102. package/src/plugins/browser/videoGallery.js +11 -6
  103. package/src/plugins/command/blockquote.js +1 -0
  104. package/src/plugins/command/exportPDF.js +11 -8
  105. package/src/plugins/command/fileUpload.js +41 -29
  106. package/src/plugins/command/list_bulleted.js +2 -1
  107. package/src/plugins/command/list_numbered.js +2 -1
  108. package/src/plugins/dropdown/align.js +8 -2
  109. package/src/plugins/dropdown/backgroundColor.js +19 -11
  110. package/src/plugins/dropdown/font.js +15 -9
  111. package/src/plugins/dropdown/fontColor.js +19 -11
  112. package/src/plugins/dropdown/formatBlock.js +7 -2
  113. package/src/plugins/dropdown/hr.js +7 -3
  114. package/src/plugins/dropdown/layout.js +6 -2
  115. package/src/plugins/dropdown/lineHeight.js +8 -3
  116. package/src/plugins/dropdown/list.js +2 -1
  117. package/src/plugins/dropdown/paragraphStyle.js +15 -11
  118. package/src/plugins/dropdown/{table.js → table/index.js} +514 -362
  119. package/src/plugins/dropdown/template.js +6 -2
  120. package/src/plugins/dropdown/textStyle.js +7 -3
  121. package/src/plugins/field/mention.js +33 -27
  122. package/src/plugins/input/fontSize.js +44 -37
  123. package/src/plugins/input/pageNavigator.js +3 -2
  124. package/src/plugins/modal/audio.js +90 -85
  125. package/src/plugins/modal/drawing.js +58 -66
  126. package/src/plugins/modal/embed.js +193 -180
  127. package/src/plugins/modal/image.js +441 -439
  128. package/src/plugins/modal/link.js +31 -8
  129. package/src/plugins/modal/math.js +23 -22
  130. package/src/plugins/modal/video.js +233 -230
  131. package/src/plugins/popup/anchor.js +24 -18
  132. package/src/suneditor.js +69 -24
  133. package/src/typedef.js +42 -19
  134. package/types/assets/icons/defaultIcons.d.ts +8 -0
  135. package/types/core/class/char.d.ts +1 -1
  136. package/types/core/class/component.d.ts +29 -7
  137. package/types/core/class/format.d.ts +4 -354
  138. package/types/core/class/html.d.ts +13 -4
  139. package/types/core/class/inline.d.ts +263 -0
  140. package/types/core/class/listFormat.d.ts +135 -0
  141. package/types/core/class/menu.d.ts +10 -2
  142. package/types/core/class/offset.d.ts +24 -26
  143. package/types/core/class/selection.d.ts +2 -0
  144. package/types/core/class/toolbar.d.ts +24 -11
  145. package/types/core/class/ui.d.ts +1 -1
  146. package/types/core/class/viewer.d.ts +1 -1
  147. package/types/core/config/context.d.ts +157 -0
  148. package/types/core/config/frameContext.d.ts +367 -0
  149. package/types/core/config/options.d.ts +1119 -0
  150. package/types/core/editor.d.ts +101 -66
  151. package/types/core/event/actions/index.d.ts +47 -0
  152. package/types/core/event/effects/common.registry.d.ts +50 -0
  153. package/types/core/event/effects/keydown.registry.d.ts +73 -0
  154. package/types/core/event/effects/ruleHelpers.d.ts +31 -0
  155. package/types/core/{base → event}/eventManager.d.ts +15 -46
  156. package/types/core/event/executor.d.ts +6 -0
  157. package/types/core/event/handlers/handler_ww_input.d.ts +41 -0
  158. package/types/core/{base/eventHandlers/handler_ww_key_input.d.ts → event/handlers/handler_ww_key.d.ts} +4 -6
  159. package/types/core/event/ports.d.ts +255 -0
  160. package/types/core/event/reducers/keydown.reducer.d.ts +75 -0
  161. package/types/core/event/rules/keydown.rule.arrow.d.ts +8 -0
  162. package/types/core/event/rules/keydown.rule.backspace.d.ts +9 -0
  163. package/types/core/event/rules/keydown.rule.delete.d.ts +9 -0
  164. package/types/core/event/rules/keydown.rule.enter.d.ts +9 -0
  165. package/types/core/event/rules/keydown.rule.tab.d.ts +9 -0
  166. package/types/core/section/constructor.d.ts +101 -631
  167. package/types/core/section/documentType.d.ts +14 -4
  168. package/types/core/util/instanceCheck.d.ts +50 -0
  169. package/types/editorInjector/_classes.d.ts +4 -0
  170. package/types/editorInjector/_core.d.ts +17 -7
  171. package/types/editorInjector/index.d.ts +10 -2
  172. package/types/events.d.ts +1 -0
  173. package/types/helper/clipboard.d.ts +2 -2
  174. package/types/helper/converter.d.ts +6 -9
  175. package/types/helper/dom/domCheck.d.ts +7 -0
  176. package/types/helper/dom/domQuery.d.ts +19 -8
  177. package/types/helper/dom/domUtils.d.ts +24 -2
  178. package/types/helper/dom/index.d.ts +86 -1
  179. package/types/helper/env.d.ts +6 -1
  180. package/types/helper/index.d.ts +7 -1
  181. package/types/helper/keyCodeMap.d.ts +3 -3
  182. package/types/index.d.ts +23 -117
  183. package/types/langs/index.d.ts +2 -2
  184. package/types/modules/ApiManager.d.ts +1 -8
  185. package/types/modules/Browser.d.ts +4 -62
  186. package/types/modules/ColorPicker.d.ts +4 -21
  187. package/types/modules/Controller.d.ts +8 -64
  188. package/types/modules/Figure.d.ts +54 -50
  189. package/types/modules/FileManager.d.ts +1 -13
  190. package/types/modules/HueSlider.d.ts +13 -3
  191. package/types/modules/Modal.d.ts +0 -43
  192. package/types/modules/ModalAnchorEditor.d.ts +0 -73
  193. package/types/modules/SelectMenu.d.ts +0 -85
  194. package/types/modules/index.d.ts +3 -3
  195. package/types/plugins/browser/audioGallery.d.ts +29 -18
  196. package/types/plugins/browser/fileBrowser.d.ts +38 -27
  197. package/types/plugins/browser/fileGallery.d.ts +29 -18
  198. package/types/plugins/browser/imageGallery.d.ts +24 -16
  199. package/types/plugins/browser/videoGallery.d.ts +29 -18
  200. package/types/plugins/command/blockquote.d.ts +1 -0
  201. package/types/plugins/command/exportPDF.d.ts +18 -18
  202. package/types/plugins/command/fileUpload.d.ts +65 -45
  203. package/types/plugins/command/list_bulleted.d.ts +1 -0
  204. package/types/plugins/command/list_numbered.d.ts +1 -0
  205. package/types/plugins/dropdown/align.d.ts +13 -8
  206. package/types/plugins/dropdown/backgroundColor.d.ts +30 -19
  207. package/types/plugins/dropdown/font.d.ts +13 -12
  208. package/types/plugins/dropdown/fontColor.d.ts +30 -19
  209. package/types/plugins/dropdown/formatBlock.d.ts +13 -8
  210. package/types/plugins/dropdown/hr.d.ts +15 -11
  211. package/types/plugins/dropdown/layout.d.ts +15 -11
  212. package/types/plugins/dropdown/lineHeight.d.ts +16 -11
  213. package/types/plugins/dropdown/list.d.ts +1 -0
  214. package/types/plugins/dropdown/paragraphStyle.d.ts +31 -27
  215. package/types/plugins/dropdown/table/index.d.ts +582 -0
  216. package/types/plugins/dropdown/table.d.ts +41 -86
  217. package/types/plugins/dropdown/template.d.ts +15 -11
  218. package/types/plugins/dropdown/textStyle.d.ts +19 -11
  219. package/types/plugins/field/mention.d.ts +58 -56
  220. package/types/plugins/index.d.ts +38 -38
  221. package/types/plugins/input/fontSize.d.ts +46 -50
  222. package/types/plugins/modal/audio.d.ts +26 -56
  223. package/types/plugins/modal/drawing.d.ts +0 -85
  224. package/types/plugins/modal/embed.d.ts +15 -79
  225. package/types/plugins/modal/image.d.ts +24 -136
  226. package/types/plugins/modal/link.d.ts +34 -15
  227. package/types/plugins/modal/math.d.ts +0 -16
  228. package/types/plugins/modal/video.d.ts +17 -86
  229. package/types/plugins/popup/anchor.d.ts +1 -8
  230. package/types/suneditor.d.ts +70 -19
  231. package/types/typedef.d.ts +60 -46
  232. package/src/core/base/eventHandlers/handler_ww_key_input.js +0 -1200
  233. package/src/core/section/context.js +0 -102
  234. package/types/core/section/context.d.ts +0 -45
  235. package/types/langs/_Lang.d.ts +0 -194
  236. /package/src/core/{base/eventHandlers → event/handlers}/handler_ww_clipboard.js +0 -0
  237. /package/types/core/{section → base}/actives.d.ts +0 -0
  238. /package/types/core/{base/eventHandlers → event/handlers}/handler_toolbar.d.ts +0 -0
  239. /package/types/core/{base/eventHandlers → event/handlers}/handler_ww_clipboard.d.ts +0 -0
  240. /package/types/core/{base/eventHandlers → event/handlers}/handler_ww_dragDrop.d.ts +0 -0
  241. /package/types/core/{base/eventHandlers → event/handlers}/handler_ww_mouse.d.ts +0 -0
@@ -1,102 +0,0 @@
1
- import { get as getNumber } from '../../helper/numbers';
2
-
3
- /**
4
- * @description Elements and variables you should have
5
- * @param {{target: Element, key: *, options: __se__FrameOptions}} editorTarget Target textarea
6
- * @param {HTMLElement} top Editor top area
7
- * @param {HTMLElement} wwFrame Editor wysiwyg frame
8
- * @param {HTMLElement} codeWrapper Editor code view wrapper
9
- * @param {HTMLElement} codeFrame Editor code view frame
10
- * @param {{inner: HTMLElement, page: HTMLElement, pageMirror: HTMLElement}} documentTypeInner Document type elements
11
- * @param {?HTMLElement} statusbar Editor statusbar
12
- * @param {*} key root key
13
- * @returns {__se__FrameContext}
14
- */
15
- export function CreateFrameContext(editorTarget, top, wwFrame, codeWrapper, codeFrame, statusbar, documentTypeInner, key) {
16
- const m = new Map([
17
- ['key', key],
18
- ['options', editorTarget.options],
19
- ['originElement', editorTarget.target],
20
- ['topArea', top],
21
- ['container', top.querySelector('.se-container')],
22
- ['wrapper', top.querySelector('.se-wrapper')],
23
- ['documentTypeInner', documentTypeInner.inner],
24
- ['documentTypePage', documentTypeInner.page],
25
- ['documentTypePageMirror', documentTypeInner.pageMirror],
26
- ['wysiwygFrame', wwFrame],
27
- ['wysiwyg', wwFrame], // options.iframe ? wwFrame.contentDocument.body : wwFrame
28
- ['codeWrapper', codeWrapper],
29
- ['code', codeFrame],
30
- ['codeNumbers', /** @type {HTMLTextAreaElement} */ (codeWrapper?.querySelector('.se-code-view-line'))],
31
- ['lineBreaker_t', top.querySelector('.se-line-breaker-component-t')],
32
- ['lineBreaker_b', top.querySelector('.se-line-breaker-component-b')],
33
- ['_stickyDummy', top.querySelector('.se-toolbar-sticky-dummy')],
34
- ['_toolbarShadow', top.querySelector('.se-toolbar-shadow')],
35
- ['_minHeight', getNumber(wwFrame.style.minHeight || '65', 0)],
36
- ['isCodeView', false],
37
- ['isFullScreen', false],
38
- ['isReadOnly', false],
39
- ['isDisabled', false],
40
- ['isChanged', -1],
41
- ['historyIndex', -1],
42
- ['savedIndex', -1],
43
- ['eventwysiwyg', null]
44
- ]);
45
-
46
- if (statusbar) UpdateStatusbarContext(statusbar, m);
47
-
48
- const placeholder = top.querySelector('.se-placeholder');
49
- if (placeholder) m.set('placeholder', placeholder);
50
-
51
- return m;
52
- }
53
-
54
- /**
55
- * @description Update statusbar context
56
- * @param {HTMLElement} statusbar Statusbar element
57
- * @param {__se__FrameContext} mapper FrameContext map
58
- */
59
- export function UpdateStatusbarContext(statusbar, mapper) {
60
- statusbar ? mapper.set('statusbar', statusbar) : mapper.delete('statusbar');
61
- const navigation = statusbar ? statusbar.querySelector('.se-navigation') : null;
62
- const charWrapper = statusbar ? statusbar.querySelector('.se-char-counter-wrapper') : null;
63
- const charCounter = statusbar ? statusbar.querySelector('.se-char-counter-wrapper .se-char-counter') : null;
64
- navigation ? mapper.set('navigation', navigation) : mapper.delete('navigation');
65
- charWrapper ? mapper.set('charWrapper', charWrapper) : mapper.delete('charWrapper');
66
- charCounter ? mapper.set('charCounter', charCounter) : mapper.delete('charCounter');
67
- }
68
-
69
- /**
70
- * @description Common elements and variables you should have
71
- * @param {HTMLElement} toolbar Toolbar frame
72
- * @param {HTMLElement|null} toolbarContainer Toolbar container
73
- * @param {HTMLElement} menuTray menu tray
74
- * @param {HTMLElement|null} subbar sub toolbar
75
- * @returns {__se__Context}
76
- */
77
- export function CreateContext(toolbar, toolbarContainer, menuTray, subbar, statusbarContainer) {
78
- const m = new Map([
79
- ['menuTray', menuTray],
80
- ['toolbar.main', toolbar],
81
- ['toolbar.buttonTray', toolbar.querySelector('.se-btn-tray')],
82
- ['toolbar._arrow', toolbar.querySelector('.se-arrow')]
83
- ]);
84
-
85
- if (subbar) {
86
- m.set('toolbar.sub.main', subbar);
87
- m.set('toolbar.sub.buttonTray', subbar.querySelector('.se-btn-tray'));
88
- m.set('toolbar.sub._arrow', subbar.querySelector('.se-arrow'));
89
- m.set('toolbar.sub._wrapper', subbar.parentElement.parentElement);
90
- }
91
-
92
- if (toolbarContainer) {
93
- m.set('toolbar._wrapper', toolbarContainer.querySelector('.sun-editor'));
94
- m.set('_stickyDummy', toolbarContainer.querySelector('.se-toolbar-sticky-dummy'));
95
- }
96
-
97
- if (statusbarContainer) {
98
- m.set('statusbar._wrapper', statusbarContainer.querySelector('.sun-editor'));
99
- }
100
-
101
- return m;
102
- }
@@ -1,45 +0,0 @@
1
- /**
2
- * @description Elements and variables you should have
3
- * @param {{target: Element, key: *, options: __se__FrameOptions}} editorTarget Target textarea
4
- * @param {HTMLElement} top Editor top area
5
- * @param {HTMLElement} wwFrame Editor wysiwyg frame
6
- * @param {HTMLElement} codeWrapper Editor code view wrapper
7
- * @param {HTMLElement} codeFrame Editor code view frame
8
- * @param {{inner: HTMLElement, page: HTMLElement, pageMirror: HTMLElement}} documentTypeInner Document type elements
9
- * @param {?HTMLElement} statusbar Editor statusbar
10
- * @param {*} key root key
11
- * @returns {__se__FrameContext}
12
- */
13
- export function CreateFrameContext(
14
- editorTarget: {
15
- target: Element;
16
- key: any;
17
- options: __se__FrameOptions;
18
- },
19
- top: HTMLElement,
20
- wwFrame: HTMLElement,
21
- codeWrapper: HTMLElement,
22
- codeFrame: HTMLElement,
23
- statusbar: HTMLElement | null,
24
- documentTypeInner: {
25
- inner: HTMLElement;
26
- page: HTMLElement;
27
- pageMirror: HTMLElement;
28
- },
29
- key: any
30
- ): __se__FrameContext;
31
- /**
32
- * @description Update statusbar context
33
- * @param {HTMLElement} statusbar Statusbar element
34
- * @param {__se__FrameContext} mapper FrameContext map
35
- */
36
- export function UpdateStatusbarContext(statusbar: HTMLElement, mapper: __se__FrameContext): void;
37
- /**
38
- * @description Common elements and variables you should have
39
- * @param {HTMLElement} toolbar Toolbar frame
40
- * @param {HTMLElement|null} toolbarContainer Toolbar container
41
- * @param {HTMLElement} menuTray menu tray
42
- * @param {HTMLElement|null} subbar sub toolbar
43
- * @returns {__se__Context}
44
- */
45
- export function CreateContext(toolbar: HTMLElement, toolbarContainer: HTMLElement | null, menuTray: HTMLElement, subbar: HTMLElement | null, statusbarContainer: any): __se__Context;
@@ -1,194 +0,0 @@
1
- export interface _Lang {
2
- code: string;
3
- align: string;
4
- alignBottom: string;
5
- alignCenter: string;
6
- alignJustify: string;
7
- alignLeft: string;
8
- alignMiddle: string;
9
- alignRight: string;
10
- alignTop: string;
11
- anchor: string;
12
- asBlock: string;
13
- asInline: string;
14
- asLink: string;
15
- audio: string;
16
- audioGallery: string;
17
- audio_modal_file: string;
18
- audio_modal_title: string;
19
- audio_modal_url: string;
20
- autoSize: string;
21
- backgroundColor: string;
22
- basic: string;
23
- blockStyle: string;
24
- bold: string;
25
- border: string;
26
- border_all: string;
27
- border_inside: string;
28
- border_horizontal: string;
29
- border_vertical: string;
30
- border_outside: string;
31
- border_left: string;
32
- border_top: string;
33
- border_right: string;
34
- border_bottom: string;
35
- border_none: string;
36
- bulletedList: string;
37
- cancel: string;
38
- caption: string;
39
- cellProperties: string;
40
- center: string;
41
- close: string;
42
- codeView: string;
43
- color: string;
44
- colorPicker: string;
45
- column: string;
46
- comment: string;
47
- commentAdd: string;
48
- commentShow: string;
49
- copy: string;
50
- copyFormat: string;
51
- cut: string;
52
- default: string;
53
- deleteColumn: string;
54
- deleteRow: string;
55
- dir_ltr: string;
56
- dir_rtl: string;
57
- download: string;
58
- drag: string;
59
- drawing: string;
60
- drawing_modal_title: string;
61
- edit: string;
62
- embed: string;
63
- embed_modal_title: string;
64
- embed_modal_source: string;
65
- exportPDF: string;
66
- exportWord: string;
67
- find: string;
68
- decrease: string;
69
- increase: string;
70
- fileBrowser: string;
71
- fileGallery: string;
72
- fileUpload: string;
73
- fixedColumnWidth: string;
74
- font: string;
75
- fontColor: string;
76
- fontSize: string;
77
- formats: string;
78
- fullScreen: string;
79
- height: string;
80
- horizontalLine: string;
81
- horizontalSplit: string;
82
- hr_dashed: string;
83
- hr_dotted: string;
84
- hr_solid: string;
85
- id: string;
86
- image: string;
87
- imageGallery: string;
88
- image_modal_altText: string;
89
- image_modal_file: string;
90
- image_modal_title: string;
91
- image_modal_url: string;
92
- importWord: string;
93
- indent: string;
94
- inlineStyle: string;
95
- insertColumnAfter: string;
96
- insertColumnBefore: string;
97
- insertRowAbove: string;
98
- insertRowBelow: string;
99
- insertLine: string;
100
- italic: string;
101
- layout: string;
102
- left: string;
103
- lineHeight: string;
104
- link: string;
105
- link_modal_bookmark: string;
106
- link_modal_downloadLinkCheck: string;
107
- link_modal_newWindowCheck: string;
108
- link_modal_text: string;
109
- link_modal_title: string;
110
- link_modal_url: string;
111
- link_modal_relAttribute: string;
112
- list: string;
113
- math: string;
114
- math_modal_fontSizeLabel: string;
115
- math_modal_inputLabel: string;
116
- math_modal_previewLabel: string;
117
- math_modal_title: string;
118
- maxSize: string;
119
- mediaGallery: string;
120
- mention: string;
121
- menu_bordered: string;
122
- menu_code: string;
123
- menu_neon: string;
124
- menu_shadow: string;
125
- menu_spaced: string;
126
- menu_translucent: string;
127
- mergeCells: string;
128
- minSize: string;
129
- mirrorHorizontal: string;
130
- mirrorVertical: string;
131
- newDocument: string;
132
- numberedList: string;
133
- outdent: string;
134
- pageBreak: string;
135
- pageDown: string;
136
- pageNumber: string;
137
- pageUp: string;
138
- paragraphStyle: string;
139
- preview: string;
140
- print: string;
141
- proportion: string;
142
- ratio: string;
143
- redo: string;
144
- remove: string;
145
- removeFormat: string;
146
- replace: string;
147
- replaceAll: string;
148
- resize100: string;
149
- resize25: string;
150
- resize50: string;
151
- resize75: string;
152
- resize: string;
153
- revert: string;
154
- revisionHistory: string;
155
- right: string;
156
- rotateLeft: string;
157
- rotateRight: string;
158
- row: string;
159
- save: string;
160
- search: string;
161
- selectAll: string;
162
- showBlocks: string;
163
- size: string;
164
- splitCells: string;
165
- strike: string;
166
- submitButton: string;
167
- subscript: string;
168
- superscript: string;
169
- table: string;
170
- tableHeader: string;
171
- tableProperties: string;
172
- tags: string;
173
- tag_blockquote: string;
174
- tag_div: string;
175
- tag_h: string;
176
- tag_p: string;
177
- tag_pre: string;
178
- template: string;
179
- textStyle: string;
180
- title: string;
181
- underline: string;
182
- undo: string;
183
- unmergeCells: string;
184
- unlink: string;
185
- verticalSplit: string;
186
- video: string;
187
- videoGallery: string;
188
- video_modal_file: string;
189
- video_modal_title: string;
190
- video_modal_url: string;
191
- width: string;
192
- message_copy_success: string;
193
- message_copy_fail: string;
194
- }
File without changes