Created
November 10, 2023 14:54
-
-
Save vincentorback/60931f5be53dcee52428dbb69f6aed2d to your computer and use it in GitHub Desktop.
Focusable selectors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const not = { | |
inert: ':not([inert]):not([inert] *)', | |
negTabIndex: ':not([tabindex^="-"])', | |
disabled: ':not(:disabled)', | |
} | |
export const FOCUSABLE_SELECTORS = [ | |
`a[href]${not.inert}${not.negTabIndex}`, | |
`area[href]${not.inert}${not.negTabIndex}`, | |
`input:not([type="hidden"]):not([type="radio"])${not.inert}${not.negTabIndex}${not.disabled}`, | |
`input[type="radio"]${not.inert}${not.negTabIndex}${not.disabled}`, | |
`select${not.inert}${not.negTabIndex}${not.disabled}`, | |
`textarea${not.inert}${not.negTabIndex}${not.disabled}`, | |
`button${not.inert}${not.negTabIndex}${not.disabled}`, | |
`details${not.inert} > summary:first-of-type${not.negTabIndex}`, | |
// Discard until Firefox supports `:has()` | |
// See: https://github.com/KittyGiraudel/focusable-selectors/issues/12 | |
// `details:not(:has(> summary))${not.inert}${not.negTabIndex}`, | |
`iframe${not.inert}${not.negTabIndex}`, | |
`audio[controls]${not.inert}${not.negTabIndex}`, | |
`video[controls]${not.inert}${not.negTabIndex}`, | |
`[contenteditable]${not.inert}${not.negTabIndex}`, | |
`[tabindex]${not.inert}${not.negTabIndex}`, | |
].join(',') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment