@vkontakte/vkui 4.27.1 → 4.28.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (730) hide show
  1. package/.cache/.eslintcache +1 -1
  2. package/.cache/.stylelintcache +1 -1
  3. package/.cache/.tsbuildinfo +11910 -4711
  4. package/.cache/ts/src/components/Button/Button.d.ts +1 -1
  5. package/.cache/ts/src/components/ButtonGroup/ButtonGroup.d.ts +20 -0
  6. package/.cache/ts/src/components/Calendar/Calendar.d.ts +21 -0
  7. package/.cache/ts/src/components/CalendarDay/CalendarDay.d.ts +22 -0
  8. package/.cache/ts/src/components/CalendarDays/CalendarDays.d.ts +22 -0
  9. package/.cache/ts/src/components/CalendarHeader/CalendarHeader.d.ts +16 -0
  10. package/.cache/ts/src/components/CalendarRange/CalendarRange.d.ts +16 -0
  11. package/.cache/ts/src/components/CalendarTime/CalendarTime.d.ts +11 -0
  12. package/.cache/ts/src/components/ChipsSelect/ChipsSelect.d.ts +1 -2
  13. package/.cache/ts/src/components/ConfigProvider/ConfigProvider.d.ts +4 -0
  14. package/.cache/ts/src/components/ConfigProvider/ConfigProviderContext.d.ts +0 -7
  15. package/.cache/ts/src/components/CustomScrollView/CustomScrollView.d.ts +1 -1
  16. package/.cache/ts/src/components/CustomSelect/CustomSelect.d.ts +10 -1
  17. package/.cache/ts/src/components/CustomSelectDropdown/CustomSelectDropdown.d.ts +4 -1
  18. package/.cache/ts/src/components/DateInput/DateInput.d.ts +12 -0
  19. package/.cache/ts/src/components/DateRangeInput/DateRangeInput.d.ts +18 -0
  20. package/.cache/ts/src/components/Div/Div.d.ts +1 -2
  21. package/.cache/ts/src/components/IconButton/IconButton.d.ts +1 -1
  22. package/.cache/ts/src/components/InputLike/InputLike.d.ts +10 -0
  23. package/.cache/ts/src/components/InputLike/InputLikeDivider.d.ts +3 -0
  24. package/.cache/ts/src/components/LocaleProviderContext/LocaleProviderContext.d.ts +2 -0
  25. package/.cache/ts/src/components/Pagination/Pagination.d.ts +42 -0
  26. package/.cache/ts/src/components/PanelHeaderBack/PanelHeaderBack.d.ts +1 -1
  27. package/.cache/ts/src/components/RichCell/RichCell.d.ts +3 -2
  28. package/.cache/ts/src/components/Select/Select.d.ts +1 -1
  29. package/.cache/ts/src/components/SelectMimicry/SelectMimicry.d.ts +5 -1
  30. package/.cache/ts/src/components/SimpleCell/SimpleCell.d.ts +1 -1
  31. package/.cache/ts/src/components/SimpleCheckbox/SimpleCheckbox.d.ts +0 -1
  32. package/.cache/ts/src/components/Tappable/Tappable.d.ts +3 -1
  33. package/.cache/ts/src/components/Typography/Caption/Caption.d.ts +8 -4
  34. package/.cache/ts/src/components/Typography/Subhead/Subhead.d.ts +6 -1
  35. package/.cache/ts/src/components/Typography/Title/Title.d.ts +3 -1
  36. package/.cache/ts/src/components/View/ViewInfinite.d.ts +2 -2
  37. package/.cache/ts/src/helpers/typography.d.ts +1 -0
  38. package/.cache/ts/src/hooks/useBooleanState.d.ts +6 -0
  39. package/.cache/ts/src/hooks/useCalendar.d.ts +18 -0
  40. package/.cache/ts/src/hooks/useDateInput.d.ts +30 -0
  41. package/.cache/ts/src/hooks/useKeyboardInputTracker.d.ts +2 -0
  42. package/.cache/ts/src/hooks/useOrientationChange.d.ts +7 -0
  43. package/.cache/ts/src/hooks/usePagination.d.ts +34 -0
  44. package/.cache/ts/src/index.d.ts +12 -2
  45. package/.cache/ts/src/lib/calendar.d.ts +14 -0
  46. package/.cache/ts/src/lib/utils.d.ts +2 -1
  47. package/.cache/ts/src/tokenized/index.d.ts +14 -0
  48. package/.cache/ts/src/unstable/index.d.ts +6 -6
  49. package/CONTRIBUTING.md +3 -2
  50. package/CSS_GUIDE.md +145 -0
  51. package/dist/cjs/components/ActionSheet/ActionSheet.js +4 -7
  52. package/dist/cjs/components/ActionSheet/ActionSheet.js.map +1 -1
  53. package/dist/cjs/components/ActionSheetItem/ActionSheetItem.js +3 -6
  54. package/dist/cjs/components/ActionSheetItem/ActionSheetItem.js.map +1 -1
  55. package/dist/cjs/components/Alert/Alert.js +5 -8
  56. package/dist/cjs/components/Alert/Alert.js.map +1 -1
  57. package/dist/cjs/components/Banner/Banner.js +1 -3
  58. package/dist/cjs/components/Banner/Banner.js.map +1 -1
  59. package/dist/cjs/components/Button/Button.d.ts +1 -1
  60. package/dist/cjs/components/Button/Button.js +7 -11
  61. package/dist/cjs/components/Button/Button.js.map +1 -1
  62. package/dist/cjs/components/ButtonGroup/ButtonGroup.d.ts +20 -0
  63. package/dist/cjs/components/ButtonGroup/ButtonGroup.js +38 -0
  64. package/dist/cjs/components/ButtonGroup/ButtonGroup.js.map +1 -0
  65. package/dist/cjs/components/Calendar/Calendar.d.ts +21 -0
  66. package/dist/cjs/components/Calendar/Calendar.js +160 -0
  67. package/dist/cjs/components/Calendar/Calendar.js.map +1 -0
  68. package/dist/cjs/components/CalendarDay/CalendarDay.d.ts +22 -0
  69. package/dist/cjs/components/CalendarDay/CalendarDay.js +109 -0
  70. package/dist/cjs/components/CalendarDay/CalendarDay.js.map +1 -0
  71. package/dist/cjs/components/CalendarDays/CalendarDays.d.ts +22 -0
  72. package/dist/cjs/components/CalendarDays/CalendarDays.js +118 -0
  73. package/dist/cjs/components/CalendarDays/CalendarDays.js.map +1 -0
  74. package/dist/cjs/components/CalendarHeader/CalendarHeader.d.ts +16 -0
  75. package/dist/cjs/components/CalendarHeader/CalendarHeader.js +143 -0
  76. package/dist/cjs/components/CalendarHeader/CalendarHeader.js.map +1 -0
  77. package/dist/cjs/components/CalendarRange/CalendarRange.d.ts +16 -0
  78. package/dist/cjs/components/CalendarRange/CalendarRange.js +219 -0
  79. package/dist/cjs/components/CalendarRange/CalendarRange.js.map +1 -0
  80. package/dist/cjs/components/CalendarTime/CalendarTime.d.ts +11 -0
  81. package/dist/cjs/components/CalendarTime/CalendarTime.js +92 -0
  82. package/dist/cjs/components/CalendarTime/CalendarTime.js.map +1 -0
  83. package/dist/cjs/components/Checkbox/Checkbox.js +2 -5
  84. package/dist/cjs/components/Checkbox/Checkbox.js.map +1 -1
  85. package/dist/cjs/components/Chip/Chip.js +2 -4
  86. package/dist/cjs/components/Chip/Chip.js.map +1 -1
  87. package/dist/cjs/components/ChipsSelect/ChipsSelect.d.ts +1 -2
  88. package/dist/cjs/components/ChipsSelect/ChipsSelect.js +7 -11
  89. package/dist/cjs/components/ChipsSelect/ChipsSelect.js.map +1 -1
  90. package/dist/cjs/components/ConfigProvider/ConfigProvider.d.ts +4 -0
  91. package/dist/cjs/components/ConfigProvider/ConfigProvider.js +40 -21
  92. package/dist/cjs/components/ConfigProvider/ConfigProvider.js.map +1 -1
  93. package/dist/cjs/components/ConfigProvider/ConfigProviderContext.d.ts +0 -7
  94. package/dist/cjs/components/ConfigProvider/ConfigProviderContext.js +3 -5
  95. package/dist/cjs/components/ConfigProvider/ConfigProviderContext.js.map +1 -1
  96. package/dist/cjs/components/ContentCard/ContentCard.js +5 -7
  97. package/dist/cjs/components/ContentCard/ContentCard.js.map +1 -1
  98. package/dist/cjs/components/Counter/Counter.js +3 -3
  99. package/dist/cjs/components/Counter/Counter.js.map +1 -1
  100. package/dist/cjs/components/CustomScrollView/CustomScrollView.d.ts +1 -1
  101. package/dist/cjs/components/CustomScrollView/CustomScrollView.js.map +1 -1
  102. package/dist/cjs/components/CustomSelect/CustomSelect.d.ts +10 -1
  103. package/dist/cjs/components/CustomSelect/CustomSelect.js +47 -17
  104. package/dist/cjs/components/CustomSelect/CustomSelect.js.map +1 -1
  105. package/dist/cjs/components/CustomSelectDropdown/CustomSelectDropdown.d.ts +4 -1
  106. package/dist/cjs/components/CustomSelectDropdown/CustomSelectDropdown.js +14 -5
  107. package/dist/cjs/components/CustomSelectDropdown/CustomSelectDropdown.js.map +1 -1
  108. package/dist/cjs/components/CustomSelectOption/CustomSelectOption.js +3 -5
  109. package/dist/cjs/components/CustomSelectOption/CustomSelectOption.js.map +1 -1
  110. package/dist/cjs/components/DateInput/DateInput.d.ts +12 -0
  111. package/dist/cjs/components/DateInput/DateInput.js +290 -0
  112. package/dist/cjs/components/DateInput/DateInput.js.map +1 -0
  113. package/dist/cjs/components/DateRangeInput/DateRangeInput.d.ts +18 -0
  114. package/dist/cjs/components/DateRangeInput/DateRangeInput.js +310 -0
  115. package/dist/cjs/components/DateRangeInput/DateRangeInput.js.map +1 -0
  116. package/dist/cjs/components/Div/Div.d.ts +1 -2
  117. package/dist/cjs/components/Div/Div.js +2 -5
  118. package/dist/cjs/components/Div/Div.js.map +1 -1
  119. package/dist/cjs/components/Footer/Footer.js +2 -4
  120. package/dist/cjs/components/Footer/Footer.js.map +1 -1
  121. package/dist/cjs/components/FormItem/FormItem.js +2 -5
  122. package/dist/cjs/components/FormItem/FormItem.js.map +1 -1
  123. package/dist/cjs/components/FormStatus/FormStatus.js +3 -8
  124. package/dist/cjs/components/FormStatus/FormStatus.js.map +1 -1
  125. package/dist/cjs/components/Group/Group.js +3 -5
  126. package/dist/cjs/components/Group/Group.js.map +1 -1
  127. package/dist/cjs/components/Header/Header.js +10 -23
  128. package/dist/cjs/components/Header/Header.js.map +1 -1
  129. package/dist/cjs/components/HorizontalCell/HorizontalCell.js +5 -10
  130. package/dist/cjs/components/HorizontalCell/HorizontalCell.js.map +1 -1
  131. package/dist/cjs/components/IconButton/IconButton.d.ts +1 -1
  132. package/dist/cjs/components/InfoRow/InfoRow.js +1 -2
  133. package/dist/cjs/components/InfoRow/InfoRow.js.map +1 -1
  134. package/dist/cjs/components/InputLike/InputLike.d.ts +10 -0
  135. package/dist/cjs/components/InputLike/InputLike.js +71 -0
  136. package/dist/cjs/components/InputLike/InputLike.js.map +1 -0
  137. package/dist/cjs/components/InputLike/InputLikeDivider.d.ts +3 -0
  138. package/dist/cjs/components/InputLike/InputLikeDivider.js +27 -0
  139. package/dist/cjs/components/InputLike/InputLikeDivider.js.map +1 -0
  140. package/dist/cjs/components/LocaleProviderContext/LocaleProviderContext.d.ts +2 -0
  141. package/dist/cjs/components/LocaleProviderContext/LocaleProviderContext.js +14 -0
  142. package/dist/cjs/components/LocaleProviderContext/LocaleProviderContext.js.map +1 -0
  143. package/dist/cjs/components/ModalPage/ModalPage.js +5 -5
  144. package/dist/cjs/components/ModalPage/ModalPage.js.map +1 -1
  145. package/dist/cjs/components/Pagination/Pagination.d.ts +42 -0
  146. package/dist/cjs/components/Pagination/Pagination.js +152 -0
  147. package/dist/cjs/components/Pagination/Pagination.js.map +1 -0
  148. package/dist/cjs/components/PanelHeaderBack/PanelHeaderBack.d.ts +1 -1
  149. package/dist/cjs/components/PanelHeaderContent/PanelHeaderContent.js +2 -4
  150. package/dist/cjs/components/PanelHeaderContent/PanelHeaderContent.js.map +1 -1
  151. package/dist/cjs/components/PromoBanner/PromoBanner.js +3 -7
  152. package/dist/cjs/components/PromoBanner/PromoBanner.js.map +1 -1
  153. package/dist/cjs/components/Radio/Radio.js +2 -5
  154. package/dist/cjs/components/Radio/Radio.js.map +1 -1
  155. package/dist/cjs/components/Removable/Removable.js +8 -4
  156. package/dist/cjs/components/Removable/Removable.js.map +1 -1
  157. package/dist/cjs/components/RichCell/RichCell.d.ts +3 -2
  158. package/dist/cjs/components/RichCell/RichCell.js +0 -1
  159. package/dist/cjs/components/RichCell/RichCell.js.map +1 -1
  160. package/dist/cjs/components/Select/Select.d.ts +1 -1
  161. package/dist/cjs/components/SelectMimicry/SelectMimicry.d.ts +5 -1
  162. package/dist/cjs/components/SelectMimicry/SelectMimicry.js +11 -5
  163. package/dist/cjs/components/SelectMimicry/SelectMimicry.js.map +1 -1
  164. package/dist/cjs/components/SimpleCell/SimpleCell.d.ts +1 -1
  165. package/dist/cjs/components/SimpleCell/SimpleCell.js +0 -1
  166. package/dist/cjs/components/SimpleCell/SimpleCell.js.map +1 -1
  167. package/dist/cjs/components/SimpleCheckbox/SimpleCheckbox.d.ts +0 -1
  168. package/dist/cjs/components/SimpleCheckbox/SimpleCheckbox.js +2 -5
  169. package/dist/cjs/components/SimpleCheckbox/SimpleCheckbox.js.map +1 -1
  170. package/dist/cjs/components/Spacing/Spacing.js +2 -2
  171. package/dist/cjs/components/Spacing/Spacing.js.map +1 -1
  172. package/dist/cjs/components/SubnavigationButton/SubnavigationButton.js +4 -7
  173. package/dist/cjs/components/SubnavigationButton/SubnavigationButton.js.map +1 -1
  174. package/dist/cjs/components/Tappable/Tappable.d.ts +3 -1
  175. package/dist/cjs/components/Tappable/Tappable.js +11 -11
  176. package/dist/cjs/components/Tappable/Tappable.js.map +1 -1
  177. package/dist/cjs/components/TextTooltip/TextTooltip.js +1 -2
  178. package/dist/cjs/components/TextTooltip/TextTooltip.js.map +1 -1
  179. package/dist/cjs/components/Tooltip/Tooltip.js +1 -2
  180. package/dist/cjs/components/Tooltip/Tooltip.js.map +1 -1
  181. package/dist/cjs/components/Typography/Caption/Caption.d.ts +8 -4
  182. package/dist/cjs/components/Typography/Caption/Caption.js +12 -14
  183. package/dist/cjs/components/Typography/Caption/Caption.js.map +1 -1
  184. package/dist/cjs/components/Typography/Subhead/Subhead.d.ts +6 -1
  185. package/dist/cjs/components/Typography/Subhead/Subhead.js +15 -8
  186. package/dist/cjs/components/Typography/Subhead/Subhead.js.map +1 -1
  187. package/dist/cjs/components/Typography/Title/Title.d.ts +3 -1
  188. package/dist/cjs/components/Typography/Title/Title.js +4 -2
  189. package/dist/cjs/components/Typography/Title/Title.js.map +1 -1
  190. package/dist/cjs/components/UsersStack/UsersStack.js +3 -5
  191. package/dist/cjs/components/UsersStack/UsersStack.js.map +1 -1
  192. package/dist/cjs/components/View/ViewInfinite.d.ts +2 -2
  193. package/dist/cjs/components/View/ViewInfinite.js +12 -15
  194. package/dist/cjs/components/View/ViewInfinite.js.map +1 -1
  195. package/dist/cjs/helpers/typography.d.ts +1 -0
  196. package/dist/cjs/helpers/typography.js +25 -0
  197. package/dist/cjs/helpers/typography.js.map +1 -0
  198. package/dist/cjs/hooks/useBooleanState.d.ts +6 -0
  199. package/dist/cjs/hooks/useBooleanState.js +42 -0
  200. package/dist/cjs/hooks/useBooleanState.js.map +1 -0
  201. package/dist/cjs/hooks/useCalendar.d.ts +18 -0
  202. package/dist/cjs/hooks/useCalendar.js +78 -0
  203. package/dist/cjs/hooks/useCalendar.js.map +1 -0
  204. package/dist/cjs/hooks/useDateInput.d.ts +30 -0
  205. package/dist/cjs/hooks/useDateInput.js +180 -0
  206. package/dist/cjs/hooks/useDateInput.js.map +1 -0
  207. package/dist/cjs/hooks/useKeyboardInputTracker.d.ts +2 -0
  208. package/dist/cjs/hooks/useKeyboardInputTracker.js +15 -4
  209. package/dist/cjs/hooks/useKeyboardInputTracker.js.map +1 -1
  210. package/dist/cjs/hooks/useOrientationChange.d.ts +7 -0
  211. package/dist/cjs/hooks/useOrientationChange.js +56 -0
  212. package/dist/cjs/hooks/useOrientationChange.js.map +1 -0
  213. package/dist/cjs/hooks/usePagination.d.ts +34 -0
  214. package/dist/cjs/hooks/usePagination.js +81 -0
  215. package/dist/cjs/hooks/usePagination.js.map +1 -0
  216. package/dist/cjs/index.d.ts +12 -2
  217. package/dist/cjs/index.js +68 -4
  218. package/dist/cjs/index.js.map +1 -1
  219. package/dist/cjs/lib/calendar.d.ts +14 -0
  220. package/dist/cjs/lib/calendar.js +142 -0
  221. package/dist/cjs/lib/calendar.js.map +1 -0
  222. package/dist/cjs/lib/utils.d.ts +2 -1
  223. package/dist/cjs/lib/utils.js +7 -0
  224. package/dist/cjs/lib/utils.js.map +1 -1
  225. package/dist/cjs/tokenized/index.d.ts +14 -0
  226. package/dist/cjs/tokenized/index.js +56 -0
  227. package/dist/cjs/tokenized/index.js.map +1 -1
  228. package/dist/cjs/unstable/index.d.ts +6 -6
  229. package/dist/cjs/unstable/index.js +6 -8
  230. package/dist/cjs/unstable/index.js.map +1 -1
  231. package/dist/components/ActionSheet/ActionSheet.js +2 -5
  232. package/dist/components/ActionSheet/ActionSheet.js.map +1 -1
  233. package/dist/components/ActionSheetItem/ActionSheetItem.js +2 -5
  234. package/dist/components/ActionSheetItem/ActionSheetItem.js.map +1 -1
  235. package/dist/components/Alert/Alert.js +3 -6
  236. package/dist/components/Alert/Alert.js.map +1 -1
  237. package/dist/components/Banner/Banner.js +1 -3
  238. package/dist/components/Banner/Banner.js.map +1 -1
  239. package/dist/components/Button/Button.d.ts +1 -1
  240. package/dist/components/Button/Button.js +6 -10
  241. package/dist/components/Button/Button.js.map +1 -1
  242. package/dist/components/ButtonGroup/ButtonGroup.d.ts +20 -0
  243. package/dist/components/ButtonGroup/ButtonGroup.js +23 -0
  244. package/dist/components/ButtonGroup/ButtonGroup.js.map +1 -0
  245. package/dist/components/Calendar/Calendar.d.ts +21 -0
  246. package/dist/components/Calendar/Calendar.js +133 -0
  247. package/dist/components/Calendar/Calendar.js.map +1 -0
  248. package/dist/components/CalendarDay/CalendarDay.d.ts +22 -0
  249. package/dist/components/CalendarDay/CalendarDay.js +91 -0
  250. package/dist/components/CalendarDay/CalendarDay.js.map +1 -0
  251. package/dist/components/CalendarDays/CalendarDays.d.ts +22 -0
  252. package/dist/components/CalendarDays/CalendarDays.js +94 -0
  253. package/dist/components/CalendarDays/CalendarDays.js.map +1 -0
  254. package/dist/components/CalendarHeader/CalendarHeader.d.ts +16 -0
  255. package/dist/components/CalendarHeader/CalendarHeader.js +118 -0
  256. package/dist/components/CalendarHeader/CalendarHeader.js.map +1 -0
  257. package/dist/components/CalendarRange/CalendarRange.d.ts +16 -0
  258. package/dist/components/CalendarRange/CalendarRange.js +196 -0
  259. package/dist/components/CalendarRange/CalendarRange.js.map +1 -0
  260. package/dist/components/CalendarTime/CalendarTime.d.ts +11 -0
  261. package/dist/components/CalendarTime/CalendarTime.js +73 -0
  262. package/dist/components/CalendarTime/CalendarTime.js.map +1 -0
  263. package/dist/components/Checkbox/Checkbox.js +1 -4
  264. package/dist/components/Checkbox/Checkbox.js.map +1 -1
  265. package/dist/components/Chip/Chip.js +1 -3
  266. package/dist/components/Chip/Chip.js.map +1 -1
  267. package/dist/components/ChipsSelect/ChipsSelect.d.ts +1 -2
  268. package/dist/components/ChipsSelect/ChipsSelect.js +4 -7
  269. package/dist/components/ChipsSelect/ChipsSelect.js.map +1 -1
  270. package/dist/components/ConfigProvider/ConfigProvider.d.ts +4 -0
  271. package/dist/components/ConfigProvider/ConfigProvider.js +36 -20
  272. package/dist/components/ConfigProvider/ConfigProvider.js.map +1 -1
  273. package/dist/components/ConfigProvider/ConfigProviderContext.d.ts +0 -7
  274. package/dist/components/ConfigProvider/ConfigProviderContext.js +2 -3
  275. package/dist/components/ConfigProvider/ConfigProviderContext.js.map +1 -1
  276. package/dist/components/ContentCard/ContentCard.js +3 -5
  277. package/dist/components/ContentCard/ContentCard.js.map +1 -1
  278. package/dist/components/Counter/Counter.js +2 -2
  279. package/dist/components/Counter/Counter.js.map +1 -1
  280. package/dist/components/CustomScrollView/CustomScrollView.d.ts +1 -1
  281. package/dist/components/CustomScrollView/CustomScrollView.js.map +1 -1
  282. package/dist/components/CustomSelect/CustomSelect.d.ts +10 -1
  283. package/dist/components/CustomSelect/CustomSelect.js +44 -15
  284. package/dist/components/CustomSelect/CustomSelect.js.map +1 -1
  285. package/dist/components/CustomSelectDropdown/CustomSelectDropdown.d.ts +4 -1
  286. package/dist/components/CustomSelectDropdown/CustomSelectDropdown.js +14 -5
  287. package/dist/components/CustomSelectDropdown/CustomSelectDropdown.js.map +1 -1
  288. package/dist/components/CustomSelectOption/CustomSelectOption.js +2 -4
  289. package/dist/components/CustomSelectOption/CustomSelectOption.js.map +1 -1
  290. package/dist/components/DateInput/DateInput.d.ts +12 -0
  291. package/dist/components/DateInput/DateInput.js +261 -0
  292. package/dist/components/DateInput/DateInput.js.map +1 -0
  293. package/dist/components/DateRangeInput/DateRangeInput.d.ts +18 -0
  294. package/dist/components/DateRangeInput/DateRangeInput.js +281 -0
  295. package/dist/components/DateRangeInput/DateRangeInput.js.map +1 -0
  296. package/dist/components/Div/Div.d.ts +1 -2
  297. package/dist/components/Div/Div.js +1 -3
  298. package/dist/components/Div/Div.js.map +1 -1
  299. package/dist/components/Footer/Footer.js +1 -3
  300. package/dist/components/Footer/Footer.js.map +1 -1
  301. package/dist/components/FormItem/FormItem.js +1 -4
  302. package/dist/components/FormItem/FormItem.js.map +1 -1
  303. package/dist/components/FormStatus/FormStatus.js +2 -7
  304. package/dist/components/FormStatus/FormStatus.js.map +1 -1
  305. package/dist/components/Group/Group.js +2 -4
  306. package/dist/components/Group/Group.js.map +1 -1
  307. package/dist/components/Header/Header.js +7 -20
  308. package/dist/components/Header/Header.js.map +1 -1
  309. package/dist/components/HorizontalCell/HorizontalCell.js +3 -8
  310. package/dist/components/HorizontalCell/HorizontalCell.js.map +1 -1
  311. package/dist/components/IconButton/IconButton.d.ts +1 -1
  312. package/dist/components/InfoRow/InfoRow.js +1 -2
  313. package/dist/components/InfoRow/InfoRow.js.map +1 -1
  314. package/dist/components/InputLike/InputLike.d.ts +10 -0
  315. package/dist/components/InputLike/InputLike.js +52 -0
  316. package/dist/components/InputLike/InputLike.js.map +1 -0
  317. package/dist/components/InputLike/InputLikeDivider.d.ts +3 -0
  318. package/dist/components/InputLike/InputLikeDivider.js +13 -0
  319. package/dist/components/InputLike/InputLikeDivider.js.map +1 -0
  320. package/dist/components/LocaleProviderContext/LocaleProviderContext.d.ts +2 -0
  321. package/dist/components/LocaleProviderContext/LocaleProviderContext.js +3 -0
  322. package/dist/components/LocaleProviderContext/LocaleProviderContext.js.map +1 -0
  323. package/dist/components/ModalPage/ModalPage.js +4 -5
  324. package/dist/components/ModalPage/ModalPage.js.map +1 -1
  325. package/dist/components/Pagination/Pagination.d.ts +42 -0
  326. package/dist/components/Pagination/Pagination.js +129 -0
  327. package/dist/components/Pagination/Pagination.js.map +1 -0
  328. package/dist/components/PanelHeaderBack/PanelHeaderBack.d.ts +1 -1
  329. package/dist/components/PanelHeaderContent/PanelHeaderContent.js +1 -3
  330. package/dist/components/PanelHeaderContent/PanelHeaderContent.js.map +1 -1
  331. package/dist/components/PromoBanner/PromoBanner.js +1 -5
  332. package/dist/components/PromoBanner/PromoBanner.js.map +1 -1
  333. package/dist/components/Radio/Radio.js +1 -4
  334. package/dist/components/Radio/Radio.js.map +1 -1
  335. package/dist/components/Removable/Removable.js +8 -4
  336. package/dist/components/Removable/Removable.js.map +1 -1
  337. package/dist/components/RichCell/RichCell.d.ts +3 -2
  338. package/dist/components/RichCell/RichCell.js +0 -1
  339. package/dist/components/RichCell/RichCell.js.map +1 -1
  340. package/dist/components/Select/Select.d.ts +1 -1
  341. package/dist/components/SelectMimicry/SelectMimicry.d.ts +5 -1
  342. package/dist/components/SelectMimicry/SelectMimicry.js +10 -5
  343. package/dist/components/SelectMimicry/SelectMimicry.js.map +1 -1
  344. package/dist/components/SimpleCell/SimpleCell.d.ts +1 -1
  345. package/dist/components/SimpleCell/SimpleCell.js +0 -1
  346. package/dist/components/SimpleCell/SimpleCell.js.map +1 -1
  347. package/dist/components/SimpleCheckbox/SimpleCheckbox.d.ts +0 -1
  348. package/dist/components/SimpleCheckbox/SimpleCheckbox.js +1 -3
  349. package/dist/components/SimpleCheckbox/SimpleCheckbox.js.map +1 -1
  350. package/dist/components/Spacing/Spacing.js +2 -2
  351. package/dist/components/Spacing/Spacing.js.map +1 -1
  352. package/dist/components/SubnavigationButton/SubnavigationButton.js +3 -6
  353. package/dist/components/SubnavigationButton/SubnavigationButton.js.map +1 -1
  354. package/dist/components/Tappable/Tappable.d.ts +3 -1
  355. package/dist/components/Tappable/Tappable.js +10 -11
  356. package/dist/components/Tappable/Tappable.js.map +1 -1
  357. package/dist/components/TextTooltip/TextTooltip.js +1 -2
  358. package/dist/components/TextTooltip/TextTooltip.js.map +1 -1
  359. package/dist/components/Tooltip/Tooltip.js +1 -2
  360. package/dist/components/Tooltip/Tooltip.js.map +1 -1
  361. package/dist/components/Typography/Caption/Caption.d.ts +8 -4
  362. package/dist/components/Typography/Caption/Caption.js +10 -14
  363. package/dist/components/Typography/Caption/Caption.js.map +1 -1
  364. package/dist/components/Typography/Subhead/Subhead.d.ts +6 -1
  365. package/dist/components/Typography/Subhead/Subhead.js +13 -7
  366. package/dist/components/Typography/Subhead/Subhead.js.map +1 -1
  367. package/dist/components/Typography/Title/Title.d.ts +3 -1
  368. package/dist/components/Typography/Title/Title.js +3 -2
  369. package/dist/components/Typography/Title/Title.js.map +1 -1
  370. package/dist/components/UsersStack/UsersStack.js +2 -4
  371. package/dist/components/UsersStack/UsersStack.js.map +1 -1
  372. package/dist/components/View/ViewInfinite.d.ts +2 -2
  373. package/dist/components/View/ViewInfinite.js +10 -11
  374. package/dist/components/View/ViewInfinite.js.map +1 -1
  375. package/dist/components.css +5 -5
  376. package/dist/components.css.map +1 -1
  377. package/dist/cssm/components/ActionSheet/ActionSheet.js +2 -5
  378. package/dist/cssm/components/ActionSheet/ActionSheet.js.map +1 -1
  379. package/dist/cssm/components/ActionSheetItem/ActionSheetItem.js +2 -5
  380. package/dist/cssm/components/ActionSheetItem/ActionSheetItem.js.map +1 -1
  381. package/dist/cssm/components/Alert/Alert.js +3 -6
  382. package/dist/cssm/components/Alert/Alert.js.map +1 -1
  383. package/dist/cssm/components/Banner/Banner.js +1 -3
  384. package/dist/cssm/components/Banner/Banner.js.map +1 -1
  385. package/dist/cssm/components/Button/Button.css +1 -1
  386. package/dist/cssm/components/Button/Button.d.ts +1 -1
  387. package/dist/cssm/components/Button/Button.js +6 -10
  388. package/dist/cssm/components/Button/Button.js.map +1 -1
  389. package/dist/cssm/components/ButtonGroup/ButtonGroup.css +1 -0
  390. package/dist/cssm/components/ButtonGroup/ButtonGroup.d.ts +20 -0
  391. package/dist/cssm/components/ButtonGroup/ButtonGroup.js +24 -0
  392. package/dist/cssm/components/ButtonGroup/ButtonGroup.js.map +1 -0
  393. package/dist/cssm/components/Calendar/Calendar.css +1 -0
  394. package/dist/cssm/components/Calendar/Calendar.d.ts +21 -0
  395. package/dist/cssm/components/Calendar/Calendar.js +134 -0
  396. package/dist/cssm/components/Calendar/Calendar.js.map +1 -0
  397. package/dist/cssm/components/CalendarDay/CalendarDay.css +1 -0
  398. package/dist/cssm/components/CalendarDay/CalendarDay.d.ts +22 -0
  399. package/dist/cssm/components/CalendarDay/CalendarDay.js +92 -0
  400. package/dist/cssm/components/CalendarDay/CalendarDay.js.map +1 -0
  401. package/dist/cssm/components/CalendarDays/CalendarDays.css +1 -0
  402. package/dist/cssm/components/CalendarDays/CalendarDays.d.ts +22 -0
  403. package/dist/cssm/components/CalendarDays/CalendarDays.js +95 -0
  404. package/dist/cssm/components/CalendarDays/CalendarDays.js.map +1 -0
  405. package/dist/cssm/components/CalendarHeader/CalendarHeader.css +1 -0
  406. package/dist/cssm/components/CalendarHeader/CalendarHeader.d.ts +16 -0
  407. package/dist/cssm/components/CalendarHeader/CalendarHeader.js +119 -0
  408. package/dist/cssm/components/CalendarHeader/CalendarHeader.js.map +1 -0
  409. package/dist/cssm/components/CalendarRange/CalendarRange.css +1 -0
  410. package/dist/cssm/components/CalendarRange/CalendarRange.d.ts +16 -0
  411. package/dist/cssm/components/CalendarRange/CalendarRange.js +197 -0
  412. package/dist/cssm/components/CalendarRange/CalendarRange.js.map +1 -0
  413. package/dist/cssm/components/CalendarTime/CalendarTime.css +1 -0
  414. package/dist/cssm/components/CalendarTime/CalendarTime.d.ts +11 -0
  415. package/dist/cssm/components/CalendarTime/CalendarTime.js +74 -0
  416. package/dist/cssm/components/CalendarTime/CalendarTime.js.map +1 -0
  417. package/dist/cssm/components/Checkbox/Checkbox.js +1 -4
  418. package/dist/cssm/components/Checkbox/Checkbox.js.map +1 -1
  419. package/dist/cssm/components/Chip/Chip.js +1 -3
  420. package/dist/cssm/components/Chip/Chip.js.map +1 -1
  421. package/dist/cssm/components/ChipsSelect/ChipsSelect.d.ts +1 -2
  422. package/dist/cssm/components/ChipsSelect/ChipsSelect.js +4 -7
  423. package/dist/cssm/components/ChipsSelect/ChipsSelect.js.map +1 -1
  424. package/dist/cssm/components/ConfigProvider/ConfigProvider.d.ts +4 -0
  425. package/dist/cssm/components/ConfigProvider/ConfigProvider.js +36 -20
  426. package/dist/cssm/components/ConfigProvider/ConfigProvider.js.map +1 -1
  427. package/dist/cssm/components/ConfigProvider/ConfigProviderContext.d.ts +0 -7
  428. package/dist/cssm/components/ConfigProvider/ConfigProviderContext.js +2 -3
  429. package/dist/cssm/components/ConfigProvider/ConfigProviderContext.js.map +1 -1
  430. package/dist/cssm/components/ContentCard/ContentCard.js +3 -5
  431. package/dist/cssm/components/ContentCard/ContentCard.js.map +1 -1
  432. package/dist/cssm/components/Counter/Counter.js +2 -2
  433. package/dist/cssm/components/Counter/Counter.js.map +1 -1
  434. package/dist/cssm/components/CustomScrollView/CustomScrollView.d.ts +1 -1
  435. package/dist/cssm/components/CustomScrollView/CustomScrollView.js.map +1 -1
  436. package/dist/cssm/components/CustomSelect/CustomSelect.css +1 -1
  437. package/dist/cssm/components/CustomSelect/CustomSelect.d.ts +10 -1
  438. package/dist/cssm/components/CustomSelect/CustomSelect.js +44 -15
  439. package/dist/cssm/components/CustomSelect/CustomSelect.js.map +1 -1
  440. package/dist/cssm/components/CustomSelectDropdown/CustomSelectDropdown.css +1 -1
  441. package/dist/cssm/components/CustomSelectDropdown/CustomSelectDropdown.d.ts +4 -1
  442. package/dist/cssm/components/CustomSelectDropdown/CustomSelectDropdown.js +14 -5
  443. package/dist/cssm/components/CustomSelectDropdown/CustomSelectDropdown.js.map +1 -1
  444. package/dist/cssm/components/CustomSelectOption/CustomSelectOption.js +2 -4
  445. package/dist/cssm/components/CustomSelectOption/CustomSelectOption.js.map +1 -1
  446. package/dist/cssm/components/DateInput/DateInput.css +1 -0
  447. package/dist/cssm/components/DateInput/DateInput.d.ts +12 -0
  448. package/dist/cssm/components/DateInput/DateInput.js +262 -0
  449. package/dist/cssm/components/DateInput/DateInput.js.map +1 -0
  450. package/dist/cssm/components/DateRangeInput/DateRangeInput.css +1 -0
  451. package/dist/cssm/components/DateRangeInput/DateRangeInput.d.ts +18 -0
  452. package/dist/cssm/components/DateRangeInput/DateRangeInput.js +282 -0
  453. package/dist/cssm/components/DateRangeInput/DateRangeInput.js.map +1 -0
  454. package/dist/cssm/components/Div/Div.css +1 -1
  455. package/dist/cssm/components/Div/Div.d.ts +1 -2
  456. package/dist/cssm/components/Div/Div.js +1 -3
  457. package/dist/cssm/components/Div/Div.js.map +1 -1
  458. package/dist/cssm/components/Footer/Footer.js +1 -3
  459. package/dist/cssm/components/Footer/Footer.js.map +1 -1
  460. package/dist/cssm/components/FormField/FormField.css +1 -1
  461. package/dist/cssm/components/FormItem/FormItem.js +1 -4
  462. package/dist/cssm/components/FormItem/FormItem.js.map +1 -1
  463. package/dist/cssm/components/FormStatus/FormStatus.js +2 -7
  464. package/dist/cssm/components/FormStatus/FormStatus.js.map +1 -1
  465. package/dist/cssm/components/Group/Group.js +2 -4
  466. package/dist/cssm/components/Group/Group.js.map +1 -1
  467. package/dist/cssm/components/Header/Header.js +7 -20
  468. package/dist/cssm/components/Header/Header.js.map +1 -1
  469. package/dist/cssm/components/HorizontalCell/HorizontalCell.js +3 -8
  470. package/dist/cssm/components/HorizontalCell/HorizontalCell.js.map +1 -1
  471. package/dist/cssm/components/IconButton/IconButton.d.ts +1 -1
  472. package/dist/cssm/components/InfoRow/InfoRow.js +1 -2
  473. package/dist/cssm/components/InfoRow/InfoRow.js.map +1 -1
  474. package/dist/cssm/components/InputLike/InputLike.css +1 -0
  475. package/dist/cssm/components/InputLike/InputLike.d.ts +10 -0
  476. package/dist/cssm/components/InputLike/InputLike.js +53 -0
  477. package/dist/cssm/components/InputLike/InputLike.js.map +1 -0
  478. package/dist/cssm/components/InputLike/InputLikeDivider.css +1 -0
  479. package/dist/cssm/components/InputLike/InputLikeDivider.d.ts +3 -0
  480. package/dist/cssm/components/InputLike/InputLikeDivider.js +14 -0
  481. package/dist/cssm/components/InputLike/InputLikeDivider.js.map +1 -0
  482. package/dist/cssm/components/LocaleProviderContext/LocaleProviderContext.d.ts +2 -0
  483. package/dist/cssm/components/LocaleProviderContext/LocaleProviderContext.js +3 -0
  484. package/dist/cssm/components/LocaleProviderContext/LocaleProviderContext.js.map +1 -0
  485. package/dist/cssm/components/ModalPage/ModalPage.js +4 -5
  486. package/dist/cssm/components/ModalPage/ModalPage.js.map +1 -1
  487. package/dist/cssm/components/Pagination/Pagination.css +1 -0
  488. package/dist/cssm/components/Pagination/Pagination.d.ts +42 -0
  489. package/dist/cssm/components/Pagination/Pagination.js +130 -0
  490. package/dist/cssm/components/Pagination/Pagination.js.map +1 -0
  491. package/dist/cssm/components/PanelHeaderBack/PanelHeaderBack.d.ts +1 -1
  492. package/dist/cssm/components/PanelHeaderContent/PanelHeaderContent.js +1 -3
  493. package/dist/cssm/components/PanelHeaderContent/PanelHeaderContent.js.map +1 -1
  494. package/dist/cssm/components/PromoBanner/PromoBanner.js +1 -5
  495. package/dist/cssm/components/PromoBanner/PromoBanner.js.map +1 -1
  496. package/dist/cssm/components/Radio/Radio.js +1 -4
  497. package/dist/cssm/components/Radio/Radio.js.map +1 -1
  498. package/dist/cssm/components/Removable/Removable.js +8 -4
  499. package/dist/cssm/components/Removable/Removable.js.map +1 -1
  500. package/dist/cssm/components/RichCell/RichCell.d.ts +3 -2
  501. package/dist/cssm/components/RichCell/RichCell.js +0 -1
  502. package/dist/cssm/components/RichCell/RichCell.js.map +1 -1
  503. package/dist/cssm/components/Select/Select.css +1 -1
  504. package/dist/cssm/components/Select/Select.d.ts +1 -1
  505. package/dist/cssm/components/SelectMimicry/SelectMimicry.css +1 -0
  506. package/dist/cssm/components/SelectMimicry/SelectMimicry.d.ts +5 -1
  507. package/dist/cssm/components/SelectMimicry/SelectMimicry.js +11 -5
  508. package/dist/cssm/components/SelectMimicry/SelectMimicry.js.map +1 -1
  509. package/dist/cssm/components/SimpleCell/SimpleCell.d.ts +1 -1
  510. package/dist/cssm/components/SimpleCell/SimpleCell.js +0 -1
  511. package/dist/cssm/components/SimpleCell/SimpleCell.js.map +1 -1
  512. package/dist/cssm/components/SimpleCheckbox/SimpleCheckbox.d.ts +0 -1
  513. package/dist/cssm/components/SimpleCheckbox/SimpleCheckbox.js +1 -3
  514. package/dist/cssm/components/SimpleCheckbox/SimpleCheckbox.js.map +1 -1
  515. package/dist/cssm/components/Spacing/Spacing.js +2 -2
  516. package/dist/cssm/components/Spacing/Spacing.js.map +1 -1
  517. package/dist/cssm/components/SubnavigationButton/SubnavigationButton.js +3 -6
  518. package/dist/cssm/components/SubnavigationButton/SubnavigationButton.js.map +1 -1
  519. package/dist/cssm/components/Tappable/Tappable.d.ts +3 -1
  520. package/dist/cssm/components/Tappable/Tappable.js +10 -11
  521. package/dist/cssm/components/Tappable/Tappable.js.map +1 -1
  522. package/dist/cssm/components/TextTooltip/TextTooltip.js +1 -2
  523. package/dist/cssm/components/TextTooltip/TextTooltip.js.map +1 -1
  524. package/dist/cssm/components/Tooltip/Tooltip.js +1 -2
  525. package/dist/cssm/components/Tooltip/Tooltip.js.map +1 -1
  526. package/dist/cssm/components/Typography/Caption/Caption.css +1 -1
  527. package/dist/cssm/components/Typography/Caption/Caption.d.ts +8 -4
  528. package/dist/cssm/components/Typography/Caption/Caption.js +10 -14
  529. package/dist/cssm/components/Typography/Caption/Caption.js.map +1 -1
  530. package/dist/cssm/components/Typography/Subhead/Subhead.css +1 -1
  531. package/dist/cssm/components/Typography/Subhead/Subhead.d.ts +6 -1
  532. package/dist/cssm/components/Typography/Subhead/Subhead.js +13 -7
  533. package/dist/cssm/components/Typography/Subhead/Subhead.js.map +1 -1
  534. package/dist/cssm/components/Typography/Title/Title.d.ts +3 -1
  535. package/dist/cssm/components/Typography/Title/Title.js +3 -2
  536. package/dist/cssm/components/Typography/Title/Title.js.map +1 -1
  537. package/dist/cssm/components/UsersStack/UsersStack.js +2 -4
  538. package/dist/cssm/components/UsersStack/UsersStack.js.map +1 -1
  539. package/dist/cssm/components/View/ViewInfinite.d.ts +2 -2
  540. package/dist/cssm/components/View/ViewInfinite.js +10 -11
  541. package/dist/cssm/components/View/ViewInfinite.js.map +1 -1
  542. package/dist/cssm/helpers/typography.d.ts +1 -0
  543. package/dist/cssm/helpers/typography.js +18 -0
  544. package/dist/cssm/helpers/typography.js.map +1 -0
  545. package/dist/cssm/hooks/useBooleanState.d.ts +6 -0
  546. package/dist/cssm/hooks/useBooleanState.js +27 -0
  547. package/dist/cssm/hooks/useBooleanState.js.map +1 -0
  548. package/dist/cssm/hooks/useCalendar.d.ts +18 -0
  549. package/dist/cssm/hooks/useCalendar.js +64 -0
  550. package/dist/cssm/hooks/useCalendar.js.map +1 -0
  551. package/dist/cssm/hooks/useDateInput.d.ts +30 -0
  552. package/dist/cssm/hooks/useDateInput.js +163 -0
  553. package/dist/cssm/hooks/useDateInput.js.map +1 -0
  554. package/dist/cssm/hooks/useKeyboardInputTracker.d.ts +2 -0
  555. package/dist/cssm/hooks/useKeyboardInputTracker.js +11 -4
  556. package/dist/cssm/hooks/useKeyboardInputTracker.js.map +1 -1
  557. package/dist/cssm/hooks/useOrientationChange.d.ts +7 -0
  558. package/dist/cssm/hooks/useOrientationChange.js +42 -0
  559. package/dist/cssm/hooks/useOrientationChange.js.map +1 -0
  560. package/dist/cssm/hooks/usePagination.d.ts +34 -0
  561. package/dist/cssm/hooks/usePagination.js +67 -0
  562. package/dist/cssm/hooks/usePagination.js.map +1 -0
  563. package/dist/cssm/index.d.ts +12 -2
  564. package/dist/cssm/index.js +11 -3
  565. package/dist/cssm/index.js.map +1 -1
  566. package/dist/cssm/lib/calendar.d.ts +14 -0
  567. package/dist/cssm/lib/calendar.js +111 -0
  568. package/dist/cssm/lib/calendar.js.map +1 -0
  569. package/dist/cssm/lib/utils.d.ts +2 -1
  570. package/dist/cssm/lib/utils.js +3 -0
  571. package/dist/cssm/lib/utils.js.map +1 -1
  572. package/dist/cssm/styles/components.css +5 -5
  573. package/dist/cssm/styles/themes.css +1 -1
  574. package/dist/cssm/tokenized/index.d.ts +14 -0
  575. package/dist/cssm/tokenized/index.js +7 -0
  576. package/dist/cssm/tokenized/index.js.map +1 -1
  577. package/dist/cssm/unstable/index.d.ts +6 -6
  578. package/dist/cssm/unstable/index.js +3 -3
  579. package/dist/cssm/unstable/index.js.map +1 -1
  580. package/dist/helpers/typography.d.ts +1 -0
  581. package/dist/helpers/typography.js +18 -0
  582. package/dist/helpers/typography.js.map +1 -0
  583. package/dist/hooks/useBooleanState.d.ts +6 -0
  584. package/dist/hooks/useBooleanState.js +27 -0
  585. package/dist/hooks/useBooleanState.js.map +1 -0
  586. package/dist/hooks/useCalendar.d.ts +18 -0
  587. package/dist/hooks/useCalendar.js +64 -0
  588. package/dist/hooks/useCalendar.js.map +1 -0
  589. package/dist/hooks/useDateInput.d.ts +30 -0
  590. package/dist/hooks/useDateInput.js +163 -0
  591. package/dist/hooks/useDateInput.js.map +1 -0
  592. package/dist/hooks/useKeyboardInputTracker.d.ts +2 -0
  593. package/dist/hooks/useKeyboardInputTracker.js +11 -4
  594. package/dist/hooks/useKeyboardInputTracker.js.map +1 -1
  595. package/dist/hooks/useOrientationChange.d.ts +7 -0
  596. package/dist/hooks/useOrientationChange.js +42 -0
  597. package/dist/hooks/useOrientationChange.js.map +1 -0
  598. package/dist/hooks/usePagination.d.ts +34 -0
  599. package/dist/hooks/usePagination.js +67 -0
  600. package/dist/hooks/usePagination.js.map +1 -0
  601. package/dist/index.d.ts +12 -2
  602. package/dist/index.js +11 -3
  603. package/dist/index.js.map +1 -1
  604. package/dist/lib/calendar.d.ts +14 -0
  605. package/dist/lib/calendar.js +111 -0
  606. package/dist/lib/calendar.js.map +1 -0
  607. package/dist/lib/utils.d.ts +2 -1
  608. package/dist/lib/utils.js +3 -0
  609. package/dist/lib/utils.js.map +1 -1
  610. package/dist/tokenized/index.d.ts +14 -0
  611. package/dist/tokenized/index.js +7 -0
  612. package/dist/tokenized/index.js.map +1 -1
  613. package/dist/unstable/index.d.ts +6 -6
  614. package/dist/unstable/index.js +3 -3
  615. package/dist/unstable/index.js.map +1 -1
  616. package/dist/vkui.css +6 -6
  617. package/dist/vkui.css.map +1 -1
  618. package/package.json +14 -11
  619. package/src/components/ActionSheet/ActionSheet.tsx +3 -6
  620. package/src/components/ActionSheetItem/ActionSheetItem.tsx +3 -11
  621. package/src/components/Alert/Alert.tsx +3 -7
  622. package/src/components/Alert/Readme.md +4 -4
  623. package/src/components/AppRoot/Readme.md +2 -2
  624. package/src/components/Banner/Banner.tsx +1 -1
  625. package/src/components/Button/Button.css +26 -1
  626. package/src/components/Button/Button.tsx +6 -9
  627. package/src/components/ButtonGroup/ButtonGroup.css +52 -0
  628. package/src/components/ButtonGroup/ButtonGroup.tsx +48 -0
  629. package/src/components/ButtonGroup/Readme.md +311 -0
  630. package/src/components/Calendar/Calendar.css +31 -0
  631. package/src/components/Calendar/Calendar.tsx +184 -0
  632. package/src/components/Calendar/Readme.md +124 -0
  633. package/src/components/CalendarDay/CalendarDay.css +85 -0
  634. package/src/components/CalendarDay/CalendarDay.tsx +114 -0
  635. package/src/components/CalendarDays/CalendarDays.css +31 -0
  636. package/src/components/CalendarDays/CalendarDays.tsx +131 -0
  637. package/src/components/CalendarHeader/CalendarHeader.css +50 -0
  638. package/src/components/CalendarHeader/CalendarHeader.tsx +167 -0
  639. package/src/components/CalendarRange/CalendarRange.css +27 -0
  640. package/src/components/CalendarRange/CalendarRange.tsx +278 -0
  641. package/src/components/CalendarRange/Readme.md +85 -0
  642. package/src/components/CalendarTime/CalendarTime.css +18 -0
  643. package/src/components/CalendarTime/CalendarTime.tsx +88 -0
  644. package/src/components/Checkbox/Checkbox.tsx +2 -9
  645. package/src/components/Chip/Chip.tsx +2 -8
  646. package/src/components/ChipsSelect/ChipsSelect.tsx +6 -7
  647. package/src/components/ConfigProvider/ConfigProvider.tsx +36 -18
  648. package/src/components/ConfigProvider/ConfigProviderContext.tsx +9 -13
  649. package/src/components/ContentCard/ContentCard.tsx +3 -10
  650. package/src/components/Counter/Counter.tsx +2 -2
  651. package/src/components/CustomScrollView/CustomScrollView.tsx +1 -1
  652. package/src/components/CustomSelect/CustomSelect.css +0 -15
  653. package/src/components/CustomSelect/CustomSelect.tsx +46 -7
  654. package/src/components/CustomSelectDropdown/CustomSelectDropdown.css +13 -1
  655. package/src/components/CustomSelectDropdown/CustomSelectDropdown.tsx +12 -3
  656. package/src/components/CustomSelectOption/CustomSelectOption.tsx +3 -7
  657. package/src/components/CustomSelectOption/Readme.md +1 -1
  658. package/src/components/DateInput/DateInput.css +20 -0
  659. package/src/components/DateInput/DateInput.tsx +317 -0
  660. package/src/components/DateInput/Readme.md +116 -0
  661. package/src/components/DateRangeInput/DateRangeInput.css +16 -0
  662. package/src/components/DateRangeInput/DateRangeInput.tsx +350 -0
  663. package/src/components/DateRangeInput/Readme.md +96 -0
  664. package/src/components/Div/Div.css +1 -8
  665. package/src/components/Div/Div.tsx +2 -5
  666. package/src/components/Footer/Footer.tsx +2 -8
  667. package/src/components/Footer/Readme.md +1 -1
  668. package/src/components/FormField/FormField.css +33 -0
  669. package/src/components/FormItem/FormItem.tsx +3 -9
  670. package/src/components/FormStatus/FormStatus.tsx +3 -9
  671. package/src/components/Gallery/Readme.md +1 -1
  672. package/src/components/Group/Group.tsx +2 -4
  673. package/src/components/Header/Header.tsx +8 -11
  674. package/src/components/HorizontalCell/HorizontalCell.tsx +4 -12
  675. package/src/components/InfoRow/InfoRow.tsx +1 -1
  676. package/src/components/InputLike/InputLike.css +25 -0
  677. package/src/components/InputLike/InputLike.tsx +72 -0
  678. package/src/components/InputLike/InputLikeDivider.css +4 -0
  679. package/src/components/InputLike/InputLikeDivider.tsx +12 -0
  680. package/src/components/LocaleProviderContext/LocaleProviderContext.tsx +5 -0
  681. package/src/components/ModalPage/ModalPage.tsx +10 -4
  682. package/src/components/Pagination/Pagination.css +62 -0
  683. package/src/components/Pagination/Pagination.tsx +196 -0
  684. package/src/components/Pagination/Readme.md +110 -0
  685. package/src/components/PanelHeaderContent/PanelHeaderContent.tsx +2 -8
  686. package/src/components/PopoutWrapper/Readme.md +1 -1
  687. package/src/components/Popper/Readme.md +1 -1
  688. package/src/components/PromoBanner/PromoBanner.tsx +3 -5
  689. package/src/components/Radio/Radio.tsx +2 -9
  690. package/src/components/Removable/Removable.tsx +9 -7
  691. package/src/components/RichCell/Readme.md +4 -4
  692. package/src/components/RichCell/RichCell.tsx +3 -6
  693. package/src/components/RichTooltip/Readme.md +1 -1
  694. package/src/components/Select/Select.css +5 -0
  695. package/src/components/SelectMimicry/SelectMimicry.css +10 -0
  696. package/src/components/SelectMimicry/SelectMimicry.tsx +13 -3
  697. package/src/components/SimpleCell/SimpleCell.tsx +1 -5
  698. package/src/components/SimpleCheckbox/SimpleCheckbox.tsx +0 -3
  699. package/src/components/Spacing/Spacing.tsx +2 -2
  700. package/src/components/SubnavigationButton/SubnavigationButton.tsx +3 -9
  701. package/src/components/Tabbar/Readme.md +1 -1
  702. package/src/components/Tappable/Tappable.tsx +12 -3
  703. package/src/components/TextTooltip/Readme.md +1 -1
  704. package/src/components/TextTooltip/TextTooltip.tsx +2 -6
  705. package/src/components/Tooltip/Tooltip.tsx +2 -6
  706. package/src/components/Typography/Caption/Caption.css +61 -19
  707. package/src/components/Typography/Caption/Caption.tsx +24 -15
  708. package/src/components/Typography/Caption/Readme.md +26 -48
  709. package/src/components/Typography/Subhead/Readme.md +18 -24
  710. package/src/components/Typography/Subhead/Subhead.css +22 -7
  711. package/src/components/Typography/Subhead/Subhead.tsx +25 -7
  712. package/src/components/Typography/Title/Title.tsx +6 -3
  713. package/src/components/UsersStack/Readme.md +1 -1
  714. package/src/components/UsersStack/UsersStack.tsx +3 -4
  715. package/src/components/View/Readme.md +1 -1
  716. package/src/components/View/ViewInfinite.tsx +3 -4
  717. package/src/helpers/typography.ts +24 -0
  718. package/src/hooks/useBooleanState.ts +19 -0
  719. package/src/hooks/useCalendar.ts +78 -0
  720. package/src/hooks/useDateInput.ts +213 -0
  721. package/src/hooks/useKeyboardInputTracker.ts +25 -8
  722. package/src/hooks/useOrientationChange.ts +39 -0
  723. package/src/hooks/usePagination.ts +96 -0
  724. package/src/index.ts +12 -2
  725. package/src/lib/calendar.ts +123 -0
  726. package/src/lib/utils.ts +4 -1
  727. package/src/styles/components.css +14 -0
  728. package/src/tokenized/index.ts +21 -0
  729. package/src/unstable/index.ts +6 -6
  730. package/postcss.config.js +0 -54
@@ -1 +1 @@
1
- [{"/home/runner/work/VKUI/VKUI/src/fonts/fonts.css":"1","/home/runner/work/VKUI/VKUI/src/styles/animations.css":"2","/home/runner/work/VKUI/VKUI/src/styles/bright_light.css":"3","/home/runner/work/VKUI/VKUI/src/styles/common.css":"4","/home/runner/work/VKUI/VKUI/src/styles/components.css":"5","/home/runner/work/VKUI/VKUI/src/styles/constants.css":"6","/home/runner/work/VKUI/VKUI/src/styles/space_gray.css":"7","/home/runner/work/VKUI/VKUI/src/styles/themes.css":"8","/home/runner/work/VKUI/VKUI/src/styles/unstable.css":"9","/home/runner/work/VKUI/VKUI/src/styles/vkcom_dark.css":"10","/home/runner/work/VKUI/VKUI/src/styles/vkcom_light.css":"11","/home/runner/work/VKUI/VKUI/src/components/ActionSheet/ActionSheet.css":"12","/home/runner/work/VKUI/VKUI/src/components/ActionSheetItem/ActionSheetItem.css":"13","/home/runner/work/VKUI/VKUI/src/components/Alert/Alert.css":"14","/home/runner/work/VKUI/VKUI/src/components/AppRoot/AppRoot.css":"15","/home/runner/work/VKUI/VKUI/src/components/Avatar/Avatar.css":"16","/home/runner/work/VKUI/VKUI/src/components/Badge/Badge.css":"17","/home/runner/work/VKUI/VKUI/src/components/Banner/Banner.css":"18","/home/runner/work/VKUI/VKUI/src/components/Button/Button.css":"19","/home/runner/work/VKUI/VKUI/src/components/Card/Card.css":"20","/home/runner/work/VKUI/VKUI/src/components/CardGrid/CardGrid.css":"21","/home/runner/work/VKUI/VKUI/src/components/CardScroll/CardScroll.css":"22","/home/runner/work/VKUI/VKUI/src/components/Cell/Cell.css":"23","/home/runner/work/VKUI/VKUI/src/components/CellButton/CellButton.css":"24","/home/runner/work/VKUI/VKUI/src/components/Checkbox/Checkbox.css":"25","/home/runner/work/VKUI/VKUI/src/components/Chip/Chip.css":"26","/home/runner/work/VKUI/VKUI/src/components/ChipsInput/ChipsInput.css":"27","/home/runner/work/VKUI/VKUI/src/components/ChipsSelect/ChipsSelect.css":"28","/home/runner/work/VKUI/VKUI/src/components/ContentCard/ContentCard.css":"29","/home/runner/work/VKUI/VKUI/src/components/Counter/Counter.css":"30","/home/runner/work/VKUI/VKUI/src/components/CustomScrollView/CustomScrollView.css":"31","/home/runner/work/VKUI/VKUI/src/components/CustomSelect/CustomSelect.css":"32","/home/runner/work/VKUI/VKUI/src/components/CustomSelectDropdown/CustomSelectDropdown.css":"33","/home/runner/work/VKUI/VKUI/src/components/CustomSelectOption/CustomSelectOption.css":"34","/home/runner/work/VKUI/VKUI/src/components/DatePicker/DatePicker.css":"35","/home/runner/work/VKUI/VKUI/src/components/Div/Div.css":"36","/home/runner/work/VKUI/VKUI/src/components/Dropdown/Dropdown.css":"37","/home/runner/work/VKUI/VKUI/src/components/DropdownIcon/DropdownIcon.css":"38","/home/runner/work/VKUI/VKUI/src/components/Epic/Epic.css":"39","/home/runner/work/VKUI/VKUI/src/components/File/File.css":"40","/home/runner/work/VKUI/VKUI/src/components/FixedLayout/FixedLayout.css":"41","/home/runner/work/VKUI/VKUI/src/components/FocusVisible/FocusVisible.css":"42","/home/runner/work/VKUI/VKUI/src/components/Footer/Footer.css":"43","/home/runner/work/VKUI/VKUI/src/components/FormField/FormField.css":"44","/home/runner/work/VKUI/VKUI/src/components/FormItem/FormItem.css":"45","/home/runner/work/VKUI/VKUI/src/components/FormLayout/FormLayout.css":"46","/home/runner/work/VKUI/VKUI/src/components/FormLayoutGroup/FormLayoutGroup.css":"47","/home/runner/work/VKUI/VKUI/src/components/FormStatus/FormStatus.css":"48","/home/runner/work/VKUI/VKUI/src/components/Gallery/Gallery.css":"49","/home/runner/work/VKUI/VKUI/src/components/Gradient/Gradient.css":"50","/home/runner/work/VKUI/VKUI/src/components/GridAvatar/GridAvatar.css":"51","/home/runner/work/VKUI/VKUI/src/components/Group/Group.css":"52","/home/runner/work/VKUI/VKUI/src/components/Header/Header.css":"53","/home/runner/work/VKUI/VKUI/src/components/HorizontalCell/HorizontalCell.css":"54","/home/runner/work/VKUI/VKUI/src/components/HorizontalScroll/HorizontalScroll.css":"55","/home/runner/work/VKUI/VKUI/src/components/HorizontalScroll/HorizontalScrollArrow.css":"56","/home/runner/work/VKUI/VKUI/src/components/IconButton/IconButton.css":"57","/home/runner/work/VKUI/VKUI/src/components/InfoRow/InfoRow.css":"58","/home/runner/work/VKUI/VKUI/src/components/InitialsAvatar/InitialsAvatar.css":"59","/home/runner/work/VKUI/VKUI/src/components/Input/Input.css":"60","/home/runner/work/VKUI/VKUI/src/components/Link/Link.css":"61","/home/runner/work/VKUI/VKUI/src/components/List/List.css":"62","/home/runner/work/VKUI/VKUI/src/components/MiniInfoCell/MiniInfoCell.css":"63","/home/runner/work/VKUI/VKUI/src/components/ModalCard/ModalCard.css":"64","/home/runner/work/VKUI/VKUI/src/components/ModalCardBase/ModalCardBase.css":"65","/home/runner/work/VKUI/VKUI/src/components/ModalDismissButton/ModalDismissButton.css":"66","/home/runner/work/VKUI/VKUI/src/components/ModalPage/ModalPage.css":"67","/home/runner/work/VKUI/VKUI/src/components/ModalPageHeader/ModalPageHeader.css":"68","/home/runner/work/VKUI/VKUI/src/components/ModalRoot/ModalRoot.css":"69","/home/runner/work/VKUI/VKUI/src/components/Panel/Panel.css":"70","/home/runner/work/VKUI/VKUI/src/components/PanelHeader/PanelHeader.css":"71","/home/runner/work/VKUI/VKUI/src/components/PanelHeaderBack/PanelHeaderBack.css":"72","/home/runner/work/VKUI/VKUI/src/components/PanelHeaderButton/PanelHeaderButton.css":"73","/home/runner/work/VKUI/VKUI/src/components/PanelHeaderContent/PanelHeaderContent.css":"74","/home/runner/work/VKUI/VKUI/src/components/PanelHeaderContext/PanelHeaderContext.css":"75","/home/runner/work/VKUI/VKUI/src/components/Placeholder/Placeholder.css":"76","/home/runner/work/VKUI/VKUI/src/components/PopoutRoot/PopoutRoot.css":"77","/home/runner/work/VKUI/VKUI/src/components/PopoutWrapper/PopoutWrapper.css":"78","/home/runner/work/VKUI/VKUI/src/components/Popper/Popper.css":"79","/home/runner/work/VKUI/VKUI/src/components/Progress/Progress.css":"80","/home/runner/work/VKUI/VKUI/src/components/PromoBanner/PromoBanner.css":"81","/home/runner/work/VKUI/VKUI/src/components/PullToRefresh/PullToRefresh.css":"82","/home/runner/work/VKUI/VKUI/src/components/Radio/Radio.css":"83","/home/runner/work/VKUI/VKUI/src/components/RadioGroup/RadioGroup.css":"84","/home/runner/work/VKUI/VKUI/src/components/Removable/Removable.css":"85","/home/runner/work/VKUI/VKUI/src/components/RichCell/RichCell.css":"86","/home/runner/work/VKUI/VKUI/src/components/RichTooltip/RichTooltip.css":"87","/home/runner/work/VKUI/VKUI/src/components/Root/Root.css":"88","/home/runner/work/VKUI/VKUI/src/components/ScreenSpinner/ScreenSpinner.css":"89","/home/runner/work/VKUI/VKUI/src/components/Search/Search.css":"90","/home/runner/work/VKUI/VKUI/src/components/SegmentedControl/SegmentedControl.css":"91","/home/runner/work/VKUI/VKUI/src/components/Select/Select.css":"92","/home/runner/work/VKUI/VKUI/src/components/Separator/Separator.css":"93","/home/runner/work/VKUI/VKUI/src/components/SimpleCell/SimpleCell.css":"94","/home/runner/work/VKUI/VKUI/src/components/SimpleCheckbox/SimpleCheckbox.css":"95","/home/runner/work/VKUI/VKUI/src/components/Slider/Slider.css":"96","/home/runner/work/VKUI/VKUI/src/components/SliderSwitch/SliderSwitch.css":"97","/home/runner/work/VKUI/VKUI/src/components/Snackbar/Snackbar.css":"98","/home/runner/work/VKUI/VKUI/src/components/Spacing/Spacing.css":"99","/home/runner/work/VKUI/VKUI/src/components/Spinner/Spinner.css":"100","/home/runner/work/VKUI/VKUI/src/components/SplitCol/SplitCol.css":"101","/home/runner/work/VKUI/VKUI/src/components/SplitLayout/SplitLayout.css":"102","/home/runner/work/VKUI/VKUI/src/components/SubnavigationBar/SubnavigationBar.css":"103","/home/runner/work/VKUI/VKUI/src/components/SubnavigationButton/SubnavigationButton.css":"104","/home/runner/work/VKUI/VKUI/src/components/Switch/Switch.css":"105","/home/runner/work/VKUI/VKUI/src/components/Tabbar/Tabbar.css":"106","/home/runner/work/VKUI/VKUI/src/components/TabbarItem/TabbarItem.css":"107","/home/runner/work/VKUI/VKUI/src/components/Tabs/Tabs.css":"108","/home/runner/work/VKUI/VKUI/src/components/TabsItem/TabsItem.css":"109","/home/runner/work/VKUI/VKUI/src/components/Tappable/Tappable.css":"110","/home/runner/work/VKUI/VKUI/src/components/TextTooltip/TextTooltip.css":"111","/home/runner/work/VKUI/VKUI/src/components/Textarea/Textarea.css":"112","/home/runner/work/VKUI/VKUI/src/components/Tooltip/Tooltip.css":"113","/home/runner/work/VKUI/VKUI/src/components/UsersStack/UsersStack.css":"114","/home/runner/work/VKUI/VKUI/src/components/View/View.css":"115","/home/runner/work/VKUI/VKUI/src/components/View/ViewIOS.css":"116","/home/runner/work/VKUI/VKUI/src/components/VisuallyHiddenInput/VisuallyHiddenInput.css":"117","/home/runner/work/VKUI/VKUI/src/components/WriteBar/WriteBar.css":"118","/home/runner/work/VKUI/VKUI/src/components/WriteBarIcon/WriteBarIcon.css":"119","/home/runner/work/VKUI/VKUI/src/components/Cell/CellCheckbox/CellCheckbox.css":"120","/home/runner/work/VKUI/VKUI/src/components/Cell/CellDragger/CellDragger.css":"121","/home/runner/work/VKUI/VKUI/src/components/SegmentedControl/SegmentedControlOption/SegmentedControlOption.css":"122","/home/runner/work/VKUI/VKUI/src/components/Typography/Caption/Caption.css":"123","/home/runner/work/VKUI/VKUI/src/components/Typography/Headline/Headline.css":"124","/home/runner/work/VKUI/VKUI/src/components/Typography/Subhead/Subhead.css":"125","/home/runner/work/VKUI/VKUI/src/components/Typography/Text/Text.css":"126","/home/runner/work/VKUI/VKUI/src/components/Typography/Title/Title.css":"127"},{"size":214,"mtime":1645543102951,"hashOfConfig":"128"},{"size":205,"mtime":1645543102955,"hashOfConfig":"128"},{"size":9874,"mtime":1645543102955,"hashOfConfig":"128"},{"size":706,"mtime":1645543102955,"hashOfConfig":"128"},{"size":6146,"mtime":1645543102955,"hashOfConfig":"128"},{"size":2056,"mtime":1645543102955,"hashOfConfig":"128"},{"size":9983,"mtime":1645543102955,"hashOfConfig":"128"},{"size":784,"mtime":1645543102955,"hashOfConfig":"128"},{"size":277,"mtime":1645543102955,"hashOfConfig":"128"},{"size":10072,"mtime":1645543102955,"hashOfConfig":"128"},{"size":9915,"mtime":1645543102955,"hashOfConfig":"128"},{"size":2926,"mtime":1645543102779,"hashOfConfig":"128"},{"size":5740,"mtime":1645543102847,"hashOfConfig":"128"},{"size":5211,"mtime":1645543102851,"hashOfConfig":"128"},{"size":276,"mtime":1645543102851,"hashOfConfig":"128"},{"size":3157,"mtime":1645543102851,"hashOfConfig":"128"},{"size":328,"mtime":1645543102851,"hashOfConfig":"128"},{"size":2396,"mtime":1645543102855,"hashOfConfig":"128"},{"size":14665,"mtime":1645543102855,"hashOfConfig":"128"},{"size":1500,"mtime":1645543102855,"hashOfConfig":"128"},{"size":1091,"mtime":1645543102855,"hashOfConfig":"128"},{"size":846,"mtime":1645543102855,"hashOfConfig":"128"},{"size":804,"mtime":1645543102855,"hashOfConfig":"128"},{"size":743,"mtime":1645543102863,"hashOfConfig":"128"},{"size":1840,"mtime":1645543102863,"hashOfConfig":"128"},{"size":951,"mtime":1645543102863,"hashOfConfig":"128"},{"size":1156,"mtime":1645543102875,"hashOfConfig":"128"},{"size":454,"mtime":1645543102875,"hashOfConfig":"128"},{"size":582,"mtime":1645543102879,"hashOfConfig":"128"},{"size":4189,"mtime":1645543102879,"hashOfConfig":"128"},{"size":1105,"mtime":1645543102879,"hashOfConfig":"128"},{"size":738,"mtime":1645543102879,"hashOfConfig":"128"},{"size":647,"mtime":1645543102879,"hashOfConfig":"128"},{"size":1074,"mtime":1645543102879,"hashOfConfig":"128"},{"size":357,"mtime":1645543102879,"hashOfConfig":"128"},{"size":121,"mtime":1645543102879,"hashOfConfig":"128"},{"size":455,"mtime":1645543102883,"hashOfConfig":"128"},{"size":37,"mtime":1645543102883,"hashOfConfig":"128"},{"size":41,"mtime":1645543102883,"hashOfConfig":"128"},{"size":45,"mtime":1645543102883,"hashOfConfig":"128"},{"size":510,"mtime":1645543102883,"hashOfConfig":"128"},{"size":1428,"mtime":1645543102883,"hashOfConfig":"128"},{"size":141,"mtime":1645543102883,"hashOfConfig":"128"},{"size":2059,"mtime":1645543102883,"hashOfConfig":"128"},{"size":1344,"mtime":1645543102883,"hashOfConfig":"128"},{"size":227,"mtime":1645543102883,"hashOfConfig":"128"},{"size":317,"mtime":1645543102883,"hashOfConfig":"128"},{"size":742,"mtime":1645543102887,"hashOfConfig":"128"},{"size":1017,"mtime":1645543102887,"hashOfConfig":"128"},{"size":2095,"mtime":1645543102887,"hashOfConfig":"128"},{"size":946,"mtime":1645543102887,"hashOfConfig":"128"},{"size":1623,"mtime":1645543102887,"hashOfConfig":"128"},{"size":2364,"mtime":1645543102887,"hashOfConfig":"128"},{"size":1991,"mtime":1645543102891,"hashOfConfig":"128"},{"size":582,"mtime":1645543102891,"hashOfConfig":"128"},{"size":1594,"mtime":1645543102891,"hashOfConfig":"128"},{"size":1658,"mtime":1645543102895,"hashOfConfig":"128"},{"size":243,"mtime":1645543102895,"hashOfConfig":"128"},{"size":1235,"mtime":1645543102895,"hashOfConfig":"128"},{"size":831,"mtime":1645543102899,"hashOfConfig":"128"},{"size":287,"mtime":1645543102899,"hashOfConfig":"128"},{"size":10,"mtime":1645543102899,"hashOfConfig":"128"},{"size":1120,"mtime":1645543102899,"hashOfConfig":"128"},{"size":1146,"mtime":1645543102899,"hashOfConfig":"128"},{"size":1743,"mtime":1645543102903,"hashOfConfig":"128"},{"size":651,"mtime":1645543102903,"hashOfConfig":"128"},{"size":2608,"mtime":1645543102903,"hashOfConfig":"128"},{"size":444,"mtime":1645543102903,"hashOfConfig":"128"},{"size":1309,"mtime":1645543102907,"hashOfConfig":"128"},{"size":2262,"mtime":1645543102907,"hashOfConfig":"128"},{"size":5680,"mtime":1645543102911,"hashOfConfig":"128"},{"size":154,"mtime":1645543102911,"hashOfConfig":"128"},{"size":1619,"mtime":1645543102911,"hashOfConfig":"128"},{"size":1941,"mtime":1645543102911,"hashOfConfig":"128"},{"size":2959,"mtime":1645543102911,"hashOfConfig":"128"},{"size":812,"mtime":1645543102911,"hashOfConfig":"128"},{"size":455,"mtime":1645543102911,"hashOfConfig":"128"},{"size":1839,"mtime":1645543102911,"hashOfConfig":"128"},{"size":685,"mtime":1645543102915,"hashOfConfig":"128"},{"size":212,"mtime":1645543102915,"hashOfConfig":"128"},{"size":936,"mtime":1645543102915,"hashOfConfig":"128"},{"size":2010,"mtime":1645543102915,"hashOfConfig":"128"},{"size":2979,"mtime":1645543102915,"hashOfConfig":"128"},{"size":175,"mtime":1645543102915,"hashOfConfig":"128"},{"size":2272,"mtime":1645543102919,"hashOfConfig":"128"},{"size":1828,"mtime":1645543102919,"hashOfConfig":"128"},{"size":259,"mtime":1645543102919,"hashOfConfig":"128"},{"size":2858,"mtime":1645543102923,"hashOfConfig":"128"},{"size":653,"mtime":1645543102923,"hashOfConfig":"128"},{"size":6437,"mtime":1645543102923,"hashOfConfig":"128"},{"size":885,"mtime":1645543102923,"hashOfConfig":"128"},{"size":926,"mtime":1645543102927,"hashOfConfig":"128"},{"size":839,"mtime":1645543102927,"hashOfConfig":"128"},{"size":5154,"mtime":1645543102927,"hashOfConfig":"128"},{"size":2533,"mtime":1645543102931,"hashOfConfig":"128"},{"size":2187,"mtime":1645543102931,"hashOfConfig":"128"},{"size":1686,"mtime":1645543102931,"hashOfConfig":"128"},{"size":2880,"mtime":1645543102931,"hashOfConfig":"128"},{"size":746,"mtime":1645543102931,"hashOfConfig":"128"},{"size":443,"mtime":1645543102931,"hashOfConfig":"128"},{"size":402,"mtime":1645543102935,"hashOfConfig":"128"},{"size":924,"mtime":1645543102935,"hashOfConfig":"128"},{"size":705,"mtime":1645543102935,"hashOfConfig":"128"},{"size":1730,"mtime":1645543102935,"hashOfConfig":"128"},{"size":3935,"mtime":1645543102935,"hashOfConfig":"128"},{"size":910,"mtime":1645543102935,"hashOfConfig":"128"},{"size":2085,"mtime":1645543102935,"hashOfConfig":"128"},{"size":2021,"mtime":1645543102935,"hashOfConfig":"128"},{"size":3763,"mtime":1645543102939,"hashOfConfig":"128"},{"size":2300,"mtime":1645543102939,"hashOfConfig":"128"},{"size":398,"mtime":1645543102939,"hashOfConfig":"128"},{"size":645,"mtime":1645543102939,"hashOfConfig":"128"},{"size":2789,"mtime":1645543102943,"hashOfConfig":"128"},{"size":1760,"mtime":1645543102947,"hashOfConfig":"128"},{"size":1832,"mtime":1645543102951,"hashOfConfig":"128"},{"size":3079,"mtime":1645543102951,"hashOfConfig":"128"},{"size":167,"mtime":1645543102951,"hashOfConfig":"128"},{"size":1759,"mtime":1645543102951,"hashOfConfig":"128"},{"size":1286,"mtime":1645543102951,"hashOfConfig":"128"},{"size":313,"mtime":1645543102855,"hashOfConfig":"128"},{"size":70,"mtime":1645543102855,"hashOfConfig":"128"},{"size":591,"mtime":1645543102923,"hashOfConfig":"128"},{"size":630,"mtime":1645543102943,"hashOfConfig":"128"},{"size":307,"mtime":1645543102943,"hashOfConfig":"128"},{"size":325,"mtime":1645543102943,"hashOfConfig":"128"},{"size":283,"mtime":1645543102947,"hashOfConfig":"128"},{"size":1346,"mtime":1645543102947,"hashOfConfig":"128"},"5cvpu8"]
1
+ [{"/home/runner/work/VKUI/VKUI/src/fonts/fonts.css":"1","/home/runner/work/VKUI/VKUI/src/styles/animations.css":"2","/home/runner/work/VKUI/VKUI/src/styles/bright_light.css":"3","/home/runner/work/VKUI/VKUI/src/styles/common.css":"4","/home/runner/work/VKUI/VKUI/src/styles/components.css":"5","/home/runner/work/VKUI/VKUI/src/styles/constants.css":"6","/home/runner/work/VKUI/VKUI/src/styles/space_gray.css":"7","/home/runner/work/VKUI/VKUI/src/styles/themes.css":"8","/home/runner/work/VKUI/VKUI/src/styles/unstable.css":"9","/home/runner/work/VKUI/VKUI/src/styles/vkcom_dark.css":"10","/home/runner/work/VKUI/VKUI/src/styles/vkcom_light.css":"11","/home/runner/work/VKUI/VKUI/src/components/ActionSheet/ActionSheet.css":"12","/home/runner/work/VKUI/VKUI/src/components/ActionSheetItem/ActionSheetItem.css":"13","/home/runner/work/VKUI/VKUI/src/components/Alert/Alert.css":"14","/home/runner/work/VKUI/VKUI/src/components/AppRoot/AppRoot.css":"15","/home/runner/work/VKUI/VKUI/src/components/Avatar/Avatar.css":"16","/home/runner/work/VKUI/VKUI/src/components/Badge/Badge.css":"17","/home/runner/work/VKUI/VKUI/src/components/Banner/Banner.css":"18","/home/runner/work/VKUI/VKUI/src/components/Button/Button.css":"19","/home/runner/work/VKUI/VKUI/src/components/ButtonGroup/ButtonGroup.css":"20","/home/runner/work/VKUI/VKUI/src/components/Calendar/Calendar.css":"21","/home/runner/work/VKUI/VKUI/src/components/CalendarDay/CalendarDay.css":"22","/home/runner/work/VKUI/VKUI/src/components/CalendarDays/CalendarDays.css":"23","/home/runner/work/VKUI/VKUI/src/components/CalendarHeader/CalendarHeader.css":"24","/home/runner/work/VKUI/VKUI/src/components/CalendarRange/CalendarRange.css":"25","/home/runner/work/VKUI/VKUI/src/components/CalendarTime/CalendarTime.css":"26","/home/runner/work/VKUI/VKUI/src/components/Card/Card.css":"27","/home/runner/work/VKUI/VKUI/src/components/CardGrid/CardGrid.css":"28","/home/runner/work/VKUI/VKUI/src/components/CardScroll/CardScroll.css":"29","/home/runner/work/VKUI/VKUI/src/components/Cell/Cell.css":"30","/home/runner/work/VKUI/VKUI/src/components/CellButton/CellButton.css":"31","/home/runner/work/VKUI/VKUI/src/components/Checkbox/Checkbox.css":"32","/home/runner/work/VKUI/VKUI/src/components/Chip/Chip.css":"33","/home/runner/work/VKUI/VKUI/src/components/ChipsInput/ChipsInput.css":"34","/home/runner/work/VKUI/VKUI/src/components/ChipsSelect/ChipsSelect.css":"35","/home/runner/work/VKUI/VKUI/src/components/ContentCard/ContentCard.css":"36","/home/runner/work/VKUI/VKUI/src/components/Counter/Counter.css":"37","/home/runner/work/VKUI/VKUI/src/components/CustomScrollView/CustomScrollView.css":"38","/home/runner/work/VKUI/VKUI/src/components/CustomSelect/CustomSelect.css":"39","/home/runner/work/VKUI/VKUI/src/components/CustomSelectDropdown/CustomSelectDropdown.css":"40","/home/runner/work/VKUI/VKUI/src/components/CustomSelectOption/CustomSelectOption.css":"41","/home/runner/work/VKUI/VKUI/src/components/DateInput/DateInput.css":"42","/home/runner/work/VKUI/VKUI/src/components/DatePicker/DatePicker.css":"43","/home/runner/work/VKUI/VKUI/src/components/DateRangeInput/DateRangeInput.css":"44","/home/runner/work/VKUI/VKUI/src/components/Div/Div.css":"45","/home/runner/work/VKUI/VKUI/src/components/Dropdown/Dropdown.css":"46","/home/runner/work/VKUI/VKUI/src/components/DropdownIcon/DropdownIcon.css":"47","/home/runner/work/VKUI/VKUI/src/components/Epic/Epic.css":"48","/home/runner/work/VKUI/VKUI/src/components/File/File.css":"49","/home/runner/work/VKUI/VKUI/src/components/FixedLayout/FixedLayout.css":"50","/home/runner/work/VKUI/VKUI/src/components/FocusVisible/FocusVisible.css":"51","/home/runner/work/VKUI/VKUI/src/components/Footer/Footer.css":"52","/home/runner/work/VKUI/VKUI/src/components/FormField/FormField.css":"53","/home/runner/work/VKUI/VKUI/src/components/FormItem/FormItem.css":"54","/home/runner/work/VKUI/VKUI/src/components/FormLayout/FormLayout.css":"55","/home/runner/work/VKUI/VKUI/src/components/FormLayoutGroup/FormLayoutGroup.css":"56","/home/runner/work/VKUI/VKUI/src/components/FormStatus/FormStatus.css":"57","/home/runner/work/VKUI/VKUI/src/components/Gallery/Gallery.css":"58","/home/runner/work/VKUI/VKUI/src/components/Gradient/Gradient.css":"59","/home/runner/work/VKUI/VKUI/src/components/GridAvatar/GridAvatar.css":"60","/home/runner/work/VKUI/VKUI/src/components/Group/Group.css":"61","/home/runner/work/VKUI/VKUI/src/components/Header/Header.css":"62","/home/runner/work/VKUI/VKUI/src/components/HorizontalCell/HorizontalCell.css":"63","/home/runner/work/VKUI/VKUI/src/components/HorizontalScroll/HorizontalScroll.css":"64","/home/runner/work/VKUI/VKUI/src/components/HorizontalScroll/HorizontalScrollArrow.css":"65","/home/runner/work/VKUI/VKUI/src/components/IconButton/IconButton.css":"66","/home/runner/work/VKUI/VKUI/src/components/InfoRow/InfoRow.css":"67","/home/runner/work/VKUI/VKUI/src/components/InitialsAvatar/InitialsAvatar.css":"68","/home/runner/work/VKUI/VKUI/src/components/Input/Input.css":"69","/home/runner/work/VKUI/VKUI/src/components/InputLike/InputLike.css":"70","/home/runner/work/VKUI/VKUI/src/components/InputLike/InputLikeDivider.css":"71","/home/runner/work/VKUI/VKUI/src/components/Link/Link.css":"72","/home/runner/work/VKUI/VKUI/src/components/List/List.css":"73","/home/runner/work/VKUI/VKUI/src/components/MiniInfoCell/MiniInfoCell.css":"74","/home/runner/work/VKUI/VKUI/src/components/ModalCard/ModalCard.css":"75","/home/runner/work/VKUI/VKUI/src/components/ModalCardBase/ModalCardBase.css":"76","/home/runner/work/VKUI/VKUI/src/components/ModalDismissButton/ModalDismissButton.css":"77","/home/runner/work/VKUI/VKUI/src/components/ModalPage/ModalPage.css":"78","/home/runner/work/VKUI/VKUI/src/components/ModalPageHeader/ModalPageHeader.css":"79","/home/runner/work/VKUI/VKUI/src/components/ModalRoot/ModalRoot.css":"80","/home/runner/work/VKUI/VKUI/src/components/Pagination/Pagination.css":"81","/home/runner/work/VKUI/VKUI/src/components/Panel/Panel.css":"82","/home/runner/work/VKUI/VKUI/src/components/PanelHeader/PanelHeader.css":"83","/home/runner/work/VKUI/VKUI/src/components/PanelHeaderBack/PanelHeaderBack.css":"84","/home/runner/work/VKUI/VKUI/src/components/PanelHeaderButton/PanelHeaderButton.css":"85","/home/runner/work/VKUI/VKUI/src/components/PanelHeaderContent/PanelHeaderContent.css":"86","/home/runner/work/VKUI/VKUI/src/components/PanelHeaderContext/PanelHeaderContext.css":"87","/home/runner/work/VKUI/VKUI/src/components/Placeholder/Placeholder.css":"88","/home/runner/work/VKUI/VKUI/src/components/PopoutRoot/PopoutRoot.css":"89","/home/runner/work/VKUI/VKUI/src/components/PopoutWrapper/PopoutWrapper.css":"90","/home/runner/work/VKUI/VKUI/src/components/Popper/Popper.css":"91","/home/runner/work/VKUI/VKUI/src/components/Progress/Progress.css":"92","/home/runner/work/VKUI/VKUI/src/components/PromoBanner/PromoBanner.css":"93","/home/runner/work/VKUI/VKUI/src/components/PullToRefresh/PullToRefresh.css":"94","/home/runner/work/VKUI/VKUI/src/components/Radio/Radio.css":"95","/home/runner/work/VKUI/VKUI/src/components/RadioGroup/RadioGroup.css":"96","/home/runner/work/VKUI/VKUI/src/components/Removable/Removable.css":"97","/home/runner/work/VKUI/VKUI/src/components/RichCell/RichCell.css":"98","/home/runner/work/VKUI/VKUI/src/components/RichTooltip/RichTooltip.css":"99","/home/runner/work/VKUI/VKUI/src/components/Root/Root.css":"100","/home/runner/work/VKUI/VKUI/src/components/ScreenSpinner/ScreenSpinner.css":"101","/home/runner/work/VKUI/VKUI/src/components/Search/Search.css":"102","/home/runner/work/VKUI/VKUI/src/components/SegmentedControl/SegmentedControl.css":"103","/home/runner/work/VKUI/VKUI/src/components/Select/Select.css":"104","/home/runner/work/VKUI/VKUI/src/components/SelectMimicry/SelectMimicry.css":"105","/home/runner/work/VKUI/VKUI/src/components/Separator/Separator.css":"106","/home/runner/work/VKUI/VKUI/src/components/SimpleCell/SimpleCell.css":"107","/home/runner/work/VKUI/VKUI/src/components/SimpleCheckbox/SimpleCheckbox.css":"108","/home/runner/work/VKUI/VKUI/src/components/Slider/Slider.css":"109","/home/runner/work/VKUI/VKUI/src/components/SliderSwitch/SliderSwitch.css":"110","/home/runner/work/VKUI/VKUI/src/components/Snackbar/Snackbar.css":"111","/home/runner/work/VKUI/VKUI/src/components/Spacing/Spacing.css":"112","/home/runner/work/VKUI/VKUI/src/components/Spinner/Spinner.css":"113","/home/runner/work/VKUI/VKUI/src/components/SplitCol/SplitCol.css":"114","/home/runner/work/VKUI/VKUI/src/components/SplitLayout/SplitLayout.css":"115","/home/runner/work/VKUI/VKUI/src/components/SubnavigationBar/SubnavigationBar.css":"116","/home/runner/work/VKUI/VKUI/src/components/SubnavigationButton/SubnavigationButton.css":"117","/home/runner/work/VKUI/VKUI/src/components/Switch/Switch.css":"118","/home/runner/work/VKUI/VKUI/src/components/Tabbar/Tabbar.css":"119","/home/runner/work/VKUI/VKUI/src/components/TabbarItem/TabbarItem.css":"120","/home/runner/work/VKUI/VKUI/src/components/Tabs/Tabs.css":"121","/home/runner/work/VKUI/VKUI/src/components/TabsItem/TabsItem.css":"122","/home/runner/work/VKUI/VKUI/src/components/Tappable/Tappable.css":"123","/home/runner/work/VKUI/VKUI/src/components/TextTooltip/TextTooltip.css":"124","/home/runner/work/VKUI/VKUI/src/components/Textarea/Textarea.css":"125","/home/runner/work/VKUI/VKUI/src/components/Tooltip/Tooltip.css":"126","/home/runner/work/VKUI/VKUI/src/components/UsersStack/UsersStack.css":"127","/home/runner/work/VKUI/VKUI/src/components/View/View.css":"128","/home/runner/work/VKUI/VKUI/src/components/View/ViewIOS.css":"129","/home/runner/work/VKUI/VKUI/src/components/VisuallyHiddenInput/VisuallyHiddenInput.css":"130","/home/runner/work/VKUI/VKUI/src/components/WriteBar/WriteBar.css":"131","/home/runner/work/VKUI/VKUI/src/components/WriteBarIcon/WriteBarIcon.css":"132","/home/runner/work/VKUI/VKUI/src/components/Cell/CellCheckbox/CellCheckbox.css":"133","/home/runner/work/VKUI/VKUI/src/components/Cell/CellDragger/CellDragger.css":"134","/home/runner/work/VKUI/VKUI/src/components/SegmentedControl/SegmentedControlOption/SegmentedControlOption.css":"135","/home/runner/work/VKUI/VKUI/src/components/Typography/Caption/Caption.css":"136","/home/runner/work/VKUI/VKUI/src/components/Typography/Headline/Headline.css":"137","/home/runner/work/VKUI/VKUI/src/components/Typography/Subhead/Subhead.css":"138","/home/runner/work/VKUI/VKUI/src/components/Typography/Text/Text.css":"139","/home/runner/work/VKUI/VKUI/src/components/Typography/Title/Title.css":"140"},{"size":214,"mtime":1648631866415,"hashOfConfig":"141"},{"size":205,"mtime":1648631866419,"hashOfConfig":"141"},{"size":9874,"mtime":1648631866419,"hashOfConfig":"141"},{"size":706,"mtime":1648631866419,"hashOfConfig":"141"},{"size":6847,"mtime":1648631866419,"hashOfConfig":"141"},{"size":2056,"mtime":1648631866419,"hashOfConfig":"141"},{"size":9983,"mtime":1648631866419,"hashOfConfig":"141"},{"size":784,"mtime":1648631866419,"hashOfConfig":"141"},{"size":277,"mtime":1648631866419,"hashOfConfig":"141"},{"size":10072,"mtime":1648631866419,"hashOfConfig":"141"},{"size":9915,"mtime":1648631866419,"hashOfConfig":"141"},{"size":2926,"mtime":1648631865767,"hashOfConfig":"141"},{"size":5740,"mtime":1648631866351,"hashOfConfig":"141"},{"size":5211,"mtime":1648631866351,"hashOfConfig":"141"},{"size":276,"mtime":1648631866355,"hashOfConfig":"141"},{"size":3157,"mtime":1648631866355,"hashOfConfig":"141"},{"size":328,"mtime":1648631866355,"hashOfConfig":"141"},{"size":2396,"mtime":1648631866355,"hashOfConfig":"141"},{"size":16701,"mtime":1648631866355,"hashOfConfig":"141"},{"size":1575,"mtime":1648631866355,"hashOfConfig":"141"},{"size":605,"mtime":1648631866359,"hashOfConfig":"141"},{"size":1769,"mtime":1648631866359,"hashOfConfig":"141"},{"size":555,"mtime":1648631866359,"hashOfConfig":"141"},{"size":865,"mtime":1648631866359,"hashOfConfig":"141"},{"size":535,"mtime":1648631866359,"hashOfConfig":"141"},{"size":259,"mtime":1648631866359,"hashOfConfig":"141"},{"size":1500,"mtime":1648631866359,"hashOfConfig":"141"},{"size":1091,"mtime":1648631866359,"hashOfConfig":"141"},{"size":846,"mtime":1648631866359,"hashOfConfig":"141"},{"size":804,"mtime":1648631866363,"hashOfConfig":"141"},{"size":743,"mtime":1648631866363,"hashOfConfig":"141"},{"size":1840,"mtime":1648631866363,"hashOfConfig":"141"},{"size":951,"mtime":1648631866363,"hashOfConfig":"141"},{"size":1156,"mtime":1648631866367,"hashOfConfig":"141"},{"size":454,"mtime":1648631866367,"hashOfConfig":"141"},{"size":582,"mtime":1648631866367,"hashOfConfig":"141"},{"size":4189,"mtime":1648631866367,"hashOfConfig":"141"},{"size":1105,"mtime":1648631866367,"hashOfConfig":"141"},{"size":339,"mtime":1648631866367,"hashOfConfig":"141"},{"size":907,"mtime":1648631866367,"hashOfConfig":"141"},{"size":1074,"mtime":1648631866367,"hashOfConfig":"141"},{"size":361,"mtime":1648631866371,"hashOfConfig":"141"},{"size":357,"mtime":1648631866371,"hashOfConfig":"141"},{"size":317,"mtime":1648631866371,"hashOfConfig":"141"},{"size":63,"mtime":1648631866371,"hashOfConfig":"141"},{"size":455,"mtime":1648631866371,"hashOfConfig":"141"},{"size":37,"mtime":1648631866371,"hashOfConfig":"141"},{"size":41,"mtime":1648631866371,"hashOfConfig":"141"},{"size":45,"mtime":1648631866371,"hashOfConfig":"141"},{"size":510,"mtime":1648631866371,"hashOfConfig":"141"},{"size":1428,"mtime":1648631866371,"hashOfConfig":"141"},{"size":141,"mtime":1648631866371,"hashOfConfig":"141"},{"size":2939,"mtime":1648631866371,"hashOfConfig":"141"},{"size":1344,"mtime":1648631866375,"hashOfConfig":"141"},{"size":227,"mtime":1648631866379,"hashOfConfig":"141"},{"size":317,"mtime":1648631866379,"hashOfConfig":"141"},{"size":742,"mtime":1648631866379,"hashOfConfig":"141"},{"size":1017,"mtime":1648631866379,"hashOfConfig":"141"},{"size":2095,"mtime":1648631866379,"hashOfConfig":"141"},{"size":946,"mtime":1648631866379,"hashOfConfig":"141"},{"size":1623,"mtime":1648631866379,"hashOfConfig":"141"},{"size":2364,"mtime":1648631866379,"hashOfConfig":"141"},{"size":1991,"mtime":1648631866379,"hashOfConfig":"141"},{"size":582,"mtime":1648631866379,"hashOfConfig":"141"},{"size":1594,"mtime":1648631866379,"hashOfConfig":"141"},{"size":1658,"mtime":1648631866383,"hashOfConfig":"141"},{"size":243,"mtime":1648631866383,"hashOfConfig":"141"},{"size":1235,"mtime":1648631866383,"hashOfConfig":"141"},{"size":831,"mtime":1648631866383,"hashOfConfig":"141"},{"size":432,"mtime":1648631866383,"hashOfConfig":"141"},{"size":89,"mtime":1648631866383,"hashOfConfig":"141"},{"size":287,"mtime":1648631866383,"hashOfConfig":"141"},{"size":10,"mtime":1648631866383,"hashOfConfig":"141"},{"size":1120,"mtime":1648631866383,"hashOfConfig":"141"},{"size":1146,"mtime":1648631866387,"hashOfConfig":"141"},{"size":1743,"mtime":1648631866387,"hashOfConfig":"141"},{"size":651,"mtime":1648631866387,"hashOfConfig":"141"},{"size":2608,"mtime":1648631866387,"hashOfConfig":"141"},{"size":444,"mtime":1648631866387,"hashOfConfig":"141"},{"size":1309,"mtime":1648631866387,"hashOfConfig":"141"},{"size":1379,"mtime":1648631866391,"hashOfConfig":"141"},{"size":2262,"mtime":1648631866391,"hashOfConfig":"141"},{"size":5680,"mtime":1648631866391,"hashOfConfig":"141"},{"size":154,"mtime":1648631866391,"hashOfConfig":"141"},{"size":1619,"mtime":1648631866391,"hashOfConfig":"141"},{"size":1941,"mtime":1648631866391,"hashOfConfig":"141"},{"size":2959,"mtime":1648631866391,"hashOfConfig":"141"},{"size":812,"mtime":1648631866391,"hashOfConfig":"141"},{"size":455,"mtime":1648631866395,"hashOfConfig":"141"},{"size":1839,"mtime":1648631866395,"hashOfConfig":"141"},{"size":685,"mtime":1648631866395,"hashOfConfig":"141"},{"size":212,"mtime":1648631866395,"hashOfConfig":"141"},{"size":936,"mtime":1648631866395,"hashOfConfig":"141"},{"size":2010,"mtime":1648631866395,"hashOfConfig":"141"},{"size":2979,"mtime":1648631866395,"hashOfConfig":"141"},{"size":175,"mtime":1648631866395,"hashOfConfig":"141"},{"size":2272,"mtime":1648631866395,"hashOfConfig":"141"},{"size":1828,"mtime":1648631866395,"hashOfConfig":"141"},{"size":259,"mtime":1648631866399,"hashOfConfig":"141"},{"size":2858,"mtime":1648631866399,"hashOfConfig":"141"},{"size":653,"mtime":1648631866399,"hashOfConfig":"141"},{"size":6437,"mtime":1648631866399,"hashOfConfig":"141"},{"size":885,"mtime":1648631866399,"hashOfConfig":"141"},{"size":1032,"mtime":1648631866399,"hashOfConfig":"141"},{"size":201,"mtime":1648631866399,"hashOfConfig":"141"},{"size":839,"mtime":1648631866399,"hashOfConfig":"141"},{"size":5154,"mtime":1648631866403,"hashOfConfig":"141"},{"size":2533,"mtime":1648631866403,"hashOfConfig":"141"},{"size":2187,"mtime":1648631866403,"hashOfConfig":"141"},{"size":1686,"mtime":1648631866403,"hashOfConfig":"141"},{"size":2880,"mtime":1648631866403,"hashOfConfig":"141"},{"size":746,"mtime":1648631866403,"hashOfConfig":"141"},{"size":443,"mtime":1648631866403,"hashOfConfig":"141"},{"size":402,"mtime":1648631866403,"hashOfConfig":"141"},{"size":924,"mtime":1648631866403,"hashOfConfig":"141"},{"size":705,"mtime":1648631866403,"hashOfConfig":"141"},{"size":1730,"mtime":1648631866403,"hashOfConfig":"141"},{"size":3935,"mtime":1648631866403,"hashOfConfig":"141"},{"size":910,"mtime":1648631866407,"hashOfConfig":"141"},{"size":2085,"mtime":1648631866407,"hashOfConfig":"141"},{"size":2021,"mtime":1648631866407,"hashOfConfig":"141"},{"size":3763,"mtime":1648631866407,"hashOfConfig":"141"},{"size":2300,"mtime":1648631866407,"hashOfConfig":"141"},{"size":398,"mtime":1648631866407,"hashOfConfig":"141"},{"size":645,"mtime":1648631866407,"hashOfConfig":"141"},{"size":2789,"mtime":1648631866407,"hashOfConfig":"141"},{"size":1760,"mtime":1648631866415,"hashOfConfig":"141"},{"size":1832,"mtime":1648631866415,"hashOfConfig":"141"},{"size":3079,"mtime":1648631866415,"hashOfConfig":"141"},{"size":167,"mtime":1648631866415,"hashOfConfig":"141"},{"size":1759,"mtime":1648631866415,"hashOfConfig":"141"},{"size":1286,"mtime":1648631866415,"hashOfConfig":"141"},{"size":313,"mtime":1648631866363,"hashOfConfig":"141"},{"size":70,"mtime":1648631866363,"hashOfConfig":"141"},{"size":591,"mtime":1648631866399,"hashOfConfig":"141"},{"size":3303,"mtime":1648631866411,"hashOfConfig":"141"},{"size":307,"mtime":1648631866411,"hashOfConfig":"141"},{"size":980,"mtime":1648631866411,"hashOfConfig":"141"},{"size":283,"mtime":1648631866411,"hashOfConfig":"141"},{"size":1346,"mtime":1648631866411,"hashOfConfig":"141"},"5cvpu8"]