![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
makeup-roving-tabindex
Advanced tools
Implements a roving tab index on given collection of elements
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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.