@licium/editor 3.2.3

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 (265) hide show
  1. package/README.md +176 -0
  2. package/dist/esm/i18n/__test__/integration/ui/layout.spec.d.ts +1 -0
  3. package/dist/esm/i18n/__test__/integration/ui/toolbar.spec.d.ts +1 -0
  4. package/dist/esm/i18n/__test__/integration/vdom/render.spec.d.ts +1 -0
  5. package/dist/esm/i18n/__test__/integration/widget/widgetNode.spec.d.ts +1 -0
  6. package/dist/esm/i18n/__test__/unit/convertor.spec.d.ts +1 -0
  7. package/dist/esm/i18n/__test__/unit/dom.spec.d.ts +1 -0
  8. package/dist/esm/i18n/__test__/unit/editor.spec.d.ts +1 -0
  9. package/dist/esm/i18n/__test__/unit/eventEmitter.spec.d.ts +1 -0
  10. package/dist/esm/i18n/__test__/unit/helper/common.spec.d.ts +1 -0
  11. package/dist/esm/i18n/__test__/unit/helper/image.spec.d.ts +1 -0
  12. package/dist/esm/i18n/__test__/unit/linkXss.spec.d.ts +1 -0
  13. package/dist/esm/i18n/__test__/unit/markdown/keymap.spec.d.ts +1 -0
  14. package/dist/esm/i18n/__test__/unit/markdown/mdCommand.spec.d.ts +1 -0
  15. package/dist/esm/i18n/__test__/unit/markdown/mdEditor.spec.d.ts +1 -0
  16. package/dist/esm/i18n/__test__/unit/markdown/mdPreview.spec.d.ts +1 -0
  17. package/dist/esm/i18n/__test__/unit/markdown/smartTask.spec.d.ts +1 -0
  18. package/dist/esm/i18n/__test__/unit/markdown/syntaxHighlight.spec.d.ts +1 -0
  19. package/dist/esm/i18n/__test__/unit/markdown/util.d.ts +7 -0
  20. package/dist/esm/i18n/__test__/unit/repro_3296.spec.d.ts +1 -0
  21. package/dist/esm/i18n/__test__/unit/sanitizer.spec.d.ts +1 -0
  22. package/dist/esm/i18n/__test__/unit/utils/escape.spec.d.ts +1 -0
  23. package/dist/esm/i18n/__test__/unit/utils/pollution.spec.d.ts +1 -0
  24. package/dist/esm/i18n/__test__/unit/vdom/template.spec.d.ts +1 -0
  25. package/dist/esm/i18n/__test__/unit/viewer.spec.d.ts +1 -0
  26. package/dist/esm/i18n/__test__/unit/wysiwyg/customBlock.spec.d.ts +1 -0
  27. package/dist/esm/i18n/__test__/unit/wysiwyg/helper/pasteMsoList.spec.d.ts +1 -0
  28. package/dist/esm/i18n/__test__/unit/wysiwyg/imageInsertion.spec.d.ts +1 -0
  29. package/dist/esm/i18n/__test__/unit/wysiwyg/keymap.spec.d.ts +1 -0
  30. package/dist/esm/i18n/__test__/unit/wysiwyg/wwCommand.spec.d.ts +1 -0
  31. package/dist/esm/i18n/__test__/unit/wysiwyg/wwEditor.spec.d.ts +1 -0
  32. package/dist/esm/i18n/__test__/unit/wysiwyg/wwTableCommand.spec.d.ts +1 -0
  33. package/dist/esm/i18n/__test__/unit/wysiwyg/wwToDOMAdaptor.spec.d.ts +1 -0
  34. package/dist/esm/i18n/__test__/unit/xssSanitizer.spec.d.ts +1 -0
  35. package/dist/esm/i18n/ar.d.ts +1 -0
  36. package/dist/esm/i18n/ar.js +63 -0
  37. package/dist/esm/i18n/base.d.ts +60 -0
  38. package/dist/esm/i18n/commands/commandManager.d.ts +16 -0
  39. package/dist/esm/i18n/commands/defaultCommands.d.ts +2 -0
  40. package/dist/esm/i18n/commands/wwCommands.d.ts +2 -0
  41. package/dist/esm/i18n/convertors/convertor.d.ts +19 -0
  42. package/dist/esm/i18n/convertors/toMarkdown/toMdConvertorState.d.ts +30 -0
  43. package/dist/esm/i18n/convertors/toMarkdown/toMdConvertors.d.ts +7 -0
  44. package/dist/esm/i18n/convertors/toMarkdown/toMdNodeTypeWriters.d.ts +8 -0
  45. package/dist/esm/i18n/convertors/toWysiwyg/htmlToWwConvertors.d.ts +7 -0
  46. package/dist/esm/i18n/convertors/toWysiwyg/toWwConvertorState.d.ts +23 -0
  47. package/dist/esm/i18n/convertors/toWysiwyg/toWwConvertors.d.ts +4 -0
  48. package/dist/esm/i18n/cs-cz.d.ts +1 -0
  49. package/dist/esm/i18n/cs-cz.js +63 -0
  50. package/dist/esm/i18n/de-de.d.ts +1 -0
  51. package/dist/esm/i18n/de-de.js +63 -0
  52. package/dist/esm/i18n/editor.d.ts +36 -0
  53. package/dist/esm/i18n/editorCore.d.ts +330 -0
  54. package/dist/esm/i18n/en-us.d.ts +1 -0
  55. package/dist/esm/i18n/en-us.js +63 -0
  56. package/dist/esm/i18n/es-es.d.ts +1 -0
  57. package/dist/esm/i18n/es-es.js +63 -0
  58. package/dist/esm/i18n/esm/index.d.ts +5 -0
  59. package/dist/esm/i18n/esm/indexViewer.d.ts +2 -0
  60. package/dist/esm/i18n/event/eventEmitter.d.ts +73 -0
  61. package/dist/esm/i18n/fi-fi.d.ts +1 -0
  62. package/dist/esm/i18n/fi-fi.js +63 -0
  63. package/dist/esm/i18n/fr-fr.d.ts +1 -0
  64. package/dist/esm/i18n/fr-fr.js +63 -0
  65. package/dist/esm/i18n/gl-es.d.ts +5 -0
  66. package/dist/esm/i18n/gl-es.js +63 -0
  67. package/dist/esm/i18n/helper/image.d.ts +4 -0
  68. package/dist/esm/i18n/helper/manipulation.d.ts +16 -0
  69. package/dist/esm/i18n/helper/plugin.d.ts +3 -0
  70. package/dist/esm/i18n/hr-hr.d.ts +1 -0
  71. package/dist/esm/i18n/hr-hr.js +63 -0
  72. package/dist/esm/i18n/i18n.d.ts +20 -0
  73. package/dist/esm/i18n/i18n.js +217 -0
  74. package/dist/esm/i18n/index.d.ts +10 -0
  75. package/dist/esm/i18n/indexEditorOnlyStyle.d.ts +3 -0
  76. package/dist/esm/i18n/indexViewer.d.ts +3 -0
  77. package/dist/esm/i18n/it-it.d.ts +1 -0
  78. package/dist/esm/i18n/it-it.js +63 -0
  79. package/dist/esm/i18n/ja-jp.d.ts +1 -0
  80. package/dist/esm/i18n/ja-jp.js +63 -0
  81. package/dist/esm/i18n/ko-kr.d.ts +1 -0
  82. package/dist/esm/i18n/ko-kr.js +63 -0
  83. package/dist/esm/i18n/markdown/helper/list.d.ts +55 -0
  84. package/dist/esm/i18n/markdown/helper/mdCommand.d.ts +5 -0
  85. package/dist/esm/i18n/markdown/helper/pos.d.ts +22 -0
  86. package/dist/esm/i18n/markdown/helper/query.d.ts +3 -0
  87. package/dist/esm/i18n/markdown/htmlRenderConvertors.d.ts +5 -0
  88. package/dist/esm/i18n/markdown/marks/blockQuote.d.ts +19 -0
  89. package/dist/esm/i18n/markdown/marks/code.d.ts +25 -0
  90. package/dist/esm/i18n/markdown/marks/codeBlock.d.ts +18 -0
  91. package/dist/esm/i18n/markdown/marks/customBlock.d.ts +10 -0
  92. package/dist/esm/i18n/markdown/marks/emph.d.ts +17 -0
  93. package/dist/esm/i18n/markdown/marks/heading.d.ts +23 -0
  94. package/dist/esm/i18n/markdown/marks/html.d.ts +8 -0
  95. package/dist/esm/i18n/markdown/marks/link.d.ts +29 -0
  96. package/dist/esm/i18n/markdown/marks/listItem.d.ts +42 -0
  97. package/dist/esm/i18n/markdown/marks/simpleMark.d.ts +32 -0
  98. package/dist/esm/i18n/markdown/marks/strike.d.ts +14 -0
  99. package/dist/esm/i18n/markdown/marks/strong.d.ts +18 -0
  100. package/dist/esm/i18n/markdown/marks/table.d.ts +27 -0
  101. package/dist/esm/i18n/markdown/marks/thematicBreak.d.ts +17 -0
  102. package/dist/esm/i18n/markdown/mdEditor.d.ts +48 -0
  103. package/dist/esm/i18n/markdown/mdPreview.d.ts +50 -0
  104. package/dist/esm/i18n/markdown/nodes/doc.d.ts +7 -0
  105. package/dist/esm/i18n/markdown/nodes/paragraph.d.ts +46 -0
  106. package/dist/esm/i18n/markdown/nodes/text.d.ts +7 -0
  107. package/dist/esm/i18n/markdown/plugins/helper/markInfo.d.ts +19 -0
  108. package/dist/esm/i18n/markdown/plugins/previewHighlight.d.ts +3 -0
  109. package/dist/esm/i18n/markdown/plugins/smartTask.d.ts +3 -0
  110. package/dist/esm/i18n/markdown/plugins/syntaxHighlight.d.ts +3 -0
  111. package/dist/esm/i18n/markdown/scroll/animation.d.ts +2 -0
  112. package/dist/esm/i18n/markdown/scroll/dom.d.ts +16 -0
  113. package/dist/esm/i18n/markdown/scroll/offset.d.ts +9 -0
  114. package/dist/esm/i18n/markdown/scroll/scrollSync.d.ts +30 -0
  115. package/dist/esm/i18n/nb-no.d.ts +1 -0
  116. package/dist/esm/i18n/nb-no.js +63 -0
  117. package/dist/esm/i18n/nl-nl.d.ts +1 -0
  118. package/dist/esm/i18n/nl-nl.js +63 -0
  119. package/dist/esm/i18n/pl-pl.d.ts +1 -0
  120. package/dist/esm/i18n/pl-pl.js +63 -0
  121. package/dist/esm/i18n/plugins/dropImage.d.ts +3 -0
  122. package/dist/esm/i18n/plugins/placeholder.d.ts +7 -0
  123. package/dist/esm/i18n/plugins/popupWidget.d.ts +3 -0
  124. package/dist/esm/i18n/pt-br.d.ts +1 -0
  125. package/dist/esm/i18n/pt-br.js +63 -0
  126. package/dist/esm/i18n/queries/queryManager.d.ts +2 -0
  127. package/dist/esm/i18n/ru-ru.d.ts +1 -0
  128. package/dist/esm/i18n/ru-ru.js +64 -0
  129. package/dist/esm/i18n/sanitizer/htmlSanitizer.d.ts +3 -0
  130. package/dist/esm/i18n/spec/mark.d.ts +12 -0
  131. package/dist/esm/i18n/spec/node.d.ts +12 -0
  132. package/dist/esm/i18n/spec/specManager.d.ts +16 -0
  133. package/dist/esm/i18n/sv-se.d.ts +1 -0
  134. package/dist/esm/i18n/sv-se.js +63 -0
  135. package/dist/esm/i18n/tr-tr.d.ts +1 -0
  136. package/dist/esm/i18n/tr-tr.js +63 -0
  137. package/dist/esm/i18n/ui/components/contextMenu.d.ts +21 -0
  138. package/dist/esm/i18n/ui/components/layout.d.ts +36 -0
  139. package/dist/esm/i18n/ui/components/popup.d.ts +21 -0
  140. package/dist/esm/i18n/ui/components/switch.d.ts +17 -0
  141. package/dist/esm/i18n/ui/components/tabs.d.ts +12 -0
  142. package/dist/esm/i18n/ui/components/toolbar/customPopupBody.d.ts +16 -0
  143. package/dist/esm/i18n/ui/components/toolbar/headingPopupBody.d.ts +12 -0
  144. package/dist/esm/i18n/ui/components/toolbar/imagePopupBody.d.ts +30 -0
  145. package/dist/esm/i18n/ui/components/toolbar/linkPopupBody.d.ts +18 -0
  146. package/dist/esm/i18n/ui/components/toolbar/tablePopupBody.d.ts +29 -0
  147. package/dist/esm/i18n/ui/components/toolbar/toolbar.d.ts +45 -0
  148. package/dist/esm/i18n/ui/components/toolbar/toolbarGroup.d.ts +21 -0
  149. package/dist/esm/i18n/ui/toolbarItemFactory.d.ts +13 -0
  150. package/dist/esm/i18n/ui/vdom/commit.d.ts +2 -0
  151. package/dist/esm/i18n/ui/vdom/component.d.ts +10 -0
  152. package/dist/esm/i18n/ui/vdom/dom.d.ts +6 -0
  153. package/dist/esm/i18n/ui/vdom/render.d.ts +4 -0
  154. package/dist/esm/i18n/ui/vdom/renderer.d.ts +4 -0
  155. package/dist/esm/i18n/ui/vdom/template.d.ts +3 -0
  156. package/dist/esm/i18n/ui/vdom/vnode.d.ts +30 -0
  157. package/dist/esm/i18n/uk-ua.d.ts +1 -0
  158. package/dist/esm/i18n/uk-ua.js +63 -0
  159. package/dist/esm/i18n/utils/common.d.ts +19 -0
  160. package/dist/esm/i18n/utils/constants.d.ts +8 -0
  161. package/dist/esm/i18n/utils/dom.d.ts +25 -0
  162. package/dist/esm/i18n/utils/map.d.ts +19 -0
  163. package/dist/esm/i18n/utils/markdown.d.ts +23 -0
  164. package/dist/esm/i18n/viewer.d.ts +77 -0
  165. package/dist/esm/i18n/widget/rules.d.ts +28 -0
  166. package/dist/esm/i18n/widget/widgetNode.d.ts +28 -0
  167. package/dist/esm/i18n/wysiwyg/adaptor/mdLikeNode.d.ts +5 -0
  168. package/dist/esm/i18n/wysiwyg/adaptor/wwToDOMAdaptor.d.ts +13 -0
  169. package/dist/esm/i18n/wysiwyg/clipboard/paste.d.ts +6 -0
  170. package/dist/esm/i18n/wysiwyg/clipboard/pasteMsoList.d.ts +2 -0
  171. package/dist/esm/i18n/wysiwyg/clipboard/pasteTextParser.d.ts +2 -0
  172. package/dist/esm/i18n/wysiwyg/clipboard/pasteToTable.d.ts +3 -0
  173. package/dist/esm/i18n/wysiwyg/command/list.d.ts +7 -0
  174. package/dist/esm/i18n/wysiwyg/command/table.d.ts +16 -0
  175. package/dist/esm/i18n/wysiwyg/helper/node.d.ts +37 -0
  176. package/dist/esm/i18n/wysiwyg/helper/table.d.ts +25 -0
  177. package/dist/esm/i18n/wysiwyg/helper/tableOffsetMap.d.ts +88 -0
  178. package/dist/esm/i18n/wysiwyg/markdownInputRules.d.ts +3 -0
  179. package/dist/esm/i18n/wysiwyg/marks/code.d.ts +31 -0
  180. package/dist/esm/i18n/wysiwyg/marks/emph.d.ts +34 -0
  181. package/dist/esm/i18n/wysiwyg/marks/link.d.ts +59 -0
  182. package/dist/esm/i18n/wysiwyg/marks/strike.d.ts +31 -0
  183. package/dist/esm/i18n/wysiwyg/marks/strong.d.ts +34 -0
  184. package/dist/esm/i18n/wysiwyg/nodes/blockQuote.d.ts +33 -0
  185. package/dist/esm/i18n/wysiwyg/nodes/bulletList.d.ts +43 -0
  186. package/dist/esm/i18n/wysiwyg/nodes/codeBlock.d.ts +45 -0
  187. package/dist/esm/i18n/wysiwyg/nodes/customBlock.d.ts +26 -0
  188. package/dist/esm/i18n/wysiwyg/nodes/doc.d.ts +7 -0
  189. package/dist/esm/i18n/wysiwyg/nodes/frontMatter.d.ts +21 -0
  190. package/dist/esm/i18n/wysiwyg/nodes/hardBreak.d.ts +14 -0
  191. package/dist/esm/i18n/wysiwyg/nodes/heading.d.ts +38 -0
  192. package/dist/esm/i18n/wysiwyg/nodes/html.d.ts +11 -0
  193. package/dist/esm/i18n/wysiwyg/nodes/htmlComment.d.ts +21 -0
  194. package/dist/esm/i18n/wysiwyg/nodes/image.d.ts +45 -0
  195. package/dist/esm/i18n/wysiwyg/nodes/listItem.d.ts +36 -0
  196. package/dist/esm/i18n/wysiwyg/nodes/orderedList.d.ts +39 -0
  197. package/dist/esm/i18n/wysiwyg/nodes/paragraph.d.ts +21 -0
  198. package/dist/esm/i18n/wysiwyg/nodes/table.d.ts +80 -0
  199. package/dist/esm/i18n/wysiwyg/nodes/tableBody.d.ts +26 -0
  200. package/dist/esm/i18n/wysiwyg/nodes/tableBodyCell.d.ts +36 -0
  201. package/dist/esm/i18n/wysiwyg/nodes/tableHead.d.ts +26 -0
  202. package/dist/esm/i18n/wysiwyg/nodes/tableHeadCell.d.ts +39 -0
  203. package/dist/esm/i18n/wysiwyg/nodes/tableRow.d.ts +26 -0
  204. package/dist/esm/i18n/wysiwyg/nodes/text.d.ts +14 -0
  205. package/dist/esm/i18n/wysiwyg/nodes/thematicBreak.d.ts +33 -0
  206. package/dist/esm/i18n/wysiwyg/nodeview/codeBlockView.d.ts +29 -0
  207. package/dist/esm/i18n/wysiwyg/nodeview/customBlockView.d.ts +29 -0
  208. package/dist/esm/i18n/wysiwyg/nodeview/imageView.d.ts +20 -0
  209. package/dist/esm/i18n/wysiwyg/plugins/selection/cellSelection.d.ts +14 -0
  210. package/dist/esm/i18n/wysiwyg/plugins/selection/tableSelection.d.ts +2 -0
  211. package/dist/esm/i18n/wysiwyg/plugins/selection/tableSelectionView.d.ts +19 -0
  212. package/dist/esm/i18n/wysiwyg/plugins/tableContextMenu.d.ts +3 -0
  213. package/dist/esm/i18n/wysiwyg/plugins/task.d.ts +2 -0
  214. package/dist/esm/i18n/wysiwyg/plugins/toolbarState.d.ts +3 -0
  215. package/dist/esm/i18n/wysiwyg/specCreator.d.ts +3 -0
  216. package/dist/esm/i18n/wysiwyg/wwEditor.d.ts +57 -0
  217. package/dist/esm/i18n/zh-cn.d.ts +1 -0
  218. package/dist/esm/i18n/zh-cn.js +63 -0
  219. package/dist/esm/i18n/zh-tw.d.ts +1 -0
  220. package/dist/esm/i18n/zh-tw.js +63 -0
  221. package/dist/esm/index.js +25133 -0
  222. package/dist/esm/indexViewer.js +12757 -0
  223. package/dist/i18n/ar.js +162 -0
  224. package/dist/i18n/cs-cz.js +162 -0
  225. package/dist/i18n/de-de.js +162 -0
  226. package/dist/i18n/es-es.js +162 -0
  227. package/dist/i18n/fi-fi.js +162 -0
  228. package/dist/i18n/fr-fr.js +162 -0
  229. package/dist/i18n/gl-es.js +162 -0
  230. package/dist/i18n/hr-hr.js +162 -0
  231. package/dist/i18n/it-it.js +162 -0
  232. package/dist/i18n/ja-jp.js +162 -0
  233. package/dist/i18n/ko-kr.js +162 -0
  234. package/dist/i18n/nb-no.js +162 -0
  235. package/dist/i18n/nl-nl.js +162 -0
  236. package/dist/i18n/pl-pl.js +162 -0
  237. package/dist/i18n/pt-br.js +162 -0
  238. package/dist/i18n/ru-ru.js +163 -0
  239. package/dist/i18n/sv-se.js +162 -0
  240. package/dist/i18n/tr-tr.js +162 -0
  241. package/dist/i18n/uk-ua.js +162 -0
  242. package/dist/i18n/zh-cn.js +162 -0
  243. package/dist/i18n/zh-tw.js +162 -0
  244. package/dist/theme/toastui-editor-dark.css +474 -0
  245. package/dist/toastui-editor-only.css +1068 -0
  246. package/dist/toastui-editor-viewer.css +492 -0
  247. package/dist/toastui-editor-viewer.js +14079 -0
  248. package/dist/toastui-editor.css +1606 -0
  249. package/dist/toastui-editor.js +26464 -0
  250. package/package.json +95 -0
  251. package/types/convertor.d.ts +143 -0
  252. package/types/editor.d.ts +383 -0
  253. package/types/event.d.ts +56 -0
  254. package/types/index.d.ts +70 -0
  255. package/types/map.d.ts +8 -0
  256. package/types/markdown.d.ts +60 -0
  257. package/types/plugin.d.ts +59 -0
  258. package/types/prosemirror-commands.d.ts +15 -0
  259. package/types/prosemirror-model.d.ts +15 -0
  260. package/types/prosemirror-transform.d.ts +35 -0
  261. package/types/spec.d.ts +42 -0
  262. package/types/toastmark.d.ts +357 -0
  263. package/types/toastui-editor-viewer.d.ts +39 -0
  264. package/types/ui.d.ts +165 -0
  265. package/types/wysiwyg.d.ts +36 -0
@@ -0,0 +1,46 @@
1
+ import { DOMOutputSpec, ProsemirrorNode } from 'prosemirror-model';
2
+ import { Command } from 'prosemirror-state';
3
+ import { EditorCommand, MdSpecContext } from '@t/spec';
4
+ import Node from '@/spec/node';
5
+ export declare class Paragraph extends Node {
6
+ context: MdSpecContext;
7
+ get name(): string;
8
+ get schema(): {
9
+ content: string;
10
+ attrs: {
11
+ className: {
12
+ default: null;
13
+ };
14
+ codeStart: {
15
+ default: null;
16
+ };
17
+ codeEnd: {
18
+ default: null;
19
+ };
20
+ };
21
+ selectable: boolean;
22
+ group: string;
23
+ parseDOM: {
24
+ tag: string;
25
+ }[];
26
+ toDOM({ attrs }: ProsemirrorNode): DOMOutputSpec;
27
+ };
28
+ private reorderList;
29
+ private indent;
30
+ private outdent;
31
+ private deleteLines;
32
+ private moveDown;
33
+ private moveUp;
34
+ commands(): {
35
+ indent: EditorCommand<import("@t/spec").DefaultPayload>;
36
+ outdent: EditorCommand<import("@t/spec").DefaultPayload>;
37
+ };
38
+ keymaps(): {
39
+ Tab: Command;
40
+ 'Shift-Tab': Command;
41
+ 'Mod-d': Command;
42
+ 'Mod-D': Command;
43
+ 'Alt-ArrowUp': Command;
44
+ 'Alt-ArrowDown': Command;
45
+ };
46
+ }
@@ -0,0 +1,7 @@
1
+ import Node from '@/spec/node';
2
+ export declare class Text extends Node {
3
+ get name(): string;
4
+ get schema(): {
5
+ group: string;
6
+ };
7
+ }
@@ -0,0 +1,19 @@
1
+ import { MdNodeType, MdPos, MdNode } from '@licium/toastmark';
2
+ declare const LIST_ITEM = "listItem";
3
+ declare const META = "meta";
4
+ declare const DELIM = "delimiter";
5
+ declare const TASK_DELIM = "taskDelimiter";
6
+ declare const TEXT = "markedText";
7
+ declare const HTML = "html";
8
+ declare type MarkType = MdNodeType | typeof LIST_ITEM | typeof DELIM | typeof TASK_DELIM | typeof TEXT | typeof HTML | typeof META;
9
+ export interface MarkInfo {
10
+ start: MdPos;
11
+ end: MdPos;
12
+ spec?: {
13
+ type?: MarkType;
14
+ attrs?: Record<string, any>;
15
+ };
16
+ lineBackground?: boolean;
17
+ }
18
+ export declare function getMarkInfo(node: MdNode, start: MdPos, end: MdPos, endLine: string): MarkInfo[] | null;
19
+ export {};
@@ -0,0 +1,3 @@
1
+ import { Plugin } from 'prosemirror-state';
2
+ import { MdContext } from '@t/spec';
3
+ export declare function previewHighlight({ toastMark, eventEmitter }: MdContext): Plugin<any>;
@@ -0,0 +1,3 @@
1
+ import { Plugin } from 'prosemirror-state';
2
+ import { MdContext } from '@t/spec';
3
+ export declare function smartTask({ schema, toastMark }: MdContext): Plugin<any>;
@@ -0,0 +1,3 @@
1
+ import { Plugin } from 'prosemirror-state';
2
+ import { MdContext } from '@t/spec';
3
+ export declare function syntaxHighlight({ schema, toastMark }: MdContext): Plugin<any>;
@@ -0,0 +1,2 @@
1
+ import { SyncCallbacks } from './scrollSync';
2
+ export declare function animate(curScrollTop: number, targetScrollTop: number, syncCallbacks: SyncCallbacks): void;
@@ -0,0 +1,16 @@
1
+ import { ProsemirrorNode } from 'prosemirror-model';
2
+ import { MdNode } from '@licium/toastmark';
3
+ declare type El = HTMLElement | null;
4
+ export declare function getEditorRangeHeightInfo(doc: ProsemirrorNode, mdNode: MdNode, children: HTMLCollection): {
5
+ height: number;
6
+ rect: DOMRect;
7
+ };
8
+ export declare function findAncestorHavingId(el: HTMLElement, root: HTMLElement): HTMLElement;
9
+ export declare function getTotalOffsetTop(el: El, root: HTMLElement): number;
10
+ export declare function findAdjacentElementToScrollTop(scrollTop: number, root: HTMLElement): HTMLElement | null;
11
+ export declare function getAdditionalPos(scrollTop: number, offsetTop: number, height: number, targetNodeHeight: number): number;
12
+ export declare function getParentNodeObj(previewContent: HTMLElement, mdNode: MdNode): {
13
+ mdNode: MdNode;
14
+ el: HTMLElement;
15
+ };
16
+ export {};
@@ -0,0 +1,9 @@
1
+ export declare function setHeight(id: number, height: number): void;
2
+ export declare function setOffsetTop(id: number, offsetTop: number): void;
3
+ export declare function getHeight(id: number): number;
4
+ export declare function getOffsetTop(id: number): number;
5
+ export declare function removeOffsetInfoByNode(node: HTMLElement): void;
6
+ export declare function getAndSaveOffsetInfo(node: HTMLElement, root: HTMLElement, mdNodeId: number): {
7
+ nodeHeight: number;
8
+ offsetTop: number;
9
+ };
@@ -0,0 +1,30 @@
1
+ import { Emitter } from '@t/event';
2
+ import MarkdownPreview from '../mdPreview';
3
+ import MdEditor from '../mdEditor';
4
+ export interface SyncCallbacks {
5
+ syncScrollTop: (scrollTop: number) => void;
6
+ releaseEventBlock: () => void;
7
+ }
8
+ export declare class ScrollSync {
9
+ private previewRoot;
10
+ private previewEl;
11
+ private editorView;
12
+ private toastMark;
13
+ private eventEmitter;
14
+ private latestEditorScrollTop;
15
+ private latestPreviewScrollTop;
16
+ private blockedScroll;
17
+ private active;
18
+ private mdEditor;
19
+ private timer;
20
+ constructor(mdEditor: MdEditor, preview: MarkdownPreview, eventEmitter: Emitter);
21
+ private addScrollSyncEvent;
22
+ private getMdNodeAtPos;
23
+ private getScrollTopByCaretPos;
24
+ private syncPreviewScrollTop;
25
+ syncEditorScrollTop(targetNode: HTMLElement): void;
26
+ private getResolvedScrollTop;
27
+ private run;
28
+ clearTimer(): void;
29
+ destroy(): void;
30
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,63 @@
1
+ /**
2
+ * @licium/editor : i18n
3
+ * @version 3.2.3 | Fri Jan 02 2026
4
+ * @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
5
+ * @license MIT
6
+ */
7
+
8
+ import Editor from '@licium/editor';
9
+
10
+ /**
11
+ * @fileoverview I18N for Norwegian
12
+ * @author Anton Reytarovskiy <reitarovskii.toh@gmail.com>
13
+ */
14
+ Editor.setLanguage(['nb', 'nb-NO'], {
15
+ Markdown: 'Funksjonaliteter',
16
+ WYSIWYG: 'WYSIWYG',
17
+ Write: 'Skriv',
18
+ Preview: 'Forhåndsvisning',
19
+ Headings: 'Overskrift',
20
+ Paragraph: 'Paragraf',
21
+ Bold: 'Fet skrift',
22
+ Italic: 'Italic',
23
+ Strike: 'Strike',
24
+ Code: 'Kode',
25
+ Line: 'Linje',
26
+ Blockquote: 'Blokksitat',
27
+ 'Unordered list': 'Usortert liste',
28
+ 'Ordered list': 'Sortert liste',
29
+ Task: 'Task',
30
+ Indent: 'Indent',
31
+ Outdent: 'Outdent',
32
+ 'Insert link': 'Sett inn lenke',
33
+ 'Insert CodeBlock': 'Sett inn CodeStreng',
34
+ 'Insert table': 'Sett inn diagram',
35
+ 'Insert image': 'Sett inn bilde',
36
+ Heading: 'Overskrift',
37
+ 'Image URL': 'BildeURL',
38
+ 'Select image file': 'Velg bildefil',
39
+ 'Choose a file': 'Velg en fil',
40
+ 'No file': 'Ingen fil',
41
+ Description: 'Beskrivelse',
42
+ OK: 'OK',
43
+ More: 'Mer',
44
+ Cancel: 'Angre',
45
+ File: 'Fil',
46
+ URL: 'URL',
47
+ 'Link text': 'Lenketekst',
48
+ 'Add row to up': 'Legg rad til opp',
49
+ 'Add row to down': 'Legg rad til ned',
50
+ 'Add column to left': 'Legg til kolonne til venstre',
51
+ 'Add column to right': 'Legg til kolonne til høyre',
52
+ 'Remove row': 'Fjern rad',
53
+ 'Remove column': 'Fjern kolonne',
54
+ 'Align column to left': 'Venstreorienter',
55
+ 'Align column to center': 'Senterorienter',
56
+ 'Align column to right': 'Høyreorienter',
57
+ 'Remove table': 'Fjern diagram',
58
+ 'Would you like to paste as table?': 'Ønsker du å lime inn som et diagram?',
59
+ 'Text color': 'Tekstfarge',
60
+ 'Auto scroll enabled': 'Auto-scroll aktivert',
61
+ 'Auto scroll disabled': 'Auto-scroll deaktivert',
62
+ 'Choose language': 'Velg språl',
63
+ });
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,63 @@
1
+ /**
2
+ * @licium/editor : i18n
3
+ * @version 3.2.3 | Fri Jan 02 2026
4
+ * @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
5
+ * @license MIT
6
+ */
7
+
8
+ import Editor from '@licium/editor';
9
+
10
+ /**
11
+ * @fileoverview I18N for Dutch
12
+ * @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
13
+ */
14
+ Editor.setLanguage(['nl', 'nl-NL'], {
15
+ Markdown: 'Markdown',
16
+ WYSIWYG: 'WYSIWYG',
17
+ Write: 'Opslaan',
18
+ Preview: 'Voorbeeld',
19
+ Headings: 'Koppen',
20
+ Paragraph: 'Alinea',
21
+ Bold: 'Vet',
22
+ Italic: 'Cursief',
23
+ Strike: 'Doorhalen',
24
+ Code: 'Inline code',
25
+ Line: 'Regel',
26
+ Blockquote: 'Citaatblok',
27
+ 'Unordered list': 'Opsomming',
28
+ 'Ordered list': 'Genummerde opsomming',
29
+ Task: 'Taak',
30
+ Indent: 'Niveau verhogen',
31
+ Outdent: 'Niveau verlagen',
32
+ 'Insert link': 'Link invoegen',
33
+ 'Insert CodeBlock': 'Codeblok toevoegen',
34
+ 'Insert table': 'Tabel invoegen',
35
+ 'Insert image': 'Afbeelding invoegen',
36
+ Heading: 'Kop',
37
+ 'Image URL': 'Afbeelding URL',
38
+ 'Select image file': 'Selecteer een afbeelding',
39
+ 'Choose a file': 'Kies een bestand',
40
+ 'No file': 'Geen bestand',
41
+ Description: 'Omschrijving',
42
+ OK: 'OK',
43
+ More: 'Meer',
44
+ Cancel: 'Annuleren',
45
+ File: 'Bestand',
46
+ URL: 'URL',
47
+ 'Link text': 'Link tekst',
48
+ 'Add row to up': 'Voeg rij toe aan omhoog',
49
+ 'Add row to down': 'Rij naar beneden toevoegen',
50
+ 'Add column to left': 'Voeg kolom aan de linkerkant toe',
51
+ 'Add column to right': 'Voeg een kolom aan de rechterkant toe',
52
+ 'Remove row': 'Rij verwijderen',
53
+ 'Remove column': 'Kolom verwijderen',
54
+ 'Align column to left': 'Links uitlijnen',
55
+ 'Align column to center': 'Centreren',
56
+ 'Align column to right': 'Rechts uitlijnen',
57
+ 'Remove table': 'Verwijder tabel',
58
+ 'Would you like to paste as table?': 'Wil je dit als tabel plakken?',
59
+ 'Text color': 'Tekstkleur',
60
+ 'Auto scroll enabled': 'Autoscroll ingeschakeld',
61
+ 'Auto scroll disabled': 'Autoscroll uitgeschakeld',
62
+ 'Choose language': 'Kies een taal',
63
+ });
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,63 @@
1
+ /**
2
+ * @licium/editor : i18n
3
+ * @version 3.2.3 | Fri Jan 02 2026
4
+ * @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
5
+ * @license MIT
6
+ */
7
+
8
+ import Editor from '@licium/editor';
9
+
10
+ /**
11
+ * @fileoverview I18N for Polish
12
+ * @author Marcin Mikołajczak <me@m4sk.in>
13
+ */
14
+ Editor.setLanguage(['pl', 'pl-PL'], {
15
+ Markdown: 'Markdown',
16
+ WYSIWYG: 'WYSIWYG',
17
+ Write: 'Napisz',
18
+ Preview: 'Podgląd',
19
+ Headings: 'Nagłówki',
20
+ Paragraph: 'Akapit',
21
+ Bold: 'Pogrubienie',
22
+ Italic: 'Kursywa',
23
+ Strike: 'Przekreślenie',
24
+ Code: 'Fragment kodu',
25
+ Line: 'Linia',
26
+ Blockquote: 'Cytat',
27
+ 'Unordered list': 'Lista nieuporządkowana',
28
+ 'Ordered list': 'Lista uporządkowana',
29
+ Task: 'Zadanie',
30
+ Indent: 'Utwórz wcięcie',
31
+ Outdent: 'Usuń wcięcie',
32
+ 'Insert link': 'Umieść odnośnik',
33
+ 'Insert CodeBlock': 'Umieść blok kodu',
34
+ 'Insert table': 'Umieść tabelę',
35
+ 'Insert image': 'Umieść obraz',
36
+ Heading: 'Nagłówek',
37
+ 'Image URL': 'Adres URL obrazu',
38
+ 'Select image file': 'Wybierz plik obrazu',
39
+ 'Choose a file': 'Wybierz plik',
40
+ 'No file': 'Brak plik',
41
+ Description: 'Opis',
42
+ OK: 'OK',
43
+ More: 'Więcej',
44
+ Cancel: 'Anuluj',
45
+ File: 'Plik',
46
+ URL: 'URL',
47
+ 'Link text': 'Tekst odnośnika',
48
+ 'Add row to up': 'Dodaj wiersz do góry',
49
+ 'Add row to down': 'Dodaj wiersz w dół',
50
+ 'Add column to left': 'Dodaj kolumnę po lewej stronie',
51
+ 'Add column to right': 'Dodaj kolumnę po prawej stronie',
52
+ 'Remove row': 'Usuń rząd',
53
+ 'Remove column': 'Usuń kolumnę',
54
+ 'Align column to left': 'Wyrównaj do lewej',
55
+ 'Align column to center': 'Wyśrodkuj',
56
+ 'Align column to right': 'Wyrównaj do prawej',
57
+ 'Remove table': 'Usuń tabelę',
58
+ 'Would you like to paste as table?': 'Czy chcesz wkleić tekst jako tabelę?',
59
+ 'Text color': 'Kolor tekstu',
60
+ 'Auto scroll enabled': 'Włączono automatyczne przewijanie',
61
+ 'Auto scroll disabled': 'Wyłączono automatyczne przewijanie',
62
+ 'Choose language': 'Wybierz język',
63
+ });
@@ -0,0 +1,3 @@
1
+ import { Plugin } from 'prosemirror-state';
2
+ import { Context } from '@t/spec';
3
+ export declare function dropImage({ eventEmitter }: Context): Plugin<any>;
@@ -0,0 +1,7 @@
1
+ import { Plugin } from 'prosemirror-state';
2
+ interface Options {
3
+ text?: string;
4
+ className?: string;
5
+ }
6
+ export declare function placeholder(options: Options): Plugin<any>;
7
+ export {};
@@ -0,0 +1,3 @@
1
+ import { Plugin } from 'prosemirror-state';
2
+ import { Emitter } from '@t/event';
3
+ export declare function addWidget(eventEmitter: Emitter): Plugin<any>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,63 @@
1
+ /**
2
+ * @licium/editor : i18n
3
+ * @version 3.2.3 | Fri Jan 02 2026
4
+ * @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
5
+ * @license MIT
6
+ */
7
+
8
+ import Editor from '@licium/editor';
9
+
10
+ /**
11
+ * @fileoverview I18N for Português
12
+ * @author Nícolas Huber <nicolasluishuber@gmail.com>
13
+ */
14
+ Editor.setLanguage(['pt', 'pt-BR'], {
15
+ Markdown: 'Markdown',
16
+ WYSIWYG: 'WYSIWYG',
17
+ Write: 'Escrever',
18
+ Preview: 'Pré-visualizar',
19
+ Headings: 'Cabeçalhos',
20
+ Paragraph: 'Parágrafo',
21
+ Bold: 'Negrito',
22
+ Italic: 'Itálico',
23
+ Strike: 'Traçado',
24
+ Code: 'Código',
25
+ Line: 'Linha',
26
+ Blockquote: 'Bloco de citação',
27
+ 'Unordered list': 'Lista não ordenada',
28
+ 'Ordered list': 'Lista ordenada',
29
+ Task: 'Tarefa',
30
+ Indent: 'Recuo à esquerda',
31
+ Outdent: 'Recuo à direita',
32
+ 'Insert link': 'Inserir link',
33
+ 'Insert CodeBlock': 'Inserir bloco de código',
34
+ 'Insert table': 'Inserir tabela',
35
+ 'Insert image': 'Inserir imagem',
36
+ Heading: 'Título',
37
+ 'Image URL': 'URL da imagem',
38
+ 'Select image file': 'Selecione um arquivo de imagem',
39
+ 'Choose a file': 'Escolha um arquivo',
40
+ 'No file': 'Nenhum arquivo',
41
+ Description: 'Descrição',
42
+ OK: 'OK',
43
+ More: 'Mais',
44
+ Cancel: 'Cancelar',
45
+ File: 'Arquivo',
46
+ URL: 'URL',
47
+ 'Link text': 'Link de texto',
48
+ 'Add row to up': 'Adicionar linha para cima',
49
+ 'Add row to down': 'Adicionar linha para baixo',
50
+ 'Add column to left': 'Adicionar coluna à esquerda',
51
+ 'Add column to right': 'Adicionar coluna à direita',
52
+ 'Remove row': 'Remover linha',
53
+ 'Remove column': 'Remover coluna',
54
+ 'Align column to left': 'Alinhar à esquerda',
55
+ 'Align column to center': 'Alinhar ao centro',
56
+ 'Align column to right': 'Alinhar à direita',
57
+ 'Remove table': 'Remover tabela',
58
+ 'Would you like to paste as table?': 'Você gostaria de colar como mesa?',
59
+ 'Text color': 'Cor do texto',
60
+ 'Auto scroll enabled': 'Rolagem automática habilitada',
61
+ 'Auto scroll disabled': 'Rolagem automática desabilitada',
62
+ 'Choose language': 'Escolher linguagem',
63
+ });
@@ -0,0 +1,2 @@
1
+ import type { EditorCore as Editor } from '@t/editor';
2
+ export declare function buildQuery(editor: Editor): void;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,64 @@
1
+ /**
2
+ * @licium/editor : i18n
3
+ * @version 3.2.3 | Fri Jan 02 2026
4
+ * @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
5
+ * @license MIT
6
+ */
7
+
8
+ import Editor from '@licium/editor';
9
+
10
+ /**
11
+ * @fileoverview I18N for Russian
12
+ * @author Stepan Samko <stpnsamko@gmail.com>
13
+ * @author Veaceslav Grimalschi <grimalschi@yandex.ru>
14
+ */
15
+ Editor.setLanguage(['ru', 'ru-RU'], {
16
+ Markdown: 'Markdown',
17
+ WYSIWYG: 'WYSIWYG',
18
+ Write: 'Редактор',
19
+ Preview: 'Просмотр',
20
+ Headings: 'Заголовки',
21
+ Paragraph: 'Абзац',
22
+ Bold: 'Жирный',
23
+ Italic: 'Курсив',
24
+ Strike: 'Зачеркнутый',
25
+ Code: 'Код',
26
+ Line: 'Линия',
27
+ Blockquote: 'Цитата',
28
+ 'Unordered list': 'Неупорядоченный список',
29
+ 'Ordered list': 'Упорядоченный список',
30
+ Task: 'Галочка',
31
+ Indent: 'Увеличить отступ',
32
+ Outdent: 'Уменьшить отступ',
33
+ 'Insert link': 'Вставить ссылку',
34
+ 'Insert CodeBlock': 'Вставить блок кода',
35
+ 'Insert table': 'Вставить таблицу',
36
+ 'Insert image': 'Вставить изображение',
37
+ Heading: 'Заголовок',
38
+ 'Image URL': 'URL изображения',
39
+ 'Select image file': 'Выбрать файл изображения',
40
+ 'Choose a file': 'Выбрать',
41
+ 'No file': 'Нет файла',
42
+ Description: 'Описание',
43
+ OK: 'Хорошо',
44
+ More: 'Еще',
45
+ Cancel: 'Отмена',
46
+ File: 'Файл',
47
+ URL: 'URL',
48
+ 'Link text': 'Текст ссылки',
49
+ 'Add row to up': 'Добавить строку вверх',
50
+ 'Add row to down': 'Добавить строку вниз',
51
+ 'Add column to left': 'Добавить столбец слева',
52
+ 'Add column to right': 'Добавить столбец справа',
53
+ 'Remove row': 'Удалить ряд',
54
+ 'Remove column': 'Удалить столбец',
55
+ 'Align column to left': 'Выровнять по левому краю',
56
+ 'Align column to center': 'Выровнять по центру',
57
+ 'Align column to right': 'Выровнять по правому краю',
58
+ 'Remove table': 'Удалить таблицу',
59
+ 'Would you like to paste as table?': 'Вы хотите вставить в виде таблицы?',
60
+ 'Text color': 'Цвет текста',
61
+ 'Auto scroll enabled': 'Автопрокрутка включена',
62
+ 'Auto scroll disabled': 'Автопрокрутка отключена',
63
+ 'Choose language': 'Выбрать язык',
64
+ });
@@ -0,0 +1,3 @@
1
+ import DOMPurify from 'dompurify';
2
+ export declare function registerTagWhitelistIfPossible(tagName: string): void;
3
+ export declare function sanitizeHTML<T extends string | HTMLElement | DocumentFragment = string>(html: string | Node, options?: DOMPurify.Config): T;
@@ -0,0 +1,12 @@
1
+ import { Keymap } from 'prosemirror-commands';
2
+ import { MarkSpec } from 'prosemirror-model';
3
+ import { SpecContext, EditorCommand, EditorCommandMap } from '@t/spec';
4
+ export default abstract class Mark {
5
+ context: SpecContext;
6
+ get type(): string;
7
+ setContext(context: SpecContext): void;
8
+ abstract get name(): string;
9
+ abstract get schema(): MarkSpec;
10
+ commands?(): EditorCommand | EditorCommandMap;
11
+ keymaps?(): Keymap<any>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { Keymap } from 'prosemirror-commands';
2
+ import { NodeSpec } from 'prosemirror-model';
3
+ import { SpecContext, EditorCommand, EditorCommandMap } from '@t/spec';
4
+ export default abstract class Node {
5
+ context: SpecContext;
6
+ get type(): string;
7
+ setContext(context: SpecContext): void;
8
+ abstract get name(): string;
9
+ abstract get schema(): NodeSpec;
10
+ commands?(): EditorCommand | EditorCommandMap;
11
+ keymaps?(): Keymap<any>;
12
+ }
@@ -0,0 +1,16 @@
1
+ import { EditorView } from 'prosemirror-view';
2
+ import { EditorAllCommandMap, SpecContext, EditorCommand } from '@t/spec';
3
+ import Mark from '@/spec/mark';
4
+ import Node from '@/spec/node';
5
+ declare type Spec = Node | Mark;
6
+ export declare function execCommand(view: EditorView, command: EditorCommand, payload?: Record<string, any>): boolean;
7
+ export default class SpecManager {
8
+ private specs;
9
+ constructor(specs: Spec[]);
10
+ get nodes(): {};
11
+ get marks(): {};
12
+ commands(view: EditorView, addedCommands?: Record<string, EditorCommand>): EditorAllCommandMap<import("@t/spec").DefaultPayload>;
13
+ keymaps(useCommandShortcut: boolean): import("prosemirror-state").Plugin<any>[];
14
+ setContext(context: SpecContext): void;
15
+ }
16
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,63 @@
1
+ /**
2
+ * @licium/editor : i18n
3
+ * @version 3.2.3 | Fri Jan 02 2026
4
+ * @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
5
+ * @license MIT
6
+ */
7
+
8
+ import Editor from '@licium/editor';
9
+
10
+ /**
11
+ * @fileoverview I18N for Swedish
12
+ * @author Magnus Aspling <magnus@yug.se>
13
+ */
14
+ Editor.setLanguage(['sv', 'sv-SE'], {
15
+ Markdown: 'Markdown',
16
+ WYSIWYG: 'WYSIWYG',
17
+ Write: 'Skriv',
18
+ Preview: 'Förhandsgranska',
19
+ Headings: 'Överskrifter',
20
+ Paragraph: 'Paragraf',
21
+ Bold: 'Fet',
22
+ Italic: 'Kursiv',
23
+ Strike: 'Genomstruken',
24
+ Code: 'Kodrad',
25
+ Line: 'Linje',
26
+ Blockquote: 'Citatblock',
27
+ 'Unordered list': 'Punktlista',
28
+ 'Ordered list': 'Numrerad lista',
29
+ Task: 'Att göra',
30
+ Indent: 'Öka indrag',
31
+ Outdent: 'Minska indrag',
32
+ 'Insert link': 'Infoga länk',
33
+ 'Insert CodeBlock': 'Infoga kodblock',
34
+ 'Insert table': 'Infoga tabell',
35
+ 'Insert image': 'Infoga bild',
36
+ Heading: 'Överskrift',
37
+ 'Image URL': 'Bildadress',
38
+ 'Select image file': 'Välj en bildfil',
39
+ 'Choose a file': 'Välj en fil',
40
+ 'No file': 'Ingen fil',
41
+ Description: 'Beskrivning',
42
+ OK: 'OK',
43
+ More: 'Mer',
44
+ Cancel: 'Avbryt',
45
+ File: 'Fil',
46
+ URL: 'Adress',
47
+ 'Link text': 'Länktext',
48
+ 'Add row to up': 'Lägg till rad till upp',
49
+ 'Add row to down': 'Lägg till rad till ner',
50
+ 'Add column to left': 'Lägg till kolumn till vänster',
51
+ 'Add column to right': 'Lägg till kolumn till höger',
52
+ 'Remove row': 'Radera rad',
53
+ 'Remove column': 'Radera kolumn',
54
+ 'Align column to left': 'Vänsterjustera',
55
+ 'Align column to center': 'Centrera',
56
+ 'Align column to right': 'Högerjustera',
57
+ 'Remove table': 'Radera tabell',
58
+ 'Would you like to paste as table?': 'Vill du klistra in som en tabell?',
59
+ 'Text color': 'Textfärg',
60
+ 'Auto scroll enabled': 'Automatisk scroll aktiverad',
61
+ 'Auto scroll disabled': 'Automatisk scroll inaktiverad',
62
+ 'Choose language': 'Välj språk',
63
+ });
@@ -0,0 +1 @@
1
+ export {};