adata-ui 0.3.99 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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 +203 -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 +57 -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 +89 -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 +114 -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 +58 -69
  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
@@ -1,293 +0,0 @@
1
- <template>
2
- <div class="profile-menu">
3
- <div class="profile-menu__header">
4
- <div class="tariff">
5
- <div class="tariff__label">
6
- Тариф
7
- </div>
8
- <div class="tariff__value">
9
- <div class="tariff__text">
10
- {{ rate || "Базовый" }}
11
- </div>
12
- <div class="tariff__badge">
13
- Подключен
14
- </div>
15
- </div>
16
- </div>
17
-
18
- <div class="balance">
19
- <div class="balance__wrapper">
20
- <div class="balance__title">Текущий баланс:</div>
21
- <div class="balance__badge">{{ balance || 0 }} ₸</div>
22
- </div>
23
- <a-button size="extra_sm" variant="blue_outlined" :url="links.balance[mode]">Пополнить</a-button>
24
- </div>
25
- </div>
26
-
27
- <div class="profile-menu__main">
28
- <div class="profile-links">
29
- <a :href="links.profile[mode]" onclick="`return false`" class="profile-link">
30
- <div class="profile-link__icon">
31
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
32
- <circle cx="12" cy="7.5" r="4.5" stroke="#2C3E50" stroke-width="2"/>
33
- <path
34
- d="M20 21C20 21.5523 20.4477 22 21 22C21.5523 22 22 21.5523 22 21H20ZM2 21C2 21.5523 2.44772 22 3 22C3.55228 22 4 21.5523 4 21H2ZM12 13C16.4183 13 20 16.5817 20 21H22C22 15.4772 17.5228 11 12 11V13ZM4 21C4 16.5817 7.58172 13 12 13V11C6.47715 11 2 15.4772 2 21H4Z"
35
- fill="#2C3E50"/>
36
- </svg>
37
- </div>
38
- <div class="profile-link__text">Личный кабинет</div>
39
- </a>
40
- <a :href="links.tenders[mode]" onclick="`return false`" class="profile-link">
41
- <div class="profile-link__icon">
42
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
43
- <path
44
- d="M20.083 15.2001L21.285 15.9211C21.3591 15.9655 21.4205 16.0283 21.4631 16.1035C21.5058 16.1787 21.5282 16.2636 21.5282 16.3501C21.5282 16.4365 21.5058 16.5214 21.4631 16.5966C21.4205 16.6718 21.3591 16.7347 21.285 16.7791L12.515 22.0411C12.3594 22.1345 12.1814 22.1839 12 22.1839C11.8185 22.1839 11.6405 22.1345 11.485 22.0411L2.71498 16.7791C2.64082 16.7347 2.57944 16.6718 2.53682 16.5966C2.4942 16.5214 2.4718 16.4365 2.4718 16.3501C2.4718 16.2636 2.4942 16.1787 2.53682 16.1035C2.57944 16.0283 2.64082 15.9655 2.71498 15.9211L3.91698 15.2001L12 20.0501L20.083 15.2001ZM20.083 10.5001L21.285 11.2211C21.3591 11.2655 21.4205 11.3283 21.4631 11.4035C21.5058 11.4787 21.5282 11.5636 21.5282 11.6501C21.5282 11.7365 21.5058 11.8214 21.4631 11.8966C21.4205 11.9718 21.3591 12.0347 21.285 12.0791L12 17.6501L2.71498 12.0791C2.64082 12.0347 2.57944 11.9718 2.53682 11.8966C2.4942 11.8214 2.4718 11.7365 2.4718 11.6501C2.4718 11.5636 2.4942 11.4787 2.53682 11.4035C2.57944 11.3283 2.64082 11.2655 2.71498 11.2211L3.91698 10.5001L12 15.3501L20.083 10.5001ZM12.514 1.30907L21.285 6.57107C21.3591 6.61546 21.4205 6.67832 21.4631 6.75351C21.5058 6.82869 21.5282 6.91364 21.5282 7.00007C21.5282 7.0865 21.5058 7.17145 21.4631 7.24663C21.4205 7.32182 21.3591 7.38468 21.285 7.42907L12 13.0001L2.71498 7.42907C2.64082 7.38468 2.57944 7.32182 2.53682 7.24663C2.4942 7.17145 2.4718 7.0865 2.4718 7.00007C2.4718 6.91364 2.4942 6.82869 2.53682 6.75351C2.57944 6.67832 2.64082 6.61546 2.71498 6.57107L11.485 1.30907C11.6405 1.21563 11.8185 1.16626 12 1.16626C12.1814 1.16626 12.3594 1.21563 12.515 1.30907H12.514ZM12 3.33207L5.88698 7.00007L12 10.6681L18.113 7.00007L12 3.33207Z"
45
- fill="#2C3E50"/>
46
- </svg>
47
- </div>
48
- <div class="profile-link__text">Тендеры Шаблоны</div>
49
- </a>
50
- <a :href="links.work[mode]" onclick="`return false`" class="profile-link">
51
- <div class="profile-link__icon">
52
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
53
- <path d="M7 5V2C7 1.73478 7.10536 1.48043 7.29289 1.29289C7.48043 1.10536 7.73478 1 8 1H16C16.2652 1 16.5196 1.10536 16.7071 1.29289C16.8946 1.48043 17 1.73478 17 2V5H21C21.2652 5 21.5196 5.10536 21.7071 5.29289C21.8946 5.48043 22 5.73478 22 6V20C22 20.2652 21.8946 20.5196 21.7071 20.7071C21.5196 20.8946 21.2652 21 21 21H3C2.73478 21 2.48043 20.8946 2.29289 20.7071C2.10536 20.5196 2 20.2652 2 20V6C2 5.73478 2.10536 5.48043 2.29289 5.29289C2.48043 5.10536 2.73478 5 3 5H7ZM20 13H4V19H20V13ZM20 7H4V11H7V9H9V11H15V9H17V11H20V7ZM9 3V5H15V3H9Z" fill="#2C3E50"/>
54
- </svg>
55
- </div>
56
- <div class="profile-link__text">Профиль Работа</div>
57
- </a>
58
- <a :href="links.favourites[mode] + `${tab ? '?tab=' + tab : ''}`" onclick="`return false`" class="profile-link" target="_blank">
59
- <div class="profile-link__icon">
60
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
61
- <path d="M5 2H19C19.2652 2 19.5196 2.10536 19.7071 2.29289C19.8946 2.48043 20 2.73478 20 3V22.143C20.0001 22.2324 19.9763 22.3202 19.9309 22.3973C19.8855 22.4743 19.8204 22.5378 19.7421 22.5811C19.6639 22.6244 19.5755 22.6459 19.4861 22.6434C19.3968 22.641 19.3097 22.6146 19.234 22.567L12 18.03L4.766 22.566C4.69037 22.6135 4.60339 22.6399 4.5141 22.6424C4.42482 22.6449 4.33649 22.6235 4.2583 22.5803C4.1801 22.5371 4.11491 22.4738 4.06948 22.3969C4.02406 22.32 4.00007 22.2323 4 22.143V3C4 2.73478 4.10536 2.48043 4.29289 2.29289C4.48043 2.10536 4.73478 2 5 2ZM18 4H6V19.432L12 15.671L18 19.432V4Z" fill="#2C3E50"/>
62
- </svg>
63
- </div>
64
- <div class="profile-link__text">Избранные</div>
65
- </a>
66
- <a :href="links.views[mode]" onclick="`return false`" class="profile-link">
67
- <div class="profile-link__icon">
68
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
69
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
70
- <path d="M4.50049 12.75C4.50049 11.1183 4.98434 9.52325 5.89086 8.16655C6.79738 6.80984 8.08586 5.75242 9.59335 5.12799C11.1008 4.50357 12.7596 4.34019 14.36 4.65852C15.9603 4.97685 17.4303 5.76259 18.5841 6.91637C19.7379 8.07015 20.5236 9.54016 20.842 11.1405C21.1603 12.7408 20.9969 14.3996 20.3725 15.9071C19.7481 17.4146 18.6906 18.7031 17.3339 19.6096C15.9772 20.5161 14.3822 21 12.7505 21" stroke="#2C3E50" stroke-width="2" stroke-linecap="round"/>
71
- <path d="M13.5005 9V12.75L9.00049 16.5" stroke="#2C3E50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
72
- <path d="M2 11L4.5 14L7 11" stroke="#2C3E50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
73
- </svg>
74
- </svg>
75
- </div>
76
- <div class="profile-link__text">История просмотров</div>
77
- </a>
78
- </div>
79
-
80
- <div class="exit" @click="$emit('logout')">
81
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
82
- <path d="M4 18H6V20H18V4H6V6H4V3C4 2.73478 4.10536 2.48043 4.29289 2.29289C4.48043 2.10536 4.73478 2 5 2H19C19.2652 2 19.5196 2.10536 19.7071 2.29289C19.8946 2.48043 20 2.73478 20 3V21C20 21.2652 19.8946 21.5196 19.7071 21.7071C19.5196 21.8946 19.2652 22 19 22H5C4.73478 22 4.48043 21.8946 4.29289 21.7071C4.10536 21.5196 4 21.2652 4 21V18ZM6 11H13V13H6V16L1 12L6 8V11Z" fill="white"/>
83
- </svg>
84
- <div class="exit__text">Выход</div>
85
- </div>
86
- </div>
87
- </div>
88
- </template>
89
-
90
- <script>
91
- export default {
92
- props: {
93
- mode: {
94
- type: String,
95
- required: true,
96
- },
97
- rate: {
98
- type: String,
99
- required: true
100
- },
101
- balance: {
102
- type: String,
103
- required: true
104
- },
105
- tab: {
106
- type: String,
107
- default: ""
108
- }
109
- },
110
- data() {
111
- return {
112
- links: {
113
- balance: {
114
- 'prod': 'https://adata.kz/profile?modal=show',
115
- 'dev': 'https://adtdev.kz/profile?modal=show',
116
- 'staging': 'https://adada.kz/profile?modal=show',
117
- },
118
- profile: {
119
- 'prod': 'https://adata.kz/profile',
120
- 'dev': 'https://adtdev.kz/profile',
121
- 'staging': 'https://adada.kz/profile',
122
- },
123
- tenders: {
124
- 'prod': 'https://tender.adata.kz/profile/search-profile',
125
- 'dev': 'https://tender.adtdev.kz/profile/search-profile',
126
- 'staging': 'https://tender.adada.kz/profile/search-profile',
127
- },
128
- work: {
129
- 'prod': 'https://work.adata.kz/profile/account',
130
- 'dev': 'https://work.adtdev.kz/profile/account' ,
131
- 'staging': 'https://work.adada.kz/profile/account',
132
- },
133
- favourites: {
134
- 'prod': 'https://adata.kz/favourites',
135
- 'dev': 'https://adtdev.kz/favourites' ,
136
- 'staging': 'https://adada.kz/favourites',
137
- },
138
- views: {
139
- 'prod': 'https://adata.kz/profile/views',
140
- 'dev': 'https://adtdev.kz/profile/views' ,
141
- 'staging': 'https://adada.kz/profile/views',
142
- },
143
- }
144
- }
145
- }
146
- }
147
- </script>
148
-
149
- <style lang="scss">
150
- .profile-menu {
151
- width: 400px;
152
- background: #fff;
153
- box-shadow: 0 4px 8px rgba(157, 163, 172, 0.4);
154
- border-radius: 2px;
155
-
156
- &__header {
157
- padding: 16px 16px 16px 32px;
158
- background: rgba(189, 199, 206, 0.3);
159
- }
160
-
161
- &__main {
162
- background: #fff;
163
- padding: 16px;
164
- }
165
- }
166
-
167
- .tariff {
168
- display: flex;
169
- flex-direction: column;
170
- gap: 4px;
171
- margin-bottom: 16px;
172
-
173
- &__label {
174
- font-weight: 500;
175
- font-size: 14px;
176
- color: #71757A;
177
- }
178
-
179
- &__value {
180
- display: flex;
181
- align-items: center;
182
- gap: 16px;
183
- font-weight: 600;
184
- font-size: 16px;
185
- color: #2C3E50;
186
- }
187
-
188
- &__badge {
189
- padding: 4px;
190
- background: #4CAF50;
191
- border: 0.5px solid #4CAF50;
192
- border-radius: 2px;
193
-
194
- font-weight: 400;
195
- font-size: 10px;
196
- color: #FFFFFF;
197
- }
198
- }
199
-
200
- .balance {
201
- display: flex;
202
- justify-content: space-between;
203
- align-items: center;
204
-
205
- &__wrapper {
206
- display: flex;
207
- align-items: center;
208
- gap: 8px;
209
- }
210
-
211
- &__title {
212
- font-weight: 400;
213
- font-size: 12px;
214
- color: #2C3E50;
215
- }
216
-
217
- &__badge {
218
- padding: 4px 10px;
219
- background: #007AFF;
220
- border-radius: 100px;
221
- font-weight: 400;
222
- font-size: 12px;
223
- color: #FFFFFF;
224
- }
225
- }
226
-
227
- .profile-links {
228
- display: flex;
229
- flex-direction: column;
230
- }
231
-
232
- .profile-link {
233
- display: flex;
234
- align-items: center;
235
- gap: 18px;
236
- padding: 10px 16px;
237
- border-radius: 2px;
238
- transition: .3s;
239
-
240
- font-weight: 500;
241
- font-size: 14px;
242
- color: #2C3E50;
243
-
244
- &:hover {
245
- background: rgba(0, 122, 255, 0.12);
246
- }
247
- }
248
-
249
- .exit {
250
- display: flex;
251
- align-items: center;
252
- justify-content: flex-start;
253
- margin-top: 16px;
254
- padding-left: 16px;
255
- background: #007AFF;
256
- height: 40px;
257
- border-radius: 0 0 2px 2px;
258
- cursor: pointer;
259
- gap: 10px;
260
-
261
- font-weight: 500;
262
- font-size: 14px;
263
- line-height: 20px;
264
- color: #fff;
265
-
266
- &:hover {
267
- background: #9da3ac;
268
- color: #fff;
269
- }
270
-
271
- &:hover svg {
272
- stroke: #fff;
273
- background: #9da3ac;
274
- }
275
-
276
- svg {
277
- margin-right: 8px;
278
- background: #007AFF;
279
- fill: none !important;
280
- transition: all 0s;
281
- }
282
-
283
- &:active {
284
- background: #0055bb;
285
- color: #fff;
286
- }
287
-
288
- &:active svg {
289
- stroke: #fff;
290
- background: #0055bb;
291
- }
292
- }
293
- </style>
@@ -1,308 +0,0 @@
1
- <template>
2
- <div class="menu_mobile">
3
- <div @click="$emit('changeValue')" class="empty-space"></div>
4
- <div class="menu-wrapper">
5
- <div class="mobile-table-head">
6
- <div class="mobile-table-head-left" @click.stop="$emit('close')">
7
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
8
- <path d="M9.9996 8.00317L5.9996 12.0097L9.99958 16.0032" stroke="#007AFF" stroke-width="1.2"
9
- stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
10
- <path d="M6 12L18 12" stroke="#007AFF" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round"
11
- stroke-linejoin="round"/>
12
- </svg>
13
- <span>{{ email }}</span>
14
- </div>
15
- </div>
16
- <div class="mobile-table-body">
17
- <p>Тариф {{ rate }}</p>
18
- <p>Суточный лимит запросов: <span>{{ +limitRemaining }}</span></p>
19
- <p>Остаток дней по тарифу: <span>{{ daysLeft }}</span></p>
20
- <a :href="profileDropDown[0][mode] || '/'" class="button">Увеличить лимит запросов</a>
21
- </div>
22
- <div class="mobile-table-item">
23
- <p class="mobile-table-item__title">
24
- Платежи
25
- </p>
26
- <div class="mobile-table-item__text">
27
- <p>Текущий баланс: <span>{{ balance + " ₸" }}</span></p>
28
- <a
29
- :href="profileDropDown[1][mode]"
30
- onclick="return false"
31
- @click="showModal(profileDropDown[1][mode])"
32
- class="button"
33
- >
34
- Пополнить
35
- </a>
36
- </div>
37
- <a :href="profileDropDown[2][mode]" class="p">История платежей</a>
38
- </div>
39
- <div class="mobile-table-item">
40
- <p class="mobile-table-item__title">
41
- Профиль пользователя
42
- </p>
43
- <div
44
- v-for="(item, id) in profileDropDown.filter(el => el.children)"
45
- :key="'child' + id"
46
- class="mobile-table-item__text wrapped"
47
- >
48
- <div @click="openOneCloseOthers(id)" class="wrapped__text" :class="{'active': item.opened}">
49
- <p>{{ item.name }}</p>
50
- <div class="svg-wrapper" :class="{'rotated': item.opened}">
51
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
52
- <path d="M4.5 9L12 15L19.5 9" stroke="#2C3E50" stroke-linecap="round" stroke-linejoin="round"/>
53
- </svg>
54
- </div>
55
- </div>
56
- <SlideToggle>
57
- <div v-show="item.opened" class="mobile-table-item__children">
58
- <a
59
- v-for="(elem, id) in item.children" :key="'elem' + id"
60
- :href="elem[mode]"
61
- :target="elem.name === 'Избранные' ? '_blank' : '_self'"
62
- >
63
- {{ elem.name }}
64
- </a>
65
- </div>
66
- </SlideToggle>
67
- </div>
68
- </div>
69
- <div class="mobile-table-item">
70
- <p class="mobile-table-item__title">
71
- Общие настройки
72
- </p>
73
- <a :href="profileDropDown[3][mode]" class="p">Личная информация</a>
74
- </div>
75
- <div class="menu_mobile-footer">
76
- <button class="sign" @click="$emit('logout')">
77
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
78
- <path d="M16.5 15L19.5 12L16.5 9" stroke="white" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
79
- <path d="M15 16.875L15 19.5L4.5 19.5L4.5 4.5L15 4.5L15 6.5625" stroke="white" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
80
- <path d="M19 12H8" stroke="white" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
81
- </svg>
82
- <span>Выход</span>
83
- </button>
84
- </div>
85
- </div>
86
- </div>
87
- </template>
88
-
89
- <script>
90
- import {profileDropDown} from "../../configs/profileDropDown";
91
- import SlideToggle from "../transitions/SlideToggle";
92
-
93
- export default {
94
- name: "ProfileMobile",
95
- props: {
96
- email: {
97
- type: String,
98
- required: true
99
- },
100
- balance: {
101
- type: [Number, String],
102
- default: ""
103
- },
104
- rate: {
105
- type: String,
106
- default: 'Базовый'
107
- },
108
- limitRemaining: {
109
- type: Number,
110
- default: 0
111
- },
112
- daysLeft: {
113
- type: [Number, String],
114
- default: 0
115
- },
116
- mode: {
117
- type: String,
118
- required: true
119
- },
120
- activeTabKey: {
121
- type: String,
122
- default: ""
123
- }
124
- },
125
- components: {
126
- SlideToggle
127
- },
128
- data() {
129
- return {
130
- profileDropDown
131
- }
132
- },
133
- mounted() {
134
- const item = this.activeTabKey ? this.profileDropDown.find(el => el.key && el.key.includes(this.activeTabKey)) : null;
135
- if(item) this.$set(item, 'opened', true);
136
- },
137
- methods: {
138
- openOneCloseOthers(id) {
139
- const array = this.profileDropDown.filter(el => el.children);
140
- array.forEach((el, idx) => {
141
- if(id === idx) this.$set(el, 'opened', !el.opened);
142
- else this.$set(el, 'opened', false);
143
- })
144
- },
145
- async showModal(url) {
146
- if (window.location.href.includes(url)) {
147
- this.$emit("setIsReplenishModal", true);
148
- this.setShowModal(true);
149
- } else {
150
- await window.open(url + "&modal=show", "_blank");
151
- }
152
- }
153
- }
154
- }
155
- </script>
156
-
157
- <style lang="scss" scoped>
158
- .rotated {
159
- svg {
160
- transform: rotate(180deg);
161
- }
162
- }
163
-
164
- .empty-space {
165
- background: none!important;
166
- }
167
-
168
- .mobile-table-head-left {
169
- display: flex;
170
- align-items: center;
171
- gap: 8px;
172
- svg {
173
- background: rgba(0, 122, 255, 0.12);
174
- border-radius: 50%;
175
- width: 24px;
176
- height: 24px;
177
- }
178
- }
179
-
180
- .mobile-table {
181
- &-body {
182
- background: rgba(236, 239, 241, 0.6);
183
- border-bottom: 0.5px solid rgba(157, 163, 172, 0.5);
184
- padding: 12px 20px;
185
- p, a.p {
186
- display: flex;
187
- justify-content: space-between;
188
- align-items: center;
189
- color: #2C3E50;
190
- font-size: 12px;
191
- margin-bottom: 8px;
192
- &:first-child {
193
- font-weight: 600;
194
- font-size: 14px;
195
- }
196
- span {
197
- background: #007AFF;
198
- color: #fff;
199
- padding: 2px 8px;
200
- border-radius: 100px;
201
- line-height: 20px;
202
- }
203
- }
204
- a.button {
205
- border: none;
206
- background: transparent;
207
- display: flex;
208
- justify-content: center;
209
- align-items: center;
210
- color: #007AFF;
211
- font-size: 14px;
212
- font-weight: 600;
213
- margin: 20px auto 0;
214
- }
215
- }
216
- &-item {
217
- padding: 12px 20px;
218
- border-bottom: 0.5px solid rgba(157, 163, 172, 0.5);
219
- p, a.p {
220
- &.mobile-table-item__title {
221
- color: #71757A;
222
- font-size: 12px;
223
- font-weight: 400;
224
- margin-bottom: 12px;
225
- }
226
- &:not(.mobile-table-item__title) {
227
- font-size: 14px;
228
- font-weight: 400;
229
- color: #2C3E50;
230
- span {
231
- color: #698096;
232
- font-weight: 500;
233
- background: #ECEFF1;
234
- border-radius: 100px;
235
- padding: 2px 8px;
236
- line-height: 20px;
237
- }
238
- }
239
- }
240
- &__text {
241
- display: flex;
242
- justify-content: space-between;
243
- font-size: 14px;
244
- font-weight: 400;
245
- margin-bottom: 12px;
246
- flex-wrap: wrap;
247
- align-items: center;
248
- color: #2C3E50;
249
- row-gap: 12px;
250
- a.button {
251
- background: transparent;
252
- border: none;
253
- color: #007AFF;
254
- font-size: 14px;
255
- font-weight: 600;
256
- }
257
- &.wrapped {
258
- flex-wrap: wrap;
259
- align-items: center;
260
- margin-bottom: 0;
261
- .wrapped__text {
262
- display: flex;
263
- justify-content: space-between;
264
- align-items: center;
265
- padding: 10px 20px;
266
- width: 100%;
267
- &.active {
268
- background: #E5E5E5;
269
- border-left: 3px solid #007aff;
270
- margin-top: 12px;
271
- }
272
- }
273
- .mobile-table-item__children {
274
- padding: 0 20px 0 36px;
275
- display: flex;
276
- flex-direction: column;
277
- width: 100%;
278
- gap: 16px;
279
- margin-bottom: 12px;
280
- a {
281
- font-size: 14px;
282
- color: #2C3E50;
283
- font-weight: 400;
284
- text-decoration: none;
285
- &:visited, &:active {
286
- color: #2C3E50;
287
- }
288
- }
289
- }
290
- }
291
- &:last-child {
292
- margin-bottom: 0;
293
- }
294
- }
295
- &:nth-child(4) {
296
- padding: 12px 0;
297
- .mobile-table-item__title {
298
- padding: 0 20px;
299
- margin-bottom: 0;
300
- }
301
- }
302
- &:nth-child(5) {
303
- padding-bottom: 36px;
304
- border-bottom: none;
305
- }
306
- }
307
- }
308
- </style>