adata-ui 2.1.22 → 2.1.24

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 (413) hide show
  1. package/-error.vue +170 -170
  2. package/.editorconfig +12 -12
  3. package/.gitlab-ci.yml +16 -16
  4. package/.nuxtrc +1 -1
  5. package/.nvmrc +1 -1
  6. package/.playground/app.config.ts +5 -5
  7. package/.playground/nuxt.config.ts +3 -3
  8. package/README.md +75 -75
  9. package/app.config.ts +28 -28
  10. package/app.vue +8 -8
  11. package/assets/styles/index.scss +104 -104
  12. package/assets/styles/modules/_base.scss +5 -5
  13. package/assets/styles/modules/_typography.scss +152 -152
  14. package/components/elements/README.md +1 -1
  15. package/components/elements/a-select-row/index.vue +140 -140
  16. package/components/elements/accordion/AAccordion.vue +197 -197
  17. package/components/elements/accordion/AAccordionGroup/AAccordionGroup.vue +145 -145
  18. package/components/elements/accordion/AAccordionGroup/types.ts +20 -20
  19. package/components/elements/accordion/AAccordionGroup/ui.config.ts +22 -22
  20. package/components/elements/accordion/types.ts +14 -14
  21. package/components/elements/accordion/ui.config.ts +22 -22
  22. package/components/elements/alert/AAlert.vue +65 -65
  23. package/components/elements/banner/ABanner.vue +49 -49
  24. package/components/elements/bg-block/ABgBlock.vue +11 -11
  25. package/components/elements/button/AButton.vue +188 -188
  26. package/components/elements/button/types.ts +24 -24
  27. package/components/elements/button-login/index.vue +21 -21
  28. package/components/elements/calendar/ACalendar.vue +83 -83
  29. package/components/elements/carousel/ACarousel.vue +159 -159
  30. package/components/elements/carousel/config.ui.ts +15 -15
  31. package/components/elements/carousel/types.ts +18 -18
  32. package/components/elements/chip-wrapper/AChipWrapper.vue +80 -80
  33. package/components/elements/chip-wrapper/types.ts +12 -12
  34. package/components/elements/chips/AChips.vue +32 -32
  35. package/components/elements/companies/AOurClients.vue +42 -42
  36. package/components/elements/curve-block/ACurveBlock.vue +291 -291
  37. package/components/elements/digit-badge/ADigitBadge.vue +83 -83
  38. package/components/elements/error-template/index.vue +48 -48
  39. package/components/elements/error-template/types.ts +23 -23
  40. package/components/elements/feature-description/AFeatureDescription.vue +112 -112
  41. package/components/elements/illustrations/noAccess.vue +71 -71
  42. package/components/elements/infinite-carousel/AInfiniteCarousel.vue +57 -57
  43. package/components/elements/infinite-scroll/AInfiniteScroll.vue +33 -33
  44. package/components/elements/leave-note/ALeaveNote.vue +78 -78
  45. package/components/elements/pagination/APagination.vue +110 -110
  46. package/components/elements/photos-animation/APhotosAnimation.vue +85 -85
  47. package/components/elements/select/ASelect.vue +445 -445
  48. package/components/elements/select/ASelectMobile.vue +186 -186
  49. package/components/elements/select/ui/select-button.vue +112 -112
  50. package/components/elements/select/ui/select-list.vue +99 -99
  51. package/components/elements/show-more/AShowMore.vue +35 -35
  52. package/components/elements/skeleton/ASkeleton.vue +44 -44
  53. package/components/elements/star-rating/AStarRating.vue +181 -181
  54. package/components/elements/star-rating/types.ts +7 -7
  55. package/components/elements/star-rating/ui/Star.vue +74 -74
  56. package/components/elements/status-badge/AStatusBadge.vue +74 -74
  57. package/components/elements/table/ATable.vue +93 -93
  58. package/components/elements/table/table.config.ts +32 -32
  59. package/components/elements/tree-select/ATreeSelect.vue +169 -169
  60. package/components/elements/tree-select/TreeService.ts +249 -249
  61. package/components/elements/tree-select/components/tree-select-nodes.vue +90 -90
  62. package/components/elements/tree-select/types.ts +34 -34
  63. package/components/elements/tree-select-mobile/ATreeSelectMobile.vue +79 -79
  64. package/components/elements/tree-select-mobile/components/ATreeSelectNodesMobile.vue +175 -175
  65. package/components/features/color-mode/AColorMode.client.vue +53 -53
  66. package/components/features/dropdown/ADropdown.vue +124 -124
  67. package/components/features/go-top/GoTop.vue +58 -58
  68. package/components/features/lang-switcher/lang-switcher.vue +63 -63
  69. package/components/features/payment/banner/BasicPlusLimitBanner.vue +104 -104
  70. package/components/features/payment/banner/PaymentBanner.vue +108 -108
  71. package/components/features/payment/banner/UpSellBanner.vue +125 -125
  72. package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +161 -161
  73. package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +112 -112
  74. package/components/features/payment/process/PaymentMethodSidePanel.vue +121 -121
  75. package/components/features/payment/process/PaymentProcess.vue +138 -138
  76. package/components/features/payment/process/PaymentTopUpSidePanel.vue +133 -133
  77. package/components/features/pk-mobile-services/APkMobileServices.vue +149 -149
  78. package/components/features//321/201hange-version/AChangeVersion.vue +20 -20
  79. package/components/forms/README.md +1 -1
  80. package/components/forms/checkbox/ACheckbox.vue +149 -149
  81. package/components/forms/feedback-form/FeedbackForm.vue +177 -177
  82. package/components/forms/input/button/AInputButton.vue +53 -53
  83. package/components/forms/input/date/AInputDate.vue +213 -213
  84. package/components/forms/input/password/AInputPassword.vue +53 -53
  85. package/components/forms/input/standard/AInputStandard.vue +412 -412
  86. package/components/forms/input/textarea/ATextarea.vue +200 -200
  87. package/components/forms/radio-button/ARadioButton.vue +95 -95
  88. package/components/forms/request-demo/ARequestDemo.vue +108 -108
  89. package/components/forms/toggle/AToggle.vue +157 -157
  90. package/components/forms/toggle/types.ts +16 -16
  91. package/components/modals/AConfirmationEmail.vue +40 -40
  92. package/components/modals/AboutTariffModal.vue +114 -114
  93. package/components/modals/AnotherDeviceModal.vue +60 -60
  94. package/components/modals/ApplicationAcceptedModal.vue +47 -47
  95. package/components/modals/ConnectingTariffModal.vue +67 -67
  96. package/components/modals/ContactsMobileModel.vue +182 -182
  97. package/components/modals/ContentNavigationModal.vue +355 -355
  98. package/components/modals/Insufficient-funds-modal.vue +77 -77
  99. package/components/modals/LimitReachedModal.vue +30 -30
  100. package/components/modals/NoAccessModal.vue +37 -37
  101. package/components/modals/PaymentMethodModal.vue +101 -101
  102. package/components/modals/RedirectsBanksModal.vue +69 -69
  103. package/components/modals/ReplenishModal.vue +132 -132
  104. package/components/modals/ReportBugConfirmModal.vue +30 -30
  105. package/components/modals/ReportBugModal.vue +158 -156
  106. package/components/modals/Resend.vue +82 -82
  107. package/components/modals/SubmitApplicationModal.vue +123 -123
  108. package/components/modals/id/AuthModal.vue +82 -82
  109. package/components/modals/id/IdAutoLogoutModal.vue +45 -45
  110. package/components/modals/id/IdBanner.vue +61 -61
  111. package/components/modals/id/IdConfirmAccountOtpModal.vue +186 -186
  112. package/components/modals/id/IdConfirmSuccessfulModal.vue +41 -41
  113. package/components/modals/id/IdLoginModal.vue +330 -330
  114. package/components/modals/id/IdModals.vue +114 -114
  115. package/components/modals/id/IdNewPasswordModal.vue +129 -129
  116. package/components/modals/id/IdOtpInput.vue +155 -155
  117. package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -25
  118. package/components/modals/id/IdRecoveryModal.vue +117 -117
  119. package/components/modals/id/IdRegistrationModal.vue +215 -215
  120. package/components/modals/id/IdResetPasswordOtpModal.vue +158 -158
  121. package/components/modals/id/IdTwoFactorModal.vue +130 -130
  122. package/components/navigation/README.md +1 -1
  123. package/components/navigation/bottom-navigation/ABottomNavigation.vue +106 -106
  124. package/components/navigation/breadcrumbs/ABreadcrumbs.vue +66 -66
  125. package/components/navigation/breadcrumbs/types.ts +4 -4
  126. package/components/navigation/footer/AFooter.vue +279 -279
  127. package/components/navigation/footer/ui/a-footer-accordion.vue +118 -118
  128. package/components/navigation/header/AHeader.vue +217 -217
  129. package/components/navigation/header/AlmatyContacts.vue +145 -145
  130. package/components/navigation/header/AstanaContacts.vue +67 -67
  131. package/components/navigation/header/CardGallery.vue +249 -249
  132. package/components/navigation/header/ContactMenu.vue +114 -114
  133. package/components/navigation/header/HeaderLink.vue +275 -267
  134. package/components/navigation/header/ListItem.vue +31 -31
  135. package/components/navigation/header/NavCard.vue +41 -41
  136. package/components/navigation/header/NavList.vue +131 -131
  137. package/components/navigation/header/NotificationsMenu.vue +51 -51
  138. package/components/navigation/header/ProductMenu.vue +143 -143
  139. package/components/navigation/header/ProfileMenu.vue +194 -194
  140. package/components/navigation/header/TopHeader.vue +194 -194
  141. package/components/navigation/header/types.ts +28 -28
  142. package/components/navigation/line-tabs/ALineTabs.vue +111 -111
  143. package/components/navigation/line-tabs/types.ts +21 -21
  144. package/components/navigation/mobile-navigation/AMobileNavigation.vue +104 -104
  145. package/components/navigation/pill-tabs/APillTabs.vue +171 -171
  146. package/components/navigation/pill-tabs/types.ts +23 -23
  147. package/components/navigation/side-navigation/ASideNavigation.vue +406 -406
  148. package/components/overlays/README.md +1 -1
  149. package/components/overlays/modal/AModal.vue +332 -332
  150. package/components/overlays/side-panel/ASidePanel.vue +439 -439
  151. package/components/overlays/sideover/ASlideover.vue +351 -351
  152. package/components/overlays/tooltip/ATooltip.vue +237 -237
  153. package/components/transitions/ATransitionHeight.vue +67 -67
  154. package/components/utils/index.ts +19 -19
  155. package/components/utils/removeTrailingSlash.ts +7 -7
  156. package/composables/highlight.ts +18 -18
  157. package/composables/modalsState.ts +8 -8
  158. package/composables/projectState.ts +2 -2
  159. package/composables/useAdaptive.ts +46 -46
  160. package/composables/useBuyTariffs.ts +91 -91
  161. package/composables/useCarouselScroll.ts +49 -49
  162. package/composables/useHeaderNavigationLinks.ts +453 -453
  163. package/composables/useIdModals.ts +36 -36
  164. package/composables/usePayment.ts +74 -74
  165. package/composables/useUIValidation.ts +16 -16
  166. package/composables/useUrls.ts +21 -21
  167. package/eslint.config.mjs +45 -45
  168. package/i18n/i18n.config.ts +21 -21
  169. package/i18n.config.ts +21 -21
  170. package/icons/adata-logo.vue +17 -17
  171. package/icons/ai-assistant.vue +13 -13
  172. package/icons/akimat.vue +20 -20
  173. package/icons/arrow/arrow-bottom-left-on-square.vue +5 -5
  174. package/icons/arrow/arrow-circle-down.vue +16 -16
  175. package/icons/arrow/arrow-circle-reset.vue +16 -16
  176. package/icons/arrow/arrow-corner.vue +9 -9
  177. package/icons/arrow/arrow-graph-down.vue +13 -13
  178. package/icons/arrow/arrow-graph-up.vue +14 -14
  179. package/icons/arrow/arrow-square-down.vue +15 -15
  180. package/icons/arrow/arrow-top-right-on-square.vue +6 -6
  181. package/icons/arrow-currency-gray.vue +5 -5
  182. package/icons/arrow-currency-green.vue +5 -5
  183. package/icons/arrow-currency-red.vue +5 -5
  184. package/icons/arrow-side-up.vue +6 -6
  185. package/icons/avatar.vue +12 -12
  186. package/icons/bank.vue +5 -5
  187. package/icons/block.vue +16 -16
  188. package/icons/bookmark/bookmark-filled.vue +18 -18
  189. package/icons/bookmark/bookmark.vue +5 -5
  190. package/icons/browsers/browser-duck.vue +65 -65
  191. package/icons/browsers/browser-google.vue +30 -30
  192. package/icons/browsers/browser-yandex.vue +13 -13
  193. package/icons/building-vector.vue +7 -7
  194. package/icons/calculator.vue +7 -7
  195. package/icons/calendar.vue +24 -24
  196. package/icons/car.vue +7 -7
  197. package/icons/chart-bar.vue +5 -5
  198. package/icons/chart-pie.vue +16 -16
  199. package/icons/check/check-circle.vue +6 -6
  200. package/icons/check/check-shield.vue +14 -14
  201. package/icons/check/check.vue +17 -17
  202. package/icons/check/checkmark-circle.vue +6 -6
  203. package/icons/check-sb.vue +7 -7
  204. package/icons/checkbox/checkbox-active.vue +17 -17
  205. package/icons/checkbox/checkbox-empty.vue +10 -10
  206. package/icons/checkbox/checkbox-intermediate.vue +7 -7
  207. package/icons/chevron/chevron-down.vue +5 -5
  208. package/icons/chevron/chevron-left.vue +5 -5
  209. package/icons/chevron/chevron-right.vue +5 -5
  210. package/icons/chevron/chevron-up.vue +5 -5
  211. package/icons/chevron/double-chevron-right.vue +12 -12
  212. package/icons/clipboard-text.vue +7 -7
  213. package/icons/clock.vue +25 -25
  214. package/icons/close.vue +16 -16
  215. package/icons/company/company-bazis.vue +21 -21
  216. package/icons/company/company-bereke.vue +25 -25
  217. package/icons/company/company-bigroup.vue +16 -16
  218. package/icons/company/company-erg.vue +17 -17
  219. package/icons/company/company-forte.vue +21 -21
  220. package/icons/company/company-halyk.vue +15 -15
  221. package/icons/company/company-jusan.vue +31 -31
  222. package/icons/company/company-kaspi.vue +14 -14
  223. package/icons/company/company-mycar.vue +13 -13
  224. package/icons/company/company-samruk.vue +21 -21
  225. package/icons/company-egov-small.vue +15 -15
  226. package/icons/company.vue +8 -8
  227. package/icons/copy.vue +7 -7
  228. package/icons/currency/currency-dollar.vue +16 -16
  229. package/icons/currency/currency-down.vue +22 -22
  230. package/icons/currency/currency-eur.vue +57 -57
  231. package/icons/currency/currency-rub.vue +7 -7
  232. package/icons/currency/currency-tenge.vue +9 -9
  233. package/icons/currency/currency-usd.vue +221 -221
  234. package/icons/currency/currency-yuan.vue +25 -25
  235. package/icons/default-avatar.vue +20 -20
  236. package/icons/delete.vue +7 -7
  237. package/icons/document.vue +5 -5
  238. package/icons/download.vue +11 -11
  239. package/icons/edit.vue +7 -7
  240. package/icons/education.vue +16 -16
  241. package/icons/egov-small.vue +7 -7
  242. package/icons/excel-icon.vue +14 -14
  243. package/icons/expand-window.vue +7 -7
  244. package/icons/eye-closed.vue +26 -26
  245. package/icons/eye-open.vue +7 -7
  246. package/icons/eye-opened.vue +23 -23
  247. package/icons/file/file.vue +16 -16
  248. package/icons/file/files.vue +16 -16
  249. package/icons/filter.vue +5 -5
  250. package/icons/flag.vue +7 -7
  251. package/icons/gift.vue +8 -8
  252. package/icons/globe.vue +16 -16
  253. package/icons/google.vue +41 -41
  254. package/icons/gradiend-icons/files-gradient.vue +22 -0
  255. package/icons/gradiend-icons/hammer-gradient.vue +62 -0
  256. package/icons/graph-pie.vue +14 -14
  257. package/icons/hand/hand-thumb-up-filled.vue +5 -5
  258. package/icons/hand/hand-thumb-up.vue +5 -5
  259. package/icons/hand-with-phone/hand-with-phone-dark.vue +52 -52
  260. package/icons/hand-with-phone/hand-with-phone-light.vue +52 -52
  261. package/icons/handshake.vue +5 -5
  262. package/icons/hcheck.vue +14 -14
  263. package/icons/hdocument.vue +7 -7
  264. package/icons/history.vue +5 -5
  265. package/icons/horizontal-more.vue +13 -13
  266. package/icons/hot-line.vue +6 -6
  267. package/icons/hummer.vue +16 -16
  268. package/icons/id.vue +7 -7
  269. package/icons/info/info-circle.vue +29 -29
  270. package/icons/invoice.vue +7 -7
  271. package/icons/judge.vue +14 -14
  272. package/icons/kaspi-qr.vue +13 -13
  273. package/icons/link-chain.vue +28 -28
  274. package/icons/link.vue +7 -7
  275. package/icons/linkedin.vue +24 -24
  276. package/icons/loader-circle.vue +27 -27
  277. package/icons/location.vue +8 -8
  278. package/icons/lock.vue +5 -5
  279. package/icons/logo.vue +15 -15
  280. package/icons/logout.vue +16 -16
  281. package/icons/magnify/magnifying-glass-minus.vue +8 -8
  282. package/icons/magnify/magnifying-glass-plus.vue +9 -9
  283. package/icons/magnify/magnifying-glass.vue +9 -9
  284. package/icons/mail.vue +7 -7
  285. package/icons/mailru.vue +34 -34
  286. package/icons/main-filter.vue +5 -5
  287. package/icons/map/map-pin-filled.vue +7 -7
  288. package/icons/map/map-pin-rect.vue +15 -15
  289. package/icons/map/map-pin.vue +7 -7
  290. package/icons/map-marker-start.vue +7 -7
  291. package/icons/map-paper.vue +5 -5
  292. package/icons/medal.vue +7 -7
  293. package/icons/menu-filled.vue +20 -20
  294. package/icons/menu.vue +8 -8
  295. package/icons/message/message.vue +12 -12
  296. package/icons/minus/minus-circle.vue +10 -10
  297. package/icons/money.vue +5 -5
  298. package/icons/monitoring.vue +10 -10
  299. package/icons/moon.vue +8 -8
  300. package/icons/more.vue +29 -29
  301. package/icons/note-pencil.vue +14 -14
  302. package/icons/note.vue +14 -14
  303. package/icons/notification.vue +16 -16
  304. package/icons/paperclip.vue +7 -7
  305. package/icons/payment/payment-card.vue +6 -6
  306. package/icons/payment/payment-kaspi.vue +11 -11
  307. package/icons/person-vector.vue +7 -7
  308. package/icons/person-with-briefcase.vue +10 -10
  309. package/icons/phone-filled.vue +5 -5
  310. package/icons/phone.vue +7 -7
  311. package/icons/plus/plus-circle.vue +8 -8
  312. package/icons/plus/plus.vue +13 -13
  313. package/icons/profile.vue +5 -5
  314. package/icons/radio/radio-check.vue +8 -8
  315. package/icons/radio/radio-empty.vue +10 -10
  316. package/icons/receipt.vue +8 -8
  317. package/icons/robot.vue +14 -14
  318. package/icons/sanctions.vue +8 -8
  319. package/icons/scales/scale.vue +16 -16
  320. package/icons/scales/scales.vue +5 -5
  321. package/icons/scales/standing-scales.vue +15 -15
  322. package/icons/search.vue +27 -27
  323. package/icons/share/share-alt.vue +5 -5
  324. package/icons/share/share.vue +14 -14
  325. package/icons/ship.vue +8 -8
  326. package/icons/socials/face-book.vue +15 -15
  327. package/icons/socials/instagram.vue +19 -19
  328. package/icons/socials/telegram.vue +15 -15
  329. package/icons/socials/tik-tok.vue +15 -15
  330. package/icons/socials/youtube.vue +16 -16
  331. package/icons/sort/sort-asc.vue +15 -15
  332. package/icons/sort/sort-desc.vue +15 -15
  333. package/icons/splitting-arrows.vue +8 -8
  334. package/icons/star/star-filled.vue +40 -40
  335. package/icons/star/star-half-filled.vue +20 -20
  336. package/icons/star/star.vue +25 -25
  337. package/icons/sun.vue +14 -14
  338. package/icons/sviazi.vue +5 -5
  339. package/icons/tag.vue +30 -30
  340. package/icons/tasks.vue +10 -10
  341. package/icons/tender-search.vue +11 -11
  342. package/icons/toasts/check-circle-toast.vue +6 -6
  343. package/icons/toasts/warning-triangle-toast.vue +7 -7
  344. package/icons/trash.vue +13 -13
  345. package/icons/triangle.vue +10 -10
  346. package/icons/truck.vue +7 -7
  347. package/icons/user-square.vue +14 -14
  348. package/icons/user.vue +22 -22
  349. package/icons/users-focus.vue +8 -8
  350. package/icons/users-three.vue +7 -7
  351. package/icons/users.vue +8 -8
  352. package/icons/warning/warning-circle.vue +29 -29
  353. package/icons/warning/warning-triangle-filled.vue +12 -12
  354. package/icons/warning/warning-triangle.vue +28 -28
  355. package/icons/whatsapp.vue +8 -8
  356. package/icons/work-bag.vue +11 -11
  357. package/icons/work-case.vue +9 -9
  358. package/icons/work-search.vue +10 -10
  359. package/icons/work.vue +5 -5
  360. package/icons/x-mark.vue +15 -15
  361. package/icons/yandex.vue +28 -28
  362. package/illustrations/address-location.vue +38 -38
  363. package/illustrations/ball-with-chain.vue +120 -120
  364. package/illustrations/bill.vue +133 -133
  365. package/illustrations/buildings.vue +82 -82
  366. package/illustrations/calendar.vue +156 -156
  367. package/illustrations/chains.vue +152 -152
  368. package/illustrations/coin-percent.vue +126 -126
  369. package/illustrations/coins-stack.vue +202 -202
  370. package/illustrations/delete-dark.vue +31 -31
  371. package/illustrations/delete.vue +32 -32
  372. package/illustrations/doc-with-stamp.vue +126 -126
  373. package/illustrations/document.vue +64 -64
  374. package/illustrations/door.vue +74 -74
  375. package/illustrations/empty-box.vue +77 -77
  376. package/illustrations/empty-wallet.vue +161 -161
  377. package/illustrations/graph-in-coin.vue +119 -119
  378. package/illustrations/hammer.vue +156 -156
  379. package/illustrations/hand-cash.vue +108 -108
  380. package/illustrations/info.vue +39 -39
  381. package/illustrations/mail.vue +68 -68
  382. package/illustrations/ok.vue +62 -62
  383. package/illustrations/people-group.vue +237 -237
  384. package/illustrations/person-with-phone.vue +187 -187
  385. package/illustrations/person.vue +159 -159
  386. package/illustrations/phone-check.vue +90 -90
  387. package/illustrations/phone-payment-method.vue +223 -223
  388. package/illustrations/search.vue +14 -0
  389. package/illustrations/stop-hand.vue +77 -77
  390. package/illustrations/stop-sign.vue +34 -34
  391. package/illustrations/suit.vue +111 -111
  392. package/illustrations/suitcase.vue +105 -105
  393. package/illustrations/terminal-dark.vue +48 -48
  394. package/illustrations/terminal.vue +234 -234
  395. package/illustrations/trash-can.vue +108 -108
  396. package/illustrations/turn-on-tariff.vue +38 -38
  397. package/illustrations/two-persons.vue +169 -169
  398. package/lang/en.ts +835 -834
  399. package/lang/kk.ts +837 -836
  400. package/lang/ru.ts +838 -837
  401. package/layouts/default.vue +13 -13
  402. package/nuxt.config.ts +88 -88
  403. package/package.json +69 -69
  404. package/plugins/maska.ts +4 -4
  405. package/plugins/toast.client.ts +58 -58
  406. package/public/kaspi/logo.svg +4 -4
  407. package/shared/constans/pages.ts +90 -89
  408. package/tailwind.config.ts +163 -163
  409. package/tests/AButton.test.ts +81 -81
  410. package/tsconfig.json +6 -6
  411. package/utils/getMaxZindex.ts +25 -25
  412. package/utils/localizedNavigation.ts +36 -36
  413. package/vitest.config.ts +14 -14
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2.05003 7.28054C2.05003 4.39179 4.39182 2.05 7.28057 2.05C10.1693 2.05 12.5111 4.39179 12.5111 7.28054C12.5111 10.1693 10.1693 12.5111 7.28057 12.5111C4.39182 12.5111 2.05003 10.1693 2.05003 7.28054ZM7.28057 1C3.81192 1 1.00003 3.81189 1.00003 7.28054C1.00003 10.7492 3.81192 13.5611 7.28057 13.5611C8.82589 13.5611 10.2409 13.003 11.3349 12.0773L14.1038 14.8462C14.3088 15.0512 14.6412 15.0512 14.8462 14.8462C15.0513 14.6412 15.0513 14.3088 14.8462 14.1037L12.0774 11.3349C13.003 10.2408 13.5611 8.82585 13.5611 7.28054C13.5611 3.81189 10.7492 1 7.28057 1Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 7.29999C4.5 7.01004 4.71129 6.77499 4.97192 6.77499H9.62811C9.88874 6.77499 10.1 7.01004 10.1 7.29999C10.1 7.58994 9.88874 7.82499 9.62811 7.82499H4.97192C4.71129 7.82499 4.5 7.58994 4.5 7.29999Z" fill="currentColor"/>
5
- </svg>
6
- </template>
7
- <script setup lang="ts">
8
- </script>
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.05003 7.28054C2.05003 4.39179 4.39182 2.05 7.28057 2.05C10.1693 2.05 12.5111 4.39179 12.5111 7.28054C12.5111 10.1693 10.1693 12.5111 7.28057 12.5111C4.39182 12.5111 2.05003 10.1693 2.05003 7.28054ZM7.28057 1C3.81192 1 1.00003 3.81189 1.00003 7.28054C1.00003 10.7492 3.81192 13.5611 7.28057 13.5611C8.82589 13.5611 10.2409 13.003 11.3349 12.0773L14.1038 14.8462C14.3088 15.0512 14.6412 15.0512 14.8462 14.8462C15.0513 14.6412 15.0513 14.3088 14.8462 14.1037L12.0774 11.3349C13.003 10.2408 13.5611 8.82585 13.5611 7.28054C13.5611 3.81189 10.7492 1 7.28057 1Z" fill="currentColor"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 7.29999C4.5 7.01004 4.71129 6.77499 4.97192 6.77499H9.62811C9.88874 6.77499 10.1 7.01004 10.1 7.29999C10.1 7.58994 9.88874 7.82499 9.62811 7.82499H4.97192C4.71129 7.82499 4.5 7.58994 4.5 7.29999Z" fill="currentColor"/>
5
+ </svg>
6
+ </template>
7
+ <script setup lang="ts">
8
+ </script>
@@ -1,9 +1,9 @@
1
- <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2.05003 7.28054C2.05003 4.39179 4.39182 2.05 7.28057 2.05C10.1693 2.05 12.5111 4.39179 12.5111 7.28054C12.5111 10.1693 10.1693 12.5111 7.28057 12.5111C4.39182 12.5111 2.05003 10.1693 2.05003 7.28054ZM7.28057 1C3.81192 1 1.00003 3.81189 1.00003 7.28054C1.00003 10.7492 3.81192 13.5611 7.28057 13.5611C8.82589 13.5611 10.2409 13.003 11.3349 12.0773L14.1038 14.8462C14.3088 15.0512 14.6412 15.0512 14.8462 14.8462C15.0513 14.6412 15.0513 14.3088 14.8462 14.1037L12.0774 11.3349C13.003 10.2408 13.5611 8.82585 13.5611 7.28054C13.5611 3.81189 10.7492 1 7.28057 1Z" fill="currentColor"/>
4
- <path d="M7.30001 4.18503C7.58996 4.18503 7.82501 4.42008 7.82501 4.71003V6.77499H9.89001C10.18 6.77499 10.415 7.01004 10.415 7.29999C10.415 7.58994 10.18 7.82499 9.89001 7.82499H7.82501V9.89002C7.82501 10.18 7.58996 10.415 7.30001 10.415C7.01006 10.415 6.77501 10.18 6.77501 9.89002V7.82499H4.71002C4.42007 7.82499 4.18502 7.58994 4.18502 7.29999C4.18502 7.01004 4.42007 6.77499 4.71002 6.77499H6.77501V4.71003C6.77501 4.42008 7.01006 4.18503 7.30001 4.18503Z" fill="currentColor"/>
5
- </svg>
6
-
7
- </template>
8
- <script setup lang="ts">
9
- </script>
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.05003 7.28054C2.05003 4.39179 4.39182 2.05 7.28057 2.05C10.1693 2.05 12.5111 4.39179 12.5111 7.28054C12.5111 10.1693 10.1693 12.5111 7.28057 12.5111C4.39182 12.5111 2.05003 10.1693 2.05003 7.28054ZM7.28057 1C3.81192 1 1.00003 3.81189 1.00003 7.28054C1.00003 10.7492 3.81192 13.5611 7.28057 13.5611C8.82589 13.5611 10.2409 13.003 11.3349 12.0773L14.1038 14.8462C14.3088 15.0512 14.6412 15.0512 14.8462 14.8462C15.0513 14.6412 15.0513 14.3088 14.8462 14.1037L12.0774 11.3349C13.003 10.2408 13.5611 8.82585 13.5611 7.28054C13.5611 3.81189 10.7492 1 7.28057 1Z" fill="currentColor"/>
4
+ <path d="M7.30001 4.18503C7.58996 4.18503 7.82501 4.42008 7.82501 4.71003V6.77499H9.89001C10.18 6.77499 10.415 7.01004 10.415 7.29999C10.415 7.58994 10.18 7.82499 9.89001 7.82499H7.82501V9.89002C7.82501 10.18 7.58996 10.415 7.30001 10.415C7.01006 10.415 6.77501 10.18 6.77501 9.89002V7.82499H4.71002C4.42007 7.82499 4.18502 7.58994 4.18502 7.29999C4.18502 7.01004 4.42007 6.77499 4.71002 6.77499H6.77501V4.71003C6.77501 4.42008 7.01006 4.18503 7.30001 4.18503Z" fill="currentColor"/>
5
+ </svg>
6
+
7
+ </template>
8
+ <script setup lang="ts">
9
+ </script>
@@ -1,9 +1,9 @@
1
- <template>
2
- <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
3
- <path clip-rule="evenodd" d="M2.05012 7.28051C2.05012 4.39178 4.3919 2.04999 7.28063 2.04999C10.1694 2.04999 12.5111 4.39178 12.5111 7.28051C12.5111 10.1692 10.1694 12.511 7.28063 12.511C4.3919 12.511 2.05012 10.1692 2.05012 7.28051ZM7.28063 1C3.812 1 1.00012 3.81188 1.00012 7.28051C1.00012 10.7491 3.812 13.561 7.28063 13.561C8.82595 13.561 10.2409 13.0029 11.335 12.0773L14.1038 14.8461C14.3088 15.0512 14.6412 15.0512 14.8463 14.8461C15.0513 14.6411 15.0513 14.3087 14.8463 14.1037L12.0774 11.3348C13.003 10.2408 13.5611 8.82582 13.5611 7.28051C13.5611 3.81188 10.7493 1 7.28063 1Z"
4
- fill="currentColor"
5
- fill-rule="evenodd"/>
6
- </svg>
7
- </template>
8
- <script setup lang="ts">
9
- </script>
1
+ <template>
2
+ <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
3
+ <path clip-rule="evenodd" d="M2.05012 7.28051C2.05012 4.39178 4.3919 2.04999 7.28063 2.04999C10.1694 2.04999 12.5111 4.39178 12.5111 7.28051C12.5111 10.1692 10.1694 12.511 7.28063 12.511C4.3919 12.511 2.05012 10.1692 2.05012 7.28051ZM7.28063 1C3.812 1 1.00012 3.81188 1.00012 7.28051C1.00012 10.7491 3.812 13.561 7.28063 13.561C8.82595 13.561 10.2409 13.0029 11.335 12.0773L14.1038 14.8461C14.3088 15.0512 14.6412 15.0512 14.8463 14.8461C15.0513 14.6411 15.0513 14.3087 14.8463 14.1037L12.0774 11.3348C13.003 10.2408 13.5611 8.82582 13.5611 7.28051C13.5611 3.81188 10.7493 1 7.28063 1Z"
4
+ fill="currentColor"
5
+ fill-rule="evenodd"/>
6
+ </svg>
7
+ </template>
8
+ <script setup lang="ts">
9
+ </script>
package/icons/mail.vue CHANGED
@@ -1,7 +1,7 @@
1
- <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13.9472 3.75645C13.9218 3.52873 13.7258 3.34491 13.4788 3.34491H2.52121C2.27415 3.34491 2.07818 3.52873 2.05284 3.75645L7.62834 8.07766C7.71751 8.12894 7.84903 8.16645 8 8.16645C8.15098 8.16645 8.2825 8.12894 8.37167 8.07764L13.9472 3.75645ZM14.9999 3.80657C15 3.81272 15 3.80043 14.9999 3.80657V12.1931C14.9999 13.0327 14.3141 13.7048 13.4788 13.7048H2.52121C1.68586 13.7048 1.00007 13.0327 1.00007 12.1931V3.80657C0.999964 3.80046 0.999964 3.8127 1.00007 3.80657C1.00007 2.96699 1.68586 2.29492 2.52121 2.29492H13.4788C14.3141 2.29492 14.9999 2.96699 14.9999 3.80657ZM2.05006 4.97695V12.1931C2.05006 12.4434 2.25625 12.6548 2.52121 12.6548H13.4788C13.7437 12.6548 13.9499 12.4434 13.9499 12.1931V4.97696L8.9062 8.9814L8.90143 8.9842C8.63265 9.1405 8.31382 9.21644 8 9.21644C7.68617 9.21644 7.36735 9.1405 7.09856 8.9842L7.09379 8.9814L2.05006 4.97695Z" fill="currentColor"/>
4
- </svg>
5
- </template>
6
- <script setup lang="ts">
7
- </script>
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.9472 3.75645C13.9218 3.52873 13.7258 3.34491 13.4788 3.34491H2.52121C2.27415 3.34491 2.07818 3.52873 2.05284 3.75645L7.62834 8.07766C7.71751 8.12894 7.84903 8.16645 8 8.16645C8.15098 8.16645 8.2825 8.12894 8.37167 8.07764L13.9472 3.75645ZM14.9999 3.80657C15 3.81272 15 3.80043 14.9999 3.80657V12.1931C14.9999 13.0327 14.3141 13.7048 13.4788 13.7048H2.52121C1.68586 13.7048 1.00007 13.0327 1.00007 12.1931V3.80657C0.999964 3.80046 0.999964 3.8127 1.00007 3.80657C1.00007 2.96699 1.68586 2.29492 2.52121 2.29492H13.4788C14.3141 2.29492 14.9999 2.96699 14.9999 3.80657ZM2.05006 4.97695V12.1931C2.05006 12.4434 2.25625 12.6548 2.52121 12.6548H13.4788C13.7437 12.6548 13.9499 12.4434 13.9499 12.1931V4.97696L8.9062 8.9814L8.90143 8.9842C8.63265 9.1405 8.31382 9.21644 8 9.21644C7.68617 9.21644 7.36735 9.1405 7.09856 8.9842L7.09379 8.9814L2.05006 4.97695Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
6
+ <script setup lang="ts">
7
+ </script>
package/icons/mailru.vue CHANGED
@@ -1,34 +1,34 @@
1
- <template>
2
- <svg
3
- width="32"
4
- height="32"
5
- viewBox="0 0 32 32"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <rect
10
- x="0.5"
11
- y="0.5"
12
- width="31"
13
- height="31"
14
- rx="5.5"
15
- stroke="#9DA3AC"
16
- />
17
- <g clip-path="url(#clip0_680_206687)">
18
- <path
19
- d="M19.1585 15.5C19.1585 17.2417 17.7417 18.6585 16 18.6585C14.2583 18.6585 12.8415 17.2417 12.8415 15.5C12.8415 13.7583 14.2583 12.3415 16 12.3415C17.7417 12.3415 19.1585 13.7583 19.1585 15.5ZM16 5C10.2106 5 5.5 9.71056 5.5 15.5C5.5 21.2894 10.2106 26 16 26C18.121 26 20.1665 25.3687 21.9148 24.1737L21.945 24.1527L20.5301 22.5081L20.5065 22.5238C19.1605 23.3894 17.6019 23.8475 16 23.8475C11.3971 23.8475 7.6525 20.1029 7.6525 15.5C7.6525 10.8971 11.3971 7.1525 16 7.1525C20.6029 7.1525 24.3475 10.8971 24.3475 15.5C24.3475 16.0965 24.2812 16.7003 24.1506 17.2942C23.8868 18.3777 23.1282 18.7097 22.5586 18.6657C21.9857 18.6192 21.3156 18.211 21.311 17.2122V16.4509V15.5C21.311 12.5712 18.9288 10.189 16 10.189C13.0712 10.189 10.689 12.5712 10.689 15.5C10.689 18.4288 13.0712 20.811 16 20.811C17.4227 20.811 18.7569 20.2545 19.7629 19.2432C20.3477 20.1535 21.3012 20.7244 22.386 20.811C22.4792 20.8189 22.5743 20.8228 22.6688 20.8228C23.432 20.8228 24.1893 20.5676 24.7997 20.1036C25.429 19.6258 25.8989 18.9348 26.1588 18.1047C26.2001 17.9708 26.2762 17.6637 26.2769 17.6617L26.2788 17.6505C26.4317 16.9844 26.5 16.3203 26.5 15.5C26.5 9.71056 21.7894 5 16 5Z"
20
- fill="#FF9E00"
21
- />
22
- </g>
23
- <defs>
24
- <clipPath id="clip0_680_206687">
25
- <rect
26
- width="21"
27
- height="21"
28
- fill="white"
29
- transform="translate(5.5 5)"
30
- />
31
- </clipPath>
32
- </defs>
33
- </svg>
34
- </template>
1
+ <template>
2
+ <svg
3
+ width="32"
4
+ height="32"
5
+ viewBox="0 0 32 32"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <rect
10
+ x="0.5"
11
+ y="0.5"
12
+ width="31"
13
+ height="31"
14
+ rx="5.5"
15
+ stroke="#9DA3AC"
16
+ />
17
+ <g clip-path="url(#clip0_680_206687)">
18
+ <path
19
+ d="M19.1585 15.5C19.1585 17.2417 17.7417 18.6585 16 18.6585C14.2583 18.6585 12.8415 17.2417 12.8415 15.5C12.8415 13.7583 14.2583 12.3415 16 12.3415C17.7417 12.3415 19.1585 13.7583 19.1585 15.5ZM16 5C10.2106 5 5.5 9.71056 5.5 15.5C5.5 21.2894 10.2106 26 16 26C18.121 26 20.1665 25.3687 21.9148 24.1737L21.945 24.1527L20.5301 22.5081L20.5065 22.5238C19.1605 23.3894 17.6019 23.8475 16 23.8475C11.3971 23.8475 7.6525 20.1029 7.6525 15.5C7.6525 10.8971 11.3971 7.1525 16 7.1525C20.6029 7.1525 24.3475 10.8971 24.3475 15.5C24.3475 16.0965 24.2812 16.7003 24.1506 17.2942C23.8868 18.3777 23.1282 18.7097 22.5586 18.6657C21.9857 18.6192 21.3156 18.211 21.311 17.2122V16.4509V15.5C21.311 12.5712 18.9288 10.189 16 10.189C13.0712 10.189 10.689 12.5712 10.689 15.5C10.689 18.4288 13.0712 20.811 16 20.811C17.4227 20.811 18.7569 20.2545 19.7629 19.2432C20.3477 20.1535 21.3012 20.7244 22.386 20.811C22.4792 20.8189 22.5743 20.8228 22.6688 20.8228C23.432 20.8228 24.1893 20.5676 24.7997 20.1036C25.429 19.6258 25.8989 18.9348 26.1588 18.1047C26.2001 17.9708 26.2762 17.6637 26.2769 17.6617L26.2788 17.6505C26.4317 16.9844 26.5 16.3203 26.5 15.5C26.5 9.71056 21.7894 5 16 5Z"
20
+ fill="#FF9E00"
21
+ />
22
+ </g>
23
+ <defs>
24
+ <clipPath id="clip0_680_206687">
25
+ <rect
26
+ width="21"
27
+ height="21"
28
+ fill="white"
29
+ transform="translate(5.5 5)"
30
+ />
31
+ </clipPath>
32
+ </defs>
33
+ </svg>
34
+ </template>
@@ -1,5 +1,5 @@
1
- <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path class="fill-deepblue-900 dark:fill-gray-200" fill-rule="evenodd" clip-rule="evenodd" d="M15.1487 5.43944C15.1487 4.71477 15.7361 4.1273 16.4608 4.1273C17.1855 4.1273 17.7729 4.71477 17.7729 5.43944C17.7729 6.16411 17.1855 6.75158 16.4608 6.75158C15.7361 6.75158 15.1487 6.16411 15.1487 5.43944ZM13.683 6.22775H2.29021C1.85541 6.22775 1.50293 5.87527 1.50293 5.44046C1.50293 5.00566 1.85541 4.65318 2.29021 4.65318H13.6825C14.0248 3.44103 15.1391 2.55273 16.4608 2.55273C17.7825 2.55273 18.8968 3.44103 19.2391 4.65318H21.7128C22.1476 4.65318 22.5 5.00566 22.5 5.44046C22.5 5.87527 22.1476 6.22775 21.7128 6.22775H19.2386C18.8955 7.43886 17.7818 8.32615 16.4608 8.32615C15.1398 8.32615 14.0261 7.43886 13.683 6.22775ZM8.59002 9.11292C9.91221 9.11292 11.0268 10.0018 11.3687 11.2146H21.7099C22.1447 11.2146 22.4972 11.5671 22.4972 12.0019C22.4972 12.4367 22.1447 12.7892 21.7099 12.7892H11.3674C11.024 13.9997 9.91053 14.8863 8.59002 14.8863C7.2695 14.8863 6.15608 13.9997 5.81263 12.7892H2.29021C1.85541 12.7892 1.50293 12.4367 1.50293 12.0019C1.50293 11.5671 1.85541 11.2146 2.29021 11.2146H5.81132C6.15325 10.0018 7.26783 9.11292 8.59002 9.11292ZM8.59002 10.6875C7.86534 10.6875 7.27788 11.2749 7.27788 11.9996C7.27788 12.7243 7.86534 13.3118 8.59002 13.3118C9.31469 13.3118 9.90216 12.7243 9.90216 11.9996C9.90216 11.2749 9.31469 10.6875 8.59002 10.6875ZM19.2386 19.349C18.8956 20.5602 17.7818 21.4475 16.4608 21.4475C15.1398 21.4475 14.026 20.5602 13.683 19.349H2.29021C1.85541 19.349 1.50293 18.9965 1.50293 18.5617C1.50293 18.1269 1.85541 17.7744 2.29021 17.7744H13.6825C14.0249 16.5624 15.1391 15.6741 16.4608 15.6741C17.7825 15.6741 18.8967 16.5624 19.2391 17.7744H21.7128C22.1476 17.7744 22.5 18.1269 22.5 18.5617C22.5 18.9965 22.1476 19.349 21.7128 19.349H19.2386ZM15.1487 18.5608C15.1487 17.8362 15.7361 17.2487 16.4608 17.2487C17.1855 17.2487 17.7729 17.8362 17.7729 18.5608C17.7729 19.2855 17.1855 19.873 16.4608 19.873C15.7361 19.873 15.1487 19.2855 15.1487 18.5608Z"/>
4
- </svg>
5
- </template>
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path class="fill-deepblue-900 dark:fill-gray-200" fill-rule="evenodd" clip-rule="evenodd" d="M15.1487 5.43944C15.1487 4.71477 15.7361 4.1273 16.4608 4.1273C17.1855 4.1273 17.7729 4.71477 17.7729 5.43944C17.7729 6.16411 17.1855 6.75158 16.4608 6.75158C15.7361 6.75158 15.1487 6.16411 15.1487 5.43944ZM13.683 6.22775H2.29021C1.85541 6.22775 1.50293 5.87527 1.50293 5.44046C1.50293 5.00566 1.85541 4.65318 2.29021 4.65318H13.6825C14.0248 3.44103 15.1391 2.55273 16.4608 2.55273C17.7825 2.55273 18.8968 3.44103 19.2391 4.65318H21.7128C22.1476 4.65318 22.5 5.00566 22.5 5.44046C22.5 5.87527 22.1476 6.22775 21.7128 6.22775H19.2386C18.8955 7.43886 17.7818 8.32615 16.4608 8.32615C15.1398 8.32615 14.0261 7.43886 13.683 6.22775ZM8.59002 9.11292C9.91221 9.11292 11.0268 10.0018 11.3687 11.2146H21.7099C22.1447 11.2146 22.4972 11.5671 22.4972 12.0019C22.4972 12.4367 22.1447 12.7892 21.7099 12.7892H11.3674C11.024 13.9997 9.91053 14.8863 8.59002 14.8863C7.2695 14.8863 6.15608 13.9997 5.81263 12.7892H2.29021C1.85541 12.7892 1.50293 12.4367 1.50293 12.0019C1.50293 11.5671 1.85541 11.2146 2.29021 11.2146H5.81132C6.15325 10.0018 7.26783 9.11292 8.59002 9.11292ZM8.59002 10.6875C7.86534 10.6875 7.27788 11.2749 7.27788 11.9996C7.27788 12.7243 7.86534 13.3118 8.59002 13.3118C9.31469 13.3118 9.90216 12.7243 9.90216 11.9996C9.90216 11.2749 9.31469 10.6875 8.59002 10.6875ZM19.2386 19.349C18.8956 20.5602 17.7818 21.4475 16.4608 21.4475C15.1398 21.4475 14.026 20.5602 13.683 19.349H2.29021C1.85541 19.349 1.50293 18.9965 1.50293 18.5617C1.50293 18.1269 1.85541 17.7744 2.29021 17.7744H13.6825C14.0249 16.5624 15.1391 15.6741 16.4608 15.6741C17.7825 15.6741 18.8967 16.5624 19.2391 17.7744H21.7128C22.1476 17.7744 22.5 18.1269 22.5 18.5617C22.5 18.9965 22.1476 19.349 21.7128 19.349H19.2386ZM15.1487 18.5608C15.1487 17.8362 15.7361 17.2487 16.4608 17.2487C17.1855 17.2487 17.7729 17.8362 17.7729 18.5608C17.7729 19.2855 17.1855 19.873 16.4608 19.873C15.7361 19.873 15.1487 19.2855 15.1487 18.5608Z"/>
4
+ </svg>
5
+ </template>
@@ -1,7 +1,7 @@
1
-
2
- <template>
3
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8 2.05001C6.69566 2.05001 5.44474 2.55285 4.52243 3.44792C3.60012 4.34298 3.08197 5.55695 3.08197 6.82277C3.08197 8.67199 4.31999 10.4571 5.66322 11.833C6.32377 12.5097 6.98616 13.0634 7.48402 13.4482C7.68839 13.6061 7.86429 13.735 8 13.8316C8.13571 13.735 8.31161 13.6061 8.51598 13.4482C9.01384 13.0634 9.67623 12.5097 10.3368 11.833C11.68 10.4571 12.918 8.67199 12.918 6.82277C12.918 5.55695 12.3999 4.34298 11.4776 3.44792C10.5553 2.55285 9.30434 2.05001 8 2.05001ZM8 14.4751C7.69992 14.9119 7.69962 14.9117 7.69962 14.9117C7.68797 14.9041 7.65205 14.8804 7.63067 14.866C7.58793 14.8373 7.52637 14.7953 7.44869 14.7409C7.29339 14.632 7.07332 14.473 6.81004 14.2696C6.28433 13.8633 5.58196 13.2765 4.87776 12.5552C3.49149 11.1351 2 9.09403 2 6.82277C2 5.27847 2.63214 3.79743 3.75736 2.70545C4.88258 1.61347 6.4087 1 8 1C9.5913 1 11.1174 1.61347 12.2426 2.70545C13.3679 3.79743 14 5.27847 14 6.82277C14 9.09403 12.5085 11.1351 11.1222 12.5552C10.418 13.2765 9.71567 13.8633 9.18996 14.2696C8.92668 14.473 8.70661 14.632 8.55131 14.7409C8.47363 14.7953 8.41207 14.8373 8.36933 14.866C8.34795 14.8804 8.31173 14.9042 8.30008 14.9119C8.30008 14.9119 8.30008 14.9119 8 14.4751ZM8 14.4751L8.30008 14.9119C8.11837 15.0295 7.88133 15.0293 7.69962 14.9117L8 14.4751Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8 5.58185C7.2938 5.58185 6.72131 6.13743 6.72131 6.82277C6.72131 7.50811 7.2938 8.06369 8 8.06369C8.7062 8.06369 9.27869 7.50811 9.27869 6.82277C9.27869 6.13743 8.7062 5.58185 8 5.58185ZM5.63935 6.82277C5.63935 5.55753 6.69625 4.53184 8 4.53184C9.30375 4.53184 10.3607 5.55753 10.3607 6.82277C10.3607 8.08801 9.30375 9.11369 8 9.11369C6.69625 9.11369 5.63935 8.08801 5.63935 6.82277Z" fill="currentColor"/>
6
- </svg>
7
- </template>
1
+
2
+ <template>
3
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8 2.05001C6.69566 2.05001 5.44474 2.55285 4.52243 3.44792C3.60012 4.34298 3.08197 5.55695 3.08197 6.82277C3.08197 8.67199 4.31999 10.4571 5.66322 11.833C6.32377 12.5097 6.98616 13.0634 7.48402 13.4482C7.68839 13.6061 7.86429 13.735 8 13.8316C8.13571 13.735 8.31161 13.6061 8.51598 13.4482C9.01384 13.0634 9.67623 12.5097 10.3368 11.833C11.68 10.4571 12.918 8.67199 12.918 6.82277C12.918 5.55695 12.3999 4.34298 11.4776 3.44792C10.5553 2.55285 9.30434 2.05001 8 2.05001ZM8 14.4751C7.69992 14.9119 7.69962 14.9117 7.69962 14.9117C7.68797 14.9041 7.65205 14.8804 7.63067 14.866C7.58793 14.8373 7.52637 14.7953 7.44869 14.7409C7.29339 14.632 7.07332 14.473 6.81004 14.2696C6.28433 13.8633 5.58196 13.2765 4.87776 12.5552C3.49149 11.1351 2 9.09403 2 6.82277C2 5.27847 2.63214 3.79743 3.75736 2.70545C4.88258 1.61347 6.4087 1 8 1C9.5913 1 11.1174 1.61347 12.2426 2.70545C13.3679 3.79743 14 5.27847 14 6.82277C14 9.09403 12.5085 11.1351 11.1222 12.5552C10.418 13.2765 9.71567 13.8633 9.18996 14.2696C8.92668 14.473 8.70661 14.632 8.55131 14.7409C8.47363 14.7953 8.41207 14.8373 8.36933 14.866C8.34795 14.8804 8.31173 14.9042 8.30008 14.9119C8.30008 14.9119 8.30008 14.9119 8 14.4751ZM8 14.4751L8.30008 14.9119C8.11837 15.0295 7.88133 15.0293 7.69962 14.9117L8 14.4751Z" fill="currentColor"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8 5.58185C7.2938 5.58185 6.72131 6.13743 6.72131 6.82277C6.72131 7.50811 7.2938 8.06369 8 8.06369C8.7062 8.06369 9.27869 7.50811 9.27869 6.82277C9.27869 6.13743 8.7062 5.58185 8 5.58185ZM5.63935 6.82277C5.63935 5.55753 6.69625 4.53184 8 4.53184C9.30375 4.53184 10.3607 5.55753 10.3607 6.82277C10.3607 8.08801 9.30375 9.11369 8 9.11369C6.69625 9.11369 5.63935 8.08801 5.63935 6.82277Z" fill="currentColor"/>
6
+ </svg>
7
+ </template>
@@ -1,15 +1,15 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00003 2.05C5.8484 2.05 4.04233 3.85607 4.04233 6.00769C4.04233 6.62916 4.27782 7.31609 4.67533 8.02278C5.07012 8.72463 5.60363 9.4088 6.14891 10.0147C6.69267 10.6188 7.23813 11.1342 7.6484 11.4988C7.78191 11.6175 7.90072 11.7199 8.00003 11.8038C8.09933 11.7199 8.21814 11.6175 8.35166 11.4988C8.76192 11.1342 9.30739 10.6188 9.85114 10.0147C10.3964 9.4088 10.9299 8.72463 11.3247 8.02278C11.7222 7.31609 11.9577 6.62916 11.9577 6.00769C11.9577 3.85607 10.1516 2.05 8.00003 2.05ZM8.00003 12.4827C7.67771 12.8971 7.67749 12.8969 7.67749 12.8969L7.67621 12.8959L7.6731 12.8935L7.66209 12.8849C7.65267 12.8774 7.63912 12.8667 7.62172 12.8528C7.58692 12.8249 7.53668 12.7843 7.47321 12.7319C7.34632 12.6272 7.1663 12.4752 6.95081 12.2836C6.52058 11.9012 5.94537 11.3581 5.36845 10.7171C4.79306 10.0778 4.20589 9.32994 3.76018 8.53756C3.31719 7.75002 2.99233 6.88046 2.99233 6.00769C2.99233 3.27617 5.2685 1 8.00003 1C10.7315 1 13.0077 3.27617 13.0077 6.00769C13.0077 6.88046 12.6829 7.75002 12.2399 8.53756C11.7942 9.32994 11.207 10.0778 10.6316 10.7171C10.0547 11.3581 9.47947 11.9012 9.04924 12.2836C8.83375 12.4752 8.65373 12.6272 8.52684 12.7319C8.46337 12.7843 8.41314 12.8249 8.37833 12.8528C8.36093 12.8667 8.34738 12.8774 8.33796 12.8849L8.32695 12.8935L8.32384 12.8959L8.32289 12.8967C8.32289 12.8967 8.32234 12.8971 8.00003 12.4827ZM8.00003 12.4827L8.32289 12.8967C8.1333 13.0441 7.86707 13.0444 7.67749 12.8969L8.00003 12.4827Z" fill="currentColor"/>
8
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00004 5.03846C7.46475 5.03846 7.03081 5.4724 7.03081 6.00769C7.03081 6.54298 7.46475 6.97692 8.00004 6.97692C8.53533 6.97692 8.96927 6.54298 8.96927 6.00769C8.96927 5.4724 8.53533 5.03846 8.00004 5.03846ZM5.98081 6.00769C5.98081 4.8925 6.88485 3.98846 8.00004 3.98846C9.11523 3.98846 10.0193 4.8925 10.0193 6.00769C10.0193 7.12288 9.11523 8.02692 8.00004 8.02692C6.88485 8.02692 5.98081 7.12288 5.98081 6.00769Z" fill="currentColor"/>
9
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2.53668 10.7817C2.61941 10.5886 2.80922 10.4635 3.01923 10.4635H3.93839C4.22834 10.4635 4.46339 10.6985 4.46339 10.9885C4.46339 11.2784 4.22834 11.5135 3.93839 11.5135H3.36541L2.32118 13.95H13.6788L12.6346 11.5135H12.0616C11.7717 11.5135 11.5366 11.2784 11.5366 10.9885C11.5366 10.6985 11.7717 10.4635 12.0616 10.4635H12.9808C13.1908 10.4635 13.3806 10.5886 13.4633 10.7817L14.9575 14.2682C15.0271 14.4304 15.0104 14.6167 14.9133 14.764C14.8161 14.9113 14.6515 15 14.475 15H1.525C1.34853 15 1.18386 14.9113 1.08671 14.764C0.989562 14.6167 0.972934 14.4304 1.04245 14.2682L2.53668 10.7817Z" fill="currentColor"/>
10
- </svg>
11
- </template>
12
-
13
- <style scoped>
14
-
15
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00003 2.05C5.8484 2.05 4.04233 3.85607 4.04233 6.00769C4.04233 6.62916 4.27782 7.31609 4.67533 8.02278C5.07012 8.72463 5.60363 9.4088 6.14891 10.0147C6.69267 10.6188 7.23813 11.1342 7.6484 11.4988C7.78191 11.6175 7.90072 11.7199 8.00003 11.8038C8.09933 11.7199 8.21814 11.6175 8.35166 11.4988C8.76192 11.1342 9.30739 10.6188 9.85114 10.0147C10.3964 9.4088 10.9299 8.72463 11.3247 8.02278C11.7222 7.31609 11.9577 6.62916 11.9577 6.00769C11.9577 3.85607 10.1516 2.05 8.00003 2.05ZM8.00003 12.4827C7.67771 12.8971 7.67749 12.8969 7.67749 12.8969L7.67621 12.8959L7.6731 12.8935L7.66209 12.8849C7.65267 12.8774 7.63912 12.8667 7.62172 12.8528C7.58692 12.8249 7.53668 12.7843 7.47321 12.7319C7.34632 12.6272 7.1663 12.4752 6.95081 12.2836C6.52058 11.9012 5.94537 11.3581 5.36845 10.7171C4.79306 10.0778 4.20589 9.32994 3.76018 8.53756C3.31719 7.75002 2.99233 6.88046 2.99233 6.00769C2.99233 3.27617 5.2685 1 8.00003 1C10.7315 1 13.0077 3.27617 13.0077 6.00769C13.0077 6.88046 12.6829 7.75002 12.2399 8.53756C11.7942 9.32994 11.207 10.0778 10.6316 10.7171C10.0547 11.3581 9.47947 11.9012 9.04924 12.2836C8.83375 12.4752 8.65373 12.6272 8.52684 12.7319C8.46337 12.7843 8.41314 12.8249 8.37833 12.8528C8.36093 12.8667 8.34738 12.8774 8.33796 12.8849L8.32695 12.8935L8.32384 12.8959L8.32289 12.8967C8.32289 12.8967 8.32234 12.8971 8.00003 12.4827ZM8.00003 12.4827L8.32289 12.8967C8.1333 13.0441 7.86707 13.0444 7.67749 12.8969L8.00003 12.4827Z" fill="currentColor"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00004 5.03846C7.46475 5.03846 7.03081 5.4724 7.03081 6.00769C7.03081 6.54298 7.46475 6.97692 8.00004 6.97692C8.53533 6.97692 8.96927 6.54298 8.96927 6.00769C8.96927 5.4724 8.53533 5.03846 8.00004 5.03846ZM5.98081 6.00769C5.98081 4.8925 6.88485 3.98846 8.00004 3.98846C9.11523 3.98846 10.0193 4.8925 10.0193 6.00769C10.0193 7.12288 9.11523 8.02692 8.00004 8.02692C6.88485 8.02692 5.98081 7.12288 5.98081 6.00769Z" fill="currentColor"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.53668 10.7817C2.61941 10.5886 2.80922 10.4635 3.01923 10.4635H3.93839C4.22834 10.4635 4.46339 10.6985 4.46339 10.9885C4.46339 11.2784 4.22834 11.5135 3.93839 11.5135H3.36541L2.32118 13.95H13.6788L12.6346 11.5135H12.0616C11.7717 11.5135 11.5366 11.2784 11.5366 10.9885C11.5366 10.6985 11.7717 10.4635 12.0616 10.4635H12.9808C13.1908 10.4635 13.3806 10.5886 13.4633 10.7817L14.9575 14.2682C15.0271 14.4304 15.0104 14.6167 14.9133 14.764C14.8161 14.9113 14.6515 15 14.475 15H1.525C1.34853 15 1.18386 14.9113 1.08671 14.764C0.989562 14.6167 0.972934 14.4304 1.04245 14.2682L2.53668 10.7817Z" fill="currentColor"/>
10
+ </svg>
11
+ </template>
12
+
13
+ <style scoped>
14
+
15
+ </style>
@@ -1,7 +1,7 @@
1
-
2
- <template>
3
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8 2.05001C6.69566 2.05001 5.44474 2.55285 4.52243 3.44792C3.60012 4.34298 3.08197 5.55695 3.08197 6.82277C3.08197 8.67199 4.31999 10.4571 5.66322 11.833C6.32377 12.5097 6.98616 13.0634 7.48402 13.4482C7.68839 13.6061 7.86429 13.735 8 13.8316C8.13571 13.735 8.31161 13.6061 8.51598 13.4482C9.01384 13.0634 9.67623 12.5097 10.3368 11.833C11.68 10.4571 12.918 8.67199 12.918 6.82277C12.918 5.55695 12.3999 4.34298 11.4776 3.44792C10.5553 2.55285 9.30434 2.05001 8 2.05001ZM8 14.4751C7.69992 14.9119 7.69962 14.9117 7.69962 14.9117C7.68797 14.9041 7.65205 14.8804 7.63067 14.866C7.58793 14.8373 7.52637 14.7953 7.44869 14.7409C7.29339 14.632 7.07332 14.473 6.81004 14.2696C6.28433 13.8633 5.58196 13.2765 4.87776 12.5552C3.49149 11.1351 2 9.09403 2 6.82277C2 5.27847 2.63214 3.79743 3.75736 2.70545C4.88258 1.61347 6.4087 1 8 1C9.5913 1 11.1174 1.61347 12.2426 2.70545C13.3679 3.79743 14 5.27847 14 6.82277C14 9.09403 12.5085 11.1351 11.1222 12.5552C10.418 13.2765 9.71567 13.8633 9.18996 14.2696C8.92668 14.473 8.70661 14.632 8.55131 14.7409C8.47363 14.7953 8.41207 14.8373 8.36933 14.866C8.34795 14.8804 8.31173 14.9042 8.30008 14.9119C8.30008 14.9119 8.30008 14.9119 8 14.4751ZM8 14.4751L8.30008 14.9119C8.11837 15.0295 7.88133 15.0293 7.69962 14.9117L8 14.4751Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8 5.58185C7.2938 5.58185 6.72131 6.13743 6.72131 6.82277C6.72131 7.50811 7.2938 8.06369 8 8.06369C8.7062 8.06369 9.27869 7.50811 9.27869 6.82277C9.27869 6.13743 8.7062 5.58185 8 5.58185ZM5.63935 6.82277C5.63935 5.55753 6.69625 4.53184 8 4.53184C9.30375 4.53184 10.3607 5.55753 10.3607 6.82277C10.3607 8.08801 9.30375 9.11369 8 9.11369C6.69625 9.11369 5.63935 8.08801 5.63935 6.82277Z" fill="currentColor"/>
6
- </svg>
7
- </template>
1
+
2
+ <template>
3
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8 2.05001C6.69566 2.05001 5.44474 2.55285 4.52243 3.44792C3.60012 4.34298 3.08197 5.55695 3.08197 6.82277C3.08197 8.67199 4.31999 10.4571 5.66322 11.833C6.32377 12.5097 6.98616 13.0634 7.48402 13.4482C7.68839 13.6061 7.86429 13.735 8 13.8316C8.13571 13.735 8.31161 13.6061 8.51598 13.4482C9.01384 13.0634 9.67623 12.5097 10.3368 11.833C11.68 10.4571 12.918 8.67199 12.918 6.82277C12.918 5.55695 12.3999 4.34298 11.4776 3.44792C10.5553 2.55285 9.30434 2.05001 8 2.05001ZM8 14.4751C7.69992 14.9119 7.69962 14.9117 7.69962 14.9117C7.68797 14.9041 7.65205 14.8804 7.63067 14.866C7.58793 14.8373 7.52637 14.7953 7.44869 14.7409C7.29339 14.632 7.07332 14.473 6.81004 14.2696C6.28433 13.8633 5.58196 13.2765 4.87776 12.5552C3.49149 11.1351 2 9.09403 2 6.82277C2 5.27847 2.63214 3.79743 3.75736 2.70545C4.88258 1.61347 6.4087 1 8 1C9.5913 1 11.1174 1.61347 12.2426 2.70545C13.3679 3.79743 14 5.27847 14 6.82277C14 9.09403 12.5085 11.1351 11.1222 12.5552C10.418 13.2765 9.71567 13.8633 9.18996 14.2696C8.92668 14.473 8.70661 14.632 8.55131 14.7409C8.47363 14.7953 8.41207 14.8373 8.36933 14.866C8.34795 14.8804 8.31173 14.9042 8.30008 14.9119C8.30008 14.9119 8.30008 14.9119 8 14.4751ZM8 14.4751L8.30008 14.9119C8.11837 15.0295 7.88133 15.0293 7.69962 14.9117L8 14.4751Z" fill="currentColor"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8 5.58185C7.2938 5.58185 6.72131 6.13743 6.72131 6.82277C6.72131 7.50811 7.2938 8.06369 8 8.06369C8.7062 8.06369 9.27869 7.50811 9.27869 6.82277C9.27869 6.13743 8.7062 5.58185 8 5.58185ZM5.63935 6.82277C5.63935 5.55753 6.69625 4.53184 8 4.53184C9.30375 4.53184 10.3607 5.55753 10.3607 6.82277C10.3607 8.08801 9.30375 9.11369 8 9.11369C6.69625 9.11369 5.63935 8.08801 5.63935 6.82277Z" fill="currentColor"/>
6
+ </svg>
7
+ </template>
@@ -1,7 +1,7 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" width="0.75em" height="1em" viewBox="0 0 384 512">
3
- <path fill="currentColor" d="M172.268 501.67C26.97 291.031 0 269.413 0 192C0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67c-9.535 13.774-29.93 13.773-39.464 0M192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80s-80 35.817-80 80s35.817 80 80 80" />
4
- </svg>
5
- </template>
6
- <script setup lang="ts">
7
- </script>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="0.75em" height="1em" viewBox="0 0 384 512">
3
+ <path fill="currentColor" d="M172.268 501.67C26.97 291.031 0 269.413 0 192C0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67c-9.535 13.774-29.93 13.773-39.464 0M192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80s-80 35.817-80 80s35.817 80 80 80" />
4
+ </svg>
5
+ </template>
6
+ <script setup lang="ts">
7
+ </script>
@@ -1,5 +1,5 @@
1
- <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M5.82747 1.34681C5.90237 1.32951 5.97919 1.32992 6.05225 1.34676L10.0573 2.26958L13.2362 1.53542C13.9673 1.36658 14.6654 1.92182 14.6654 2.67217V12.6884C14.6654 13.2315 14.2905 13.7029 13.7612 13.8251L10.1699 14.6545C10.095 14.6718 10.0182 14.6714 9.94515 14.6546L5.94011 13.7317L2.76123 14.4659C2.03012 14.6347 1.33203 14.0795 1.33203 13.3291V3.31296C1.33203 2.76977 1.70691 2.29844 2.23617 2.17621L5.82747 1.34681ZM6.43998 12.8207L9.55742 13.539L9.55742 3.1806L6.43998 2.4623L6.43998 12.8207ZM5.43998 2.46262L2.46119 3.15056C2.38559 3.16803 2.33203 3.23536 2.33203 3.31296V13.3291C2.33203 13.4363 2.43176 13.5157 2.5362 13.4915L5.43998 12.8209V2.46262ZM13.6654 2.67217C13.6654 2.56498 13.5656 2.48565 13.4612 2.50978L10.5574 3.18039V13.5387L13.5362 12.8507C13.6118 12.8333 13.6654 12.766 13.6654 12.6884V2.67217Z" fill="currentColor"/>
4
- </svg>
5
- </template>
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.82747 1.34681C5.90237 1.32951 5.97919 1.32992 6.05225 1.34676L10.0573 2.26958L13.2362 1.53542C13.9673 1.36658 14.6654 1.92182 14.6654 2.67217V12.6884C14.6654 13.2315 14.2905 13.7029 13.7612 13.8251L10.1699 14.6545C10.095 14.6718 10.0182 14.6714 9.94515 14.6546L5.94011 13.7317L2.76123 14.4659C2.03012 14.6347 1.33203 14.0795 1.33203 13.3291V3.31296C1.33203 2.76977 1.70691 2.29844 2.23617 2.17621L5.82747 1.34681ZM6.43998 12.8207L9.55742 13.539L9.55742 3.1806L6.43998 2.4623L6.43998 12.8207ZM5.43998 2.46262L2.46119 3.15056C2.38559 3.16803 2.33203 3.23536 2.33203 3.31296V13.3291C2.33203 13.4363 2.43176 13.5157 2.5362 13.4915L5.43998 12.8209V2.46262ZM13.6654 2.67217C13.6654 2.56498 13.5656 2.48565 13.4612 2.50978L10.5574 3.18039V13.5387L13.5362 12.8507C13.6118 12.8333 13.6654 12.766 13.6654 12.6884V2.67217Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
package/icons/medal.vue CHANGED
@@ -1,7 +1,7 @@
1
- <template>
2
- <svg width="16" height="16" viewBox="0 0 22 21" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path
4
- d="M21.4258 8.12075C21.335 7.8408 21.1638 7.59375 20.9336 7.41038C20.7034 7.22701 20.4243 7.11542 20.1311 7.0895L14.5633 6.6095L12.3808 1.4195C12.2672 1.14717 12.0755 0.914551 11.8299 0.750929C11.5844 0.587308 11.2959 0.5 11.0008 0.5C10.7057 0.5 10.4172 0.587308 10.1717 0.750929C9.9261 0.914551 9.73443 1.14717 9.6208 1.4195L7.44487 6.6095L1.87049 7.09231C1.57615 7.11705 1.29566 7.22813 1.0642 7.41164C0.832741 7.59515 0.660612 7.84291 0.569401 8.12385C0.478189 8.4048 0.471955 8.70642 0.55148 8.99089C0.631004 9.27536 0.792748 9.53002 1.01643 9.72294L5.24549 13.4186L3.97799 18.9067C3.91097 19.1939 3.93009 19.4945 4.03297 19.7709C4.13585 20.0472 4.31792 20.2872 4.55642 20.4606C4.79492 20.6341 5.07926 20.7334 5.3739 20.7462C5.66854 20.7589 5.9604 20.6845 6.21299 20.5323L10.9942 17.6261L15.7858 20.5323C16.0384 20.6845 16.3303 20.7589 16.6249 20.7462C16.9195 20.7334 17.2039 20.6341 17.4424 20.4606C17.6809 20.2872 17.8629 20.0472 17.9658 19.7709C18.0687 19.4945 18.0878 19.1939 18.0208 18.9067L16.7542 13.4129L20.9824 9.72294C21.206 9.52936 21.3674 9.27397 21.4463 8.98889C21.5252 8.70382 21.5181 8.40178 21.4258 8.12075ZM19.9989 8.5895L15.7708 12.2795C15.565 12.4585 15.4119 12.6902 15.328 12.9497C15.2441 13.2092 15.2325 13.4867 15.2946 13.7523L16.5649 19.2498L11.7771 16.3436C11.5435 16.2013 11.2752 16.1261 11.0017 16.1261C10.7282 16.1261 10.46 16.2013 10.2264 16.3436L5.44518 19.2498L6.70705 13.7561C6.76907 13.4905 6.7575 13.213 6.67358 12.9535C6.58967 12.694 6.43658 12.4623 6.2308 12.2833L2.0008 8.59513C2.00046 8.59232 2.00046 8.58949 2.0008 8.58669L7.5733 8.10481C7.84537 8.08083 8.10572 7.98303 8.32628 7.82194C8.54684 7.66086 8.71923 7.44262 8.82487 7.19075L11.0008 2.00731L13.1758 7.19075C13.2814 7.44262 13.4538 7.66086 13.6744 7.82194C13.8949 7.98303 14.1553 8.08083 14.4274 8.10481L20.0008 8.58669C20.0008 8.58669 20.0008 8.59231 20.0008 8.59325L19.9989 8.5895Z"
5
- fill="currentColor"/>
6
- </svg>
7
- </template>
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 22 21" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M21.4258 8.12075C21.335 7.8408 21.1638 7.59375 20.9336 7.41038C20.7034 7.22701 20.4243 7.11542 20.1311 7.0895L14.5633 6.6095L12.3808 1.4195C12.2672 1.14717 12.0755 0.914551 11.8299 0.750929C11.5844 0.587308 11.2959 0.5 11.0008 0.5C10.7057 0.5 10.4172 0.587308 10.1717 0.750929C9.9261 0.914551 9.73443 1.14717 9.6208 1.4195L7.44487 6.6095L1.87049 7.09231C1.57615 7.11705 1.29566 7.22813 1.0642 7.41164C0.832741 7.59515 0.660612 7.84291 0.569401 8.12385C0.478189 8.4048 0.471955 8.70642 0.55148 8.99089C0.631004 9.27536 0.792748 9.53002 1.01643 9.72294L5.24549 13.4186L3.97799 18.9067C3.91097 19.1939 3.93009 19.4945 4.03297 19.7709C4.13585 20.0472 4.31792 20.2872 4.55642 20.4606C4.79492 20.6341 5.07926 20.7334 5.3739 20.7462C5.66854 20.7589 5.9604 20.6845 6.21299 20.5323L10.9942 17.6261L15.7858 20.5323C16.0384 20.6845 16.3303 20.7589 16.6249 20.7462C16.9195 20.7334 17.2039 20.6341 17.4424 20.4606C17.6809 20.2872 17.8629 20.0472 17.9658 19.7709C18.0687 19.4945 18.0878 19.1939 18.0208 18.9067L16.7542 13.4129L20.9824 9.72294C21.206 9.52936 21.3674 9.27397 21.4463 8.98889C21.5252 8.70382 21.5181 8.40178 21.4258 8.12075ZM19.9989 8.5895L15.7708 12.2795C15.565 12.4585 15.4119 12.6902 15.328 12.9497C15.2441 13.2092 15.2325 13.4867 15.2946 13.7523L16.5649 19.2498L11.7771 16.3436C11.5435 16.2013 11.2752 16.1261 11.0017 16.1261C10.7282 16.1261 10.46 16.2013 10.2264 16.3436L5.44518 19.2498L6.70705 13.7561C6.76907 13.4905 6.7575 13.213 6.67358 12.9535C6.58967 12.694 6.43658 12.4623 6.2308 12.2833L2.0008 8.59513C2.00046 8.59232 2.00046 8.58949 2.0008 8.58669L7.5733 8.10481C7.84537 8.08083 8.10572 7.98303 8.32628 7.82194C8.54684 7.66086 8.71923 7.44262 8.82487 7.19075L11.0008 2.00731L13.1758 7.19075C13.2814 7.44262 13.4538 7.66086 13.6744 7.82194C13.8949 7.98303 14.1553 8.08083 14.4274 8.10481L20.0008 8.58669C20.0008 8.58669 20.0008 8.59231 20.0008 8.59325L19.9989 8.5895Z"
5
+ fill="currentColor"/>
6
+ </svg>
7
+ </template>
@@ -1,20 +1,20 @@
1
- <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M21.2513 14.25H14.2513V21.25H21.2513V14.25Z" fill="currentColor" fill-opacity="0.8"/>
4
- <path
5
- d="M21.7513 14.25C21.7513 13.9738 21.5275 13.75 21.2513 13.75H14.2513C13.9752 13.75 13.7513 13.9738 13.7513 14.25V21.25C13.7513 21.5261 13.9752 21.75 14.2513 21.75H21.2513C21.5275 21.75 21.7513 21.5261 21.7513 21.25V14.25Z"
6
- stroke="currentColor" stroke-opacity="0.8" stroke-linecap="round" stroke-linejoin="round"/>
7
- <path d="M9.75 14.25H2.75V21.25H9.75V14.25Z" fill="currentColor" fill-opacity="0.8"/>
8
- <path
9
- d="M10.25 14.25C10.25 13.9738 10.0261 13.75 9.75 13.75H2.75C2.47386 13.75 2.25 13.9738 2.25 14.25V21.25C2.25 21.5261 2.47386 21.75 2.75 21.75H9.75C10.0261 21.75 10.25 21.5261 10.25 21.25V14.25Z"
10
- stroke="currentColor" stroke-opacity="0.8" stroke-linecap="round" stroke-linejoin="round"/>
11
- <path d="M21.2513 2.74979H14.2513V9.74979H21.2513V2.74979Z" fill="currentColor" fill-opacity="0.8"/>
12
- <path
13
- d="M21.7513 2.74979C21.7513 2.47364 21.5275 2.24979 21.2513 2.24979H14.2513C13.9752 2.24979 13.7513 2.47364 13.7513 2.74979V9.74979C13.7513 10.0259 13.9752 10.2498 14.2513 10.2498H21.2513C21.5275 10.2498 21.7513 10.0259 21.7513 9.74979V2.74979Z"
14
- stroke="currentColor" stroke-opacity="0.8" stroke-linecap="round" stroke-linejoin="round"/>
15
- <path d="M9.75 2.74979H2.75V9.74979H9.75V2.74979Z" fill="currentColor" fill-opacity="0.8"/>
16
- <path
17
- d="M10.25 2.74979C10.25 2.47364 10.0261 2.24979 9.75 2.24979H2.75C2.47386 2.24979 2.25 2.47364 2.25 2.74979V9.74979C2.25 10.0259 2.47386 10.2498 2.75 10.2498H9.75C10.0261 10.2498 10.25 10.0259 10.25 9.74979V2.74979Z"
18
- stroke="currentColor" stroke-opacity="0.8" stroke-linecap="round" stroke-linejoin="round"/>
19
- </svg>
20
- </template>
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M21.2513 14.25H14.2513V21.25H21.2513V14.25Z" fill="currentColor" fill-opacity="0.8"/>
4
+ <path
5
+ d="M21.7513 14.25C21.7513 13.9738 21.5275 13.75 21.2513 13.75H14.2513C13.9752 13.75 13.7513 13.9738 13.7513 14.25V21.25C13.7513 21.5261 13.9752 21.75 14.2513 21.75H21.2513C21.5275 21.75 21.7513 21.5261 21.7513 21.25V14.25Z"
6
+ stroke="currentColor" stroke-opacity="0.8" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M9.75 14.25H2.75V21.25H9.75V14.25Z" fill="currentColor" fill-opacity="0.8"/>
8
+ <path
9
+ d="M10.25 14.25C10.25 13.9738 10.0261 13.75 9.75 13.75H2.75C2.47386 13.75 2.25 13.9738 2.25 14.25V21.25C2.25 21.5261 2.47386 21.75 2.75 21.75H9.75C10.0261 21.75 10.25 21.5261 10.25 21.25V14.25Z"
10
+ stroke="currentColor" stroke-opacity="0.8" stroke-linecap="round" stroke-linejoin="round"/>
11
+ <path d="M21.2513 2.74979H14.2513V9.74979H21.2513V2.74979Z" fill="currentColor" fill-opacity="0.8"/>
12
+ <path
13
+ d="M21.7513 2.74979C21.7513 2.47364 21.5275 2.24979 21.2513 2.24979H14.2513C13.9752 2.24979 13.7513 2.47364 13.7513 2.74979V9.74979C13.7513 10.0259 13.9752 10.2498 14.2513 10.2498H21.2513C21.5275 10.2498 21.7513 10.0259 21.7513 9.74979V2.74979Z"
14
+ stroke="currentColor" stroke-opacity="0.8" stroke-linecap="round" stroke-linejoin="round"/>
15
+ <path d="M9.75 2.74979H2.75V9.74979H9.75V2.74979Z" fill="currentColor" fill-opacity="0.8"/>
16
+ <path
17
+ d="M10.25 2.74979C10.25 2.47364 10.0261 2.24979 9.75 2.24979H2.75C2.47386 2.24979 2.25 2.47364 2.25 2.74979V9.74979C2.25 10.0259 2.47386 10.2498 2.75 10.2498H9.75C10.0261 10.2498 10.25 10.0259 10.25 9.74979V2.74979Z"
18
+ stroke="currentColor" stroke-opacity="0.8" stroke-linecap="round" stroke-linejoin="round"/>
19
+ </svg>
20
+ </template>
package/icons/menu.vue CHANGED
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13 13.7502C13 13.336 13.3358 13.0002 13.75 13.0002H21.2513C21.6656 13.0002 22.0013 13.336 22.0013 13.7502V21.2502C22.0013 21.6644 21.6656 22.0002 21.2513 22.0002H13.75C13.3358 22.0002 13 21.6644 13 21.2502V13.7502ZM14.5 14.5002V20.5002H20.5013V14.5002H14.5Z" fill="currentColor" class="dark:fill-white"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2 13.7502C2 13.336 2.33579 13.0002 2.75 13.0002H10.25C10.6642 13.0002 11 13.336 11 13.7502V21.2502C11 21.6644 10.6642 22.0002 10.25 22.0002H2.75C2.33579 22.0002 2 21.6644 2 21.2502V13.7502ZM3.5 14.5002V20.5002H9.5V14.5002H3.5Z" fill="currentColor" class="dark:fill-white"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13 2.75C13 2.33579 13.3358 2 13.75 2H21.2513C21.6656 2 22.0013 2.33579 22.0013 2.75V10.2502C22.0013 10.6644 21.6656 11.0002 21.2513 11.0002H13.75C13.3358 11.0002 13 10.6644 13 10.2502V2.75ZM14.5 3.5V9.50018H20.5013V3.5H14.5Z" fill="currentColor" class="dark:fill-white"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2 2.75C2 2.33579 2.33579 2 2.75 2H10.25C10.6642 2 11 2.33579 11 2.75V10.2502C11 10.6644 10.6642 11.0002 10.25 11.0002H2.75C2.33579 11.0002 2 10.6644 2 10.2502L2 2.75ZM3.5 3.5V9.50018H9.5V3.5H3.5Z" fill="currentColor" class="dark:fill-white"/>
7
- </svg>
8
- </template>
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13 13.7502C13 13.336 13.3358 13.0002 13.75 13.0002H21.2513C21.6656 13.0002 22.0013 13.336 22.0013 13.7502V21.2502C22.0013 21.6644 21.6656 22.0002 21.2513 22.0002H13.75C13.3358 22.0002 13 21.6644 13 21.2502V13.7502ZM14.5 14.5002V20.5002H20.5013V14.5002H14.5Z" fill="currentColor" class="dark:fill-white"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 13.7502C2 13.336 2.33579 13.0002 2.75 13.0002H10.25C10.6642 13.0002 11 13.336 11 13.7502V21.2502C11 21.6644 10.6642 22.0002 10.25 22.0002H2.75C2.33579 22.0002 2 21.6644 2 21.2502V13.7502ZM3.5 14.5002V20.5002H9.5V14.5002H3.5Z" fill="currentColor" class="dark:fill-white"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13 2.75C13 2.33579 13.3358 2 13.75 2H21.2513C21.6656 2 22.0013 2.33579 22.0013 2.75V10.2502C22.0013 10.6644 21.6656 11.0002 21.2513 11.0002H13.75C13.3358 11.0002 13 10.6644 13 10.2502V2.75ZM14.5 3.5V9.50018H20.5013V3.5H14.5Z" fill="currentColor" class="dark:fill-white"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 2.75C2 2.33579 2.33579 2 2.75 2H10.25C10.6642 2 11 2.33579 11 2.75V10.2502C11 10.6644 10.6642 11.0002 10.25 11.0002H2.75C2.33579 11.0002 2 10.6644 2 10.2502L2 2.75ZM3.5 3.5V9.50018H9.5V3.5H3.5Z" fill="currentColor" class="dark:fill-white"/>
7
+ </svg>
8
+ </template>
@@ -1,12 +1,12 @@
1
- <script setup lang="ts">
2
- </script>
3
-
4
- <template>
5
- <svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-deepblue-900 dark:fill-gray-200">
6
- <path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M8.85849 2.05002C7.99161 2.04776 7.13645 2.2503 6.36267 2.64114L6.36068 2.64214C5.4322 3.10618 4.65126 3.81955 4.10531 4.70235C3.55937 5.58515 3.26999 6.60252 3.26959 7.6405V7.64166C3.26733 8.50855 3.46986 9.3637 3.8607 10.1375C3.92381 10.2624 3.93441 10.4074 3.89015 10.5402L2.85524 13.6449L5.95995 12.61C6.09275 12.5657 6.23773 12.5763 6.36267 12.6395C6.45939 12.6883 6.55739 12.7342 6.65652 12.7772C7.35043 13.0777 8.09997 13.2325 8.85849 13.2306L8.85986 13.7532L8.85966 13.2306C9.89763 13.2302 10.915 12.9408 11.7978 12.3948C12.6806 11.8489 13.394 11.068 13.858 10.1395L13.859 10.1375C14.2499 9.3637 14.4524 8.50854 14.4501 7.64166L14.4501 7.6403V7.29537C14.3713 5.93008 13.7935 4.64114 12.8263 3.6739C11.859 2.70665 10.5701 2.12881 9.20478 2.05002H8.85986L8.85849 2.05002ZM8.86123 14.2806C10.0938 14.2799 11.3018 13.9362 12.3501 13.2879C13.3984 12.6396 14.2455 11.7123 14.7967 10.6099C15.2617 9.68909 15.5027 8.67125 15.5001 7.63971V7.28057C15.5001 7.26936 15.4998 7.25823 15.4991 7.24719C15.4082 5.62023 14.721 4.08374 13.5687 2.93143C12.4154 1.77808 10.8771 1.09067 9.2485 1.00082C9.23887 1.00029 9.22923 1.00002 9.21958 1.00002H8.86053C7.82888 0.997441 6.81119 1.23844 5.89027 1.7034C4.78784 2.25461 3.86057 3.10178 3.21228 4.15008C2.56379 5.1987 2.22006 6.40716 2.21958 7.64009L2.21959 7.64094C2.21738 8.59827 2.42493 9.54355 2.82655 10.4106L1.52876 14.304C1.49322 14.4069 1.48928 14.5215 1.52446 14.633C1.52694 14.6408 1.52961 14.6486 1.53247 14.6564C1.62994 14.9216 1.92126 15.063 2.19116 14.9731L6.08955 13.6736C6.95722 14.0755 7.90321 14.2831 8.86123 14.2806Z"/>
7
- </svg>
8
- </template>
9
-
10
- <style scoped>
11
-
12
- </style>
1
+ <script setup lang="ts">
2
+ </script>
3
+
4
+ <template>
5
+ <svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-deepblue-900 dark:fill-gray-200">
6
+ <path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M8.85849 2.05002C7.99161 2.04776 7.13645 2.2503 6.36267 2.64114L6.36068 2.64214C5.4322 3.10618 4.65126 3.81955 4.10531 4.70235C3.55937 5.58515 3.26999 6.60252 3.26959 7.6405V7.64166C3.26733 8.50855 3.46986 9.3637 3.8607 10.1375C3.92381 10.2624 3.93441 10.4074 3.89015 10.5402L2.85524 13.6449L5.95995 12.61C6.09275 12.5657 6.23773 12.5763 6.36267 12.6395C6.45939 12.6883 6.55739 12.7342 6.65652 12.7772C7.35043 13.0777 8.09997 13.2325 8.85849 13.2306L8.85986 13.7532L8.85966 13.2306C9.89763 13.2302 10.915 12.9408 11.7978 12.3948C12.6806 11.8489 13.394 11.068 13.858 10.1395L13.859 10.1375C14.2499 9.3637 14.4524 8.50854 14.4501 7.64166L14.4501 7.6403V7.29537C14.3713 5.93008 13.7935 4.64114 12.8263 3.6739C11.859 2.70665 10.5701 2.12881 9.20478 2.05002H8.85986L8.85849 2.05002ZM8.86123 14.2806C10.0938 14.2799 11.3018 13.9362 12.3501 13.2879C13.3984 12.6396 14.2455 11.7123 14.7967 10.6099C15.2617 9.68909 15.5027 8.67125 15.5001 7.63971V7.28057C15.5001 7.26936 15.4998 7.25823 15.4991 7.24719C15.4082 5.62023 14.721 4.08374 13.5687 2.93143C12.4154 1.77808 10.8771 1.09067 9.2485 1.00082C9.23887 1.00029 9.22923 1.00002 9.21958 1.00002H8.86053C7.82888 0.997441 6.81119 1.23844 5.89027 1.7034C4.78784 2.25461 3.86057 3.10178 3.21228 4.15008C2.56379 5.1987 2.22006 6.40716 2.21958 7.64009L2.21959 7.64094C2.21738 8.59827 2.42493 9.54355 2.82655 10.4106L1.52876 14.304C1.49322 14.4069 1.48928 14.5215 1.52446 14.633C1.52694 14.6408 1.52961 14.6486 1.53247 14.6564C1.62994 14.9216 1.92126 15.063 2.19116 14.9731L6.08955 13.6736C6.95722 14.0755 7.90321 14.2831 8.86123 14.2806Z"/>
7
+ </svg>
8
+ </template>
9
+
10
+ <style scoped>
11
+
12
+ </style>
@@ -1,10 +1,10 @@
1
- <template>
2
- <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
3
- <path clip-rule="evenodd" d="M7.99998 2.33337C4.87037 2.33337 2.33331 4.87043 2.33331 8.00004C2.33331 11.1297 4.87037 13.6667 7.99998 13.6667C11.1296 13.6667 13.6666 11.1297 13.6666 8.00004C13.6666 4.87043 11.1296 2.33337 7.99998 2.33337ZM1.33331 8.00004C1.33331 4.31814 4.31808 1.33337 7.99998 1.33337C11.6819 1.33337 14.6666 4.31814 14.6666 8.00004C14.6666 11.6819 11.6819 14.6667 7.99998 14.6667C4.31808 14.6667 1.33331 11.6819 1.33331 8.00004Z"
4
- fill="currentColor"
5
- fill-rule="evenodd"/>
6
- <path clip-rule="evenodd" d="M5.03332 8.00004C5.03332 7.7239 5.25717 7.50004 5.53332 7.50004H10.4666C10.7428 7.50004 10.9666 7.7239 10.9666 8.00004C10.9666 8.27618 10.7428 8.50004 10.4666 8.50004H5.53332C5.25717 8.50004 5.03332 8.27618 5.03332 8.00004Z"
7
- fill="currentColor"
8
- fill-rule="evenodd"/>
9
- </svg>
10
- </template>
1
+ <template>
2
+ <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
3
+ <path clip-rule="evenodd" d="M7.99998 2.33337C4.87037 2.33337 2.33331 4.87043 2.33331 8.00004C2.33331 11.1297 4.87037 13.6667 7.99998 13.6667C11.1296 13.6667 13.6666 11.1297 13.6666 8.00004C13.6666 4.87043 11.1296 2.33337 7.99998 2.33337ZM1.33331 8.00004C1.33331 4.31814 4.31808 1.33337 7.99998 1.33337C11.6819 1.33337 14.6666 4.31814 14.6666 8.00004C14.6666 11.6819 11.6819 14.6667 7.99998 14.6667C4.31808 14.6667 1.33331 11.6819 1.33331 8.00004Z"
4
+ fill="currentColor"
5
+ fill-rule="evenodd"/>
6
+ <path clip-rule="evenodd" d="M5.03332 8.00004C5.03332 7.7239 5.25717 7.50004 5.53332 7.50004H10.4666C10.7428 7.50004 10.9666 7.7239 10.9666 8.00004C10.9666 8.27618 10.7428 8.50004 10.4666 8.50004H5.53332C5.25717 8.50004 5.03332 8.27618 5.03332 8.00004Z"
7
+ fill="currentColor"
8
+ fill-rule="evenodd"/>
9
+ </svg>
10
+ </template>
package/icons/money.vue CHANGED
@@ -1,5 +1,5 @@
1
- <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M20.5 17.6852C20.5 17.7097 20.4967 17.7295 20.4925 17.7448H3.50748C3.50328 17.7295 3.5 17.7097 3.5 17.6852V6.31477C3.5 6.29033 3.50328 6.2705 3.50748 6.25519H20.4925C20.4967 6.2705 20.5 6.29033 20.5 6.31477V17.6852ZM20.5893 19.25C21.5035 19.25 22 18.3995 22 17.6852V6.31477C22 5.60055 21.5035 4.75 20.5893 4.75H3.41072C2.49649 4.75 2 5.60055 2 6.31477V17.6852C2 18.3995 2.49649 19.25 3.41072 19.25H20.5893ZM10.15 11.2474C9.73578 11.2474 9.39999 11.5843 9.39999 12C9.39999 12.4156 9.73578 12.7526 10.15 12.7526H11.25V15.7128C11.25 16.1284 11.5858 16.4654 12 16.4654C12.4142 16.4654 12.75 16.1284 12.75 15.7128V12.7526H13.85C14.2642 12.7526 14.6 12.4156 14.6 12C14.6 11.5843 14.2642 11.2474 13.85 11.2474H12H10.15ZM9.39999 9.2154C9.39999 8.79975 9.73578 8.4628 10.15 8.4628H13.85C14.2642 8.4628 14.6 8.79975 14.6 9.2154C14.6 9.63105 14.2642 9.96799 13.85 9.96799H10.15C9.73578 9.96799 9.39999 9.63105 9.39999 9.2154Z" fill="currentColor"/>
4
- </svg>
5
- </template>
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20.5 17.6852C20.5 17.7097 20.4967 17.7295 20.4925 17.7448H3.50748C3.50328 17.7295 3.5 17.7097 3.5 17.6852V6.31477C3.5 6.29033 3.50328 6.2705 3.50748 6.25519H20.4925C20.4967 6.2705 20.5 6.29033 20.5 6.31477V17.6852ZM20.5893 19.25C21.5035 19.25 22 18.3995 22 17.6852V6.31477C22 5.60055 21.5035 4.75 20.5893 4.75H3.41072C2.49649 4.75 2 5.60055 2 6.31477V17.6852C2 18.3995 2.49649 19.25 3.41072 19.25H20.5893ZM10.15 11.2474C9.73578 11.2474 9.39999 11.5843 9.39999 12C9.39999 12.4156 9.73578 12.7526 10.15 12.7526H11.25V15.7128C11.25 16.1284 11.5858 16.4654 12 16.4654C12.4142 16.4654 12.75 16.1284 12.75 15.7128V12.7526H13.85C14.2642 12.7526 14.6 12.4156 14.6 12C14.6 11.5843 14.2642 11.2474 13.85 11.2474H12H10.15ZM9.39999 9.2154C9.39999 8.79975 9.73578 8.4628 10.15 8.4628H13.85C14.2642 8.4628 14.6 8.79975 14.6 9.2154C14.6 9.63105 14.2642 9.96799 13.85 9.96799H10.15C9.73578 9.96799 9.39999 9.63105 9.39999 9.2154Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
@@ -1,10 +1,10 @@
1
- <template>
2
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path
4
- fill-rule="evenodd"
5
- clip-rule="evenodd"
6
- d="M2.17308 1.5C1.99457 1.5 1.82337 1.57091 1.69714 1.69714C1.57091 1.82337 1.5 1.99457 1.5 2.17308V5.01923C1.5 5.43345 1.16421 5.76923 0.75 5.76923C0.335786 5.76923 0 5.43345 0 5.01923V2.17308C0 1.59674 0.228949 1.04401 0.63648 0.63648C1.04401 0.228949 1.59674 0 2.17308 0H5.01923C5.43345 0 5.76923 0.335786 5.76923 0.75C5.76923 1.16421 5.43345 1.5 5.01923 1.5H2.17308ZM14.9808 0C14.5666 0 14.2308 0.335786 14.2308 0.75C14.2308 1.16421 14.5666 1.5 14.9808 1.5H17.8269C18.0054 1.5 18.1766 1.57091 18.3029 1.69714C18.4291 1.82337 18.5 1.99457 18.5 2.17308V5.01923C18.5 5.43345 18.8358 5.76923 19.25 5.76923C19.6642 5.76923 20 5.43345 20 5.01923V2.17308C20 1.59674 19.7711 1.04401 19.3635 0.63648C18.956 0.228949 18.4033 0 17.8269 0H14.9808ZM20 14.9808C20 14.5666 19.6642 14.2308 19.25 14.2308C18.8358 14.2308 18.5 14.5666 18.5 14.9808V17.8269C18.5 18.0054 18.4291 18.1766 18.3029 18.3029C18.1766 18.4291 18.0054 18.5 17.8269 18.5H14.9808C14.5666 18.5 14.2308 18.8358 14.2308 19.25C14.2308 19.6642 14.5666 20 14.9808 20H17.8269C18.4033 20 18.956 19.7711 19.3635 19.3635C19.7711 18.956 20 18.4033 20 17.8269V14.9808ZM1.5 14.9808C1.5 14.5666 1.16421 14.2308 0.75 14.2308C0.335786 14.2308 0 14.5666 0 14.9808V17.8269C0 18.4033 0.228949 18.956 0.63648 19.3635C1.04401 19.7711 1.59674 20 2.17308 20H5.01923C5.43345 20 5.76923 19.6642 5.76923 19.25C5.76923 18.8358 5.43345 18.5 5.01923 18.5H2.17308C1.99457 18.5 1.82337 18.4291 1.69714 18.3029C1.57091 18.1766 1.5 18.0054 1.5 17.8269V14.9808ZM8.92856 4.53571C6.50245 4.53571 4.53571 6.50245 4.53571 8.92856C4.53571 11.3547 6.50245 13.3214 8.92856 13.3214C11.3547 13.3214 13.3214 11.3547 13.3214 8.92856C13.3214 6.50245 11.3547 4.53571 8.92856 4.53571ZM3.03571 8.92856C3.03571 5.67403 5.67403 3.03571 8.92856 3.03571C12.1831 3.03571 14.8214 5.67403 14.8214 8.92856C14.8214 10.2855 14.3628 11.5353 13.5921 12.5314L16.7446 15.6839C17.0375 15.9768 17.0375 16.4517 16.7446 16.7446C16.4517 17.0375 15.9768 17.0375 15.6839 16.7446L12.5314 13.5921C11.5353 14.3628 10.2855 14.8214 8.92856 14.8214C5.67403 14.8214 3.03571 12.1831 3.03571 8.92856Z"
7
- fill="currentColor"
8
- />
9
- </svg>
10
- </template>
1
+ <template>
2
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ fill-rule="evenodd"
5
+ clip-rule="evenodd"
6
+ d="M2.17308 1.5C1.99457 1.5 1.82337 1.57091 1.69714 1.69714C1.57091 1.82337 1.5 1.99457 1.5 2.17308V5.01923C1.5 5.43345 1.16421 5.76923 0.75 5.76923C0.335786 5.76923 0 5.43345 0 5.01923V2.17308C0 1.59674 0.228949 1.04401 0.63648 0.63648C1.04401 0.228949 1.59674 0 2.17308 0H5.01923C5.43345 0 5.76923 0.335786 5.76923 0.75C5.76923 1.16421 5.43345 1.5 5.01923 1.5H2.17308ZM14.9808 0C14.5666 0 14.2308 0.335786 14.2308 0.75C14.2308 1.16421 14.5666 1.5 14.9808 1.5H17.8269C18.0054 1.5 18.1766 1.57091 18.3029 1.69714C18.4291 1.82337 18.5 1.99457 18.5 2.17308V5.01923C18.5 5.43345 18.8358 5.76923 19.25 5.76923C19.6642 5.76923 20 5.43345 20 5.01923V2.17308C20 1.59674 19.7711 1.04401 19.3635 0.63648C18.956 0.228949 18.4033 0 17.8269 0H14.9808ZM20 14.9808C20 14.5666 19.6642 14.2308 19.25 14.2308C18.8358 14.2308 18.5 14.5666 18.5 14.9808V17.8269C18.5 18.0054 18.4291 18.1766 18.3029 18.3029C18.1766 18.4291 18.0054 18.5 17.8269 18.5H14.9808C14.5666 18.5 14.2308 18.8358 14.2308 19.25C14.2308 19.6642 14.5666 20 14.9808 20H17.8269C18.4033 20 18.956 19.7711 19.3635 19.3635C19.7711 18.956 20 18.4033 20 17.8269V14.9808ZM1.5 14.9808C1.5 14.5666 1.16421 14.2308 0.75 14.2308C0.335786 14.2308 0 14.5666 0 14.9808V17.8269C0 18.4033 0.228949 18.956 0.63648 19.3635C1.04401 19.7711 1.59674 20 2.17308 20H5.01923C5.43345 20 5.76923 19.6642 5.76923 19.25C5.76923 18.8358 5.43345 18.5 5.01923 18.5H2.17308C1.99457 18.5 1.82337 18.4291 1.69714 18.3029C1.57091 18.1766 1.5 18.0054 1.5 17.8269V14.9808ZM8.92856 4.53571C6.50245 4.53571 4.53571 6.50245 4.53571 8.92856C4.53571 11.3547 6.50245 13.3214 8.92856 13.3214C11.3547 13.3214 13.3214 11.3547 13.3214 8.92856C13.3214 6.50245 11.3547 4.53571 8.92856 4.53571ZM3.03571 8.92856C3.03571 5.67403 5.67403 3.03571 8.92856 3.03571C12.1831 3.03571 14.8214 5.67403 14.8214 8.92856C14.8214 10.2855 14.3628 11.5353 13.5921 12.5314L16.7446 15.6839C17.0375 15.9768 17.0375 16.4517 16.7446 16.7446C16.4517 17.0375 15.9768 17.0375 15.6839 16.7446L12.5314 13.5921C11.5353 14.3628 10.2855 14.8214 8.92856 14.8214C5.67403 14.8214 3.03571 12.1831 3.03571 8.92856Z"
7
+ fill="currentColor"
8
+ />
9
+ </svg>
10
+ </template>
package/icons/moon.vue CHANGED
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
3
- <path
4
- d="M5.99987 12.6668C5.99987 13.2268 6.08654 13.7735 6.24654 14.2802C3.6865 13.3935 1.75314 11.0401 1.55314 8.28677C1.35314 5.36006 3.03983 2.62668 5.76654 1.48C6.47321 1.18666 6.83322 1.4 6.98655 1.55333C7.13322 1.7 7.33989 2.05334 7.04656 2.72668C6.74655 3.42003 6.59988 4.15337 6.59988 4.91338C6.60655 6.2734 7.13989 7.53342 8.00657 8.5001C6.78655 9.47345 5.99987 10.9801 5.99987 12.6668Z"/>
5
- <path d="M14.1402 11.8136C12.8202 13.607 10.7268 14.6603 8.49343 14.6603C8.38676 14.6603 8.2801 14.6537 8.17343 14.647C7.50675 14.6203 6.86007 14.4937 6.24673 14.2803C6.08673 13.7737 6.00006 13.227 6.00006 12.667C6.00006 10.9803 6.78674 9.47359 8.00676 8.50024C8.98677 9.60026 10.3935 10.3136 11.9468 10.3803C12.3668 10.4003 12.7868 10.3669 13.2002 10.2936C13.9468 10.1603 14.2469 10.4403 14.3535 10.6203C14.4669 10.8003 14.5869 11.1936 14.1402 11.8136Z"
6
- opacity="0.4"/>
7
- </svg>
8
- </template>
1
+ <template>
2
+ <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ d="M5.99987 12.6668C5.99987 13.2268 6.08654 13.7735 6.24654 14.2802C3.6865 13.3935 1.75314 11.0401 1.55314 8.28677C1.35314 5.36006 3.03983 2.62668 5.76654 1.48C6.47321 1.18666 6.83322 1.4 6.98655 1.55333C7.13322 1.7 7.33989 2.05334 7.04656 2.72668C6.74655 3.42003 6.59988 4.15337 6.59988 4.91338C6.60655 6.2734 7.13989 7.53342 8.00657 8.5001C6.78655 9.47345 5.99987 10.9801 5.99987 12.6668Z"/>
5
+ <path d="M14.1402 11.8136C12.8202 13.607 10.7268 14.6603 8.49343 14.6603C8.38676 14.6603 8.2801 14.6537 8.17343 14.647C7.50675 14.6203 6.86007 14.4937 6.24673 14.2803C6.08673 13.7737 6.00006 13.227 6.00006 12.667C6.00006 10.9803 6.78674 9.47359 8.00676 8.50024C8.98677 9.60026 10.3935 10.3136 11.9468 10.3803C12.3668 10.4003 12.7868 10.3669 13.2002 10.2936C13.9468 10.1603 14.2469 10.4403 14.3535 10.6203C14.4669 10.8003 14.5869 11.1936 14.1402 11.8136Z"
6
+ opacity="0.4"/>
7
+ </svg>
8
+ </template>
package/icons/more.vue CHANGED
@@ -1,29 +1,29 @@
1
- <template>
2
- <svg
3
- class="dark:text-gray-200 text-deepblue-900"
4
- width="24"
5
- height="24"
6
- viewBox="0 0 24 24"
7
- fill="none"
8
- xmlns="http://www.w3.org/2000/svg"
9
- >
10
- <path
11
- fill-rule="evenodd"
12
- clip-rule="evenodd"
13
- d="M12 5.56243C10.999 5.56243 10.1875 4.75093 10.1875 3.7499C10.1875 2.74887 10.999 1.93738 12 1.93738C13.0011 1.93738 13.8125 2.74887 13.8125 3.7499C13.8125 4.75093 13.0011 5.56243 12 5.56243Z"
14
- fill="currentColor"
15
- />
16
- <path
17
- fill-rule="evenodd"
18
- clip-rule="evenodd"
19
- d="M12 13.8125C10.999 13.8125 10.1875 13.001 10.1875 12C10.1875 10.999 10.999 10.1875 12 10.1875C13.0011 10.1875 13.8125 10.999 13.8125 12C13.8125 13.001 13.0011 13.8125 12 13.8125Z"
20
- fill="currentColor"
21
- />
22
- <path
23
- fill-rule="evenodd"
24
- clip-rule="evenodd"
25
- d="M12 22.0626C10.999 22.0626 10.1875 21.2511 10.1875 20.2501C10.1875 19.2491 10.999 18.4376 12 18.4376C13.0011 18.4376 13.8125 19.2491 13.8125 20.2501C13.8125 21.2511 13.0011 22.0626 12 22.0626Z"
26
- fill="currentColor"
27
- />
28
- </svg>
29
- </template>
1
+ <template>
2
+ <svg
3
+ class="dark:text-gray-200 text-deepblue-900"
4
+ width="24"
5
+ height="24"
6
+ viewBox="0 0 24 24"
7
+ fill="none"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ >
10
+ <path
11
+ fill-rule="evenodd"
12
+ clip-rule="evenodd"
13
+ d="M12 5.56243C10.999 5.56243 10.1875 4.75093 10.1875 3.7499C10.1875 2.74887 10.999 1.93738 12 1.93738C13.0011 1.93738 13.8125 2.74887 13.8125 3.7499C13.8125 4.75093 13.0011 5.56243 12 5.56243Z"
14
+ fill="currentColor"
15
+ />
16
+ <path
17
+ fill-rule="evenodd"
18
+ clip-rule="evenodd"
19
+ d="M12 13.8125C10.999 13.8125 10.1875 13.001 10.1875 12C10.1875 10.999 10.999 10.1875 12 10.1875C13.0011 10.1875 13.8125 10.999 13.8125 12C13.8125 13.001 13.0011 13.8125 12 13.8125Z"
20
+ fill="currentColor"
21
+ />
22
+ <path
23
+ fill-rule="evenodd"
24
+ clip-rule="evenodd"
25
+ d="M12 22.0626C10.999 22.0626 10.1875 21.2511 10.1875 20.2501C10.1875 19.2491 10.999 18.4376 12 18.4376C13.0011 18.4376 13.8125 19.2491 13.8125 20.2501C13.8125 21.2511 13.0011 22.0626 12 22.0626Z"
26
+ fill="currentColor"
27
+ />
28
+ </svg>
29
+ </template>
@@ -1,14 +1,14 @@
1
- <template>
2
- <svg
3
- width="32"
4
- height="32"
5
- viewBox="0 0 32 32"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <path
10
- d="M28.7075 7.29231L24.7075 3.29231C24.6146 3.19933 24.5043 3.12557 24.3829 3.07525C24.2615 3.02493 24.1314 2.99902 24 2.99902C23.8686 2.99902 23.7385 3.02493 23.6171 3.07525C23.4957 3.12557 23.3854 3.19933 23.2925 3.29231L11.2925 15.2923C11.1997 15.3852 11.1261 15.4956 11.0759 15.617C11.0257 15.7384 10.9999 15.8684 11 15.9998V19.9998C11 20.265 11.1054 20.5194 11.2929 20.7069C11.4804 20.8945 11.7348 20.9998 12 20.9998H16C16.1314 20.9999 16.2615 20.9741 16.3829 20.9239C16.5042 20.8738 16.6146 20.8001 16.7075 20.7073L28.7075 8.70731C28.8005 8.61444 28.8742 8.50415 28.9246 8.38275C28.9749 8.26135 29.0008 8.13123 29.0008 7.99981C29.0008 7.86839 28.9749 7.73827 28.9246 7.61687C28.8742 7.49547 28.8005 7.38518 28.7075 7.29231ZM15.5863 18.9998H13V16.4136L21 8.41356L23.5863 10.9998L15.5863 18.9998ZM25 9.58606L22.4137 6.99981L24 5.41356L26.5863 7.99981L25 9.58606ZM28 14.9998V25.9998C28 26.5302 27.7893 27.0389 27.4142 27.414C27.0391 27.7891 26.5304 27.9998 26 27.9998H6C5.46957 27.9998 4.96086 27.7891 4.58579 27.414C4.21071 27.0389 4 26.5302 4 25.9998V5.99981C4 5.46938 4.21071 4.96067 4.58579 4.5856C4.96086 4.21052 5.46957 3.99981 6 3.99981H17C17.2652 3.99981 17.5196 4.10517 17.7071 4.2927C17.8946 4.48024 18 4.73459 18 4.99981C18 5.26503 17.8946 5.51938 17.7071 5.70692C17.5196 5.89445 17.2652 5.99981 17 5.99981H6V25.9998H26V14.9998C26 14.7346 26.1054 14.4802 26.2929 14.2927C26.4804 14.1052 26.7348 13.9998 27 13.9998C27.2652 13.9998 27.5196 14.1052 27.7071 14.2927C27.8946 14.4802 28 14.7346 28 14.9998Z"
11
- fill="currentColor"
12
- />
13
- </svg>
14
- </template>
1
+ <template>
2
+ <svg
3
+ width="32"
4
+ height="32"
5
+ viewBox="0 0 32 32"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M28.7075 7.29231L24.7075 3.29231C24.6146 3.19933 24.5043 3.12557 24.3829 3.07525C24.2615 3.02493 24.1314 2.99902 24 2.99902C23.8686 2.99902 23.7385 3.02493 23.6171 3.07525C23.4957 3.12557 23.3854 3.19933 23.2925 3.29231L11.2925 15.2923C11.1997 15.3852 11.1261 15.4956 11.0759 15.617C11.0257 15.7384 10.9999 15.8684 11 15.9998V19.9998C11 20.265 11.1054 20.5194 11.2929 20.7069C11.4804 20.8945 11.7348 20.9998 12 20.9998H16C16.1314 20.9999 16.2615 20.9741 16.3829 20.9239C16.5042 20.8738 16.6146 20.8001 16.7075 20.7073L28.7075 8.70731C28.8005 8.61444 28.8742 8.50415 28.9246 8.38275C28.9749 8.26135 29.0008 8.13123 29.0008 7.99981C29.0008 7.86839 28.9749 7.73827 28.9246 7.61687C28.8742 7.49547 28.8005 7.38518 28.7075 7.29231ZM15.5863 18.9998H13V16.4136L21 8.41356L23.5863 10.9998L15.5863 18.9998ZM25 9.58606L22.4137 6.99981L24 5.41356L26.5863 7.99981L25 9.58606ZM28 14.9998V25.9998C28 26.5302 27.7893 27.0389 27.4142 27.414C27.0391 27.7891 26.5304 27.9998 26 27.9998H6C5.46957 27.9998 4.96086 27.7891 4.58579 27.414C4.21071 27.0389 4 26.5302 4 25.9998V5.99981C4 5.46938 4.21071 4.96067 4.58579 4.5856C4.96086 4.21052 5.46957 3.99981 6 3.99981H17C17.2652 3.99981 17.5196 4.10517 17.7071 4.2927C17.8946 4.48024 18 4.73459 18 4.99981C18 5.26503 17.8946 5.51938 17.7071 5.70692C17.5196 5.89445 17.2652 5.99981 17 5.99981H6V25.9998H26V14.9998C26 14.7346 26.1054 14.4802 26.2929 14.2927C26.4804 14.1052 26.7348 13.9998 27 13.9998C27.2652 13.9998 27.5196 14.1052 27.7071 14.2927C27.8946 14.4802 28 14.7346 28 14.9998Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>