You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
The tabIndex input for the radio component has been deprecated in favor of using the new tabIndex input on the radio group component. The tabIndex represents the position an element is within tab navigation on the page. (tab navigation is when you press tab or shift+tab and focus shifts between elements on the page). A tabIndex of -1 removed the element from tab navigation entirely.
According to accessibility guidelines, focus on a group of radio elements should only ever focus the currently selected radio button or if one isn't selected, the first/last button depending on the direction navigated from. So the tabIndex of a group of radio buttons has been moved to the radio-group element, since individual tabIndexes do not make sense.
The text was updated successfully, but these errors were encountered:
blackbaud/skyux-forms#2
The
tabIndex
input for the radio component has been deprecated in favor of using the newtabIndex
input on the radio group component. ThetabIndex
represents the position an element is within tab navigation on the page. (tab navigation is when you press tab or shift+tab and focus shifts between elements on the page). AtabIndex
of -1 removed the element from tab navigation entirely.According to accessibility guidelines, focus on a group of radio elements should only ever focus the currently selected radio button or if one isn't selected, the first/last button depending on the direction navigated from. So the
tabIndex
of a group of radio buttons has been moved to the radio-group element, since individualtabIndex
es do not make sense.The text was updated successfully, but these errors were encountered: