Tabs a11y: Need way to pass element to right of tablist while keeping outside of role="tablist" element. #6217
Open
Description
Feature request
Tabs: Need way to pass element to right of tablist while keeping outside of role="tablist"
element.
For example, on the docs app, this searchbar:
Is currently created like such:
But the issue with this is that the input
element gets put within the element that has role="tablist"
. This is a major accessibility failure, as this input element is not truly part of the list of tabs; it's a separate component that is adjacent to the list of tabs.
Desired implementation would be something like:
With the expected result being visually the same.