adata-ui 2.1.41-beta.2 → 2.1.41-beta.21

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 (628) 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/app.vue +102 -102
  8. package/.playground/nuxt.config.ts +4 -4
  9. package/CLAUDE.md +63 -63
  10. package/README.md +75 -75
  11. package/app.config.ts +28 -28
  12. package/app.vue +8 -8
  13. package/assets/styles/main.css +12 -12
  14. package/assets/styles/theme.css +590 -583
  15. package/assets/styles/ui.css +247 -247
  16. package/components/elements/README.md +1 -1
  17. package/components/elements/a-select-row/ASelectRowV2.vue +210 -210
  18. package/components/elements/a-select-row/index.vue +139 -139
  19. package/components/elements/accordion/AAccordion.vue +199 -199
  20. package/components/elements/accordion/AAccordionGroup/AAccordionGroup.vue +145 -145
  21. package/components/elements/accordion/AAccordionGroup/types.ts +20 -20
  22. package/components/elements/accordion/AAccordionGroup/ui.config.ts +22 -22
  23. package/components/elements/accordion/types.ts +14 -14
  24. package/components/elements/accordion/ui.config.ts +22 -22
  25. package/components/elements/alert/AAlert.vue +52 -52
  26. package/components/elements/banner/ABanner.vue +67 -49
  27. package/components/elements/bg-block/ABgBlock.vue +11 -11
  28. package/components/elements/button/AButton.vue +191 -191
  29. package/components/elements/button/AButtonV2.vue +179 -179
  30. package/components/elements/button/types.ts +24 -24
  31. package/components/elements/button-login/index.vue +19 -19
  32. package/components/elements/calendar/ACalendar.vue +83 -83
  33. package/components/elements/carousel/ACarousel.vue +159 -159
  34. package/components/elements/carousel/config.ui.ts +15 -15
  35. package/components/elements/carousel/types.ts +18 -18
  36. package/components/elements/chip-wrapper/AChipWrapper.vue +81 -81
  37. package/components/elements/chip-wrapper/types.ts +12 -12
  38. package/components/elements/chips/AChips.vue +33 -33
  39. package/components/elements/companies/AOurClients.vue +47 -47
  40. package/components/elements/count-up/ACountUp.vue +54 -54
  41. package/components/elements/curve-block/ACurveBlock.vue +259 -259
  42. package/components/elements/curve-block-v2/ACurveBlockV2.vue +122 -122
  43. package/components/elements/digit-badge/ADigitBadge.vue +86 -86
  44. package/components/elements/empty-box/empty-box-V2.vue +92 -92
  45. package/components/elements/error-template/index.vue +121 -116
  46. package/components/elements/feature-description/AFeatureDescription.vue +112 -112
  47. package/components/elements/illustrations/noAccess.vue +71 -71
  48. package/components/elements/infinite-carousel/AInfiniteCarousel.vue +85 -85
  49. package/components/elements/infinite-scroll/AInfiniteScroll.vue +33 -33
  50. package/components/elements/leave-note/ALeaveNote.vue +102 -102
  51. package/components/elements/pagination/APagination.vue +110 -110
  52. package/components/elements/photos-animation/APhotosAnimation.vue +85 -85
  53. package/components/elements/section-heading/ASectionHeading.vue +35 -35
  54. package/components/elements/segmented/ASegmentedV2.vue +154 -154
  55. package/components/elements/select/ACascadeSelectV2.vue +710 -0
  56. package/components/elements/select/AGroupSelectV2.vue +592 -0
  57. package/components/elements/select/ASelect.vue +448 -448
  58. package/components/elements/select/ASelectMobile.vue +186 -186
  59. package/components/elements/select/ASelectV2.vue +513 -580
  60. package/components/elements/select/cascade-utils.ts +115 -0
  61. package/components/elements/select/types.ts +27 -0
  62. package/components/elements/select/ui/cascade-drawer.vue +146 -0
  63. package/components/elements/select/ui/cascade-panel.vue +237 -0
  64. package/components/elements/select/ui/select-button.vue +112 -112
  65. package/components/elements/select/ui/select-list.vue +99 -99
  66. package/components/elements/select/ui/select-trigger.vue +167 -0
  67. package/components/elements/show-more/AShowMore.vue +35 -35
  68. package/components/elements/show-more/AShowMoreV2.vue +26 -26
  69. package/components/elements/skeleton/ASkeleton.vue +44 -44
  70. package/components/elements/slider/ASlider.vue +175 -175
  71. package/components/elements/slider/ASliderItem.vue +31 -31
  72. package/components/elements/slider/ASliderV2.vue +182 -182
  73. package/components/elements/slider/types.ts +21 -21
  74. package/components/elements/star-rating/AStarRating.vue +189 -189
  75. package/components/elements/star-rating/types.ts +7 -7
  76. package/components/elements/star-rating/ui/Star.vue +74 -74
  77. package/components/elements/status-badge/AStatusBadge.vue +160 -125
  78. package/components/elements/step-slider/AStepSliderColCard.vue +266 -270
  79. package/components/elements/step-slider/AStepSliderColNumber.vue +199 -199
  80. package/components/elements/step-slider/AStepSliderRowCard.vue +197 -0
  81. package/components/elements/table/ATable.vue +93 -93
  82. package/components/elements/table/table.config.ts +32 -32
  83. package/components/elements/tree-select/ATreeSelect.vue +157 -157
  84. package/components/elements/tree-select/TreeService.ts +184 -184
  85. package/components/elements/tree-select/components/ATreeSelectNode.vue +104 -104
  86. package/components/elements/tree-select/types.ts +63 -63
  87. package/components/elements/tree-select/utils.ts +30 -30
  88. package/components/elements/tree-select-mobile/ATreeSelectMobile.vue +79 -79
  89. package/components/elements/tree-select-mobile/components/ATreeSelectNodesMobile.vue +175 -175
  90. package/components/elements/tree-select-modal/ATreeSelectModal.vue +217 -217
  91. package/components/features/color-mode/AColorMode.client.vue +74 -74
  92. package/components/features/dropdown/ADropdown.vue +127 -127
  93. package/components/features/dropdown/ADropdownV2.vue +140 -140
  94. package/components/features/go-top/GoTop.vue +67 -63
  95. package/components/features/lang-switcher/lang-switcher.vue +160 -158
  96. package/components/features/payment/banner/BasicPlusLimitBanner.vue +84 -84
  97. package/components/features/payment/banner/PaymentBanner.vue +88 -88
  98. package/components/features/payment/banner/UpSellBanner.vue +105 -105
  99. package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +180 -180
  100. package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +123 -123
  101. package/components/features/payment/process/PaymentMethodSidePanel.vue +138 -138
  102. package/components/features/payment/process/PaymentProcess.vue +162 -158
  103. package/components/features/payment/process/PaymentTopUpSidePanel.vue +134 -119
  104. package/components/features/pk-mobile-services/APkMobileServices.vue +107 -107
  105. package/components/features//321/201hange-version/AChangeVersion.vue +20 -20
  106. package/components/forms/README.md +1 -1
  107. package/components/forms/checkbox/ACheckbox.vue +149 -149
  108. package/components/forms/checkbox/ACheckboxV2.vue +229 -229
  109. package/components/forms/feedback-form/FeedbackForm.vue +177 -177
  110. package/components/forms/feedback-form/FeedbackFormV2.vue +183 -186
  111. package/components/forms/input/AInputV2.vue +580 -560
  112. package/components/forms/input/button/AInputButton.vue +53 -53
  113. package/components/forms/input/date/AInputDate.vue +217 -217
  114. package/components/forms/input/password/AInputPassword.vue +59 -59
  115. package/components/forms/input/password/AInputPasswordV2.vue +72 -0
  116. package/components/forms/input/standard/AInputStandard.vue +424 -424
  117. package/components/forms/input/textarea/ATextarea.vue +207 -207
  118. package/components/forms/input/textarea/ATextareaV2.vue +253 -253
  119. package/components/forms/password/APasswordRequirements.vue +50 -0
  120. package/components/forms/radio-button/ARadioButton.vue +95 -95
  121. package/components/forms/request-demo/ARequestDemo.vue +108 -108
  122. package/components/forms/toggle/AToggle.vue +157 -157
  123. package/components/forms/toggle/AToggleV2.vue +72 -72
  124. package/components/forms/toggle/types.ts +16 -16
  125. package/components/modals/AConfirmationEmail.vue +40 -40
  126. package/components/modals/AboutTariffModal.vue +115 -115
  127. package/components/modals/AnotherDeviceModal.vue +65 -65
  128. package/components/modals/ApplicationAcceptedModal.vue +45 -45
  129. package/components/modals/ConnectingTariffModal.vue +60 -60
  130. package/components/modals/ContactsMobileModel.vue +182 -182
  131. package/components/modals/ContentNavigationModal.vue +100 -100
  132. package/components/modals/Insufficient-funds-modal.vue +62 -62
  133. package/components/modals/LimitReachedModal.vue +44 -44
  134. package/components/modals/NoAccessModal.vue +39 -39
  135. package/components/modals/PaymentMethodModal.vue +101 -101
  136. package/components/modals/RedirectsBanksModal.vue +69 -69
  137. package/components/modals/ReplenishModal.vue +132 -132
  138. package/components/modals/ReportBugConfirmModal.vue +32 -32
  139. package/components/modals/ReportBugModal.vue +172 -172
  140. package/components/modals/Resend.vue +81 -81
  141. package/components/modals/SubmitApplicationModal.vue +126 -126
  142. package/components/modals/id/AuthModal.vue +72 -72
  143. package/components/modals/id/IdAutoLogoutModal.vue +44 -44
  144. package/components/modals/id/IdBanner.vue +41 -41
  145. package/components/modals/id/IdConfirmAccountOtpModal.vue +176 -182
  146. package/components/modals/id/IdConfirmSuccessfulModal.vue +44 -41
  147. package/components/modals/id/IdLoginModal.vue +370 -336
  148. package/components/modals/id/IdModals.vue +171 -125
  149. package/components/modals/id/IdNewPasswordModal.vue +172 -129
  150. package/components/modals/id/IdOtpInput.vue +156 -156
  151. package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -25
  152. package/components/modals/id/IdRecoveryModal.vue +133 -117
  153. package/components/modals/id/IdRegistrationModal.vue +260 -215
  154. package/components/modals/id/IdResetPasswordOtpModal.vue +145 -159
  155. package/components/modals/id/IdTwoFactorModal.vue +111 -126
  156. package/components/navigation/README.md +1 -1
  157. package/components/navigation/bottom-navigation/ABottomNavigation.vue +112 -106
  158. package/components/navigation/bottom-navigation/types.ts +6 -0
  159. package/components/navigation/breadcrumbs/ABreadcrumbs.vue +128 -128
  160. package/components/navigation/breadcrumbs/types.ts +8 -8
  161. package/components/navigation/footer/AFooter.vue +283 -283
  162. package/components/navigation/footer/ui/a-footer-accordion.vue +118 -118
  163. package/components/navigation/header/AHeader.vue +241 -237
  164. package/components/navigation/header/AlmatyContacts.vue +145 -145
  165. package/components/navigation/header/AstanaContacts.vue +67 -67
  166. package/components/navigation/header/CardGallery.vue +252 -252
  167. package/components/navigation/header/ContactMenu.vue +48 -48
  168. package/components/navigation/header/HeaderLink.vue +250 -250
  169. package/components/navigation/header/HeaderUsage.vue +139 -139
  170. package/components/navigation/header/ListItem.vue +32 -32
  171. package/components/navigation/header/NavCard.vue +42 -42
  172. package/components/navigation/header/NavList.vue +73 -73
  173. package/components/navigation/header/NotificationsMenu.vue +50 -50
  174. package/components/navigation/header/ProductMenu.vue +53 -101
  175. package/components/navigation/header/ProfileMenu.vue +168 -168
  176. package/components/navigation/header/SystemNotification.vue +108 -108
  177. package/components/navigation/header/types.ts +28 -28
  178. package/components/navigation/line-tabs/ALineTabs.vue +112 -112
  179. package/components/navigation/line-tabs/types.ts +21 -21
  180. package/components/navigation/mobile-navigation/AMobileNavigation.vue +129 -112
  181. package/components/navigation/pill-tabs/APillTabs.vue +179 -179
  182. package/components/navigation/pill-tabs/APillTabsV2.vue +241 -241
  183. package/components/navigation/pill-tabs/types.ts +24 -24
  184. package/components/navigation/side-navigation/ASideNavigation.vue +406 -406
  185. package/components/overlays/README.md +1 -1
  186. package/components/overlays/drawer/ADrawerV2.vue +342 -335
  187. package/components/overlays/modal/AModal.vue +335 -335
  188. package/components/overlays/modal/AModalV2.vue +401 -400
  189. package/components/overlays/side-panel/ASidePanel.vue +445 -445
  190. package/components/overlays/sideover/ASlideover.vue +351 -351
  191. package/components/overlays/tooltip/ATooltip.vue +238 -238
  192. package/components/overlays/tooltip/ATooltipV2.vue +226 -226
  193. package/components/overlays/tooltip/types.ts +26 -26
  194. package/components/overlays/tooltip/useTooltipTrigger.ts +101 -101
  195. package/components/transitions/ATransitionHeight.vue +67 -67
  196. package/components/utils/index.ts +19 -19
  197. package/components/utils/removeTrailingSlash.ts +7 -7
  198. package/composables/highlight.ts +19 -19
  199. package/composables/modalsState.ts +8 -8
  200. package/composables/projectState.ts +2 -2
  201. package/composables/useAccessTokenCookie.ts +25 -25
  202. package/composables/useActiveNavigation.ts +84 -84
  203. package/composables/useAdaptive.ts +46 -46
  204. package/composables/useBuyTariffs.ts +91 -91
  205. package/composables/useCarouselScroll.ts +49 -49
  206. package/composables/useChipOverflow.ts +92 -92
  207. package/composables/useHeaderNavigationLinks.ts +535 -519
  208. package/composables/useIdModals.ts +36 -36
  209. package/composables/usePayment.ts +81 -78
  210. package/composables/useUIValidation.ts +16 -16
  211. package/composables/useUrls.ts +23 -23
  212. package/eslint.config.mjs +58 -58
  213. package/i18n/i18n.config.ts +21 -21
  214. package/i18n.config.ts +21 -21
  215. package/icons/adata-logo.vue +17 -17
  216. package/icons/ai/ai-diamond-unfilled.vue +26 -0
  217. package/icons/ai/ai-diamond.vue +11 -0
  218. package/icons/ai-assistant.vue +13 -13
  219. package/icons/akimat.vue +20 -20
  220. package/icons/archive.vue +16 -16
  221. package/icons/arrow/arrow-bottom-left-on-square.vue +5 -5
  222. package/icons/arrow/arrow-circle-down.vue +16 -16
  223. package/icons/arrow/arrow-circle-reset.vue +16 -16
  224. package/icons/arrow/arrow-corner.vue +9 -9
  225. package/icons/arrow/arrow-down-left.vue +6 -0
  226. package/icons/arrow/arrow-graph-down.vue +13 -13
  227. package/icons/arrow/arrow-graph-up.vue +14 -14
  228. package/icons/arrow/arrow-left-right.vue +8 -8
  229. package/icons/arrow/arrow-left.vue +14 -14
  230. package/icons/arrow/arrow-right.vue +14 -14
  231. package/icons/arrow/arrow-square-down.vue +15 -15
  232. package/icons/arrow/arrow-top-right-on-square.vue +6 -6
  233. package/icons/arrow/arrow-up-right.vue +6 -0
  234. package/icons/arrow/arrows-in.vue +11 -11
  235. package/icons/arrow/arrows-out.vue +11 -11
  236. package/icons/arrow/arrows-resize-in.vue +38 -38
  237. package/icons/arrow/arrows-resize-out.vue +17 -17
  238. package/icons/arrow-currency-gray.vue +5 -5
  239. package/icons/arrow-currency-green.vue +5 -5
  240. package/icons/arrow-currency-red.vue +5 -5
  241. package/icons/arrow-side-up.vue +6 -6
  242. package/icons/avatar.vue +12 -12
  243. package/icons/bank.vue +5 -5
  244. package/icons/bar-chart-3.vue +3 -3
  245. package/icons/bill.vue +3 -3
  246. package/icons/block.vue +16 -16
  247. package/icons/book-open.vue +3 -3
  248. package/icons/bookmark/bookmark-filled.vue +19 -19
  249. package/icons/bookmark/bookmark.vue +5 -5
  250. package/icons/bot.vue +52 -52
  251. package/icons/braces.vue +3 -3
  252. package/icons/briefcase.vue +14 -14
  253. package/icons/browsers/browser-duck.vue +65 -65
  254. package/icons/browsers/browser-google.vue +30 -30
  255. package/icons/browsers/browser-yandex.vue +13 -13
  256. package/icons/building-org.vue +15 -0
  257. package/icons/building-vector.vue +7 -7
  258. package/icons/building.vue +9 -9
  259. package/icons/calculator.vue +7 -7
  260. package/icons/calendar.vue +24 -24
  261. package/icons/calendar2.vue +23 -0
  262. package/icons/car-avto.vue +19 -0
  263. package/icons/car-front.vue +21 -0
  264. package/icons/car-side.vue +16 -16
  265. package/icons/car.vue +7 -7
  266. package/icons/cart.vue +15 -15
  267. package/icons/chart-bar.vue +5 -5
  268. package/icons/chart-no-axes-column.vue +3 -3
  269. package/icons/chart-pie-piece.vue +6 -0
  270. package/icons/chart-pie.vue +16 -16
  271. package/icons/check/check-circle.vue +6 -6
  272. package/icons/check/check-outline.vue +3 -3
  273. package/icons/check/check-shield.vue +14 -14
  274. package/icons/check/check.vue +17 -17
  275. package/icons/check/checkmark-circle.vue +6 -6
  276. package/icons/check-sb.vue +7 -7
  277. package/icons/checkbox/checkbox-active.vue +17 -17
  278. package/icons/checkbox/checkbox-empty.vue +10 -10
  279. package/icons/checkbox/checkbox-intermediate.vue +7 -7
  280. package/icons/chevron/chevron-down-outline.vue +3 -3
  281. package/icons/chevron/chevron-down.vue +5 -5
  282. package/icons/chevron/chevron-left.vue +5 -5
  283. package/icons/chevron/chevron-right.vue +5 -5
  284. package/icons/chevron/chevron-up.vue +5 -5
  285. package/icons/chevron/double-chevron-right.vue +12 -12
  286. package/icons/clipboard-check.vue +18 -0
  287. package/icons/clipboard-list.vue +3 -3
  288. package/icons/clipboard-text.vue +7 -7
  289. package/icons/clock-outline.vue +3 -3
  290. package/icons/clock-rotate-ccw.vue +7 -0
  291. package/icons/clock-time.vue +24 -24
  292. package/icons/clock.vue +25 -25
  293. package/icons/close.vue +16 -16
  294. package/icons/cloud/cloud-upload.vue +3 -3
  295. package/icons/code.vue +9 -9
  296. package/icons/cog.vue +29 -0
  297. package/icons/company/company-bazis.vue +21 -21
  298. package/icons/company/company-bereke.vue +25 -25
  299. package/icons/company/company-bigroup.vue +16 -16
  300. package/icons/company/company-erg.vue +17 -17
  301. package/icons/company/company-forte.vue +21 -21
  302. package/icons/company/company-halyk.vue +15 -15
  303. package/icons/company/company-jusan.vue +31 -31
  304. package/icons/company/company-kaspi.vue +14 -14
  305. package/icons/company/company-kazzinc.vue +22 -22
  306. package/icons/company/company-mycar.vue +13 -13
  307. package/icons/company/company-samruk.vue +21 -21
  308. package/icons/company-egov-small.vue +15 -15
  309. package/icons/company.vue +8 -8
  310. package/icons/compare-outlined.vue +8 -8
  311. package/icons/copy.vue +7 -7
  312. package/icons/credit-card.vue +17 -0
  313. package/icons/crown.vue +6 -0
  314. package/icons/currency/currency-dollar.vue +16 -16
  315. package/icons/currency/currency-down.vue +22 -22
  316. package/icons/currency/currency-eur.vue +57 -57
  317. package/icons/currency/currency-rub.vue +7 -7
  318. package/icons/currency/currency-tenge.vue +9 -9
  319. package/icons/currency/currency-usd.vue +221 -221
  320. package/icons/currency/currency-yuan.vue +25 -25
  321. package/icons/database.vue +3 -3
  322. package/icons/default-avatar.vue +20 -20
  323. package/icons/delete.vue +7 -7
  324. package/icons/document.vue +5 -5
  325. package/icons/dots-horizontal.vue +31 -31
  326. package/icons/download-line.vue +13 -13
  327. package/icons/download-outline.vue +3 -3
  328. package/icons/download-rounded.vue +15 -15
  329. package/icons/download.vue +11 -11
  330. package/icons/edit.vue +7 -7
  331. package/icons/education.vue +16 -16
  332. package/icons/egov-small.vue +7 -7
  333. package/icons/egov.vue +41 -41
  334. package/icons/elicense.vue +38 -38
  335. package/icons/excel-icon.vue +14 -14
  336. package/icons/expand-window.vue +7 -7
  337. package/icons/eye-closed.vue +26 -26
  338. package/icons/eye-open.vue +7 -7
  339. package/icons/eye-opened.vue +23 -23
  340. package/icons/factory.vue +7 -0
  341. package/icons/favourite-bookmark-outline.vue +17 -17
  342. package/icons/file/file-check-corner.vue +3 -3
  343. package/icons/file/file-scan.vue +5 -0
  344. package/icons/file/file-spreadsheet.vue +3 -3
  345. package/icons/file/file.vue +16 -16
  346. package/icons/file/files.vue +16 -16
  347. package/icons/file/folder.vue +15 -0
  348. package/icons/file-download.vue +8 -0
  349. package/icons/file-json.vue +3 -3
  350. package/icons/file-pen.vue +31 -31
  351. package/icons/file-search.vue +3 -3
  352. package/icons/file-stack.vue +31 -31
  353. package/icons/file-text.vue +3 -3
  354. package/icons/file-types/excel.vue +131 -131
  355. package/icons/file-types/html.vue +13 -13
  356. package/icons/file-types/jpeg.vue +16 -16
  357. package/icons/file-types/pdf.vue +11 -11
  358. package/icons/file-types/png.vue +11 -11
  359. package/icons/file-types/rar.vue +11 -11
  360. package/icons/file-types/word.vue +50 -50
  361. package/icons/file-types/zip.vue +11 -11
  362. package/icons/filter.vue +5 -5
  363. package/icons/filter2.vue +22 -0
  364. package/icons/flag.vue +7 -7
  365. package/icons/flask-conical.vue +3 -3
  366. package/icons/folder-open.vue +3 -3
  367. package/icons/funnel.vue +5 -0
  368. package/icons/gauge.vue +17 -17
  369. package/icons/gift-outline.vue +3 -3
  370. package/icons/gift.vue +8 -8
  371. package/icons/git-compare.vue +38 -38
  372. package/icons/git-fork.vue +3 -3
  373. package/icons/globe-2.vue +3 -3
  374. package/icons/globe.vue +16 -16
  375. package/icons/google.vue +19 -41
  376. package/icons/gradiend-icons/files-gradient.vue +22 -22
  377. package/icons/gradiend-icons/hammer-gradient.vue +62 -62
  378. package/icons/graduation-cap.vue +31 -31
  379. package/icons/graph-loading.vue +34 -34
  380. package/icons/graph-pie.vue +14 -14
  381. package/icons/hand/hand-thumb-up-filled.vue +5 -5
  382. package/icons/hand/hand-thumb-up.vue +5 -5
  383. package/icons/hand-with-phone/hand-with-phone-dark.vue +52 -52
  384. package/icons/hand-with-phone/hand-with-phone-light.vue +52 -52
  385. package/icons/handshake.vue +5 -5
  386. package/icons/hcheck.vue +14 -14
  387. package/icons/hdocument.vue +7 -7
  388. package/icons/headset.vue +6 -6
  389. package/icons/heart-pulse.vue +6 -0
  390. package/icons/help-question-circle.vue +26 -26
  391. package/icons/history.vue +5 -5
  392. package/icons/home.vue +14 -14
  393. package/icons/horizontal-more.vue +13 -13
  394. package/icons/hot-line.vue +6 -6
  395. package/icons/hummer.vue +16 -16
  396. package/icons/id.vue +7 -7
  397. package/icons/in-row-type.vue +46 -46
  398. package/icons/in-table-type.vue +29 -29
  399. package/icons/info/info-circle.vue +29 -29
  400. package/icons/invoice.vue +8 -8
  401. package/icons/judge.vue +14 -14
  402. package/icons/kaspi-qr.vue +13 -13
  403. package/icons/key-round.vue +3 -3
  404. package/icons/landmark.vue +3 -3
  405. package/icons/layers.vue +3 -3
  406. package/icons/letter/letter-a.vue +8 -8
  407. package/icons/letter/letter-b.vue +6 -6
  408. package/icons/letter/letter-c.vue +6 -6
  409. package/icons/letter/letter-d.vue +6 -6
  410. package/icons/letter/letter-e.vue +6 -6
  411. package/icons/link-chain.vue +28 -28
  412. package/icons/link-url.vue +3 -3
  413. package/icons/link.vue +7 -7
  414. package/icons/linkedin.vue +24 -24
  415. package/icons/list-checks.vue +3 -0
  416. package/icons/list-tree.vue +3 -3
  417. package/icons/loader-circle.vue +27 -27
  418. package/icons/location.vue +8 -8
  419. package/icons/lock.vue +5 -5
  420. package/icons/log-out.vue +21 -0
  421. package/icons/logo.vue +15 -15
  422. package/icons/logout.vue +16 -16
  423. package/icons/magnify/magnifying-glass-minus.vue +8 -8
  424. package/icons/magnify/magnifying-glass-plus.vue +9 -9
  425. package/icons/magnify/magnifying-glass.vue +9 -9
  426. package/icons/mail-question-mark.vue +8 -8
  427. package/icons/mail.vue +7 -7
  428. package/icons/mailru.vue +19 -34
  429. package/icons/main-filter.vue +10 -5
  430. package/icons/map/map-pin-filled.vue +7 -7
  431. package/icons/map/map-pin-rect.vue +15 -15
  432. package/icons/map/map-pin.vue +7 -7
  433. package/icons/map-marker-start.vue +7 -7
  434. package/icons/map-paper.vue +5 -5
  435. package/icons/medal.vue +7 -7
  436. package/icons/menu-filled.vue +20 -20
  437. package/icons/menu.vue +8 -8
  438. package/icons/message/message-square.vue +3 -3
  439. package/icons/message/message.vue +12 -12
  440. package/icons/message-dotted.vue +30 -30
  441. package/icons/messages-square.vue +3 -3
  442. package/icons/minus/minus-circle.vue +10 -10
  443. package/icons/money.vue +5 -5
  444. package/icons/monitoring.vue +10 -10
  445. package/icons/moon.vue +8 -8
  446. package/icons/more.vue +29 -29
  447. package/icons/network.vue +3 -3
  448. package/icons/newspaper.vue +3 -3
  449. package/icons/note-pencil.vue +14 -14
  450. package/icons/note.vue +14 -14
  451. package/icons/notification-error.vue +17 -17
  452. package/icons/notification.vue +16 -16
  453. package/icons/paperclip.vue +7 -7
  454. package/icons/payment/payment-card.vue +6 -6
  455. package/icons/payment/payment-kaspi.vue +11 -11
  456. package/icons/person-vector.vue +7 -7
  457. package/icons/person-with-briefcase.vue +10 -10
  458. package/icons/person.vue +22 -22
  459. package/icons/phone-call.vue +6 -6
  460. package/icons/phone-filled.vue +5 -5
  461. package/icons/phone-reversed.vue +3 -3
  462. package/icons/phone.vue +7 -7
  463. package/icons/plus/plus-circle.vue +8 -8
  464. package/icons/plus/plus.vue +13 -13
  465. package/icons/profile.vue +5 -5
  466. package/icons/qr-code.vue +25 -0
  467. package/icons/radio/radio-check.vue +8 -8
  468. package/icons/radio/radio-empty.vue +10 -10
  469. package/icons/receipt-text.vue +19 -0
  470. package/icons/receipt.vue +8 -8
  471. package/icons/recycle.vue +10 -0
  472. package/icons/refresh-cw.vue +8 -0
  473. package/icons/reply.vue +15 -0
  474. package/icons/robot-outline.vue +3 -3
  475. package/icons/robot.vue +14 -14
  476. package/icons/route.vue +7 -7
  477. package/icons/sanctions.vue +8 -8
  478. package/icons/scales/scale-outline.vue +3 -3
  479. package/icons/scales/scale.vue +16 -16
  480. package/icons/scales/scales.vue +5 -5
  481. package/icons/scales/standing-scales.vue +15 -15
  482. package/icons/scan-search.vue +3 -3
  483. package/icons/search-outline.vue +3 -3
  484. package/icons/search.vue +27 -27
  485. package/icons/send.vue +3 -3
  486. package/icons/settings.vue +26 -26
  487. package/icons/share/share-alt.vue +5 -5
  488. package/icons/share/share.vue +14 -14
  489. package/icons/shield-alert.vue +31 -31
  490. package/icons/shield-check.vue +20 -0
  491. package/icons/shield-verified.vue +14 -14
  492. package/icons/ship.vue +8 -8
  493. package/icons/shuffle.vue +3 -0
  494. package/icons/siren.vue +23 -0
  495. package/icons/socials/face-book.vue +15 -15
  496. package/icons/socials/facebook-color.vue +16 -16
  497. package/icons/socials/globe-color.vue +16 -16
  498. package/icons/socials/instagram-color.vue +46 -46
  499. package/icons/socials/instagram.vue +19 -19
  500. package/icons/socials/linkedin-color.vue +14 -14
  501. package/icons/socials/telegram-color.vue +16 -16
  502. package/icons/socials/telegram.vue +15 -15
  503. package/icons/socials/tik-tok.vue +15 -15
  504. package/icons/socials/tiktok-color.vue +14 -14
  505. package/icons/socials/vk-color.vue +16 -16
  506. package/icons/socials/youtube-color.vue +16 -16
  507. package/icons/socials/youtube.vue +16 -16
  508. package/icons/sort/sort-asc.vue +15 -15
  509. package/icons/sort/sort-desc.vue +15 -15
  510. package/icons/sparkles.vue +3 -3
  511. package/icons/splitting-arrows.vue +8 -8
  512. package/icons/star/star-filled.vue +41 -41
  513. package/icons/star/star-half-filled.vue +21 -21
  514. package/icons/star/star.vue +25 -25
  515. package/icons/store.vue +7 -0
  516. package/icons/sun.vue +25 -25
  517. package/icons/sviazi.vue +5 -5
  518. package/icons/tag.vue +30 -30
  519. package/icons/target.vue +7 -0
  520. package/icons/tasks.vue +10 -10
  521. package/icons/tender-search.vue +11 -11
  522. package/icons/terminal.vue +3 -3
  523. package/icons/toasts/check-circle-toast.vue +6 -6
  524. package/icons/toasts/warning-triangle-toast.vue +8 -8
  525. package/icons/trash.vue +13 -13
  526. package/icons/trees.vue +8 -0
  527. package/icons/triangle-alert.vue +3 -3
  528. package/icons/triangle.vue +10 -10
  529. package/icons/trophy.vue +10 -0
  530. package/icons/truck.vue +7 -7
  531. package/icons/upload.vue +16 -0
  532. package/icons/user-plus.vue +3 -0
  533. package/icons/user-square.vue +14 -14
  534. package/icons/user-x.vue +11 -0
  535. package/icons/user-xmark.vue +10 -0
  536. package/icons/user.vue +22 -22
  537. package/icons/users-focus.vue +8 -8
  538. package/icons/users-outline.vue +3 -3
  539. package/icons/users-round.vue +3 -3
  540. package/icons/users-three.vue +7 -7
  541. package/icons/users.vue +8 -8
  542. package/icons/view-eye-open.vue +13 -13
  543. package/icons/wallet.vue +6 -0
  544. package/icons/warning/warning-circle.vue +29 -29
  545. package/icons/warning/warning-triangle-filled.vue +12 -12
  546. package/icons/warning/warning-triangle.vue +28 -28
  547. package/icons/webhook.vue +3 -3
  548. package/icons/whatsapp.vue +8 -8
  549. package/icons/work-bag.vue +11 -11
  550. package/icons/work-case.vue +9 -9
  551. package/icons/work-search.vue +10 -10
  552. package/icons/work.vue +5 -5
  553. package/icons/workflow.vue +3 -3
  554. package/icons/x-mark.vue +15 -15
  555. package/icons/x-outline.vue +3 -3
  556. package/icons/yandex.vue +19 -29
  557. package/icons/zap.vue +3 -3
  558. package/illustrations/address-location.vue +38 -38
  559. package/illustrations/award-badge.vue +105 -105
  560. package/illustrations/ball-with-chain.vue +120 -120
  561. package/illustrations/bill.vue +133 -133
  562. package/illustrations/buildings.vue +82 -82
  563. package/illustrations/calendar.vue +156 -156
  564. package/illustrations/chains.vue +152 -152
  565. package/illustrations/coin-percent.vue +126 -126
  566. package/illustrations/coins-stack.vue +202 -202
  567. package/illustrations/delete-dark.vue +32 -32
  568. package/illustrations/delete.vue +33 -33
  569. package/illustrations/doc-with-stamp.vue +126 -126
  570. package/illustrations/document.vue +64 -64
  571. package/illustrations/door.vue +85 -85
  572. package/illustrations/empty-badge-check.vue +20 -20
  573. package/illustrations/empty-ban.vue +18 -18
  574. package/illustrations/empty-box.vue +77 -77
  575. package/illustrations/empty-filter.vue +20 -20
  576. package/illustrations/empty-inbox.vue +19 -19
  577. package/illustrations/empty-scale.vue +22 -22
  578. package/illustrations/empty-search-x.vue +21 -21
  579. package/illustrations/empty-shopping-cart.vue +21 -21
  580. package/illustrations/empty-users-round.vue +20 -20
  581. package/illustrations/empty-wallet.vue +127 -127
  582. package/illustrations/graph-in-coin.vue +119 -119
  583. package/illustrations/hammer.vue +156 -156
  584. package/illustrations/hand-cash.vue +108 -108
  585. package/illustrations/info.vue +52 -52
  586. package/illustrations/mail-active.vue +86 -86
  587. package/illustrations/mail.vue +68 -68
  588. package/illustrations/no-access.vue +92 -92
  589. package/illustrations/notes-search.vue +20 -0
  590. package/illustrations/notes-sticky.vue +20 -0
  591. package/illustrations/ok.vue +90 -90
  592. package/illustrations/people-group.vue +237 -237
  593. package/illustrations/person-with-phone.vue +187 -187
  594. package/illustrations/person.vue +159 -159
  595. package/illustrations/phone-check.vue +110 -110
  596. package/illustrations/phone-payment-method.vue +223 -223
  597. package/illustrations/scheme-notes.vue +21 -0
  598. package/illustrations/scheme-waypoints.vue +25 -0
  599. package/illustrations/search.vue +14 -14
  600. package/illustrations/shield-user.vue +94 -94
  601. package/illustrations/stop-hand.vue +84 -84
  602. package/illustrations/stop-sign.vue +34 -34
  603. package/illustrations/suit.vue +97 -97
  604. package/illustrations/suitcase.vue +105 -105
  605. package/illustrations/terminal.vue +100 -100
  606. package/illustrations/trash-can.vue +66 -66
  607. package/illustrations/turn-on-tariff.vue +38 -38
  608. package/illustrations/two-persons.vue +169 -169
  609. package/lang/en.ts +911 -877
  610. package/lang/kk.ts +913 -879
  611. package/lang/ru.ts +913 -879
  612. package/layouts/default.vue +13 -13
  613. package/nuxt.config.ts +119 -95
  614. package/package.json +64 -64
  615. package/plugins/maska.ts +4 -4
  616. package/plugins/toast.client.ts +41 -41
  617. package/public/kaspi/logo.svg +4 -4
  618. package/server/middleware/color-mode-cookie.ts +58 -0
  619. package/shared/constans/pages.ts +96 -96
  620. package/tsconfig.json +6 -6
  621. package/utils/apiErrorMessage.ts +22 -0
  622. package/utils/getMaxZindex.ts +25 -25
  623. package/utils/localizedNavigation.ts +36 -36
  624. package/utils/passwordRules.ts +20 -0
  625. package/utils/toCssSize.ts +11 -0
  626. package/utils/twMerge.ts +34 -34
  627. package/vitest.config.ts +14 -14
  628. package/.claude/settings.local.json +0 -19
@@ -1,26 +1,26 @@
1
- <template>
2
- <svg
3
- width="24"
4
- height="24"
5
- viewBox="0 0 24 24"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <path
10
- fill-rule="evenodd"
11
- clip-rule="evenodd"
12
- d="M12.3401 7.41784C12.0019 7.35063 11.6514 7.38513 11.3329 7.51694C11.0144 7.64875 10.7423 7.87191 10.5509 8.15811C10.3595 8.44429 10.2574 8.78068 10.2574 9.12474C10.2574 9.53896 9.92157 9.87474 9.50735 9.87474C9.09314 9.87474 8.75735 9.53896 8.75735 9.12474C8.75735 8.48371 8.94762 7.85712 9.30402 7.32423C9.6604 6.79134 10.1669 6.37611 10.7593 6.13094C11.3518 5.88577 12.0036 5.82163 12.6325 5.94661C13.2614 6.07159 13.8391 6.38009 14.2927 6.83321C14.7462 7.28634 15.0552 7.86375 15.1803 8.49245C15.3055 9.12116 15.2412 9.77282 14.9957 10.365C14.7502 10.9572 14.3345 11.4632 13.8013 11.8192C13.4792 12.0342 13.1229 12.1887 12.75 12.2773V13.6914C12.75 14.1056 12.4142 14.4414 12 14.4414C11.5858 14.4414 11.25 14.1056 11.25 13.6914V11.6151C11.25 11.2009 11.5858 10.8651 12 10.8651C12.3448 10.8651 12.6818 10.763 12.9684 10.5716C13.255 10.3803 13.4783 10.1085 13.6101 9.79053C13.7419 9.4726 13.7764 9.12281 13.7092 8.78534C13.642 8.44787 13.4762 8.1378 13.2325 7.89436C12.9888 7.65091 12.6783 7.48504 12.3401 7.41784Z"
13
- fill="currentColor"
14
- />
15
- <path
16
- d="M12.7477 16.3656C12.7477 16.7798 12.412 17.1156 11.9977 17.1156C11.5835 17.1156 11.2477 16.7798 11.2477 16.3656C11.2477 15.9514 11.5835 15.6156 11.9977 15.6156C12.412 15.6156 12.7477 15.9514 12.7477 16.3656Z"
17
- fill="currentColor"
18
- />
19
- <path
20
- fill-rule="evenodd"
21
- clip-rule="evenodd"
22
- d="M12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z"
23
- fill="currentColor"
24
- />
25
- </svg>
26
- </template>
1
+ <template>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M12.3401 7.41784C12.0019 7.35063 11.6514 7.38513 11.3329 7.51694C11.0144 7.64875 10.7423 7.87191 10.5509 8.15811C10.3595 8.44429 10.2574 8.78068 10.2574 9.12474C10.2574 9.53896 9.92157 9.87474 9.50735 9.87474C9.09314 9.87474 8.75735 9.53896 8.75735 9.12474C8.75735 8.48371 8.94762 7.85712 9.30402 7.32423C9.6604 6.79134 10.1669 6.37611 10.7593 6.13094C11.3518 5.88577 12.0036 5.82163 12.6325 5.94661C13.2614 6.07159 13.8391 6.38009 14.2927 6.83321C14.7462 7.28634 15.0552 7.86375 15.1803 8.49245C15.3055 9.12116 15.2412 9.77282 14.9957 10.365C14.7502 10.9572 14.3345 11.4632 13.8013 11.8192C13.4792 12.0342 13.1229 12.1887 12.75 12.2773V13.6914C12.75 14.1056 12.4142 14.4414 12 14.4414C11.5858 14.4414 11.25 14.1056 11.25 13.6914V11.6151C11.25 11.2009 11.5858 10.8651 12 10.8651C12.3448 10.8651 12.6818 10.763 12.9684 10.5716C13.255 10.3803 13.4783 10.1085 13.6101 9.79053C13.7419 9.4726 13.7764 9.12281 13.7092 8.78534C13.642 8.44787 13.4762 8.1378 13.2325 7.89436C12.9888 7.65091 12.6783 7.48504 12.3401 7.41784Z"
13
+ fill="currentColor"
14
+ />
15
+ <path
16
+ d="M12.7477 16.3656C12.7477 16.7798 12.412 17.1156 11.9977 17.1156C11.5835 17.1156 11.2477 16.7798 11.2477 16.3656C11.2477 15.9514 11.5835 15.6156 11.9977 15.6156C12.412 15.6156 12.7477 15.9514 12.7477 16.3656Z"
17
+ fill="currentColor"
18
+ />
19
+ <path
20
+ fill-rule="evenodd"
21
+ clip-rule="evenodd"
22
+ d="M12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z"
23
+ fill="currentColor"
24
+ />
25
+ </svg>
26
+ </template>
package/icons/history.vue CHANGED
@@ -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="M9.80011 1.6639C8.54695 1.41463 7.248 1.54256 6.06755 2.03153C4.88709 2.52049 3.87813 3.34851 3.16827 4.4109C2.587 5.28083 2.22766 6.27591 2.11654 7.30941L1.89635 7.08921C1.69132 6.88419 1.35891 6.88419 1.15389 7.08921C0.948866 7.29424 0.948866 7.62665 1.15389 7.83167L2.23303 8.91081C2.43805 9.11583 2.77046 9.11583 2.97549 8.91081L4.05462 7.83167C4.25965 7.62665 4.25965 7.29424 4.05462 7.08921C3.8496 6.88419 3.51719 6.88419 3.31217 7.08921L3.18684 7.21454C3.30292 6.42344 3.59347 5.66449 4.04131 4.99424C4.6358 4.10453 5.48077 3.41108 6.46936 3.00159C7.45796 2.5921 8.54578 2.48496 9.59527 2.69372C10.6448 2.90247 11.6088 3.41775 12.3654 4.17439C13.1221 4.93103 13.6373 5.89505 13.8461 6.94453C14.0548 7.99402 13.9477 9.08185 13.5382 10.0704C13.1287 11.059 12.4353 11.904 11.5456 12.4985C10.6558 13.093 9.60983 13.4103 8.53978 13.4103C8.24983 13.4103 8.01478 13.6453 8.01478 13.9353C8.01478 14.2252 8.24983 14.4603 8.53978 14.4603C9.8175 14.4603 11.0665 14.0814 12.1289 13.3715C13.1913 12.6617 14.0193 11.6527 14.5083 10.4723C14.9972 9.2918 15.1252 7.99286 14.8759 6.73969C14.6266 5.48652 14.0114 4.33542 13.1079 3.43193C12.2044 2.52845 11.0533 1.91317 9.80011 1.6639ZM8.53978 4.76939C8.24984 4.76939 8.01479 5.00444 8.01479 5.29438V7.75953L5.4399 10.3344C5.23487 10.5394 5.23487 10.8719 5.4399 11.0769C5.64492 11.2819 5.97733 11.2819 6.18235 11.0769L8.91101 8.34822L9.06478 8.19445V7.97699V5.29438C9.06478 5.00444 8.82973 4.76939 8.53978 4.76939Z" 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="M9.80011 1.6639C8.54695 1.41463 7.248 1.54256 6.06755 2.03153C4.88709 2.52049 3.87813 3.34851 3.16827 4.4109C2.587 5.28083 2.22766 6.27591 2.11654 7.30941L1.89635 7.08921C1.69132 6.88419 1.35891 6.88419 1.15389 7.08921C0.948866 7.29424 0.948866 7.62665 1.15389 7.83167L2.23303 8.91081C2.43805 9.11583 2.77046 9.11583 2.97549 8.91081L4.05462 7.83167C4.25965 7.62665 4.25965 7.29424 4.05462 7.08921C3.8496 6.88419 3.51719 6.88419 3.31217 7.08921L3.18684 7.21454C3.30292 6.42344 3.59347 5.66449 4.04131 4.99424C4.6358 4.10453 5.48077 3.41108 6.46936 3.00159C7.45796 2.5921 8.54578 2.48496 9.59527 2.69372C10.6448 2.90247 11.6088 3.41775 12.3654 4.17439C13.1221 4.93103 13.6373 5.89505 13.8461 6.94453C14.0548 7.99402 13.9477 9.08185 13.5382 10.0704C13.1287 11.059 12.4353 11.904 11.5456 12.4985C10.6558 13.093 9.60983 13.4103 8.53978 13.4103C8.24983 13.4103 8.01478 13.6453 8.01478 13.9353C8.01478 14.2252 8.24983 14.4603 8.53978 14.4603C9.8175 14.4603 11.0665 14.0814 12.1289 13.3715C13.1913 12.6617 14.0193 11.6527 14.5083 10.4723C14.9972 9.2918 15.1252 7.99286 14.8759 6.73969C14.6266 5.48652 14.0114 4.33542 13.1079 3.43193C12.2044 2.52845 11.0533 1.91317 9.80011 1.6639ZM8.53978 4.76939C8.24984 4.76939 8.01479 5.00444 8.01479 5.29438V7.75953L5.4399 10.3344C5.23487 10.5394 5.23487 10.8719 5.4399 11.0769C5.64492 11.2819 5.97733 11.2819 6.18235 11.0769L8.91101 8.34822L9.06478 8.19445V7.97699V5.29438C9.06478 5.00444 8.82973 4.76939 8.53978 4.76939Z" fill="currentColor"/>
4
+ </svg>
5
+ </template>
package/icons/home.vue CHANGED
@@ -1,14 +1,14 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
7
- <path d="M2.25 6.75L9 1.5L15.75 6.75V15C15.75 15.3978 15.592 15.7794 15.3107 16.0607C15.0294 16.342 14.6478 16.5 14.25 16.5H3.75C3.35218 16.5 2.97064 16.342 2.68934 16.0607C2.40804 15.7794 2.25 15.3978 2.25 15V6.75Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
- <path d="M6.75 16.5V9H11.25V16.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
9
- </svg>
10
- </template>
11
-
12
- <style scoped>
13
-
14
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <path d="M2.25 6.75L9 1.5L15.75 6.75V15C15.75 15.3978 15.592 15.7794 15.3107 16.0607C15.0294 16.342 14.6478 16.5 14.25 16.5H3.75C3.35218 16.5 2.97064 16.342 2.68934 16.0607C2.40804 15.7794 2.25 15.3978 2.25 15V6.75Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M6.75 16.5V9H11.25V16.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </svg>
10
+ </template>
11
+
12
+ <style scoped>
13
+
14
+ </style>
@@ -1,13 +1,13 @@
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"
4
- d="M12.4782 8.00012C12.4782 7.30377 13.0427 6.73926 13.7391 6.73926C14.4354 6.73926 14.9999 7.30377 14.9999 8.00012C14.9999 8.69648 14.4354 9.26099 13.7391 9.26099C13.0427 9.26099 12.4782 8.69648 12.4782 8.00012Z"
5
- fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd"
7
- d="M6.73909 8.00012C6.73909 7.30377 7.3036 6.73926 7.99996 6.73926C8.69631 6.73926 9.26082 7.30377 9.26082 8.00012C9.26082 8.69648 8.69631 9.26099 7.99996 9.26099C7.3036 9.26099 6.73909 8.69648 6.73909 8.00012Z"
8
- fill="currentColor"/>
9
- <path fill-rule="evenodd" clip-rule="evenodd"
10
- d="M1 8.00012C1 7.30377 1.56451 6.73926 2.26086 6.73926C2.95722 6.73926 3.52173 7.30377 3.52173 8.00012C3.52173 8.69648 2.95722 9.26099 2.26086 9.26099C1.56451 9.26099 1 8.69648 1 8.00012Z"
11
- fill="currentColor"/>
12
- </svg>
13
- </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"
4
+ d="M12.4782 8.00012C12.4782 7.30377 13.0427 6.73926 13.7391 6.73926C14.4354 6.73926 14.9999 7.30377 14.9999 8.00012C14.9999 8.69648 14.4354 9.26099 13.7391 9.26099C13.0427 9.26099 12.4782 8.69648 12.4782 8.00012Z"
5
+ fill="currentColor"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd"
7
+ d="M6.73909 8.00012C6.73909 7.30377 7.3036 6.73926 7.99996 6.73926C8.69631 6.73926 9.26082 7.30377 9.26082 8.00012C9.26082 8.69648 8.69631 9.26099 7.99996 9.26099C7.3036 9.26099 6.73909 8.69648 6.73909 8.00012Z"
8
+ fill="currentColor"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd"
10
+ d="M1 8.00012C1 7.30377 1.56451 6.73926 2.26086 6.73926C2.95722 6.73926 3.52173 7.30377 3.52173 8.00012C3.52173 8.69648 2.95722 9.26099 2.26086 9.26099C1.56451 9.26099 1 8.69648 1 8.00012Z"
11
+ fill="currentColor"/>
12
+ </svg>
13
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <svg width="16" height="13" viewBox="0 0 16 13" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M13.4885 0.565384H1.64235C1.04758 0.565384 0.56543 1.04754 0.56543 1.64231V10.7962C0.56543 11.3909 1.04758 11.8731 1.64235 11.8731H13.4885C14.0833 11.8731 14.5654 11.3909 14.5654 10.7962V1.64231C14.5654 1.04754 14.0833 0.565384 13.4885 0.565384Z" stroke="currentColor" stroke-width="1.13077" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M0.56543 1.91183L6.8762 7.29645C7.06971 7.45763 7.31359 7.5459 7.56543 7.5459C7.81727 7.5459 8.06115 7.45763 8.25466 7.29645L14.5654 1.91183" stroke="currentColor" stroke-width="1.13077" stroke-linecap="round" stroke-linejoin="round"/>
5
- </svg>
6
- </template>
1
+ <template>
2
+ <svg width="16" height="13" viewBox="0 0 16 13" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M13.4885 0.565384H1.64235C1.04758 0.565384 0.56543 1.04754 0.56543 1.64231V10.7962C0.56543 11.3909 1.04758 11.8731 1.64235 11.8731H13.4885C14.0833 11.8731 14.5654 11.3909 14.5654 10.7962V1.64231C14.5654 1.04754 14.0833 0.565384 13.4885 0.565384Z" stroke="currentColor" stroke-width="1.13077" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M0.56543 1.91183L6.8762 7.29645C7.06971 7.45763 7.31359 7.5459 7.56543 7.5459C7.81727 7.5459 8.06115 7.45763 8.25466 7.29645L14.5654 1.91183" stroke="currentColor" stroke-width="1.13077" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
6
+ </template>
package/icons/hummer.vue CHANGED
@@ -1,16 +1,16 @@
1
- <template>
2
- <svg
3
- width="24"
4
- height="24"
5
- viewBox="0 0 24 24"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <path
10
- fill-rule="evenodd"
11
- clip-rule="evenodd"
12
- d="M8.53745 8.80032C8.27434 9.06333 8.27434 9.48976 8.53745 9.75277L10.7932 12.0077C11.0564 12.2707 11.483 12.2707 11.7461 12.0077L16.8518 6.90393C17.1149 6.64092 17.1149 6.21449 16.8518 5.95148L14.596 3.69657C14.3329 3.43356 13.9063 3.43356 13.6432 3.69657L8.53745 8.80032ZM7.47617 10.8136C6.62693 9.96473 6.62693 8.58837 7.47617 7.73946L12.5819 2.63571C13.4312 1.7868 14.8081 1.7868 15.6573 2.63571L17.9131 4.89062C18.7623 5.73953 18.7623 7.11589 17.9131 7.9648L15.8984 9.9787L21.7803 15.8583C22.0733 16.1512 22.0732 16.6261 21.7801 16.9189C21.4869 17.2118 21.0116 17.2117 20.7186 16.9187L14.8371 11.0396L12.8073 13.0685C11.9581 13.9175 10.5812 13.9175 9.73197 13.0685L7.47617 10.8136ZM4.17483 16.9413C3.7603 16.9413 3.42425 17.2771 3.42425 17.6913V20.5004H2.75058C2.33605 20.5004 2 20.8362 2 21.2504C2 21.6646 2.33605 22.0004 2.75058 22.0004H13.432C13.8465 22.0004 14.1825 21.6646 14.1825 21.2504C14.1825 20.8362 13.8465 20.5004 13.432 20.5004H12.7584V17.6913C12.7584 17.2771 12.4224 16.9413 12.0078 16.9413H4.17483ZM11.2573 20.5004V18.4413H4.92541V20.5004H11.2573Z"
13
- fill="currentColor"
14
- />
15
- </svg>
16
- </template>
1
+ <template>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M8.53745 8.80032C8.27434 9.06333 8.27434 9.48976 8.53745 9.75277L10.7932 12.0077C11.0564 12.2707 11.483 12.2707 11.7461 12.0077L16.8518 6.90393C17.1149 6.64092 17.1149 6.21449 16.8518 5.95148L14.596 3.69657C14.3329 3.43356 13.9063 3.43356 13.6432 3.69657L8.53745 8.80032ZM7.47617 10.8136C6.62693 9.96473 6.62693 8.58837 7.47617 7.73946L12.5819 2.63571C13.4312 1.7868 14.8081 1.7868 15.6573 2.63571L17.9131 4.89062C18.7623 5.73953 18.7623 7.11589 17.9131 7.9648L15.8984 9.9787L21.7803 15.8583C22.0733 16.1512 22.0732 16.6261 21.7801 16.9189C21.4869 17.2118 21.0116 17.2117 20.7186 16.9187L14.8371 11.0396L12.8073 13.0685C11.9581 13.9175 10.5812 13.9175 9.73197 13.0685L7.47617 10.8136ZM4.17483 16.9413C3.7603 16.9413 3.42425 17.2771 3.42425 17.6913V20.5004H2.75058C2.33605 20.5004 2 20.8362 2 21.2504C2 21.6646 2.33605 22.0004 2.75058 22.0004H13.432C13.8465 22.0004 14.1825 21.6646 14.1825 21.2504C14.1825 20.8362 13.8465 20.5004 13.432 20.5004H12.7584V17.6913C12.7584 17.2771 12.4224 16.9413 12.0078 16.9413H4.17483ZM11.2573 20.5004V18.4413H4.92541V20.5004H11.2573Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
package/icons/id.vue CHANGED
@@ -1,7 +1,7 @@
1
- <template>
2
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M1.6665 4.71961C1.6665 3.9797 2.26632 3.37988 3.00623 3.37988H16.9934C17.7334 3.37988 18.3332 3.9797 18.3332 4.71961V15.2809C18.3332 16.0208 17.7334 16.6206 16.9934 16.6206H3.00623C2.26632 16.6206 1.6665 16.0208 1.6665 15.2809V4.71961ZM3.00623 4.62988C2.95668 4.62988 2.9165 4.67005 2.9165 4.71961V15.2809C2.9165 15.3305 2.95668 15.3706 3.00623 15.3706H16.9934C17.043 15.3706 17.0832 15.3305 17.0832 15.2809V4.71961C17.0832 4.67005 17.043 4.62988 16.9934 4.62988H3.00623ZM11.9671 8.5606C11.9671 8.21542 12.2469 7.9356 12.5921 7.9356H15.1446C15.4898 7.9356 15.7696 8.21542 15.7696 8.5606C15.7696 8.90578 15.4898 9.1856 15.1446 9.1856H12.5921C12.2469 9.1856 11.9671 8.90578 11.9671 8.5606ZM12.5921 10.4651C12.2469 10.4651 11.9671 10.7449 11.9671 11.0901C11.9671 11.4353 12.2469 11.7151 12.5921 11.7151H15.1446C15.4898 11.7151 15.7696 11.4353 15.7696 11.0901C15.7696 10.7449 15.4898 10.4651 15.1446 10.4651H12.5921ZM7.62069 7.04543C6.80167 7.04543 6.13772 7.70937 6.13772 8.52839C6.13772 9.34741 6.80167 10.0114 7.62069 10.0114C7.8289 10.0114 8.02555 9.96882 8.20369 9.89254C8.73404 9.66547 9.10366 9.13938 9.10366 8.52839C9.10366 7.70937 8.43971 7.04543 7.62069 7.04543ZM4.88772 8.52839C4.88772 7.01902 6.11131 5.79543 7.62069 5.79543C9.13007 5.79543 10.3537 7.01902 10.3537 8.52839C10.3537 9.64592 9.68303 10.6054 8.7247 11.029C9.10094 11.1401 9.46277 11.3076 9.80036 11.5273C10.4578 11.9553 10.9988 12.565 11.3796 13.2893C11.5403 13.5948 11.4228 13.9727 11.1173 14.1333C10.8118 14.294 10.4339 14.1765 10.2732 13.871C9.98413 13.3211 9.58362 12.8777 9.11845 12.575C8.65428 12.2728 8.13902 12.1189 7.62131 12.1189C7.1036 12.1189 6.58833 12.2728 6.12417 12.575C5.65899 12.8777 5.25848 13.3211 4.96939 13.871C4.80876 14.1765 4.43087 14.294 4.12534 14.1333C3.81981 13.9727 3.70235 13.5948 3.86299 13.2893C4.2438 12.565 4.78481 11.9553 5.44225 11.5273C5.77955 11.3078 6.14105 11.1404 6.51694 11.0293C5.55736 10.6052 4.88772 9.64499 4.88772 8.52839Z"
4
- fill="currentColor"
5
- />
6
- </svg>
7
- </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 fill-rule="evenodd" clip-rule="evenodd" d="M1.6665 4.71961C1.6665 3.9797 2.26632 3.37988 3.00623 3.37988H16.9934C17.7334 3.37988 18.3332 3.9797 18.3332 4.71961V15.2809C18.3332 16.0208 17.7334 16.6206 16.9934 16.6206H3.00623C2.26632 16.6206 1.6665 16.0208 1.6665 15.2809V4.71961ZM3.00623 4.62988C2.95668 4.62988 2.9165 4.67005 2.9165 4.71961V15.2809C2.9165 15.3305 2.95668 15.3706 3.00623 15.3706H16.9934C17.043 15.3706 17.0832 15.3305 17.0832 15.2809V4.71961C17.0832 4.67005 17.043 4.62988 16.9934 4.62988H3.00623ZM11.9671 8.5606C11.9671 8.21542 12.2469 7.9356 12.5921 7.9356H15.1446C15.4898 7.9356 15.7696 8.21542 15.7696 8.5606C15.7696 8.90578 15.4898 9.1856 15.1446 9.1856H12.5921C12.2469 9.1856 11.9671 8.90578 11.9671 8.5606ZM12.5921 10.4651C12.2469 10.4651 11.9671 10.7449 11.9671 11.0901C11.9671 11.4353 12.2469 11.7151 12.5921 11.7151H15.1446C15.4898 11.7151 15.7696 11.4353 15.7696 11.0901C15.7696 10.7449 15.4898 10.4651 15.1446 10.4651H12.5921ZM7.62069 7.04543C6.80167 7.04543 6.13772 7.70937 6.13772 8.52839C6.13772 9.34741 6.80167 10.0114 7.62069 10.0114C7.8289 10.0114 8.02555 9.96882 8.20369 9.89254C8.73404 9.66547 9.10366 9.13938 9.10366 8.52839C9.10366 7.70937 8.43971 7.04543 7.62069 7.04543ZM4.88772 8.52839C4.88772 7.01902 6.11131 5.79543 7.62069 5.79543C9.13007 5.79543 10.3537 7.01902 10.3537 8.52839C10.3537 9.64592 9.68303 10.6054 8.7247 11.029C9.10094 11.1401 9.46277 11.3076 9.80036 11.5273C10.4578 11.9553 10.9988 12.565 11.3796 13.2893C11.5403 13.5948 11.4228 13.9727 11.1173 14.1333C10.8118 14.294 10.4339 14.1765 10.2732 13.871C9.98413 13.3211 9.58362 12.8777 9.11845 12.575C8.65428 12.2728 8.13902 12.1189 7.62131 12.1189C7.1036 12.1189 6.58833 12.2728 6.12417 12.575C5.65899 12.8777 5.25848 13.3211 4.96939 13.871C4.80876 14.1765 4.43087 14.294 4.12534 14.1333C3.81981 13.9727 3.70235 13.5948 3.86299 13.2893C4.2438 12.565 4.78481 11.9553 5.44225 11.5273C5.77955 11.3078 6.14105 11.1404 6.51694 11.0293C5.55736 10.6052 4.88772 9.64499 4.88772 8.52839Z"
4
+ fill="currentColor"
5
+ />
6
+ </svg>
7
+ </template>
@@ -1,46 +1,46 @@
1
- <template>
2
- <svg
3
- width="24"
4
- height="24"
5
- viewBox="0 0 24 24"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <circle
10
- cx="5"
11
- cy="6"
12
- r="1.5"
13
- fill="currentColor"
14
- />
15
- <circle
16
- cx="5"
17
- cy="12"
18
- r="1.5"
19
- fill="currentColor"
20
- />
21
- <circle
22
- cx="5"
23
- cy="18"
24
- r="1.5"
25
- fill="currentColor"
26
- />
27
- <path
28
- d="M9 6H20"
29
- stroke="currentColor"
30
- stroke-width="2"
31
- stroke-linecap="round"
32
- />
33
- <path
34
- d="M9 12H20"
35
- stroke="currentColor"
36
- stroke-width="2"
37
- stroke-linecap="round"
38
- />
39
- <path
40
- d="M9 18H20"
41
- stroke="currentColor"
42
- stroke-width="2"
43
- stroke-linecap="round"
44
- />
45
- </svg>
46
- </template>
1
+ <template>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <circle
10
+ cx="5"
11
+ cy="6"
12
+ r="1.5"
13
+ fill="currentColor"
14
+ />
15
+ <circle
16
+ cx="5"
17
+ cy="12"
18
+ r="1.5"
19
+ fill="currentColor"
20
+ />
21
+ <circle
22
+ cx="5"
23
+ cy="18"
24
+ r="1.5"
25
+ fill="currentColor"
26
+ />
27
+ <path
28
+ d="M9 6H20"
29
+ stroke="currentColor"
30
+ stroke-width="2"
31
+ stroke-linecap="round"
32
+ />
33
+ <path
34
+ d="M9 12H20"
35
+ stroke="currentColor"
36
+ stroke-width="2"
37
+ stroke-linecap="round"
38
+ />
39
+ <path
40
+ d="M9 18H20"
41
+ stroke="currentColor"
42
+ stroke-width="2"
43
+ stroke-linecap="round"
44
+ />
45
+ </svg>
46
+ </template>
@@ -1,29 +1,29 @@
1
- <template>
2
- <svg
3
- width="24"
4
- height="24"
5
- viewBox="0 0 24 24"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg"
8
- >
9
- <rect
10
- x="3"
11
- y="4"
12
- width="18"
13
- height="16"
14
- rx="2"
15
- stroke="currentColor"
16
- stroke-width="2"
17
- />
18
- <path
19
- d="M3 9.5H21"
20
- stroke="currentColor"
21
- stroke-width="2"
22
- />
23
- <path
24
- d="M10 9.5V20"
25
- stroke="currentColor"
26
- stroke-width="2"
27
- />
28
- </svg>
29
- </template>
1
+ <template>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <rect
10
+ x="3"
11
+ y="4"
12
+ width="18"
13
+ height="16"
14
+ rx="2"
15
+ stroke="currentColor"
16
+ stroke-width="2"
17
+ />
18
+ <path
19
+ d="M3 9.5H21"
20
+ stroke="currentColor"
21
+ stroke-width="2"
22
+ />
23
+ <path
24
+ d="M10 9.5V20"
25
+ stroke="currentColor"
26
+ stroke-width="2"
27
+ />
28
+ </svg>
29
+ </template>
@@ -1,29 +1,29 @@
1
- <script setup lang="ts">
2
- </script>
3
-
4
- <template>
5
- <svg
6
- width="1em"
7
- height="1em"
8
- viewBox="0 0 20 20"
9
- fill="none"
10
- xmlns="http://www.w3.org/2000/svg"
11
- >
12
- <path
13
- d="M11.9401 13.5288L11.8136 14.0428C11.4341 14.1917 11.131 14.3051 10.9053 14.383C10.6793 14.4611 10.4168 14.5 10.1176 14.5C9.6582 14.5 9.30087 14.3881 9.04602 14.1659C8.79117 13.9428 8.6637 13.6601 8.6637 13.3171C8.6637 13.1843 8.67295 13.0478 8.69218 12.9086C8.71157 12.7693 8.7424 12.6124 8.7846 12.4371L9.25884 10.7684C9.30104 10.6086 9.3369 10.4572 9.36562 10.314C9.39475 10.1717 9.40879 10.0408 9.40879 9.92294C9.40879 9.70983 9.3644 9.56077 9.27605 9.47696C9.18769 9.39339 9.01908 9.35097 8.76877 9.35097C8.64618 9.35097 8.52017 9.37049 8.39173 9.40824C8.26272 9.44615 8.15245 9.48277 8.05988 9.51681L8.18669 9.00235C8.49737 8.87659 8.79433 8.76891 9.07839 8.67954C9.36246 8.58992 9.63086 8.54507 9.88474 8.54507C10.341 8.54507 10.693 8.65469 10.9403 8.87393C11.1875 9.09333 11.3111 9.37775 11.3111 9.72822C11.3111 9.80074 11.3029 9.9285 11.2855 10.1111C11.2685 10.2941 11.2367 10.4618 11.1905 10.6144L10.7183 12.2764C10.6796 12.4099 10.6448 12.5625 10.6145 12.7342C10.5833 12.9048 10.5683 13.0352 10.5683 13.1226C10.5683 13.3433 10.6178 13.494 10.717 13.5741C10.817 13.6542 10.9892 13.694 11.2337 13.694C11.3485 13.694 11.4792 13.6738 11.6243 13.634C11.7691 13.5943 11.8746 13.5593 11.9401 13.5288Z"
14
- fill="currentColor"
15
- />
16
- <path
17
- d="M11.5085 7.20803C11.7039 7.01413 11.8011 6.77831 11.8011 6.50219C11.8011 6.22669 11.704 5.9904 11.5085 5.79404C11.3137 5.59822 11.0789 5.5 10.8043 5.5C10.5288 5.5 10.2931 5.59799 10.0964 5.79404C9.89965 5.9904 9.80109 6.22661 9.80109 6.50219C9.80109 6.77831 9.89965 7.01406 10.0964 7.20803C10.2934 7.40263 10.5288 7.5 10.8043 7.5C11.0789 7.5 11.3137 7.40263 11.5085 7.20803Z"
18
- fill="currentColor"
19
- />
20
- <path
21
- fill-rule="evenodd"
22
- clip-rule="evenodd"
23
- d="M10 1.5C5.30558 1.5 1.5 5.30558 1.5 10C1.5 14.6944 5.30558 18.5 10 18.5C14.6944 18.5 18.5 14.6944 18.5 10C18.5 5.30558 14.6944 1.5 10 1.5ZM0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10Z"
24
- fill="currentColor"
25
- />
26
- </svg>
27
- </template>
28
-
29
- <style scoped></style>
1
+ <script setup lang="ts">
2
+ </script>
3
+
4
+ <template>
5
+ <svg
6
+ width="1em"
7
+ height="1em"
8
+ viewBox="0 0 20 20"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ >
12
+ <path
13
+ d="M11.9401 13.5288L11.8136 14.0428C11.4341 14.1917 11.131 14.3051 10.9053 14.383C10.6793 14.4611 10.4168 14.5 10.1176 14.5C9.6582 14.5 9.30087 14.3881 9.04602 14.1659C8.79117 13.9428 8.6637 13.6601 8.6637 13.3171C8.6637 13.1843 8.67295 13.0478 8.69218 12.9086C8.71157 12.7693 8.7424 12.6124 8.7846 12.4371L9.25884 10.7684C9.30104 10.6086 9.3369 10.4572 9.36562 10.314C9.39475 10.1717 9.40879 10.0408 9.40879 9.92294C9.40879 9.70983 9.3644 9.56077 9.27605 9.47696C9.18769 9.39339 9.01908 9.35097 8.76877 9.35097C8.64618 9.35097 8.52017 9.37049 8.39173 9.40824C8.26272 9.44615 8.15245 9.48277 8.05988 9.51681L8.18669 9.00235C8.49737 8.87659 8.79433 8.76891 9.07839 8.67954C9.36246 8.58992 9.63086 8.54507 9.88474 8.54507C10.341 8.54507 10.693 8.65469 10.9403 8.87393C11.1875 9.09333 11.3111 9.37775 11.3111 9.72822C11.3111 9.80074 11.3029 9.9285 11.2855 10.1111C11.2685 10.2941 11.2367 10.4618 11.1905 10.6144L10.7183 12.2764C10.6796 12.4099 10.6448 12.5625 10.6145 12.7342C10.5833 12.9048 10.5683 13.0352 10.5683 13.1226C10.5683 13.3433 10.6178 13.494 10.717 13.5741C10.817 13.6542 10.9892 13.694 11.2337 13.694C11.3485 13.694 11.4792 13.6738 11.6243 13.634C11.7691 13.5943 11.8746 13.5593 11.9401 13.5288Z"
14
+ fill="currentColor"
15
+ />
16
+ <path
17
+ d="M11.5085 7.20803C11.7039 7.01413 11.8011 6.77831 11.8011 6.50219C11.8011 6.22669 11.704 5.9904 11.5085 5.79404C11.3137 5.59822 11.0789 5.5 10.8043 5.5C10.5288 5.5 10.2931 5.59799 10.0964 5.79404C9.89965 5.9904 9.80109 6.22661 9.80109 6.50219C9.80109 6.77831 9.89965 7.01406 10.0964 7.20803C10.2934 7.40263 10.5288 7.5 10.8043 7.5C11.0789 7.5 11.3137 7.40263 11.5085 7.20803Z"
18
+ fill="currentColor"
19
+ />
20
+ <path
21
+ fill-rule="evenodd"
22
+ clip-rule="evenodd"
23
+ d="M10 1.5C5.30558 1.5 1.5 5.30558 1.5 10C1.5 14.6944 5.30558 18.5 10 18.5C14.6944 18.5 18.5 14.6944 18.5 10C18.5 5.30558 14.6944 1.5 10 1.5ZM0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10Z"
24
+ fill="currentColor"
25
+ />
26
+ </svg>
27
+ </template>
28
+
29
+ <style scoped></style>
package/icons/invoice.vue CHANGED
@@ -1,8 +1,8 @@
1
- <template>
2
- <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <!-- осознанно константный: duotone #566573 + white — фиксированная пара цветов иконки -->
4
- <path d="M4.6665 18.6458V8.05426C4.6665 5.20025 4.6665 3.77325 5.54518 2.88663C6.42386 2 7.83808 2 10.6665 2H14.6665C17.4949 2 18.9091 2 19.7878 2.88663C20.6665 3.77325 20.6665 5.20025 20.6665 8.05426V18.6458C20.6665 20.1575 20.6665 20.9133 20.2046 21.2108C19.4496 21.6971 18.2826 20.6774 17.6956 20.3073C17.2107 20.0014 16.9682 19.8485 16.699 19.8397C16.4082 19.8301 16.1614 19.9768 15.6374 20.3073L13.7265 21.5124C13.211 21.8374 12.9533 22 12.6665 22C12.3797 22 12.122 21.8374 11.6065 21.5124L9.69563 20.3073C9.21065 20.0014 8.96816 19.8485 8.69904 19.8397C8.40822 19.8301 8.16143 19.9768 7.63738 20.3073C7.05045 20.6774 5.88338 21.6971 5.12846 21.2108C4.6665 20.9133 4.6665 20.1575 4.6665 18.6458Z" fill="#566573" stroke="#566573" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M11.6665 11H8.6665" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
- <path d="M14.6665 7L8.6665 7" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
- </svg>
8
- </template>
1
+ <template>
2
+ <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <!-- осознанно константный: duotone #566573 + white — фиксированная пара цветов иконки -->
4
+ <path d="M4.6665 18.6458V8.05426C4.6665 5.20025 4.6665 3.77325 5.54518 2.88663C6.42386 2 7.83808 2 10.6665 2H14.6665C17.4949 2 18.9091 2 19.7878 2.88663C20.6665 3.77325 20.6665 5.20025 20.6665 8.05426V18.6458C20.6665 20.1575 20.6665 20.9133 20.2046 21.2108C19.4496 21.6971 18.2826 20.6774 17.6956 20.3073C17.2107 20.0014 16.9682 19.8485 16.699 19.8397C16.4082 19.8301 16.1614 19.9768 15.6374 20.3073L13.7265 21.5124C13.211 21.8374 12.9533 22 12.6665 22C12.3797 22 12.122 21.8374 11.6065 21.5124L9.69563 20.3073C9.21065 20.0014 8.96816 19.8485 8.69904 19.8397C8.40822 19.8301 8.16143 19.9768 7.63738 20.3073C7.05045 20.6774 5.88338 21.6971 5.12846 21.2108C4.6665 20.9133 4.6665 20.1575 4.6665 18.6458Z" fill="#566573" stroke="#566573" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M11.6665 11H8.6665" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M14.6665 7L8.6665 7" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </svg>
8
+ </template>
package/icons/judge.vue CHANGED
@@ -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="M30.4152 14.5862L28.4152 12.5862C28.076 12.2474 27.6264 12.0417 27.1482 12.0066C26.6701 11.9715 26.1952 12.1093 25.8102 12.395L19.6052 6.18997C19.891 5.80507 20.029 5.33031 19.9942 4.85217C19.9593 4.37403 19.7538 3.92433 19.4152 3.58497L17.4152 1.58497C17.2295 1.39921 17.009 1.25185 16.7663 1.15131C16.5236 1.05077 16.2635 0.999023 16.0008 0.999023C15.7381 0.999023 15.478 1.05077 15.2353 1.15131C14.9927 1.25185 14.7722 1.39921 14.5864 1.58497L6.58644 9.58497C6.40068 9.77069 6.25332 9.99119 6.15278 10.2339C6.05224 10.4766 6.00049 10.7367 6.00049 10.9993C6.00049 11.262 6.05224 11.5221 6.15278 11.7648C6.25332 12.0075 6.40068 12.228 6.58644 12.4137L8.58644 14.4137C8.92573 14.752 9.37519 14.9573 9.85304 14.9921C10.3309 15.027 10.8054 14.8892 11.1902 14.6037L12.0864 15.5L3.91394 23.6725C3.37099 24.2663 3.07801 25.0466 3.096 25.8511C3.11398 26.6555 3.44156 27.422 4.01051 27.9909C4.57946 28.5599 5.34594 28.8874 6.15035 28.9054C6.95477 28.9234 7.73513 28.6304 8.32894 28.0875L16.5002 19.915L17.3964 20.81C17.1106 21.1949 16.9726 21.6696 17.0075 22.1478C17.0424 22.6259 17.2478 23.0756 17.5864 23.415L19.5864 25.415C19.7722 25.6007 19.9927 25.7481 20.2353 25.8486C20.478 25.9492 20.7381 26.0009 21.0008 26.0009C21.2635 26.0009 21.5236 25.9492 21.7663 25.8486C22.009 25.7481 22.2295 25.6007 22.4152 25.415L30.4152 17.415C30.601 17.2292 30.7483 17.0088 30.8489 16.7661C30.9494 16.5234 31.0011 16.2633 31.0011 16.0006C31.0011 15.7379 30.9494 15.4778 30.8489 15.2351C30.7483 14.9924 30.601 14.7719 30.4152 14.5862ZM10.0002 13L8.00019 11L16.0002 2.99997L18.0002 4.99997L10.0002 13ZM6.91519 26.6725C6.70441 26.882 6.41928 26.9996 6.12207 26.9996C5.82486 26.9996 5.53972 26.882 5.32894 26.6725C5.11979 26.4617 5.00242 26.1769 5.00242 25.88C5.00242 25.5831 5.11979 25.2982 5.32894 25.0875L13.5002 16.915L15.0864 18.5L6.91519 26.6725ZM12.6252 13.2075L18.2077 7.62497L24.3752 13.7925L18.7939 19.375L12.6252 13.2075ZM21.0002 24L19.0002 22L19.5002 21.5L26.5002 14.5L27.0002 14L29.0002 16L21.0002 24Z"
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="M30.4152 14.5862L28.4152 12.5862C28.076 12.2474 27.6264 12.0417 27.1482 12.0066C26.6701 11.9715 26.1952 12.1093 25.8102 12.395L19.6052 6.18997C19.891 5.80507 20.029 5.33031 19.9942 4.85217C19.9593 4.37403 19.7538 3.92433 19.4152 3.58497L17.4152 1.58497C17.2295 1.39921 17.009 1.25185 16.7663 1.15131C16.5236 1.05077 16.2635 0.999023 16.0008 0.999023C15.7381 0.999023 15.478 1.05077 15.2353 1.15131C14.9927 1.25185 14.7722 1.39921 14.5864 1.58497L6.58644 9.58497C6.40068 9.77069 6.25332 9.99119 6.15278 10.2339C6.05224 10.4766 6.00049 10.7367 6.00049 10.9993C6.00049 11.262 6.05224 11.5221 6.15278 11.7648C6.25332 12.0075 6.40068 12.228 6.58644 12.4137L8.58644 14.4137C8.92573 14.752 9.37519 14.9573 9.85304 14.9921C10.3309 15.027 10.8054 14.8892 11.1902 14.6037L12.0864 15.5L3.91394 23.6725C3.37099 24.2663 3.07801 25.0466 3.096 25.8511C3.11398 26.6555 3.44156 27.422 4.01051 27.9909C4.57946 28.5599 5.34594 28.8874 6.15035 28.9054C6.95477 28.9234 7.73513 28.6304 8.32894 28.0875L16.5002 19.915L17.3964 20.81C17.1106 21.1949 16.9726 21.6696 17.0075 22.1478C17.0424 22.6259 17.2478 23.0756 17.5864 23.415L19.5864 25.415C19.7722 25.6007 19.9927 25.7481 20.2353 25.8486C20.478 25.9492 20.7381 26.0009 21.0008 26.0009C21.2635 26.0009 21.5236 25.9492 21.7663 25.8486C22.009 25.7481 22.2295 25.6007 22.4152 25.415L30.4152 17.415C30.601 17.2292 30.7483 17.0088 30.8489 16.7661C30.9494 16.5234 31.0011 16.2633 31.0011 16.0006C31.0011 15.7379 30.9494 15.4778 30.8489 15.2351C30.7483 14.9924 30.601 14.7719 30.4152 14.5862ZM10.0002 13L8.00019 11L16.0002 2.99997L18.0002 4.99997L10.0002 13ZM6.91519 26.6725C6.70441 26.882 6.41928 26.9996 6.12207 26.9996C5.82486 26.9996 5.53972 26.882 5.32894 26.6725C5.11979 26.4617 5.00242 26.1769 5.00242 25.88C5.00242 25.5831 5.11979 25.2982 5.32894 25.0875L13.5002 16.915L15.0864 18.5L6.91519 26.6725ZM12.6252 13.2075L18.2077 7.62497L24.3752 13.7925L18.7939 19.375L12.6252 13.2075ZM21.0002 24L19.0002 22L19.5002 21.5L26.5002 14.5L27.0002 14L29.0002 16L21.0002 24Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>
@@ -1,13 +1,13 @@
1
- <script setup lang="ts">
2
-
3
- </script>
4
-
5
- <template>
6
- <svg width="51" height="51" viewBox="0 0 51 51" fill="none" xmlns="http://www.w3.org/2000/svg">
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M9.49674 0C9.66206 0 9.79716 0.129346 9.80628 0.29232L9.80677 0.309906V2.82853C9.80677 2.99378 9.67738 3.12883 9.51434 3.13794L9.49674 3.13844L3.13881 3.13838L3.13882 9.49584C3.13882 9.65519 3.0185 9.78646 2.86372 9.8038L2.84638 9.80526L2.82879 9.80575H0.310031C0.14471 9.80575 0.00961136 9.6764 0.000490783 9.51343L0 9.49584V2.83918C0 1.30673 1.21545 0.0545687 2.74059 0.00171709L2.7869 0.000483577L2.8395 0H9.49674ZM23.2957 6.66658C23.5537 6.66658 23.7642 6.87031 23.7748 7.12563L23.7752 7.14589V23.2954C23.7752 23.5534 23.5714 23.7637 23.316 23.7743L23.2957 23.7747H7.14495C6.88692 23.7747 6.6765 23.571 6.66588 23.3157L6.66546 23.2954V9.60849C6.66546 7.9934 7.92636 6.69282 9.52191 6.66697L9.57036 6.66658H23.2957ZM23.2957 26.3513C23.5442 26.3513 23.7499 26.5407 23.7732 26.7882L23.7747 26.809L23.7752 26.8306V29.4898L9.80423 29.4898V40.321H20.6363L20.6364 32.0662H23.7752V42.9802C23.7752 43.2285 23.5858 43.4342 23.3382 43.4575L23.3174 43.459L23.2957 43.4595H9.57036C7.98586 43.4595 6.71679 42.2024 6.66696 40.6133L6.66582 40.565L6.66546 40.5176V26.8306C6.66546 26.5823 6.85487 26.3767 7.10252 26.3534L7.12328 26.3519L7.14495 26.3513H23.2957ZM35.0492 40.3227L35.0492 31.7504H31.9104L31.9104 37.4652L26.3538 37.4652V42.9818L26.3542 43.0021C26.3648 43.2574 26.5752 43.4611 26.8333 43.4611H29.4926L29.4926 40.6037H34.9268L34.9268 43.4611H40.5586L40.6071 43.4607C42.2026 43.4349 43.4635 42.1343 43.4635 40.5192V34.6078H37.467V37.7463L40.3246 37.7462V40.3227H35.0492ZM2.82879 40.321C2.99411 40.321 3.12921 40.4503 3.13833 40.6133L3.13882 40.6309L3.13881 46.9883L9.33798 46.9884C9.4974 46.9884 9.62871 47.1086 9.64606 47.2634L9.64752 47.2807L9.64801 47.2983V49.8169C9.64801 49.9822 9.51861 50.1172 9.35557 50.1263L9.33798 50.1268H2.8395C1.30686 50.1268 0.0545731 48.9115 0.00171723 47.3865L0.000483618 47.3402L0 47.2876V40.6309C0 40.4657 0.129398 40.3306 0.292438 40.3215L0.310031 40.321H2.82879ZM49.8224 40.321C49.9877 40.321 50.1228 40.4503 50.1319 40.6133L50.1324 40.6309V47.2876C50.1324 48.8201 48.917 50.0722 47.3918 50.1251L47.3455 50.1263L47.2929 50.1268H40.6357C40.4704 50.1268 40.3353 49.9975 40.3261 49.8345L40.3256 49.8169V47.2983C40.3256 47.133 40.455 46.998 40.6181 46.9888L40.6357 46.9884L46.9935 46.9883L46.9936 40.6309C46.9936 40.4716 47.1139 40.3403 47.2687 40.3229L47.286 40.3215L47.3036 40.321H49.8224ZM18.5411 31.5906V38.2213H11.9096V31.5906H18.5411ZM34.8904 29.4898V26.3513H26.8333L26.813 26.3518C26.5576 26.3624 26.3538 26.5727 26.3538 26.8306V34.8872H29.4926L29.4926 29.4898L34.8904 29.4898ZM43.464 26.8104C43.4534 26.5551 43.2429 26.3513 42.9849 26.3513H40.3256L40.3255 29.2088L37.4679 29.2088V32.3473H40.6067L40.6067 29.4898L43.4644 29.4898V26.8306L43.464 26.8104ZM43.462 9.51281C43.4122 7.92367 42.1431 6.66658 40.5586 6.66658H26.8333L26.8116 6.6671L26.7908 6.66862C26.5432 6.69192 26.3538 6.89753 26.3538 7.14589V23.2954L26.3543 23.3171L26.3558 23.3379C26.3791 23.5854 26.5848 23.7747 26.8333 23.7747L29.4926 23.7747L29.4926 9.80496H40.3246V20.6362L37.7845 20.6363V23.7747L42.984 23.7747L43.0057 23.7742L43.0265 23.7727C43.2741 23.7494 43.4635 23.5438 43.4635 23.2954V9.60849L43.4632 9.56106L43.462 9.51281ZM35.2072 20.6362V23.7747H32.0684V20.6362H35.2072ZM9.80642 9.80488H20.6385V20.6361H9.80642V9.80488ZM18.5411 11.9051V18.5359H11.9096V11.9051H18.5411ZM38.2294 18.5359V11.9051H31.5979V18.5359H38.2294ZM50.1307 2.74029C50.0778 1.21533 48.8256 0 47.2929 0H40.6357L40.6181 0.000490585C40.455 0.00960747 40.3256 0.144652 40.3256 0.309906V2.82853L40.3261 2.84612L40.3276 2.86344C40.3449 3.01816 40.4763 3.13844 40.6357 3.13844L46.9935 3.13838L46.9936 9.49584L46.9941 9.51343C47.0032 9.6764 47.1383 9.80575 47.3036 9.80575H49.8224L49.84 9.80526C50.003 9.79614 50.1324 9.6611 50.1324 9.49584V2.83918L50.1319 2.78659L50.1307 2.74029Z" fill="#F14635"></path>
8
- </svg>
9
- </template>
10
-
11
- <style scoped>
12
-
13
- </style>
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg width="51" height="51" viewBox="0 0 51 51" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.49674 0C9.66206 0 9.79716 0.129346 9.80628 0.29232L9.80677 0.309906V2.82853C9.80677 2.99378 9.67738 3.12883 9.51434 3.13794L9.49674 3.13844L3.13881 3.13838L3.13882 9.49584C3.13882 9.65519 3.0185 9.78646 2.86372 9.8038L2.84638 9.80526L2.82879 9.80575H0.310031C0.14471 9.80575 0.00961136 9.6764 0.000490783 9.51343L0 9.49584V2.83918C0 1.30673 1.21545 0.0545687 2.74059 0.00171709L2.7869 0.000483577L2.8395 0H9.49674ZM23.2957 6.66658C23.5537 6.66658 23.7642 6.87031 23.7748 7.12563L23.7752 7.14589V23.2954C23.7752 23.5534 23.5714 23.7637 23.316 23.7743L23.2957 23.7747H7.14495C6.88692 23.7747 6.6765 23.571 6.66588 23.3157L6.66546 23.2954V9.60849C6.66546 7.9934 7.92636 6.69282 9.52191 6.66697L9.57036 6.66658H23.2957ZM23.2957 26.3513C23.5442 26.3513 23.7499 26.5407 23.7732 26.7882L23.7747 26.809L23.7752 26.8306V29.4898L9.80423 29.4898V40.321H20.6363L20.6364 32.0662H23.7752V42.9802C23.7752 43.2285 23.5858 43.4342 23.3382 43.4575L23.3174 43.459L23.2957 43.4595H9.57036C7.98586 43.4595 6.71679 42.2024 6.66696 40.6133L6.66582 40.565L6.66546 40.5176V26.8306C6.66546 26.5823 6.85487 26.3767 7.10252 26.3534L7.12328 26.3519L7.14495 26.3513H23.2957ZM35.0492 40.3227L35.0492 31.7504H31.9104L31.9104 37.4652L26.3538 37.4652V42.9818L26.3542 43.0021C26.3648 43.2574 26.5752 43.4611 26.8333 43.4611H29.4926L29.4926 40.6037H34.9268L34.9268 43.4611H40.5586L40.6071 43.4607C42.2026 43.4349 43.4635 42.1343 43.4635 40.5192V34.6078H37.467V37.7463L40.3246 37.7462V40.3227H35.0492ZM2.82879 40.321C2.99411 40.321 3.12921 40.4503 3.13833 40.6133L3.13882 40.6309L3.13881 46.9883L9.33798 46.9884C9.4974 46.9884 9.62871 47.1086 9.64606 47.2634L9.64752 47.2807L9.64801 47.2983V49.8169C9.64801 49.9822 9.51861 50.1172 9.35557 50.1263L9.33798 50.1268H2.8395C1.30686 50.1268 0.0545731 48.9115 0.00171723 47.3865L0.000483618 47.3402L0 47.2876V40.6309C0 40.4657 0.129398 40.3306 0.292438 40.3215L0.310031 40.321H2.82879ZM49.8224 40.321C49.9877 40.321 50.1228 40.4503 50.1319 40.6133L50.1324 40.6309V47.2876C50.1324 48.8201 48.917 50.0722 47.3918 50.1251L47.3455 50.1263L47.2929 50.1268H40.6357C40.4704 50.1268 40.3353 49.9975 40.3261 49.8345L40.3256 49.8169V47.2983C40.3256 47.133 40.455 46.998 40.6181 46.9888L40.6357 46.9884L46.9935 46.9883L46.9936 40.6309C46.9936 40.4716 47.1139 40.3403 47.2687 40.3229L47.286 40.3215L47.3036 40.321H49.8224ZM18.5411 31.5906V38.2213H11.9096V31.5906H18.5411ZM34.8904 29.4898V26.3513H26.8333L26.813 26.3518C26.5576 26.3624 26.3538 26.5727 26.3538 26.8306V34.8872H29.4926L29.4926 29.4898L34.8904 29.4898ZM43.464 26.8104C43.4534 26.5551 43.2429 26.3513 42.9849 26.3513H40.3256L40.3255 29.2088L37.4679 29.2088V32.3473H40.6067L40.6067 29.4898L43.4644 29.4898V26.8306L43.464 26.8104ZM43.462 9.51281C43.4122 7.92367 42.1431 6.66658 40.5586 6.66658H26.8333L26.8116 6.6671L26.7908 6.66862C26.5432 6.69192 26.3538 6.89753 26.3538 7.14589V23.2954L26.3543 23.3171L26.3558 23.3379C26.3791 23.5854 26.5848 23.7747 26.8333 23.7747L29.4926 23.7747L29.4926 9.80496H40.3246V20.6362L37.7845 20.6363V23.7747L42.984 23.7747L43.0057 23.7742L43.0265 23.7727C43.2741 23.7494 43.4635 23.5438 43.4635 23.2954V9.60849L43.4632 9.56106L43.462 9.51281ZM35.2072 20.6362V23.7747H32.0684V20.6362H35.2072ZM9.80642 9.80488H20.6385V20.6361H9.80642V9.80488ZM18.5411 11.9051V18.5359H11.9096V11.9051H18.5411ZM38.2294 18.5359V11.9051H31.5979V18.5359H38.2294ZM50.1307 2.74029C50.0778 1.21533 48.8256 0 47.2929 0H40.6357L40.6181 0.000490585C40.455 0.00960747 40.3256 0.144652 40.3256 0.309906V2.82853L40.3261 2.84612L40.3276 2.86344C40.3449 3.01816 40.4763 3.13844 40.6357 3.13844L46.9935 3.13838L46.9936 9.49584L46.9941 9.51343C47.0032 9.6764 47.1383 9.80575 47.3036 9.80575H49.8224L49.84 9.80526C50.003 9.79614 50.1324 9.6611 50.1324 9.49584V2.83918L50.1319 2.78659L50.1307 2.74029Z" fill="#F14635"></path>
8
+ </svg>
9
+ </template>
10
+
11
+ <style scoped>
12
+
13
+ </style>
@@ -1,3 +1,3 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-key-round-icon lucide-key-round"><path d="M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z"/><circle cx="16.5" cy="7.5" r=".5" fill="currentColor"/></svg>
3
- </template>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-key-round-icon lucide-key-round"><path d="M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z"/><circle cx="16.5" cy="7.5" r=".5" fill="currentColor"/></svg>
3
+ </template>
@@ -1,3 +1,3 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-landmark-icon lucide-landmark"><path d="M10 18v-7"/><path d="M11.119 2.205a2 2 0 0 1 1.762 0l7.84 3.846A.5.5 0 0 1 20.5 7h-17a.5.5 0 0 1-.22-.949z"/><path d="M14 18v-7"/><path d="M18 18v-7"/><path d="M3 22h18"/><path d="M6 18v-7"/></svg>
3
- </template>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-landmark-icon lucide-landmark"><path d="M10 18v-7"/><path d="M11.119 2.205a2 2 0 0 1 1.762 0l7.84 3.846A.5.5 0 0 1 20.5 7h-17a.5.5 0 0 1-.22-.949z"/><path d="M14 18v-7"/><path d="M18 18v-7"/><path d="M3 22h18"/><path d="M6 18v-7"/></svg>
3
+ </template>
package/icons/layers.vue CHANGED
@@ -1,3 +1,3 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-layers-icon lucide-layers"><path d="M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z"/><path d="M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12"/><path d="M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17"/></svg>
3
- </template>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-layers-icon lucide-layers"><path d="M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z"/><path d="M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12"/><path d="M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17"/></svg>
3
+ </template>
@@ -1,8 +1,8 @@
1
- <template>
2
- <!-- Плитка-бейдж A–E: цвета через токены, иначе в тёмной теме светлая
3
- подложка светится (палитра пар — как у бейджей сравнения в макете). -->
4
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <rect width="24" height="24" rx="7" fill="var(--background-color-brand-subtle)"/>
6
- <text x="12" y="12" text-anchor="middle" dominant-baseline="central" font-family="system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif" font-size="13" font-weight="700" fill="var(--text-color-brand)">A</text>
7
- </svg>
8
- </template>
1
+ <template>
2
+ <!-- Плитка-бейдж A–E: цвета через токены, иначе в тёмной теме светлая
3
+ подложка светится (палитра пар — как у бейджей сравнения в макете). -->
4
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
+ <rect width="24" height="24" rx="7" fill="var(--background-color-brand-subtle)"/>
6
+ <text x="12" y="12" text-anchor="middle" dominant-baseline="central" font-family="system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif" font-size="13" font-weight="700" fill="var(--text-color-brand)">A</text>
7
+ </svg>
8
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <rect width="24" height="24" rx="7" fill="var(--background-color-success-subtle)"/>
4
- <text x="12" y="12" text-anchor="middle" dominant-baseline="central" font-family="system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif" font-size="13" font-weight="700" fill="var(--text-color-success)">B</text>
5
- </svg>
6
- </template>
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect width="24" height="24" rx="7" fill="var(--background-color-success-subtle)"/>
4
+ <text x="12" y="12" text-anchor="middle" dominant-baseline="central" font-family="system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif" font-size="13" font-weight="700" fill="var(--text-color-success)">B</text>
5
+ </svg>
6
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <rect width="24" height="24" rx="7" fill="var(--background-color-violet-subtle)"/>
4
- <text x="12" y="12" text-anchor="middle" dominant-baseline="central" font-family="system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif" font-size="13" font-weight="700" fill="var(--color-icon-violet)">C</text>
5
- </svg>
6
- </template>
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect width="24" height="24" rx="7" fill="var(--background-color-violet-subtle)"/>
4
+ <text x="12" y="12" text-anchor="middle" dominant-baseline="central" font-family="system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif" font-size="13" font-weight="700" fill="var(--color-icon-violet)">C</text>
5
+ </svg>
6
+ </template>
@@ -1,6 +1,6 @@
1
- <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <rect width="24" height="24" rx="7" fill="var(--background-color-warning-subtle)"/>
4
- <text x="12" y="12" text-anchor="middle" dominant-baseline="central" font-family="system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif" font-size="13" font-weight="700" fill="var(--text-color-warning)">D</text>
5
- </svg>
6
- </template>
1
+ <template>
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect width="24" height="24" rx="7" fill="var(--background-color-warning-subtle)"/>
4
+ <text x="12" y="12" text-anchor="middle" dominant-baseline="central" font-family="system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif" font-size="13" font-weight="700" fill="var(--text-color-warning)">D</text>
5
+ </svg>
6
+ </template>