-
Notifications
You must be signed in to change notification settings - Fork 184
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
fix(CustomSelect/DateInput): placement configuration #8332
fix(CustomSelect/DateInput): placement configuration #8332
Conversation
Sometimes if space in horizonal axis is enough custom select can try to put dropdown on the right/left side, which is not correct for custom select design and looks weird It sholdn't allow to place dropdown on perpendicular to mainAxis axis
Calendar popper can change height durin month switching, which leads to jumping of calendar from one place to another. The best solution is to keep latest best position to allow user to keep switching months without searching for calendar next time it changes position.
size-limit report 📦
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. |
e2e tests |
👀 Docs deployed
Commit b84c64b |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #8332 +/- ##
==========================================
- Coverage 95.46% 95.44% -0.02%
==========================================
Files 406 409 +3
Lines 11610 11634 +24
Branches 3844 3850 +6
==========================================
+ Hits 11083 11104 +21
- Misses 527 530 +3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
❌ PatchНе удалось автоматически применить исправление на ветке 7.1-stable.
Чтобы изменение попало в ветку 7.1-stable, выполните следующие действия:
git stash # опционально
git fetch origin 7.1-stable
git checkout -b patch/pr8332 origin/7.1-stable
git cherry-pick --no-commit df5e607794b93b2b88df9ef5d17fe30cbdb06423
git checkout HEAD **/__image_snapshots__/*.png
git diff --quiet HEAD || git commit --no-verify --no-edit
git push --set-upstream origin patch/pr8332
gh pr create --base 7.1-stable --title "patch: pr8332" --body "- patch #8332" |
☝️ Проигнорирую ошибку применения патча, так как планируем выпустить в минорном релизе. |
✅ v7.2.0 🎉 |
Описание
CustomSelect:
Было замечено, что при наличии переноса в опции, и при недостатке места по вертикали, CustomSelect может отрендерить список сбоку от инпута. По дизайну у нас нету такой поддержки, и стили выглядят странно.

Пример кода
В качестве решения отключил возможность рендерить дропдаун сбоку от инпута. Только сверху или снизу.
Кроме того, заметил, что у нас существует конфликт между flip и shift middlewares. Добавил crossAxis: false во flip, чтобы при использовании вместе с shift() приоритом был shift, а потом уже в крайнем случае flip.
DateInput/DateRangeInput:
Календарь меняет свою высоту в зависимости от количества дней в месяце.
При переключении месяцев календарь может прыгать, позициионируясь то сверху, то снизу от инпута.
Это очень не удобно, если требуется продолжать перекючать месяцы.
Допустимо, чтобы календарь один раз менял свою позицию, запомнил свою последнюю удачную и больше не прыгал.
Screen.Recording.2025-03-06.at.18.55.10.mov
Пример кода:
В качестве решения мы запонимаем последнюю удачную позицию в стейте.
Release notes
Исправления