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

@agencecinq/modal

v1.1.0

Published

A lightweight, accessible Web Component wrapper around the native HTML `<dialog>` element, designed for Shopify themes. Part of the **CINQ** internal tools ecosystem.

Readme

@agencecinq/modal

A lightweight, accessible Web Component wrapper around the native HTML <dialog> element, designed for Shopify themes. Part of the CINQ internal tools ecosystem.

Features

  • Native <dialog>: Uses showModal() / close() for a solid baseline behavior.
  • Backdrop click to close: Click outside the dialog content to close (on the dialog backdrop).
  • Event-driven: Works with the shared @agencecinq/utils event names.

Installation

pnpm add @agencecinq/modal

Usage (Shopify integration)

1. Import the components

In your theme entry (e.g. theme.ts, main.js):

import "@agencecinq/modal";

2. Implementation in Liquid / HTML

Render the markup and wire buttons with aria-controls. cinq-modal must have an id, because it toggles itself when detail.modal matches its id.

<cinq-modal-button>
  <button aria-controls="newsletter-modal" aria-pressed="false">
    Open modal
  </button>
</cinq-modal-button>

<cinq-modal id="newsletter-modal">
  <dialog>
    ...
  </dialog>
</cinq-modal>

API reference

Markup

<cinq-modal> must contain a <dialog> (or an element marked with [data-dialog]). An id is required if you want it to react to modal-toggle events from cinq-modal-button.

<cinq-modal id="my-modal">
  <dialog>...</dialog>
</cinq-modal>

Methods

Interact with the element instance directly:

const $modal = document.querySelector("cinq-modal#my-modal");

$modal.show();
$modal.close();

Events

Event names come from @agencecinq/utils:

| Event | Emitted by | Payload (event.detail) | Description | | -------------- | ------------------- | -------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | | modal-toggle | cinq-modal-button | { modal: string; trigger: HTMLButtonElement; trap: HTMLElement \| null } | Requests toggling a modal identified by the button aria-controls. One event is dispatched per id (space-separated list supported). | | modal-open | cinq-modal | { modal: string } | Dispatched after calling show(). Contains the modal id so buttons can sync their aria-pressed state. | | modal-close | cinq-modal | undefined | Dispatched after calling close(). |

Wiring: handle modal-toggle

cinq-modal-button dispatches modal-toggle on document.documentElement with:

  • detail.modal: the modal id from the button aria-controls
  • detail.trigger: the button element
  • detail.trap: optional element id from data-trap (if you use it)

cinq-modal listens to modal-toggle by default and toggles itself when detail.modal matches its id (so id is required for event-driven open/close).

Note: cinq-modal-button sets aria-pressed="true" on click and resets it to false on any EVENTS.MODAL_CLOSE event (it does not filter by modal id).


Development (monorepo)

pnpm -C packages/modal build
pnpm -C packages/modal dev

License

Internal tool developed by CINQ. All rights reserved.