-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Add aria-expanded to ButtonWithDropdownMenu for screen reader accessibility #86499
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
ae60c97
Add aria-expanded to ButtonWithDropdownMenu for screen reader accessi…
MelvinBot 213a71b
Merge main into claude-fixAccordionButtonA11yState to resolve conflicts
MelvinBot eda70c6
Remove stale 034 patch entry and renumber 035 to 034
MelvinBot 175103f
Include upstream issue link and remove extra blank line in patch details
MelvinBot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...eact-native/react-native+0.83.1+035+fix-fabric-collapsed-accessibility-announcement.patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| diff --git a/node_modules/react-native/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm b/node_modules/react-native/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm | ||
| --- a/node_modules/react-native/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm | ||
| +++ b/node_modules/react-native/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm | ||
| @@ -1440,9 +1440,16 @@ | ||
| addObject:RCTLocalizedString( | ||
| "mixed", "a checkbox, radio button, or other widget which is both checked and unchecked")]; | ||
| } | ||
| - if (accessibilityState.expanded.value_or(false)) { | ||
| - [valueComponents | ||
| - addObject:RCTLocalizedString("expanded", "a menu, dialog, accordian panel, or other widget which is expanded")]; | ||
| + if (accessibilityState.expanded.has_value()) { | ||
| + if (accessibilityState.expanded.value()) { | ||
| + [valueComponents | ||
| + addObject:RCTLocalizedString( | ||
| + "expanded", "a menu, dialog, accordian panel, or other widget which is expanded")]; | ||
| + } else { | ||
| + [valueComponents | ||
| + addObject:RCTLocalizedString( | ||
| + "collapsed", "a menu, dialog, accordian panel, or other widget which is collapsed")]; | ||
| + } | ||
| } | ||
|
|
||
| if (accessibilityState.busy) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Please create a detailed upstream issue with a minimal reproduction (not this repo), and ideally a pull request as well. We can adjust the compensation accordingly, but I'm unwilling to merge a new patch to React Native without an upstream issue.
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.
Thanks for reviewing! Created an upstream issue: react/react-native#56296. I'll try to open a PR later.
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.
@MelvinBot please include the upstream issue link react/react-native#56296 and remove the extra empty line at L256.
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.
Done — added the upstream issue link (react/react-native#56296) and removed the extra blank line. Pushed in 175103f.
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.
@roryabraham, the upstream issue is still waiting for triage. Should I open a PR now?
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.
I'd say yes you can open a PR
Uh oh!
There was an error while loading. Please reload this page.
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.
PR is open: react/react-native#56430.
Update: PR approved.