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

@midkard/modal

v1.0.1

Published

Front library of DNT WordPress theme.

Downloads

23

Readme

@midkard/modal

A lightweight, flexible modal library built on top of the native HTML <dialog> element. Part of the DNT WordPress theme.

License: MIT

Features

  • Native HTML Dialog — Built on the standard <dialog> element for accessibility and semantic correctness
  • TypeScript Support — Fully typed with extensible interfaces
  • Multiple Modal Types — Standard dialogs, offcanvas (left/right), bottom sheets, and fullscreen modals
  • CSS Animations — Smooth transitions with @starting-style and allow-discrete support
  • Event System — Custom events for show/shown/close/closed lifecycle
  • Lightweight — Minimal JavaScript with no external dependencies
  • Accessible — ARIA attributes and keyboard navigation support

Installation

npm install @midkard/modal

Usage

Basic Example

<!-- Trigger button -->
<button data-dnt-control="#my-modal">Open Modal</button>

<!-- Modal dialog -->
<dialog id="my-modal" class="modal" aria-label="My Modal">
  <article>
    <p>Modal content goes here...</p>
  </article>
  <button data-dnt-dismiss="modal">Close</button>
</dialog>
import '@midkard/modal';
import '@midkard/modal/style';

Modal Types

Standard Modal (Centered)

<dialog class="modal" id="modal-standard">
  <article>Content</article>
</dialog>

Left Offcanvas

<dialog class="modal modal_start" id="menu-offcanvas">
  <article>Menu content</article>
</dialog>

Right Offcanvas

<dialog class="modal modal_end" id="sidebar">
  <article>Sidebar content</article>
</dialog>

Bottom Sheet

<dialog class="modal modal_bottom" id="bottom-sheet">
  <article>Bottom content</article>
</dialog>

Fullscreen

<dialog class="modal modal_fullscreen" id="modal-full">
  <article>Fullscreen content</article>
</dialog>

Data Attributes

| Attribute | Description | |-----------|-------------| | data-dnt-control | Opens/toggles the target modal (value: CSS selector) | | data-dnt-dismiss | Closes the modal when clicked | | data-dnt-backdrop | Set to "false" to disable backdrop click-to-close |

Events

| Event | Description | |-------|-------------| | modal.dnt.show | Fired when modal starts opening | | modal.dnt.shown | Fired when modal open animation completes | | modal.dnt.close | Fired when modal starts closing | | modal.dnt.closed | Fired when modal close animation completes |

const modal = document.querySelector('#my-modal');

modal.addEventListener('modal.dnt.show', (e) => {
  console.log('Modal is opening');
});

modal.addEventListener('modal.dnt.shown', (e) => {
  console.log('Modal is now visible');
});

Programmatic API

import { dntModals } from '@midkard/modal';

const modal = dntModals.getOrCreateInstance(document.querySelector('#my-modal'));

// Show modal
modal.show();

// Hide modal
modal.hide();

// Toggle modal
modal.toggle();

// Destroy instance
modal.destroy();

CSS Variables

Customize the modal appearance using CSS variables:

.modal {
  --duration: 0.15s;      /* Animation duration */
  --padding-y: 1rem;      /* Horizontal padding */
  --border-raius: 0.5rem; /* Border radius */
  --color: inherit;       /* Text color */
  --bg: white;            /* Background color */
}

Development

# Install dependencies
npm install

# Start development server
npm run dev

# Build library
npm run build

# Run linter
npm run lint

# Format code
npm run format

Browser Support

Requires browsers that support:

  • HTML <dialog> element
  • CSS @starting-style at-rule
  • CSS allow-discrete keyword

License

MIT © Dimenius Novus