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.
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
Global Styles: add accessible label to Back button #35325
Global Styles: add accessible label to Back button #35325
Changes from 1 commit
60055e6
af9a939
a528e22
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Should this be
label
prop like theButton
component. I also wonder why it's not taking the "content" as a label like it's supposed to do by default for buttons.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.
The
Item
component renders a vanilla HTMLbutton
(and not a WordPressButton
— sorry if I caused any confusion in a previous comment where I stated the opposite).I believe it is, but in the case of the back buttons in the Global Styles sidebar, these buttons only have an icon as their content (no human-readable text)
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.
Got it Thanks, should we use a
label
prop to align withButton
or keep the rawaria-label
? I think it's a bit mixed right now in the different components we have and not sure what's the best path forward (maybe a small preference forlabel
in components where it's a generic use-case for compatibility with mobile).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 agree that it would be nice to have a less mixed approach to how we pass and name props related to labels.
Given the fact that
Item
renders a HTMLbutton
, at the moment we have to pass thearia-label
prop toItem
(sincelabel
is not a standard HTML attribute).Maybe a way to improve the situation would be to rename the
label
prop on theNavigationButton
component toaria-label
? I could also remove the changes from theNavigationButton
and pass thearia-label
attribute directly from theScreenHeader
component:Separately from this PR, we could consider rendering a WordPress
Button
instead of a HTMLbutton
insideItem
, which could help to make our APIs a bit more coherentThere 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 went ahead and applied that suggested change in
a528e22
(#35325) — which greatly simplifies the code changes in this PR