adata-ui 0.3.98 → 2.0.0

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 (535) hide show
  1. package/-error.vue +170 -0
  2. package/.editorconfig +12 -0
  3. package/.eslintrc.cjs +4 -0
  4. package/.gitlab-ci.yml +16 -0
  5. package/.nuxtrc +1 -0
  6. package/.nvmrc +1 -0
  7. package/.playground/app.config.ts +5 -0
  8. package/.playground/nuxt.config.ts +4 -0
  9. package/.prettierignore +24 -0
  10. package/.prettierrc +10 -0
  11. package/README.md +75 -7
  12. package/app.config.ts +27 -0
  13. package/app.vue +7 -0
  14. package/assets/img/adata-mobile.png +0 -0
  15. package/assets/img/analytics-mobile.png +0 -0
  16. package/assets/img/compliance-mobile.png +0 -0
  17. package/assets/img/empty-box.png +0 -0
  18. package/assets/img/fea-mobile.png +0 -0
  19. package/assets/img/fines-mobile.png +0 -0
  20. package/assets/img/pk-mobile.png +0 -0
  21. package/assets/img/tenders-mobile.png +0 -0
  22. package/assets/img/work-mobile.png +0 -0
  23. package/assets/styles/index.scss +101 -0
  24. package/assets/styles/modules/_base.scss +5 -0
  25. package/assets/styles/modules/_typography.scss +152 -0
  26. package/components/elements/README.md +1 -0
  27. package/components/elements/a-select-row/index.vue +140 -0
  28. package/components/elements/accordion/AAccordion.vue +196 -0
  29. package/components/elements/accordion/AAccordionGroup/AAccordionGroup.vue +145 -0
  30. package/components/elements/accordion/AAccordionGroup/types.ts +20 -0
  31. package/components/elements/accordion/AAccordionGroup/ui.config.ts +22 -0
  32. package/components/elements/accordion/types.ts +14 -0
  33. package/components/elements/accordion/ui.config.ts +22 -0
  34. package/components/elements/alert/AAlert.vue +65 -0
  35. package/components/elements/banner/ABanner.vue +49 -0
  36. package/components/elements/bg-block/ABgBlock.vue +11 -0
  37. package/components/elements/button/AButton.vue +188 -0
  38. package/components/elements/button/types.ts +24 -0
  39. package/components/elements/calendar/ACalendar.vue +83 -0
  40. package/components/elements/carousel/ACarousel.vue +159 -0
  41. package/components/elements/carousel/config.ui.ts +15 -0
  42. package/components/elements/carousel/types.ts +18 -0
  43. package/components/elements/chip-wrapper/AChipWrapper.vue +80 -0
  44. package/components/elements/chip-wrapper/types.ts +12 -0
  45. package/components/elements/chips/AChips.vue +32 -0
  46. package/components/elements/companies/AOurClients.vue +42 -0
  47. package/components/elements/curve-block/ACurveBlock.vue +196 -0
  48. package/components/elements/digit-badge/ADigitBadge.vue +83 -0
  49. package/components/elements/error-template/index.vue +48 -0
  50. package/components/elements/error-template/types.ts +23 -0
  51. package/components/elements/feature-description/AFeatureDescription.vue +112 -0
  52. package/components/elements/illustrations/noAccess.vue +62 -0
  53. package/components/elements/infinite-carousel/AInfiniteCarousel.vue +55 -0
  54. package/components/elements/infinite-scroll/AInfiniteScroll.vue +33 -0
  55. package/components/elements/leave-note/ALeaveNote.vue +77 -0
  56. package/components/elements/pagination/APagination.vue +110 -0
  57. package/components/elements/photos-animation/APhotosAnimation.vue +83 -0
  58. package/components/elements/select/ASelect.vue +389 -0
  59. package/components/elements/select/ASelectMobile.vue +186 -0
  60. package/components/elements/select/ui/select-button.vue +112 -0
  61. package/components/elements/select/ui/select-list.vue +99 -0
  62. package/components/elements/show-more/AShowMore.vue +35 -0
  63. package/components/elements/skeleton/ASkeleton.vue +44 -0
  64. package/components/elements/star-rating/AStarRating.vue +181 -0
  65. package/components/elements/star-rating/types.ts +8 -0
  66. package/components/elements/star-rating/ui/Star.vue +74 -0
  67. package/components/elements/status-badge/AStatusBadge.vue +74 -0
  68. package/components/elements/table/ATable.vue +93 -0
  69. package/components/elements/table/table.config.ts +32 -0
  70. package/components/elements/tree-select/ATreeSelect.vue +169 -0
  71. package/components/elements/tree-select/TreeService.ts +249 -0
  72. package/components/elements/tree-select/components/tree-select-nodes.vue +90 -0
  73. package/components/elements/tree-select/types.ts +34 -0
  74. package/components/elements/tree-select-mobile/ATreeSelectMobile.vue +79 -0
  75. package/components/elements/tree-select-mobile/components/ATreeSelectNodesMobile.vue +175 -0
  76. package/components/features/color-mode/AColorMode.client.vue +53 -0
  77. package/components/features/dropdown/ADropdown.vue +124 -0
  78. package/components/features/go-top/GoTop.vue +58 -0
  79. package/components/features/lang-switcher/lang-switcher.vue +56 -0
  80. package/components/features/pk-mobile-services/APkMobileServices.vue +130 -0
  81. package/components/features//321/201hange-version/AChangeVersion.vue +20 -0
  82. package/components/forms/README.md +1 -0
  83. package/components/forms/checkbox/ACheckbox.vue +151 -0
  84. package/components/forms/feedback-form/FeedbackForm.vue +171 -0
  85. package/components/forms/input/button/AInputButton.vue +53 -0
  86. package/components/forms/input/date/AInputDate.vue +213 -0
  87. package/components/forms/input/password/AInputPassword.vue +53 -0
  88. package/components/forms/input/standard/AInputStandard.vue +412 -0
  89. package/components/forms/input/textarea/ATextarea.vue +200 -0
  90. package/components/forms/radio-button/ARadioButton.vue +87 -0
  91. package/components/forms/request-demo/ARequestDemo.vue +90 -0
  92. package/components/forms/toggle/AToggle.vue +157 -0
  93. package/components/forms/toggle/types.ts +16 -0
  94. package/components/modals/AboutTariffModal.vue +113 -0
  95. package/components/modals/AnotherDeviceModal.vue +59 -0
  96. package/components/modals/ApplicationAcceptedModal.vue +47 -0
  97. package/components/modals/AuthModal.vue +50 -0
  98. package/components/modals/ConnectingTariffModal.vue +68 -0
  99. package/components/modals/ContactsMobileModel.vue +182 -0
  100. package/components/modals/ContentNavigationModal.vue +282 -0
  101. package/components/modals/Insufficient-funds-modal.vue +74 -0
  102. package/components/modals/LimitReachedModal.vue +29 -0
  103. package/components/modals/NoAccessModal.vue +37 -0
  104. package/components/modals/PaymentMethodModal.vue +101 -0
  105. package/components/modals/RedirectsBanksModal.vue +69 -0
  106. package/components/modals/ReplenishModal.vue +132 -0
  107. package/components/modals/ReportBugConfirmModal.vue +30 -0
  108. package/components/modals/ReportBugModal.vue +156 -0
  109. package/components/modals/SubmitApplicationModal.vue +111 -0
  110. package/components/navigation/README.md +1 -0
  111. package/components/navigation/bottom-navigation/ABottomNavigation.vue +101 -0
  112. package/components/navigation/breadcrumbs/ABreadcrumbs.vue +66 -0
  113. package/components/navigation/breadcrumbs/types.ts +4 -0
  114. package/components/navigation/footer/AFooter.vue +126 -0
  115. package/components/navigation/footer/NewFooter.vue +276 -0
  116. package/components/navigation/footer/ui/footer-acccordion.vue +119 -0
  117. package/components/navigation/footer/ui/new-footer-accordion.vue +120 -0
  118. package/components/navigation/header/AHeader.vue +187 -0
  119. package/components/navigation/header/AlmatyContacts.vue +143 -0
  120. package/components/navigation/header/AstanaContacts.vue +65 -0
  121. package/components/navigation/header/CardGallery.vue +248 -0
  122. package/components/navigation/header/ContactMenu.vue +114 -0
  123. package/components/navigation/header/HeaderLink.vue +247 -0
  124. package/components/navigation/header/ListItem.vue +31 -0
  125. package/components/navigation/header/NavCard.vue +41 -0
  126. package/components/navigation/header/NavList.vue +115 -0
  127. package/components/navigation/header/NotificationsMenu.vue +51 -0
  128. package/components/navigation/header/ProductMenu.vue +212 -0
  129. package/components/navigation/header/ProfileMenu.vue +189 -0
  130. package/components/navigation/header/TopHeader.vue +181 -0
  131. package/components/navigation/header/types.ts +28 -0
  132. package/components/navigation/line-tabs/ALineTabs.vue +111 -0
  133. package/components/navigation/line-tabs/types.ts +21 -0
  134. package/components/navigation/mobile-navigation/AMobileNavigation.vue +104 -0
  135. package/components/navigation/pill-tabs/APillTabs.vue +157 -0
  136. package/components/navigation/pill-tabs/types.ts +22 -0
  137. package/components/navigation/side-navigation/ASideNavigation.vue +404 -0
  138. package/components/overlays/README.md +1 -0
  139. package/components/overlays/modal/AModal.vue +332 -0
  140. package/components/overlays/sideover/ASlideover.vue +351 -0
  141. package/components/overlays/tooltip/ATooltip.vue +242 -0
  142. package/components/transitions/ATransitionHeight.vue +67 -0
  143. package/components/utils/index.ts +19 -0
  144. package/composables/highlight.ts +18 -0
  145. package/composables/modalsState.ts +8 -0
  146. package/composables/projectState.ts +2 -0
  147. package/composables/useAdaptive.ts +46 -0
  148. package/composables/useCarouselScroll.ts +49 -0
  149. package/composables/useHeaderNavigationLinks.ts +576 -0
  150. package/composables/useUIValidation.ts +16 -0
  151. package/histoire.config.ts +10 -0
  152. package/i18n/i18n.config.ts +21 -0
  153. package/i18n.config.ts +21 -0
  154. package/icons/adata-logo.vue +17 -0
  155. package/icons/arrow/arrow-bottom-left-on-square.vue +5 -0
  156. package/icons/arrow/arrow-circle-down.vue +20 -0
  157. package/icons/arrow/arrow-circle-reset.vue +16 -0
  158. package/icons/arrow/arrow-corner.vue +9 -0
  159. package/icons/arrow/arrow-graph-down.vue +13 -0
  160. package/icons/arrow/arrow-graph-up.vue +14 -0
  161. package/icons/arrow/arrow-square-down.vue +15 -0
  162. package/icons/arrow/arrow-top-right-on-square.vue +6 -0
  163. package/icons/arrow-currency-gray.vue +5 -0
  164. package/icons/arrow-currency-green.vue +5 -0
  165. package/icons/arrow-currency-red.vue +5 -0
  166. package/icons/arrow-side-up.vue +6 -0
  167. package/icons/avatar.vue +12 -0
  168. package/icons/block.vue +16 -0
  169. package/icons/bookmark/bookmark-filled.vue +18 -0
  170. package/icons/bookmark/bookmark.vue +5 -0
  171. package/icons/browsers/browser-duck.vue +65 -0
  172. package/icons/browsers/browser-google.vue +24 -0
  173. package/icons/browsers/browser-yandex.vue +13 -0
  174. package/icons/building-vector.vue +7 -0
  175. package/icons/calculator.vue +7 -0
  176. package/icons/calendar.vue +24 -0
  177. package/icons/car.vue +7 -0
  178. package/icons/check/check-circle.vue +6 -0
  179. package/icons/check/check-shield.vue +14 -0
  180. package/icons/check/check.vue +17 -0
  181. package/icons/check/checkmark-circle.vue +6 -0
  182. package/icons/checkbox/checkbox-active.vue +17 -0
  183. package/icons/checkbox/checkbox-empty.vue +10 -0
  184. package/icons/checkbox/checkbox-intermediate.vue +7 -0
  185. package/icons/chevron/chevron-down.vue +5 -0
  186. package/icons/chevron/chevron-left.vue +5 -0
  187. package/icons/chevron/chevron-right.vue +5 -0
  188. package/icons/chevron/chevron-up.vue +5 -0
  189. package/icons/chevron/double-chevron-right.vue +12 -0
  190. package/icons/clipboard-text.vue +7 -0
  191. package/icons/clock.vue +9 -0
  192. package/icons/company/company-bazis.vue +21 -0
  193. package/icons/company/company-bereke.vue +25 -0
  194. package/icons/company/company-bigroup.vue +16 -0
  195. package/icons/company/company-erg.vue +17 -0
  196. package/icons/company/company-forte.vue +23 -0
  197. package/icons/company/company-halyk.vue +15 -0
  198. package/icons/company/company-jusan.vue +14 -0
  199. package/icons/company/company-kaspi.vue +14 -0
  200. package/icons/company/company-mycar.vue +13 -0
  201. package/icons/company/company-samruk.vue +21 -0
  202. package/icons/company-egov-small.vue +15 -0
  203. package/icons/company.vue +8 -0
  204. package/icons/copy.vue +7 -0
  205. package/icons/currency/currency-dollar.vue +16 -0
  206. package/icons/currency/currency-down.vue +22 -0
  207. package/icons/currency/currency-eur.vue +57 -0
  208. package/icons/currency/currency-rub.vue +7 -0
  209. package/icons/currency/currency-usd.vue +221 -0
  210. package/icons/currency/currency-yuan.vue +25 -0
  211. package/icons/delete.vue +7 -0
  212. package/icons/document.vue +5 -0
  213. package/icons/download.vue +11 -0
  214. package/icons/edit.vue +7 -0
  215. package/icons/education.vue +16 -0
  216. package/icons/egov-small.vue +7 -0
  217. package/icons/expand-window.vue +7 -0
  218. package/icons/eye-closed.vue +26 -0
  219. package/icons/eye-open.vue +7 -0
  220. package/icons/eye-opened.vue +23 -0
  221. package/icons/file/file.vue +16 -0
  222. package/icons/file/files.vue +16 -0
  223. package/icons/filter.vue +5 -0
  224. package/icons/flag.vue +7 -0
  225. package/icons/gift.vue +8 -0
  226. package/icons/globe.vue +16 -0
  227. package/icons/graph-pie.vue +14 -0
  228. package/icons/hand/hand-thumb-up-filled.vue +5 -0
  229. package/icons/hand/hand-thumb-up.vue +5 -0
  230. package/icons/hand-with-phone/hand-with-phone-dark.vue +52 -0
  231. package/icons/hand-with-phone/hand-with-phone-light.vue +52 -0
  232. package/icons/handshake.vue +5 -0
  233. package/icons/hcheck.vue +14 -0
  234. package/icons/hdocument.vue +7 -0
  235. package/icons/history.vue +5 -0
  236. package/icons/horizontal-more.vue +13 -0
  237. package/icons/hummer.vue +16 -0
  238. package/icons/id.vue +7 -0
  239. package/icons/info/info-circle.vue +29 -0
  240. package/icons/invoice.vue +7 -0
  241. package/icons/judge.vue +14 -0
  242. package/icons/link-chain.vue +28 -0
  243. package/icons/link.vue +7 -0
  244. package/icons/linkedin.vue +24 -0
  245. package/icons/loader-circle.vue +27 -0
  246. package/icons/location.vue +8 -0
  247. package/icons/lock.vue +5 -0
  248. package/icons/logo.vue +15 -0
  249. package/icons/logout.vue +16 -0
  250. package/icons/magnify/magnifying-glass-minus.vue +8 -0
  251. package/icons/magnify/magnifying-glass-plus.vue +9 -0
  252. package/icons/magnify/magnifying-glass.vue +9 -0
  253. package/icons/mail.vue +7 -0
  254. package/icons/main-filter.vue +5 -0
  255. package/{dist/img/location.807c7100.svg → icons/map/map-pin-filled.vue} +7 -4
  256. package/icons/map/map-pin-rect.vue +15 -0
  257. package/{src/assets/location.svg → icons/map/map-pin.vue} +7 -4
  258. package/icons/map-marker-start.vue +7 -0
  259. package/icons/map-paper.vue +5 -0
  260. package/icons/medal.vue +7 -0
  261. package/icons/menu-filled.vue +20 -0
  262. package/icons/menu.vue +8 -0
  263. package/icons/message/message.vue +12 -0
  264. package/icons/minus/minus-circle.vue +10 -0
  265. package/icons/money.vue +5 -0
  266. package/icons/monitoring.vue +10 -0
  267. package/icons/moon.vue +8 -0
  268. package/icons/more.vue +29 -0
  269. package/icons/note-pencil.vue +14 -0
  270. package/icons/note.vue +14 -0
  271. package/icons/notification.vue +16 -0
  272. package/icons/paperclip.vue +7 -0
  273. package/icons/payment/payment-card.vue +6 -0
  274. package/icons/payment/payment-kaspi.vue +11 -0
  275. package/icons/person-vector.vue +7 -0
  276. package/icons/person-with-briefcase.vue +10 -0
  277. package/icons/phone-filled.vue +5 -0
  278. package/icons/phone.vue +7 -0
  279. package/icons/plus/plus-circle.vue +8 -0
  280. package/icons/plus/plus.vue +13 -0
  281. package/icons/profile.vue +5 -0
  282. package/icons/radio/radio-check.vue +8 -0
  283. package/icons/radio/radio-empty.vue +10 -0
  284. package/icons/receipt.vue +8 -0
  285. package/icons/robot.vue +14 -0
  286. package/icons/scales/scale.vue +16 -0
  287. package/icons/scales/scales.vue +5 -0
  288. package/icons/scales/standing-scales.vue +15 -0
  289. package/icons/search.vue +15 -0
  290. package/icons/share/share-alt.vue +5 -0
  291. package/icons/share/share.vue +14 -0
  292. package/icons/ship.vue +8 -0
  293. package/icons/socials/face-book.vue +15 -0
  294. package/icons/socials/instagram.vue +19 -0
  295. package/icons/socials/telegram.vue +15 -0
  296. package/icons/socials/tik-tok.vue +15 -0
  297. package/icons/socials/youtube.vue +16 -0
  298. package/icons/sort/sort-asc.vue +15 -0
  299. package/icons/sort/sort-desc.vue +15 -0
  300. package/icons/splitting-arrows.vue +8 -0
  301. package/icons/star/star-filled.vue +40 -0
  302. package/icons/star/star-half-filled.vue +20 -0
  303. package/icons/star/star.vue +25 -0
  304. package/icons/sun.vue +14 -0
  305. package/icons/sviazi.vue +5 -0
  306. package/icons/tag.vue +30 -0
  307. package/icons/tender-search.vue +11 -0
  308. package/icons/toasts/check-circle-toast.vue +6 -0
  309. package/icons/toasts/warning-triangle-toast.vue +7 -0
  310. package/icons/trash.vue +13 -0
  311. package/icons/triangle.vue +10 -0
  312. package/icons/truck.vue +7 -0
  313. package/icons/user-square.vue +14 -0
  314. package/icons/user.vue +22 -0
  315. package/icons/users-focus.vue +8 -0
  316. package/icons/users-three.vue +7 -0
  317. package/icons/users.vue +8 -0
  318. package/icons/warning/warning-circle.vue +29 -0
  319. package/icons/warning/warning-triangle-filled.vue +12 -0
  320. package/icons/warning/warning-triangle.vue +28 -0
  321. package/icons/whatsapp.vue +8 -0
  322. package/icons/work-bag.vue +11 -0
  323. package/icons/work-search.vue +10 -0
  324. package/icons/work.vue +5 -0
  325. package/icons/x-mark.vue +15 -0
  326. package/illustrations/address-location.vue +38 -0
  327. package/illustrations/ball-with-chain.vue +120 -0
  328. package/illustrations/bill.vue +133 -0
  329. package/illustrations/buildings.vue +82 -0
  330. package/illustrations/calendar.vue +156 -0
  331. package/illustrations/chains.vue +152 -0
  332. package/illustrations/coin-percent.vue +126 -0
  333. package/illustrations/coins-stack.vue +202 -0
  334. package/illustrations/delete-dark.vue +31 -0
  335. package/illustrations/delete.vue +32 -0
  336. package/illustrations/doc-with-stamp.vue +126 -0
  337. package/illustrations/document.vue +64 -0
  338. package/illustrations/door.vue +74 -0
  339. package/illustrations/empty-box.vue +77 -0
  340. package/illustrations/empty-wallet.vue +161 -0
  341. package/illustrations/graph-in-coin.vue +119 -0
  342. package/illustrations/hammer.vue +156 -0
  343. package/illustrations/hand-cash.vue +108 -0
  344. package/illustrations/info.vue +39 -0
  345. package/illustrations/mail.vue +68 -0
  346. package/illustrations/ok.vue +62 -0
  347. package/illustrations/people-group.vue +237 -0
  348. package/illustrations/person-with-phone.vue +187 -0
  349. package/illustrations/person.vue +159 -0
  350. package/illustrations/phone-check.vue +90 -0
  351. package/illustrations/phone-payment-method.vue +223 -0
  352. package/illustrations/stop-hand.vue +77 -0
  353. package/illustrations/stop-sign.vue +34 -0
  354. package/illustrations/suit.vue +111 -0
  355. package/illustrations/suitcase.vue +105 -0
  356. package/illustrations/terminal-dark.vue +48 -0
  357. package/illustrations/terminal.vue +234 -0
  358. package/illustrations/trash-can.vue +108 -0
  359. package/illustrations/turn-on-tariff.vue +38 -0
  360. package/illustrations/two-persons.vue +169 -0
  361. package/lang/en.ts +593 -0
  362. package/lang/kk.ts +594 -0
  363. package/lang/ru.ts +595 -0
  364. package/layouts/default.vue +13 -0
  365. package/nuxt.config.ts +64 -0
  366. package/package.json +65 -76
  367. package/plugins/maska.ts +5 -0
  368. package/plugins/toast.client.ts +58 -0
  369. package/public/error-illustrations/401.webp +0 -0
  370. package/public/error-illustrations/403.webp +0 -0
  371. package/public/error-illustrations/404.webp +0 -0
  372. package/public/error-illustrations/500.webp +0 -0
  373. package/public/error-illustrations/502.webp +0 -0
  374. package/public/error-illustrations/503.webp +0 -0
  375. package/public/error-illustrations/504.webp +0 -0
  376. package/public/header/compliance.webp +0 -0
  377. package/public/header/unload.webp +0 -0
  378. package/public/header/ved.webp +0 -0
  379. package/public/mode/dark-analytics-en.webp +0 -0
  380. package/public/mode/dark-analytics-kk.webp +0 -0
  381. package/public/mode/dark-analytics-ru.webp +0 -0
  382. package/public/mode/dark-complience-en.webp +0 -0
  383. package/public/mode/dark-complience-kk.webp +0 -0
  384. package/public/mode/dark-complience-ru.webp +0 -0
  385. package/public/mode/dark-fea-en.webp +0 -0
  386. package/public/mode/dark-fea-kk.webp +0 -0
  387. package/public/mode/dark-fea-ru.webp +0 -0
  388. package/public/mode/dark-fines-en.webp +0 -0
  389. package/public/mode/dark-fines-kk.webp +0 -0
  390. package/public/mode/dark-fines-ru.webp +0 -0
  391. package/public/mode/dark-pk-en.webp +0 -0
  392. package/public/mode/dark-pk-kk.webp +0 -0
  393. package/public/mode/dark-pk-ru.webp +0 -0
  394. package/public/mode/dark-tenders-en.webp +0 -0
  395. package/public/mode/dark-tenders-kk.webp +0 -0
  396. package/public/mode/dark-tenders-ru.webp +0 -0
  397. package/public/mode/dark-work-en.webp +0 -0
  398. package/public/mode/dark-work-kk.webp +0 -0
  399. package/public/mode/dark-work-ru.webp +0 -0
  400. package/public/mode/light-analytics-en.webp +0 -0
  401. package/public/mode/light-analytics-kk.webp +0 -0
  402. package/public/mode/light-analytics-ru.webp +0 -0
  403. package/public/mode/light-complience-en.webp +0 -0
  404. package/public/mode/light-complience-kk.webp +0 -0
  405. package/public/mode/light-complience-ru.webp +0 -0
  406. package/public/mode/light-fea-en.webp +0 -0
  407. package/public/mode/light-fea-kk.webp +0 -0
  408. package/public/mode/light-fea-ru.webp +0 -0
  409. package/public/mode/light-fines-en.webp +0 -0
  410. package/public/mode/light-fines-kk.webp +0 -0
  411. package/public/mode/light-fines-ru.webp +0 -0
  412. package/public/mode/light-pk-en.webp +0 -0
  413. package/public/mode/light-pk-kk.webp +0 -0
  414. package/public/mode/light-pk-ru.webp +0 -0
  415. package/public/mode/light-tenders-en.webp +0 -0
  416. package/public/mode/light-tenders-kk.webp +0 -0
  417. package/public/mode/light-tenders-ru.webp +0 -0
  418. package/public/mode/light-work-en.webp +0 -0
  419. package/public/mode/light-work-kk.webp +0 -0
  420. package/public/mode/light-work-ru.webp +0 -0
  421. package/public/tariff/subtract.png +0 -0
  422. package/shared/constans/pages.ts +73 -0
  423. package/tailwind.config.ts +163 -0
  424. package/tests/AButton.test.ts +81 -0
  425. package/tsconfig.json +6 -0
  426. package/utils/getMaxZindex.ts +25 -0
  427. package/utils/localizedNavigation.ts +36 -0
  428. package/vitest.config.ts +14 -0
  429. package/babel.config.js +0 -5
  430. package/dist/adata-ui.common.js +0 -10910
  431. package/dist/adata-ui.common.js.map +0 -1
  432. package/dist/adata-ui.css +0 -1
  433. package/dist/adata-ui.umd.js +0 -10920
  434. package/dist/adata-ui.umd.js.map +0 -1
  435. package/dist/adata-ui.umd.min.js +0 -7
  436. package/dist/adata-ui.umd.min.js.map +0 -1
  437. package/dist/demo.html +0 -10
  438. package/dist/img/expand-window.39c851da.svg +0 -3
  439. package/dist/img/facebook.797d820f.svg +0 -4
  440. package/dist/img/instagram.8a77381c.svg +0 -6
  441. package/dist/img/linkedIn.607d9542.svg +0 -13
  442. package/dist/img/logo-desktop-main.4d169395.svg +0 -8
  443. package/dist/img/logo-mobile-main.397bce24.svg +0 -4
  444. package/dist/img/logo-white-desktop.7d0e3481.svg +0 -8
  445. package/dist/img/mail.e4826575.svg +0 -3
  446. package/dist/img/phone.ae6c1746.svg +0 -3
  447. package/dist/img/telegram.be0d1008.svg +0 -4
  448. package/dist/img/tiktok.eaeb39cb.svg +0 -4
  449. package/dist/img/up-down.e2b28f72.svg +0 -3
  450. package/dist/img/youtube.125aace6.svg +0 -5
  451. package/package-lock.json +0 -27138
  452. package/public/favicon.ico +0 -0
  453. package/public/index.html +0 -17
  454. package/public/logo.svg +0 -4
  455. package/src/App.vue +0 -31
  456. package/src/assets/_text_field.scss +0 -225
  457. package/src/assets/expand-window.svg +0 -3
  458. package/src/assets/facebook.svg +0 -4
  459. package/src/assets/instagram.svg +0 -6
  460. package/src/assets/linkedIn.svg +0 -13
  461. package/src/assets/logo-desktop-main.svg +0 -8
  462. package/src/assets/logo-desktop.svg +0 -9
  463. package/src/assets/logo-desktop.webp +0 -0
  464. package/src/assets/logo-mobile-main.svg +0 -4
  465. package/src/assets/logo-mobile.svg +0 -9
  466. package/src/assets/logo-mobile.webp +0 -0
  467. package/src/assets/logo-white-desktop.svg +0 -8
  468. package/src/assets/mail.svg +0 -3
  469. package/src/assets/phone.svg +0 -3
  470. package/src/assets/style.scss +0 -1
  471. package/src/assets/telegram.svg +0 -4
  472. package/src/assets/tiktok.svg +0 -4
  473. package/src/assets/up-down.svg +0 -3
  474. package/src/assets/youtube.svg +0 -5
  475. package/src/components/Alert/Alert.stories.js +0 -17
  476. package/src/components/Alert/Alert.vue +0 -63
  477. package/src/components/BottomNavigationBar/ABottomNavigationBar.vue +0 -160
  478. package/src/components/BottomNavigationBar/BottomNavigationBar.stories.js +0 -25
  479. package/src/components/Button/AButton.vue +0 -231
  480. package/src/components/Button/Button.stories.js +0 -23
  481. package/src/components/Checkbox/ACheckbox.vue +0 -114
  482. package/src/components/Checkbox/Checkbox.stories.js +0 -15
  483. package/src/components/CheckboxMenu/CheckboxMenu.stories.js +0 -24
  484. package/src/components/CheckboxMenu/CheckboxMenu.vue +0 -108
  485. package/src/components/ErrorPages/BadGateway.vue +0 -224
  486. package/src/components/ErrorPages/Forbidden.vue +0 -468
  487. package/src/components/ErrorPages/InternalServerError.vue +0 -275
  488. package/src/components/ErrorPages/NotFound.vue +0 -995
  489. package/src/components/ErrorPages/Unavailable.vue +0 -3705
  490. package/src/components/Footer/Footer.stories.js +0 -20
  491. package/src/components/Footer/Footer.vue +0 -292
  492. package/src/components/Header/ChildLinks.vue +0 -144
  493. package/src/components/Header/Header.stories.js +0 -56
  494. package/src/components/Header/Header.vue +0 -1306
  495. package/src/components/Header/InfoHeader.vue +0 -319
  496. package/src/components/Header/Profile.vue +0 -670
  497. package/src/components/Header/ProfileMenu.vue +0 -293
  498. package/src/components/Header/ProfileMobile.vue +0 -308
  499. package/src/components/Header/ProfileOld.vue +0 -781
  500. package/src/components/InternalServerError/InternalServerError.stories.js +0 -17
  501. package/src/components/InternalServerError/InternalServerError.vue +0 -262
  502. package/src/components/Introduction.stories.mdx +0 -7
  503. package/src/components/Loader/Loader.stories.js +0 -25
  504. package/src/components/Loader/Loader.vue +0 -325
  505. package/src/components/MailTo/MailTo.stories.js +0 -15
  506. package/src/components/MailTo/MailTo.vue +0 -258
  507. package/src/components/NavIcon/ANavIcon.vue +0 -50
  508. package/src/components/NavIcon/NavIcon.stories.js +0 -15
  509. package/src/components/PasswordField/PasswordField.stories.js +0 -16
  510. package/src/components/PasswordField/PasswordField.vue +0 -77
  511. package/src/components/SearchTextField/SearchTextField.stories.js +0 -78
  512. package/src/components/SearchTextField/SearchTextField.vue +0 -230
  513. package/src/components/ServiceSlider/AServiceSlider.vue +0 -793
  514. package/src/components/ServiceSlider/ServiceSlider.stories.js +0 -20
  515. package/src/components/Table/ATable.vue +0 -117
  516. package/src/components/Table/Table.stories.js +0 -15
  517. package/src/components/TextArea/TextArea.stories.js +0 -17
  518. package/src/components/TextArea/TextArea.vue +0 -116
  519. package/src/components/TextError/TextError.stories.js +0 -15
  520. package/src/components/TextError/TextError.vue +0 -57
  521. package/src/components/TextField/TextField.stories.js +0 -17
  522. package/src/components/TextField/TextField.vue +0 -107
  523. package/src/components/index.js +0 -56
  524. package/src/components/newComponents/FooterNew/FooterBottom.vue +0 -153
  525. package/src/components/newComponents/FooterNew/FooterItem.vue +0 -114
  526. package/src/components/newComponents/FooterNew/FooterNew.stories.js +0 -20
  527. package/src/components/newComponents/FooterNew/FooterNew.vue +0 -39
  528. package/src/components/newComponents/FooterNew/FooterTop.vue +0 -321
  529. package/src/components/newComponents/FooterRedesign/FooterAccordion.vue +0 -221
  530. package/src/components/newComponents/FooterRedesign/FooterRedesign.vue +0 -430
  531. package/src/components/transitions/SlideToggle.vue +0 -55
  532. package/src/components/transitions/VerticalMobileToggle.vue +0 -75
  533. package/src/configs/icons.js +0 -112
  534. package/src/configs/profileDropDown.js +0 -134
  535. package/src/main.js +0 -12
@@ -0,0 +1,156 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ height="155"
5
+ viewBox="0 0 156 155"
6
+ width="156"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="78.3343" cy="77.5001" fill="#BDC7CE" fill-opacity="0.15" r="64.5833" />
10
+ <g clip-path="url(#clip0_2571_138995)">
11
+ <path
12
+ d="M83.8149 71.5274C84.8137 73.9197 85.6387 76.3796 86.2836 78.8885L88.5407 77.6371C89.4505 78.0426 93.6684 80.1747 93.6543 84.9493L94.3103 84.5788L92.7092 85.5015C92.1873 85.8022 91.7304 86.202 91.3645 86.678C90.9987 87.1539 90.7311 87.6967 90.5772 88.2752C90.4232 88.8537 90.3859 89.4566 90.4673 90.0495C90.5487 90.6423 90.7473 91.2134 91.0516 91.7301L91.4607 92.4292C91.7643 92.9473 92.1678 93.4009 92.6484 93.7643C93.129 94.1276 93.6771 94.3935 94.2614 94.5468C94.8457 94.7 95.4548 94.7375 96.0538 94.6573C96.6528 94.577 97.23 94.3805 97.7523 94.079L118.545 82.0832C119.067 81.7824 119.524 81.3826 119.89 80.9067C120.256 80.4308 120.523 79.888 120.677 79.3095C120.831 78.731 120.869 78.128 120.787 77.5352C120.706 76.9424 120.507 76.3712 120.203 75.8545L119.794 75.1555C119.49 74.6374 119.087 74.1837 118.606 73.8204C118.126 73.457 117.578 73.1911 116.993 73.0379C116.409 72.8847 115.8 72.8471 115.201 72.9274C114.602 73.0077 114.025 73.2042 113.502 73.5057L112.19 74.2607C110.886 73.4889 109.834 72.3596 109.162 71.0089C108.49 69.6582 108.226 68.1438 108.403 66.648L111.365 65.0052C102.273 55.3792 97.9639 40.3564 97.9639 40.3564L94.5854 42.2369C93.2292 41.587 92.0897 40.5652 91.302 39.2926C90.5144 38.0201 90.1117 36.5502 90.1417 35.0576L91.4819 34.3585C92.5603 33.7939 93.3682 32.8279 93.728 31.673C94.0878 30.518 93.97 29.2687 93.4004 28.1998L93.0124 27.5008C92.4428 26.432 91.4681 25.6312 90.3028 25.2746C89.1375 24.918 87.8769 25.0348 86.7985 25.5993L65.5257 36.7423C64.4485 37.3081 63.642 38.2747 63.2836 39.4295C62.9252 40.5844 63.0441 41.833 63.6142 42.901L64.0021 43.6001C64.2841 44.1293 64.6686 44.5983 65.1338 44.9801C65.5989 45.3618 66.1354 45.6489 66.7126 45.8249C67.2898 46.0009 67.8964 46.0623 68.4976 46.0056C69.0987 45.9489 69.6827 45.7752 70.2161 45.4945L72.3321 44.39L71.1965 44.9982C75.499 47.5637 74.97 52.3732 74.8431 53.2191L72.2616 54.6521C74.1134 56.21 75.7858 57.966 77.2483 59.8881C70.5547 63.1038 27.875 90.1852 22.4722 93.6106C21.9755 92.5909 21.0905 91.8085 20.0118 91.4355C18.9331 91.0626 17.749 91.1295 16.7202 91.6218C15.6913 92.114 14.9019 92.9912 14.5256 94.0603C14.1492 95.1294 14.2168 96.3029 14.7135 97.3226L17.5348 103.055C18.0126 104.018 18.8395 104.768 19.8504 105.153C20.8612 105.539 21.9817 105.533 22.988 105.136C23.9943 104.738 24.8125 103.98 25.2791 103.011C25.7457 102.042 25.8264 100.934 25.5051 99.9091C30.3719 97.7211 74.4693 77.8189 83.8149 71.5274Z"
13
+ class="fill-white dark:fill-gray-900"
14
+ />
15
+ <path
16
+ d="M112.21 118.833H87.9803H71.1777V129.136H128.07V118.833H112.21Z"
17
+ class="fill-white dark:fill-gray-900"
18
+ />
19
+ <path
20
+ d="M83.9265 108.529C82.4561 108.529 81.0001 108.796 79.6416 109.314C78.2831 109.831 77.0488 110.59 76.009 111.547C74.9693 112.504 74.1445 113.64 73.5818 114.89C73.0191 116.14 72.7295 117.48 72.7295 118.833H126.519C126.519 116.101 125.34 113.481 123.242 111.549C121.144 109.617 118.297 108.531 115.329 108.529H83.9265Z"
21
+ class="fill-white dark:fill-gray-900"
22
+ />
23
+ <path d="M74.1054 126.684V118.977H70.7539V129.208H128.288V126.684H74.1054Z" fill="#ECF1F7" />
24
+ <path
25
+ d="M91.7421 107.952H84.0255C82.5825 107.951 81.1534 108.233 79.8199 108.782C78.4865 109.332 77.2749 110.138 76.2545 111.154C75.2342 112.17 74.4251 113.377 73.8735 114.705C73.3219 116.034 73.0387 117.457 73.04 118.894H80.7567C80.7554 117.457 81.0386 116.034 81.5902 114.705C82.1418 113.377 82.9509 112.17 83.9713 111.154C84.9916 110.138 86.2032 109.332 87.5366 108.782C88.87 108.233 90.2991 107.951 91.7421 107.952Z"
26
+ fill="#ECF1F7"
27
+ />
28
+ <path
29
+ d="M77.1662 51.9225C77.1662 51.9225 78.273 46.3072 73.5043 43.4531L71.1562 44.638C75.9145 47.492 74.8077 53.1074 74.8077 53.1074L77.1662 51.9225Z"
30
+ class="fill-white dark:fill-gray-900"
31
+ />
32
+ <path
33
+ d="M90.8526 76.1868C90.8526 76.1868 96.1385 78.4432 95.8075 83.9864L93.5007 85.2434C93.8317 79.7105 88.5459 77.4541 88.5459 77.4541L90.8526 76.1868Z"
34
+ class="fill-white dark:fill-gray-900"
35
+ />
36
+ <path
37
+ d="M25.25 102.223C25.1419 103.153 24.7333 104.023 24.0859 104.701C23.4385 105.379 22.5874 105.83 21.6607 105.984C20.7339 106.139 19.7819 105.989 18.9479 105.558C18.1139 105.127 17.4432 104.438 17.0368 103.594L14.2129 97.7827C13.7821 96.8947 13.6704 95.8864 13.8963 94.9262C14.1222 93.966 14.6722 93.1122 15.4542 92.5073C15.3549 93.3218 15.4913 94.1476 15.8472 94.8874L18.6712 100.699C19.0244 101.433 19.5789 102.053 20.2708 102.487C20.9626 102.921 21.7636 103.151 22.5812 103.151C23.2333 103.148 23.8764 103 24.4639 102.718C24.7437 102.583 25.0074 102.417 25.25 102.223Z"
38
+ fill="#ECF1F7"
39
+ />
40
+ <path
41
+ d="M84.0042 71.2928C78.8322 75.4141 24.9084 100.142 24.9084 100.142L23.3154 96.9688C25.7773 95.8457 74.9842 73.271 82.5043 68.3357L84.0042 71.2928Z"
42
+ fill="#ECF1F7"
43
+ />
44
+ <path
45
+ d="M91.6384 25.1954C91.278 25.2807 90.9303 25.4123 90.604 25.587L69.1504 36.9207C68.0657 37.4963 67.2537 38.4758 66.8913 39.6455C66.5289 40.8152 66.6457 42.0802 67.216 43.1645L67.6091 43.8961C67.9582 44.5554 68.4622 45.121 69.078 45.5446C68.0709 45.8003 67.0067 45.7107 66.0571 45.2901C65.1075 44.8695 64.3278 44.1425 63.8439 43.2264L63.4508 42.4948C63.1642 41.9588 62.9869 41.3715 62.9291 40.767C62.8712 40.1624 62.934 39.5524 63.1138 38.972C63.2935 38.3917 63.5868 37.8525 63.9766 37.3855C64.3664 36.9186 64.8451 36.533 65.3851 36.251L86.8284 24.9172C87.5784 24.5188 88.4241 24.3339 89.2727 24.383C90.1212 24.4321 90.9398 24.7132 91.6384 25.1954Z"
46
+ fill="#ECF1F7"
47
+ />
48
+ <path
49
+ d="M111.644 64.915L86.3531 78.9791C84.564 72.0827 81.4979 65.5797 77.3124 59.8045C75.828 57.8239 74.1242 56.0163 72.2334 54.4158L76.0607 52.2727C77.1752 53.3894 78.212 54.5805 79.1639 55.8377C83.3504 61.6162 86.4166 68.1227 88.2047 75.0226L109.927 62.947C110.476 63.627 111.044 64.2762 111.644 64.915Z"
50
+ fill="#ECF1F7"
51
+ />
52
+ <path
53
+ d="M121.181 78.6804C121.103 79.405 120.855 80.1012 120.458 80.7132C120.061 81.3252 119.526 81.8359 118.894 82.2042L97.927 94.3519C97.4017 94.6592 96.8206 94.8602 96.2171 94.9432C95.6136 95.0261 94.9996 94.9895 94.4104 94.8353C93.8211 94.6812 93.2683 94.4126 92.7836 94.0449C92.2989 93.6773 91.8919 93.2178 91.5861 92.693L91.162 91.9718C90.5452 90.9125 90.3752 89.6528 90.6893 88.4688C91.0034 87.2849 91.776 86.2733 92.8377 85.6558L93.3032 85.3879C93.2049 86.3628 93.4185 87.3437 93.9135 88.1905L94.3273 88.9014C94.6332 89.426 95.0401 89.8854 95.5245 90.2533C96.0089 90.6212 96.5613 90.8904 97.1503 91.0454C97.7392 91.2005 98.3531 91.2383 98.9567 91.1568C99.5603 91.0753 100.142 90.8761 100.668 90.5705L121.181 78.6804Z"
54
+ fill="#ECF1F7"
55
+ />
56
+ <path
57
+ d="M72.2334 54.416L98.1557 39.9294C98.1557 39.9294 102.48 55.1578 111.603 64.9152L86.3531 78.9793C84.5632 72.0801 81.4972 65.5738 77.3124 59.7944C75.8224 57.8216 74.1191 56.018 72.2334 54.416V54.416Z"
58
+ stroke="#9DA3AC"
59
+ stroke-miterlimit="10"
60
+ stroke-width="1.29167"
61
+ />
62
+ <path
63
+ d="M86.5174 25.1652L65.8128 36.0662C63.343 37.3665 62.398 40.4129 63.7022 42.8705C65.0063 45.328 68.0657 46.2662 70.5355 44.9658L91.2401 34.0649C93.7099 32.7645 94.6548 29.7181 93.3507 27.2606C92.0465 24.803 88.9872 23.8649 86.5174 25.1652Z"
64
+ stroke="#9DA3AC"
65
+ stroke-miterlimit="10"
66
+ stroke-width="1.29167"
67
+ />
68
+ <path
69
+ d="M24.8459 99.7356L22.0272 93.9174C20.9869 91.7701 18.3959 90.8693 16.2401 91.9055L16.2308 91.91C14.075 92.9462 13.1707 95.527 14.211 97.6743L17.0297 103.493C18.07 105.64 20.661 106.541 22.8168 105.504L22.8261 105.5C24.982 104.464 25.8862 101.883 24.8459 99.7356Z"
70
+ stroke="#9DA3AC"
71
+ stroke-miterlimit="10"
72
+ stroke-width="1.29167"
73
+ />
74
+ <path
75
+ d="M74.8077 53.1073C74.8077 53.1073 75.9145 47.492 71.1562 44.6379"
76
+ stroke="#9DA3AC"
77
+ stroke-miterlimit="10"
78
+ stroke-width="1.29167"
79
+ />
80
+ <path
81
+ d="M94.835 41.8768C93.4183 41.2139 92.2291 40.1498 91.416 38.8176C90.6028 37.4854 90.2018 35.9441 90.2629 34.3862"
82
+ stroke="#9DA3AC"
83
+ stroke-miterlimit="10"
84
+ stroke-width="1.29167"
85
+ />
86
+ <path
87
+ d="M113.437 73.7391L93.1969 85.4729C90.7825 86.8726 89.9632 89.9549 91.367 92.3574C92.7708 94.7599 95.8661 95.5728 98.2805 94.1731L118.521 82.4392C120.935 81.0395 121.755 77.9572 120.351 75.5548C118.947 73.1523 115.852 72.3393 113.437 73.7391Z"
88
+ stroke="#9DA3AC"
89
+ stroke-miterlimit="10"
90
+ stroke-width="1.29167"
91
+ />
92
+ <path
93
+ d="M88.4209 77.6396C88.4209 77.6396 93.7688 79.7003 93.7584 85.1199"
94
+ stroke="#9DA3AC"
95
+ stroke-miterlimit="10"
96
+ stroke-width="1.29167"
97
+ />
98
+ <path
99
+ d="M108.655 66.5637C108.471 68.1108 108.748 69.6778 109.453 71.0688C110.157 72.4597 111.258 73.6129 112.617 74.384"
100
+ stroke="#9DA3AC"
101
+ stroke-miterlimit="10"
102
+ stroke-width="1.29167"
103
+ />
104
+ <path
105
+ d="M77.3117 59.7942C73.0189 61.2985 22.0742 93.8881 22.0742 93.8881L25.1774 100.183C25.1774 100.183 75.2429 77.6603 83.7767 71.4267"
106
+ stroke="#9DA3AC"
107
+ stroke-miterlimit="10"
108
+ stroke-width="1.29167"
109
+ />
110
+ <path
111
+ d="M61.2471 69.3762L67.0087 80.2154"
112
+ stroke="#9DA3AC"
113
+ stroke-miterlimit="10"
114
+ stroke-width="1.29167"
115
+ />
116
+ <path
117
+ d="M112.244 118.977H128.288V129.208H70.7539V118.977H87.7492"
118
+ stroke="#9DA3AC"
119
+ stroke-miterlimit="10"
120
+ stroke-width="1.29167"
121
+ />
122
+ <path
123
+ d="M87.9048 118.894H73.123C73.123 115.992 74.2804 113.209 76.3406 111.157C78.4008 109.105 81.195 107.952 84.1085 107.952H114.934C116.377 107.951 117.806 108.233 119.139 108.782C120.473 109.332 121.684 110.138 122.705 111.154C123.725 112.17 124.534 113.377 125.086 114.705C125.637 116.034 125.921 117.457 125.919 118.894H111.696"
124
+ stroke="#9DA3AC"
125
+ stroke-miterlimit="10"
126
+ stroke-width="1.29167"
127
+ />
128
+ <path
129
+ d="M128.588 97.9475L139.408 94.2383"
130
+ stroke="#9DA3AC"
131
+ stroke-linecap="round"
132
+ stroke-linejoin="round"
133
+ stroke-width="1.29167"
134
+ />
135
+ <path
136
+ d="M130.625 106.087L141.9 108.076"
137
+ stroke="#9DA3AC"
138
+ stroke-linecap="round"
139
+ stroke-linejoin="round"
140
+ stroke-width="1.29167"
141
+ />
142
+ <path
143
+ d="M129.115 82.575L123.446 92.4868"
144
+ stroke="#9DA3AC"
145
+ stroke-linecap="round"
146
+ stroke-linejoin="round"
147
+ stroke-width="1.29167"
148
+ />
149
+ </g>
150
+ <defs>
151
+ <clipPath id="clip0_2571_138995">
152
+ <rect fill="white" height="105.682" transform="translate(13.251 24.0415)" width="129.167" />
153
+ </clipPath>
154
+ </defs>
155
+ </svg>
156
+ </template>
@@ -0,0 +1,108 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ height="120"
5
+ viewBox="0 0 120 120"
6
+ width="120"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="60" cy="60" fill="#BDC7CE" fill-opacity="0.15" r="50" />
10
+ <g clip-path="url(#clip0_7183_5869)">
11
+ <path
12
+ d="M79.5698 42.3733C81.2541 35.868 82.2276 29.1992 82.4734 22.4839L38.92 22.9001L37.4586 22.8323C37.1943 29.4567 36.2209 36.0337 34.555 42.4507C29.1641 62.7079 35.0679 85.0363 35.0679 85.0363H37.9715V84.9588H47.108C46.5984 86.8646 45.9779 88.7389 45.2498 90.5724C39.9847 103.764 48.2985 109.233 48.2985 109.233L51.0472 108.816L69.6881 106.474C70.2882 100.667 75.3113 95.8278 75.8823 90.3401C75.8823 90.1272 75.8823 89.9433 75.8823 89.7594V89.6626C75.8921 89.5273 75.8921 89.3914 75.8823 89.2561C75.8919 89.1143 75.8919 88.972 75.8823 88.8303C75.5548 87.5042 75.0295 86.235 74.3241 85.0653V84.9878H80.1312C80.1312 84.9878 74.2079 62.6401 79.5698 42.3733Z"
13
+ class="fill-white dark:fill-gray-900"
14
+ />
15
+ <path
16
+ d="M71.3828 84.417C72.4958 86.6527 72.7474 87.2431 72.5732 88.9272C72.0022 94.3665 66.979 99.2639 66.3789 105.061L69.3696 106.078C69.9793 100.27 74.9929 95.3828 75.5639 89.9435C75.7671 88.0077 75.3509 87.4464 73.8314 84.417H71.3828Z"
17
+ fill="#BDC7CE"
18
+ opacity="0.2"
19
+ />
20
+ <path
21
+ d="M69.3672 106.078C69.9769 100.271 74.9904 95.3829 75.5615 89.9436C75.755 88.0853 75.4066 87.4368 74.0032 84.6494"
22
+ stroke="#9DA3AC"
23
+ stroke-linecap="round"
24
+ stroke-linejoin="round"
25
+ stroke-width="0.967853"
26
+ />
27
+ <path
28
+ d="M55.1307 68.7183C55.1322 68.2797 55.2308 67.847 55.4194 67.451C55.608 67.0551 55.8819 66.7058 56.2215 66.4282C56.561 66.1507 56.9578 65.9517 57.3833 65.8457C57.8088 65.7396 58.2526 65.729 58.6827 65.8147C58.4285 65.3956 58.0738 65.0465 57.6508 64.7988C57.2279 64.551 56.7499 64.4125 56.26 64.3958C55.7701 64.379 55.2837 64.4845 54.8448 64.7027C54.4059 64.9209 54.0282 65.245 53.7459 65.6457C53.4635 66.0464 53.2854 66.5111 53.2276 66.9979C53.1698 67.4846 53.2341 67.9781 53.4148 68.4338C53.5954 68.8895 53.8867 69.293 54.2623 69.608C54.6379 69.9229 55.086 70.1394 55.5662 70.2378C55.2833 69.7813 55.1325 69.2553 55.1307 68.7183Z"
29
+ fill="#BDC7CE"
30
+ opacity="0.2"
31
+ />
32
+ <path
33
+ d="M56.1589 70.267C57.7946 70.267 59.1205 68.941 59.1205 67.3054C59.1205 65.6697 57.7946 64.3438 56.1589 64.3438C54.5232 64.3438 53.1973 65.6697 53.1973 67.3054C53.1973 68.941 54.5232 70.267 56.1589 70.267Z"
34
+ stroke="#9DA3AC"
35
+ stroke-miterlimit="10"
36
+ stroke-width="0.967853"
37
+ />
38
+ <path
39
+ d="M37.1406 22.4062C36.8708 29.0301 35.8975 35.6066 34.237 42.0246C28.8364 62.2818 34.75 84.6102 34.75 84.6102H37.6535C36.2598 77.6513 33.6369 57.8394 37.7794 42.2763C39.4671 35.8199 40.4855 29.2068 40.8184 22.5418L37.1406 22.4062Z"
40
+ fill="#BDC7CE"
41
+ opacity="0.2"
42
+ />
43
+ <path
44
+ d="M44.4354 43.7767C44.4354 37.6792 51.5879 32.7335 60.4147 32.7335C64.1 32.6813 67.7312 33.6242 70.9256 35.4628C68.0994 32.3366 63.0956 30.2461 57.3756 30.2461C48.5488 30.2461 41.3867 35.1918 41.3867 41.2893C41.3867 44.609 43.516 47.5707 46.8647 49.5935C45.3507 48.0301 44.4831 45.9525 44.4354 43.7767Z"
45
+ fill="#BDC7CE"
46
+ opacity="0.2"
47
+ />
48
+ <path
49
+ d="M59.4474 41.3667H49.4785"
50
+ stroke="#9DA3AC"
51
+ stroke-linecap="round"
52
+ stroke-linejoin="round"
53
+ stroke-width="0.967853"
54
+ />
55
+ <path
56
+ d="M63.3105 36.1597V46.5738"
57
+ stroke="#9DA3AC"
58
+ stroke-linecap="round"
59
+ stroke-linejoin="round"
60
+ stroke-width="0.967853"
61
+ />
62
+ <path
63
+ d="M59.4473 36.1597V46.5738"
64
+ stroke="#9DA3AC"
65
+ stroke-linecap="round"
66
+ stroke-linejoin="round"
67
+ stroke-width="0.967853"
68
+ />
69
+ <path
70
+ d="M57.3678 52.3325C66.1983 52.3325 73.3568 47.3883 73.3568 41.2893C73.3568 35.1903 66.1983 30.2461 57.3678 30.2461C48.5374 30.2461 41.3789 35.1903 41.3789 41.2893C41.3789 47.3883 48.5374 52.3325 57.3678 52.3325Z"
71
+ stroke="#9DA3AC"
72
+ stroke-miterlimit="10"
73
+ stroke-width="0.967853"
74
+ />
75
+ <path
76
+ d="M56.9023 84.5911H79.7921C79.7921 84.5911 73.8882 62.2336 79.2791 42.0055C80.9582 35.4959 81.9316 28.8244 82.1827 22.1064"
77
+ stroke="#9DA3AC"
78
+ stroke-miterlimit="10"
79
+ stroke-width="0.967853"
80
+ />
81
+ <path
82
+ d="M37.6016 22.4839C37.3438 29.0547 36.3866 35.5794 34.7464 41.9474C29.3555 62.2143 35.2594 84.533 35.2594 84.533H46.9704"
83
+ stroke="#9DA3AC"
84
+ stroke-miterlimit="10"
85
+ stroke-width="0.967853"
86
+ />
87
+ <path
88
+ d="M47.8249 66.5791C48.7928 69.3375 49.4315 78.9773 44.9213 90.1754C39.6659 103.367 47.9798 108.845 47.9798 108.845L50.7285 108.419C50.7285 108.419 42.4146 102.961 47.6701 89.7592C51.9189 79.1128 51.5415 69.8408 50.6607 66.6081C50.2238 66.3801 49.7392 66.2586 49.2463 66.2536C48.7535 66.2485 48.2664 66.3601 47.8249 66.5791Z"
89
+ fill="#BDC7CE"
90
+ opacity="0.2"
91
+ />
92
+ <path
93
+ d="M48.1926 108.788C48.1926 108.788 39.8788 103.319 45.1342 90.1273C49.596 78.9292 48.9379 69.2895 47.9894 66.5311C47.9894 66.5311 49.1798 65.7181 51.2123 66.7053C57.5711 69.8218 53.7481 83.633 57.9873 85.7042"
94
+ stroke="#9DA3AC"
95
+ stroke-width="0.967853"
96
+ stroke-linecap="round"
97
+ stroke-linejoin="round"
98
+ />
99
+ <path
100
+ d="M32.4844 22.4839H87.5165"
101
+ stroke="#9DA3AC"
102
+ stroke-width="0.967853"
103
+ stroke-linecap="round"
104
+ stroke-linejoin="round"
105
+ />
106
+ </g>
107
+ </svg>
108
+ </template>
@@ -0,0 +1,39 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ height="120"
5
+ viewBox="0 0 121 120"
6
+ width="121"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="60.585" cy="60" fill="#BDC7CE" fill-opacity="0.15" r="50" />
10
+ <path
11
+ d="M65.6611 89.7397C62.6654 85.595 70.556 66.1275 70.556 57.0961C70.556 49.1232 61.9801 42.5153 44.1234 51.3093L43.585 55.5728C43.585 55.5728 49.7134 52.9613 53.1301 54.6924C58.6417 57.5017 48.989 76.0492 48.989 88.4439C48.989 96.862 58.8277 103.529 75.3628 94.7846L76.4495 90.4223C76.4495 90.4223 68.4512 93.6965 65.6611 89.7397Z"
12
+ class="fill-white dark:fill-gray-900"
13
+ />
14
+ <path
15
+ d="M68.0694 38.9837C73.3248 38.9837 77.5852 34.9579 77.5852 29.9918C77.5852 25.0258 73.3248 21 68.0694 21C62.814 21 58.5537 25.0258 58.5537 29.9918C58.5537 34.9579 62.814 38.9837 68.0694 38.9837Z"
16
+ class="fill-white dark:fill-gray-900"
17
+ />
18
+ <path
19
+ d="M76.3809 91.045L75.4019 94.893C58.857 103.628 49.0183 96.9604 49.0183 88.5522C49.0183 76.1576 58.6808 57.6002 53.1594 54.8007C49.7525 53.0597 43.6143 55.6712 43.6143 55.6712L44.1527 51.4078C44.975 50.9923 45.7876 50.6164 46.5708 50.2801C49.5077 49.0238 54.2754 47.3125 57.3396 47.3125C74.1488 47.3125 51.221 85.0307 59.1507 92.2815C63.9184 96.6637 72.5432 93.1421 76.3809 91.045Z"
20
+ fill="#BDC7CE"
21
+ opacity="0.2"
22
+ />
23
+ <path
24
+ d="M72.0641 35.9168C66.8167 35.9168 62.5582 31.8907 62.5582 26.9249C62.566 24.9743 63.2287 23.0841 64.4378 21.5635C62.6996 22.1628 61.1863 23.2886 60.1038 24.7877C59.0213 26.2868 58.4221 28.0866 58.3877 29.942C58.3877 34.888 62.6463 38.9338 67.9034 38.9338C69.3605 38.9502 70.8026 38.6351 72.1227 38.0118C73.4429 37.3885 74.6073 36.473 75.5297 35.3331C74.4171 35.7305 73.2442 35.928 72.0641 35.9168Z"
25
+ fill="#BDC7CE"
26
+ opacity="0.2"
27
+ />
28
+ <path
29
+ d="M44.183 51.3687L43.6445 55.6322C43.6445 55.6322 49.773 53.0207 53.1896 54.7518C58.7013 57.5611 49.0485 76.1086 49.0485 88.5033C49.0485 96.9214 58.8873 103.589 75.4224 94.844L76.509 90.4817C76.509 90.4817 68.452 93.6966 65.6619 89.7398C62.6662 85.595 70.5568 66.1276 70.5568 57.0962C70.596 49.1826 62.0201 42.5747 44.183 51.3687Z"
30
+ stroke="#9DA3AC"
31
+ stroke-miterlimit="10"
32
+ />
33
+ <path
34
+ d="M68.0694 38.9837C73.3248 38.9837 77.5852 34.9579 77.5852 29.9918C77.5852 25.0258 73.3248 21 68.0694 21C62.814 21 58.5537 25.0258 58.5537 29.9918C58.5537 34.9579 62.814 38.9837 68.0694 38.9837Z"
35
+ stroke="#9DA3AC"
36
+ stroke-miterlimit="10"
37
+ />
38
+ </svg>
39
+ </template>
@@ -0,0 +1,68 @@
1
+ <template>
2
+ <svg
3
+ width="120"
4
+ height="120"
5
+ viewBox="0 0 120 120"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="60" cy="60" r="50" fill="#BDC7CE" fill-opacity="0.15" />
10
+ <g clip-path="url(#clip0_632_38864)">
11
+ <path
12
+ d="M92.8042 26.9404L14.4934 43.7382C11.6898 44.3396 9.90631 47.0916 10.5099 49.8849L21.0201 98.5231C21.6237 101.316 24.3858 103.093 27.1895 102.492L105.5 85.694C108.304 85.0926 110.087 82.3407 109.484 79.5474L98.9735 30.9092C98.3699 28.1159 95.6078 26.339 92.8042 26.9404Z"
13
+ class="fill-white dark:fill-gray-900"
14
+ stroke="#9DA3AC"
15
+ stroke-linecap="round"
16
+ stroke-linejoin="round"
17
+ />
18
+ <path
19
+ opacity="0.6"
20
+ d="M59.0281 74.5052C54.9583 75.3781 51.6452 71.0138 44.6366 66.6813C30.4362 57.9131 17.6455 49.4702 17.6455 49.4702L19.4853 58.1987L49.0727 76.9095C53.8513 79.3773 61.8156 78.0998 65.9969 72.7675C65.0651 72.5135 63.9182 73.4578 59.0281 74.5052Z"
21
+ fill="#BDC7CE"
22
+ fill-opacity="0.4"
23
+ />
24
+ <path
25
+ opacity="0.6"
26
+ d="M32.9133 90.2793C32.1016 90.4541 31.2633 90.4678 30.4463 90.3195C29.6294 90.1711 28.8498 89.8638 28.1522 89.4149C27.4546 88.966 26.8527 88.3845 26.3809 87.7036C25.9092 87.0228 25.5768 86.2559 25.4029 85.4468L17.4943 48.8584L12.6122 46.2002C11.9273 46.351 10.0158 47.5809 10.7485 50.9612L20.7916 97.4049C20.9655 98.2131 21.2976 98.9792 21.7689 99.6595C22.2401 100.34 22.8412 100.921 23.5379 101.37C24.2346 101.818 25.0132 102.126 25.8293 102.275C26.6454 102.424 27.4828 102.411 28.2939 102.237L104.401 85.915C106.033 85.5517 107.457 84.5635 108.365 83.1635C109.272 81.7635 109.59 80.0642 109.251 78.4323L108.311 74.0918L32.9133 90.2793Z"
27
+ fill="#BDC7CE"
28
+ fill-opacity="0.4"
29
+ />
30
+ <path
31
+ d="M11.9668 45.7337L54.0343 72.8397C55.1788 73.5768 56.4581 74.0815 57.7988 74.3249C59.1396 74.5682 60.5153 74.5455 61.8471 74.258C63.179 73.9705 64.4408 73.4239 65.5602 72.6494C66.6796 71.875 67.6344 70.888 68.3701 69.7451L95.3692 27.6895"
32
+ stroke="#9DA3AC"
33
+ stroke-linecap="round"
34
+ stroke-linejoin="round"
35
+ />
36
+ <path
37
+ d="M75.7539 58.3975L107.707 83.5277"
38
+ stroke="#9DA3AC"
39
+ stroke-linecap="round"
40
+ stroke-linejoin="round"
41
+ />
42
+ <path
43
+ d="M41.26 64.9917L23.8818 101.509"
44
+ stroke="#9DA3AC"
45
+ stroke-linecap="round"
46
+ stroke-linejoin="round"
47
+ />
48
+ <path
49
+ d="M95.7674 37.6789C101.222 37.6789 105.643 33.2736 105.643 27.8394C105.643 22.4053 101.222 18 95.7674 18C90.3131 18 85.8916 22.4053 85.8916 27.8394C85.8916 33.2736 90.3131 37.6789 95.7674 37.6789Z"
50
+ class="fill-red-500 dark:fill-red-400"
51
+ />
52
+ <path
53
+ d="M98.1412 32.433L96.4926 32.79L95.075 26.204C94.8998 25.4105 94.7883 24.7915 94.7245 24.3234C94.6369 24.4583 94.5334 24.609 94.406 24.7757C94.2785 24.9423 93.8485 25.4898 93.1158 26.3627L92.0645 25.4978L94.5653 22.4983L95.9351 22.1968L98.1412 32.433Z"
54
+ class="fill-white dark:fill-gray-900"
55
+ />
56
+ </g>
57
+ <defs>
58
+ <clipPath id="clip0_632_38864">
59
+ <rect
60
+ width="100"
61
+ height="85"
62
+ class="fill-white dark:fill-gray-900"
63
+ transform="translate(10 18)"
64
+ />
65
+ </clipPath>
66
+ </defs>
67
+ </svg>
68
+ </template>
@@ -0,0 +1,62 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ height="100"
5
+ viewBox="0 0 100 100"
6
+ width="100"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="50" cy="50" fill="#BDC7CE" fill-opacity="0.15" r="50" />
10
+ <g clip-path="url(#clip0_4885_6406)">
11
+ <path
12
+ d="M49.9731 38.5897C49.9731 38.5897 52.8662 38.5895 62.018 35.7145C71.1698 32.8395 75.5355 32.4468 77.3391 35.8039C78.3927 37.7503 76.9284 39.1074 77.5802 41.7592C78.1695 44.1074 83.0089 44.2148 83.0625 48.4469C83.116 52.0808 80.0356 53.804 80.0356 55.9647C80.0356 58.1254 83.3572 58.6966 83.3572 62.4466C83.3572 66.1966 80.7767 66.4201 80.7767 70.0808C80.7767 73.7415 82.7948 73.3396 81.7323 76.6521C80.6698 79.9646 70.3395 84.0539 55.4288 86.4735C52.0734 86.8608 48.87 88.0892 46.1162 90.045C42.5864 92.8561 39.3686 96.038 36.5179 99.5359L13.4375 77.2145C20 70.5984 26.6699 63.527 28.1967 60.643C31.5717 54.277 29.0267 46.2951 30.1428 42.179C31.2589 38.063 37.0356 33.7234 37.6785 23.6431C37.9285 19.7681 37.6787 14.5894 37.7234 12.5983C37.7234 11.6519 46.5002 11.7058 46.5002 22.5362C46.5092 29.2237 44.7231 34.0986 49.9731 38.5897Z"
13
+ class="fill-white dark:fill-gray-900"
14
+ />
15
+ <path
16
+ d="M42.803 14.0001C42.803 16.0001 43.0173 21.1431 42.803 25.0449C42.1512 35.1342 36.3923 39.4643 35.2673 43.5804C34.1423 47.6965 36.6868 55.6788 33.3207 62.0448C31.785 64.9288 25.1243 72.0002 18.5529 78.6163L13.7402 77.25C20.3027 70.6339 26.9726 63.5627 28.4994 60.6698C31.8744 54.3127 29.3297 46.3306 30.4547 42.2145C31.5797 38.0984 37.3386 33.7591 37.9904 23.6699C38.2404 19.8038 37.9904 14.6249 37.9904 12.6338C37.9904 12.107 40.7581 11.8927 43.1866 13.7142C42.9366 13.7767 42.8119 13.8841 42.803 14.0001Z"
17
+ fill="#BDC7CE"
18
+ opacity="0.2"
19
+ />
20
+ <path
21
+ d="M13.4727 77.2503C20.0352 70.6342 26.7046 63.5627 28.2314 60.6788C31.5975 54.3127 29.053 46.3309 30.178 42.2148C31.303 38.0987 37.0619 33.7592 37.7136 23.6789C37.9636 19.8039 37.7139 14.6252 37.7585 12.6341C37.7585 11.6877 46.535 11.7416 46.535 22.5719C46.535 29.2237 44.7494 34.0987 50.0083 38.5897"
22
+ stroke="#9DA3AC"
23
+ stroke-linecap="round"
24
+ stroke-linejoin="round"
25
+ stroke-width="0.920439"
26
+ />
27
+ <path
28
+ d="M44.3398 39.5984C50.333 38.7991 56.2475 37.4909 62.0187 35.6878C71.1705 32.7771 75.5365 32.42 77.349 35.7772C78.4025 37.7236 76.9293 39.0807 77.59 41.7325C78.1704 44.0807 83.0098 44.1876 83.0723 48.4197C83.117 52.0537 80.0362 53.7768 80.0362 55.9375C80.0362 58.0982 83.3579 58.6699 83.3579 62.4199C83.3579 66.1699 80.7865 66.3929 80.7865 70.0536C80.7865 73.7144 82.8042 73.3129 81.7417 76.6254C80.6792 79.9379 70.3402 84.0272 55.4295 86.4468C52.0748 86.837 48.8722 88.0652 46.1168 90.0182C42.5902 92.83 39.3752 96.0118 36.5273 99.5092"
29
+ stroke="#9DA3AC"
30
+ stroke-linecap="round"
31
+ stroke-linejoin="round"
32
+ stroke-width="0.920439"
33
+ />
34
+ <path
35
+ d="M81.8749 76.6431C80.7767 80.0717 70.4821 84.0449 55.5713 86.4646C52.217 86.8563 49.0152 88.0843 46.2591 90.036C42.7272 92.8447 39.5091 96.0267 36.6609 99.527L35.125 93.4016C39.0804 88.7766 45.6517 82.0269 55.5713 80.3127C68.6963 78.0537 78.2681 74.8128 81.0984 71.7324C81.5627 73.7146 82.741 73.9556 81.8749 76.6431Z"
36
+ fill="#BDC7CE"
37
+ opacity="0.2"
38
+ />
39
+ <path
40
+ d="M28.7051 0.446411L33.6515 6.18748"
41
+ stroke="#9DA3AC"
42
+ stroke-linecap="round"
43
+ stroke-linejoin="round"
44
+ stroke-width="0.920439"
45
+ />
46
+ <path
47
+ d="M23.8398 14.9197L31.7863 15.5715"
48
+ stroke="#9DA3AC"
49
+ stroke-linecap="round"
50
+ stroke-linejoin="round"
51
+ stroke-width="0.920439"
52
+ />
53
+ <path
54
+ d="M43.3047 7.2678L47.9654 1.02673"
55
+ stroke="#9DA3AC"
56
+ stroke-width="0.920439"
57
+ stroke-linecap="round"
58
+ stroke-linejoin="round"
59
+ />
60
+ </g>
61
+ </svg>
62
+ </template>