-
Notifications
You must be signed in to change notification settings - Fork 185
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(DateInput): fix open calendar #6446
Conversation
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. Latest deployment of this branch, based on commit 7263bb7:
|
e2e tests |
👀 Docs deployed
Commit 7263bb7 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #6446 +/- ##
==========================================
+ Coverage 81.98% 82.00% +0.02%
==========================================
Files 327 327
Lines 10146 10149 +3
Branches 3416 3418 +2
==========================================
+ Hits 8318 8323 +5
+ Misses 1828 1826 -2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
Интересно.
Я точно также сначала хотел решить прошлую проблему с кнопкой "Готово" в #6312, но потом решил иначе, потому что посчитал что closeCalendar
тут добавлен специально, чтобы фокус оставался на инпуте при закрытии попапа, для доступности. Тогда фокус сбрасывается если пользователь кликнул снаружи.
Но, видимо, у нас ещё где-то проблема, раз этого было для конкретно этого случая недостаточно.
В то же время я не против этого решения сейчас, потому что при выборе даты мы попап также закрываем, убирая фокус, то есть тут если и улучшать доступность, то для всех случаев, а не только при клике на кнопку "Готово".
Описание
По кнопке "Готово" вызывалось просто закрытие календаря без сброса фокуса. В итоге "невидимый" фокус был и не давал открыть календарь повторно.
Изменения
Вызываем
removeFocusFromField
, чтобы сбрасывались все фокусы и закрывался календарь.Ещё добавила
autoUpdateOnTargetResize
, чтобы избавиться от такого:2024-01-24.23.48.32.mov