-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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(material/chips): navigate between rows on up/down arrow #29364
Conversation
Currently the up/down arrows behave in the same way as left/right, however that's incorrect based on [the reference implementation](https://www.w3.org/WAI/ARIA/apg/patterns/grid/examples/layout-grids/#ex2_label) which shows them navigating between the rows. These changes update the logic in the chip grid so that it matches the expected behavior. Fixes angular#29359.
Deployed dev-app for 528fae4 to: https://ng-dev-previews-comp--pr-angular-components-29364-dev-t5zbi197.web.app Note: As new commits are pushed to this pull request, this link is updated after the preview is rebuilt. |
Weird that UP/DOWN goes through the remove buttons if those are focused, but I see that's what the reference does |
Currently the up/down arrows behave in the same way as left/right, however that's incorrect based on [the reference implementation](https://www.w3.org/WAI/ARIA/apg/patterns/grid/examples/layout-grids/#ex2_label) which shows them navigating between the rows. These changes update the logic in the chip grid so that it matches the expected behavior. Fixes #29359. (cherry picked from commit 0519174)
Currently the up/down arrows behave in the same way as left/right, however that's incorrect based on [the reference implementation](https://www.w3.org/WAI/ARIA/apg/patterns/grid/examples/layout-grids/#ex2_label) which shows them navigating between the rows. These changes update the logic in the chip grid so that it matches the expected behavior. Fixes #29359. (cherry picked from commit 0519174)
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Currently the up/down arrows behave in the same way as left/right, however that's incorrect based on the reference implementation which shows them navigating between the rows.
These changes update the logic in the chip grid so that it matches the expected behavior.
Fixes #29359.