-
Notifications
You must be signed in to change notification settings - Fork 2.9k
fix(react-infobutton): Add aria-owns to InfoLabel #27834
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(react-infobutton): Add aria-owns to InfoLabel #27834
Conversation
|
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 7b50230:
|
Asset size changesSize Auditor did not detect a change in bundle size for any component! Baseline commit: 989ead3c07d6df61441f9c6ca8102634e40dc48d (build) |
📊 Bundle size report
Unchanged fixtures
|
Perf Analysis (
|
| Scenario | Render type | Master Ticks | PR Ticks | Iterations | Status |
|---|---|---|---|---|---|
| FluentProviderWithTheme | virtual-rerender-with-unmount | 121 | 133 | 10 | Possible regression |
All results
| Scenario | Render type | Master Ticks | PR Ticks | Iterations | Status |
|---|---|---|---|---|---|
| Avatar | mount | 858 | 864 | 5000 | |
| Button | mount | 461 | 465 | 5000 | |
| Field | mount | 1542 | 1589 | 5000 | |
| FluentProvider | mount | 1084 | 1121 | 5000 | |
| FluentProviderWithTheme | mount | 131 | 147 | 10 | |
| FluentProviderWithTheme | virtual-rerender | 108 | 119 | 10 | |
| FluentProviderWithTheme | virtual-rerender-with-unmount | 121 | 133 | 10 | Possible regression |
| InfoButton | mount | 24 | 23 | 5000 | |
| MakeStyles | mount | 1353 | 1363 | 50000 | |
| Persona | mount | 2342 | 2353 | 5000 | |
| SpinButton | mount | 1917 | 1854 | 5000 |
🕵 fluentuiv9 No visual regressions between this PR and main |
packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabel.ts
Outdated
Show resolved
Hide resolved
packages/react-components/react-infobutton/stories/Infobutton/InfoButtonBestPractices.md
Outdated
Show resolved
Hide resolved
behowell
left a comment
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.
One correctness fix (need to check root['aria-owns'] instead), and two optional suggestions. Otherwise looks good, thanks!
packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabel.ts
Outdated
Show resolved
Hide resolved
packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabel.ts
Outdated
Show resolved
Hide resolved
packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabel.ts
Outdated
Show resolved
Hide resolved
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
|
🎉 Handy links: |
* master: (24 commits) chore(react-tabster): upgrade tabster to v4.4.2 (microsoft#27540) feat(react-tags): Add TagGroup with context (microsoft#27886) applying package updates fix(react-infobutton): Add aria-owns to InfoLabel (microsoft#27834) fix(recipes-react-components): Add a FluentProvider to the local storybook (microsoft#27746) chore: update RFC template (microsoft#27880) applying package updates feat: implement Toaster offset (microsoft#27854) feat(react-drawer): create DrawerFooter component (microsoft#27583) Make getKey and selection props mutually exclusive (microsoft#24048) Added MIGRATION.md to the Breadcrumb (microsoft#27846) update Github CODEOWNERS file (microsoft#27849) feat(react-tags): make basic Tag a button instead of div (microsoft#27858) chore: add test-ssr script to v9 packages (microsoft#27690) chore(react-tree): exports TreeItemAside unstable (microsoft#27856) bugfix(react-dialog): removes unnecessary grid gaps (microsoft#27845) applying package updates fix(react-textarea): Don't remove outline when filled and disabled and apply correct disabled color to text (microsoft#27837) feat: Implement limit for toast stacking (microsoft#27848) Update README.md for fluent 2 theme to include import instructions (microsoft#27847) ...
* feat/drawer-header: (24 commits) chore(react-tabster): upgrade tabster to v4.4.2 (microsoft#27540) feat(react-tags): Add TagGroup with context (microsoft#27886) applying package updates fix(react-infobutton): Add aria-owns to InfoLabel (microsoft#27834) fix(recipes-react-components): Add a FluentProvider to the local storybook (microsoft#27746) chore: update RFC template (microsoft#27880) applying package updates feat: implement Toaster offset (microsoft#27854) feat(react-drawer): create DrawerFooter component (microsoft#27583) Make getKey and selection props mutually exclusive (microsoft#24048) fix: move style override to outside the component Added MIGRATION.md to the Breadcrumb (microsoft#27846) update Github CODEOWNERS file (microsoft#27849) feat(react-tags): make basic Tag a button instead of div (microsoft#27858) chore: add test-ssr script to v9 packages (microsoft#27690) chore(react-tree): exports TreeItemAside unstable (microsoft#27856) bugfix(react-dialog): removes unnecessary grid gaps (microsoft#27845) applying package updates fix(react-textarea): Don't remove outline when filled and disabled and apply correct disabled color to text (microsoft#27837) feat: Implement limit for toast stacking (microsoft#27848) ...

Previous Behavior
aria-ownsis not set, therefore the popup is not linked to the trigger.New Behavior
aria-ownsis now set by InfoLabel and a Do has been added advising to addaria-ownsto the parent of the trigger.