adata-ui 3.0.2 → 3.1.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 (316) hide show
  1. package/dist/module.d.mts +2 -0
  2. package/dist/module.json +5 -1
  3. package/dist/module.mjs +39 -6
  4. package/dist/runtime/components/Alert.vue +62 -0
  5. package/dist/runtime/components/Alert.vue.d.ts +29 -0
  6. package/dist/runtime/components/Chip.vue +24 -0
  7. package/dist/runtime/components/Chip.vue.d.ts +19 -0
  8. package/dist/runtime/components/ColorMode.vue +46 -0
  9. package/dist/runtime/components/ColorMode.vue.d.ts +2 -0
  10. package/dist/runtime/components/DigitBadge.vue +58 -0
  11. package/dist/runtime/components/DigitBadge.vue.d.ts +21 -0
  12. package/dist/runtime/components/Footer.vue +283 -0
  13. package/dist/runtime/components/Footer.vue.d.ts +2 -0
  14. package/dist/runtime/components/FooterAccordion.vue +78 -0
  15. package/dist/runtime/components/FooterAccordion.vue.d.ts +11 -0
  16. package/dist/runtime/components/Header.vue +139 -0
  17. package/dist/runtime/components/Header.vue.d.ts +41 -0
  18. package/dist/runtime/components/NewFooter.vue +267 -0
  19. package/dist/runtime/components/NewFooter.vue.d.ts +2 -0
  20. package/dist/runtime/components/NewFooterAccordion.vue +85 -0
  21. package/dist/runtime/components/NewFooterAccordion.vue.d.ts +11 -0
  22. package/dist/runtime/components/OtherServiceFeatures.vue +104 -0
  23. package/dist/runtime/components/OtherServiceFeatures.vue.d.ts +2 -0
  24. package/dist/runtime/components/Tag.vue +46 -0
  25. package/dist/runtime/components/Tag.vue.d.ts +25 -0
  26. package/dist/runtime/components/Toggle.vue +139 -0
  27. package/dist/runtime/components/Toggle.vue.d.ts +39 -0
  28. package/dist/runtime/components/accordion/Accordion.vue +149 -0
  29. package/dist/runtime/components/accordion/Accordion.vue.d.ts +41 -0
  30. package/dist/runtime/components/accordion/types.d.ts +15 -0
  31. package/dist/runtime/components/accordion/types.js +0 -0
  32. package/dist/runtime/components/accordion/ui.config.d.ts +22 -0
  33. package/dist/runtime/components/accordion/ui.config.js +21 -0
  34. package/dist/runtime/components/button/Button.vue +133 -0
  35. package/dist/runtime/components/button/Button.vue.d.ts +37 -0
  36. package/dist/runtime/components/button/types.d.ts +21 -0
  37. package/dist/runtime/components/button/types.js +0 -0
  38. package/dist/runtime/components/checkbox/Checkbox.vue +124 -0
  39. package/dist/runtime/components/checkbox/Checkbox.vue.d.ts +45 -0
  40. package/dist/runtime/components/date-picker/DatePicker.vue +102 -0
  41. package/dist/runtime/components/date-picker/DatePicker.vue.d.ts +16 -0
  42. package/dist/runtime/components/floating-label/FloatingLabel.vue +22 -0
  43. package/dist/runtime/components/floating-label/FloatingLabel.vue.d.ts +16 -0
  44. package/dist/runtime/components/forms/input/standard/InputStandard.vue +301 -0
  45. package/dist/runtime/components/forms/input/standard/InputStandard.vue.d.ts +0 -0
  46. package/dist/runtime/components/forms/input/textarea/ATextarea.vue +158 -0
  47. package/dist/runtime/components/forms/input/textarea/ATextarea.vue.d.ts +43 -0
  48. package/dist/runtime/components/forms/need-more-data/NeedMoreData.vue +114 -0
  49. package/dist/runtime/components/forms/need-more-data/NeedMoreData.vue.d.ts +5 -0
  50. package/dist/runtime/components/forms/request-demo/RequestDemo.vue +67 -0
  51. package/dist/runtime/components/forms/request-demo/RequestDemo.vue.d.ts +23 -0
  52. package/dist/runtime/components/header/AlmatyContacts.vue +120 -0
  53. package/dist/runtime/components/header/AlmatyContacts.vue.d.ts +2 -0
  54. package/dist/runtime/components/header/AstanaContacts.vue +65 -0
  55. package/dist/runtime/components/header/AstanaContacts.vue.d.ts +2 -0
  56. package/dist/runtime/components/header/CardGallery.vue +156 -0
  57. package/dist/runtime/components/header/CardGallery.vue.d.ts +2 -0
  58. package/dist/runtime/components/header/ContactMenu.vue +105 -0
  59. package/dist/runtime/components/header/ContactMenu.vue.d.ts +11 -0
  60. package/dist/runtime/components/header/HeaderLink.vue +169 -0
  61. package/dist/runtime/components/header/HeaderLink.vue.d.ts +2 -0
  62. package/dist/runtime/components/header/LangSwitcher.vue +48 -0
  63. package/dist/runtime/components/header/LangSwitcher.vue.d.ts +2 -0
  64. package/dist/runtime/components/header/ListItem.vue +26 -0
  65. package/dist/runtime/components/header/ListItem.vue.d.ts +7 -0
  66. package/dist/runtime/components/header/NavCard.vue +40 -0
  67. package/dist/runtime/components/header/NavCard.vue.d.ts +8 -0
  68. package/dist/runtime/components/header/NavList.vue +101 -0
  69. package/dist/runtime/components/header/NavList.vue.d.ts +17 -0
  70. package/dist/runtime/components/header/ProductMenu.vue +369 -0
  71. package/dist/runtime/components/header/ProductMenu.vue.d.ts +11 -0
  72. package/dist/runtime/components/header/ProfileMenu.vue +56 -0
  73. package/dist/runtime/components/header/ProfileMenu.vue.d.ts +16 -0
  74. package/dist/runtime/components/header/ProfileMenuContent.vue +228 -0
  75. package/dist/runtime/components/header/ProfileMenuContent.vue.d.ts +16 -0
  76. package/dist/runtime/components/header/TopHeader.vue +152 -0
  77. package/dist/runtime/components/header/TopHeader.vue.d.ts +10 -0
  78. package/dist/runtime/components/header/types.d.ts +19 -0
  79. package/dist/runtime/components/header/types.js +0 -0
  80. package/dist/runtime/components/header-mobile/HeaderMobile.vue +53 -0
  81. package/dist/runtime/components/header-mobile/HeaderMobile.vue.d.ts +17 -0
  82. package/dist/runtime/components/mobile-navigation/BottomNavigation.vue +68 -0
  83. package/dist/runtime/components/mobile-navigation/BottomNavigation.vue.d.ts +29 -0
  84. package/dist/runtime/components/mobile-navigation/MainButton.vue +16 -0
  85. package/dist/runtime/components/mobile-navigation/MainButton.vue.d.ts +2 -0
  86. package/dist/runtime/components/mobile-navigation/MobileProductMenu.vue +261 -0
  87. package/dist/runtime/components/mobile-navigation/MobileProductMenu.vue.d.ts +2 -0
  88. package/dist/runtime/components/modals/NoAccessContent.vue +58 -0
  89. package/dist/runtime/components/modals/NoAccessContent.vue.d.ts +5 -0
  90. package/dist/runtime/components/pill-tabs/PillTabs.vue +137 -0
  91. package/dist/runtime/components/pill-tabs/PillTabs.vue.d.ts +38 -0
  92. package/dist/runtime/components/pill-tabs/types.d.ts +18 -0
  93. package/dist/runtime/components/pill-tabs/types.js +0 -0
  94. package/dist/runtime/components/radio-button/RadioButton.vue +69 -0
  95. package/dist/runtime/components/radio-button/RadioButton.vue.d.ts +40 -0
  96. package/dist/runtime/components/row-card/RowCard.vue +44 -0
  97. package/dist/runtime/components/row-card/RowCard.vue.d.ts +26 -0
  98. package/dist/runtime/components/select-row/index.vue +117 -0
  99. package/dist/runtime/components/select-row/index.vue.d.ts +31 -0
  100. package/dist/runtime/components/tree-select/TreeSelect.vue +132 -0
  101. package/dist/runtime/components/tree-select/TreeSelect.vue.d.ts +22 -0
  102. package/dist/runtime/components/tree-select/TreeService.d.ts +54 -0
  103. package/dist/runtime/components/tree-select/TreeService.js +209 -0
  104. package/dist/runtime/components/tree-select/components/tree-select-nodes.vue +100 -0
  105. package/dist/runtime/components/tree-select/components/tree-select-nodes.vue.d.ts +9 -0
  106. package/dist/runtime/components/tree-select/types.d.ts +29 -0
  107. package/dist/runtime/components/tree-select/types.js +0 -0
  108. package/dist/runtime/composables/highlight.d.ts +1 -0
  109. package/dist/runtime/composables/highlight.js +15 -0
  110. package/dist/runtime/composables/projectState.d.ts +2 -0
  111. package/dist/runtime/composables/projectState.js +3 -0
  112. package/dist/runtime/i18n/i18n.config.d.ts +1731 -0
  113. package/dist/runtime/i18n/i18n.config.js +20 -0
  114. package/dist/runtime/i18n.d.ts +2 -0
  115. package/dist/runtime/i18n.js +15 -0
  116. package/dist/runtime/icons/arrow/arrow-circle-down.vue +30 -0
  117. package/dist/runtime/icons/arrow/arrow-circle-down.vue.d.ts +2 -0
  118. package/dist/runtime/icons/arrow/arrow-graph-up.vue +24 -0
  119. package/dist/runtime/icons/arrow/arrow-graph-up.vue.d.ts +2 -0
  120. package/dist/runtime/icons/arrow/arrow-right.vue +24 -0
  121. package/dist/runtime/icons/arrow/arrow-right.vue.d.ts +2 -0
  122. package/dist/runtime/icons/arrow/arrow-side-up.vue +19 -0
  123. package/dist/runtime/icons/arrow/arrow-side-up.vue.d.ts +2 -0
  124. package/dist/runtime/icons/arrow/arrow-top-right-on-square.vue +19 -0
  125. package/dist/runtime/icons/arrow/arrow-top-right-on-square.vue.d.ts +2 -0
  126. package/dist/runtime/icons/arrow/chevron-down.vue +19 -0
  127. package/dist/runtime/icons/arrow/chevron-down.vue.d.ts +2 -0
  128. package/dist/runtime/icons/avatar.vue +41 -0
  129. package/dist/runtime/icons/avatar.vue.d.ts +2 -0
  130. package/dist/runtime/icons/avto/car.vue +17 -0
  131. package/dist/runtime/icons/avto/car.vue.d.ts +2 -0
  132. package/dist/runtime/icons/avto/truck.vue +17 -0
  133. package/dist/runtime/icons/avto/truck.vue.d.ts +2 -0
  134. package/dist/runtime/icons/block.vue +19 -0
  135. package/dist/runtime/icons/block.vue.d.ts +2 -0
  136. package/dist/runtime/icons/bookmark.vue +19 -0
  137. package/dist/runtime/icons/bookmark.vue.d.ts +2 -0
  138. package/dist/runtime/icons/calculator.vue +19 -0
  139. package/dist/runtime/icons/calculator.vue.d.ts +2 -0
  140. package/dist/runtime/icons/calendar.vue +24 -0
  141. package/dist/runtime/icons/calendar.vue.d.ts +2 -0
  142. package/dist/runtime/icons/check-circle.vue +25 -0
  143. package/dist/runtime/icons/check-circle.vue.d.ts +2 -0
  144. package/dist/runtime/icons/checkbox/checkbox-active.vue +19 -0
  145. package/dist/runtime/icons/checkbox/checkbox-active.vue.d.ts +2 -0
  146. package/dist/runtime/icons/checkbox/checkbox-empty.vue +20 -0
  147. package/dist/runtime/icons/checkbox/checkbox-empty.vue.d.ts +2 -0
  148. package/dist/runtime/icons/checkbox/checkbox-intermediate.vue +19 -0
  149. package/dist/runtime/icons/checkbox/checkbox-intermediate.vue.d.ts +2 -0
  150. package/dist/runtime/icons/clipboard-text.vue +17 -0
  151. package/dist/runtime/icons/clipboard-text.vue.d.ts +2 -0
  152. package/dist/runtime/icons/clock.vue +25 -0
  153. package/dist/runtime/icons/clock.vue.d.ts +2 -0
  154. package/dist/runtime/icons/color-mode/moon.vue +20 -0
  155. package/dist/runtime/icons/color-mode/moon.vue.d.ts +2 -0
  156. package/dist/runtime/icons/color-mode/sun.vue +27 -0
  157. package/dist/runtime/icons/color-mode/sun.vue.d.ts +2 -0
  158. package/dist/runtime/icons/communication/mail.vue +19 -0
  159. package/dist/runtime/icons/communication/mail.vue.d.ts +2 -0
  160. package/dist/runtime/icons/communication/phone.vue +19 -0
  161. package/dist/runtime/icons/communication/phone.vue.d.ts +2 -0
  162. package/dist/runtime/icons/company.vue +19 -0
  163. package/dist/runtime/icons/company.vue.d.ts +2 -0
  164. package/dist/runtime/icons/currency/dollar.vue +19 -0
  165. package/dist/runtime/icons/currency/dollar.vue.d.ts +2 -0
  166. package/dist/runtime/icons/currency/down.vue +22 -0
  167. package/dist/runtime/icons/currency/down.vue.d.ts +2 -0
  168. package/dist/runtime/icons/currency/eur.vue +69 -0
  169. package/dist/runtime/icons/currency/eur.vue.d.ts +2 -0
  170. package/dist/runtime/icons/currency/rub.vue +25 -0
  171. package/dist/runtime/icons/currency/rub.vue.d.ts +2 -0
  172. package/dist/runtime/icons/currency/usd.vue +269 -0
  173. package/dist/runtime/icons/currency/usd.vue.d.ts +2 -0
  174. package/dist/runtime/icons/currency/yuan.vue +37 -0
  175. package/dist/runtime/icons/currency/yuan.vue.d.ts +2 -0
  176. package/dist/runtime/icons/document/hdocument.vue +17 -0
  177. package/dist/runtime/icons/document/hdocument.vue.d.ts +2 -0
  178. package/dist/runtime/icons/document/id.vue +19 -0
  179. package/dist/runtime/icons/document/id.vue.d.ts +2 -0
  180. package/dist/runtime/icons/document/profile.vue +19 -0
  181. package/dist/runtime/icons/document/profile.vue.d.ts +2 -0
  182. package/dist/runtime/icons/download.vue +26 -0
  183. package/dist/runtime/icons/download.vue.d.ts +2 -0
  184. package/dist/runtime/icons/edit.vue +24 -0
  185. package/dist/runtime/icons/edit.vue.d.ts +2 -0
  186. package/dist/runtime/icons/file/excel.vue +88 -0
  187. package/dist/runtime/icons/file/excel.vue.d.ts +2 -0
  188. package/dist/runtime/icons/file/file.vue +19 -0
  189. package/dist/runtime/icons/file/file.vue.d.ts +2 -0
  190. package/dist/runtime/icons/file/files.vue +17 -0
  191. package/dist/runtime/icons/file/files.vue.d.ts +2 -0
  192. package/dist/runtime/icons/globe.vue +19 -0
  193. package/dist/runtime/icons/globe.vue.d.ts +2 -0
  194. package/dist/runtime/icons/handshake.vue +19 -0
  195. package/dist/runtime/icons/handshake.vue.d.ts +2 -0
  196. package/dist/runtime/icons/history.vue +19 -0
  197. package/dist/runtime/icons/history.vue.d.ts +2 -0
  198. package/dist/runtime/icons/info/info-circle.vue +29 -0
  199. package/dist/runtime/icons/info/info-circle.vue.d.ts +2 -0
  200. package/dist/runtime/icons/invoice.vue +35 -0
  201. package/dist/runtime/icons/invoice.vue.d.ts +2 -0
  202. package/dist/runtime/icons/link-chain.vue +31 -0
  203. package/dist/runtime/icons/link-chain.vue.d.ts +2 -0
  204. package/dist/runtime/icons/loader-circle.vue +41 -0
  205. package/dist/runtime/icons/loader-circle.vue.d.ts +2 -0
  206. package/dist/runtime/icons/lock.vue +19 -0
  207. package/dist/runtime/icons/lock.vue.d.ts +2 -0
  208. package/dist/runtime/icons/logo/adata.vue +48 -0
  209. package/dist/runtime/icons/logo/adata.vue.d.ts +2 -0
  210. package/dist/runtime/icons/logo/logo.vue +27 -0
  211. package/dist/runtime/icons/logo/logo.vue.d.ts +2 -0
  212. package/dist/runtime/icons/medal.vue +17 -0
  213. package/dist/runtime/icons/medal.vue.d.ts +2 -0
  214. package/dist/runtime/icons/menu/menu-filled.vue +61 -0
  215. package/dist/runtime/icons/menu/menu-filled.vue.d.ts +2 -0
  216. package/dist/runtime/icons/menu/menu.vue +41 -0
  217. package/dist/runtime/icons/menu/menu.vue.d.ts +2 -0
  218. package/dist/runtime/icons/message.vue +24 -0
  219. package/dist/runtime/icons/message.vue.d.ts +2 -0
  220. package/dist/runtime/icons/modals/door.vue +170 -0
  221. package/dist/runtime/icons/modals/door.vue.d.ts +2 -0
  222. package/dist/runtime/icons/moon.vue +10 -0
  223. package/dist/runtime/icons/moon.vue.d.ts +2 -0
  224. package/dist/runtime/icons/more.vue +36 -0
  225. package/dist/runtime/icons/more.vue.d.ts +2 -0
  226. package/dist/runtime/icons/navigation/expand-window.vue +19 -0
  227. package/dist/runtime/icons/navigation/expand-window.vue.d.ts +2 -0
  228. package/dist/runtime/icons/navigation/location.vue +25 -0
  229. package/dist/runtime/icons/navigation/location.vue.d.ts +2 -0
  230. package/dist/runtime/icons/navigation/logout.vue +19 -0
  231. package/dist/runtime/icons/navigation/logout.vue.d.ts +2 -0
  232. package/dist/runtime/icons/notifications.vue +25 -0
  233. package/dist/runtime/icons/notifications.vue.d.ts +2 -0
  234. package/dist/runtime/icons/other-service/arrow-square-down.vue +15 -0
  235. package/dist/runtime/icons/other-service/arrow-square-down.vue.d.ts +2 -0
  236. package/dist/runtime/icons/other-service/arrow-top-right-on-square.vue +6 -0
  237. package/dist/runtime/icons/other-service/arrow-top-right-on-square.vue.d.ts +2 -0
  238. package/dist/runtime/icons/other-service/block.vue +16 -0
  239. package/dist/runtime/icons/other-service/block.vue.d.ts +2 -0
  240. package/dist/runtime/icons/other-service/currency-dollar.vue +16 -0
  241. package/dist/runtime/icons/other-service/currency-dollar.vue.d.ts +2 -0
  242. package/dist/runtime/icons/other-service/globe.vue +16 -0
  243. package/dist/runtime/icons/other-service/globe.vue.d.ts +2 -0
  244. package/dist/runtime/icons/other-service/link.vue +7 -0
  245. package/dist/runtime/icons/other-service/link.vue.d.ts +2 -0
  246. package/dist/runtime/icons/other-service/magnifying-glass.vue +9 -0
  247. package/dist/runtime/icons/other-service/magnifying-glass.vue.d.ts +2 -0
  248. package/dist/runtime/icons/other-service/standing-scales.vue +15 -0
  249. package/dist/runtime/icons/other-service/standing-scales.vue.d.ts +2 -0
  250. package/dist/runtime/icons/other-service/users-three.vue +7 -0
  251. package/dist/runtime/icons/other-service/users-three.vue.d.ts +2 -0
  252. package/dist/runtime/icons/plus-circle.vue +24 -0
  253. package/dist/runtime/icons/plus-circle.vue.d.ts +2 -0
  254. package/dist/runtime/icons/plus.vue +24 -0
  255. package/dist/runtime/icons/plus.vue.d.ts +2 -0
  256. package/dist/runtime/icons/radio/radio-check.vue +24 -0
  257. package/dist/runtime/icons/radio/radio-check.vue.d.ts +2 -0
  258. package/dist/runtime/icons/radio/radio-empty.vue +20 -0
  259. package/dist/runtime/icons/radio/radio-empty.vue.d.ts +2 -0
  260. package/dist/runtime/icons/receipt/hcheck.vue +27 -0
  261. package/dist/runtime/icons/receipt/hcheck.vue.d.ts +2 -0
  262. package/dist/runtime/icons/receipt/receipt.vue +27 -0
  263. package/dist/runtime/icons/receipt/receipt.vue.d.ts +2 -0
  264. package/dist/runtime/icons/scale.vue +19 -0
  265. package/dist/runtime/icons/scale.vue.d.ts +2 -0
  266. package/dist/runtime/icons/search.vue +27 -0
  267. package/dist/runtime/icons/search.vue.d.ts +2 -0
  268. package/dist/runtime/icons/socials/facebook.vue +15 -0
  269. package/dist/runtime/icons/socials/facebook.vue.d.ts +2 -0
  270. package/dist/runtime/icons/socials/instagram.vue +19 -0
  271. package/dist/runtime/icons/socials/instagram.vue.d.ts +2 -0
  272. package/dist/runtime/icons/socials/linkedin.vue +24 -0
  273. package/dist/runtime/icons/socials/linkedin.vue.d.ts +2 -0
  274. package/dist/runtime/icons/socials/telegram.vue +15 -0
  275. package/dist/runtime/icons/socials/telegram.vue.d.ts +2 -0
  276. package/dist/runtime/icons/socials/tik-tok.vue +15 -0
  277. package/dist/runtime/icons/socials/tik-tok.vue.d.ts +2 -0
  278. package/dist/runtime/icons/socials/whatsapp.vue +21 -0
  279. package/dist/runtime/icons/socials/whatsapp.vue.d.ts +2 -0
  280. package/dist/runtime/icons/socials/youtube.vue +16 -0
  281. package/dist/runtime/icons/socials/youtube.vue.d.ts +2 -0
  282. package/dist/runtime/icons/sun.vue +14 -0
  283. package/dist/runtime/icons/sun.vue.d.ts +2 -0
  284. package/dist/runtime/icons/sviazi.vue +19 -0
  285. package/dist/runtime/icons/sviazi.vue.d.ts +2 -0
  286. package/dist/runtime/icons/tenge.vue +22 -0
  287. package/dist/runtime/icons/tenge.vue.d.ts +2 -0
  288. package/dist/runtime/icons/trash.vue +24 -0
  289. package/dist/runtime/icons/trash.vue.d.ts +2 -0
  290. package/dist/runtime/icons/upload.vue +26 -0
  291. package/dist/runtime/icons/upload.vue.d.ts +2 -0
  292. package/dist/runtime/icons/user.vue +30 -0
  293. package/dist/runtime/icons/user.vue.d.ts +2 -0
  294. package/dist/runtime/icons/users/users-three.vue +17 -0
  295. package/dist/runtime/icons/users/users-three.vue.d.ts +2 -0
  296. package/dist/runtime/icons/users/users.vue +31 -0
  297. package/dist/runtime/icons/users/users.vue.d.ts +2 -0
  298. package/dist/runtime/icons/warning-triangle.vue +29 -0
  299. package/dist/runtime/icons/warning-triangle.vue.d.ts +2 -0
  300. package/dist/runtime/icons/work-bag.vue +20 -0
  301. package/dist/runtime/icons/work-bag.vue.d.ts +2 -0
  302. package/dist/runtime/icons/x-mark.vue +18 -0
  303. package/dist/runtime/icons/x-mark.vue.d.ts +2 -0
  304. package/dist/runtime/lang/en.d.ts +4 -0
  305. package/dist/runtime/lang/en.js +545 -0
  306. package/dist/runtime/lang/kk.d.ts +4 -0
  307. package/dist/runtime/lang/kk.js +545 -0
  308. package/dist/runtime/lang/ru.d.ts +575 -0
  309. package/dist/runtime/lang/ru.js +607 -0
  310. package/dist/runtime/shared/constants/pages.d.ts +71 -0
  311. package/dist/runtime/shared/constants/pages.js +71 -0
  312. package/package.json +66 -58
  313. package/dist/runtime/components/header/TheHeader.vue +0 -15
  314. package/dist/runtime/components/header/TheHeader.vue.d.ts +0 -2
  315. package/dist/runtime/plugin.d.ts +0 -2
  316. package/dist/runtime/plugin.js +0 -4
@@ -0,0 +1,26 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="16"
8
+ height="16"
9
+ viewBox="0 0 16 16"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ d="M1.83301 10.583C2.10915 10.583 2.33301 10.8069 2.33301 11.083V13.6664H13.6663V11.083C13.6663 10.8069 13.8902 10.583 14.1663 10.583C14.4425 10.583 14.6663 10.8069 14.6663 11.083V14.1664C14.6663 14.4425 14.4425 14.6664 14.1663 14.6664H1.83301C1.55687 14.6664 1.33301 14.4425 1.33301 14.1664V11.083C1.33301 10.8069 1.55687 10.583 1.83301 10.583Z"
15
+ fill="currentColor"
16
+ />
17
+ <path
18
+ d="M8.49967 11.083C8.49967 11.3592 8.27581 11.583 7.99967 11.583C7.72353 11.583 7.49967 11.3592 7.49967 11.083V3.0401L6.29766 4.24212C6.10239 4.43738 5.78581 4.43738 5.59055 4.24212C5.39529 4.04685 5.39529 3.73027 5.59055 3.53501L7.6461 1.47945C7.73987 1.38569 7.86705 1.33301 7.99966 1.33301C8.13227 1.33301 8.25944 1.38569 8.35321 1.47945L10.4088 3.53501C10.604 3.73027 10.604 4.04685 10.4088 4.24212C10.2135 4.43738 9.89692 4.43738 9.70166 4.24212L8.49967 3.04013V11.083Z"
19
+ fill="currentColor"
20
+ />
21
+ </svg>
22
+ </template>
23
+
24
+ <style scoped>
25
+
26
+ </style>
@@ -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,30 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="21"
8
+ height="20"
9
+ viewBox="0 0 21 20"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ fill-rule="evenodd"
15
+ clip-rule="evenodd"
16
+ d="M4.20993 13.131C4.96962 12.3713 5.99999 11.9445 7.07436 11.9445H13.9262C15.0006 11.9445 16.031 12.3713 16.7907 13.131C17.5503 13.8907 17.9771 14.9211 17.9771 15.9954V17.7084C17.9771 18.0536 17.6973 18.3334 17.3521 18.3334C17.007 18.3334 16.7271 18.0536 16.7271 17.7084V15.9954C16.7271 15.2526 16.432 14.5402 15.9068 14.0149C15.3815 13.4896 14.6691 13.1945 13.9262 13.1945H7.07436C6.33151 13.1945 5.61909 13.4896 5.09381 14.0149C4.56853 14.5402 4.27344 15.2526 4.27344 15.9954V17.7084C4.27344 18.0536 3.99362 18.3334 3.64844 18.3334C3.30326 18.3334 3.02344 18.0536 3.02344 17.7084V15.9954C3.02344 14.9211 3.45023 13.8907 4.20993 13.131Z"
17
+ fill="currentColor"
18
+ />
19
+ <path
20
+ fill-rule="evenodd"
21
+ clip-rule="evenodd"
22
+ d="M10.5003 2.91675C8.95338 2.91675 7.69937 4.17077 7.69937 5.71767C7.69937 7.26458 8.95338 8.5186 10.5003 8.5186C12.0472 8.5186 13.3012 7.26458 13.3012 5.71767C13.3012 4.17077 12.0472 2.91675 10.5003 2.91675ZM6.44937 5.71767C6.44937 3.48041 8.26303 1.66675 10.5003 1.66675C12.7376 1.66675 14.5512 3.48041 14.5512 5.71767C14.5512 7.95494 12.7376 9.7686 10.5003 9.7686C8.26303 9.7686 6.44937 7.95494 6.44937 5.71767Z"
23
+ fill="currentColor"
24
+ />
25
+ </svg>
26
+ </template>
27
+
28
+ <style scoped>
29
+
30
+ </style>
@@ -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,17 @@
1
+ <template>
2
+ <svg
3
+ width="20"
4
+ height="20"
5
+ viewBox="0 0 20 20"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M19.1252 11.7493C19.0596 11.7986 18.9849 11.8344 18.9053 11.8548C18.8258 11.8751 18.7431 11.8797 18.6618 11.868C18.5806 11.8564 18.5024 11.8289 18.4318 11.7871C18.3612 11.7453 18.2995 11.69 18.2502 11.6243C17.8735 11.118 17.3832 10.7071 16.8187 10.4249C16.2542 10.1426 15.6313 9.99688 15.0002 9.99933C14.8345 9.99933 14.6755 9.93348 14.5583 9.81627C14.4411 9.69906 14.3752 9.54009 14.3752 9.37433C14.3752 9.20857 14.4411 9.04959 14.5583 8.93238C14.6755 8.81517 14.8345 8.74933 15.0002 8.74933C15.3509 8.74929 15.6946 8.65092 15.9921 8.46537C16.2897 8.27983 16.5293 8.01455 16.6836 7.69967C16.838 7.38479 16.901 7.03293 16.8654 6.68406C16.8298 6.33519 16.6971 6.00329 16.4823 5.72606C16.2676 5.44883 15.9794 5.23739 15.6505 5.11574C15.3216 4.9941 14.9651 4.96713 14.6217 5.03791C14.2782 5.10868 13.9615 5.27435 13.7074 5.51612C13.4534 5.75788 13.2723 6.06603 13.1846 6.40558C13.1641 6.48509 13.1281 6.55978 13.0787 6.62538C13.0293 6.69099 12.9675 6.74623 12.8968 6.78794C12.8261 6.82966 12.7478 6.85703 12.6665 6.8685C12.5852 6.87997 12.5024 6.87531 12.4229 6.85479C12.3434 6.83428 12.2687 6.7983 12.2031 6.74891C12.1375 6.69953 12.0822 6.6377 12.0405 6.56697C11.9988 6.49624 11.9714 6.41798 11.96 6.33667C11.9485 6.25536 11.9532 6.17259 11.9737 6.09308C12.0954 5.62223 12.3253 5.18628 12.6451 4.81991C12.9649 4.45355 13.3658 4.16688 13.8159 3.98272C14.266 3.79857 14.7529 3.722 15.2378 3.75912C15.7227 3.79623 16.1922 3.94601 16.609 4.19652C17.0259 4.44704 17.3785 4.79138 17.6388 5.20215C17.8991 5.61292 18.06 6.07878 18.1086 6.56267C18.1572 7.04655 18.0922 7.5351 17.9188 7.98944C17.7454 8.44378 17.4683 8.85138 17.1096 9.17979C17.9595 9.54776 18.6982 10.1317 19.2526 10.8735C19.3018 10.9394 19.3376 11.0143 19.3578 11.0939C19.3781 11.1736 19.3824 11.2565 19.3706 11.3379C19.3588 11.4192 19.331 11.4974 19.2889 11.568C19.2468 11.6386 19.1912 11.7002 19.1252 11.7493ZM14.9159 16.5618C14.9595 16.633 14.9884 16.7121 15.001 16.7947C15.0135 16.8772 15.0094 16.9614 14.9889 17.0423C14.9684 17.1232 14.9319 17.1991 14.8815 17.2657C14.8311 17.3322 14.768 17.388 14.6957 17.4298C14.6234 17.4715 14.5435 17.4984 14.4607 17.5087C14.3779 17.5191 14.2938 17.5128 14.2135 17.4901C14.1332 17.4675 14.0582 17.429 13.993 17.3769C13.9278 17.3248 13.8737 17.2602 13.8338 17.1868C13.4401 16.5203 12.8794 15.968 12.207 15.5843C11.5347 15.2006 10.774 14.9988 9.99985 14.9988C9.22573 14.9988 8.46499 15.2006 7.79266 15.5843C7.12033 15.968 6.55962 16.5203 6.16586 17.1868C6.12679 17.2615 6.07301 17.3275 6.00777 17.3809C5.94252 17.4343 5.86715 17.4739 5.7862 17.4974C5.70524 17.5209 5.62037 17.5277 5.53669 17.5176C5.45302 17.5074 5.37226 17.4804 5.29928 17.4382C5.2263 17.396 5.16261 17.3395 5.11204 17.2721C5.06147 17.2047 5.02506 17.1277 5.005 17.0458C4.98495 16.9639 4.98166 16.8789 4.99535 16.7957C5.00903 16.7125 5.03939 16.633 5.08461 16.5618C5.69055 15.5207 6.61445 14.7014 7.72055 14.2243C7.09815 13.7478 6.64073 13.0882 6.41258 12.3383C6.18443 11.5883 6.19703 10.7857 6.44861 10.0433C6.70018 9.3009 7.17808 8.65599 7.81513 8.19923C8.45219 7.74247 9.21636 7.49682 10.0002 7.49682C10.7841 7.49682 11.5483 7.74247 12.1853 8.19923C12.8224 8.65599 13.3003 9.3009 13.5519 10.0433C13.8034 10.7857 13.816 11.5883 13.5879 12.3383C13.3597 13.0882 12.9023 13.7478 12.2799 14.2243C13.386 14.7014 14.3099 15.5207 14.9159 16.5618ZM10.0002 13.7493C10.4947 13.7493 10.978 13.6027 11.3892 13.328C11.8003 13.0533 12.1207 12.6628 12.3099 12.206C12.4992 11.7492 12.5487 11.2466 12.4522 10.7616C12.3557 10.2766 12.1176 9.83119 11.768 9.48156C11.4184 9.13193 10.9729 8.89383 10.488 8.79736C10.003 8.7009 9.50034 8.75041 9.04353 8.93963C8.58671 9.12885 8.19627 9.44928 7.92156 9.8604C7.64686 10.2715 7.50024 10.7549 7.50024 11.2493C7.50024 11.9124 7.76363 12.5483 8.23247 13.0171C8.70131 13.4859 9.3372 13.7493 10.0002 13.7493ZM5.62524 9.37433C5.62524 9.20857 5.55939 9.04959 5.44218 8.93238C5.32497 8.81517 5.166 8.74933 5.00024 8.74933C4.64956 8.74929 4.30591 8.65092 4.00834 8.46537C3.71076 8.27983 3.47119 8.01455 3.31682 7.69967C3.16246 7.38479 3.09949 7.03293 3.13508 6.68406C3.17066 6.33519 3.30337 6.00329 3.51813 5.72606C3.73289 5.44883 4.02109 5.23739 4.35 5.11574C4.67891 4.9941 5.03534 4.96713 5.3788 5.03791C5.72227 5.10868 6.039 5.27435 6.29303 5.51612C6.54706 5.75788 6.72819 6.06603 6.81586 6.40558C6.8573 6.56616 6.96083 6.7037 7.10368 6.78794C7.24653 6.87219 7.417 6.89623 7.57758 6.85479C7.73816 6.81335 7.8757 6.70982 7.95995 6.56697C8.04419 6.42412 8.06824 6.25366 8.0268 6.09308C7.90511 5.62223 7.67522 5.18628 7.3554 4.81991C7.03558 4.45355 6.63468 4.16688 6.18458 3.98272C5.73447 3.79857 5.2476 3.722 4.7627 3.75912C4.2778 3.79623 3.80826 3.94601 3.39143 4.19652C2.9746 4.44704 2.62199 4.79138 2.36166 5.20215C2.10133 5.61292 1.94046 6.07878 1.89185 6.56267C1.84325 7.04655 1.90825 7.5351 2.08168 7.98944C2.25511 8.44378 2.53219 8.85138 2.89086 9.17979C2.04186 9.54811 1.30392 10.132 0.750237 10.8735C0.650677 11.0062 0.607874 11.1729 0.631242 11.337C0.654611 11.5012 0.742238 11.6494 0.874846 11.7489C1.00745 11.8485 1.17418 11.8913 1.33835 11.8679C1.50252 11.8446 1.65068 11.7569 1.75024 11.6243C2.12695 11.118 2.61728 10.7071 3.18177 10.4249C3.74625 10.1426 4.36912 9.99688 5.00024 9.99933C5.166 9.99933 5.32497 9.93348 5.44218 9.81627C5.55939 9.69906 5.62524 9.54009 5.62524 9.37433Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>
15
+
16
+ <script setup lang="ts">
17
+ </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,31 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M10.0941 2.00014C10.1893 1.72628 10.4886 1.58149 10.7624 1.67674C11.2761 1.85539 11.6951 2.24714 11.979 2.74395C12.2632 3.2413 12.4099 3.83733 12.4099 4.43884C12.4099 5.04034 12.2632 5.63638 11.979 6.13373C11.6951 6.63053 11.2761 7.02228 10.7624 7.20093C10.4886 7.29618 10.1893 7.15139 10.0941 6.87753C9.99884 6.60367 10.1436 6.30446 10.4175 6.20921C10.6447 6.13018 10.8823 5.93663 11.0674 5.61278C11.2521 5.28948 11.3599 4.8762 11.3599 4.43884C11.3599 4.00147 11.2521 3.58819 11.0674 3.26489C10.8823 2.94104 10.6447 2.74749 10.4175 2.66846C10.1436 2.57321 9.99884 2.274 10.0941 2.00014Z"
11
+ fill="currentColor"
12
+ />
13
+ <path
14
+ d="M12.6664 9.43492C12.3861 9.36093 12.0988 9.52822 12.0248 9.80857C11.9508 10.0889 12.1181 10.3762 12.3985 10.4501C12.8392 10.5665 13.2319 10.8297 13.5136 11.2011C13.7954 11.5727 13.9495 12.0309 13.9499 12.504V13.8275C13.9499 14.1175 14.185 14.3525 14.4749 14.3525C14.7649 14.3525 14.9999 14.1175 14.9999 13.8275V12.5038C14.9994 11.8039 14.7715 11.1222 14.3502 10.5666C13.9287 10.0109 13.3369 9.61188 12.6664 9.43492Z"
15
+ fill="currentColor"
16
+ />
17
+ <path
18
+ d="M3.95311 9.41754C3.15856 9.41754 2.40398 9.75452 1.85317 10.3421C1.30343 10.9284 1 11.7169 1 12.5325V13.8275C1 14.1175 1.23505 14.3525 1.525 14.3525C1.81494 14.3525 2.04999 14.1175 2.04999 13.8275V12.5325C2.04999 11.9743 2.2582 11.4452 2.61918 11.0602C2.97908 10.6763 3.4597 10.4675 3.95311 10.4675H8.80933C9.30273 10.4675 9.78335 10.6763 10.1433 11.0602C10.5042 11.4452 10.7124 11.9743 10.7124 12.5325V13.8275C10.7124 14.1175 10.9475 14.3525 11.2374 14.3525C11.5274 14.3525 11.7624 14.1175 11.7624 13.8275V12.5325C11.7624 11.7169 11.459 10.9284 10.9093 10.3421C10.3584 9.75452 9.60387 9.41754 8.80933 9.41754H3.95311Z"
19
+ fill="currentColor"
20
+ />
21
+ <path
22
+ fill-rule="evenodd"
23
+ clip-rule="evenodd"
24
+ d="M6.38122 1.6476C4.83967 1.6476 3.58999 2.89728 3.58999 4.43884C3.58999 5.98039 4.83967 7.23007 6.38122 7.23007C7.92278 7.23007 9.17246 5.98039 9.17246 4.43884C9.17246 2.89728 7.92278 1.6476 6.38122 1.6476ZM4.63999 4.43884C4.63999 3.47718 5.41956 2.6976 6.38122 2.6976C7.34288 2.6976 8.12246 3.47718 8.12246 4.43884C8.12246 5.4005 7.34288 6.18007 6.38122 6.18007C5.41956 6.18007 4.63999 5.4005 4.63999 4.43884Z"
25
+ fill="currentColor"
26
+ />
27
+ </svg>
28
+ </template>
29
+
30
+ <script setup lang="ts">
31
+ </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,29 @@
1
+ <script setup lang="ts"></script>
2
+
3
+ <template>
4
+ <svg
5
+ width="1em"
6
+ height="1em"
7
+ viewBox="0 0 21 18"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ >
10
+ <path
11
+ fill-rule="evenodd"
12
+ clip-rule="evenodd"
13
+ d="M20.8346 15.9914L12.328 0.753631C12.1982 0.526725 12.001 0.336301 11.7581 0.20333C11.5153 0.0703596 11.2361 0 10.9515 0C10.6668 0 10.3877 0.0703596 10.1448 0.20333C9.90195 0.336301 9.70476 0.526725 9.57497 0.753631L1.06841 15.9914C0.949762 16.2023 0.893275 16.4368 0.904309 16.6727C0.915344 16.9087 0.993533 17.1381 1.13145 17.3394C1.26937 17.5406 1.46244 17.707 1.69232 17.8226C1.92221 17.9382 2.18127 17.9993 2.44492 18H19.458C19.7217 17.9993 19.9808 17.9382 20.2106 17.8226C20.4405 17.707 20.6336 17.5406 20.7715 17.3394C20.9094 17.1381 20.9876 16.9087 20.9987 16.6727C21.0097 16.4368 20.9532 16.2023 20.8346 15.9914ZM19.4006 16.5L11.0372 1.51872C11.0214 1.51021 10.9912 1.5 10.9515 1.5C10.9118 1.5 10.8816 1.51021 10.8658 1.51872L2.50238 16.5H19.4006Z"
14
+ fill="currentColor"
15
+ />
16
+ <path
17
+ fill-rule="evenodd"
18
+ clip-rule="evenodd"
19
+ d="M11 5.5C11.4142 5.5 11.75 5.83579 11.75 6.25V10.748C11.75 11.1623 11.4142 11.498 11 11.498C10.5858 11.498 10.25 11.1623 10.25 10.748V6.25C10.25 5.83579 10.5858 5.5 11 5.5Z"
20
+ fill="currentColor"
21
+ />
22
+ <path
23
+ d="M11.75 13.75C11.75 14.1642 11.4142 14.5 11 14.5C10.5858 14.5 10.25 14.1642 10.25 13.75C10.25 13.3358 10.5858 13 11 13C11.4142 13 11.75 13.3358 11.75 13.75Z"
24
+ fill="currentColor"
25
+ />
26
+ </svg>
27
+ </template>
28
+
29
+ <style scoped></style>
@@ -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,20 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 36 34"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M33.125 5.625H26.25V4.25C26.25 3.15598 25.8154 2.10677 25.0418 1.33318C24.2682 0.559597 23.219
11
+ 0.125 22.125 0.125H13.875C12.781 0.125 11.7318 0.559597 10.9582 1.33318C10.1846 2.10677 9.75 3.15598 9.75 4.25V5.625H2.875C2.14565
12
+ 5.625 1.44618 5.91473 0.930456 6.43046C0.414731 6.94618 0.125 7.64565 0.125 8.375V30.375C0.125 31.1043 0.414731 31.8038 0.930456
13
+ 32.3195C1.44618 32.8353 2.14565 33.125 2.875 33.125H33.125C33.8543 33.125 34.5538 32.8353 35.0695 32.3195C35.5853 31.8038 35.875 31.1043 35.875 30.375V8.375C35.875 7.64565 35.5853 6.94618 35.0695 6.43046C34.5538 5.91473 33.8543 5.625 33.125 5.625ZM12.5 4.25C12.5 3.88533 12.6449 3.53559 12.9027 3.27773C13.1606 3.01987 13.5103 2.875 13.875 2.875H22.125C22.4897 2.875 22.8394 3.01987 23.0973 3.27773C23.3551 3.53559 23.5 3.88533 23.5 4.25V5.625H12.5V4.25ZM33.125 8.375V15.5267C28.484 18.0529 23.284 19.3759 18 19.375C12.7162 19.376 7.51635 18.0535 2.875 15.5284V8.375H33.125ZM33.125 30.375H2.875V18.6256C7.58425 20.9291 12.7576 22.126 18 22.125C23.2425 22.1251 28.4158 20.9276 33.125 18.6239V30.375ZM13.875 15.25C13.875 14.8853 14.0199 14.5356 14.2777 14.2777C14.5356 14.0199 14.8853 13.875 15.25 13.875H20.75C21.1147 13.875 21.4644 14.0199 21.7223 14.2777C21.9801 14.5356 22.125 14.8853 22.125 15.25C22.125 15.6147 21.9801 15.9644 21.7223 16.2223C21.4644 16.4801 21.1147 16.625 20.75 16.625H15.25C14.8853 16.625 14.5356 16.4801 14.2777 16.2223C14.0199 15.9644 13.875 15.6147 13.875 15.25Z"
14
+ fill="currentColor"
15
+ />
16
+ </svg>
17
+ </template>
18
+
19
+ <script setup lang="ts">
20
+ </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,18 @@
1
+ <template>
2
+ <svg
3
+ class="shrink-0"
4
+ width="16"
5
+ height="16"
6
+ viewBox="0 0 16 16"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ fill="currentColor"
9
+ >
10
+ <path
11
+ clip-rule="evenodd"
12
+ d="M11.8326 4.97549C12.0558 4.75233 12.0558 4.39052 11.8326 4.16737C11.6095 3.94421 11.2477 3.94421 11.0245 4.16737L8 7.19188L4.97549 4.16737C4.75233 3.94421 4.39052 3.94421 4.16737 4.16737C3.94421 4.39052 3.94421 4.75233 4.16737 4.97549L7.19188 8L4.16737 11.0245C3.94421 11.2477 3.94421 11.6095 4.16737 11.8326C4.39052 12.0558 4.75233 12.0558 4.97549 11.8326L8 8.80812L11.0245 11.8326C11.2477 12.0558 11.6095 12.0558 11.8326 11.8326C12.0558 11.6095 12.0558 11.2477 11.8326 11.0245L8.80812 8L11.8326 4.97549Z"
13
+ />
14
+ </svg>
15
+ </template>
16
+
17
+ <script setup lang="ts">
18
+ </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,4 @@
1
+ import type Ru from './ru.js';
2
+ type RuLocale = typeof Ru;
3
+ declare const EnLocale: RuLocale;
4
+ export default EnLocale;