Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
makeup-roving-tabindex
Advanced tools
Implements a roving tab index on given collection of elements
This module is still in an experimental state, until it reaches v1 you must consider all minor releases as breaking changes.
import * as RovingTabindex from "makeup-roving-tabindex";
// get an element reference
const widgetEl = document.querySelector(".widget");
// create a roving tabindex instance on the element
const rovingTabindex = RovingTabindex.createLinear(widgetEl, "li");
// listen for events (optional)
widgetEl.addEventListener("rovingTabindexChange", function (e) {
// console.log(e.detail);
});
Markup before:
<div class="widget">
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</div>
Markup after:
<div class="widget">
<ul>
<li tabindex="0">Item 1</li>
<li tabindex="-1">Item 2</li>
<li tabindex="-1">Item 3</li>
</ul>
</div>
autoInit
: declares the initial roving tabindex item (default: "interactive"). Possible values are:
autoReset
: declares the roving tabindex item after a reset and/or when keyboard focus exits the widget (default: "current"). Possible values are:
wrap
: specify whether arrow keys should wrap/loop (default: false)axis
: specify 'x' for left/right arrow keys, 'y' for up/down arrow keys, or 'both' (default: 'both')navigableItems
: returns navigable subset of matchingItems (e.g. non-hidden items)index
: the index position of the roving tabindex (i.e. the element with tabindex="0"). A no-op on aria-disabled or hidden items.matchingItems
: returns all items that match item selectorignoreByDelegateSelector
: CSS selector of descendant elements that will be ignored by the navigation emitters key event delegation (i.e. these elements will not operate the roving tabindex) (default: null)reset
: will force a reset to the value specified by autoReset
destroy
: destroys all event listenersrovingTabindexInit
rovingTabindexChange
rovingTabindexReset
FAQs
Implements a roving tab index on given collection of elements
The npm package makeup-roving-tabindex receives a total of 106 weekly downloads. As such, makeup-roving-tabindex popularity was classified as not popular.
We found that makeup-roving-tabindex demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.