-
Notifications
You must be signed in to change notification settings - Fork 186
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(useFloatingWithInteractions): improve restoreFocus, add restoreFocus to anchor element #7806
base: master
Are you sure you want to change the base?
fix(useFloatingWithInteractions): improve restoreFocus, add restoreFocus to anchor element #7806
Conversation
…cus to anchor element
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 5b9d4ea |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #7806 +/- ##
==========================================
- Coverage 95.34% 95.29% -0.05%
==========================================
Files 377 377
Lines 11054 11075 +21
Branches 3673 3682 +9
==========================================
+ Hits 10539 10554 +15
- Misses 515 521 +6
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.
👍
# Conflicts: # packages/vkui/src/components/FocusTrap/FocusTrap.tsx
Описание
Нужно добавить возможность настройки элемента, куда будет возвращаться фокус после закрытия поповера по ховеру.
Изменения
В
Popover
иTooltip
расширил тип свойстваrestoreFocus
. Теперь помимоboolean
он может принимать следующие значения:'latest-active
' - означает, что фокус будет возвращен на последний активный до открытия всплывающего окна элемент. По сути это поведение по умолчанию'anchor-element'
- означает, что фокус будет возвращен на якорный элементHTMLElement
- можно использовать ссылку на определенный html элементТакже изменения затронули компонент
FocusTrap
:restoreFocus
можно прокинуть, помимо функции, возвращающейboolean
, функцию, возвращающуюHTMLElement
(() => boolean | HTMLElement
).Теперь, чтобы поправить баг описанный в задаче необходимо для
Popover
сtrigger="hover"
прокинутьrestoreFocus="anchor-element"
Release notes
Улучшения
restoreFocus
доboolean | 'latest-active' | 'anchor-element' | HTMLElement
для указания на какой элемент будет возвращен фокус после закрытияPopover
. Полезно для кейса сPopover
сtrigger="hover"
, при установкеrestoreFocus="anchor-element"
фокус всегда будет возвращаться в якорный элемент