The tabbed_content component does not respond to ArrowLeft/ArrowRight keys to switch between tabs, which is required by the ARIA Authoring Practices Guide for the Tabs pattern (APG). Currently only mouse/click interaction works. Fix: add a keydown handler on each tab button that moves focus and activates the previous/next tab on ArrowLeft/ArrowRight. Found in e2e run on PR #437.
The
tabbed_contentcomponent does not respond to ArrowLeft/ArrowRight keys to switch between tabs, which is required by the ARIA Authoring Practices Guide for the Tabs pattern (APG). Currently only mouse/click interaction works. Fix: add akeydownhandler on each tab button that moves focus and activates the previous/next tab on ArrowLeft/ArrowRight. Found in e2e run on PR #437.