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,575 @@
1
+ declare const RuLocale: {
2
+ lang: {
3
+ ru: {
4
+ short: string;
5
+ long: string;
6
+ };
7
+ kk: {
8
+ short: string;
9
+ long: string;
10
+ };
11
+ en: {
12
+ short: string;
13
+ long: string;
14
+ };
15
+ };
16
+ reuse: {
17
+ yes: string;
18
+ selectDate: string;
19
+ date: string;
20
+ };
21
+ header: {
22
+ top: {
23
+ requestLimit: string;
24
+ daysLeft: string;
25
+ };
26
+ profile: {
27
+ tariff: string;
28
+ balance: string;
29
+ connected: string;
30
+ currentBalance: string;
31
+ addBalance: string;
32
+ requests: string;
33
+ daysLeft: string;
34
+ currentTheme: string;
35
+ colorScheme: string;
36
+ logout: string;
37
+ menu: {
38
+ personalInfo: string;
39
+ security: string;
40
+ work: string;
41
+ paymentHistory: string;
42
+ notifications: string;
43
+ favourites: string;
44
+ myReports: string;
45
+ browsingHistory: string;
46
+ myGroups: string;
47
+ notes: string;
48
+ };
49
+ };
50
+ mega: {
51
+ favourites: string;
52
+ tariffs: string;
53
+ useful: string;
54
+ apiDescription: string;
55
+ termsOfUse: string;
56
+ privacyPolicy: string;
57
+ };
58
+ navs: {
59
+ products: string;
60
+ tariffs: string;
61
+ contacts: string;
62
+ };
63
+ products: {
64
+ counterparties: {
65
+ label: string;
66
+ items: {
67
+ counterparty: {
68
+ title: string;
69
+ subtitle: string;
70
+ };
71
+ wholesale: {
72
+ title: string;
73
+ subtitle: string;
74
+ };
75
+ foreign: {
76
+ title: string;
77
+ subtitle: string;
78
+ };
79
+ compare: {
80
+ title: string;
81
+ subtitle: string;
82
+ };
83
+ networks: {
84
+ title: string;
85
+ subtitle: string;
86
+ };
87
+ unloading: {
88
+ title: string;
89
+ subtitle: string;
90
+ };
91
+ sanction: {
92
+ title: string;
93
+ subtitle: string;
94
+ };
95
+ offshore: {
96
+ title: string;
97
+ subtitle: string;
98
+ };
99
+ };
100
+ };
101
+ jobs: {
102
+ label: string;
103
+ items: {
104
+ vacancies: {
105
+ title: string;
106
+ subtitle: string;
107
+ };
108
+ resume: {
109
+ title: string;
110
+ subtitle: string;
111
+ };
112
+ };
113
+ };
114
+ tenders: {
115
+ label: string;
116
+ items: {
117
+ tenders: {
118
+ title: string;
119
+ subtitle: string;
120
+ };
121
+ contracts: {
122
+ title: string;
123
+ subtitle: string;
124
+ };
125
+ procurement: {
126
+ title: string;
127
+ subtitle: string;
128
+ };
129
+ };
130
+ };
131
+ fines: {
132
+ label: string;
133
+ items: {
134
+ fines: {
135
+ title: string;
136
+ subtitle: string;
137
+ };
138
+ auto: {
139
+ title: string;
140
+ subtitle: string;
141
+ };
142
+ wholesaleAuto: {
143
+ title: string;
144
+ subtitle: string;
145
+ };
146
+ };
147
+ };
148
+ analytics: {
149
+ label: string;
150
+ items: {
151
+ clients: {
152
+ title: string;
153
+ subtitle: string;
154
+ };
155
+ procurement: {
156
+ title: string;
157
+ subtitle: string;
158
+ };
159
+ activity: {
160
+ title: string;
161
+ subtitle: string;
162
+ };
163
+ subjects: {
164
+ title: string;
165
+ subtitle: string;
166
+ };
167
+ rate: {
168
+ title: string;
169
+ subtitle: string;
170
+ };
171
+ };
172
+ };
173
+ fea: {
174
+ label: string;
175
+ items: {
176
+ i: {
177
+ t: string;
178
+ st: string;
179
+ };
180
+ o: {
181
+ t: string;
182
+ st: string;
183
+ };
184
+ cp: {
185
+ t: string;
186
+ st: string;
187
+ };
188
+ ca: {
189
+ t: string;
190
+ st: string;
191
+ };
192
+ tr: {
193
+ t: string;
194
+ st: string;
195
+ };
196
+ };
197
+ };
198
+ compliance: {
199
+ label: string;
200
+ items: {
201
+ l: {
202
+ t: string;
203
+ st: string;
204
+ };
205
+ };
206
+ };
207
+ edo: {
208
+ label: string;
209
+ items: {
210
+ l: {
211
+ t: string;
212
+ };
213
+ };
214
+ };
215
+ galleryCards: {
216
+ unload: {
217
+ title: string;
218
+ subtitle: string;
219
+ };
220
+ ved: {
221
+ title: string;
222
+ subtitle: string;
223
+ };
224
+ compliance: {
225
+ title: string;
226
+ subtitle: string;
227
+ };
228
+ };
229
+ };
230
+ contacts: {
231
+ almaty: {
232
+ title: string;
233
+ adress: {
234
+ title: string;
235
+ subtitle: string;
236
+ };
237
+ email: {
238
+ title: string;
239
+ };
240
+ schedule: {
241
+ title: string;
242
+ subtitle: string;
243
+ };
244
+ sellDep: {
245
+ title: string;
246
+ };
247
+ support: {
248
+ title: string;
249
+ subtitle: string;
250
+ linkTitle: string;
251
+ };
252
+ };
253
+ astana: {
254
+ title: string;
255
+ adress: {
256
+ title: string;
257
+ subtitle: string;
258
+ };
259
+ email: {
260
+ title: string;
261
+ };
262
+ schedule: {
263
+ title: string;
264
+ subtitle: string;
265
+ };
266
+ sellDep: {
267
+ title: string;
268
+ };
269
+ details: {
270
+ title: string;
271
+ subtitle: string;
272
+ };
273
+ };
274
+ toContacts: string;
275
+ };
276
+ login: string;
277
+ oldVersion: string;
278
+ notifications: {
279
+ title: string;
280
+ seeAll: string;
281
+ noData: string;
282
+ };
283
+ };
284
+ footer: {
285
+ info: {
286
+ tariff: string;
287
+ helpful: string;
288
+ api: string;
289
+ userAgreement: string;
290
+ privacyPolicy: string;
291
+ vacancy: string;
292
+ counterparty: string;
293
+ contacts: string;
294
+ };
295
+ counterparties: {
296
+ title: string;
297
+ checkCounterparties: string;
298
+ compareCounterparties: string;
299
+ indirectConnections: string;
300
+ massCheck: string;
301
+ foreignCounterparties: string;
302
+ sanctions: string;
303
+ offshores: string;
304
+ };
305
+ work: {
306
+ title: string;
307
+ createFindVacancies: string;
308
+ createFindResume: string;
309
+ };
310
+ tenders: {
311
+ title: string;
312
+ searchTenders: string;
313
+ purchasePlans: string;
314
+ };
315
+ fines: {
316
+ title: string;
317
+ checkFines: string;
318
+ checkAuto: string;
319
+ massCheckAuto: string;
320
+ };
321
+ analytics: {
322
+ title: string;
323
+ searchCustomers: string;
324
+ purchaseAnalysis: string;
325
+ businessActivityIndex: string;
326
+ taxpayerRanking: string;
327
+ businessEntities: string;
328
+ };
329
+ fea: {
330
+ title: string;
331
+ i: string;
332
+ o: string;
333
+ cp: string;
334
+ calc: string;
335
+ mr: string;
336
+ };
337
+ compliance: {
338
+ title: string;
339
+ };
340
+ LLP: string;
341
+ slogan: string;
342
+ newVersion: {
343
+ services: {
344
+ title: string;
345
+ counterparties: string;
346
+ compliance: string;
347
+ edo: string;
348
+ ved: string;
349
+ procurement: string;
350
+ fines: string;
351
+ work: string;
352
+ analytics: string;
353
+ };
354
+ useful: {
355
+ title: string;
356
+ apiDescription: string;
357
+ userAgreement: string;
358
+ privacyPolicy: string;
359
+ vacancies: string;
360
+ companyDirectory: string;
361
+ };
362
+ contacts: {
363
+ title: string;
364
+ address: string;
365
+ goToChat: string;
366
+ };
367
+ };
368
+ };
369
+ our_clients: {
370
+ title: string;
371
+ };
372
+ forms: {
373
+ feedback: {
374
+ title: string;
375
+ subtitle: string;
376
+ email: string;
377
+ phone: string;
378
+ comment: string;
379
+ send: string;
380
+ close: string;
381
+ fieldRequired: string;
382
+ emailValid: string;
383
+ phoneMinLength: string;
384
+ commentMinLength: string;
385
+ commentMaxLength: string;
386
+ modalTitle: string;
387
+ modalSubtitle: string;
388
+ };
389
+ demo: {
390
+ t: string;
391
+ st: string;
392
+ e: string;
393
+ n: string;
394
+ p: string;
395
+ c: string;
396
+ b: string;
397
+ };
398
+ };
399
+ errorPage: {
400
+ 504: {
401
+ title: string;
402
+ subTitle: string;
403
+ };
404
+ 401: {
405
+ title: string;
406
+ subTitle: string;
407
+ };
408
+ 400: {
409
+ title: string;
410
+ subTitle: string;
411
+ };
412
+ 404: {
413
+ title: string;
414
+ subTitle: string;
415
+ subTitleSecond: string;
416
+ };
417
+ 403: {
418
+ title: string;
419
+ subTitle: string;
420
+ subTitleSecond: string;
421
+ };
422
+ 503: {
423
+ title: string;
424
+ subTitle: string;
425
+ };
426
+ 502: {
427
+ title: string;
428
+ subTitle: string;
429
+ list: string[];
430
+ };
431
+ 500: {
432
+ title: string;
433
+ subTitle: string;
434
+ };
435
+ };
436
+ actions: {
437
+ goToMainPage: string;
438
+ showMore: string;
439
+ close: string;
440
+ send: string;
441
+ };
442
+ modals: {
443
+ auth: {
444
+ title: string;
445
+ content: string;
446
+ firstTime: string;
447
+ };
448
+ limit: {
449
+ title: string;
450
+ content: string;
451
+ changedToBasic: string;
452
+ basicPlus: string;
453
+ };
454
+ mobile_navigation: {
455
+ type_main: string;
456
+ type_contacts: string;
457
+ type_tariff: string;
458
+ type_login: string;
459
+ type_profile: string;
460
+ return_button: string;
461
+ };
462
+ payment_method: {
463
+ title: string;
464
+ questions: string;
465
+ banks: {
466
+ kaspi: string;
467
+ other: string;
468
+ };
469
+ redirects_bank: {
470
+ title: string;
471
+ paymentId: string;
472
+ subtitle: string;
473
+ };
474
+ };
475
+ connecting: {
476
+ title: string;
477
+ questions: string;
478
+ };
479
+ replenish_modal: {
480
+ title: string;
481
+ info: string;
482
+ enter_sum: string;
483
+ };
484
+ low_balance: {
485
+ title: string;
486
+ current_balance: string;
487
+ questions: string;
488
+ };
489
+ another_device_modal: {
490
+ title: string;
491
+ info: string;
492
+ alert: string;
493
+ };
494
+ no_access: {
495
+ title: string;
496
+ info: string;
497
+ };
498
+ buttons: {
499
+ close: string;
500
+ back: string;
501
+ buy: string;
502
+ topUp: string;
503
+ goToMainPage: string;
504
+ logIn: string;
505
+ register: string;
506
+ goTariffs: string;
507
+ example: string;
508
+ toMain: string;
509
+ goToKaspi: string;
510
+ };
511
+ submit_application_modal: {
512
+ title: string;
513
+ labels: {
514
+ name: string;
515
+ email: string;
516
+ phone: string;
517
+ comment: string;
518
+ };
519
+ rules: {
520
+ required: string;
521
+ email: string;
522
+ };
523
+ };
524
+ application_accepted_modal: {
525
+ title: string;
526
+ info: string;
527
+ };
528
+ report_bug: {
529
+ title: string;
530
+ confirmed: string;
531
+ gratitude: string;
532
+ labels: {
533
+ name: string;
534
+ email: string;
535
+ phone: string;
536
+ comment: string;
537
+ };
538
+ validation: {
539
+ required: string;
540
+ phone: string;
541
+ };
542
+ };
543
+ };
544
+ mobile_navigation: {
545
+ contacts: {
546
+ first_type: string;
547
+ second_type: string;
548
+ allData: {
549
+ address: string;
550
+ address_info: string;
551
+ email: string;
552
+ mode: string;
553
+ mode_info: string;
554
+ sales_department: string;
555
+ technical_support: string;
556
+ support_link_title: string;
557
+ };
558
+ };
559
+ content: {};
560
+ };
561
+ illustrations: {
562
+ afterLogInBlock: {
563
+ tariff: string;
564
+ login: string;
565
+ };
566
+ };
567
+ restTasks: {
568
+ title: string;
569
+ tabTitleList: {
570
+ title: string;
571
+ description: string;
572
+ }[];
573
+ };
574
+ };
575
+ export default RuLocale;