@agile_jy/word-editor 0.0.1-beta.12 → 0.0.1-beta.13

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 (331) hide show
  1. package/dist/canvas-editor.es.js +26227 -0
  2. package/dist/canvas-editor.es.js.map +1 -0
  3. package/dist/canvas-editor.umd.js +97 -0
  4. package/dist/canvas-editor.umd.js.map +1 -0
  5. package/dist/src/editor/core/actuator/Actuator.d.ts +7 -0
  6. package/dist/src/editor/core/actuator/handlers/positionContextChange.d.ts +3 -0
  7. package/dist/src/editor/core/command/Command.d.ts +147 -0
  8. package/dist/src/editor/core/command/CommandAdapt.d.ts +190 -0
  9. package/dist/src/editor/core/contextmenu/ContextMenu.d.ts +31 -0
  10. package/dist/src/editor/core/contextmenu/menus/controlMenus.d.ts +2 -0
  11. package/dist/src/editor/core/contextmenu/menus/globalMenus.d.ts +2 -0
  12. package/dist/src/editor/core/contextmenu/menus/hyperlinkMenus.d.ts +2 -0
  13. package/dist/src/editor/core/contextmenu/menus/imageMenus.d.ts +2 -0
  14. package/dist/src/editor/core/contextmenu/menus/tableMenus.d.ts +2 -0
  15. package/dist/src/editor/core/cursor/Cursor.d.ts +41 -0
  16. package/dist/src/editor/core/cursor/CursorAgent.d.ts +16 -0
  17. package/dist/src/editor/core/draw/Draw.d.ts +252 -0
  18. package/dist/src/editor/core/draw/control/Control.d.ts +73 -0
  19. package/dist/src/editor/core/draw/control/checkbox/CheckboxControl.d.ts +16 -0
  20. package/dist/src/editor/core/draw/control/date/DateControl.d.ts +24 -0
  21. package/dist/src/editor/core/draw/control/interactive/ControlSearch.d.ts +20 -0
  22. package/dist/src/editor/core/draw/control/number/Calculator.d.ts +16 -0
  23. package/dist/src/editor/core/draw/control/number/NumberControl.d.ts +13 -0
  24. package/dist/src/editor/core/draw/control/radio/RadioControl.d.ts +5 -0
  25. package/dist/src/editor/core/draw/control/richtext/Border.d.ts +10 -0
  26. package/dist/src/editor/core/draw/control/select/SelectControl.d.ts +28 -0
  27. package/dist/src/editor/core/draw/control/text/TextControl.d.ts +18 -0
  28. package/dist/src/editor/core/draw/frame/Background.d.ts +11 -0
  29. package/dist/src/editor/core/draw/frame/Badge.d.ts +14 -0
  30. package/dist/src/editor/core/draw/frame/Footer.d.ts +27 -0
  31. package/dist/src/editor/core/draw/frame/Header.d.ts +27 -0
  32. package/dist/src/editor/core/draw/frame/LineNumber.d.ts +7 -0
  33. package/dist/src/editor/core/draw/frame/Margin.d.ts +7 -0
  34. package/dist/src/editor/core/draw/frame/PageBorder.d.ts +9 -0
  35. package/dist/src/editor/core/draw/frame/PageNumber.d.ts +9 -0
  36. package/dist/src/editor/core/draw/frame/Placeholder.d.ts +20 -0
  37. package/dist/src/editor/core/draw/frame/Watermark.d.ts +10 -0
  38. package/dist/src/editor/core/draw/graffiti/Graffiti.d.ts +19 -0
  39. package/dist/src/editor/core/draw/interactive/Area.d.ts +27 -0
  40. package/dist/src/editor/core/draw/interactive/Group.d.ts +18 -0
  41. package/dist/src/editor/core/draw/interactive/Search.d.ts +30 -0
  42. package/dist/src/editor/core/draw/particle/CheckboxParticle.d.ts +18 -0
  43. package/dist/src/editor/core/draw/particle/HyperlinkParticle.d.ts +17 -0
  44. package/dist/src/editor/core/draw/particle/ImageParticle.d.ts +23 -0
  45. package/dist/src/editor/core/draw/particle/LabelParticle.d.ts +8 -0
  46. package/dist/src/editor/core/draw/particle/LineBreakParticle.d.ts +10 -0
  47. package/dist/src/editor/core/draw/particle/ListParticle.d.ts +20 -0
  48. package/dist/src/editor/core/draw/particle/PageBreakParticle.d.ts +9 -0
  49. package/dist/src/editor/core/draw/particle/RadioParticle.d.ts +18 -0
  50. package/dist/src/editor/core/draw/particle/SeparatorParticle.d.ts +7 -0
  51. package/dist/src/editor/core/draw/particle/SubscriptParticle.d.ts +5 -0
  52. package/dist/src/editor/core/draw/particle/SuperscriptParticle.d.ts +5 -0
  53. package/dist/src/editor/core/draw/particle/TextParticle.d.ts +29 -0
  54. package/dist/src/editor/core/draw/particle/WhiteSpaceParticle.d.ts +7 -0
  55. package/dist/src/editor/core/draw/particle/block/BlockParticle.d.ts +14 -0
  56. package/dist/src/editor/core/draw/particle/block/modules/BaseBlock.d.ts +33 -0
  57. package/dist/src/editor/core/draw/particle/block/modules/IFrameBlock.d.ts +9 -0
  58. package/dist/src/editor/core/draw/particle/block/modules/VideoBlock.d.ts +8 -0
  59. package/dist/src/editor/core/draw/particle/date/DateParticle.d.ts +13 -0
  60. package/dist/src/editor/core/draw/particle/date/DatePicker.d.ts +64 -0
  61. package/dist/src/editor/core/draw/particle/latex/LaTexParticle.d.ts +7 -0
  62. package/dist/src/editor/core/draw/particle/latex/utils/LaTexUtils.d.ts +47 -0
  63. package/dist/src/editor/core/draw/particle/latex/utils/hershey.d.ts +10 -0
  64. package/dist/src/editor/core/draw/particle/latex/utils/symbols.d.ts +8 -0
  65. package/dist/src/editor/core/draw/particle/previewer/Previewer.d.ts +47 -0
  66. package/dist/src/editor/core/draw/particle/table/TableOperate.d.ts +32 -0
  67. package/dist/src/editor/core/draw/particle/table/TableParticle.d.ts +24 -0
  68. package/dist/src/editor/core/draw/particle/table/TableTool.d.ts +31 -0
  69. package/dist/src/editor/core/draw/richtext/AbstractRichText.d.ts +11 -0
  70. package/dist/src/editor/core/draw/richtext/Highlight.d.ts +7 -0
  71. package/dist/src/editor/core/draw/richtext/Strikeout.d.ts +7 -0
  72. package/dist/src/editor/core/draw/richtext/Underline.d.ts +10 -0
  73. package/dist/src/editor/core/event/CanvasEvent.d.ts +52 -0
  74. package/dist/src/editor/core/event/GlobalEvent.d.ts +26 -0
  75. package/dist/src/editor/core/event/eventbus/EventBus.d.ts +9 -0
  76. package/dist/src/editor/core/event/handlers/click.d.ts +11 -0
  77. package/dist/src/editor/core/event/handlers/composition.d.ts +8 -0
  78. package/dist/src/editor/core/event/handlers/copy.d.ts +3 -0
  79. package/dist/src/editor/core/event/handlers/cut.d.ts +2 -0
  80. package/dist/src/editor/core/event/handlers/drag.d.ts +6 -0
  81. package/dist/src/editor/core/event/handlers/drop.d.ts +2 -0
  82. package/dist/src/editor/core/event/handlers/input.d.ts +3 -0
  83. package/dist/src/editor/core/event/handlers/keydown/backspace.d.ts +2 -0
  84. package/dist/src/editor/core/event/handlers/keydown/delete.d.ts +2 -0
  85. package/dist/src/editor/core/event/handlers/keydown/enter.d.ts +2 -0
  86. package/dist/src/editor/core/event/handlers/keydown/index.d.ts +2 -0
  87. package/dist/src/editor/core/event/handlers/keydown/left.d.ts +2 -0
  88. package/dist/src/editor/core/event/handlers/keydown/right.d.ts +2 -0
  89. package/dist/src/editor/core/event/handlers/keydown/tab.d.ts +2 -0
  90. package/dist/src/editor/core/event/handlers/keydown/updown.d.ts +2 -0
  91. package/dist/src/editor/core/event/handlers/mousedown.d.ts +7 -0
  92. package/dist/src/editor/core/event/handlers/mouseleave.d.ts +2 -0
  93. package/dist/src/editor/core/event/handlers/mousemove.d.ts +2 -0
  94. package/dist/src/editor/core/event/handlers/mouseup.d.ts +2 -0
  95. package/dist/src/editor/core/event/handlers/paste.d.ts +8 -0
  96. package/dist/src/editor/core/history/HistoryManager.d.ts +15 -0
  97. package/dist/src/editor/core/i18n/I18n.d.ts +12 -0
  98. package/dist/src/editor/core/listener/Listener.d.ts +15 -0
  99. package/dist/src/editor/core/observer/ImageObserver.d.ts +7 -0
  100. package/dist/src/editor/core/observer/MouseObserver.d.ts +13 -0
  101. package/dist/src/editor/core/observer/ScrollObserver.d.ts +20 -0
  102. package/dist/src/editor/core/observer/SelectionObserver.d.ts +22 -0
  103. package/dist/src/editor/core/override/Override.d.ts +8 -0
  104. package/dist/src/editor/core/plugin/Plugin.d.ts +7 -0
  105. package/dist/src/editor/core/position/Position.d.ts +37 -0
  106. package/dist/src/editor/core/range/RangeManager.d.ts +45 -0
  107. package/dist/src/editor/core/register/Register.d.ts +20 -0
  108. package/dist/src/editor/core/shortcut/Shortcut.d.ts +16 -0
  109. package/dist/src/editor/core/shortcut/keys/listKeys.d.ts +2 -0
  110. package/dist/src/editor/core/shortcut/keys/richtextKeys.d.ts +2 -0
  111. package/dist/src/editor/core/shortcut/keys/titleKeys.d.ts +2 -0
  112. package/dist/src/editor/core/worker/WorkerManager.d.ts +16 -0
  113. package/dist/src/editor/core/worker/works/catalog.d.ts +1 -0
  114. package/dist/src/editor/core/worker/works/group.d.ts +1 -0
  115. package/dist/src/editor/core/worker/works/value.d.ts +1 -0
  116. package/dist/src/editor/core/worker/works/wordCount.d.ts +1 -0
  117. package/dist/src/editor/core/zone/Zone.d.ts +21 -0
  118. package/dist/src/editor/core/zone/ZoneTip.d.ts +17 -0
  119. package/dist/src/editor/dataset/constant/Background.d.ts +2 -0
  120. package/dist/src/editor/dataset/constant/Badge.d.ts +2 -0
  121. package/dist/src/editor/dataset/constant/Checkbox.d.ts +2 -0
  122. package/dist/src/editor/dataset/constant/Common.d.ts +21 -0
  123. package/dist/src/editor/dataset/constant/ContextMenu.d.ts +60 -0
  124. package/dist/src/editor/dataset/constant/Control.d.ts +2 -0
  125. package/dist/src/editor/dataset/constant/Cursor.d.ts +3 -0
  126. package/dist/src/editor/dataset/constant/Editor.d.ts +6 -0
  127. package/dist/src/editor/dataset/constant/Element.d.ts +21 -0
  128. package/dist/src/editor/dataset/constant/Footer.d.ts +2 -0
  129. package/dist/src/editor/dataset/constant/Graffiti.d.ts +2 -0
  130. package/dist/src/editor/dataset/constant/Group.d.ts +2 -0
  131. package/dist/src/editor/dataset/constant/Header.d.ts +2 -0
  132. package/dist/src/editor/dataset/constant/ImgCaption.d.ts +2 -0
  133. package/dist/src/editor/dataset/constant/Label.d.ts +2 -0
  134. package/dist/src/editor/dataset/constant/LineBreak.d.ts +2 -0
  135. package/dist/src/editor/dataset/constant/LineNumber.d.ts +2 -0
  136. package/dist/src/editor/dataset/constant/List.d.ts +6 -0
  137. package/dist/src/editor/dataset/constant/PageBorder.d.ts +2 -0
  138. package/dist/src/editor/dataset/constant/PageBreak.d.ts +2 -0
  139. package/dist/src/editor/dataset/constant/PageNumber.d.ts +6 -0
  140. package/dist/src/editor/dataset/constant/Placeholder.d.ts +2 -0
  141. package/dist/src/editor/dataset/constant/Radio.d.ts +2 -0
  142. package/dist/src/editor/dataset/constant/Regular.d.ts +10 -0
  143. package/dist/src/editor/dataset/constant/Separator.d.ts +2 -0
  144. package/dist/src/editor/dataset/constant/Shortcut.d.ts +3 -0
  145. package/dist/src/editor/dataset/constant/Table.d.ts +2 -0
  146. package/dist/src/editor/dataset/constant/Title.d.ts +6 -0
  147. package/dist/src/editor/dataset/constant/Watermark.d.ts +2 -0
  148. package/dist/src/editor/dataset/constant/WhiteSpace.d.ts +2 -0
  149. package/dist/src/editor/dataset/constant/Zone.d.ts +2 -0
  150. package/dist/src/editor/dataset/enum/Area.d.ts +5 -0
  151. package/dist/src/editor/dataset/enum/Background.d.ts +10 -0
  152. package/dist/src/editor/dataset/enum/Block.d.ts +4 -0
  153. package/dist/src/editor/dataset/enum/Common.d.ts +26 -0
  154. package/dist/src/editor/dataset/enum/Control.d.ts +32 -0
  155. package/dist/src/editor/dataset/enum/Editor.d.ts +44 -0
  156. package/dist/src/editor/dataset/enum/Element.d.ts +21 -0
  157. package/dist/src/editor/dataset/enum/ElementStyle.d.ts +12 -0
  158. package/dist/src/editor/dataset/enum/Event.d.ts +5 -0
  159. package/dist/src/editor/dataset/enum/KeyMap.d.ts +83 -0
  160. package/dist/src/editor/dataset/enum/LineNumber.d.ts +4 -0
  161. package/dist/src/editor/dataset/enum/List.d.ts +20 -0
  162. package/dist/src/editor/dataset/enum/Observer.d.ts +6 -0
  163. package/dist/src/editor/dataset/enum/Row.d.ts +7 -0
  164. package/dist/src/editor/dataset/enum/Text.d.ts +12 -0
  165. package/dist/src/editor/dataset/enum/Title.d.ts +8 -0
  166. package/dist/src/editor/dataset/enum/VerticalAlign.d.ts +5 -0
  167. package/dist/src/editor/dataset/enum/Watermark.d.ts +4 -0
  168. package/dist/src/editor/dataset/enum/table/Table.d.ts +17 -0
  169. package/dist/src/editor/dataset/enum/table/TableTool.d.ts +4 -0
  170. package/dist/src/editor/index.d.ts +101 -0
  171. package/dist/src/editor/interface/Area.d.ts +55 -0
  172. package/dist/src/editor/interface/Background.d.ts +8 -0
  173. package/dist/src/editor/interface/Badge.d.ts +15 -0
  174. package/dist/src/editor/interface/Block.d.ts +15 -0
  175. package/dist/src/editor/interface/Catalog.d.ts +9 -0
  176. package/dist/src/editor/interface/Checkbox.d.ts +15 -0
  177. package/dist/src/editor/interface/Command.d.ts +3 -0
  178. package/dist/src/editor/interface/Common.d.ts +14 -0
  179. package/dist/src/editor/interface/Control.d.ts +198 -0
  180. package/dist/src/editor/interface/Cursor.d.ts +7 -0
  181. package/dist/src/editor/interface/Draw.d.ts +74 -0
  182. package/dist/src/editor/interface/Editor.d.ts +144 -0
  183. package/dist/src/editor/interface/Element.d.ts +240 -0
  184. package/dist/src/editor/interface/Event.d.ts +22 -0
  185. package/dist/src/editor/interface/EventBus.d.ts +26 -0
  186. package/dist/src/editor/interface/Footer.d.ts +8 -0
  187. package/dist/src/editor/interface/Graffiti.d.ts +13 -0
  188. package/dist/src/editor/interface/Group.d.ts +8 -0
  189. package/dist/src/editor/interface/Header.d.ts +8 -0
  190. package/dist/src/editor/interface/Label.d.ts +7 -0
  191. package/dist/src/editor/interface/LineBreak.d.ts +5 -0
  192. package/dist/src/editor/interface/LineNumber.d.ts +9 -0
  193. package/dist/src/editor/interface/Listener.d.ts +66 -0
  194. package/dist/src/editor/interface/Margin.d.ts +1 -0
  195. package/dist/src/editor/interface/PageBorder.d.ts +7 -0
  196. package/dist/src/editor/interface/PageBreak.d.ts +5 -0
  197. package/dist/src/editor/interface/PageNumber.d.ts +15 -0
  198. package/dist/src/editor/interface/Placeholder.d.ts +7 -0
  199. package/dist/src/editor/interface/Plugin.d.ts +3 -0
  200. package/dist/src/editor/interface/Position.d.ts +103 -0
  201. package/dist/src/editor/interface/Previewer.d.ts +13 -0
  202. package/dist/src/editor/interface/Radio.d.ts +15 -0
  203. package/dist/src/editor/interface/Range.d.ts +44 -0
  204. package/dist/src/editor/interface/Row.d.ts +23 -0
  205. package/dist/src/editor/interface/Search.d.ts +30 -0
  206. package/dist/src/editor/interface/Separator.d.ts +4 -0
  207. package/dist/src/editor/interface/Text.d.ts +13 -0
  208. package/dist/src/editor/interface/Title.d.ts +26 -0
  209. package/dist/src/editor/interface/Watermark.d.ts +15 -0
  210. package/dist/src/editor/interface/WhiteSpace.d.ts +5 -0
  211. package/dist/src/editor/interface/Zone.d.ts +3 -0
  212. package/dist/src/editor/interface/contextmenu/ContextMenu.d.ts +73 -0
  213. package/dist/src/editor/interface/i18n/I18n.d.ts +6 -0
  214. package/dist/src/editor/interface/shortcut/Shortcut.d.ts +13 -0
  215. package/dist/src/editor/interface/table/Colgroup.d.ts +4 -0
  216. package/dist/src/editor/interface/table/Table.d.ts +8 -0
  217. package/dist/src/editor/interface/table/Td.d.ts +35 -0
  218. package/dist/src/editor/interface/table/Tr.d.ts +10 -0
  219. package/dist/src/editor/utils/clipboard.d.ts +13 -0
  220. package/dist/src/editor/utils/element.d.ts +65 -0
  221. package/dist/src/editor/utils/hotkey.d.ts +1 -0
  222. package/dist/src/editor/utils/index.d.ts +34 -0
  223. package/dist/src/editor/utils/option.d.ts +3 -0
  224. package/dist/src/editor/utils/paragraph.d.ts +8 -0
  225. package/dist/src/editor/utils/print.d.ts +7 -0
  226. package/dist/src/editor/utils/ua.d.ts +4 -0
  227. package/package.json +1 -1
  228. package/dist/assets/alignment.d88c7c86.svg +0 -1
  229. package/dist/assets/arrow-left.f85352cf.svg +0 -1
  230. package/dist/assets/arrow-right.1499ec3c.svg +0 -1
  231. package/dist/assets/block.d93ff716.svg +0 -1
  232. package/dist/assets/bold.9b041cb0.svg +0 -1
  233. package/dist/assets/catalog.d4a039d5.svg +0 -1
  234. package/dist/assets/center.9cbc1716.svg +0 -1
  235. package/dist/assets/checkbox.028841bf.svg +0 -1
  236. package/dist/assets/close.70d16839.svg +0 -1
  237. package/dist/assets/close.9c6aa488.svg +0 -1
  238. package/dist/assets/codeblock.f3a0b0a7.svg +0 -1
  239. package/dist/assets/color.e467364a.svg +0 -1
  240. package/dist/assets/control.cdb06a96.svg +0 -1
  241. package/dist/assets/date.ebf6c298.svg +0 -1
  242. package/dist/assets/delete-col.4bc7b7e1.svg +0 -1
  243. package/dist/assets/delete-row-col.98cf4f89.svg +0 -1
  244. package/dist/assets/delete-row.5bd901f3.svg +0 -1
  245. package/dist/assets/delete-table.78487d9a.svg +0 -1
  246. package/dist/assets/exit-fullscreen.095667d8.svg +0 -1
  247. package/dist/assets/favicon.fbfa22e6.png +0 -0
  248. package/dist/assets/format.b4e40a32.svg +0 -1
  249. package/dist/assets/highlight.8e896be3.svg +0 -1
  250. package/dist/assets/hyperlink.a004b98b.svg +0 -1
  251. package/dist/assets/image-change.e1d36fce.svg +0 -1
  252. package/dist/assets/image-download.e70be036.svg +0 -1
  253. package/dist/assets/image-next.723c03ce.svg +0 -1
  254. package/dist/assets/image-pre.b690a920.svg +0 -1
  255. package/dist/assets/image.bdd4200c.svg +0 -1
  256. package/dist/assets/index.232112af.js +0 -95
  257. package/dist/assets/index.f0ab48d1.css +0 -1
  258. package/dist/assets/insert-bottom-row.157af373.svg +0 -1
  259. package/dist/assets/insert-left-col.349e08a6.svg +0 -1
  260. package/dist/assets/insert-right-col.57c425d9.svg +0 -1
  261. package/dist/assets/insert-row-col.23cd20c7.svg +0 -1
  262. package/dist/assets/insert-top-row.e91bd7ae.svg +0 -1
  263. package/dist/assets/italic.37e67191.svg +0 -1
  264. package/dist/assets/justify.b2efed4b.svg +0 -7
  265. package/dist/assets/latex.dcd59a60.svg +0 -1
  266. package/dist/assets/left.bd5ac83a.svg +0 -1
  267. package/dist/assets/line-dash-dot-dot.6a5fc08b.svg +0 -1
  268. package/dist/assets/line-dash-dot.b265be14.svg +0 -1
  269. package/dist/assets/line-dash-large-gap.54f6f106.svg +0 -1
  270. package/dist/assets/line-dash-small-gap.c7edb562.svg +0 -1
  271. package/dist/assets/line-dot.a1eb7d4b.svg +0 -1
  272. package/dist/assets/line-double.9a142773.svg +0 -1
  273. package/dist/assets/line-single.1d77ee2c.svg +0 -1
  274. package/dist/assets/line-wavy.30db23e3.svg +0 -1
  275. package/dist/assets/list.218db157.svg +0 -1
  276. package/dist/assets/load-word.6f9d39cb.svg +0 -1
  277. package/dist/assets/merge-cancel-cell.9cfbc8af.svg +0 -1
  278. package/dist/assets/merge-cell.41898a3a.svg +0 -1
  279. package/dist/assets/option.30cf6b62.svg +0 -1
  280. package/dist/assets/original-size.762bbfa1.svg +0 -1
  281. package/dist/assets/page-break.b7c0f09b.svg +0 -1
  282. package/dist/assets/page-mode.12c584e4.svg +0 -1
  283. package/dist/assets/page-scale-add.afb32753.svg +0 -1
  284. package/dist/assets/page-scale-minus.437c124e.svg +0 -1
  285. package/dist/assets/painter.74846ea5.svg +0 -1
  286. package/dist/assets/paper-direction.e0baa33d.svg +0 -1
  287. package/dist/assets/paper-margin.cdcaf903.svg +0 -1
  288. package/dist/assets/paper-size.415dc564.svg +0 -1
  289. package/dist/assets/print.6447a229.svg +0 -1
  290. package/dist/assets/radio.37698364.svg +0 -4
  291. package/dist/assets/redo.f5199371.svg +0 -1
  292. package/dist/assets/request-fullscreen.9f679a3d.svg +0 -1
  293. package/dist/assets/right.86c5b6ab.svg +0 -1
  294. package/dist/assets/risk-copy.cfaa5510.svg +0 -1
  295. package/dist/assets/rotate.eddbefb0.svg +0 -1
  296. package/dist/assets/row-margin.9432e8ef.svg +0 -1
  297. package/dist/assets/save.880ea3ab.svg +0 -1
  298. package/dist/assets/seal.119e5d3b.svg +0 -1
  299. package/dist/assets/search.089df67f.svg +0 -1
  300. package/dist/assets/separator.39224551.svg +0 -1
  301. package/dist/assets/signature.553c891c.svg +0 -1
  302. package/dist/assets/size-add.5305a5f4.svg +0 -1
  303. package/dist/assets/size-minus.98cd7296.svg +0 -1
  304. package/dist/assets/strikeout.333ad365.svg +0 -1
  305. package/dist/assets/submenu-dropdown.d0bb681b.svg +0 -1
  306. package/dist/assets/subscript.6ccfd46a.svg +0 -1
  307. package/dist/assets/superscript.04146d71.svg +0 -1
  308. package/dist/assets/table-border-all.ced726eb.svg +0 -1
  309. package/dist/assets/table-border-dash.8cfd45a5.svg +0 -1
  310. package/dist/assets/table-border-empty.0e58e33f.svg +0 -1
  311. package/dist/assets/table-border-external.eb6f9ad3.svg +0 -1
  312. package/dist/assets/table-border-internal.78ae9ca1.svg +0 -1
  313. package/dist/assets/table-border-td-back.a4f60939.svg +0 -1
  314. package/dist/assets/table-border-td-bottom.f28b5b1d.svg +0 -1
  315. package/dist/assets/table-border-td-forward.6e10f972.svg +0 -1
  316. package/dist/assets/table-border-td-left.81a7eb4b.svg +0 -1
  317. package/dist/assets/table-border-td-right.0513e99c.svg +0 -1
  318. package/dist/assets/table-border-td-top.2c0f9729.svg +0 -1
  319. package/dist/assets/table-border-td.3962a057.svg +0 -1
  320. package/dist/assets/table.ec6435b9.svg +0 -1
  321. package/dist/assets/title.a8e61a1b.svg +0 -1
  322. package/dist/assets/underline.695d43bb.svg +0 -1
  323. package/dist/assets/undo.5b47bbb8.svg +0 -1
  324. package/dist/assets/vertical-align-bottom.20c3eaa5.svg +0 -1
  325. package/dist/assets/vertical-align-middle.5bf6db6c.svg +0 -1
  326. package/dist/assets/vertical-align-top.bffbf9d9.svg +0 -1
  327. package/dist/assets/watermark.3690fb86.svg +0 -1
  328. package/dist/assets/word-tool.c4c4b5ab.svg +0 -1
  329. package/dist/assets/zoom-in.d38f91f8.svg +0 -1
  330. package/dist/assets/zoom-out.321f6c04.svg +0 -1
  331. package/dist/index.html +0 -491
@@ -0,0 +1,30 @@
1
+ import { EditorContext } from '../dataset/enum/Editor';
2
+ import { IElementPosition } from './Element';
3
+ import { IRange } from './Range';
4
+ export interface ISearchResultBasic {
5
+ type: EditorContext;
6
+ index: number;
7
+ groupId: string;
8
+ }
9
+ export interface ISearchResultRestArgs {
10
+ tableId?: string;
11
+ tableIndex?: number;
12
+ trIndex?: number;
13
+ tdIndex?: number;
14
+ tdId?: string;
15
+ startIndex?: number;
16
+ }
17
+ export type ISearchResult = ISearchResultBasic & ISearchResultRestArgs;
18
+ export interface ISearchResultContext {
19
+ range: IRange;
20
+ startPosition: IElementPosition;
21
+ endPosition: IElementPosition;
22
+ }
23
+ export interface IReplaceOption {
24
+ index?: number;
25
+ }
26
+ export interface ISearchOption {
27
+ isRegEnable?: boolean;
28
+ isIgnoreCase?: boolean;
29
+ isLimitSelection?: boolean;
30
+ }
@@ -0,0 +1,4 @@
1
+ export interface ISeparatorOption {
2
+ strokeStyle?: string;
3
+ lineWidth?: number;
4
+ }
@@ -0,0 +1,13 @@
1
+ import { TextDecorationStyle } from '../dataset/enum/Text';
2
+ export interface ITextMetrics {
3
+ width: number;
4
+ actualBoundingBoxAscent: number;
5
+ actualBoundingBoxDescent: number;
6
+ actualBoundingBoxLeft: number;
7
+ actualBoundingBoxRight: number;
8
+ fontBoundingBoxAscent: number;
9
+ fontBoundingBoxDescent: number;
10
+ }
11
+ export interface ITextDecoration {
12
+ style?: TextDecorationStyle;
13
+ }
@@ -0,0 +1,26 @@
1
+ import { EditorZone } from '../dataset/enum/Editor';
2
+ import { IElement } from './Element';
3
+ export interface ITitleSizeOption {
4
+ defaultFirstSize?: number;
5
+ defaultSecondSize?: number;
6
+ defaultThirdSize?: number;
7
+ defaultFourthSize?: number;
8
+ defaultFifthSize?: number;
9
+ defaultSixthSize?: number;
10
+ }
11
+ export type ITitleOption = ITitleSizeOption & {};
12
+ export interface ITitleRule {
13
+ deletable?: boolean;
14
+ disabled?: boolean;
15
+ }
16
+ export type ITitle = ITitleRule & {
17
+ conceptId?: string;
18
+ };
19
+ export interface IGetTitleValueOption {
20
+ conceptId: string;
21
+ }
22
+ export type IGetTitleValueResult = (ITitle & {
23
+ value: string | null;
24
+ elementList: IElement[];
25
+ zone: EditorZone;
26
+ })[];
@@ -0,0 +1,15 @@
1
+ import { NumberType } from '../dataset/enum/Common';
2
+ import { WatermarkType } from '../dataset/enum/Watermark';
3
+ export interface IWatermark {
4
+ data: string;
5
+ type?: WatermarkType;
6
+ width?: number;
7
+ height?: number;
8
+ color?: string;
9
+ opacity?: number;
10
+ size?: number;
11
+ font?: string;
12
+ repeat?: boolean;
13
+ numberType?: NumberType;
14
+ gap?: [horizontal: number, vertical: number];
15
+ }
@@ -0,0 +1,5 @@
1
+ export interface IWhiteSpaceOption {
2
+ disabled?: boolean;
3
+ color?: string;
4
+ radius?: number;
5
+ }
@@ -0,0 +1,3 @@
1
+ export interface IZoneOption {
2
+ tipDisabled?: boolean;
3
+ }
@@ -0,0 +1,73 @@
1
+ import { Command } from '../../core/command/Command';
2
+ import { EditorZone } from '../../dataset/enum/Editor';
3
+ import { DeepRequired } from '../Common';
4
+ import { IEditorOption } from '../Editor';
5
+ import { IElement } from '../Element';
6
+ export interface IContextMenuContext {
7
+ startElement: IElement | null;
8
+ endElement: IElement | null;
9
+ isReadonly: boolean;
10
+ editorHasSelection: boolean;
11
+ editorTextFocus: boolean;
12
+ isInTable: boolean;
13
+ isCrossRowCol: boolean;
14
+ zone: EditorZone;
15
+ trIndex: number | null;
16
+ tdIndex: number | null;
17
+ tableElement: IElement | null;
18
+ options: DeepRequired<IEditorOption>;
19
+ }
20
+ export interface IRegisterContextMenu {
21
+ key?: string;
22
+ i18nPath?: string;
23
+ isDivider?: boolean;
24
+ icon?: string;
25
+ name?: string;
26
+ shortCut?: string;
27
+ disable?: boolean;
28
+ when?: (payload: IContextMenuContext) => boolean;
29
+ callback?: (command: Command, context: IContextMenuContext) => void;
30
+ childMenus?: IRegisterContextMenu[];
31
+ }
32
+ export interface IContextmenuLang {
33
+ global: {
34
+ cut: string;
35
+ copy: string;
36
+ paste: string;
37
+ selectAll: string;
38
+ print: string;
39
+ };
40
+ control: {
41
+ delete: string;
42
+ };
43
+ hyperlink: {
44
+ delete: string;
45
+ cancel: string;
46
+ edit: string;
47
+ };
48
+ image: {
49
+ change: string;
50
+ saveAs: string;
51
+ textWrap: string;
52
+ textWrapType: {
53
+ embed: string;
54
+ upDown: string;
55
+ surround: string;
56
+ floatTop: string;
57
+ floatBottom: string;
58
+ };
59
+ };
60
+ table: {
61
+ insertRowCol: string;
62
+ insertTopRow: string;
63
+ insertBottomRow: string;
64
+ insertLeftCol: string;
65
+ insertRightCol: string;
66
+ deleteRowCol: string;
67
+ deleteRow: string;
68
+ deleteCol: string;
69
+ deleteTable: string;
70
+ mergeCell: string;
71
+ mergeCancelCell: string;
72
+ };
73
+ }
@@ -0,0 +1,6 @@
1
+ import { IDatePickerLang } from '../../core/draw/particle/date/DatePicker';
2
+ import { IContextmenuLang } from '../contextmenu/ContextMenu';
3
+ export interface ILang {
4
+ contextmenu: IContextmenuLang;
5
+ datePicker: IDatePickerLang;
6
+ }
@@ -0,0 +1,13 @@
1
+ import { Command } from '../../core/command/Command';
2
+ import { KeyMap } from '../../dataset/enum/KeyMap';
3
+ export interface IRegisterShortcut {
4
+ key: KeyMap;
5
+ ctrl?: boolean;
6
+ meta?: boolean;
7
+ mod?: boolean;
8
+ shift?: boolean;
9
+ alt?: boolean;
10
+ isGlobal?: boolean;
11
+ callback?: (command: Command) => void;
12
+ disable?: boolean;
13
+ }
@@ -0,0 +1,4 @@
1
+ export interface IColgroup {
2
+ id?: string;
3
+ width: number;
4
+ }
@@ -0,0 +1,8 @@
1
+ import { IPadding } from '../Common';
2
+ export interface ITableOption {
3
+ tdPadding?: IPadding;
4
+ defaultTrMinHeight?: number;
5
+ defaultColMinWidth?: number;
6
+ defaultBorderColor?: string;
7
+ overflow?: boolean;
8
+ }
@@ -0,0 +1,35 @@
1
+ import { VerticalAlign } from '../../dataset/enum/VerticalAlign';
2
+ import { TdBorder, TdSlash } from '../../dataset/enum/table/Table';
3
+ import { IElement, IElementPosition } from '../Element';
4
+ import { IRow } from '../Row';
5
+ export interface ITd {
6
+ conceptId?: string;
7
+ id?: string;
8
+ extension?: unknown;
9
+ externalId?: string;
10
+ x?: number;
11
+ y?: number;
12
+ width?: number;
13
+ height?: number;
14
+ colspan: number;
15
+ rowspan: number;
16
+ value: IElement[];
17
+ trIndex?: number;
18
+ tdIndex?: number;
19
+ isLastRowTd?: boolean;
20
+ isLastColTd?: boolean;
21
+ isLastTd?: boolean;
22
+ rowIndex?: number;
23
+ colIndex?: number;
24
+ rowList?: IRow[];
25
+ positionList?: IElementPosition[];
26
+ verticalAlign?: VerticalAlign;
27
+ backgroundColor?: string;
28
+ borderTypes?: TdBorder[];
29
+ slashTypes?: TdSlash[];
30
+ mainHeight?: number;
31
+ realHeight?: number;
32
+ realMinHeight?: number;
33
+ disabled?: boolean;
34
+ deletable?: boolean;
35
+ }
@@ -0,0 +1,10 @@
1
+ import { ITd } from './Td';
2
+ export interface ITr {
3
+ id?: string;
4
+ extension?: unknown;
5
+ externalId?: string;
6
+ height: number;
7
+ tdList: ITd[];
8
+ minHeight?: number;
9
+ pagingRepeat?: boolean;
10
+ }
@@ -0,0 +1,13 @@
1
+ import { DeepRequired } from '../interface/Common';
2
+ import { IEditorOption } from '../interface/Editor';
3
+ import { IElement } from '../interface/Element';
4
+ export interface IClipboardData {
5
+ text: string;
6
+ elementList: IElement[];
7
+ }
8
+ export declare function setClipboardData(data: IClipboardData): void;
9
+ export declare function getClipboardData(): IClipboardData | null;
10
+ export declare function removeClipboardData(): void;
11
+ export declare function writeClipboardItem(text: string, html: string, elementList: IElement[]): Promise<void>;
12
+ export declare function writeElementList(elementList: IElement[], options: DeepRequired<IEditorOption>): Promise<void>;
13
+ export declare function getIsClipboardContainFile(clipboardData: DataTransfer): boolean;
@@ -0,0 +1,65 @@
1
+ import { LocationPosition } from '../dataset/enum/Common';
2
+ import { RowFlex } from '../dataset/enum/Row';
3
+ import { DeepRequired } from '../interface/Common';
4
+ import { IEditorOption } from '../interface/Editor';
5
+ import { IElement } from '../interface/Element';
6
+ export declare function unzipElementList(elementList: IElement[]): IElement[];
7
+ interface IFormatElementListOption {
8
+ isHandleFirstElement?: boolean;
9
+ isForceCompensation?: boolean;
10
+ editorOptions: DeepRequired<IEditorOption>;
11
+ }
12
+ export declare function formatElementList(elementList: IElement[], options: IFormatElementListOption): void;
13
+ export declare function isSameElementExceptValue(source: IElement, target: IElement): boolean;
14
+ interface IPickElementOption {
15
+ extraPickAttrs?: Array<keyof IElement>;
16
+ }
17
+ export declare function pickElementAttr(payload: IElement, option?: IPickElementOption): IElement;
18
+ interface IZipElementListOption {
19
+ extraPickAttrs?: Array<keyof IElement>;
20
+ isClassifyArea?: boolean;
21
+ isClone?: boolean;
22
+ }
23
+ export declare function zipElementList(payload: IElement[], options?: IZipElementListOption): IElement[];
24
+ export declare function convertTextAlignToRowFlex(node: HTMLElement): RowFlex;
25
+ export declare function convertRowFlexToTextAlign(rowFlex: RowFlex): RowFlex.LEFT | RowFlex.CENTER | RowFlex.RIGHT | RowFlex.JUSTIFY | "justify";
26
+ export declare function convertRowFlexToJustifyContent(rowFlex: RowFlex): "center" | "flex-start" | "flex-end" | "space-between";
27
+ export declare function isTextLikeElement(element: IElement): boolean;
28
+ export declare function isTextElement(element: IElement): boolean;
29
+ export declare function getElementListText(elementList: IElement[]): string;
30
+ export declare function getAnchorElement(elementList: IElement[], anchorIndex: number): IElement | null;
31
+ export interface IFormatElementContextOption {
32
+ isBreakWhenWrap?: boolean;
33
+ ignoreContextKeys?: Array<keyof IElement>;
34
+ editorOptions?: DeepRequired<IEditorOption>;
35
+ }
36
+ export declare function formatElementContext(sourceElementList: IElement[], formatElementList: IElement[], anchorIndex: number, options?: IFormatElementContextOption): void;
37
+ export declare function convertElementToDom(element: IElement, options: DeepRequired<IEditorOption>): HTMLElement;
38
+ export declare function splitListElement(elementList: IElement[]): Map<number, IElement[]>;
39
+ export interface IElementListGroupRowFlex {
40
+ rowFlex: RowFlex | null;
41
+ data: IElement[];
42
+ }
43
+ export declare function groupElementListByRowFlex(elementList: IElement[]): IElementListGroupRowFlex[];
44
+ export declare function createDomFromElementList(elementList: IElement[], options?: IEditorOption): HTMLDivElement;
45
+ export declare function convertTextNodeToElement(textNode: Element | Node): IElement | null;
46
+ export interface IGetElementListByHTMLOption {
47
+ innerWidth: number;
48
+ container?: HTMLDivElement;
49
+ }
50
+ export declare function getElementListByHTML(htmlText: string, options: IGetElementListByHTMLOption): IElement[];
51
+ export declare function getTextFromElementList(elementList: IElement[]): string;
52
+ export declare function getSlimCloneElementList(elementList: IElement[]): IElement[];
53
+ export declare function getIsBlockElement(element?: IElement): boolean;
54
+ export declare function replaceHTMLElementTag(oldDom: HTMLElement, tagName: keyof HTMLElementTagNameMap): HTMLElement;
55
+ export declare function pickSurroundElementList(elementList: IElement[]): IElement[];
56
+ export declare function deleteSurroundElementList(elementList: IElement[], pageNo: number): void;
57
+ export declare function getNonHideElementIndex(elementList: IElement[], index: number, position?: LocationPosition): number;
58
+ /**
59
+ * 将 DOM 元素转换为符合 XHTML 规范的 HTML 字符串
60
+ * 利用浏览器原生 XMLSerializer 确保标签闭合规范
61
+ * @param dom DOM 元素
62
+ * @returns 符合 XHTML 规范的 HTML 字符串
63
+ */
64
+ export declare function convertToXHTML(dom: HTMLElement): string;
65
+ export {};
@@ -0,0 +1 @@
1
+ export declare function isMod(evt: KeyboardEvent | MouseEvent): boolean;
@@ -0,0 +1,34 @@
1
+ import { IElementFillRect } from '../interface/Element';
2
+ export declare function debounce<T extends unknown[]>(func: (...arg: T) => unknown, delay: number): (this: unknown, ...args: T) => void;
3
+ export declare function throttle<T extends unknown[]>(func: (...arg: T) => unknown, delay: number): (this: unknown, ...args: T) => void;
4
+ export declare function deepCloneOmitKeys<T, K>(obj: T, omitKeys: (keyof K)[]): T;
5
+ export declare function deepClone<T>(obj: T): T;
6
+ export declare function isBody(node: Element): boolean;
7
+ export declare function findParent(node: Element, filterFn: Function, includeSelf: boolean): Element | null;
8
+ export declare function getUUID(): string;
9
+ export declare function splitText(text: string): string[];
10
+ export declare function downloadFile(href: string, fileName: string): void;
11
+ export declare function threeClick(dom: HTMLElement, fn: (evt: MouseEvent) => void): void;
12
+ export declare function isObject(type: unknown): type is Record<string, unknown>;
13
+ export declare function isArray(type: unknown): type is Array<unknown>;
14
+ export declare function isNumber(type: unknown): type is number;
15
+ export declare function isString(type: unknown): type is string;
16
+ export declare function mergeObject<T>(source: T, target: T): T;
17
+ export declare function nextTick(fn: Function): void;
18
+ export declare function convertNumberToChinese(num: number): string;
19
+ export declare function cloneProperty<T>(properties: (keyof T)[], sourceElement: T, targetElement: T): void;
20
+ export declare function deleteProperty<T>(sourceKeys: T[], deleteKeys: T[]): void;
21
+ export declare function pickObject<T>(object: T, pickKeys: (keyof T)[]): T;
22
+ export declare function omitObject<T>(object: T, omitKeys: (keyof T)[]): T;
23
+ export declare function convertStringToBase64(input: string): string;
24
+ export declare function findScrollContainer(element: HTMLElement): HTMLElement;
25
+ export declare function isArrayEqual(arr1: unknown[], arr2: unknown[]): boolean;
26
+ export declare function isObjectEqual(obj1: unknown, obj2: unknown): boolean;
27
+ export declare function isRectIntersect(rect1: IElementFillRect, rect2: IElementFillRect): boolean;
28
+ export declare function isNonValue(value: unknown): boolean;
29
+ export declare function normalizeLineBreak(text: string): string;
30
+ export declare function indexOf(source: string, search: string | RegExp, fromIndex?: number): {
31
+ index: number;
32
+ length: number;
33
+ };
34
+ export declare function scrollIntoView(container: HTMLElement, selected: HTMLElement): void;
@@ -0,0 +1,3 @@
1
+ import { DeepRequired } from '../interface/Common';
2
+ import { IEditorOption } from '../interface/Editor';
3
+ export declare function mergeOption(options?: IEditorOption): DeepRequired<IEditorOption>;
@@ -0,0 +1,8 @@
1
+ import { IElement } from '../interface/Element';
2
+ /**
3
+ * 获取段落索引
4
+ * @param elementList - 元素列表
5
+ * @param index - 目标索引
6
+ * @returns 段落索引
7
+ */
8
+ export declare function getParagraphNo(elementList: IElement[], index: number): number;
@@ -0,0 +1,7 @@
1
+ import { PaperDirection } from '../dataset/enum/Editor';
2
+ export interface IPrintImageBase64Option {
3
+ width: number;
4
+ height: number;
5
+ direction?: PaperDirection;
6
+ }
7
+ export declare function printImageBase64(base64List: string[], options: IPrintImageBase64Option): void;
@@ -0,0 +1,4 @@
1
+ export declare const isApple: boolean;
2
+ export declare const isIOS: boolean;
3
+ export declare const isMobile: boolean;
4
+ export declare const isFirefox: boolean;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@agile_jy/word-editor",
3
3
  "author": "JIANGYONG",
4
4
  "license": "MIT",
5
- "version": "0.0.1-beta.12",
5
+ "version": "0.0.1-beta.13",
6
6
  "description": "rich text editor by canvas/svg",
7
7
  "publishConfig": {
8
8
  "registry": "https://registry.npmjs.org/",
@@ -1 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M2 13h12v1H2v-1zm0-3h12v1H2v-1zm0-3h12v1H2V7zm0-6h12v1H2V1zm0 3h12v1H2V4z" fill="#3D4757" fill-rule="evenodd"/></svg>
@@ -1 +0,0 @@
1
- <svg width="4" height="7" xmlns="http://www.w3.org/2000/svg"><path fill="#6F6F6F" d="M0 3.5L4 0v7z" fill-rule="evenodd"/></svg>
@@ -1 +0,0 @@
1
- <svg width="4" height="7" xmlns="http://www.w3.org/2000/svg"><path fill="#6F6F6F" d="M4 3.5L0 0v7z" fill-rule="evenodd"/></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><g fill="#3D4757"><path d="M8.923 11v1h-2A2 2 0 015 10.55c.328-.15.638-.335.923-.55a1 1 0 001 1h2zm0-6h-2a1 1 0 00-1 1A4.997 4.997 0 005 5.45 2 2 0 016.923 4h2v1z"/><path d="M4 10a2 2 0 100-4 2 2 0 000 4zm0 1a3 3 0 110-6 3 3 0 010 6zm6-9a1 1 0 00-1 1v3a1 1 0 001 1h3a1 1 0 001-1V3a1 1 0 00-1-1h-3zm0-1h3a2 2 0 012 2v3a2 2 0 01-2 2h-3a2 2 0 01-2-2V3a2 2 0 012-2zm0 10a1 1 0 00-1 1v1a1 1 0 001 1h3a1 1 0 001-1v-1a1 1 0 00-1-1h-3zm0-1h3a2 2 0 012 2v1a2 2 0 01-2 2h-3a2 2 0 01-2-2v-1a2 2 0 012-2z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8.131 6.9c2.035 0 2.569-.9 2.569-1.869 0-.968-.64-1.831-2.623-1.831H5.2v3.7h2.931zm.524 5.9c2.045 0 2.545-1.305 2.545-2.3 0-.985-.506-2.4-2.81-2.4H5.2v4.7h3.455zM4 2h4.71c2.367 0 3.19 1.583 3.19 3s-.325 1.852-1.1 2.5c1.2.5 1.569 1.379 1.6 3 .03 1.606-.586 3.5-3.769 3.5H4V2z" fill="#3D4757" fill-rule="evenodd"/></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g fill="#3D4757"><path d="M13 0c.552 0 1 .48 1 1.071V13.93c0 .59-.448 1.07-1 1.07H3c-.552 0-1-.48-1-1.071V1.07C2 .48 2.448 0 3 0h10zm0 1H3v13h10V1z"/><path d="M5 10v1H4v-1h1zm6 0v1H6v-1h5zM5 7v1H4V7h1zm6 0v1H6V7h5zM5 4v1H4V4h1zm6 0v1H6V4h5z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M2 13h12v1H2v-1zm2-3h8v1H4v-1zM2 7h12v1H2V7zm0-6h12v1H2V1zm2 3h8v1H4V4z" fill="#3D4757" fill-rule="evenodd"/></svg>
@@ -1 +0,0 @@
1
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 16 16" xml:space="preserve"><style>.st0{fill:#3d4757}</style><g id="_x30_1-文字_x2F_01开始_x2F_任务列表-16px"><path id="合并形状" class="st0" d="M10.1 2H2v11h11V8.7l1-1V13c0 .6-.4 1-1 1H2c-.6 0-1-.4-1-1V2c0-.6.4-1 1-1h9.1l-1 1z"/><path id="路径" class="st0" d="M7.7 8.5l5.7-5.8.9.8-6.1 5.9-.5.5-3.9-3.4.8-.7z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="32" height="32" xmlns="http://www.w3.org/2000/svg"><path d="M23.97 7l1.415 1.414-7.779 7.778 7.779 7.779-1.414 1.414-7.779-7.779-7.778 7.779L7 23.97l7.778-7.779L7 8.414 8.414 7l7.778 7.778L23.971 7z" fill="#3D4757" fill-rule="evenodd"/></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8.9 8.192l4.242 4.243-.707.707L8.192 8.9 3.95 13.142l-.707-.707 4.242-4.243L3.243 3.95l.707-.707 4.242 4.242 4.243-4.242.707.707L8.9 8.192z" fill="#6A6A6A" fill-rule="evenodd"/></svg>
@@ -1 +0,0 @@
1
- <svg width="14" height="14" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path stroke="#525C6F" stroke-linejoin="round" d="M4 4.5L1.5 7 4 9.5M10 4.5L12.5 7 10 9.5"></path><rect fill="#525C6F" transform="scale(1 -1) rotate(70 16.711 0)" x="2.671" y="6.53" width="8" height="1" rx=".2"></rect></g></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M7.997 3.429L6.398 8h3.2L7.997 3.429zM8.497 2L12 12h-1L9.949 9h-3.9L5 12H4L7.496 2h1z" fill="#3D4757" fill-rule="evenodd"/></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M9.793 1.5H3a.5.5 0 00-.5.5v12a.5.5 0 00.5.5h9a.5.5 0 00.5-.5V4.207L9.793 1.5z" stroke="#3D4757"/><g fill="#3D4757"><path d="M7 7h1v5H7z"/><path d="M5 7h5v1H5z"/></g><path fill="#3D4757" fill-rule="nonzero" d="M9 2h1v3H9z"/><path fill="#3D4757" fill-rule="nonzero" d="M9 4h3v1H9z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><g fill="#3D4757" fill-rule="evenodd"><path d="M7.5 14.154a5.654 5.654 0 100-11.308 5.654 5.654 0 000 11.308zm0 .846a6.5 6.5 0 110-13 6.5 6.5 0 010 13z" fill-rule="nonzero"/><path d="M8 8h4v1H7V4h1v4z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path stroke="#929AA8" d="M5.5 7.5v-6h4v6z"/><path fill="#3D4757" d="M13 15V3h1v12zM1 15V3h1v12zm4 0v-1h1v1zm1-1v-1h1v1zm1-1v-1h1v1zm-1-1v-1h1v1zm-1-1v-1h1v1zm3 1v-1h1v1zm0 2v-1h1v1zm1-3v-1h1v1zm0 4v-1h1v1z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path stroke="#929AA8" d="M8.5 6.5h6v2h-6z"/><path fill="#3D4757" d="M2 12h11v1H2zM2 2h11v1H2zm.63 3L7 9.35l-.635.65L2 5.63z"/><path fill="#3D4757" d="M2 9.363L6.355 5 7 5.707 2.695 10z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path stroke="#929AA8" d="M8.5 5.5h6v4h-6z"/><path fill="#3D4757" d="M1 13h12v1H1zM1 1h12v1H1zm0 4h1v1H1zm1 1h1v1H2zm1 1h1v1H3zm1-1h1v1H4zm1-1h1v1H5zM4 8h1v1H4zM2 8h1v1H2zm3 1h1v1H5zM1 9h1v1H1z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><g fill="#3D4757" fill-rule="evenodd"><path d="M14 13h-1v-3H2v3H1v-3a1 1 0 011-1h11a1 1 0 011 1v3z" fill-rule="nonzero"/><path d="M5.625 2L10 6.375 9.375 7 5 2.625z"/><path d="M5 6.375L9.375 2l.625.625L5.625 7z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><g fill="#3D4757" fill-rule="evenodd"><path d="M9 9h1v4H9z"/><path d="M9 9h4v1H9zM7 7H6V3h1z"/><path d="M7 7H3V6h4z"/></g></svg>
Binary file
@@ -1 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g fill="#3D4757" fill-rule="evenodd"><path d="M8.213 13H6.8l6.636-6.636-4.243-4.243-7.07 7.071L5.928 13H4.515L1.06 9.546a.5.5 0 010-.707L8.839 1.06a.5.5 0 01.707 0l4.95 4.95a.5.5 0 010 .707L8.213 13z" fill-rule="nonzero"/><path d="M4.536 6.364l4.95 4.95-.707.707-4.95-4.95zM4.521 13h10.03v1H5.496z"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g fill="#3D4757" fill-rule="evenodd"><path d="M13.31 5h-1.92a2.203 2.203 0 00-.39-.034c-.135 0-.27.012-.402.034H10v.18c-.578.256-1 .714-1 1.214v1.928c0 .196.117.43.3.658v1.23a3.543 3.543 0 01-.3-.4V11H8V1h1v4.265C9 4.763 10 4 10.942 4c1.19 0 1.92.422 2.367 1zM2 6c-.03-.498-.175-2 2.5-2C7.11 4 7 5 7 6.902V11H5.984v-.993c.38.662-.115.993-1.484.993C2.708 11 2 9.931 2 9c0-1.428.447-2 2.5-2h1.484c0-1 .031-2-1.484-2-1.533 0-1.577.485-1.577 1H2zm2.5 2C3.601 8 3 7.768 3 9c0 1.31.438 1 1.5 1 .617 0 1.484-.665 1.484-1.847V8H4.5z"/><path d="M13.085 6.316l-2.814 3a1 1 0 101.458 1.368l2.815-3a1 1 0 00-1.459-1.368z" fill-rule="nonzero"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><g transform="rotate(45 5.5 13.328)" fill="#3D4757" fill-rule="evenodd"><path d="M7 6H6V3.515a2.5 2.5 0 10-5 0V6H0V3.515a3.5 3.5 0 117 0V6zm0 4v2.5a3.5 3.5 0 01-7 0V10h1v2.5a2.5 2.5 0 105 0V10h1z" fill-rule="nonzero"/><rect x="3.062" y="5.209" width="1" height="5.5" rx=".5"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g transform="translate(2 4)" fill="#3D4757"><circle fill-rule="nonzero" cx="3" cy="1" r="1"/><path d="M7.473 8.223L3.47 4.107 0 7.667v-1.5C1.715 4.6 2.707 3.664 2.975 3.358c.402-.457.651-.39 1.042 0L7.473 7 9.96 4.349c.414-.462.62-.462 1.011-.071L13 7.06v1.5l-2.51-3.41-3.017 3.072z"/></g><path d="M6 1.5H1.5v12h13v-4V13a.5.5 0 01-.5.5H2a.5.5 0 01-.5-.5V2a.5.5 0 01.5-.5h4zm8.5 8V6l-.5.5h1l-.5-.5v3.5zM6 1.5h4L9.5 1v1l.5-.5H6z" stroke="#3D4757"/><path d="M13.085 1.316l-3.814 4a1 1 0 001.458 1.368l3.815-4a1 1 0 10-1.459-1.368z" fill="#3D4757" fill-rule="nonzero"/></g></svg>
@@ -1 +0,0 @@
1
- <svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 15v3.5h15V15H21v5H3v-5h1.5zm8.232-11.226v9.196l4.05-4.05 1.06 1.06-5.834 5.834-5.833-5.833 1.06-1.06 3.998 3.996V3.774h1.5z" fill="#3D4757"/></svg>
@@ -1 +0,0 @@
1
- <svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.5 4.063L13.125 10 7.5 15.938" stroke="#3D4757" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -1 +0,0 @@
1
- <svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.5 4.063L6.875 10l5.625 5.938" stroke="#3D4757" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -1 +0,0 @@
1
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 16 16" xml:space="preserve"><style>.st0{fill:#3d4757}</style><g id="_x30_0-公共_x2F_02工具栏_x2F_插入图片-16px-"><g id="Group-19" transform="translate(1 1)"><path id="Combined-Shape" class="st0" d="M1 0h12c.6 0 1 .4 1 1v11c0 .6-.4 1-1 1H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1zm0 1v11h12V1H1z"/><circle id="椭圆形" class="st0" cx="10" cy="4" r="1"/><path id="Path" class="st0" d="M8.5 11.2l-4-4.1L1 10.7V9.2c1.7-1.6 2.7-2.5 3-2.8.4-.5.7-.4 1 0L8.5 10 11 7.3c.4-.5.6-.5 1-.1l2 2.8v1.5l-2.5-3.4-3 3.1z"/></g></g></svg>