npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

vanilla-aria-modals

v1.1.6

Published

Framework-agnostic utility for managing accessibility in modals or modal-like UIs, including modal stacking, focus management, and closing via Escape key or outside click.

Downloads

63

Readme

vanilla-aria-modals

See the full release history and updates in the Changelog.

Introduction

vanilla-aria-modals is a framework-agnostic utility for managing accessibility (A11y) events in modals or modal-like UIs within your web application. It supports modal stacking and key accessibility features, including focus trapping, focus management, and closing modals with the Escape key or an outside click.

Although designed primarily for modal interactions, it can be used in any UI logic that requires basic ARIA support and focus management.

It supports a dynamic number of modals and events. In SPAs or dynamic interfaces, navigating away or re-rendering a component without closing a modal can leave lingering event listeners on document.body, which may interfere with future interactions. A reset method is provided to call on route changes or component unmounts. See more at: SPA / Advanced Usage

Written in vanilla JS for full flexibility. You can modify it directly in node_modules if needed. Just update the .d.ts file when changing public methods to keep IntelliSense accurate. Internals documentation, such as architecture and logic flow can be found here.

Set up

import ModalHandler from 'vanilla-aria-modals';
const modalHandler = new ModalHandler();

ModalHandler is a singleton, so creating multiple instances returns the same object.

TypeScript types are used in the docs and in the .d.ts file to indicate the intended type and optionality of parameters, even though the class is fully vanilla JavaScript. This makes it easier to use, manage, and understand, without requiring any compiler.

Usage

A fully detailed example including the necessary JavaScript, HTML, and CSS files, can be found here.

Note: The closeHandler receives both the original DOM event and the associated modalKey automatically. The caller can use these to inspect the event or determine which modal triggered the close.

Note: lm in the code stands for HTMLElement.

// Basic example of showing a modal
showModal() {
  modalContainerLm.style.display = 'block';
}

// Basic example of hiding a modal
hideModal() {
  modalContainerLm.style.display = 'none';
}

openModal() {
  // Generate a key or use your own
  const modalKey = modalHandler.generateKey();

  const closeModal = () => {
    hideModal();
    // ...Your hide UI logic

    // Restore focus
    modalHandler.restoreFocus({ modalKey: modalKey });
    // Remove ARIA events added
    modalHandler.removeA11yEvents({ modalKey: modalKey });
  }

  showModal();
  // ...Your show UI logic

  // Add focus
  modalHandler.addFocus({
    modalKey: modalKey,
    firstFocusableLm: modalFirstFocusableLm
  });
  // Add ARIA events 
  modalHandler.addA11yEvents({
    modalKey: modalKey,
    modalLm: modalContentLm,
    modalLmOuterLimits: modalContentLm,
    closeLms: [...modalCloseBtns],
    closeHandler: closeModal
  });
}

const openModalBtn = document.getElementById('open-modal-btn');
openModalBtn.addEventListener('click', openModal);

SPA / Advanced Usage

In Single Page Applications (SPA) or frameworks like React, Vue, or vanilla JS with dynamic content, modals may persist across view changes. To prevent lingering events or broken focus, ModalHandler provides cleanup methods.

Example: Cleanup on route change or component unmount

// Suppose your SPA route or component changes
function onRouteChange() {
  // Clear leftover document events, active modals, focus tracking, modal ID key counter 
  // and overlayless modals registry
  modalHandler.reset();

  // Or individually:
  // modalHandler
  //  .clearDocumentBodyEvents()
  //  .clearActiveModals()
  //  .clearFocusRegistry()
  //  .resetKeys()
  //  .clearPopups();
}

Public API Methods

setDebug()

Enables or disables debug logs, aimed for reviewing stacked modals, clear and close logic.

Parameters

  • bool: boolean; true enables debug mode, false disables it.

Returns void

generateKey()

Generates a unique identifier for the modal.

Parameters

  • prefix?: string; Optional prefix to modify the generated modal key.

Returns string. The generated modal key to be used later in the code.

clearDocumentBodyEvents()

Clears any leftover document body event listeners.

Returns this

clearActiveModals()

Resets the active modal stack.

Returns this

clearFocusRegistry()

Clears stored focus references.

Returns this

resetKeys()

Resets the internal modal key counter back to 0.

Returns this

clearPopups()

Clears the internal overlayless modals (popups) array

Returns this

reset()

Combines clearDocumentBodyEvents(), clearActiveModals(), clearFocusRegistry(), resetKeys, clearPopups() for a full cleanup.

Returns void

rebindTrapFocus()

Re-attaches the focus-trapping event listener for a specific modal. The internal trapFocus method already queries the DOM on each keyboard event, so in most cases, manually rebinding is not necessary.

Parameters

  • modalKey: string; The unique key of the modal whose focus trap should be rebound.

Returns void

addA11yEvents()

Registers A11y events and modal stacking handling:

  • Close at overlay click
  • Close at ESC key
  • Trap focus
  • Modal stacking

Parameters

Takes parameters as a single object, which are destructured inside the method.

  • modalKey: string; Unique modal identifier. Used for stacking and event management.
  • modalLm?: HTMLElement | null; (optional) The main modal element. Used to trap focus inside the modal.
  • modalLmOuterLimits?: HTMLElement | null; (optional) The container that defines the modal boundary. Used to detect clicks outside the modal. modalLm is usually used here, but depending on the UI we may not want to trap focus into the same container we want to close, maybe just in a part of it.
  • closeLms?: HTMLElement[] | null; (optional) Array of elements that should trigger closing the modal (e.g., close buttons).
  • exemptLms?: HTMLElement[]; (optional) Array of elements that should not trigger closing even if clicked outside.
  • closeHandler: (e: Event, modalKey: string) => void; Function to call at modal close. Usually should call removeA11yEvents(). Automatically receives the event (e) and (modalKey) from the wrapper; no need to pass as arguments. It’s up to the caller whether to use them.

If you need to pass additional arguments to the close handler, you can wrap it in a function that returns a handler accepting only the two parameters (e and modalKey):

const closeModalWrapper = (...args) => {
  // Returns a handler that the utility calls internally with e and modalKey
  return (e, modalKey) => {
    // Your logic for the close handler here 
    // Access to parameters thanks to closures
  }
}

modalHandler.addA11yEvents({
  closeHandler: closeModalWrapper(...args)
});

Returns void

removeA11yEvents()

Removes all A11y event listeners for the specific registered modal.

Parameters

Takes parameters as a single object, which are destructured inside the method.

  • modalKey: string; Unique modal identifier. Must match the modalKey used in addA11yEvents().

Returns void

addFocus()

Focuses a specific element inside a modal. If auto is true, the class automatically stores the last active element and manages its restoration later. If auto is false, the method returns the last active element so the user can handle it manually.

Parameters

Takes parameters as a single object, which are destructured inside the method.

  • modalKey: string; Unique modal identifier.
  • firstFocusableLm: HTMLElement; Element to receive focus.
  • lastFocusedLm?: HTMLElement | null; (optional) Stores a custom element as the last focused. Defaults to document.activeElement.
  • auto?: boolean; (optional) Defaults to true. If false, focus is returned but not stored for restoration. Can be used with truthy or falsy values as well.

Returns HTMLElement | void

restoreFocus()

Restores focus to the element that was active before the modal opened.

Parameters

Takes parameters as a single object, which are destructured inside the method.

  • modalKey: string; Unique modal identifier.
  • lastFocusedLm?: HTMLElement | null; (optional) Custom element to restore focus to if auto is false.
  • auto?: boolean; (optional) Defaults to true. If false, uses lastFocusedLm to restore focus instead of the stored one.

Returns void