* Commit updated Javascript packages * Bump preact from 10.5.4 to 10.5.5 in /build/javascript (#265) * Trying a new github workflow to install javascript packages * Bump tailwindcss from 1.9.2 to 1.9.4 in /build/javascript (#266) Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 1.9.2 to 1.9.4. - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v1.9.2...v1.9.4) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Commit updated Javascript packages * Bump preact from 10.5.4 to 10.5.5 in /build/javascript Bumps [preact](https://github.com/preactjs/preact) from 10.5.4 to 10.5.5. - [Release notes](https://github.com/preactjs/preact/releases) - [Commits](https://github.com/preactjs/preact/compare/10.5.4...10.5.5) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Owncast <owncast@owncast.online> * Bump @justinribeiro/lite-youtube in /build/javascript Bumps [@justinribeiro/lite-youtube](https://github.com/justinribeiro/lite-youtube) from 0.9.0 to 0.9.1. - [Release notes](https://github.com/justinribeiro/lite-youtube/releases) - [Commits](https://github.com/justinribeiro/lite-youtube/commits) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Owncast <owncast@owncast.online> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com>
tabbable
Returns an array of all* tabbable DOM nodes within a containing node. (* "all" has some necessary caveats, which you'll learn about by reading below.)
The following are considered tabbable:
<button>s<input>s<select>s<textarea>s<a>s withhreforxlink:hrefattributes<audio>s and<videos>s withcontrolsattributes[contenteditable]elements- anything with a non-negative
tabindex
Any of the above will not be considered tabbable, though, if any of the following are also true about it:
- negative
tabindex disabled- either the node itself or an ancestor of it is hidden via
display: noneorvisibility: hidden - it's an
<input type="radio">and a different radio in its group ischecked
If you think a node should be included in your array of tabbables but it's not, all you need to do is add tabindex="0" to deliberately include it. (Or if it is in your array but you don't want it, you can add tabindex="-1" to deliberately exclude it.) This will also result in more consistent cross-browser behavior. For information about why your special node might not be included, see "More details", below.
Goals
- Accurate (or, as accurate as possible & reasonable)
- No dependencies
- Small
- Fast
Browser Support
Basically IE9+.
Why? It uses Element.querySelectorAll() and Window.getComputedStyle().
Installation
npm install tabbable
Dependencies: none.
You'll need to be compiling CommonJS (via browserify or webpack).
API
tabbable
tabbable(rootNode, [options])
Returns an array of ordered tabbable node within the rootNode.
Summary of ordering principles:
- First include any nodes with positive
tabindexattributes (1 or higher), ordered by ascendingtabindexand source order. - Then include any nodes with a zero
tabindexand any element that by default receives focus (listed above) and does not have a positivetabindexset, in source order.
rootNode
Type: Node. Required.
options
includeContainer
Type: boolean. Default: false.
If set to true, rootNode will be included in the returned tabbable node array, if rootNode is tabbable.
tabbable.isTabbable
tabbable.isTabbable(node)
Returns a boolean indicating whether the provided node is considered tabbable.
tabbable.isFocusable
tabbable.isFocusable(node)
Returns a boolean indicating whether the provided node is considered focusable.
All tabbable elements are focusable, but not all focusable elements are tabbable. For example, elements with tabindex="-1" are focusable but not tabbable.
More details
- Tabbable tries to identify elements that are reliably tabbable across (not dead) browsers. Browsers are stupidly inconsistent in their behavior, though — especially for edge-case elements like
<object>and<iframe>— so this means some elements that you can tab to in some browsers will be left out of the results. (To learn more about that stupid inconsistency, see this amazing table). To provide better consistency across browsers and ensure the elements you want in your tabbables list show up there, try addingtabindex="0"to edge-case elements that Tabbable ignores. - (Exemplifying the above ^^:) The tabbability of
<iframe>s,<embed>s,<object>s,<summary>s, and<svg>s is inconsistent across browsers, so if you need an accurate read on one of these elements you should try giving it atabindex. (You'll also need to pay attention to thefocusableattribute on SVGs in IE & Edge.) But you also might not be able to get an accurate read — so you should avoid relying on it. - Radio groups have some edge cases, which you can avoid by always having a
checkedone in each group (and that is what you should usually do anyway). If there is nocheckedradio in the radio group, all of the radios will be considered tabbable. (Some browsers do this, otherwise don't — there's not consistency.) - If you're thinking, "Why not just use the right
querySelectorAll?", you may be on to something ... but, as with most "just" statements, you're probably not. For example, a simplequerySelectorAllapproach will not figure out whether an element is hidden, and therefore not actually tabbable. (That said, if you do think Tabbable can be simplified or otherwise improved, I'd love to hear your idea.) - jQuery UI's
:tabbableselector ignores elements with height and width of0. I'm not sure why — because I've found that I can still tab to those elements. So I kept them in. Only elements hidden withdisplay: noneorvisibility: hiddenare left out. - Although Tabbable tries to deal with positive tabindexes, you should not use positive tabindexes. Accessibility experts seem to be in (rare) unanimous and clear consent about this: rely on the order of elements in the document.
- Safari on Mac OS X does not Tab to
<a>elements by default: you have to change a setting to get the standard behavior. Tabbable does not know whether you've changed that setting or not, so it will include<a>elements in its list.
Feedback and contributions more than welcome!