@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.
- package/.cache/.eslintcache +1 -1
- package/.cache/.stylelintcache +1 -1
- package/.cache/.tsbuildinfo +11910 -4711
- package/.cache/ts/src/components/Button/Button.d.ts +1 -1
- package/.cache/ts/src/components/ButtonGroup/ButtonGroup.d.ts +20 -0
- package/.cache/ts/src/components/Calendar/Calendar.d.ts +21 -0
- package/.cache/ts/src/components/CalendarDay/CalendarDay.d.ts +22 -0
- package/.cache/ts/src/components/CalendarDays/CalendarDays.d.ts +22 -0
- package/.cache/ts/src/components/CalendarHeader/CalendarHeader.d.ts +16 -0
- package/.cache/ts/src/components/CalendarRange/CalendarRange.d.ts +16 -0
- package/.cache/ts/src/components/CalendarTime/CalendarTime.d.ts +11 -0
- package/.cache/ts/src/components/ChipsSelect/ChipsSelect.d.ts +1 -2
- package/.cache/ts/src/components/ConfigProvider/ConfigProvider.d.ts +4 -0
- package/.cache/ts/src/components/ConfigProvider/ConfigProviderContext.d.ts +0 -7
- package/.cache/ts/src/components/CustomScrollView/CustomScrollView.d.ts +1 -1
- package/.cache/ts/src/components/CustomSelect/CustomSelect.d.ts +10 -1
- package/.cache/ts/src/components/CustomSelectDropdown/CustomSelectDropdown.d.ts +4 -1
- package/.cache/ts/src/components/DateInput/DateInput.d.ts +12 -0
- package/.cache/ts/src/components/DateRangeInput/DateRangeInput.d.ts +18 -0
- package/.cache/ts/src/components/Div/Div.d.ts +1 -2
- package/.cache/ts/src/components/IconButton/IconButton.d.ts +1 -1
- package/.cache/ts/src/components/InputLike/InputLike.d.ts +10 -0
- package/.cache/ts/src/components/InputLike/InputLikeDivider.d.ts +3 -0
- package/.cache/ts/src/components/LocaleProviderContext/LocaleProviderContext.d.ts +2 -0
- package/.cache/ts/src/components/Pagination/Pagination.d.ts +42 -0
- package/.cache/ts/src/components/PanelHeaderBack/PanelHeaderBack.d.ts +1 -1
- package/.cache/ts/src/components/RichCell/RichCell.d.ts +3 -2
- package/.cache/ts/src/components/Select/Select.d.ts +1 -1
- package/.cache/ts/src/components/SelectMimicry/SelectMimicry.d.ts +5 -1
- package/.cache/ts/src/components/SimpleCell/SimpleCell.d.ts +1 -1
- package/.cache/ts/src/components/SimpleCheckbox/SimpleCheckbox.d.ts +0 -1
- package/.cache/ts/src/components/Tappable/Tappable.d.ts +3 -1
- package/.cache/ts/src/components/Typography/Caption/Caption.d.ts +8 -4
- package/.cache/ts/src/components/Typography/Subhead/Subhead.d.ts +6 -1
- package/.cache/ts/src/components/Typography/Title/Title.d.ts +3 -1
- package/.cache/ts/src/components/View/ViewInfinite.d.ts +2 -2
- package/.cache/ts/src/helpers/typography.d.ts +1 -0
- package/.cache/ts/src/hooks/useBooleanState.d.ts +6 -0
- package/.cache/ts/src/hooks/useCalendar.d.ts +18 -0
- package/.cache/ts/src/hooks/useDateInput.d.ts +30 -0
- package/.cache/ts/src/hooks/useKeyboardInputTracker.d.ts +2 -0
- package/.cache/ts/src/hooks/useOrientationChange.d.ts +7 -0
- package/.cache/ts/src/hooks/usePagination.d.ts +34 -0
- package/.cache/ts/src/index.d.ts +12 -2
- package/.cache/ts/src/lib/calendar.d.ts +14 -0
- package/.cache/ts/src/lib/utils.d.ts +2 -1
- package/.cache/ts/src/tokenized/index.d.ts +14 -0
- package/.cache/ts/src/unstable/index.d.ts +6 -6
- package/CONTRIBUTING.md +3 -2
- package/CSS_GUIDE.md +145 -0
- package/dist/cjs/components/ActionSheet/ActionSheet.js +4 -7
- package/dist/cjs/components/ActionSheet/ActionSheet.js.map +1 -1
- package/dist/cjs/components/ActionSheetItem/ActionSheetItem.js +3 -6
- package/dist/cjs/components/ActionSheetItem/ActionSheetItem.js.map +1 -1
- package/dist/cjs/components/Alert/Alert.js +5 -8
- package/dist/cjs/components/Alert/Alert.js.map +1 -1
- package/dist/cjs/components/Banner/Banner.js +1 -3
- package/dist/cjs/components/Banner/Banner.js.map +1 -1
- package/dist/cjs/components/Button/Button.d.ts +1 -1
- package/dist/cjs/components/Button/Button.js +7 -11
- package/dist/cjs/components/Button/Button.js.map +1 -1
- package/dist/cjs/components/ButtonGroup/ButtonGroup.d.ts +20 -0
- package/dist/cjs/components/ButtonGroup/ButtonGroup.js +38 -0
- package/dist/cjs/components/ButtonGroup/ButtonGroup.js.map +1 -0
- package/dist/cjs/components/Calendar/Calendar.d.ts +21 -0
- package/dist/cjs/components/Calendar/Calendar.js +160 -0
- package/dist/cjs/components/Calendar/Calendar.js.map +1 -0
- package/dist/cjs/components/CalendarDay/CalendarDay.d.ts +22 -0
- package/dist/cjs/components/CalendarDay/CalendarDay.js +109 -0
- package/dist/cjs/components/CalendarDay/CalendarDay.js.map +1 -0
- package/dist/cjs/components/CalendarDays/CalendarDays.d.ts +22 -0
- package/dist/cjs/components/CalendarDays/CalendarDays.js +118 -0
- package/dist/cjs/components/CalendarDays/CalendarDays.js.map +1 -0
- package/dist/cjs/components/CalendarHeader/CalendarHeader.d.ts +16 -0
- package/dist/cjs/components/CalendarHeader/CalendarHeader.js +143 -0
- package/dist/cjs/components/CalendarHeader/CalendarHeader.js.map +1 -0
- package/dist/cjs/components/CalendarRange/CalendarRange.d.ts +16 -0
- package/dist/cjs/components/CalendarRange/CalendarRange.js +219 -0
- package/dist/cjs/components/CalendarRange/CalendarRange.js.map +1 -0
- package/dist/cjs/components/CalendarTime/CalendarTime.d.ts +11 -0
- package/dist/cjs/components/CalendarTime/CalendarTime.js +92 -0
- package/dist/cjs/components/CalendarTime/CalendarTime.js.map +1 -0
- package/dist/cjs/components/Checkbox/Checkbox.js +2 -5
- package/dist/cjs/components/Checkbox/Checkbox.js.map +1 -1
- package/dist/cjs/components/Chip/Chip.js +2 -4
- package/dist/cjs/components/Chip/Chip.js.map +1 -1
- package/dist/cjs/components/ChipsSelect/ChipsSelect.d.ts +1 -2
- package/dist/cjs/components/ChipsSelect/ChipsSelect.js +7 -11
- package/dist/cjs/components/ChipsSelect/ChipsSelect.js.map +1 -1
- package/dist/cjs/components/ConfigProvider/ConfigProvider.d.ts +4 -0
- package/dist/cjs/components/ConfigProvider/ConfigProvider.js +40 -21
- package/dist/cjs/components/ConfigProvider/ConfigProvider.js.map +1 -1
- package/dist/cjs/components/ConfigProvider/ConfigProviderContext.d.ts +0 -7
- package/dist/cjs/components/ConfigProvider/ConfigProviderContext.js +3 -5
- package/dist/cjs/components/ConfigProvider/ConfigProviderContext.js.map +1 -1
- package/dist/cjs/components/ContentCard/ContentCard.js +5 -7
- package/dist/cjs/components/ContentCard/ContentCard.js.map +1 -1
- package/dist/cjs/components/Counter/Counter.js +3 -3
- package/dist/cjs/components/Counter/Counter.js.map +1 -1
- package/dist/cjs/components/CustomScrollView/CustomScrollView.d.ts +1 -1
- package/dist/cjs/components/CustomScrollView/CustomScrollView.js.map +1 -1
- package/dist/cjs/components/CustomSelect/CustomSelect.d.ts +10 -1
- package/dist/cjs/components/CustomSelect/CustomSelect.js +47 -17
- package/dist/cjs/components/CustomSelect/CustomSelect.js.map +1 -1
- package/dist/cjs/components/CustomSelectDropdown/CustomSelectDropdown.d.ts +4 -1
- package/dist/cjs/components/CustomSelectDropdown/CustomSelectDropdown.js +14 -5
- package/dist/cjs/components/CustomSelectDropdown/CustomSelectDropdown.js.map +1 -1
- package/dist/cjs/components/CustomSelectOption/CustomSelectOption.js +3 -5
- package/dist/cjs/components/CustomSelectOption/CustomSelectOption.js.map +1 -1
- package/dist/cjs/components/DateInput/DateInput.d.ts +12 -0
- package/dist/cjs/components/DateInput/DateInput.js +290 -0
- package/dist/cjs/components/DateInput/DateInput.js.map +1 -0
- package/dist/cjs/components/DateRangeInput/DateRangeInput.d.ts +18 -0
- package/dist/cjs/components/DateRangeInput/DateRangeInput.js +310 -0
- package/dist/cjs/components/DateRangeInput/DateRangeInput.js.map +1 -0
- package/dist/cjs/components/Div/Div.d.ts +1 -2
- package/dist/cjs/components/Div/Div.js +2 -5
- package/dist/cjs/components/Div/Div.js.map +1 -1
- package/dist/cjs/components/Footer/Footer.js +2 -4
- package/dist/cjs/components/Footer/Footer.js.map +1 -1
- package/dist/cjs/components/FormItem/FormItem.js +2 -5
- package/dist/cjs/components/FormItem/FormItem.js.map +1 -1
- package/dist/cjs/components/FormStatus/FormStatus.js +3 -8
- package/dist/cjs/components/FormStatus/FormStatus.js.map +1 -1
- package/dist/cjs/components/Group/Group.js +3 -5
- package/dist/cjs/components/Group/Group.js.map +1 -1
- package/dist/cjs/components/Header/Header.js +10 -23
- package/dist/cjs/components/Header/Header.js.map +1 -1
- package/dist/cjs/components/HorizontalCell/HorizontalCell.js +5 -10
- package/dist/cjs/components/HorizontalCell/HorizontalCell.js.map +1 -1
- package/dist/cjs/components/IconButton/IconButton.d.ts +1 -1
- package/dist/cjs/components/InfoRow/InfoRow.js +1 -2
- package/dist/cjs/components/InfoRow/InfoRow.js.map +1 -1
- package/dist/cjs/components/InputLike/InputLike.d.ts +10 -0
- package/dist/cjs/components/InputLike/InputLike.js +71 -0
- package/dist/cjs/components/InputLike/InputLike.js.map +1 -0
- package/dist/cjs/components/InputLike/InputLikeDivider.d.ts +3 -0
- package/dist/cjs/components/InputLike/InputLikeDivider.js +27 -0
- package/dist/cjs/components/InputLike/InputLikeDivider.js.map +1 -0
- package/dist/cjs/components/LocaleProviderContext/LocaleProviderContext.d.ts +2 -0
- package/dist/cjs/components/LocaleProviderContext/LocaleProviderContext.js +14 -0
- package/dist/cjs/components/LocaleProviderContext/LocaleProviderContext.js.map +1 -0
- package/dist/cjs/components/ModalPage/ModalPage.js +5 -5
- package/dist/cjs/components/ModalPage/ModalPage.js.map +1 -1
- package/dist/cjs/components/Pagination/Pagination.d.ts +42 -0
- package/dist/cjs/components/Pagination/Pagination.js +152 -0
- package/dist/cjs/components/Pagination/Pagination.js.map +1 -0
- package/dist/cjs/components/PanelHeaderBack/PanelHeaderBack.d.ts +1 -1
- package/dist/cjs/components/PanelHeaderContent/PanelHeaderContent.js +2 -4
- package/dist/cjs/components/PanelHeaderContent/PanelHeaderContent.js.map +1 -1
- package/dist/cjs/components/PromoBanner/PromoBanner.js +3 -7
- package/dist/cjs/components/PromoBanner/PromoBanner.js.map +1 -1
- package/dist/cjs/components/Radio/Radio.js +2 -5
- package/dist/cjs/components/Radio/Radio.js.map +1 -1
- package/dist/cjs/components/Removable/Removable.js +8 -4
- package/dist/cjs/components/Removable/Removable.js.map +1 -1
- package/dist/cjs/components/RichCell/RichCell.d.ts +3 -2
- package/dist/cjs/components/RichCell/RichCell.js +0 -1
- package/dist/cjs/components/RichCell/RichCell.js.map +1 -1
- package/dist/cjs/components/Select/Select.d.ts +1 -1
- package/dist/cjs/components/SelectMimicry/SelectMimicry.d.ts +5 -1
- package/dist/cjs/components/SelectMimicry/SelectMimicry.js +11 -5
- package/dist/cjs/components/SelectMimicry/SelectMimicry.js.map +1 -1
- package/dist/cjs/components/SimpleCell/SimpleCell.d.ts +1 -1
- package/dist/cjs/components/SimpleCell/SimpleCell.js +0 -1
- package/dist/cjs/components/SimpleCell/SimpleCell.js.map +1 -1
- package/dist/cjs/components/SimpleCheckbox/SimpleCheckbox.d.ts +0 -1
- package/dist/cjs/components/SimpleCheckbox/SimpleCheckbox.js +2 -5
- package/dist/cjs/components/SimpleCheckbox/SimpleCheckbox.js.map +1 -1
- package/dist/cjs/components/Spacing/Spacing.js +2 -2
- package/dist/cjs/components/Spacing/Spacing.js.map +1 -1
- package/dist/cjs/components/SubnavigationButton/SubnavigationButton.js +4 -7
- package/dist/cjs/components/SubnavigationButton/SubnavigationButton.js.map +1 -1
- package/dist/cjs/components/Tappable/Tappable.d.ts +3 -1
- package/dist/cjs/components/Tappable/Tappable.js +11 -11
- package/dist/cjs/components/Tappable/Tappable.js.map +1 -1
- package/dist/cjs/components/TextTooltip/TextTooltip.js +1 -2
- package/dist/cjs/components/TextTooltip/TextTooltip.js.map +1 -1
- package/dist/cjs/components/Tooltip/Tooltip.js +1 -2
- package/dist/cjs/components/Tooltip/Tooltip.js.map +1 -1
- package/dist/cjs/components/Typography/Caption/Caption.d.ts +8 -4
- package/dist/cjs/components/Typography/Caption/Caption.js +12 -14
- package/dist/cjs/components/Typography/Caption/Caption.js.map +1 -1
- package/dist/cjs/components/Typography/Subhead/Subhead.d.ts +6 -1
- package/dist/cjs/components/Typography/Subhead/Subhead.js +15 -8
- package/dist/cjs/components/Typography/Subhead/Subhead.js.map +1 -1
- package/dist/cjs/components/Typography/Title/Title.d.ts +3 -1
- package/dist/cjs/components/Typography/Title/Title.js +4 -2
- package/dist/cjs/components/Typography/Title/Title.js.map +1 -1
- package/dist/cjs/components/UsersStack/UsersStack.js +3 -5
- package/dist/cjs/components/UsersStack/UsersStack.js.map +1 -1
- package/dist/cjs/components/View/ViewInfinite.d.ts +2 -2
- package/dist/cjs/components/View/ViewInfinite.js +12 -15
- package/dist/cjs/components/View/ViewInfinite.js.map +1 -1
- package/dist/cjs/helpers/typography.d.ts +1 -0
- package/dist/cjs/helpers/typography.js +25 -0
- package/dist/cjs/helpers/typography.js.map +1 -0
- package/dist/cjs/hooks/useBooleanState.d.ts +6 -0
- package/dist/cjs/hooks/useBooleanState.js +42 -0
- package/dist/cjs/hooks/useBooleanState.js.map +1 -0
- package/dist/cjs/hooks/useCalendar.d.ts +18 -0
- package/dist/cjs/hooks/useCalendar.js +78 -0
- package/dist/cjs/hooks/useCalendar.js.map +1 -0
- package/dist/cjs/hooks/useDateInput.d.ts +30 -0
- package/dist/cjs/hooks/useDateInput.js +180 -0
- package/dist/cjs/hooks/useDateInput.js.map +1 -0
- package/dist/cjs/hooks/useKeyboardInputTracker.d.ts +2 -0
- package/dist/cjs/hooks/useKeyboardInputTracker.js +15 -4
- package/dist/cjs/hooks/useKeyboardInputTracker.js.map +1 -1
- package/dist/cjs/hooks/useOrientationChange.d.ts +7 -0
- package/dist/cjs/hooks/useOrientationChange.js +56 -0
- package/dist/cjs/hooks/useOrientationChange.js.map +1 -0
- package/dist/cjs/hooks/usePagination.d.ts +34 -0
- package/dist/cjs/hooks/usePagination.js +81 -0
- package/dist/cjs/hooks/usePagination.js.map +1 -0
- package/dist/cjs/index.d.ts +12 -2
- package/dist/cjs/index.js +68 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/lib/calendar.d.ts +14 -0
- package/dist/cjs/lib/calendar.js +142 -0
- package/dist/cjs/lib/calendar.js.map +1 -0
- package/dist/cjs/lib/utils.d.ts +2 -1
- package/dist/cjs/lib/utils.js +7 -0
- package/dist/cjs/lib/utils.js.map +1 -1
- package/dist/cjs/tokenized/index.d.ts +14 -0
- package/dist/cjs/tokenized/index.js +56 -0
- package/dist/cjs/tokenized/index.js.map +1 -1
- package/dist/cjs/unstable/index.d.ts +6 -6
- package/dist/cjs/unstable/index.js +6 -8
- package/dist/cjs/unstable/index.js.map +1 -1
- package/dist/components/ActionSheet/ActionSheet.js +2 -5
- package/dist/components/ActionSheet/ActionSheet.js.map +1 -1
- package/dist/components/ActionSheetItem/ActionSheetItem.js +2 -5
- package/dist/components/ActionSheetItem/ActionSheetItem.js.map +1 -1
- package/dist/components/Alert/Alert.js +3 -6
- package/dist/components/Alert/Alert.js.map +1 -1
- package/dist/components/Banner/Banner.js +1 -3
- package/dist/components/Banner/Banner.js.map +1 -1
- package/dist/components/Button/Button.d.ts +1 -1
- package/dist/components/Button/Button.js +6 -10
- package/dist/components/Button/Button.js.map +1 -1
- package/dist/components/ButtonGroup/ButtonGroup.d.ts +20 -0
- package/dist/components/ButtonGroup/ButtonGroup.js +23 -0
- package/dist/components/ButtonGroup/ButtonGroup.js.map +1 -0
- package/dist/components/Calendar/Calendar.d.ts +21 -0
- package/dist/components/Calendar/Calendar.js +133 -0
- package/dist/components/Calendar/Calendar.js.map +1 -0
- package/dist/components/CalendarDay/CalendarDay.d.ts +22 -0
- package/dist/components/CalendarDay/CalendarDay.js +91 -0
- package/dist/components/CalendarDay/CalendarDay.js.map +1 -0
- package/dist/components/CalendarDays/CalendarDays.d.ts +22 -0
- package/dist/components/CalendarDays/CalendarDays.js +94 -0
- package/dist/components/CalendarDays/CalendarDays.js.map +1 -0
- package/dist/components/CalendarHeader/CalendarHeader.d.ts +16 -0
- package/dist/components/CalendarHeader/CalendarHeader.js +118 -0
- package/dist/components/CalendarHeader/CalendarHeader.js.map +1 -0
- package/dist/components/CalendarRange/CalendarRange.d.ts +16 -0
- package/dist/components/CalendarRange/CalendarRange.js +196 -0
- package/dist/components/CalendarRange/CalendarRange.js.map +1 -0
- package/dist/components/CalendarTime/CalendarTime.d.ts +11 -0
- package/dist/components/CalendarTime/CalendarTime.js +73 -0
- package/dist/components/CalendarTime/CalendarTime.js.map +1 -0
- package/dist/components/Checkbox/Checkbox.js +1 -4
- package/dist/components/Checkbox/Checkbox.js.map +1 -1
- package/dist/components/Chip/Chip.js +1 -3
- package/dist/components/Chip/Chip.js.map +1 -1
- package/dist/components/ChipsSelect/ChipsSelect.d.ts +1 -2
- package/dist/components/ChipsSelect/ChipsSelect.js +4 -7
- package/dist/components/ChipsSelect/ChipsSelect.js.map +1 -1
- package/dist/components/ConfigProvider/ConfigProvider.d.ts +4 -0
- package/dist/components/ConfigProvider/ConfigProvider.js +36 -20
- package/dist/components/ConfigProvider/ConfigProvider.js.map +1 -1
- package/dist/components/ConfigProvider/ConfigProviderContext.d.ts +0 -7
- package/dist/components/ConfigProvider/ConfigProviderContext.js +2 -3
- package/dist/components/ConfigProvider/ConfigProviderContext.js.map +1 -1
- package/dist/components/ContentCard/ContentCard.js +3 -5
- package/dist/components/ContentCard/ContentCard.js.map +1 -1
- package/dist/components/Counter/Counter.js +2 -2
- package/dist/components/Counter/Counter.js.map +1 -1
- package/dist/components/CustomScrollView/CustomScrollView.d.ts +1 -1
- package/dist/components/CustomScrollView/CustomScrollView.js.map +1 -1
- package/dist/components/CustomSelect/CustomSelect.d.ts +10 -1
- package/dist/components/CustomSelect/CustomSelect.js +44 -15
- package/dist/components/CustomSelect/CustomSelect.js.map +1 -1
- package/dist/components/CustomSelectDropdown/CustomSelectDropdown.d.ts +4 -1
- package/dist/components/CustomSelectDropdown/CustomSelectDropdown.js +14 -5
- package/dist/components/CustomSelectDropdown/CustomSelectDropdown.js.map +1 -1
- package/dist/components/CustomSelectOption/CustomSelectOption.js +2 -4
- package/dist/components/CustomSelectOption/CustomSelectOption.js.map +1 -1
- package/dist/components/DateInput/DateInput.d.ts +12 -0
- package/dist/components/DateInput/DateInput.js +261 -0
- package/dist/components/DateInput/DateInput.js.map +1 -0
- package/dist/components/DateRangeInput/DateRangeInput.d.ts +18 -0
- package/dist/components/DateRangeInput/DateRangeInput.js +281 -0
- package/dist/components/DateRangeInput/DateRangeInput.js.map +1 -0
- package/dist/components/Div/Div.d.ts +1 -2
- package/dist/components/Div/Div.js +1 -3
- package/dist/components/Div/Div.js.map +1 -1
- package/dist/components/Footer/Footer.js +1 -3
- package/dist/components/Footer/Footer.js.map +1 -1
- package/dist/components/FormItem/FormItem.js +1 -4
- package/dist/components/FormItem/FormItem.js.map +1 -1
- package/dist/components/FormStatus/FormStatus.js +2 -7
- package/dist/components/FormStatus/FormStatus.js.map +1 -1
- package/dist/components/Group/Group.js +2 -4
- package/dist/components/Group/Group.js.map +1 -1
- package/dist/components/Header/Header.js +7 -20
- package/dist/components/Header/Header.js.map +1 -1
- package/dist/components/HorizontalCell/HorizontalCell.js +3 -8
- package/dist/components/HorizontalCell/HorizontalCell.js.map +1 -1
- package/dist/components/IconButton/IconButton.d.ts +1 -1
- package/dist/components/InfoRow/InfoRow.js +1 -2
- package/dist/components/InfoRow/InfoRow.js.map +1 -1
- package/dist/components/InputLike/InputLike.d.ts +10 -0
- package/dist/components/InputLike/InputLike.js +52 -0
- package/dist/components/InputLike/InputLike.js.map +1 -0
- package/dist/components/InputLike/InputLikeDivider.d.ts +3 -0
- package/dist/components/InputLike/InputLikeDivider.js +13 -0
- package/dist/components/InputLike/InputLikeDivider.js.map +1 -0
- package/dist/components/LocaleProviderContext/LocaleProviderContext.d.ts +2 -0
- package/dist/components/LocaleProviderContext/LocaleProviderContext.js +3 -0
- package/dist/components/LocaleProviderContext/LocaleProviderContext.js.map +1 -0
- package/dist/components/ModalPage/ModalPage.js +4 -5
- package/dist/components/ModalPage/ModalPage.js.map +1 -1
- package/dist/components/Pagination/Pagination.d.ts +42 -0
- package/dist/components/Pagination/Pagination.js +129 -0
- package/dist/components/Pagination/Pagination.js.map +1 -0
- package/dist/components/PanelHeaderBack/PanelHeaderBack.d.ts +1 -1
- package/dist/components/PanelHeaderContent/PanelHeaderContent.js +1 -3
- package/dist/components/PanelHeaderContent/PanelHeaderContent.js.map +1 -1
- package/dist/components/PromoBanner/PromoBanner.js +1 -5
- package/dist/components/PromoBanner/PromoBanner.js.map +1 -1
- package/dist/components/Radio/Radio.js +1 -4
- package/dist/components/Radio/Radio.js.map +1 -1
- package/dist/components/Removable/Removable.js +8 -4
- package/dist/components/Removable/Removable.js.map +1 -1
- package/dist/components/RichCell/RichCell.d.ts +3 -2
- package/dist/components/RichCell/RichCell.js +0 -1
- package/dist/components/RichCell/RichCell.js.map +1 -1
- package/dist/components/Select/Select.d.ts +1 -1
- package/dist/components/SelectMimicry/SelectMimicry.d.ts +5 -1
- package/dist/components/SelectMimicry/SelectMimicry.js +10 -5
- package/dist/components/SelectMimicry/SelectMimicry.js.map +1 -1
- package/dist/components/SimpleCell/SimpleCell.d.ts +1 -1
- package/dist/components/SimpleCell/SimpleCell.js +0 -1
- package/dist/components/SimpleCell/SimpleCell.js.map +1 -1
- package/dist/components/SimpleCheckbox/SimpleCheckbox.d.ts +0 -1
- package/dist/components/SimpleCheckbox/SimpleCheckbox.js +1 -3
- package/dist/components/SimpleCheckbox/SimpleCheckbox.js.map +1 -1
- package/dist/components/Spacing/Spacing.js +2 -2
- package/dist/components/Spacing/Spacing.js.map +1 -1
- package/dist/components/SubnavigationButton/SubnavigationButton.js +3 -6
- package/dist/components/SubnavigationButton/SubnavigationButton.js.map +1 -1
- package/dist/components/Tappable/Tappable.d.ts +3 -1
- package/dist/components/Tappable/Tappable.js +10 -11
- package/dist/components/Tappable/Tappable.js.map +1 -1
- package/dist/components/TextTooltip/TextTooltip.js +1 -2
- package/dist/components/TextTooltip/TextTooltip.js.map +1 -1
- package/dist/components/Tooltip/Tooltip.js +1 -2
- package/dist/components/Tooltip/Tooltip.js.map +1 -1
- package/dist/components/Typography/Caption/Caption.d.ts +8 -4
- package/dist/components/Typography/Caption/Caption.js +10 -14
- package/dist/components/Typography/Caption/Caption.js.map +1 -1
- package/dist/components/Typography/Subhead/Subhead.d.ts +6 -1
- package/dist/components/Typography/Subhead/Subhead.js +13 -7
- package/dist/components/Typography/Subhead/Subhead.js.map +1 -1
- package/dist/components/Typography/Title/Title.d.ts +3 -1
- package/dist/components/Typography/Title/Title.js +3 -2
- package/dist/components/Typography/Title/Title.js.map +1 -1
- package/dist/components/UsersStack/UsersStack.js +2 -4
- package/dist/components/UsersStack/UsersStack.js.map +1 -1
- package/dist/components/View/ViewInfinite.d.ts +2 -2
- package/dist/components/View/ViewInfinite.js +10 -11
- package/dist/components/View/ViewInfinite.js.map +1 -1
- package/dist/components.css +5 -5
- package/dist/components.css.map +1 -1
- package/dist/cssm/components/ActionSheet/ActionSheet.js +2 -5
- package/dist/cssm/components/ActionSheet/ActionSheet.js.map +1 -1
- package/dist/cssm/components/ActionSheetItem/ActionSheetItem.js +2 -5
- package/dist/cssm/components/ActionSheetItem/ActionSheetItem.js.map +1 -1
- package/dist/cssm/components/Alert/Alert.js +3 -6
- package/dist/cssm/components/Alert/Alert.js.map +1 -1
- package/dist/cssm/components/Banner/Banner.js +1 -3
- package/dist/cssm/components/Banner/Banner.js.map +1 -1
- package/dist/cssm/components/Button/Button.css +1 -1
- package/dist/cssm/components/Button/Button.d.ts +1 -1
- package/dist/cssm/components/Button/Button.js +6 -10
- package/dist/cssm/components/Button/Button.js.map +1 -1
- package/dist/cssm/components/ButtonGroup/ButtonGroup.css +1 -0
- package/dist/cssm/components/ButtonGroup/ButtonGroup.d.ts +20 -0
- package/dist/cssm/components/ButtonGroup/ButtonGroup.js +24 -0
- package/dist/cssm/components/ButtonGroup/ButtonGroup.js.map +1 -0
- package/dist/cssm/components/Calendar/Calendar.css +1 -0
- package/dist/cssm/components/Calendar/Calendar.d.ts +21 -0
- package/dist/cssm/components/Calendar/Calendar.js +134 -0
- package/dist/cssm/components/Calendar/Calendar.js.map +1 -0
- package/dist/cssm/components/CalendarDay/CalendarDay.css +1 -0
- package/dist/cssm/components/CalendarDay/CalendarDay.d.ts +22 -0
- package/dist/cssm/components/CalendarDay/CalendarDay.js +92 -0
- package/dist/cssm/components/CalendarDay/CalendarDay.js.map +1 -0
- package/dist/cssm/components/CalendarDays/CalendarDays.css +1 -0
- package/dist/cssm/components/CalendarDays/CalendarDays.d.ts +22 -0
- package/dist/cssm/components/CalendarDays/CalendarDays.js +95 -0
- package/dist/cssm/components/CalendarDays/CalendarDays.js.map +1 -0
- package/dist/cssm/components/CalendarHeader/CalendarHeader.css +1 -0
- package/dist/cssm/components/CalendarHeader/CalendarHeader.d.ts +16 -0
- package/dist/cssm/components/CalendarHeader/CalendarHeader.js +119 -0
- package/dist/cssm/components/CalendarHeader/CalendarHeader.js.map +1 -0
- package/dist/cssm/components/CalendarRange/CalendarRange.css +1 -0
- package/dist/cssm/components/CalendarRange/CalendarRange.d.ts +16 -0
- package/dist/cssm/components/CalendarRange/CalendarRange.js +197 -0
- package/dist/cssm/components/CalendarRange/CalendarRange.js.map +1 -0
- package/dist/cssm/components/CalendarTime/CalendarTime.css +1 -0
- package/dist/cssm/components/CalendarTime/CalendarTime.d.ts +11 -0
- package/dist/cssm/components/CalendarTime/CalendarTime.js +74 -0
- package/dist/cssm/components/CalendarTime/CalendarTime.js.map +1 -0
- package/dist/cssm/components/Checkbox/Checkbox.js +1 -4
- package/dist/cssm/components/Checkbox/Checkbox.js.map +1 -1
- package/dist/cssm/components/Chip/Chip.js +1 -3
- package/dist/cssm/components/Chip/Chip.js.map +1 -1
- package/dist/cssm/components/ChipsSelect/ChipsSelect.d.ts +1 -2
- package/dist/cssm/components/ChipsSelect/ChipsSelect.js +4 -7
- package/dist/cssm/components/ChipsSelect/ChipsSelect.js.map +1 -1
- package/dist/cssm/components/ConfigProvider/ConfigProvider.d.ts +4 -0
- package/dist/cssm/components/ConfigProvider/ConfigProvider.js +36 -20
- package/dist/cssm/components/ConfigProvider/ConfigProvider.js.map +1 -1
- package/dist/cssm/components/ConfigProvider/ConfigProviderContext.d.ts +0 -7
- package/dist/cssm/components/ConfigProvider/ConfigProviderContext.js +2 -3
- package/dist/cssm/components/ConfigProvider/ConfigProviderContext.js.map +1 -1
- package/dist/cssm/components/ContentCard/ContentCard.js +3 -5
- package/dist/cssm/components/ContentCard/ContentCard.js.map +1 -1
- package/dist/cssm/components/Counter/Counter.js +2 -2
- package/dist/cssm/components/Counter/Counter.js.map +1 -1
- package/dist/cssm/components/CustomScrollView/CustomScrollView.d.ts +1 -1
- package/dist/cssm/components/CustomScrollView/CustomScrollView.js.map +1 -1
- package/dist/cssm/components/CustomSelect/CustomSelect.css +1 -1
- package/dist/cssm/components/CustomSelect/CustomSelect.d.ts +10 -1
- package/dist/cssm/components/CustomSelect/CustomSelect.js +44 -15
- package/dist/cssm/components/CustomSelect/CustomSelect.js.map +1 -1
- package/dist/cssm/components/CustomSelectDropdown/CustomSelectDropdown.css +1 -1
- package/dist/cssm/components/CustomSelectDropdown/CustomSelectDropdown.d.ts +4 -1
- package/dist/cssm/components/CustomSelectDropdown/CustomSelectDropdown.js +14 -5
- package/dist/cssm/components/CustomSelectDropdown/CustomSelectDropdown.js.map +1 -1
- package/dist/cssm/components/CustomSelectOption/CustomSelectOption.js +2 -4
- package/dist/cssm/components/CustomSelectOption/CustomSelectOption.js.map +1 -1
- package/dist/cssm/components/DateInput/DateInput.css +1 -0
- package/dist/cssm/components/DateInput/DateInput.d.ts +12 -0
- package/dist/cssm/components/DateInput/DateInput.js +262 -0
- package/dist/cssm/components/DateInput/DateInput.js.map +1 -0
- package/dist/cssm/components/DateRangeInput/DateRangeInput.css +1 -0
- package/dist/cssm/components/DateRangeInput/DateRangeInput.d.ts +18 -0
- package/dist/cssm/components/DateRangeInput/DateRangeInput.js +282 -0
- package/dist/cssm/components/DateRangeInput/DateRangeInput.js.map +1 -0
- package/dist/cssm/components/Div/Div.css +1 -1
- package/dist/cssm/components/Div/Div.d.ts +1 -2
- package/dist/cssm/components/Div/Div.js +1 -3
- package/dist/cssm/components/Div/Div.js.map +1 -1
- package/dist/cssm/components/Footer/Footer.js +1 -3
- package/dist/cssm/components/Footer/Footer.js.map +1 -1
- package/dist/cssm/components/FormField/FormField.css +1 -1
- package/dist/cssm/components/FormItem/FormItem.js +1 -4
- package/dist/cssm/components/FormItem/FormItem.js.map +1 -1
- package/dist/cssm/components/FormStatus/FormStatus.js +2 -7
- package/dist/cssm/components/FormStatus/FormStatus.js.map +1 -1
- package/dist/cssm/components/Group/Group.js +2 -4
- package/dist/cssm/components/Group/Group.js.map +1 -1
- package/dist/cssm/components/Header/Header.js +7 -20
- package/dist/cssm/components/Header/Header.js.map +1 -1
- package/dist/cssm/components/HorizontalCell/HorizontalCell.js +3 -8
- package/dist/cssm/components/HorizontalCell/HorizontalCell.js.map +1 -1
- package/dist/cssm/components/IconButton/IconButton.d.ts +1 -1
- package/dist/cssm/components/InfoRow/InfoRow.js +1 -2
- package/dist/cssm/components/InfoRow/InfoRow.js.map +1 -1
- package/dist/cssm/components/InputLike/InputLike.css +1 -0
- package/dist/cssm/components/InputLike/InputLike.d.ts +10 -0
- package/dist/cssm/components/InputLike/InputLike.js +53 -0
- package/dist/cssm/components/InputLike/InputLike.js.map +1 -0
- package/dist/cssm/components/InputLike/InputLikeDivider.css +1 -0
- package/dist/cssm/components/InputLike/InputLikeDivider.d.ts +3 -0
- package/dist/cssm/components/InputLike/InputLikeDivider.js +14 -0
- package/dist/cssm/components/InputLike/InputLikeDivider.js.map +1 -0
- package/dist/cssm/components/LocaleProviderContext/LocaleProviderContext.d.ts +2 -0
- package/dist/cssm/components/LocaleProviderContext/LocaleProviderContext.js +3 -0
- package/dist/cssm/components/LocaleProviderContext/LocaleProviderContext.js.map +1 -0
- package/dist/cssm/components/ModalPage/ModalPage.js +4 -5
- package/dist/cssm/components/ModalPage/ModalPage.js.map +1 -1
- package/dist/cssm/components/Pagination/Pagination.css +1 -0
- package/dist/cssm/components/Pagination/Pagination.d.ts +42 -0
- package/dist/cssm/components/Pagination/Pagination.js +130 -0
- package/dist/cssm/components/Pagination/Pagination.js.map +1 -0
- package/dist/cssm/components/PanelHeaderBack/PanelHeaderBack.d.ts +1 -1
- package/dist/cssm/components/PanelHeaderContent/PanelHeaderContent.js +1 -3
- package/dist/cssm/components/PanelHeaderContent/PanelHeaderContent.js.map +1 -1
- package/dist/cssm/components/PromoBanner/PromoBanner.js +1 -5
- package/dist/cssm/components/PromoBanner/PromoBanner.js.map +1 -1
- package/dist/cssm/components/Radio/Radio.js +1 -4
- package/dist/cssm/components/Radio/Radio.js.map +1 -1
- package/dist/cssm/components/Removable/Removable.js +8 -4
- package/dist/cssm/components/Removable/Removable.js.map +1 -1
- package/dist/cssm/components/RichCell/RichCell.d.ts +3 -2
- package/dist/cssm/components/RichCell/RichCell.js +0 -1
- package/dist/cssm/components/RichCell/RichCell.js.map +1 -1
- package/dist/cssm/components/Select/Select.css +1 -1
- package/dist/cssm/components/Select/Select.d.ts +1 -1
- package/dist/cssm/components/SelectMimicry/SelectMimicry.css +1 -0
- package/dist/cssm/components/SelectMimicry/SelectMimicry.d.ts +5 -1
- package/dist/cssm/components/SelectMimicry/SelectMimicry.js +11 -5
- package/dist/cssm/components/SelectMimicry/SelectMimicry.js.map +1 -1
- package/dist/cssm/components/SimpleCell/SimpleCell.d.ts +1 -1
- package/dist/cssm/components/SimpleCell/SimpleCell.js +0 -1
- package/dist/cssm/components/SimpleCell/SimpleCell.js.map +1 -1
- package/dist/cssm/components/SimpleCheckbox/SimpleCheckbox.d.ts +0 -1
- package/dist/cssm/components/SimpleCheckbox/SimpleCheckbox.js +1 -3
- package/dist/cssm/components/SimpleCheckbox/SimpleCheckbox.js.map +1 -1
- package/dist/cssm/components/Spacing/Spacing.js +2 -2
- package/dist/cssm/components/Spacing/Spacing.js.map +1 -1
- package/dist/cssm/components/SubnavigationButton/SubnavigationButton.js +3 -6
- package/dist/cssm/components/SubnavigationButton/SubnavigationButton.js.map +1 -1
- package/dist/cssm/components/Tappable/Tappable.d.ts +3 -1
- package/dist/cssm/components/Tappable/Tappable.js +10 -11
- package/dist/cssm/components/Tappable/Tappable.js.map +1 -1
- package/dist/cssm/components/TextTooltip/TextTooltip.js +1 -2
- package/dist/cssm/components/TextTooltip/TextTooltip.js.map +1 -1
- package/dist/cssm/components/Tooltip/Tooltip.js +1 -2
- package/dist/cssm/components/Tooltip/Tooltip.js.map +1 -1
- package/dist/cssm/components/Typography/Caption/Caption.css +1 -1
- package/dist/cssm/components/Typography/Caption/Caption.d.ts +8 -4
- package/dist/cssm/components/Typography/Caption/Caption.js +10 -14
- package/dist/cssm/components/Typography/Caption/Caption.js.map +1 -1
- package/dist/cssm/components/Typography/Subhead/Subhead.css +1 -1
- package/dist/cssm/components/Typography/Subhead/Subhead.d.ts +6 -1
- package/dist/cssm/components/Typography/Subhead/Subhead.js +13 -7
- package/dist/cssm/components/Typography/Subhead/Subhead.js.map +1 -1
- package/dist/cssm/components/Typography/Title/Title.d.ts +3 -1
- package/dist/cssm/components/Typography/Title/Title.js +3 -2
- package/dist/cssm/components/Typography/Title/Title.js.map +1 -1
- package/dist/cssm/components/UsersStack/UsersStack.js +2 -4
- package/dist/cssm/components/UsersStack/UsersStack.js.map +1 -1
- package/dist/cssm/components/View/ViewInfinite.d.ts +2 -2
- package/dist/cssm/components/View/ViewInfinite.js +10 -11
- package/dist/cssm/components/View/ViewInfinite.js.map +1 -1
- package/dist/cssm/helpers/typography.d.ts +1 -0
- package/dist/cssm/helpers/typography.js +18 -0
- package/dist/cssm/helpers/typography.js.map +1 -0
- package/dist/cssm/hooks/useBooleanState.d.ts +6 -0
- package/dist/cssm/hooks/useBooleanState.js +27 -0
- package/dist/cssm/hooks/useBooleanState.js.map +1 -0
- package/dist/cssm/hooks/useCalendar.d.ts +18 -0
- package/dist/cssm/hooks/useCalendar.js +64 -0
- package/dist/cssm/hooks/useCalendar.js.map +1 -0
- package/dist/cssm/hooks/useDateInput.d.ts +30 -0
- package/dist/cssm/hooks/useDateInput.js +163 -0
- package/dist/cssm/hooks/useDateInput.js.map +1 -0
- package/dist/cssm/hooks/useKeyboardInputTracker.d.ts +2 -0
- package/dist/cssm/hooks/useKeyboardInputTracker.js +11 -4
- package/dist/cssm/hooks/useKeyboardInputTracker.js.map +1 -1
- package/dist/cssm/hooks/useOrientationChange.d.ts +7 -0
- package/dist/cssm/hooks/useOrientationChange.js +42 -0
- package/dist/cssm/hooks/useOrientationChange.js.map +1 -0
- package/dist/cssm/hooks/usePagination.d.ts +34 -0
- package/dist/cssm/hooks/usePagination.js +67 -0
- package/dist/cssm/hooks/usePagination.js.map +1 -0
- package/dist/cssm/index.d.ts +12 -2
- package/dist/cssm/index.js +11 -3
- package/dist/cssm/index.js.map +1 -1
- package/dist/cssm/lib/calendar.d.ts +14 -0
- package/dist/cssm/lib/calendar.js +111 -0
- package/dist/cssm/lib/calendar.js.map +1 -0
- package/dist/cssm/lib/utils.d.ts +2 -1
- package/dist/cssm/lib/utils.js +3 -0
- package/dist/cssm/lib/utils.js.map +1 -1
- package/dist/cssm/styles/components.css +5 -5
- package/dist/cssm/styles/themes.css +1 -1
- package/dist/cssm/tokenized/index.d.ts +14 -0
- package/dist/cssm/tokenized/index.js +7 -0
- package/dist/cssm/tokenized/index.js.map +1 -1
- package/dist/cssm/unstable/index.d.ts +6 -6
- package/dist/cssm/unstable/index.js +3 -3
- package/dist/cssm/unstable/index.js.map +1 -1
- package/dist/helpers/typography.d.ts +1 -0
- package/dist/helpers/typography.js +18 -0
- package/dist/helpers/typography.js.map +1 -0
- package/dist/hooks/useBooleanState.d.ts +6 -0
- package/dist/hooks/useBooleanState.js +27 -0
- package/dist/hooks/useBooleanState.js.map +1 -0
- package/dist/hooks/useCalendar.d.ts +18 -0
- package/dist/hooks/useCalendar.js +64 -0
- package/dist/hooks/useCalendar.js.map +1 -0
- package/dist/hooks/useDateInput.d.ts +30 -0
- package/dist/hooks/useDateInput.js +163 -0
- package/dist/hooks/useDateInput.js.map +1 -0
- package/dist/hooks/useKeyboardInputTracker.d.ts +2 -0
- package/dist/hooks/useKeyboardInputTracker.js +11 -4
- package/dist/hooks/useKeyboardInputTracker.js.map +1 -1
- package/dist/hooks/useOrientationChange.d.ts +7 -0
- package/dist/hooks/useOrientationChange.js +42 -0
- package/dist/hooks/useOrientationChange.js.map +1 -0
- package/dist/hooks/usePagination.d.ts +34 -0
- package/dist/hooks/usePagination.js +67 -0
- package/dist/hooks/usePagination.js.map +1 -0
- package/dist/index.d.ts +12 -2
- package/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/dist/lib/calendar.d.ts +14 -0
- package/dist/lib/calendar.js +111 -0
- package/dist/lib/calendar.js.map +1 -0
- package/dist/lib/utils.d.ts +2 -1
- package/dist/lib/utils.js +3 -0
- package/dist/lib/utils.js.map +1 -1
- package/dist/tokenized/index.d.ts +14 -0
- package/dist/tokenized/index.js +7 -0
- package/dist/tokenized/index.js.map +1 -1
- package/dist/unstable/index.d.ts +6 -6
- package/dist/unstable/index.js +3 -3
- package/dist/unstable/index.js.map +1 -1
- package/dist/vkui.css +6 -6
- package/dist/vkui.css.map +1 -1
- package/package.json +14 -11
- package/src/components/ActionSheet/ActionSheet.tsx +3 -6
- package/src/components/ActionSheetItem/ActionSheetItem.tsx +3 -11
- package/src/components/Alert/Alert.tsx +3 -7
- package/src/components/Alert/Readme.md +4 -4
- package/src/components/AppRoot/Readme.md +2 -2
- package/src/components/Banner/Banner.tsx +1 -1
- package/src/components/Button/Button.css +26 -1
- package/src/components/Button/Button.tsx +6 -9
- package/src/components/ButtonGroup/ButtonGroup.css +52 -0
- package/src/components/ButtonGroup/ButtonGroup.tsx +48 -0
- package/src/components/ButtonGroup/Readme.md +311 -0
- package/src/components/Calendar/Calendar.css +31 -0
- package/src/components/Calendar/Calendar.tsx +184 -0
- package/src/components/Calendar/Readme.md +124 -0
- package/src/components/CalendarDay/CalendarDay.css +85 -0
- package/src/components/CalendarDay/CalendarDay.tsx +114 -0
- package/src/components/CalendarDays/CalendarDays.css +31 -0
- package/src/components/CalendarDays/CalendarDays.tsx +131 -0
- package/src/components/CalendarHeader/CalendarHeader.css +50 -0
- package/src/components/CalendarHeader/CalendarHeader.tsx +167 -0
- package/src/components/CalendarRange/CalendarRange.css +27 -0
- package/src/components/CalendarRange/CalendarRange.tsx +278 -0
- package/src/components/CalendarRange/Readme.md +85 -0
- package/src/components/CalendarTime/CalendarTime.css +18 -0
- package/src/components/CalendarTime/CalendarTime.tsx +88 -0
- package/src/components/Checkbox/Checkbox.tsx +2 -9
- package/src/components/Chip/Chip.tsx +2 -8
- package/src/components/ChipsSelect/ChipsSelect.tsx +6 -7
- package/src/components/ConfigProvider/ConfigProvider.tsx +36 -18
- package/src/components/ConfigProvider/ConfigProviderContext.tsx +9 -13
- package/src/components/ContentCard/ContentCard.tsx +3 -10
- package/src/components/Counter/Counter.tsx +2 -2
- package/src/components/CustomScrollView/CustomScrollView.tsx +1 -1
- package/src/components/CustomSelect/CustomSelect.css +0 -15
- package/src/components/CustomSelect/CustomSelect.tsx +46 -7
- package/src/components/CustomSelectDropdown/CustomSelectDropdown.css +13 -1
- package/src/components/CustomSelectDropdown/CustomSelectDropdown.tsx +12 -3
- package/src/components/CustomSelectOption/CustomSelectOption.tsx +3 -7
- package/src/components/CustomSelectOption/Readme.md +1 -1
- package/src/components/DateInput/DateInput.css +20 -0
- package/src/components/DateInput/DateInput.tsx +317 -0
- package/src/components/DateInput/Readme.md +116 -0
- package/src/components/DateRangeInput/DateRangeInput.css +16 -0
- package/src/components/DateRangeInput/DateRangeInput.tsx +350 -0
- package/src/components/DateRangeInput/Readme.md +96 -0
- package/src/components/Div/Div.css +1 -8
- package/src/components/Div/Div.tsx +2 -5
- package/src/components/Footer/Footer.tsx +2 -8
- package/src/components/Footer/Readme.md +1 -1
- package/src/components/FormField/FormField.css +33 -0
- package/src/components/FormItem/FormItem.tsx +3 -9
- package/src/components/FormStatus/FormStatus.tsx +3 -9
- package/src/components/Gallery/Readme.md +1 -1
- package/src/components/Group/Group.tsx +2 -4
- package/src/components/Header/Header.tsx +8 -11
- package/src/components/HorizontalCell/HorizontalCell.tsx +4 -12
- package/src/components/InfoRow/InfoRow.tsx +1 -1
- package/src/components/InputLike/InputLike.css +25 -0
- package/src/components/InputLike/InputLike.tsx +72 -0
- package/src/components/InputLike/InputLikeDivider.css +4 -0
- package/src/components/InputLike/InputLikeDivider.tsx +12 -0
- package/src/components/LocaleProviderContext/LocaleProviderContext.tsx +5 -0
- package/src/components/ModalPage/ModalPage.tsx +10 -4
- package/src/components/Pagination/Pagination.css +62 -0
- package/src/components/Pagination/Pagination.tsx +196 -0
- package/src/components/Pagination/Readme.md +110 -0
- package/src/components/PanelHeaderContent/PanelHeaderContent.tsx +2 -8
- package/src/components/PopoutWrapper/Readme.md +1 -1
- package/src/components/Popper/Readme.md +1 -1
- package/src/components/PromoBanner/PromoBanner.tsx +3 -5
- package/src/components/Radio/Radio.tsx +2 -9
- package/src/components/Removable/Removable.tsx +9 -7
- package/src/components/RichCell/Readme.md +4 -4
- package/src/components/RichCell/RichCell.tsx +3 -6
- package/src/components/RichTooltip/Readme.md +1 -1
- package/src/components/Select/Select.css +5 -0
- package/src/components/SelectMimicry/SelectMimicry.css +10 -0
- package/src/components/SelectMimicry/SelectMimicry.tsx +13 -3
- package/src/components/SimpleCell/SimpleCell.tsx +1 -5
- package/src/components/SimpleCheckbox/SimpleCheckbox.tsx +0 -3
- package/src/components/Spacing/Spacing.tsx +2 -2
- package/src/components/SubnavigationButton/SubnavigationButton.tsx +3 -9
- package/src/components/Tabbar/Readme.md +1 -1
- package/src/components/Tappable/Tappable.tsx +12 -3
- package/src/components/TextTooltip/Readme.md +1 -1
- package/src/components/TextTooltip/TextTooltip.tsx +2 -6
- package/src/components/Tooltip/Tooltip.tsx +2 -6
- package/src/components/Typography/Caption/Caption.css +61 -19
- package/src/components/Typography/Caption/Caption.tsx +24 -15
- package/src/components/Typography/Caption/Readme.md +26 -48
- package/src/components/Typography/Subhead/Readme.md +18 -24
- package/src/components/Typography/Subhead/Subhead.css +22 -7
- package/src/components/Typography/Subhead/Subhead.tsx +25 -7
- package/src/components/Typography/Title/Title.tsx +6 -3
- package/src/components/UsersStack/Readme.md +1 -1
- package/src/components/UsersStack/UsersStack.tsx +3 -4
- package/src/components/View/Readme.md +1 -1
- package/src/components/View/ViewInfinite.tsx +3 -4
- package/src/helpers/typography.ts +24 -0
- package/src/hooks/useBooleanState.ts +19 -0
- package/src/hooks/useCalendar.ts +78 -0
- package/src/hooks/useDateInput.ts +213 -0
- package/src/hooks/useKeyboardInputTracker.ts +25 -8
- package/src/hooks/useOrientationChange.ts +39 -0
- package/src/hooks/usePagination.ts +96 -0
- package/src/index.ts +12 -2
- package/src/lib/calendar.ts +123 -0
- package/src/lib/utils.ts +4 -1
- package/src/styles/components.css +14 -0
- package/src/tokenized/index.ts +21 -0
- package/src/unstable/index.ts +6 -6
- package/postcss.config.js +0 -54
package/.cache/.stylelintcache
CHANGED
|
@@ -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"]
|