-
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(OnboardingTooltip): a11y #8247
fix(OnboardingTooltip): a11y #8247
Conversation
Move overlay before tooltip base and make it as button to close tooltip on click
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 89b4259 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #8247 +/- ##
==========================================
+ Coverage 95.53% 95.57% +0.03%
==========================================
Files 404 404
Lines 11553 11566 +13
Branches 3836 3841 +5
==========================================
+ Hits 11037 11054 +17
+ Misses 516 512 -4
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.
❤️ ❤️
packages/vkui/src/components/OnboardingTooltip/OnboardingTooltip.tsx
Outdated
Show resolved
Hide resolved
❌ PatchНе удалось автоматически применить исправление на ветке 7.1-stable.
Чтобы изменение попало в ветку 7.1-stable, выполните следующие действия:
git stash # опционально
git fetch origin 7.1-stable
git checkout -b patch/pr8247 origin/7.1-stable
git cherry-pick --no-commit 67b998dbfe7e40137ff93cc2bce9dcf95126e697
git checkout HEAD **/__image_snapshots__/*.png
git diff --quiet HEAD || git commit --no-verify --no-edit
git push --set-upstream origin patch/pr8247
gh pr create --base 7.1-stable --title "patch: pr8247" --body "- patch #8247" |
- Добавил FocuTrap чтобы фокус сразу попадал в OnboradingTooltip для пользователей скринридеров. - Сделал `overlay` прозрачной кнопкой, чтобы можно было по нажатию на неё закрыть `OnboardingTooltip` и передвинул его DOM-дереве перед контентом тултипа, чтобы он не перекрывал весь текст тултипа. - Добавил `role="dialog"` и `aria-modal="true"` чтобы пользователь скринридера не мог выйти за пределы тултипа пока его не закроет. - Добавил warning если title/aria-label/aria-labelledby не заданы
- Добавил FocuTrap чтобы фокус сразу попадал в OnboradingTooltip для пользователей скринридеров. - Сделал `overlay` прозрачной кнопкой, чтобы можно было по нажатию на неё закрыть `OnboardingTooltip` и передвинул его DOM-дереве перед контентом тултипа, чтобы он не перекрывал весь текст тултипа. - Добавил `role="dialog"` и `aria-modal="true"` чтобы пользователь скринридера не мог выйти за пределы тултипа пока его не закроет. - Добавил warning если title/aria-label/aria-labelledby не заданы
Описание
overlay
прозрачной кнопкой, чтобы можно было по нажатию на неё закрытьOnboardingTooltip
и передвинул его DOM-дереве перед контентом тултипа, чтобы он не перекрывал весь текст тултипа.NOTE:⚠️ сейчас текст тултипа можно выделить, прочитать, но также при клике на сам тултип - тултип не закроется. Надо ли на него повесить закрытие по клику? 🤔
role="dialog"
иaria-modal="true"
чтобы пользователь скринридера не мог выйти за пределы тултипа пока его не закроет.Release notes
Исправления
Фокус пользователя зациклен внутри тултипа.
Подложка (overlay) стала прозрачной кнопкой с лэйблом "Закрыть", который можно поменять c помощью свойства
overlayLabel
.title
теперь описывает имя тултипа. Еслиtitle
не задан, то следует задатьaria-label
.