adtec-core-package 2.9.9 → 3.0.1

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 (507) hide show
  1. package/auto-imports.d.ts +299 -0
  2. package/package.json +99 -5
  3. package/prebuilt/umo-editor/favicon.ico +0 -0
  4. package/prebuilt/umo-editor/umo-editor.css +1 -0
  5. package/prebuilt/umo-editor/umo-editor.js +85998 -0
  6. package/prebuilt/umo-editor/umo-editor.js.map +1 -0
  7. package/scripts/build-umo.mjs +47 -0
  8. package/scripts/generate-umo-entry.mjs +81 -0
  9. package/scripts/inject-umo-composable-imports.mjs +66 -0
  10. package/scripts/patch-es-drager-vue35.mjs +68 -0
  11. package/scripts/patch-tiptap-vue3.mjs +117 -0
  12. package/scripts/prepare-umo-source.mjs +122 -0
  13. package/src/components/RichTextEditor/RichTextEditor.vue +566 -398
  14. package/src/components/RichTextEditor/installUmoEditorApp.ts +31 -0
  15. package/src/components/RichTextEditor/richTextHtmlUtils.ts +151 -17
  16. package/src/components/RichTextEditor/umo-editor.d.ts +9 -0
  17. package/src/components/editor-main/src/assets/icons/align-center.svg +1 -0
  18. package/src/components/editor-main/src/assets/icons/align-distributed.svg +1 -0
  19. package/src/components/editor-main/src/assets/icons/align-justify.svg +1 -0
  20. package/src/components/editor-main/src/assets/icons/align-left.svg +1 -0
  21. package/src/components/editor-main/src/assets/icons/align-right.svg +1 -0
  22. package/src/components/editor-main/src/assets/icons/arrow-down.svg +1 -0
  23. package/src/components/editor-main/src/assets/icons/audio.svg +1 -0
  24. package/src/components/editor-main/src/assets/icons/auto-width.svg +1 -0
  25. package/src/components/editor-main/src/assets/icons/background-color.svg +1 -0
  26. package/src/components/editor-main/src/assets/icons/barcode.svg +1 -0
  27. package/src/components/editor-main/src/assets/icons/block-add.svg +1 -0
  28. package/src/components/editor-main/src/assets/icons/block-menu.svg +1 -0
  29. package/src/components/editor-main/src/assets/icons/bold.svg +1 -0
  30. package/src/components/editor-main/src/assets/icons/bookmark.svg +10 -0
  31. package/src/components/editor-main/src/assets/icons/border-none.svg +1 -0
  32. package/src/components/editor-main/src/assets/icons/border.svg +1 -0
  33. package/src/components/editor-main/src/assets/icons/break-marks.svg +1 -0
  34. package/src/components/editor-main/src/assets/icons/bullet-list-2.svg +1 -0
  35. package/src/components/editor-main/src/assets/icons/bullet-list-circle.svg +1 -0
  36. package/src/components/editor-main/src/assets/icons/bullet-list-disc.svg +1 -0
  37. package/src/components/editor-main/src/assets/icons/bullet-list-square.svg +1 -0
  38. package/src/components/editor-main/src/assets/icons/bullet-list.svg +1 -0
  39. package/src/components/editor-main/src/assets/icons/callout.svg +1 -0
  40. package/src/components/editor-main/src/assets/icons/check.svg +1 -0
  41. package/src/components/editor-main/src/assets/icons/checkbox.svg +1 -0
  42. package/src/components/editor-main/src/assets/icons/chinese-case.svg +1 -0
  43. package/src/components/editor-main/src/assets/icons/clear-cache.svg +1 -0
  44. package/src/components/editor-main/src/assets/icons/clear-format.svg +1 -0
  45. package/src/components/editor-main/src/assets/icons/clickable.svg +1 -0
  46. package/src/components/editor-main/src/assets/icons/close.svg +1 -0
  47. package/src/components/editor-main/src/assets/icons/code-block.svg +1 -0
  48. package/src/components/editor-main/src/assets/icons/code-line-number.svg +1 -0
  49. package/src/components/editor-main/src/assets/icons/code-word-wrap.svg +1 -0
  50. package/src/components/editor-main/src/assets/icons/code.svg +1 -0
  51. package/src/components/editor-main/src/assets/icons/color.svg +1 -0
  52. package/src/components/editor-main/src/assets/icons/columns.svg +1 -0
  53. package/src/components/editor-main/src/assets/icons/copy.svg +1 -0
  54. package/src/components/editor-main/src/assets/icons/copyright.svg +1 -0
  55. package/src/components/editor-main/src/assets/icons/date.svg +1 -0
  56. package/src/components/editor-main/src/assets/icons/details.svg +1 -0
  57. package/src/components/editor-main/src/assets/icons/diagrams.svg +1 -0
  58. package/src/components/editor-main/src/assets/icons/download.svg +1 -0
  59. package/src/components/editor-main/src/assets/icons/echarts.svg +1 -0
  60. package/src/components/editor-main/src/assets/icons/edit.svg +1 -0
  61. package/src/components/editor-main/src/assets/icons/embed.svg +1 -0
  62. package/src/components/editor-main/src/assets/icons/emoji.svg +1 -0
  63. package/src/components/editor-main/src/assets/icons/equal-proportion.svg +1 -0
  64. package/src/components/editor-main/src/assets/icons/exit.svg +1 -0
  65. package/src/components/editor-main/src/assets/icons/expand-down.svg +1 -0
  66. package/src/components/editor-main/src/assets/icons/file-view.svg +1 -0
  67. package/src/components/editor-main/src/assets/icons/file.svg +1 -0
  68. package/src/components/editor-main/src/assets/icons/font-size-decrease.svg +1 -0
  69. package/src/components/editor-main/src/assets/icons/font-size-increase.svg +1 -0
  70. package/src/components/editor-main/src/assets/icons/footnote.svg +1 -0
  71. package/src/components/editor-main/src/assets/icons/format-painter.svg +1 -0
  72. package/src/components/editor-main/src/assets/icons/format.svg +1 -0
  73. package/src/components/editor-main/src/assets/icons/full-screen-exit.svg +1 -0
  74. package/src/components/editor-main/src/assets/icons/full-screen.svg +1 -0
  75. package/src/components/editor-main/src/assets/icons/hand-drawn.svg +1 -0
  76. package/src/components/editor-main/src/assets/icons/hard-break.svg +1 -0
  77. package/src/components/editor-main/src/assets/icons/heading.svg +1 -0
  78. package/src/components/editor-main/src/assets/icons/help.svg +1 -0
  79. package/src/components/editor-main/src/assets/icons/hide-toolbar.svg +1 -0
  80. package/src/components/editor-main/src/assets/icons/highlight.svg +1 -0
  81. package/src/components/editor-main/src/assets/icons/hr.svg +1 -0
  82. package/src/components/editor-main/src/assets/icons/html5.svg +1 -0
  83. package/src/components/editor-main/src/assets/icons/image-draggable.svg +1 -0
  84. package/src/components/editor-main/src/assets/icons/image-failed.svg +1 -0
  85. package/src/components/editor-main/src/assets/icons/image-flip.svg +1 -0
  86. package/src/components/editor-main/src/assets/icons/image-inline.svg +1 -0
  87. package/src/components/editor-main/src/assets/icons/image-preview.svg +1 -0
  88. package/src/components/editor-main/src/assets/icons/image-remove-background.svg +1 -0
  89. package/src/components/editor-main/src/assets/icons/image-reset.svg +1 -0
  90. package/src/components/editor-main/src/assets/icons/image-rotate.svg +1 -0
  91. package/src/components/editor-main/src/assets/icons/image.svg +1 -0
  92. package/src/components/editor-main/src/assets/icons/indent.svg +1 -0
  93. package/src/components/editor-main/src/assets/icons/italic.svg +1 -0
  94. package/src/components/editor-main/src/assets/icons/laser-pointer.svg +1 -0
  95. package/src/components/editor-main/src/assets/icons/layout-page.svg +1 -0
  96. package/src/components/editor-main/src/assets/icons/layout-web.svg +1 -0
  97. package/src/components/editor-main/src/assets/icons/letter-spacing.svg +1 -0
  98. package/src/components/editor-main/src/assets/icons/line-height.svg +1 -0
  99. package/src/components/editor-main/src/assets/icons/line-number.svg +1 -0
  100. package/src/components/editor-main/src/assets/icons/link.svg +1 -0
  101. package/src/components/editor-main/src/assets/icons/loading.svg +1 -0
  102. package/src/components/editor-main/src/assets/icons/locale.svg +1 -0
  103. package/src/components/editor-main/src/assets/icons/margin.svg +1 -0
  104. package/src/components/editor-main/src/assets/icons/markdown.svg +1 -0
  105. package/src/components/editor-main/src/assets/icons/math.svg +1 -0
  106. package/src/components/editor-main/src/assets/icons/mention.svg +1 -0
  107. package/src/components/editor-main/src/assets/icons/menu.svg +1 -0
  108. package/src/components/editor-main/src/assets/icons/mermaid.svg +1 -0
  109. package/src/components/editor-main/src/assets/icons/mind-map.svg +1 -0
  110. package/src/components/editor-main/src/assets/icons/minus.svg +1 -0
  111. package/src/components/editor-main/src/assets/icons/new-window.svg +1 -0
  112. package/src/components/editor-main/src/assets/icons/node-add.svg +1 -0
  113. package/src/components/editor-main/src/assets/icons/node-clear-format.svg +1 -0
  114. package/src/components/editor-main/src/assets/icons/node-copy.svg +1 -0
  115. package/src/components/editor-main/src/assets/icons/node-cut.svg +2 -0
  116. package/src/components/editor-main/src/assets/icons/node-delete-2.svg +1 -0
  117. package/src/components/editor-main/src/assets/icons/node-delete.svg +1 -0
  118. package/src/components/editor-main/src/assets/icons/node-duplicate.svg +1 -0
  119. package/src/components/editor-main/src/assets/icons/node-switch.svg +1 -0
  120. package/src/components/editor-main/src/assets/icons/ordered-list-2.svg +1 -0
  121. package/src/components/editor-main/src/assets/icons/ordered-list-decimal-leading-zero.svg +1 -0
  122. package/src/components/editor-main/src/assets/icons/ordered-list-decimal.svg +1 -0
  123. package/src/components/editor-main/src/assets/icons/ordered-list-lower-latin.svg +1 -0
  124. package/src/components/editor-main/src/assets/icons/ordered-list-lower-roman.svg +1 -0
  125. package/src/components/editor-main/src/assets/icons/ordered-list-simp-chinese-formal.svg +12 -0
  126. package/src/components/editor-main/src/assets/icons/ordered-list-trad-chinese-informal.svg +12 -0
  127. package/src/components/editor-main/src/assets/icons/ordered-list-upper-latin.svg +1 -0
  128. package/src/components/editor-main/src/assets/icons/ordered-list-upper-roman.svg +1 -0
  129. package/src/components/editor-main/src/assets/icons/ordered-list.svg +1 -0
  130. package/src/components/editor-main/src/assets/icons/outdent.svg +1 -0
  131. package/src/components/editor-main/src/assets/icons/page-background.svg +1 -0
  132. package/src/components/editor-main/src/assets/icons/page-break.svg +1 -0
  133. package/src/components/editor-main/src/assets/icons/page-footer.svg +1 -0
  134. package/src/components/editor-main/src/assets/icons/page-header.svg +1 -0
  135. package/src/components/editor-main/src/assets/icons/page-margin.svg +1 -0
  136. package/src/components/editor-main/src/assets/icons/page-orientation.svg +1 -0
  137. package/src/components/editor-main/src/assets/icons/page-size.svg +1 -0
  138. package/src/components/editor-main/src/assets/icons/page.svg +1 -0
  139. package/src/components/editor-main/src/assets/icons/palette-color.svg +1 -0
  140. package/src/components/editor-main/src/assets/icons/paragraph.svg +1 -0
  141. package/src/components/editor-main/src/assets/icons/pdf.svg +1 -0
  142. package/src/components/editor-main/src/assets/icons/plus.svg +1 -0
  143. package/src/components/editor-main/src/assets/icons/preview.svg +1 -0
  144. package/src/components/editor-main/src/assets/icons/print.svg +1 -0
  145. package/src/components/editor-main/src/assets/icons/qrcode.svg +1 -0
  146. package/src/components/editor-main/src/assets/icons/quote.svg +1 -0
  147. package/src/components/editor-main/src/assets/icons/redo.svg +1 -0
  148. package/src/components/editor-main/src/assets/icons/register.js +47 -0
  149. package/src/components/editor-main/src/assets/icons/reload.svg +1 -0
  150. package/src/components/editor-main/src/assets/icons/remove.svg +1 -0
  151. package/src/components/editor-main/src/assets/icons/reply.svg +1 -0
  152. package/src/components/editor-main/src/assets/icons/search-replace.svg +1 -0
  153. package/src/components/editor-main/src/assets/icons/select-all.svg +1 -0
  154. package/src/components/editor-main/src/assets/icons/selected.svg +1 -0
  155. package/src/components/editor-main/src/assets/icons/setting.svg +1 -0
  156. package/src/components/editor-main/src/assets/icons/share.svg +1 -0
  157. package/src/components/editor-main/src/assets/icons/shortcut.svg +1 -0
  158. package/src/components/editor-main/src/assets/icons/signature.svg +1 -0
  159. package/src/components/editor-main/src/assets/icons/skin.svg +1 -0
  160. package/src/components/editor-main/src/assets/icons/spellcheck.svg +1 -0
  161. package/src/components/editor-main/src/assets/icons/strike.svg +1 -0
  162. package/src/components/editor-main/src/assets/icons/subscript.svg +1 -0
  163. package/src/components/editor-main/src/assets/icons/superscript.svg +1 -0
  164. package/src/components/editor-main/src/assets/icons/symbol.svg +1 -0
  165. package/src/components/editor-main/src/assets/icons/table-add-column-after.svg +1 -0
  166. package/src/components/editor-main/src/assets/icons/table-add-column-before.svg +1 -0
  167. package/src/components/editor-main/src/assets/icons/table-add-row-after.svg +1 -0
  168. package/src/components/editor-main/src/assets/icons/table-add-row-before.svg +1 -0
  169. package/src/components/editor-main/src/assets/icons/table-cells-align.svg +1 -0
  170. package/src/components/editor-main/src/assets/icons/table-cells-background.svg +1 -0
  171. package/src/components/editor-main/src/assets/icons/table-delete-column.svg +1 -0
  172. package/src/components/editor-main/src/assets/icons/table-delete-row.svg +1 -0
  173. package/src/components/editor-main/src/assets/icons/table-delete.svg +1 -0
  174. package/src/components/editor-main/src/assets/icons/table-fix.svg +1 -0
  175. package/src/components/editor-main/src/assets/icons/table-header-cell.svg +1 -0
  176. package/src/components/editor-main/src/assets/icons/table-header-column.svg +1 -0
  177. package/src/components/editor-main/src/assets/icons/table-header-row.svg +1 -0
  178. package/src/components/editor-main/src/assets/icons/table-merge-cell.svg +1 -0
  179. package/src/components/editor-main/src/assets/icons/table-next-cell.svg +1 -0
  180. package/src/components/editor-main/src/assets/icons/table-previous-cell.svg +1 -0
  181. package/src/components/editor-main/src/assets/icons/table-split-cell.svg +1 -0
  182. package/src/components/editor-main/src/assets/icons/table.svg +1 -0
  183. package/src/components/editor-main/src/assets/icons/tag.svg +1 -0
  184. package/src/components/editor-main/src/assets/icons/task-list-2.svg +1 -0
  185. package/src/components/editor-main/src/assets/icons/task-list.svg +1 -0
  186. package/src/components/editor-main/src/assets/icons/template.svg +1 -0
  187. package/src/components/editor-main/src/assets/icons/text-box.svg +1 -0
  188. package/src/components/editor-main/src/assets/icons/text.svg +1 -0
  189. package/src/components/editor-main/src/assets/icons/theme.svg +1 -0
  190. package/src/components/editor-main/src/assets/icons/time.svg +1 -0
  191. package/src/components/editor-main/src/assets/icons/toc.svg +1 -0
  192. package/src/components/editor-main/src/assets/icons/toolbar-classic.svg +1 -0
  193. package/src/components/editor-main/src/assets/icons/toolbar-ribbon.svg +1 -0
  194. package/src/components/editor-main/src/assets/icons/toolbar-source.svg +1 -0
  195. package/src/components/editor-main/src/assets/icons/underline.svg +1 -0
  196. package/src/components/editor-main/src/assets/icons/undo.svg +1 -0
  197. package/src/components/editor-main/src/assets/icons/unlink.svg +1 -0
  198. package/src/components/editor-main/src/assets/icons/video.svg +1 -0
  199. package/src/components/editor-main/src/assets/icons/view.svg +1 -0
  200. package/src/components/editor-main/src/assets/icons/watermark.svg +1 -0
  201. package/src/components/editor-main/src/assets/icons/web-page.svg +1 -0
  202. package/src/components/editor-main/src/assets/icons/word-wrap.svg +1 -0
  203. package/src/components/editor-main/src/assets/icons/word.svg +1 -0
  204. package/src/components/editor-main/src/assets/icons/writing-mode.svg +1 -0
  205. package/src/components/editor-main/src/assets/icons/zoom-1.svg +1 -0
  206. package/src/components/editor-main/src/assets/icons/zoom-auto.svg +1 -0
  207. package/src/components/editor-main/src/assets/icons/zoom.svg +1 -0
  208. package/src/components/editor-main/src/assets/images/avatar.svg +1 -0
  209. package/src/components/editor-main/src/assets/images/format-painter.svg +1 -0
  210. package/src/components/editor-main/src/assets/images/laser-pointer.svg +1 -0
  211. package/src/components/editor-main/src/assets/images/logo.svg +1 -0
  212. package/src/components/editor-main/src/assets/images/watermark-compact.png +0 -0
  213. package/src/components/editor-main/src/assets/images/watermark-spacious.png +0 -0
  214. package/src/components/editor-main/src/assets/styles/_mixins.less +150 -0
  215. package/src/components/editor-main/src/assets/styles/_variables.less +97 -0
  216. package/src/components/editor-main/src/assets/styles/drager.less +123 -0
  217. package/src/components/editor-main/src/assets/styles/editor.less +917 -0
  218. package/src/components/editor-main/src/assets/styles/index.less +19 -0
  219. package/src/components/editor-main/src/assets/styles/plyr.less +26 -0
  220. package/src/components/editor-main/src/assets/styles/tdesign.less +341 -0
  221. package/src/components/editor-main/src/components/container/page.vue +392 -0
  222. package/src/components/editor-main/src/components/container/print.vue +191 -0
  223. package/src/components/editor-main/src/components/container/search-replace.vue +264 -0
  224. package/src/components/editor-main/src/components/container/toc.vue +260 -0
  225. package/src/components/editor-main/src/components/editor/index.vue +213 -0
  226. package/src/components/editor-main/src/components/icon.vue +43 -0
  227. package/src/components/editor-main/src/components/index.js +22 -0
  228. package/src/components/editor-main/src/components/index.vue +1396 -0
  229. package/src/components/editor-main/src/components/menus/block/common.vue +127 -0
  230. package/src/components/editor-main/src/components/menus/block/index.vue +217 -0
  231. package/src/components/editor-main/src/components/menus/block/node.vue +183 -0
  232. package/src/components/editor-main/src/components/menus/bubble/callout/background.vue +39 -0
  233. package/src/components/editor-main/src/components/menus/bubble/callout/builtin.vue +90 -0
  234. package/src/components/editor-main/src/components/menus/bubble/callout/emoji-remove.vue +28 -0
  235. package/src/components/editor-main/src/components/menus/bubble/file/download.vue +30 -0
  236. package/src/components/editor-main/src/components/menus/bubble/file/width.vue +22 -0
  237. package/src/components/editor-main/src/components/menus/bubble/image/convert.vue +63 -0
  238. package/src/components/editor-main/src/components/menus/bubble/image/edit.vue +32 -0
  239. package/src/components/editor-main/src/components/menus/bubble/image/open.vue +27 -0
  240. package/src/components/editor-main/src/components/menus/bubble/image/preview.vue +24 -0
  241. package/src/components/editor-main/src/components/menus/bubble/image/proportion.vue +34 -0
  242. package/src/components/editor-main/src/components/menus/bubble/index.vue +55 -0
  243. package/src/components/editor-main/src/components/menus/bubble/link/copy.vue +29 -0
  244. package/src/components/editor-main/src/components/menus/bubble/link/open.vue +27 -0
  245. package/src/components/editor-main/src/components/menus/bubble/link/unlink.vue +19 -0
  246. package/src/components/editor-main/src/components/menus/bubble/math.vue +36 -0
  247. package/src/components/editor-main/src/components/menus/bubble/menus.vue +209 -0
  248. package/src/components/editor-main/src/components/menus/bubble/node/delete.vue +15 -0
  249. package/src/components/editor-main/src/components/menus/bubble/node/duplicate.vue +40 -0
  250. package/src/components/editor-main/src/components/menus/bubble/node/tofile.vue +31 -0
  251. package/src/components/editor-main/src/components/menus/bubble/tag/background.vue +36 -0
  252. package/src/components/editor-main/src/components/menus/bubble/tag/builtin.vue +88 -0
  253. package/src/components/editor-main/src/components/menus/bubble/tag/color.vue +36 -0
  254. package/src/components/editor-main/src/components/menus/bubble/tag/delete.vue +14 -0
  255. package/src/components/editor-main/src/components/menus/bubble/tag/input.vue +63 -0
  256. package/src/components/editor-main/src/components/menus/bubble/text-box/background.vue +37 -0
  257. package/src/components/editor-main/src/components/menus/bubble/text-box/border.vue +186 -0
  258. package/src/components/editor-main/src/components/menus/bubble/text-box/writing-mode.vue +42 -0
  259. package/src/components/editor-main/src/components/menus/bubble/webpage/clickable.vue +31 -0
  260. package/src/components/editor-main/src/components/menus/bubble/webpage/open.vue +29 -0
  261. package/src/components/editor-main/src/components/menus/button.vue +630 -0
  262. package/src/components/editor-main/src/components/menus/toolbar/base/align-center.vue +33 -0
  263. package/src/components/editor-main/src/components/menus/toolbar/base/align-distributed.vue +18 -0
  264. package/src/components/editor-main/src/components/menus/toolbar/base/align-dropdown.vue +56 -0
  265. package/src/components/editor-main/src/components/menus/toolbar/base/align-justify.vue +18 -0
  266. package/src/components/editor-main/src/components/menus/toolbar/base/align-left.vue +32 -0
  267. package/src/components/editor-main/src/components/menus/toolbar/base/align-right.vue +33 -0
  268. package/src/components/editor-main/src/components/menus/toolbar/base/background-color.vue +72 -0
  269. package/src/components/editor-main/src/components/menus/toolbar/base/bold.vue +18 -0
  270. package/src/components/editor-main/src/components/menus/toolbar/base/bullet-list.vue +110 -0
  271. package/src/components/editor-main/src/components/menus/toolbar/base/clear-format.vue +15 -0
  272. package/src/components/editor-main/src/components/menus/toolbar/base/code.vue +18 -0
  273. package/src/components/editor-main/src/components/menus/toolbar/base/color.vue +75 -0
  274. package/src/components/editor-main/src/components/menus/toolbar/base/font-family.vue +528 -0
  275. package/src/components/editor-main/src/components/menus/toolbar/base/font-size.vue +163 -0
  276. package/src/components/editor-main/src/components/menus/toolbar/base/format-painter.vue +27 -0
  277. package/src/components/editor-main/src/components/menus/toolbar/base/heading.vue +322 -0
  278. package/src/components/editor-main/src/components/menus/toolbar/base/highlight.vue +127 -0
  279. package/src/components/editor-main/src/components/menus/toolbar/base/indent.vue +17 -0
  280. package/src/components/editor-main/src/components/menus/toolbar/base/italic.vue +18 -0
  281. package/src/components/editor-main/src/components/menus/toolbar/base/letter-spacing.vue +113 -0
  282. package/src/components/editor-main/src/components/menus/toolbar/base/line-height.vue +40 -0
  283. package/src/components/editor-main/src/components/menus/toolbar/base/margin.vue +118 -0
  284. package/src/components/editor-main/src/components/menus/toolbar/base/markdown.vue +50 -0
  285. package/src/components/editor-main/src/components/menus/toolbar/base/ordered-list.vue +184 -0
  286. package/src/components/editor-main/src/components/menus/toolbar/base/outdent.vue +17 -0
  287. package/src/components/editor-main/src/components/menus/toolbar/base/print.vue +19 -0
  288. package/src/components/editor-main/src/components/menus/toolbar/base/quote.vue +18 -0
  289. package/src/components/editor-main/src/components/menus/toolbar/base/redo.vue +20 -0
  290. package/src/components/editor-main/src/components/menus/toolbar/base/search-replace.vue +16 -0
  291. package/src/components/editor-main/src/components/menus/toolbar/base/select-all.vue +16 -0
  292. package/src/components/editor-main/src/components/menus/toolbar/base/strike.vue +18 -0
  293. package/src/components/editor-main/src/components/menus/toolbar/base/subscript.vue +18 -0
  294. package/src/components/editor-main/src/components/menus/toolbar/base/superscript.vue +18 -0
  295. package/src/components/editor-main/src/components/menus/toolbar/base/task-list.vue +47 -0
  296. package/src/components/editor-main/src/components/menus/toolbar/base/underline.vue +18 -0
  297. package/src/components/editor-main/src/components/menus/toolbar/base/undo.vue +18 -0
  298. package/src/components/editor-main/src/components/menus/toolbar/base/word-wrap.vue +47 -0
  299. package/src/components/editor-main/src/components/menus/toolbar/export/embed.vue +67 -0
  300. package/src/components/editor-main/src/components/menus/toolbar/export/html.vue +27 -0
  301. package/src/components/editor-main/src/components/menus/toolbar/export/image.vue +66 -0
  302. package/src/components/editor-main/src/components/menus/toolbar/export/pdf.vue +8 -0
  303. package/src/components/editor-main/src/components/menus/toolbar/export/share.vue +63 -0
  304. package/src/components/editor-main/src/components/menus/toolbar/export/text.vue +32 -0
  305. package/src/components/editor-main/src/components/menus/toolbar/insert/audio.vue +23 -0
  306. package/src/components/editor-main/src/components/menus/toolbar/insert/bookmark.vue +206 -0
  307. package/src/components/editor-main/src/components/menus/toolbar/insert/callout.vue +15 -0
  308. package/src/components/editor-main/src/components/menus/toolbar/insert/chinese-date.vue +112 -0
  309. package/src/components/editor-main/src/components/menus/toolbar/insert/code-block.vue +16 -0
  310. package/src/components/editor-main/src/components/menus/toolbar/insert/columns.vue +97 -0
  311. package/src/components/editor-main/src/components/menus/toolbar/insert/details.vue +34 -0
  312. package/src/components/editor-main/src/components/menus/toolbar/insert/emoji.vue +103 -0
  313. package/src/components/editor-main/src/components/menus/toolbar/insert/file.vue +23 -0
  314. package/src/components/editor-main/src/components/menus/toolbar/insert/footnote.vue +15 -0
  315. package/src/components/editor-main/src/components/menus/toolbar/insert/hard-break.vue +16 -0
  316. package/src/components/editor-main/src/components/menus/toolbar/insert/hr.vue +141 -0
  317. package/src/components/editor-main/src/components/menus/toolbar/insert/image.vue +84 -0
  318. package/src/components/editor-main/src/components/menus/toolbar/insert/link.vue +121 -0
  319. package/src/components/editor-main/src/components/menus/toolbar/insert/mention.vue +15 -0
  320. package/src/components/editor-main/src/components/menus/toolbar/insert/option-box.vue +324 -0
  321. package/src/components/editor-main/src/components/menus/toolbar/insert/symbol.vue +88 -0
  322. package/src/components/editor-main/src/components/menus/toolbar/insert/tag.vue +15 -0
  323. package/src/components/editor-main/src/components/menus/toolbar/insert/template.vue +76 -0
  324. package/src/components/editor-main/src/components/menus/toolbar/insert/text-box.vue +15 -0
  325. package/src/components/editor-main/src/components/menus/toolbar/insert/toc.vue +15 -0
  326. package/src/components/editor-main/src/components/menus/toolbar/insert/video.vue +23 -0
  327. package/src/components/editor-main/src/components/menus/toolbar/insert/web-page.vue +173 -0
  328. package/src/components/editor-main/src/components/menus/toolbar/page/background.vue +138 -0
  329. package/src/components/editor-main/src/components/menus/toolbar/page/break-marks.vue +26 -0
  330. package/src/components/editor-main/src/components/menus/toolbar/page/break.vue +20 -0
  331. package/src/components/editor-main/src/components/menus/toolbar/page/footer.vue +15 -0
  332. package/src/components/editor-main/src/components/menus/toolbar/page/header.vue +15 -0
  333. package/src/components/editor-main/src/components/menus/toolbar/page/line-number.vue +16 -0
  334. package/src/components/editor-main/src/components/menus/toolbar/page/margin.vue +17 -0
  335. package/src/components/editor-main/src/components/menus/toolbar/page/orientation.vue +63 -0
  336. package/src/components/editor-main/src/components/menus/toolbar/page/size.vue +67 -0
  337. package/src/components/editor-main/src/components/menus/toolbar/page/watermark.vue +200 -0
  338. package/src/components/editor-main/src/components/menus/toolbar/table/add-column-after.vue +20 -0
  339. package/src/components/editor-main/src/components/menus/toolbar/table/add-column-before.vue +20 -0
  340. package/src/components/editor-main/src/components/menus/toolbar/table/add-row-after.vue +20 -0
  341. package/src/components/editor-main/src/components/menus/toolbar/table/add-row-before.vue +20 -0
  342. package/src/components/editor-main/src/components/menus/toolbar/table/border-color.vue +35 -0
  343. package/src/components/editor-main/src/components/menus/toolbar/table/cells-align.vue +41 -0
  344. package/src/components/editor-main/src/components/menus/toolbar/table/cells-background.vue +32 -0
  345. package/src/components/editor-main/src/components/menus/toolbar/table/delete-column.vue +44 -0
  346. package/src/components/editor-main/src/components/menus/toolbar/table/delete-row.vue +44 -0
  347. package/src/components/editor-main/src/components/menus/toolbar/table/delete.vue +40 -0
  348. package/src/components/editor-main/src/components/menus/toolbar/table/fix.vue +17 -0
  349. package/src/components/editor-main/src/components/menus/toolbar/table/insert.vue +137 -0
  350. package/src/components/editor-main/src/components/menus/toolbar/table/merge-cells.vue +20 -0
  351. package/src/components/editor-main/src/components/menus/toolbar/table/next-cell.vue +21 -0
  352. package/src/components/editor-main/src/components/menus/toolbar/table/previous-cell.vue +21 -0
  353. package/src/components/editor-main/src/components/menus/toolbar/table/split-cell.vue +20 -0
  354. package/src/components/editor-main/src/components/menus/toolbar/table/toggle-header-cell.vue +20 -0
  355. package/src/components/editor-main/src/components/menus/toolbar/table/toggle-header-column.vue +20 -0
  356. package/src/components/editor-main/src/components/menus/toolbar/table/toggle-header-row.vue +20 -0
  357. package/src/components/editor-main/src/components/menus/toolbar/tools/barcode.vue +441 -0
  358. package/src/components/editor-main/src/components/menus/toolbar/tools/chinese-case.vue +135 -0
  359. package/src/components/editor-main/src/components/menus/toolbar/tools/diagrams.vue +141 -0
  360. package/src/components/editor-main/src/components/menus/toolbar/tools/echarts.vue +718 -0
  361. package/src/components/editor-main/src/components/menus/toolbar/tools/math.vue +339 -0
  362. package/src/components/editor-main/src/components/menus/toolbar/tools/mermaid.vue +293 -0
  363. package/src/components/editor-main/src/components/menus/toolbar/tools/mind-map.vue +7 -0
  364. package/src/components/editor-main/src/components/menus/toolbar/tools/qrcode.vue +293 -0
  365. package/src/components/editor-main/src/components/menus/toolbar/tools/signature.vue +208 -0
  366. package/src/components/editor-main/src/components/menus/toolbar/view/fullscreen.vue +17 -0
  367. package/src/components/editor-main/src/components/menus/toolbar/view/locale.vue +40 -0
  368. package/src/components/editor-main/src/components/menus/toolbar/view/page.vue +16 -0
  369. package/src/components/editor-main/src/components/menus/toolbar/view/preview.vue +16 -0
  370. package/src/components/editor-main/src/components/menus/toolbar/view/skin.vue +43 -0
  371. package/src/components/editor-main/src/components/menus/toolbar/view/theme.vue +41 -0
  372. package/src/components/editor-main/src/components/menus/toolbar/view/toc.vue +15 -0
  373. package/src/components/editor-main/src/components/menus/toolbar/view/web.vue +16 -0
  374. package/src/components/editor-main/src/components/menus/toolbar/view/zoom-auto.vue +27 -0
  375. package/src/components/editor-main/src/components/menus/toolbar/view/zoom-original.vue +18 -0
  376. package/src/components/editor-main/src/components/menus/toolbar/view/zoom.vue +35 -0
  377. package/src/components/editor-main/src/components/modal.vue +22 -0
  378. package/src/components/editor-main/src/components/page-options.vue +392 -0
  379. package/src/components/editor-main/src/components/picker/color.vue +208 -0
  380. package/src/components/editor-main/src/components/statusbar/about.vue +37 -0
  381. package/src/components/editor-main/src/components/statusbar/countdown.vue +273 -0
  382. package/src/components/editor-main/src/components/statusbar/index.vue +753 -0
  383. package/src/components/editor-main/src/components/statusbar/shortcuts.vue +313 -0
  384. package/src/components/editor-main/src/components/toolbar/classic.vue +325 -0
  385. package/src/components/editor-main/src/components/toolbar/index.vue +369 -0
  386. package/src/components/editor-main/src/components/toolbar/ribbon.vue +398 -0
  387. package/src/components/editor-main/src/components/toolbar/scrollable.vue +205 -0
  388. package/src/components/editor-main/src/components/tooltip.vue +23 -0
  389. package/src/components/editor-main/src/composables/copy.js +24 -0
  390. package/src/components/editor-main/src/composables/dialog.js +25 -0
  391. package/src/components/editor-main/src/composables/hotkeys.js +14 -0
  392. package/src/components/editor-main/src/composables/i18n.js +19 -0
  393. package/src/components/editor-main/src/composables/popup.js +11 -0
  394. package/src/components/editor-main/src/composables/select.js +13 -0
  395. package/src/components/editor-main/src/composables/state.js +30 -0
  396. package/src/components/editor-main/src/composables/toolbarSelection.js +68 -0
  397. package/src/components/editor-main/src/extensions/audio/index.js +59 -0
  398. package/src/components/editor-main/src/extensions/audio/node-view.vue +141 -0
  399. package/src/components/editor-main/src/extensions/bookmark.js +110 -0
  400. package/src/components/editor-main/src/extensions/break-marks.js +19 -0
  401. package/src/components/editor-main/src/extensions/bullet-list.js +21 -0
  402. package/src/components/editor-main/src/extensions/callout/index.js +128 -0
  403. package/src/components/editor-main/src/extensions/callout/node-view.vue +130 -0
  404. package/src/components/editor-main/src/extensions/code-block/index.js +32 -0
  405. package/src/components/editor-main/src/extensions/code-block/node-view.vue +399 -0
  406. package/src/components/editor-main/src/extensions/columns/dom.js +142 -0
  407. package/src/components/editor-main/src/extensions/columns/index.js +77 -0
  408. package/src/components/editor-main/src/extensions/columns/keymap.js +62 -0
  409. package/src/components/editor-main/src/extensions/columns/resize.js +60 -0
  410. package/src/components/editor-main/src/extensions/columns/schema.js +47 -0
  411. package/src/components/editor-main/src/extensions/columns/state.js +26 -0
  412. package/src/components/editor-main/src/extensions/columns/utils.js +55 -0
  413. package/src/components/editor-main/src/extensions/datetime/index.js +55 -0
  414. package/src/components/editor-main/src/extensions/datetime/node-view.vue +116 -0
  415. package/src/components/editor-main/src/extensions/echarts/cal-service.js +142 -0
  416. package/src/components/editor-main/src/extensions/echarts/index.js +115 -0
  417. package/src/components/editor-main/src/extensions/echarts/node-view.vue +220 -0
  418. package/src/components/editor-main/src/extensions/file/index.js +254 -0
  419. package/src/components/editor-main/src/extensions/file/node-view.vue +333 -0
  420. package/src/components/editor-main/src/extensions/file-handler.js +93 -0
  421. package/src/components/editor-main/src/extensions/foonotes/footnote.js +152 -0
  422. package/src/components/editor-main/src/extensions/foonotes/footnotes.js +41 -0
  423. package/src/components/editor-main/src/extensions/foonotes/index.js +7 -0
  424. package/src/components/editor-main/src/extensions/foonotes/reference.js +211 -0
  425. package/src/components/editor-main/src/extensions/foonotes/rules.js +103 -0
  426. package/src/components/editor-main/src/extensions/foonotes/utils.js +171 -0
  427. package/src/components/editor-main/src/extensions/format-painter.js +104 -0
  428. package/src/components/editor-main/src/extensions/horizontal-rule.js +93 -0
  429. package/src/components/editor-main/src/extensions/iframe/index.js +54 -0
  430. package/src/components/editor-main/src/extensions/iframe/node-view.vue +106 -0
  431. package/src/components/editor-main/src/extensions/image/image-resizer.vue +349 -0
  432. package/src/components/editor-main/src/extensions/image/index.js +216 -0
  433. package/src/components/editor-main/src/extensions/image/node-view.vue +592 -0
  434. package/src/components/editor-main/src/extensions/indent.js +226 -0
  435. package/src/components/editor-main/src/extensions/index.js +341 -0
  436. package/src/components/editor-main/src/extensions/letter-spacing.js +66 -0
  437. package/src/components/editor-main/src/extensions/line-height.js +147 -0
  438. package/src/components/editor-main/src/extensions/margin.js +266 -0
  439. package/src/components/editor-main/src/extensions/mention/index.js +33 -0
  440. package/src/components/editor-main/src/extensions/mention/mentions.vue +180 -0
  441. package/src/components/editor-main/src/extensions/mention/suggestion.js +90 -0
  442. package/src/components/editor-main/src/extensions/node-align.js +164 -0
  443. package/src/components/editor-main/src/extensions/node-select.js +51 -0
  444. package/src/components/editor-main/src/extensions/office-paste/index.js +70 -0
  445. package/src/components/editor-main/src/extensions/office-paste/transform/bookmark.js +17 -0
  446. package/src/components/editor-main/src/extensions/office-paste/transform/excel.js +85 -0
  447. package/src/components/editor-main/src/extensions/office-paste/transform/html-classes.js +9 -0
  448. package/src/components/editor-main/src/extensions/office-paste/transform/line-number.js +10 -0
  449. package/src/components/editor-main/src/extensions/office-paste/transform/list.js +148 -0
  450. package/src/components/editor-main/src/extensions/office-paste/transform/style.js +24 -0
  451. package/src/components/editor-main/src/extensions/office-paste/utils.js +120 -0
  452. package/src/components/editor-main/src/extensions/option-box/index.js +77 -0
  453. package/src/components/editor-main/src/extensions/option-box/node-view.vue +194 -0
  454. package/src/components/editor-main/src/extensions/ordered-list.js +36 -0
  455. package/src/components/editor-main/src/extensions/page-break.js +42 -0
  456. package/src/components/editor-main/src/extensions/search-replace.js +304 -0
  457. package/src/components/editor-main/src/extensions/selection.js +38 -0
  458. package/src/components/editor-main/src/extensions/table.js +65 -0
  459. package/src/components/editor-main/src/extensions/tag/index.js +47 -0
  460. package/src/components/editor-main/src/extensions/tag/node-view.vue +51 -0
  461. package/src/components/editor-main/src/extensions/text-align.js +44 -0
  462. package/src/components/editor-main/src/extensions/text-box/index.js +78 -0
  463. package/src/components/editor-main/src/extensions/text-box/node-view.vue +141 -0
  464. package/src/components/editor-main/src/extensions/toc/index.js +48 -0
  465. package/src/components/editor-main/src/extensions/toc/node-view.vue +159 -0
  466. package/src/components/editor-main/src/extensions/type-writer.js +256 -0
  467. package/src/components/editor-main/src/extensions/video/index.js +65 -0
  468. package/src/components/editor-main/src/extensions/video/node-view.vue +211 -0
  469. package/src/components/editor-main/src/extensions/word-wrap.js +94 -0
  470. package/src/components/editor-main/src/i18n.js +15 -0
  471. package/src/components/editor-main/src/locales/bo.json +707 -0
  472. package/src/components/editor-main/src/locales/en-US.json +802 -0
  473. package/src/components/editor-main/src/locales/it-IT.json +721 -0
  474. package/src/components/editor-main/src/locales/ru-RU.json +779 -0
  475. package/src/components/editor-main/src/locales/zh-CN.json +804 -0
  476. package/src/components/editor-main/src/options/config/dicts.js +369 -0
  477. package/src/components/editor-main/src/options/config/index.js +203 -0
  478. package/src/components/editor-main/src/options/index.js +7 -0
  479. package/src/components/editor-main/src/options/schema.js +732 -0
  480. package/src/components/editor-main/src/utils/content-transform.js +12 -0
  481. package/src/components/editor-main/src/utils/copyright.js +4 -0
  482. package/src/components/editor-main/src/utils/diagram-editor.js +153 -0
  483. package/src/components/editor-main/src/utils/editor-scroll.js +75 -0
  484. package/src/components/editor-main/src/utils/file.js +177 -0
  485. package/src/components/editor-main/src/utils/history-record.js +135 -0
  486. package/src/components/editor-main/src/utils/load-resource.js +45 -0
  487. package/src/components/editor-main/src/utils/options.js +25 -0
  488. package/src/components/editor-main/src/utils/player.js +91 -0
  489. package/src/components/editor-main/src/utils/selection.js +39 -0
  490. package/src/components/editor-main/src/utils/short-id.js +4 -0
  491. package/src/components/editor-main/src/utils/shortcut.js +17 -0
  492. package/src/components/editor-main/src/utils/time-ago.js +8 -0
  493. package/src/components/editor-main/umo-build-entry.js +570 -0
  494. package/src/css/elementUI/col.scss +10 -2
  495. package/src/css/elementUI/mixins/_col.scss +10 -2
  496. package/vite/highlightJsLibVirtual.ts +98 -0
  497. package/vite/projectRoot.ts +17 -0
  498. package/vite/tiptapUmoResolve.ts +140 -0
  499. package/vite/tiptapVueRendererFix.ts +171 -0
  500. package/vite/umoCjsVirtual.ts +192 -0
  501. package/vite/umoIntegration.js +611 -0
  502. package/vite/umoIntegration.ts +56 -0
  503. package/vite/yjsPeerResolve.ts +100 -0
  504. package/vite.config.ts +8 -0
  505. package/vite.config.umo.ts +82 -0
  506. package/src/components/RichTextEditor/UmoRichTextEditor.vue +0 -257
  507. package/src/types/umoteam-editor.d.ts +0 -8
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M12.5 2.5L4 21.5m3.4-6.045h10.2M12.5 2.5l8.5 19"/><path stroke="var(--umo-primary-color)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M3.5 5l2-2m-2 2l2 2M20.5 5l-2-2m2 2l-2 2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" stroke-width="1.5"><path d="M1.75 3.806l2-2.056 2 2.056m-2 10.144l-2-2.056m2 2.056l2-2.056m-2 2.056l.012-12.187" stroke-linecap="round" fill="none" vector-effect="non-scaling-stroke" stroke="var(--umo-primary-color)"/><g stroke="currentColor" fill="none" stroke-linecap="round"><path d="M8.754 13.75h5.5M8.754 9.75h5.5M8.754 5.75h5.5M8.75 1.75h5.504" vector-effect="non-scaling-stroke"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 4v9M12 13H6M12 27H6M6 20s3-3 5 0-5 7-5 7M6 34.5s2-3 5-1 0 4.5 0 4.5 3 2.5 0 4.5-5-1-5-1M11 38H9M9 4L6 6M21 24h22M21 38h22M21 10h22" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.707 9.565L9.858 24.415a9 9 0 0 0 12.728 12.728l17.678-17.678a6 6 0 0 0-8.485-8.485L14.1 28.656a3 3 0 1 0 4.243 4.243l14.849-14.85" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 24c0 11.046 8.954 20 20 20s20-8.954 20-20S35.046 4 24 4" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M28.286 37h11.428M42 42l-2.286-5L42 42zm-16 0l2.286-5L26 42zm2.286-5L34 24l5.714 13H28.286zM16 6l1 3M6 11h22M10 16s1.79 6.26 6.263 9.74C20.737 29.216 28 32 28 32" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M24 11s-1.79 8.217-6.263 12.783C13.263 28.348 6 32 6 32" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="22" height="22" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M2 3h18M2 20h18" stroke="var(--umo-primary-color)" stroke-width="2" stroke-linecap="round"/><path d="M0 0h22v22H0z"/><path d="M11 6L6 17m2-3.5h6M11 6l5 11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" data-spm-anchor-id="a313x.search_index.0.i0.3d203a817x9KY2" width="96" height="96" ><path stroke="currentColor" d="M896 192a64 64 0 0 1 64 64v512a64 64 0 0 1-64 64H128a64 64 0 0 1-64-64V256a64 64 0 0 1 64-64h768zm-768-64A128 128 0 0 0 0 256v512a128 128 0 0 0 128 128h768a128 128 0 0 0 128-128V256a128 128 0 0 0-128-128H128z" data-spm-anchor-id="a313x.search_index.0.i1.3d203a817x9KY2"/><path stroke="currentColor" d="M585.344 521.344a32 32 0 0 1 45.312 0L736 626.752l105.344-105.408a32.064 32.064 0 0 1 45.312 45.312l-128 128a31.872 31.872 0 0 1-45.312 0l-128-128a32 32 0 0 1 0-45.312z"/><path stroke="currentColor" d="M736 320a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V352a32 32 0 0 1 32-32zM227.84 704V448.64h3.584l91.392 207.296h49.536l90.88-207.36h3.584V704h68.672V320.064h-76.8L349.248 569.28h-2.496l-109.44-249.216H160V704h67.84z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M40 9l-3-3H8l18 18L8 42h29l3-3" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M44 24c0-11.046-8.954-20-20-20S4 12.954 4 24s8.954 20 20 20c4.989 0 9.55-1.827 13.054-4.847" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M24 32a8 8 0 1 0 0-16 8 8 0 0 0 0 16z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M32 24a6 6 0 0 0 12 0M32 25v-9" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.95 11.95h32M7.95 23.95h32M7.95 35.95h32" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M41 14L24 4 7 14v20l17 10 17-10V14z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M16 18.998L23.993 24l8.002-5.002M24 24v9" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 28a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM42 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM42 26a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM42 44a2 2 0 1 0 0-4 2 2 0 0 0 0 4z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M32 6H20v36h12M12 24h20" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.5 24L38.5 24" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M42 18v22a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V18" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M6 8a2 2 0 0 1 2-2h32a2 2 0 0 1 2 2v10H6V8z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM18 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM24 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4z" fill="currentColor"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 6H8a2 2 0 0 0-2 2v8M16 42H8a2 2 0 0 1-2-2v-8M32 42h8a2 2 0 0 0 2-2v-8M32 6h8a2 2 0 0 1 2 2v8M32 24H16M24 32V16" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" stroke-width="1"><g stroke="currentColor" fill="none"><path d="M13.83 6.061l-3.37-3.37a1.5 1.5 0 0 0-2.121 0L2.223 8.807a1.5 1.5 0 0 0 0 2.122l3.322 3.322h2.218l6.068-6.068a1.5 1.5 0 0 0 0-2.122zM3.922 6.63l6.081 6.081" vector-effect="non-scaling-stroke"/><path d="M6 14.25h8.25" stroke-linecap="round" vector-effect="non-scaling-stroke"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 12.432v-4.62A2.813 2.813 0 0 1 15.813 5h24.374A2.813 2.813 0 0 1 43 7.813v24.375A2.813 2.813 0 0 1 40.187 35h-4.67" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M32.188 13H7.811A2.813 2.813 0 0 0 5 15.813v24.374A2.813 2.813 0 0 0 7.813 43h24.375A2.813 2.813 0 0 0 35 40.187V15.814A2.813 2.813 0 0 0 32.187 13z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/></svg>
@@ -0,0 +1,2 @@
1
+
2
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#fff" fill-opacity=".01" d="M0 0h48v48H0z"/><path d="M11 42a5 5 0 1 0 0-10 5 5 0 0 0 0 10zM37 42a5 5 0 1 0 0-10 5 5 0 0 0 0 10z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M15.377 39.413l2.123-3.597 17-29.445" stroke="currentColor" stroke-width="3" stroke-linecap="round"/><path d="M13.496 6.175l17 29.445 2.13 3.793" stroke="currentColor" stroke-width="3" stroke-linecap="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 10v34h30V10H9z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M20 20v13M28 20v13M4 10h40" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M16 10l3.289-6h9.488L32 10H16z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 10v34h30V10H9z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/><path d="M20 20v13M28 20v13M4 10h40" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M16 10l3.289-6h9.488L32 10H16z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 30v-6M6 30h36v12H6V30zM6 12.5v-1M6 18v-1M6 7V6M42 12.5v-1M42 18v-1M42 7V6M42 18h-1M7 18H6M7 6H6M14 6h-1M21 6h-1M21 18h-1M28 6h-1M14 18h-1M28 18h-1M35 6h-1M35 18h-1M42 6h-1" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M42 19H6M30 7l12 12M6.799 29h36M6.799 29l12 12" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 4v9M12 13H6M12 27H6M6 20s3-3 5 0-5 7-5 7M6 34.5s2-3 5-1 0 4.5 0 4.5 3 2.5 0 4.5-5-1-5-1M11 38H9M9 4L6 6M21 24h22M21 38h22M21 10h22" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 44"><path d="M35 29a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17z" fill-opacity=".163"/><path d="M5.714 15.11c.624 0 1.11-.22 1.46-.66.421-.533.632-1.408.632-2.627 0-1.222-.21-2.096-.629-2.624-.351-.445-.839-.668-1.463-.668-.624 0-1.11.22-1.459.66-.422.533-.633 1.406-.633 2.619 0 1.236.192 2.095.576 2.577.384.482.89.723 1.516.723zm0-1.024a.614.614 0 0 1-.398-.14c-.115-.094-.211-.283-.287-.565-.077-.283-.115-.802-.115-1.558s.043-1.294.128-1.613c.064-.246.155-.417.272-.512a.617.617 0 0 1 .4-.143.61.61 0 0 1 .398.143c.116.095.211.284.288.567.076.283.114.802.114 1.558s-.043 1.292-.128 1.608c-.064.246-.155.417-.272.512a.617.617 0 0 1-.4.143zm6.078.914V8.531H10.79c-.14.393-.4.736-.778 1.03-.378.295-.728.495-1.05.6v1.121a4.257 4.257 0 0 0 1.595-.936V15h1.235zm3.344 0v-1.235h-1.235V15h1.235zm-9.422 9.11c.624 0 1.11-.22 1.46-.66.421-.533.632-1.408.632-2.627 0-1.222-.21-2.096-.629-2.624-.351-.445-.839-.668-1.463-.668-.624 0-1.11.22-1.459.66-.422.533-.633 1.406-.633 2.619 0 1.236.192 2.095.576 2.577.384.482.89.723 1.516.723zm0-1.024a.614.614 0 0 1-.398-.14c-.115-.094-.211-.283-.287-.565-.077-.283-.115-.802-.115-1.558s.043-1.294.128-1.613c.064-.246.155-.417.272-.512a.617.617 0 0 1 .4-.143.61.61 0 0 1 .398.143c.116.095.211.284.288.567.076.283.114.802.114 1.558s-.043 1.292-.128 1.608c-.064.246-.155.417-.272.512a.617.617 0 0 1-.4.143zm7.088.914v-1.147H10.35c.065-.111.149-.226.253-.343.104-.117.35-.354.74-.712.39-.357.66-.631.81-.821.225-.288.39-.562.493-.824.104-.263.156-.539.156-.829 0-.51-.181-.936-.544-1.279-.364-.342-.863-.514-1.499-.514-.58 0-1.063.148-1.45.444-.387.296-.617.784-.69 1.463l1.23.124c.024-.36.112-.619.264-.774.152-.155.357-.233.615-.233.261 0 .465.074.613.222.148.148.222.36.222.635 0 .25-.085.501-.255.756-.126.185-.467.536-1.024 1.055-.691.641-1.154 1.156-1.388 1.544-.235.389-.375.8-.422 1.233h4.328zm2.334 0v-1.235h-1.235V24h1.235zM5.714 34.11c.624 0 1.11-.22 1.46-.66.421-.533.632-1.408.632-2.627 0-1.222-.21-2.096-.629-2.624-.351-.445-.839-.668-1.463-.668-.624 0-1.11.22-1.459.66-.422.533-.633 1.406-.633 2.619 0 1.236.192 2.095.576 2.577.384.482.89.723 1.516.723zm0-1.024a.614.614 0 0 1-.398-.14c-.115-.094-.211-.283-.287-.565-.077-.283-.115-.802-.115-1.558s.043-1.294.128-1.613c.064-.246.155-.417.272-.512a.617.617 0 0 1 .4-.143.61.61 0 0 1 .398.143c.116.095.211.284.288.567.076.283.114.802.114 1.558s-.043 1.292-.128 1.608c-.064.246-.155.417-.272.512a.617.617 0 0 1-.4.143zm4.992 1.024c.616 0 1.13-.2 1.543-.598.413-.398.62-.88.62-1.446 0-.39-.111-.722-.332-.997a1.5 1.5 0 0 0-.886-.532c.618-.337.927-.788.927-1.353 0-.399-.15-.756-.452-1.073-.366-.386-.853-.58-1.46-.58a2.25 2.25 0 0 0-.96.2 1.617 1.617 0 0 0-.667.55c-.16.232-.28.544-.359.933l1.139.194c.032-.282.123-.495.272-.642.15-.146.33-.22.54-.22.214 0 .386.065.515.194s.193.302.193.518c0 .255-.088.46-.264.613-.175.154-.43.227-.764.218l-.136 1.006c.22-.061.408-.092.566-.092.24 0 .444.09.611.272.167.182.25.428.25.739 0 .328-.086.589-.26.782a.833.833 0 0 1-.644.29.841.841 0 0 1-.607-.242c-.167-.16-.27-.394-.308-.698l-1.195.145c.062.542.284.98.668 1.316.384.335.867.503 1.45.503zm4.43-.11v-1.235h-1.235V34h1.235z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 44"><path d="M35 29a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17z" fill-opacity=".163"/><path d="M10.29 15V8.531H9.286c-.14.393-.4.736-.778 1.03-.378.295-.728.495-1.05.6v1.121a4.257 4.257 0 0 0 1.595-.936V15h1.235zm3.343 0v-1.235h-1.235V15h1.235zM11.3 24v-1.147H8.848c.064-.111.148-.226.252-.343.104-.117.351-.354.74-.712.39-.357.66-.631.81-.821.225-.288.39-.562.494-.824.104-.263.156-.539.156-.829 0-.51-.182-.936-.545-1.279-.363-.342-.863-.514-1.499-.514-.58 0-1.063.148-1.45.444-.387.296-.617.784-.69 1.463l1.23.124c.024-.36.112-.619.264-.774.153-.155.358-.233.616-.233.26 0 .465.074.613.222.148.148.222.36.222.635 0 .25-.085.501-.255.756-.126.185-.468.536-1.024 1.055-.692.641-1.155 1.156-1.389 1.544-.234.389-.375.8-.422 1.233H11.3zm2.333 0v-1.235h-1.235V24h1.235zM9.204 34.11c.615 0 1.129-.2 1.542-.598.413-.398.62-.88.62-1.446 0-.39-.11-.722-.332-.997a1.5 1.5 0 0 0-.886-.532c.619-.337.928-.788.928-1.353 0-.399-.151-.756-.453-1.073-.366-.386-.852-.58-1.459-.58a2.25 2.25 0 0 0-.96.2 1.617 1.617 0 0 0-.668.55c-.16.232-.28.544-.358.933l1.138.194c.032-.282.123-.495.272-.642.15-.146.33-.22.54-.22.215 0 .386.065.515.194s.193.302.193.518c0 .255-.087.46-.263.613-.176.154-.43.227-.765.218l-.136 1.006c.22-.061.409-.092.567-.092.24 0 .444.09.61.272.168.182.251.428.251.739 0 .328-.087.589-.261.782a.833.833 0 0 1-.644.29.841.841 0 0 1-.607-.242c-.167-.16-.27-.394-.307-.698l-1.196.145c.062.542.285.98.668 1.316.384.335.868.503 1.45.503zm4.43-.11v-1.235h-1.236V34h1.235z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 44"><path d="M35 29a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17z" fill-opacity=".163"/><path d="M9.62 14.105c.272 0 .528-.05.768-.153s.466-.257.677-.462c.009.024.023.072.044.145.047.161.086.283.119.365h1.221a2.649 2.649 0 0 1-.222-.626c-.04-.195-.059-.498-.059-.908l.013-1.441c0-.536-.055-.905-.165-1.105-.11-.201-.3-.367-.569-.497-.27-.13-.68-.195-1.23-.195-.607 0-1.064.108-1.371.325-.308.217-.525.55-.65 1.002l1.12.202c.076-.217.176-.369.299-.455.123-.086.294-.13.514-.13.325 0 .546.05.663.152.118.101.176.27.176.508v.123c-.222.093-.622.194-1.2.303-.427.082-.755.178-.982.288-.227.11-.403.268-.53.474a1.327 1.327 0 0 0-.188.706c0 .398.138.728.415.988.277.261.656.391 1.136.391zm.368-.87a.675.675 0 0 1-.492-.189.606.606 0 0 1-.193-.448c0-.176.08-.32.241-.435.106-.07.33-.142.673-.215a7.19 7.19 0 0 0 .751-.19v.247c0 .296-.016.496-.048.602a.773.773 0 0 1-.295.409 1.07 1.07 0 0 1-.637.22zm4.645.765v-1.235h-1.235V14h1.235zM10.2 25.105c.542 0 1.003-.215 1.382-.646.38-.43.57-1.044.57-1.84 0-.771-.187-1.362-.559-1.774a1.82 1.82 0 0 0-1.41-.617c-.522 0-.973.216-1.354.65v-2.32H7.594V25h1.147v-.686a1.9 1.9 0 0 0 .67.592c.26.133.523.2.79.2zm-.299-.975c-.354 0-.638-.164-.852-.492-.153-.232-.229-.59-.229-1.073 0-.468.098-.818.295-1.048a.93.93 0 0 1 .738-.345c.302 0 .55.118.743.354.193.236.29.62.29 1.154 0 .5-.096.868-.288 1.1-.192.233-.424.35-.697.35zm4.478.87v-1.235h-1.234V25h1.234zm-4.017 9.105c.6 0 1.08-.142 1.437-.426.357-.284.599-.704.725-1.261l-1.213-.207c-.061.326-.167.555-.316.688a.832.832 0 0 1-.576.2.916.916 0 0 1-.75-.343c-.185-.228-.278-.62-.278-1.173 0-.498.091-.853.274-1.066.183-.212.429-.318.736-.318.232 0 .42.061.565.184.145.123.238.306.28.55l1.216-.22c-.146-.501-.387-.874-.722-1.119-.336-.244-.788-.366-1.356-.366-.695 0-1.245.214-1.653.643-.407.43-.61 1.03-.61 1.8 0 .762.202 1.358.608 1.788.406.431.95.646 1.633.646zM14.633 34v-1.235h-1.235V34h1.235z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 44"><path d="M35 29a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17z" fill-opacity=".163"/><path d="M11.88 8.7V7.558h-1.234V8.7h1.234zm0 5.3V9.333h-1.234V14h1.234zm2.5 0v-1.235h-1.234V14h1.235zm-4.75 4.7v-1.142H8.395V18.7H9.63zm0 5.3v-4.667H8.395V24H9.63zm2.5-5.3v-1.142h-1.234V18.7h1.235zm0 5.3v-4.667h-1.234V24h1.235zm2.501 0v-1.235h-1.235V24h1.235zM7.38 28.7v-1.142H6.145V28.7H7.38zm0 5.3v-4.667H6.145V34H7.38zm2.5-5.3v-1.142H8.646V28.7H9.88zm0 5.3v-4.667H8.646V34H9.88zm2.5-5.3v-1.142h-1.234V28.7h1.235zm0 5.3v-4.667h-1.234V34h1.235zm2.501 0v-1.235h-1.235V34h1.235z"/></svg>
@@ -0,0 +1,12 @@
1
+ <svg width="44" height="44" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <path
4
+ d="M36 29a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H19a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H19a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H19a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17z"
5
+ fill-opacity=".163" fill="currentColor" fill-rule="nonzero" />
6
+ <path d="M0 0h44v44H0z" />
7
+ <g fill="currentColor" fill-rule="nonzero">
8
+ <path
9
+ d="M9.648 11.728v.624h4.704v-.624H9.648zm-.136.968v1.712h.816l.216.512H8.432v.696h7.128v-.696h-2.136l.248-.512h.816v-1.712H9.512zm1.872 2.224l-.216-.512h1.624l-.248.512h-1.16zm2.28-1.136h-3.328v-.48h3.328v.48zM8.696 8.816v.672H11.6v.328H9.2v.64h5.712v-.64H12.4v-.328h2.928v-.672H12.4v-.4h-.8v.4H8.696zm6.712 1.936H8.584v1.28h.768v-.624h5.288v.624h.768v-1.28zM8.36 18.16v.752h4.624c.032 1.232.128 2.312.272 3.232.264 1.728.712 2.608 1.344 2.64.48 0 .848-.624 1.112-1.856l-.696-.392c-.168.856-.304 1.288-.416 1.288-.128-.008-.288-.44-.48-1.288-.184-.912-.296-2.12-.336-3.624h1.808v-.752h-.44a4.676 4.676 0 0 0-.392-.776l-.72.264c.12.16.232.328.328.512h-.6c-.008-.248-.008-.504-.008-.776h-.8c0 .256 0 .512.008.776H8.36zm.72 1.032v.608h3.256v-.608H9.08zm-.448.888v.624h4.128v-.624H8.632zm3.936.936H8.832v2.424h.824v-1.784h2.088v1.72h.824v-2.36zm-1.264 2.336l-.472.584c.64.288 1.16.608 1.576.96l.544-.656a9.288 9.288 0 0 0-1.648-.888zm-1.016-1.408v.464c-.032.456-.168.824-.424 1.112-.256.256-.744.48-1.48.656l.44.696c.784-.2 1.344-.488 1.696-.856.368-.4.568-.936.6-1.608v-.464h-.832zM10.16 30.68v.384h3.688v-.44a7.26 7.26 0 0 0 1.536.824l.352-.736c-.896-.28-1.576-.656-2.04-1.12h1.792v-.752h-3.576c.096-.176.176-.36.24-.552.592-.032 1.16-.056 1.712-.088.168.176.32.344.456.512l.688-.48c-.4-.448-.968-.968-1.704-1.576l-.632.4c.192.168.376.336.552.504-.824.04-1.664.072-2.528.104.432-.288.864-.624 1.288-1.008l-.8-.272c-.832.832-1.472 1.264-1.912 1.312l.136.68c.648-.016 1.272-.04 1.88-.056-.072.176-.16.352-.264.52H8.512v.752h1.872c-.52.464-1.232.84-2.128 1.12l.376.744a8.521 8.521 0 0 0 1.528-.776zm1.256-1.088H12.8c.192.264.424.512.696.752h-2.864c.296-.232.56-.48.784-.752zm-1.68 1.96v.728h4.52v-.728h-4.52zM8.848 32.8v.768h6.296V32.8H8.848z" />
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="44" height="44" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <path
4
+ d="M36 29a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H19a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H19a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H19a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17z"
5
+ fill-opacity=".163" fill="currentColor" fill-rule="nonzero" />
6
+ <g fill="currentColor" fill-rule="nonzero">
7
+ <path
8
+ d="M15.416 12.416H8.584v-.88h6.832zM15.12 19.408H8.864v-.888h6.256v.888zm.448 4.704H8.432v-.888h7.136v.888zM15.184 28.056h-6.4v-.848h6.4v.848zm.384 5.584H8.416v-.84h7.152v.84zm-.72-2.912H9.192v-.848h5.656v.848z" />
9
+ </g>
10
+ <path d="M0 0h44v44H0z" />
11
+ </g>
12
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 44"><path d="M35 29a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17z" fill-opacity=".163"/><path d="M7.88 15l.532-1.463h2.575L11.549 15h1.415l-2.58-6.442H9.01L6.5 15h1.38zm2.69-2.549H8.811l.87-2.39.887 2.39zM14.88 15v-1.235h-1.234V15h1.234zM9.352 25c.83-.006 1.352-.02 1.569-.044.346-.038.636-.14.872-.305.236-.166.422-.387.558-.664.137-.277.205-.562.205-.855 0-.372-.106-.695-.317-.97-.21-.276-.512-.471-.905-.585a1.51 1.51 0 0 0 .661-.567 1.5 1.5 0 0 0 .244-.83c0-.28-.066-.53-.197-.754a1.654 1.654 0 0 0-.495-.539 1.676 1.676 0 0 0-.672-.266c-.25-.042-.63-.063-1.14-.063H7.158V25h2.193zm.142-3.88H8.46v-1.49h.747c.612 0 .983.007 1.112.022.217.026.38.102.49.226.11.125.165.287.165.486a.68.68 0 0 1-.192.503.86.86 0 0 1-.525.23 11.47 11.47 0 0 1-.944.023h.18zm.17 2.795H8.46v-1.723h1.05c.592 0 .977.03 1.154.092.177.062.313.16.406.295a.84.84 0 0 1 .14.492c0 .228-.06.41-.181.547a.806.806 0 0 1-.473.257c-.126.026-.423.04-.892.04zM14.88 25v-1.235h-1.234V25h1.234zm-5.018 9.11c.691 0 1.262-.17 1.711-.512.45-.341.772-.864.965-1.567l-1.261-.4c-.109.472-.287.818-.536 1.037-.25.22-.547.33-.892.33-.47 0-.85-.173-1.143-.519-.293-.345-.44-.925-.44-1.74 0-.767.15-1.322.447-1.665.297-.343.684-.514 1.162-.514.346 0 .64.096.881.29.242.193.4.457.477.79l1.288-.307c-.147-.516-.367-.911-.66-1.187-.492-.465-1.132-.698-1.92-.698-.902 0-1.63.296-2.184.89-.554.593-.83 1.426-.83 2.498 0 1.014.275 1.813.825 2.397.551.585 1.254.877 2.11.877zM14.88 34v-1.235h-1.234V34h1.234z"/></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 44 44"><path d="M35 29a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17zm0-9a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H18a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h17z" fill-opacity=".163"></path><path d="M11.916 15V8.558h-1.301V15h1.3zm2.465 0v-1.235h-1.235V15h1.235zM9.665 25v-6.442h-1.3V25h1.3zm2.5 0v-6.442h-1.3V25h1.3zm2.466 0v-1.235h-1.235V25h1.235zm-7.216 9v-6.442h-1.3V34h1.3zm2.5 0v-6.442h-1.3V34h1.3zm2.501 0v-6.442h-1.3V34h1.3zm2.465 0v-1.235h-1.235V34h1.235z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" stroke-width="1.5"><path d="M7.734 7.747h6.5m-6.5 5.5h6.5M7.734 2.25h6.5" stroke-linecap="round" fill="none" vector-effect="non-scaling-stroke" stroke="currentColor"/><g fill="var(--umo-primary-color)"><path d="M2.75 6.113V2.127l-.817.802a.546.546 0 0 1-.778-.011.56.56 0 0 1 .012-.786L2.407.914C2.948.384 3.85.77 3.85 1.53v4.583a.553.553 0 0 1-.55.556.553.553 0 0 1-.55-.556zM2.483 8.992c.409-.322.904-.322 1.312 0 .383.301.493.87.204 1.277a4.4 4.4 0 0 1-.23.29c-.197.23-.456.508-.744.803a56.575 56.575 0 0 1-1.709 1.66c-.557.521-.181 1.447.588 1.447H4.64c.304 0 .55-.242.55-.54a.545.545 0 0 0-.55-.542H2.517c.405-.384.876-.841 1.3-1.275.297-.303.575-.6.795-.858.109-.128.208-.252.289-.366.075-.105.157-.233.205-.363.318-.857.158-1.761-.623-2.377a2.125 2.125 0 0 0-2.688 0c-.594.469-.692 1.098-.706 1.484a.545.545 0 0 0 .53.56.546.546 0 0 0 .569-.521c.01-.26.068-.5.295-.68z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" stroke-width="1.5"><path d="M1.75 2.25h12.504M6.754 8h7.496m-12.5 5.75h12.504" stroke-linecap="round" vector-effect="non-scaling-stroke" stroke="currentColor"/><path d="M3.75 6L1.757 7.993a.01.01 0 0 0 0 .014L3.75 10" stroke-linecap="round" vector-effect="non-scaling-stroke" stroke="var(--umo-primary-color)"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><rect stroke="currentColor" stroke-width="1.5" x="3.5" y="1.5" width="17" height="21" rx="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 6v6h32V6" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M14 24h20" stroke="currentColor" stroke-width="3" stroke-linecap="round"/><path d="M8 42v-6h32v6" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><rect stroke="currentColor" stroke-width="1.5" x="3.5" y="1.5" width="17" height="21" rx="1"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M3.5 18.5h17"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><rect stroke="currentColor" x="3.5" stroke-width="1.5" y="1.5" width="17" height="21" rx="1"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M3.5 5.5h17"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><rect stroke="currentColor" x="3.5" y="1.5" stroke-width="1.5" width="17" height="21" rx="1"/><path d="M3.5 4.5h17m-14 18v-21m11 21v-21m-14 18h17" stroke="currentColor" opacity=".3" stroke-linecap="round" stroke-linejoin="round"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><rect stroke="currentColor" x="1" y="2.5" stroke-width="1.5" width="13" height="18" rx="1"/><rect stroke="currentColor" transform="rotate(90 15.5 17.5)" x="10" y="10" stroke-width="1.5" width="11" height="15" rx="1"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd" stroke-width="1.5"><path d="M0 0h24v24H0z"/><path d="M4.5 2.5h11a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1v-14a1 1 0 0 1 1-1z" stroke="currentColor"/><path d="M15 20.5l1.5 1.5-1.5 1.5m-10-3L3.5 22 5 23.5M3.5 22h12m6-5L20 18.5 18.5 17m3-13L20 2.5 18.5 4M20 2.5V18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 44h28a2 2 0 0 0 2-2V14H30V4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2zM30 4l10 10" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M612.437 747.52l77.227 133.632A407.893 407.893 0 0 1 511.957 921.6a407.979 407.979 0 0 1-177.664-40.448l77.142-133.675C442.283 760.704 476.288 768 511.957 768a255.147 255.147 0 0 0 100.48-20.48z" fill="#FA930C"/><path d="M103.51 542.72h154.282a255.787 255.787 0 0 0 100.48 174.037l-77.099 133.675A409.301 409.301 0 0 1 103.51 542.72z" fill="#F25450"/><path d="M742.912 850.347L665.685 716.8a255.787 255.787 0 0 0 100.523-174.08h154.325a409.301 409.301 0 0 1-177.621 307.627z" fill="#F3C408"/><path d="M920.49 481.28H766.209a255.787 255.787 0 0 0-100.48-174.08l77.184-133.547A409.301 409.301 0 0 1 920.491 481.28z" fill="#10B563"/><path d="M281.173 173.568l77.099 133.675a255.787 255.787 0 0 0-100.48 173.994H103.509a409.301 409.301 0 0 1 177.622-307.626z" fill="#D74ECB"/><path d="M512 102.4c63.659 0 123.947 14.507 177.707 40.448L612.48 276.48A255.147 255.147 0 0 0 511.915 256c-35.67 0-69.632 7.296-100.48 20.48l-77.142-133.632A407.979 407.979 0 0 1 511.957 102.4z" fill="#216ED8"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 10.933V6h32v4.933M24 6v36M16 42h16" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 4h20l10 10v28a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path clip-rule="evenodd" d="M18 18h12v7.992L18.008 26 18 18z" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M18 18v16" stroke="currentColor" stroke-width="3" stroke-linecap="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.06 10l-.036 28M10 24h28" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 35.0137H9H4V8.01273C4 6.90868 4.89543 6.01367 6 6.01367H42C43.1046 6.01367 44 6.90868 44 8.01273V35.0137H36" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M24 32L14 42H34L24 32Z" fill="none" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M37 32H11v12h26V32z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path clip-rule="evenodd" d="M4 20h40v18h-6.983v-6H10.98v6H4V20z" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M38 4H10v16h28V4z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M32 6h10v10H32zM32 32h10v10H32zM6 32h10v10H6zM6 6h10v10H6zM8 24h22M38 24h2M24 37v2M24 17v14M24 8v2"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M18.853 9.116C11.323 13.952 7.14 19.58 6.303 26.003 5 36 13.94 40.893 18.47 36.497 23 32.1 20.285 26.52 17.005 24.994c-3.28-1.525-5.286-.994-4.936-3.033.35-2.038 5.016-7.69 9.116-10.322a.749.749 0 0 0 .114-1.02L20.285 9.3c-.44-.572-.862-.55-1.432-.185zM38.679 9.116c-7.53 4.836-11.714 10.465-12.55 16.887-1.303 9.997 7.637 14.89 12.167 10.494 4.53-4.397 1.815-9.977-1.466-11.503-3.28-1.525-5.286-.994-4.936-3.033.35-2.038 5.017-7.69 9.117-10.322a.749.749 0 0 0 .113-1.02L40.11 9.3c-.44-.572-.862-.55-1.431-.185z" fill="currentColor"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" stroke-width="1.5"><g stroke="currentColor" fill="none" stroke-linecap="round"><path d="M14.113 4.75h-7.5a4.75 4.75 0 0 0 0 9.5h3.75" vector-effect="non-scaling-stroke"/><path d="M11.113 1.75l2.993 2.993a.01.01 0 0 1 0 .014L11.113 7.75" vector-effect="non-scaling-stroke"/></g></svg>
@@ -0,0 +1,47 @@
1
+ /** 替代 vite-plugin-svg-icons 的 virtual:svg-icons-register,供 Vite 直接编译源码 */
2
+ const iconModules = import.meta.glob('./*.svg', {
3
+ query: '?raw',
4
+ import: 'default',
5
+ eager: true,
6
+ })
7
+
8
+ function svgInnerToSymbol(svgRaw, id) {
9
+ if (typeof document === 'undefined') return null
10
+ const doc = new DOMParser().parseFromString(svgRaw, 'image/svg+xml')
11
+ const svgEl = doc.querySelector('svg')
12
+ if (!svgEl) return null
13
+
14
+ const symbol = document.createElementNS('http://www.w3.org/2000/svg', 'symbol')
15
+ symbol.setAttribute('id', id)
16
+ const viewBox = svgEl.getAttribute('viewBox')
17
+ if (viewBox) symbol.setAttribute('viewBox', viewBox)
18
+ symbol.innerHTML = svgEl.innerHTML
19
+ return symbol
20
+ }
21
+
22
+ export function registerUmoIcons() {
23
+ if (typeof document === 'undefined') return
24
+
25
+ const containerId = 'umo-icons'
26
+ if (document.getElementById(containerId)) return
27
+
28
+ const root = document.createElementNS('http://www.w3.org/2000/svg', 'svg')
29
+ root.setAttribute('id', containerId)
30
+ root.setAttribute('xmlns', 'http://www.w3.org/2000/svg')
31
+ root.setAttribute('aria-hidden', 'true')
32
+ root.style.position = 'absolute'
33
+ root.style.width = '0'
34
+ root.style.height = '0'
35
+ root.style.overflow = 'hidden'
36
+
37
+ for (const [path, svgRaw] of Object.entries(iconModules)) {
38
+ const name = path.match(/\/([^/]+)\.svg$/)?.[1]
39
+ if (!name) continue
40
+ const symbol = svgInnerToSymbol(svgRaw, `umo-icon-${name}`)
41
+ if (symbol) root.appendChild(symbol)
42
+ }
43
+
44
+ document.body.appendChild(root)
45
+ }
46
+
47
+ registerUmoIcons()
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M42 8v16M6 24v16M42 24c0-9.941-8.059-18-18-18a17.947 17.947 0 0 0-12.952 5.5M6 24c0 9.941 8.059 18 18 18a17.94 17.94 0 0 0 12.5-5.048" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 44c11.046 0 20-8.954 20-20S35.046 4 24 4 4 12.954 4 24s8.954 20 20 20z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M16 24h16" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M33 38H22v-8h14v-8h8v16h-5l-3 3-3-3z" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M4 6h32v24H17l-4 4-4-4H4V6z" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 22h6M12 14h12" stroke="currentColor" stroke-width="4" stroke-linecap="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M40 27V6a2 2 0 0 0-2-2H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2h11M17 12h14M17 20h14M17 28h6" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M37 37c0 1.38-.56 2.63-1.465 3.535A5 5 0 1 1 37 37z"/><path d="M39 44l-3.465-3.465m0 0a5 5 0 1 0-7.071-7.07 5 5 0 0 0 7.072 7.07z" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M32 16h9a2 2 0 0 1 2 2v23a2 2 0 0 1-2 2H18a2 2 0 0 1-2-2v-9" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M32 16V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v23a2 2 0 0 0 2 2h9M41 16L17 40M32 7L7 32M32 16L16 32M43 24L24 43M24 5L5 24M43 34l-9 9M14 5l-9 9" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="14" height="10" viewBox="0 0 16 12" fill="none"><path d="M13.965 2.155l-8.33 8.33L1.47 6.32" stroke="rgba(23, 26, 29, 0.4)" stroke-opacity=".6" stroke-width="2.38" stroke-linecap="round" stroke-linejoin="round" data-spm-anchor-id="0.0.0.i9.c0427dcfkK7bCn"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" stroke-width="1.5"><path d="M1.853 3.966a.01.01 0 0 0-.016.003 4.307 4.307 0 0 0 5.714 5.7l4.87 4.871a1.5 1.5 0 1 0 2.122-2.12L9.671 7.546a4.307 4.307 0 0 0-5.713-5.704.01.01 0 0 0-.003.016l2.6 2.6L4.45 6.563 1.853 3.966z" fill="none" vector-effect="non-scaling-stroke" stroke="currentColor"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M35 16a5 5 0 1 0 0-10 5 5 0 0 0 0 10zM13 29a5 5 0 1 0 0-10 5 5 0 0 0 0 10z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M30 13.575l-12.66 7.67M17.338 26.564l13.34 7.883" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M35 32a5 5 0 1 1 0 10 5 5 0 0 1 0-10z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M42 7H6a2 2 0 0 0-2 2v28a2 2 0 0 0 2 2h36a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M12 19h2M21 19h2M29 19h7M12 28h24" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M24 24v-5L39 4l5 5-15 15h-5z" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M16 24H9a5 5 0 0 0 0 10h30a5 5 0 0 1 0 10H18" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 44c5.96 0 2.336-8.864 6-13 3.126-3.53 14-1.914 14-7 0-11.046-8.954-20-20-20S4 12.954 4 24s8.954 20 20 20z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M28 17a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM16 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 34a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M34 10l8 8M42 10l-8 8M44 30l-7 8-4-4M26 10H4v8h22v-8zM26 30H4v8h22v-8z" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" stroke-width="1.5"><path d="M1.5 8.25h13M2.75 14.25l1.415-3.503m9.085 3.504l-1.401-3.504M6.178 5.28l1.544-3.872a.3.3 0 0 1 .556 0l1.538 3.872" stroke-linecap="round" fill="none" vector-effect="non-scaling-stroke" stroke="currentColor"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" stroke-width="1.5"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.266 10.905a.402.402 0 0 0 .399.446h.171c.236 0 .424-.208.464-.46v-.005c.03-.16.078-.305.142-.432a.841.841 0 0 1 .253-.316.633.633 0 0 1 .395-.124c.228 0 .414.08.558.24.15.155.224.374.224.657a.983.983 0 0 1-.112.473c-.07.139-.159.263-.268.374-.104.11-.221.213-.35.308-.13.088-.25.177-.365.265-.223.172-.437.341-.64.507a3.246 3.246 0 0 0-.521.549l-.037.048a2.273 2.273 0 0 0-.328.614c-.084.25-.108.951.699.951h2.581c.236 0 .428-.207.428-.461v-.091c0-.255-.192-.462-.428-.462h-2.037l.036-.056c.12-.187.258-.4.411-.535.169-.15.342-.288.521-.416.179-.132.355-.265.529-.398.178-.133.337-.28.476-.44.14-.167.25-.355.335-.566a2.03 2.03 0 0 0 .127-.756c0-.282-.05-.537-.149-.764a1.648 1.648 0 0 0-.96-.93A1.851 1.851 0 0 0 14.141 9c-.313 0-.59.06-.834.183a1.602 1.602 0 0 0-.595.498c-.16.21-.278.46-.358.748-.043.151-.072.31-.09.476z" fill="var(--umo-primary-color)"/><path d="M10.75 1.75l-9 12.5m9 0l-9-12.5" stroke-linecap="round" fill="none" vector-effect="non-scaling-stroke" stroke="currentColor"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" stroke-width="1.5"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.665 3.351a.402.402 0 0 1-.4-.446c.018-.166.047-.325.09-.476.08-.288.199-.537.357-.748.16-.216.358-.382.596-.498.243-.122.521-.183.834-.183.238 0 .464.042.678.125a1.648 1.648 0 0 1 .96.93c.1.227.149.482.149.764 0 .294-.042.546-.127.756a2.08 2.08 0 0 1-.335.565c-.139.16-.298.308-.476.44-.174.134-.35.266-.529.4a6.289 6.289 0 0 0-.521.415c-.153.136-.29.348-.41.535l-.037.056h2.037c.236 0 .428.207.428.462v.09c0 .255-.192.462-.428.462H12.95c-.807 0-.783-.701-.7-.95.083-.229.196-.443.329-.615l.037-.049c.149-.199.322-.382.52-.548.204-.166.418-.335.641-.507a7.68 7.68 0 0 1 .365-.265c.129-.095.246-.197.35-.308.11-.11.198-.235.268-.374a.984.984 0 0 0 .112-.473c0-.283-.075-.501-.224-.657a.715.715 0 0 0-.558-.24.633.633 0 0 0-.395.124.842.842 0 0 0-.253.316 1.593 1.593 0 0 0-.141.432l-.001.006c-.04.251-.228.46-.464.46h-.171z" fill="var(--umo-primary-color)"/><path d="M10.75 1.75l-9 12.5m9 0l-9-12.5" stroke-linecap="round" fill="none" vector-effect="non-scaling-stroke" stroke="currentColor"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 40.003h14.004C11.334 35.636 8 30.301 8 24c0-9.453 7.017-16 16.008-16C33 8 40 15 40 24c0 6-3.331 11.334-9.993 16.003H44" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path stroke="currentColor" stroke-width="4" stroke-linejoin="round" d="M14.5 17h28v14h-28z"/><path d="M6.5 6v36" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path stroke="currentColor" stroke-width="4" stroke-linejoin="round" d="M6 17h28v14H6z"/><path d="M42 6v36" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path stroke="currentColor" stroke-width="4" stroke-linejoin="round" d="M17 6h14v28H17z"/><path d="M42 42H6" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path stroke="currentColor" stroke-width="4" stroke-linejoin="round" d="M17 14.5h14v28H17z"/><path d="M42 6.5H6" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="6" y="6" width="36" height="36" rx="3" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M22 30h4M18 24h12M20 18h8" stroke="currentColor" stroke-width="3" stroke-linecap="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M37 37a4 4 0 0 0 4-4c0-1.473-1.333-3.473-4-6-2.667 2.527-4 4.527-4 6a4 4 0 0 0 4 4z" fill="currentColor"/><path d="M20.854 5.504l3.535 3.536" stroke="currentColor" stroke-width="3" stroke-linecap="round"/><path d="M23.682 8.333L8.125 23.889 19.44 35.203l15.556-15.557L23.682 8.333z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M12 20.073l16.961 5.577M4 43h40" stroke="currentColor" stroke-width="3" stroke-linecap="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M10 17.5l4 4m-4 0l4-4m-4-4v-11h4v11h-4z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M0 0v24h24V0z"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M3 21.5v-19M21 21.25v-19"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M17.5 14l4-4m0 4l-4-4m-4 4h-11v-4h11v4z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M0 24h24V0H0z"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M21.5 21h-19M21.25 3h-19"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14 11L4 24l10 13h30V11H14zM21 19l10 10M31 19L21 29" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="5" y="5" width="38" height="38" rx="2" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 18h38M5 30h38M17 5v38M30 5v38" stroke="currentColor" stroke-width="3" stroke-linecap="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M40 6H8a2 2 0 0 0-2 2v32a2 2 0 0 0 2 2h32a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/><path d="M16.123 6L6 15M26.003 6L6 24M35 6L6 33M19 30L6 42M41 10L29.243 20.852M19 21v21M19 21h23" stroke="currentColor" stroke-width="4" stroke-linecap="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M40 6H8a2 2 0 0 0-2 2v32a2 2 0 0 0 2 2h32a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/><path d="M16.123 6L6 15M19 12L6 24M19 21L6 33M19 30L6 42M19 6v36" stroke="currentColor" stroke-width="4" stroke-linecap="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M40 6H8a2 2 0 0 0-2 2v32a2 2 0 0 0 2 2h32a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/><path d="M6 19.059h36M16.123 6L6 15M42 10.007L32 19M26.123 6l-14.2 12.624M36.123 6l-14.2 12.624" stroke="currentColor" stroke-width="4" stroke-linecap="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 14V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v38a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-9M28 34v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H29a1 1 0 0 0-1 1v9M28 24h16M5 24h15" stroke="currentColor" stroke-width="4" stroke-linecap="round"/><path d="M32.748 28.818l-1.59-1.59-3.182-3.183 3.181-3.182 1.591-1.59M15.375 28.818l1.591-1.59 3.182-3.183-3.182-3.182-1.591-1.59" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M42 19V9a3 3 0 0 0-3-3H9a3 3 0 0 0-3 3v30a3 3 0 0 0 3 3h10" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M34 24l8 8-8 8M24 32h18" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M42 19V9a3 3 0 0 0-3-3H9a3 3 0 0 0-3 3v30a3 3 0 0 0 3 3h10" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M32 24l-8 8 8 8M24 32h18" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 14V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v38a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-9M44 34v9a1 1 0 0 1-1 1H29a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v9M28 24l16 .013M4 24.013L20 24" stroke="currentColor" stroke-width="4" stroke-linecap="round"/><path d="M39.227 28.778l1.592-1.591L44 24.005l-3.181-3.182-1.592-1.591M8.755 28.786l-1.59-1.59-3.183-3.183 3.182-3.182 1.591-1.59" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M42 6H6a2 2 0 0 0-2 2v32a2 2 0 0 0 2 2h36a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M4 18h40M17.5 18v24M30.5 18v24M4 30h40M44 8v32a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M42.17 29.245L29.262 42.151a3.6 3.6 0 0 1-5.094 0L8 26V8h18l16.17 16.17a3.6 3.6 0 0 1 0 5.075z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M18.5 21a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z" fill="currentColor"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#icon-34fc5d6353e4f38)" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M42 20v19a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V9a3 3 0 0 1 3-3h21"/><path d="M16 20l10 8L41 7"/></g><defs><clipPath id="icon-34fc5d6353e4f38"><path fill="currentColor" d="M0 0h48v48H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h14v14H0z"/><path d="M13 5.667V12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h7" stroke="currentColor" stroke-width="1.333" stroke-linecap="round" stroke-linejoin="round"/><path stroke="var(--umo-primary-color)" stroke-width="1.333" stroke-linecap="round" stroke-linejoin="round" d="M4.333 5.667l3.334 2.666 5-7"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23 4H4v22h19V4zM44 34H4v9h40v-9zM44 4H31v8h13V4zM44 18H31v8h13v-8z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 4H4v8h8V4zM44 36h-8v8h8v-8zM12 36H4v8h8v-8zM44 4h-8v8h8V4z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M8 36V12M40 36V12M12 8h24M12 40h24" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 44h28a2 2 0 0 0 2-2V14H30V4H10a2 2 0 0 0-2 2v36a2 2 0 0 0 2 2zM30 4l10 10M24 22v14M18 22h12" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.003 4l5.27 5.27h9.457v9.456l5.27 5.27-5.27 5.278v9.456h-9.456L24.004 44l-5.278-5.27H9.27v-9.456L4 23.997l5.27-5.27V9.27h9.456L24.003 4z" stroke="currentColor" stroke-width="3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M27 17c0 8-5 9-10 9 0 4 6.5 8 12 4s2-13-2-13z" stroke="currentColor" stroke-width="3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 44c9.389 0 17-7.611 17-17s-7.611-17-17-17S7 17.611 7 27s7.611 17 17 17z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M31 4H17M38 10l-3 3M24 18v9" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="8" y="4" width="32" height="40" rx="2" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M21 14h12M21 24h12M21 34h12" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15 16a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM15 26a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM15 36a2 2 0 1 0 0-4 2 2 0 0 0 0 4z" fill="currentColor"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="6" y="6" width="36" height="36" rx="3" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M6 16h36M6 13v6M42 13v6" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="6" y="6" width="36" height="36" rx="3" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M6 32h36M6 29v6M42 29v6" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="4" y="8" width="40" height="32" rx="2" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M4 10a2 2 0 0 1 2-2h36a2 2 0 0 1 2 2v6H4v-6z" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M25 23l-2 11" stroke="currentColor" stroke-width="3" stroke-linecap="round"/><path d="M31 23l6 5-6 6M17 23l-6 5 6 6" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" stroke-width="1.5"><path d="M12.25 1.75V7a4.25 4.25 0 0 1-8.5 0V1.75M3.25 14.25h9.5" stroke-linecap="round" fill="none" vector-effect="non-scaling-stroke" stroke="currentColor"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" stroke-width="1.5"><g stroke="currentColor" fill="none" stroke-linecap="round"><path d="M2 4.75h7.5a4.75 4.75 0 1 1 0 9.5H5.75" vector-effect="non-scaling-stroke"/><path d="M4.886 1.75L1.894 4.743a.01.01 0 0 0 0 .014L4.886 7.75" vector-effect="non-scaling-stroke"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M25.893 16.03l-7.779-7.778c-2.863-2.863-7.41-2.959-10.157-.213-2.746 2.746-2.65 7.293.214 10.157l7.778 7.778M31.916 22.07l7.778 7.779c2.864 2.864 3.235 7.274.214 10.157s-7.294 2.65-10.157-.213l-7.779-7.779M21.238 21.076l-3.889-3.89M30.313 30.15l-3.889-3.889" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 10a2 2 0 0 1 2-2h36a2 2 0 0 1 2 2v28a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V10z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/><path d="M36 8v32M12 8v32M38 18h6M38 30h6M4 18h6M4 16v4M9 8h6M9 40h6M33 8h6M33 40h6M4 30h6M4 28v4M44 28v4M44 16v4" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M21 19l8 5-8 5V19z" stroke="currentColor" stroke-width="3" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 36c11.046 0 20-12 20-12s-8.954-12-20-12S4 24 4 24s8.954 12 20 12z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/><path d="M24 29a5 5 0 1 0 0-10 5 5 0 0 0 0 10z" stroke="currentColor" stroke-width="4" stroke-linejoin="round"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><rect stroke="currentColor" stroke-width="1.5" x="3.5" y="1.5" width="17" height="21" rx="1"/><path d="M8.5 4.5l-3 3m13 9L16 19M13.5 4.5l-8 8m13-7l-13 13m13-7L11 19" opacity=".334" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M25 40H7a3 3 0 0 1-3-3V11a3 3 0 0 1 3-3h34a3 3 0 0 1 3 3v13.941" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M4 11a3 3 0 0 1 3-3h34a3 3 0 0 1 3 3v9H4v-9z" stroke="currentColor" stroke-width="3"/><path d="M32 35h12M38 29v12" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><circle r="2" transform="matrix(0 -1 -1 0 10 14)" fill="currentColor"/><circle r="2" transform="matrix(0 -1 -1 0 16 14)" fill="currentColor"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 4v40M42 4v40" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M18 26l-4 4 4 4" stroke="var(--umo-primary-color)" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M15 30h13a6 6 0 0 0 0-12H14" stroke="var(--umo-primary-color)" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>