Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Некорректная работа CalendarMonthOnlyView внутри BottomSheet #1180

Open
ostroga1985 opened this issue Apr 24, 2024 · 0 comments
Assignees

Comments

@ostroga1985
Copy link

Опишите проблему

При встраивании CalendarMonthOnlyView в BottomSheet не работает виртуализация календаря
image

Шаги для воспроизведения

  1. Отрендерить
render(() => {
    const [value, setValue] = React.useState();

    const headerStyle = {
        top: 0,
        left: 0,
        position: 'fixed',
        boxSizing: 'border-box',
        zIndex: 2,
        width: '100%',
        padding: 'var(--gap-s) var(--gap-xl)',
        background: 'var(--color-light-bg-primary)',
        borderBottom: '1px solid var(--color-light-graphic-tertiary)',
    };

    return (
        <BottomSheet title='Title' stickyHeader={true} open={true}>
            <div style={headerStyle}>
                <CalendarMonthOnlyViewHeader />
            </div>
            <Gap size='m' direction='vertical' />
            <CalendarMonthOnlyView
                value={value}
                onChange={setValue}
                showCurrentYearSelector={false}
            />
        </BottomSheet>
    );
});

Ожидаемое поведение

При встраивании CalendarMonthOnlyView в BottomSheet виртуализация календаря работает корректно

Десктоп (если данных нет оставьте блок пустым):

  • OS: MacOS
  • Browser: Google Chrome
  • Version: 123.0.6312.124

Смартфон (если данных нет оставьте блок пустым):

Дополнительная информация

Дополнительная информация

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants