We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Need add aria-attributes to HTML code in tabs component.
tabs
role="tablist"
role="tab"
role="tabpanel"
aria-controls
tabpanel
tab
aria-labelledby
aria-selected
Took as a basis - https://www.w3.org/TR/wai-aria-practices-1.1/examples/tabs/tabs-1/tabs.html
The text was updated successfully, but these errors were encountered:
effort1: easy(hours)
Sorry, something went wrong.
feat(tabs): add aria attributes
d58ace2
Add role attribute Add aria-selected attribute Add aria-controls attribute Add aria-labelledby attribute Add aria-label attribute to TabsetConfig Close valor-software#4120
feat(tabs): add aria attributes (#5605)
ef614c0
Add role attribute Add aria-selected attribute Add aria-controls attribute Add aria-labelledby attribute Add aria-label attribute to TabsetConfig Close #4120
Successfully merging a pull request may close this issue.
Need add aria-attributes to HTML code in
tabs
component.role="tablist"
indicates that the element serves as a container for a set of tabsrole="tab"
indicates the element serves as a tab controlrole="tabpanel"
indicates the element serves as a container for tab panel contentaria-controls
refers to thetabpanel
element associated with thetab
aria-labelledby
refers to the tab element that controls the panelaria-selected
indicates the tab control is activated and its associated panel is displayedTook as a basis - https://www.w3.org/TR/wai-aria-practices-1.1/examples/tabs/tabs-1/tabs.html
The text was updated successfully, but these errors were encountered: