adata-ui 3.1.35 → 3.1.37

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 (156) hide show
  1. package/README.md +84 -84
  2. package/dist/module.json +1 -1
  3. package/dist/module.mjs +11 -1
  4. package/dist/runtime/components/Alert.vue +26 -26
  5. package/dist/runtime/components/Header.vue +8 -2
  6. package/dist/runtime/components/Modal.vue +286 -0
  7. package/dist/runtime/components/Modal.vue.d.ts +41 -0
  8. package/dist/runtime/components/Tag.vue +4 -4
  9. package/dist/runtime/components/forms/input/standard/InputStandard.vue +2 -2
  10. package/dist/runtime/components/header/ListItem.vue.d.ts +1 -1
  11. package/dist/runtime/components/header/ProductMenu.vue +6 -6
  12. package/dist/runtime/components/mobile-navigation/BottomNavigation.vue +8 -2
  13. package/dist/runtime/components/modals/NoAccessContent.vue +8 -2
  14. package/dist/runtime/components/modals/id/IdAccessModal.vue +75 -0
  15. package/dist/runtime/components/modals/id/IdAccessModal.vue.d.ts +6 -0
  16. package/dist/runtime/components/modals/id/IdBanner.vue +45 -0
  17. package/dist/runtime/components/modals/id/IdBanner.vue.d.ts +2 -0
  18. package/dist/runtime/components/modals/id/IdConfirmAccountOtpModal.vue +169 -0
  19. package/dist/runtime/components/modals/id/IdConfirmAccountOtpModal.vue.d.ts +2 -0
  20. package/dist/runtime/components/modals/id/IdConfirmSuccessfulModal.vue +38 -0
  21. package/dist/runtime/components/modals/id/IdConfirmSuccessfulModal.vue.d.ts +2 -0
  22. package/dist/runtime/components/modals/id/IdLoginModal.vue +277 -0
  23. package/dist/runtime/components/modals/id/IdLoginModal.vue.d.ts +6 -0
  24. package/dist/runtime/components/modals/id/IdModals.vue +98 -0
  25. package/dist/runtime/components/modals/id/IdModals.vue.d.ts +2 -0
  26. package/dist/runtime/components/modals/id/IdNewPasswordModal.vue +113 -0
  27. package/dist/runtime/components/modals/id/IdNewPasswordModal.vue.d.ts +2 -0
  28. package/dist/runtime/components/modals/id/IdOtpInput.vue +128 -0
  29. package/dist/runtime/components/modals/id/IdOtpInput.vue.d.ts +15 -0
  30. package/dist/runtime/components/modals/id/IdPasswordSuccessfulModal.vue +23 -0
  31. package/dist/runtime/components/modals/id/IdPasswordSuccessfulModal.vue.d.ts +2 -0
  32. package/dist/runtime/components/modals/id/IdRecoveryModal.vue +103 -0
  33. package/dist/runtime/components/modals/id/IdRecoveryModal.vue.d.ts +2 -0
  34. package/dist/runtime/components/modals/id/IdRegistrationModal.vue +177 -0
  35. package/dist/runtime/components/modals/id/IdRegistrationModal.vue.d.ts +7 -0
  36. package/dist/runtime/components/modals/id/IdResetPasswordOtpModal.vue +141 -0
  37. package/dist/runtime/components/modals/id/IdResetPasswordOtpModal.vue.d.ts +2 -0
  38. package/dist/runtime/components/modals/id/IdTwoFactorModal.vue +114 -0
  39. package/dist/runtime/components/modals/id/IdTwoFactorModal.vue.d.ts +2 -0
  40. package/dist/runtime/components/tree-select/components/tree-select-nodes.vue.d.ts +1 -1
  41. package/dist/runtime/composables/projectState.d.ts +2 -2
  42. package/dist/runtime/composables/useIdModals.d.ts +23 -0
  43. package/dist/runtime/composables/useIdModals.js +32 -0
  44. package/dist/runtime/i18n/i18n.config.d.ts +333 -0
  45. package/dist/runtime/i18n.d.ts +1 -1
  46. package/dist/runtime/icons/arrow/arrow-right.vue +24 -24
  47. package/dist/runtime/icons/calendar.vue +24 -24
  48. package/dist/runtime/icons/download.vue +26 -26
  49. package/dist/runtime/icons/edit.vue +24 -24
  50. package/dist/runtime/icons/file/excel.vue +88 -88
  51. package/dist/runtime/icons/hand-with-phone/hand-with-phone-dark.vue +52 -0
  52. package/dist/runtime/icons/hand-with-phone/hand-with-phone-dark.vue.d.ts +2 -0
  53. package/dist/runtime/icons/hand-with-phone/hand-with-phone-light.vue +52 -0
  54. package/dist/runtime/icons/hand-with-phone/hand-with-phone-light.vue.d.ts +2 -0
  55. package/dist/runtime/icons/id.vue +9 -9
  56. package/dist/runtime/icons/map-pin-rect.vue +15 -15
  57. package/dist/runtime/icons/more.vue +36 -36
  58. package/dist/runtime/icons/plus-circle.vue +24 -24
  59. package/dist/runtime/icons/socials/google.vue +41 -0
  60. package/dist/runtime/icons/socials/google.vue.d.ts +2 -0
  61. package/dist/runtime/icons/socials/mailru.vue +34 -0
  62. package/dist/runtime/icons/socials/mailru.vue.d.ts +2 -0
  63. package/dist/runtime/icons/socials/yandex.vue +28 -0
  64. package/dist/runtime/icons/socials/yandex.vue.d.ts +2 -0
  65. package/dist/runtime/icons/tenge.vue +22 -22
  66. package/dist/runtime/icons/toasts/check-circle-toast.vue +6 -0
  67. package/dist/runtime/icons/toasts/check-circle-toast.vue.d.ts +2 -0
  68. package/dist/runtime/icons/toasts/warning-triangle-toast.vue +7 -0
  69. package/dist/runtime/icons/toasts/warning-triangle-toast.vue.d.ts +2 -0
  70. package/dist/runtime/icons/trash.vue +24 -24
  71. package/dist/runtime/icons/upload.vue +26 -26
  72. package/dist/runtime/icons/user.vue +30 -30
  73. package/dist/runtime/icons/warning-triangle.vue +29 -29
  74. package/dist/runtime/illustrations/address-location.vue +38 -0
  75. package/dist/runtime/illustrations/address-location.vue.d.ts +2 -0
  76. package/dist/runtime/illustrations/ball-with-chain.vue +120 -0
  77. package/dist/runtime/illustrations/ball-with-chain.vue.d.ts +2 -0
  78. package/dist/runtime/illustrations/bill.vue +133 -0
  79. package/dist/runtime/illustrations/bill.vue.d.ts +2 -0
  80. package/dist/runtime/illustrations/buildings.vue +82 -0
  81. package/dist/runtime/illustrations/buildings.vue.d.ts +2 -0
  82. package/dist/runtime/illustrations/calendar.vue +156 -0
  83. package/dist/runtime/illustrations/calendar.vue.d.ts +2 -0
  84. package/dist/runtime/illustrations/chains.vue +152 -0
  85. package/dist/runtime/illustrations/chains.vue.d.ts +2 -0
  86. package/dist/runtime/illustrations/coin-percent.vue +126 -0
  87. package/dist/runtime/illustrations/coin-percent.vue.d.ts +2 -0
  88. package/dist/runtime/illustrations/coins-stack.vue +202 -0
  89. package/dist/runtime/illustrations/coins-stack.vue.d.ts +2 -0
  90. package/dist/runtime/illustrations/delete-dark.vue +31 -0
  91. package/dist/runtime/illustrations/delete-dark.vue.d.ts +2 -0
  92. package/dist/runtime/illustrations/delete.vue +32 -0
  93. package/dist/runtime/illustrations/delete.vue.d.ts +2 -0
  94. package/dist/runtime/illustrations/doc-with-stamp.vue +126 -0
  95. package/dist/runtime/illustrations/doc-with-stamp.vue.d.ts +2 -0
  96. package/dist/runtime/illustrations/document.vue +64 -0
  97. package/dist/runtime/illustrations/document.vue.d.ts +2 -0
  98. package/dist/runtime/illustrations/door.vue +74 -0
  99. package/dist/runtime/illustrations/door.vue.d.ts +2 -0
  100. package/dist/runtime/illustrations/empty-box.vue +77 -0
  101. package/dist/runtime/illustrations/empty-box.vue.d.ts +2 -0
  102. package/dist/runtime/illustrations/empty-wallet.vue +161 -0
  103. package/dist/runtime/illustrations/empty-wallet.vue.d.ts +2 -0
  104. package/dist/runtime/illustrations/graph-in-coin.vue +119 -0
  105. package/dist/runtime/illustrations/graph-in-coin.vue.d.ts +2 -0
  106. package/dist/runtime/illustrations/hammer.vue +156 -0
  107. package/dist/runtime/illustrations/hammer.vue.d.ts +2 -0
  108. package/dist/runtime/illustrations/hand-cash.vue +108 -0
  109. package/dist/runtime/illustrations/hand-cash.vue.d.ts +2 -0
  110. package/dist/runtime/illustrations/info.vue +39 -0
  111. package/dist/runtime/illustrations/info.vue.d.ts +2 -0
  112. package/dist/runtime/illustrations/mail.vue +68 -0
  113. package/dist/runtime/illustrations/mail.vue.d.ts +2 -0
  114. package/dist/runtime/illustrations/ok.vue +62 -0
  115. package/dist/runtime/illustrations/ok.vue.d.ts +2 -0
  116. package/dist/runtime/illustrations/people-group.vue +237 -0
  117. package/dist/runtime/illustrations/people-group.vue.d.ts +2 -0
  118. package/dist/runtime/illustrations/person-with-phone.vue +187 -0
  119. package/dist/runtime/illustrations/person-with-phone.vue.d.ts +2 -0
  120. package/dist/runtime/illustrations/person.vue +159 -0
  121. package/dist/runtime/illustrations/person.vue.d.ts +2 -0
  122. package/dist/runtime/illustrations/phone-check.vue +90 -0
  123. package/dist/runtime/illustrations/phone-check.vue.d.ts +2 -0
  124. package/dist/runtime/illustrations/phone-payment-method.vue +223 -0
  125. package/dist/runtime/illustrations/phone-payment-method.vue.d.ts +2 -0
  126. package/dist/runtime/illustrations/stop-hand.vue +77 -0
  127. package/dist/runtime/illustrations/stop-hand.vue.d.ts +2 -0
  128. package/dist/runtime/illustrations/stop-sign.vue +34 -0
  129. package/dist/runtime/illustrations/stop-sign.vue.d.ts +2 -0
  130. package/dist/runtime/illustrations/suit.vue +111 -0
  131. package/dist/runtime/illustrations/suit.vue.d.ts +2 -0
  132. package/dist/runtime/illustrations/suitcase.vue +105 -0
  133. package/dist/runtime/illustrations/suitcase.vue.d.ts +2 -0
  134. package/dist/runtime/illustrations/terminal-dark.vue +48 -0
  135. package/dist/runtime/illustrations/terminal-dark.vue.d.ts +2 -0
  136. package/dist/runtime/illustrations/terminal.vue +234 -0
  137. package/dist/runtime/illustrations/terminal.vue.d.ts +2 -0
  138. package/dist/runtime/illustrations/trash-can.vue +108 -0
  139. package/dist/runtime/illustrations/trash-can.vue.d.ts +2 -0
  140. package/dist/runtime/illustrations/turn-on-tariff.vue +38 -0
  141. package/dist/runtime/illustrations/turn-on-tariff.vue.d.ts +2 -0
  142. package/dist/runtime/illustrations/two-persons.vue +169 -0
  143. package/dist/runtime/illustrations/two-persons.vue.d.ts +2 -0
  144. package/dist/runtime/lang/en.js +113 -2
  145. package/dist/runtime/lang/kk.js +113 -2
  146. package/dist/runtime/lang/ru.d.ts +111 -0
  147. package/dist/runtime/lang/ru.js +113 -2
  148. package/dist/runtime/plugins/toast.client.d.ts +505 -0
  149. package/dist/runtime/plugins/toast.client.js +58 -0
  150. package/dist/runtime/server/tsconfig.json +3 -3
  151. package/dist/runtime/utils/localizedNavigation.d.ts +1 -1
  152. package/dist/runtime/utils/removeTrailingSlash.d.ts +1 -0
  153. package/dist/runtime/utils/removeTrailingSlash.js +6 -0
  154. package/dist/runtime/utils/useUrls.d.ts +15 -0
  155. package/dist/runtime/utils/useUrls.js +20 -0
  156. package/package.json +5 -2
@@ -0,0 +1,187 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ height="155"
5
+ viewBox="0 0 156 155"
6
+ width="156"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="77.6673" cy="77.5001" fill="#BDC7CE" fill-opacity="0.15" r="64.5833" />
10
+ <path
11
+ d="M115.603 18.0549L86.6082 18.1585C84.4905 18.1636 82.3945 18.5859 80.4402 19.4014C78.4859 20.2168 76.7117 21.4094 75.219 22.9108C73.7264 24.4122 72.5445 26.193 71.7412 28.1514C70.9378 30.1097 70.5287 32.2072 70.5372 34.3237L70.6667 74.0056H85.9996L84.7046 83.2336L79.1749 111.94H57.8203L108.325 140.802C109.083 141.235 109.942 141.461 110.815 141.458C111.688 141.456 112.545 141.224 113.3 140.786C114.055 140.349 114.682 139.72 115.118 138.965C115.554 138.209 115.784 137.352 115.785 136.479V94.0536V73.8503L115.603 18.0549Z"
12
+ class="fill-white dark:fill-gray-900"
13
+ />
14
+ <path
15
+ d="M57.4712 108.795C57.4712 108.717 57.4712 108.64 57.4712 108.562L52.5373 85.4079C52.3176 84.4756 51.7987 83.6407 51.0598 83.0308C50.3209 82.4209 49.4026 82.0693 48.4451 82.0299H38.4477C38.0285 82.0146 37.6115 82.0983 37.2308 82.2742C36.85 82.4501 36.5162 82.7133 36.2563 83.0424C35.9964 83.3715 35.8178 83.7572 35.7351 84.1682C35.6523 84.5792 35.6677 85.0039 35.78 85.4079L40.7139 108.562C40.9336 109.494 41.4525 110.329 42.1914 110.939C42.9303 111.549 43.8486 111.901 44.8061 111.94H54.8165C55.0338 111.938 55.2506 111.917 55.464 111.875H55.5287C55.7061 111.835 55.8795 111.779 56.0467 111.707L56.1892 111.617C56.3117 111.558 56.4287 111.489 56.5388 111.409L56.7201 111.228C56.7996 111.166 56.8733 111.097 56.9403 111.021C57.0129 110.935 57.0738 110.839 57.1216 110.736C57.165 110.679 57.2039 110.618 57.2381 110.555C57.2381 110.426 57.3417 110.309 57.3935 110.18C57.4453 110.05 57.3935 110.076 57.3935 110.012C57.4286 109.867 57.4503 109.72 57.4583 109.572C57.4583 109.572 57.4583 109.468 57.4583 109.416C57.4712 109.261 57.4712 109.105 57.4583 108.95C57.4583 108.95 57.4842 108.834 57.4712 108.795Z"
16
+ class="fill-white dark:fill-gray-900"
17
+ />
18
+ <path
19
+ d="M115.799 74.0056L55.0893 99.5542L49.5985 92.9147L38.4355 82.03L76.1072 22.093L115.799 74.0056Z"
20
+ fill="url(#paint0_linear_2571_138983)"
21
+ />
22
+ <path
23
+ d="M88.5266 79.7777L89.3295 74.0054H85.9884L84.6934 83.2334H115.799V79.7777H88.5266Z"
24
+ class="fill-white dark:fill-gray-900"
25
+ opacity="0.2"
26
+ />
27
+ <path
28
+ d="M54.7772 111.94H44.7797C43.8222 111.901 42.9039 111.549 42.165 110.939C41.4261 110.329 40.9072 109.494 40.6875 108.562L35.7536 85.4079C35.6413 85.0039 35.6259 84.5792 35.7087 84.1682C35.7915 83.7572 35.97 83.3715 36.2299 83.0424C36.4898 82.7133 36.8237 82.4501 37.2044 82.2742C37.5852 82.0983 38.0021 82.0146 38.4213 82.0299H48.4187C49.3762 82.0693 50.2945 82.4209 51.0334 83.0308C51.7723 83.6407 52.2912 84.4756 52.5109 85.4079L57.4449 108.562C57.5571 108.966 57.5725 109.391 57.4898 109.802C57.407 110.213 57.2284 110.598 56.9685 110.928C56.7086 111.257 56.3748 111.52 55.994 111.696C55.6133 111.872 55.1964 111.955 54.7772 111.94V111.94Z"
29
+ class="fill-white dark:fill-gray-900"
30
+ stroke="#9DA3AC"
31
+ stroke-linecap="round"
32
+ stroke-linejoin="round"
33
+ stroke-width="1.29167"
34
+ />
35
+ <path
36
+ d="M81.688 44.0825L81.2995 46.0627C81.2483 46.3354 81.1435 46.5953 80.9911 46.8272C80.8387 47.0591 80.6418 47.2585 80.4117 47.4138C80.1816 47.5691 79.923 47.6772 79.6508 47.7319C79.3786 47.7866 79.0983 47.7867 78.826 47.7323V47.7323C78.5545 47.681 78.2957 47.5767 78.0646 47.4252C77.8335 47.2738 77.6347 47.0782 77.4794 46.8497C77.3242 46.6212 77.2157 46.3643 77.1601 46.0937C77.1045 45.8232 77.1029 45.5443 77.1555 45.2732L77.531 43.293"
37
+ stroke="#9DA3AC"
38
+ stroke-linecap="round"
39
+ stroke-linejoin="round"
40
+ stroke-width="1.29167"
41
+ />
42
+ <path
43
+ d="M98.1741 44.0825L97.7985 46.0627C97.7474 46.3354 97.6425 46.5953 97.4901 46.8272C97.3377 47.0591 97.1408 47.2585 96.9107 47.4138C96.6807 47.5691 96.422 47.6772 96.1498 47.7319C95.8776 47.7866 95.5973 47.7867 95.3251 47.7323V47.7323C95.0535 47.681 94.7947 47.5767 94.5636 47.4252C94.3326 47.2738 94.1337 47.0782 93.9785 46.8497C93.8232 46.6212 93.7147 46.3643 93.6591 46.0937C93.6035 45.8232 93.6019 45.5443 93.6545 45.2732L94.0301 43.293"
44
+ stroke="#9DA3AC"
45
+ stroke-linecap="round"
46
+ stroke-linejoin="round"
47
+ stroke-width="1.29167"
48
+ />
49
+ <path
50
+ d="M101.475 57.5813C101.475 57.5813 99.1185 65.3468 87.0361 67.9353"
51
+ stroke="#9DA3AC"
52
+ stroke-linecap="round"
53
+ stroke-linejoin="round"
54
+ stroke-width="1.29167"
55
+ />
56
+ <path
57
+ d="M115.566 17.5112L115.501 17.5889C108.482 26.8299 97.2803 31.7222 87.7879 34.2977C82.1487 35.8472 76.3634 36.8058 70.5255 37.158V33.7671C70.5091 29.7874 71.9668 25.9425 74.6177 22.973C86.8037 25.5486 104.364 26.8946 115.566 17.5112Z"
58
+ fill="#BDC7CE"
59
+ opacity="0.2"
60
+ />
61
+ <path
62
+ d="M89.7167 35.0483L89.5872 35.4625L82.6201 57.8272L89.0045 56.5071L85.9871 74.0054"
63
+ stroke="#9DA3AC"
64
+ stroke-linecap="round"
65
+ stroke-linejoin="round"
66
+ stroke-width="1.29167"
67
+ />
68
+ <path
69
+ d="M115.799 83.2334H84.6934L85.9884 74.0054H115.799V83.2334Z"
70
+ stroke="#9DA3AC"
71
+ stroke-linecap="round"
72
+ stroke-linejoin="round"
73
+ stroke-width="1.29167"
74
+ />
75
+ <path
76
+ d="M115.526 18.1973C116.749 17.4008 118.185 16.9946 119.644 17.0325"
77
+ stroke="#9DA3AC"
78
+ stroke-linecap="round"
79
+ stroke-linejoin="round"
80
+ stroke-width="1.29167"
81
+ />
82
+ <path
83
+ d="M47.7598 108.795C46.8006 108.756 45.8804 108.405 45.1393 107.795C44.3982 107.186 43.8769 106.351 43.6546 105.417L38.7336 82.2629C38.7273 82.1854 38.7273 82.1075 38.7336 82.03H38.4617C38.0372 81.9965 37.6111 82.0681 37.2209 82.2385C36.8308 82.4089 36.4887 82.6728 36.2249 83.0068C35.9612 83.3408 35.7838 83.7346 35.7087 84.1535C35.6335 84.5723 35.6628 85.0032 35.794 85.408L40.715 108.562C40.9392 109.495 41.4611 110.329 42.2018 110.938C42.9424 111.547 43.8616 111.899 44.8201 111.94H54.8175C55.2175 111.964 55.6175 111.894 55.986 111.737C56.3545 111.58 56.6816 111.34 56.9414 111.035C57.2012 110.73 57.3867 110.369 57.4833 109.98C57.5799 109.592 57.585 109.186 57.4982 108.795H47.7598Z"
84
+ class="fill-[#BDC7CE] dark:fill-gray-900"
85
+ opacity="0.2"
86
+ />
87
+ <path
88
+ d="M72.3769 111.94H58.0283L108.883 141.009C109.606 141.422 110.425 141.637 111.258 141.634C112.09 141.631 112.908 141.41 113.628 140.991C114.348 140.573 114.945 139.973 115.36 139.252C115.775 138.53 115.993 137.713 115.993 136.88L72.3769 111.94Z"
89
+ fill="#BDC7CE"
90
+ opacity="0.2"
91
+ />
92
+ <path
93
+ d="M49.4822 91.8531C48.8863 91.6961 48.2725 91.6178 47.6562 91.6202C47.6597 93.6123 48.4539 95.5216 49.8645 96.929C51.2752 98.3364 53.187 99.1269 55.1802 99.1269C55.1775 98.5427 55.108 97.9609 54.973 97.3925C53.6379 97.0604 52.4198 96.3681 51.4515 95.3912C50.4832 94.4144 49.802 93.1905 49.4822 91.8531V91.8531Z"
94
+ fill="#ECF1F7"
95
+ />
96
+ <path
97
+ d="M86.5992 18.1712L115.594 18.0751L115.779 73.8701L71.4905 74.0169C71.2707 74.0176 71.0596 73.931 70.9036 73.7762C70.7477 73.6214 70.6597 73.411 70.6589 73.1913L70.5301 34.3639C70.5159 30.0903 72.201 25.9862 75.2145 22.9543C78.2281 19.9225 82.3233 18.2112 86.5993 18.1971L86.5992 18.1712Z"
98
+ stroke="#9DA3AC"
99
+ stroke-linecap="round"
100
+ stroke-linejoin="round"
101
+ stroke-width="1.29167"
102
+ />
103
+ <path
104
+ d="M115.604 18.1067V18.1843C114.659 19.4786 104.195 33.9872 115.501 49.4794"
105
+ stroke="#9DA3AC"
106
+ stroke-linecap="round"
107
+ stroke-linejoin="round"
108
+ stroke-width="1.29167"
109
+ />
110
+ <path
111
+ d="M70.5518 37.7663C76.3896 37.4141 82.1749 36.4554 87.8141 34.906C97.3065 32.3175 108.534 27.4381 115.527 18.1972C116.36 16.79 116.827 15.1973 116.887 13.5637"
112
+ stroke="#9DA3AC"
113
+ stroke-linecap="round"
114
+ stroke-linejoin="round"
115
+ stroke-width="1.29167"
116
+ />
117
+ <path
118
+ d="M84.6925 83.2336L79.1758 111.94"
119
+ stroke="#9DA3AC"
120
+ stroke-linecap="round"
121
+ stroke-linejoin="round"
122
+ stroke-width="1.29167"
123
+ />
124
+ <path
125
+ d="M115.785 83.1819V136.35C115.783 137.231 115.55 138.096 115.109 138.859C114.668 139.622 114.034 140.256 113.271 140.697C112.508 141.139 111.643 141.372 110.761 141.375C109.88 141.377 109.013 141.149 108.248 140.712L57.8203 111.888H100.245V103.592"
126
+ stroke="#9DA3AC"
127
+ stroke-linecap="round"
128
+ stroke-linejoin="round"
129
+ stroke-width="1.29167"
130
+ />
131
+ <path
132
+ d="M47.6562 91.6204C48.6443 91.6204 49.6227 91.8149 50.5355 92.1928C51.4484 92.5707 52.2778 93.1245 52.9765 93.8228C53.6752 94.5211 54.2294 95.35 54.6075 96.2623C54.9856 97.1747 55.1802 98.1525 55.1802 99.14V99.14C53.1847 99.14 51.271 98.3477 49.86 96.9375C48.449 95.5273 47.6562 93.6147 47.6562 91.6204V91.6204V91.6204Z"
133
+ stroke="#9DA3AC"
134
+ stroke-linecap="round"
135
+ stroke-linejoin="round"
136
+ stroke-width="1.29167"
137
+ />
138
+ <path
139
+ d="M39.5752 103.644H50.9583"
140
+ stroke="#9DA3AC"
141
+ stroke-linecap="round"
142
+ stroke-linejoin="round"
143
+ stroke-width="1.29167"
144
+ />
145
+ <path
146
+ d="M39.5752 99.1399H55.18"
147
+ stroke="#9DA3AC"
148
+ stroke-linecap="round"
149
+ stroke-linejoin="round"
150
+ stroke-width="1.29167"
151
+ />
152
+ <path
153
+ d="M40.4688 107.527H49.6633"
154
+ stroke="#9DA3AC"
155
+ stroke-linecap="round"
156
+ stroke-linejoin="round"
157
+ stroke-width="1.29167"
158
+ />
159
+ <path
160
+ d="M71.4834 111.94V119.745"
161
+ stroke="#9DA3AC"
162
+ stroke-linecap="round"
163
+ stroke-linejoin="round"
164
+ stroke-width="1.29167"
165
+ />
166
+ <path
167
+ d="M54.7772 111.94H44.7797C43.8222 111.901 42.9039 111.549 42.165 110.939C41.4261 110.329 40.9072 109.494 40.6875 108.562L35.7536 85.4079C35.6413 85.0039 35.6259 84.5792 35.7087 84.1682C35.7915 83.7572 35.97 83.3715 36.2299 83.0424C36.4898 82.7133 36.8237 82.4501 37.2044 82.2742C37.5852 82.0983 38.0021 82.0146 38.4213 82.0299H48.4187C49.3762 82.0693 50.2945 82.4209 51.0334 83.0308C51.7723 83.6407 52.2912 84.4756 52.5109 85.4079L57.4449 108.562C57.5571 108.966 57.5725 109.391 57.4898 109.802C57.407 110.213 57.2284 110.598 56.9685 110.928C56.7086 111.257 56.3748 111.52 55.994 111.696C55.6133 111.872 55.1964 111.955 54.7772 111.94V111.94Z"
168
+ stroke="#9DA3AC"
169
+ stroke-linecap="round"
170
+ stroke-linejoin="round"
171
+ stroke-width="1.29167"
172
+ />
173
+ <defs>
174
+ <linearGradient
175
+ id="paint0_linear_2571_138983"
176
+ gradientUnits="userSpaceOnUse"
177
+ x1="58.3138"
178
+ x2="79.2787"
179
+ y1="92.8758"
180
+ y2="67.8848"
181
+ >
182
+ <stop offset="0.28" stop-color="#ECF1F7" />
183
+ <stop offset="0.69" stop-color="#ECF1F7" stop-opacity="0.3" />
184
+ </linearGradient>
185
+ </defs>
186
+ </svg>
187
+ </template>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,159 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ height="120"
5
+ viewBox="0 0 121 120"
6
+ width="121"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="60.585" cy="60" fill="#BDC7CE" fill-opacity="0.15" r="50" />
10
+ <g clip-path="url(#clip0_335_11701)">
11
+ <path
12
+ class="fill-white dark:fill-gray-900"
13
+ d="M58.2593 10.4176C56.0889 10.4181 53.9447 10.8965 51.9757 11.8195L51.8381 11.8891C51.4251 12.0879 51.0219 12.2967 50.6285 12.5353L50.1959 12.7938C49.8812 13.0026 49.5665 13.2213 49.2125 13.45L48.7799 13.7781C48.4259 14.0664 48.0817 14.3747 47.7965 14.6928L47.6097 14.8618C47.2189 15.257 46.8481 15.6718 46.4985 16.1046V16.1643C44.3543 18.8655 43.1853 22.2254 43.1847 25.689V84.3488H43.0273V94.838L44.4729 94.9771V109.403H77.5327V94.8877L78.044 94.838V94.4502H78.2308V10.4176H58.2593Z"
14
+ />
15
+ <path
16
+ d="M77.9356 92.0641V94.9374L60.4322 96.6077L42.9189 94.9374V84.4482H48.4846V92.1834L60.265 93.3367L77.9356 92.0641Z"
17
+ fill="#BDC7CE"
18
+ opacity="0.2"
19
+ />
20
+ <path
21
+ d="M77.4152 106.858V109.503H44.3652V97.0054L47.1382 97.2738V106.858H77.4152Z"
22
+ fill="#BDC7CE"
23
+ opacity="0.2"
24
+ />
25
+ <path
26
+ d="M77.4251 94.3706V96.9954L60.8853 98.6557L44.3652 96.9954V94.3706L60.8853 96.031L77.4251 94.3706Z"
27
+ fill="#BDC7CE"
28
+ opacity="0.2"
29
+ />
30
+ <path
31
+ d="M63.0873 101.748V103.587H56.6957C56.5962 103.587 56.4977 103.567 56.4059 103.529C56.314 103.49 56.2306 103.434 56.1602 103.363C56.0899 103.292 56.0342 103.208 55.9961 103.115C55.9581 103.022 55.9385 102.922 55.9385 102.822V98.1289L57.5413 98.2979V101.748H63.0873Z"
32
+ fill="#BDC7CE"
33
+ opacity="0.2"
34
+ />
35
+ <path
36
+ d="M64.12 80.9783C63.4442 81.3028 62.7048 81.4693 61.9567 81.4655C61.2723 81.4655 60.5946 81.3292 59.9623 81.0644C59.33 80.7996 58.7554 80.4114 58.2715 79.9221C57.7875 79.4328 57.4036 78.8519 57.1417 78.2126C56.8798 77.5733 56.745 76.8881 56.745 76.1961V73.6608H59.3508V75.7387C59.349 77.0583 59.8387 78.3301 60.7225 79.3011C61.6063 80.272 62.8193 80.8709 64.12 80.9783Z"
37
+ fill="#BDC7CE"
38
+ opacity="0.2"
39
+ />
40
+ <path
41
+ d="M62.1927 56.381C61.4814 56.8618 60.8984 57.5125 60.4953 58.2756C60.0922 59.0387 59.8815 59.8905 59.8818 60.7556V73.6807H56.745V61.6504C56.745 60.9584 56.8798 60.2732 57.1417 59.6339C57.4036 58.9946 57.7875 58.4137 58.2715 57.9244C58.7554 57.4351 59.33 57.0469 59.9623 56.7821C60.5946 56.5173 61.2723 56.381 61.9567 56.381H62.1927Z"
42
+ fill="#BDC7CE"
43
+ opacity="0.2"
44
+ />
45
+ <path
46
+ d="M43.0762 84.0505V56.2915L48.6419 53.965V84.0505H43.0762Z"
47
+ fill="#BDC7CE"
48
+ opacity="0.2"
49
+ />
50
+ <path
51
+ d="M43.0762 94.5396L60.5894 96.2099L78.1027 94.5396V10.4971H58.1802C54.1744 10.4971 50.3326 12.106 47.5001 14.97C44.6675 17.8339 43.0762 21.7183 43.0762 25.7685V94.5396Z"
52
+ stroke="#9DA3AC"
53
+ stroke-linecap="round"
54
+ stroke-linejoin="round"
55
+ />
56
+ <path
57
+ d="M78.0928 41.6465L43.0762 56.3711"
58
+ stroke="#9DA3AC"
59
+ stroke-linecap="round"
60
+ stroke-linejoin="round"
61
+ />
62
+ <path
63
+ d="M78.1033 10.4971C60.1377 28.8108 46.3809 16.2437 46.3809 16.2437"
64
+ stroke="#9DA3AC"
65
+ stroke-linecap="round"
66
+ stroke-linejoin="round"
67
+ />
68
+ <path
69
+ d="M78.1033 10.4971C60.1377 28.8009 46.3906 16.2437 46.3906 16.2437C47.8602 14.3752 49.7475 12.8862 51.8973 11.8989C56.814 15.0507 65.31 17.4169 77.8279 10.507L78.1033 10.4971Z"
70
+ fill="#BDC7CE"
71
+ opacity="0.2"
72
+ />
73
+ <path
74
+ d="M78.1031 30.6105C78.1031 30.6105 67.9747 22.6566 78.1031 10.4971"
75
+ stroke="#9DA3AC"
76
+ stroke-linecap="round"
77
+ stroke-linejoin="round"
78
+ />
79
+ <path
80
+ d="M57.1682 20.5488L52.7432 33.6429H58.8595L56.2438 50.8332"
81
+ stroke="#9DA3AC"
82
+ stroke-linecap="round"
83
+ stroke-linejoin="round"
84
+ />
85
+ <path
86
+ d="M47.7476 25.0427L47.5411 26.8522C47.4915 27.328 47.6302 27.8042 47.9268 28.1768C48.2235 28.5495 48.6541 28.7881 49.1243 28.8407C49.5943 28.8882 50.0639 28.747 50.4319 28.4476C50.7998 28.1481 51.0366 27.7144 51.091 27.24L51.2975 25.4305"
87
+ stroke="#9DA3AC"
88
+ stroke-linecap="round"
89
+ stroke-linejoin="round"
90
+ />
91
+ <path
92
+ d="M59.6851 25.0428L59.4786 26.8523C59.429 27.328 59.5677 27.8042 59.8643 28.1769C60.161 28.5495 60.5916 28.7882 61.0618 28.8407V28.8407C61.5318 28.8883 62.0014 28.7471 62.3694 28.4476C62.7373 28.1481 62.9741 27.7144 63.0285 27.24L63.235 25.4305"
93
+ stroke="#9DA3AC"
94
+ stroke-linecap="round"
95
+ stroke-linejoin="round"
96
+ />
97
+ <path
98
+ d="M66.145 44.311L57.708 41.1891"
99
+ stroke="#9DA3AC"
100
+ stroke-linecap="round"
101
+ stroke-linejoin="round"
102
+ />
103
+ <path
104
+ d="M67.2759 61.6405C67.2759 58.7303 64.9426 56.3711 62.0642 56.3711C59.1859 56.3711 56.8525 58.7303 56.8525 61.6405V76.1961C56.8525 79.1063 59.1859 81.4655 62.0642 81.4655C64.9426 81.4655 67.2759 79.1063 67.2759 76.1961V61.6405Z"
105
+ stroke="#9DA3AC"
106
+ stroke-linecap="round"
107
+ stroke-linejoin="round"
108
+ />
109
+ <path
110
+ d="M56.8525 73.6608H67.2759"
111
+ stroke="#9DA3AC"
112
+ stroke-linecap="round"
113
+ stroke-linejoin="round"
114
+ />
115
+ <path
116
+ d="M43.0762 84.0505H78.0928"
117
+ stroke="#9DA3AC"
118
+ stroke-linecap="round"
119
+ stroke-linejoin="round"
120
+ />
121
+ <path
122
+ d="M55.457 84.0505V77.9658H57.1582"
123
+ stroke="#9DA3AC"
124
+ stroke-linecap="round"
125
+ stroke-linejoin="round"
126
+ />
127
+ <path
128
+ d="M68.6827 84.0505V77.9658H66.9717"
129
+ stroke="#9DA3AC"
130
+ stroke-linecap="round"
131
+ stroke-linejoin="round"
132
+ />
133
+ <path
134
+ d="M77.4251 94.6589V109.503H44.3652V94.6589"
135
+ stroke="#9DA3AC"
136
+ stroke-linecap="round"
137
+ stroke-linejoin="round"
138
+ />
139
+ <path
140
+ class="fill-white dark:fill-gray-900"
141
+ d="M63.6675 101.798H57.502V95.8818L60.5896 96.2099L63.6675 95.8818V101.798Z"
142
+ stroke="#9DA3AC"
143
+ stroke-linecap="round"
144
+ stroke-linejoin="round"
145
+ />
146
+ </g>
147
+ <defs>
148
+ <clipPath id="clip0_335_11701">
149
+ <rect
150
+ class="fill-white dark:fill-gray-900"
151
+ height="100"
152
+ transform="translate(42.585 10)"
153
+ width="36"
154
+ />
155
+ </clipPath>
156
+ </defs>
157
+ </svg>
158
+ </template>
159
+ <script lang="ts" setup></script>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,90 @@
1
+ <template>
2
+ <svg
3
+ width="156"
4
+ height="155"
5
+ viewBox="0 0 156 155"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="79.2916" cy="77.4998" r="64.5833" fill="#BDC7CE" fill-opacity="0.15" />
10
+ <g clip-path="url(#clip0_2935_107718)">
11
+ <path
12
+ d="M108.332 126.993C108.338 126.92 108.338 126.847 108.332 126.773V25.0928C108.353 23.914 108.033 22.7544 107.409 21.7564C106.786 20.7584 105.887 19.9652 104.823 19.4741V19.4741C104.257 18.3644 103.367 17.4551 102.274 16.8676C101.181 16.2801 99.9363 16.0422 98.7056 16.1857L54.4676 20.717C52.6854 20.9202 51.0311 21.7492 49.7949 23.0583C48.5588 24.3674 47.8196 26.0731 47.7072 27.8763C47.7072 27.9928 47.7072 28.1093 47.7072 28.2259V129.906C47.6876 131.041 47.9813 132.158 48.5554 133.135C49.1296 134.111 49.9617 134.907 50.9589 135.434V135.434L51.2031 135.564C51.2031 135.564 51.2031 135.499 51.2031 135.473C51.5694 136.232 52.0908 136.905 52.7331 137.447C53.3754 137.989 54.1241 138.389 54.9303 138.619C55.7967 138.92 56.7179 139.026 57.6293 138.93L101.944 134.373C103.775 134.167 105.471 133.302 106.718 131.936C107.965 130.571 108.68 128.797 108.73 126.942L108.332 126.993Z"
13
+ fill="white"
14
+ />
15
+ <path
16
+ d="M101.571 134.27L57.256 138.827C56.3945 138.931 55.521 138.847 54.6943 138.582C53.8676 138.317 53.1069 137.876 52.4637 137.29C51.8205 136.703 51.3097 135.984 50.9658 135.182C50.6218 134.38 50.4528 133.512 50.4699 132.639V30.9582C50.4699 26.1162 53.0404 23.8377 57.256 23.4622L101.571 18.9051C102.433 18.8013 103.306 18.8848 104.133 19.15C104.96 19.4152 105.72 19.8559 106.363 20.4424C107.007 21.029 107.517 21.7476 107.861 22.55C108.205 23.3523 108.374 24.2197 108.357 25.0935V126.774C108.322 128.64 107.614 130.43 106.365 131.809C105.117 133.188 103.413 134.063 101.571 134.27V134.27Z"
17
+ class="fill-white dark:fill-gray-900"
18
+ stroke="#9DA3AC"
19
+ stroke-width="1.29167"
20
+ stroke-linecap="round"
21
+ stroke-linejoin="round"
22
+ />
23
+ <path
24
+ opacity="0.2"
25
+ d="M107.008 127.266L62.7061 131.862C61.8446 131.966 60.9711 131.882 60.1444 131.617C59.3176 131.352 58.557 130.911 57.9139 130.325C57.2707 129.738 56.7598 129.019 56.4159 128.217C56.0719 127.415 55.9028 126.547 55.92 125.674V23.7988C52.6555 24.5756 50.7791 26.8412 50.7791 31.0358V132.716C50.7616 133.59 50.9306 134.457 51.2747 135.258C51.6188 136.06 52.1298 136.778 52.7733 137.364C53.4167 137.949 54.1776 138.389 55.0043 138.652C55.8311 138.916 56.7044 138.998 57.5651 138.892L101.88 134.335C103.711 134.129 105.406 133.264 106.654 131.898C107.901 130.532 108.616 128.758 108.666 126.903C108.131 127.094 107.574 127.216 107.008 127.266V127.266Z"
26
+ fill="#BDC7CE"
27
+ />
28
+ <path
29
+ d="M50.8947 135.435C49.8975 134.907 49.0654 134.111 48.4912 133.135C47.917 132.159 47.6234 131.041 47.643 129.907V28.291C47.6949 26.4277 48.4102 24.6454 49.6583 23.2692C50.9065 21.8931 52.6044 21.0149 54.4419 20.7951L98.7442 16.238C99.9721 16.0922 101.215 16.3262 102.308 16.9089C103.4 17.4917 104.291 18.3955 104.862 19.5005"
30
+ stroke="#9DA3AC"
31
+ stroke-width="1.29167"
32
+ stroke-linecap="round"
33
+ stroke-linejoin="round"
34
+ />
35
+ <path
36
+ opacity="0.2"
37
+ d="M104.862 19.436C103.836 18.9534 102.698 18.761 101.572 18.8794L57.2567 23.4365C53.0154 23.8119 50.4706 26.0904 50.4706 30.9453V132.613C50.4628 133.625 50.6964 134.624 51.1518 135.526C50.088 135.032 49.1905 134.236 48.5695 133.235C47.9485 132.235 47.631 131.074 47.6559 129.894V28.2137C47.6913 26.3474 48.3992 24.5579 49.6478 23.1787C50.8964 21.7995 52.6004 20.9248 54.442 20.7177L98.7442 16.1477C99.9749 16.0041 101.22 16.242 102.313 16.8295C103.406 17.417 104.295 18.3263 104.862 19.436V19.436Z"
38
+ class="fill-white dark:fill-gray-900"
39
+ />
40
+ <path
41
+ d="M102.599 114.98L56.2788 119.731V33.5731L102.599 28.8218V114.98Z"
42
+ stroke="#9DA3AC"
43
+ stroke-width="1.29167"
44
+ stroke-linecap="round"
45
+ stroke-linejoin="round"
46
+ />
47
+ <path
48
+ d="M75.8406 27.1259L82.9737 26.4268"
49
+ stroke="#9DA3AC"
50
+ stroke-width="1.29167"
51
+ stroke-linecap="round"
52
+ stroke-linejoin="round"
53
+ />
54
+ <path
55
+ d="M84.4375 128.492C86.1174 126.717 86.1798 124.03 84.5768 122.491C82.9738 120.951 80.3125 121.143 78.6326 122.918C76.9527 124.693 76.8903 127.38 78.4933 128.919C80.0963 130.458 82.7576 130.267 84.4375 128.492Z"
56
+ stroke="#9DA3AC"
57
+ stroke-width="1.29167"
58
+ stroke-linecap="round"
59
+ stroke-linejoin="round"
60
+ />
61
+ <path
62
+ opacity="0.2"
63
+ d="M84.9915 127.861C84.6217 128.499 84.1077 129.04 83.4914 129.44C82.8751 129.841 82.1737 130.089 81.4442 130.165C80.9062 130.231 80.3604 130.179 79.8444 130.012C79.3284 129.845 78.8545 129.567 78.4551 129.198C78.0557 128.829 77.7404 128.377 77.5309 127.874C77.3214 127.37 77.2227 126.827 77.2415 126.282C77.2542 125.417 77.5001 124.572 77.9529 123.838C78.4057 123.104 79.0484 122.507 79.812 122.113C79.3884 122.82 79.1619 123.63 79.1565 124.456C79.149 124.997 79.2564 125.533 79.4715 126.029C79.6866 126.524 80.0045 126.968 80.4037 127.33C80.803 127.691 81.2744 127.963 81.7863 128.126C82.2983 128.289 82.839 128.34 83.3721 128.275C83.9331 128.242 84.4828 128.101 84.9915 127.861V127.861Z"
64
+ fill="#BDC7CE"
65
+ />
66
+ <path
67
+ opacity="0.2"
68
+ d="M90.0096 84.2891C96.2143 77.6428 96.5116 67.7718 90.6736 62.2418C84.8356 56.7117 75.073 57.6167 68.8682 64.263C62.6635 70.9094 62.3662 80.7803 68.2042 86.3104C74.0422 91.8405 83.8048 90.9355 90.0096 84.2891Z"
69
+ fill="#BDC7CE"
70
+ />
71
+ <path
72
+ d="M72.4863 75.3225L77.8972 80.2939L86.4183 67.1016"
73
+ stroke="#9DA3AC"
74
+ stroke-width="1.29167"
75
+ stroke-linecap="round"
76
+ stroke-linejoin="round"
77
+ />
78
+ </g>
79
+ <defs>
80
+ <clipPath id="clip0_2935_107718">
81
+ <rect
82
+ width="62"
83
+ height="124"
84
+ class="fill-white dark:fill-gray-900"
85
+ transform="translate(47 15.5)"
86
+ />
87
+ </clipPath>
88
+ </defs>
89
+ </svg>
90
+ </template>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;