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

@shortfuse/materialdesignweb

v0.11.2

Published

Material Design for Web

Readme

materialdesignweb

Material Design 3 (Material You) Web Components — standards‑focused and zero‑dependency.

Version License MinZip Dependents

Chromium Firefox Webkit

Live demo: https://clshortfuse.github.io/materialdesignweb/ Samples: https://clshortfuse.github.io/materialdesignweb/samples/

Use the CDN (zero-install)

<script src="https://cdn.jsdelivr.net/npm/@shortfuse/materialdesignweb?color=6750A4"></script>
<mdw-button>Hello World</mdw-button>

CDN theming params: color, custom, lightness, resetCSS.

Access exports via globalThis['@shortfuse/materialdesignweb']:

const { CustomElement } = globalThis['@shortfuse/materialdesignweb'];

Import what you need (ESM)

npm install @shortfuse/materialdesignweb

Full bundle:

import '@shortfuse/materialdesignweb';

Single component:

import Button from '@shortfuse/materialdesignweb/components/Button.js';

Support

Compatibility is kept for as long possible by including browser-version-based patches. Ultimately, compatiblity may be dropped as new features get added. Bugs present in supported browsers should always be fixed.

| Feature | Chrome | Edge | Firefox | Safari | | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | | ShadowRoot | 53 | 79 | 63 | 10 | | WeakRef | 84 | 84 | 79 | 14.1 | | :where() | 88 | 88 | 78 | 14 | | | | | | | | Array.at† | 92 | 92 | 90 | 15.4 | | replaceChildren† | 84 | 86 | 79 | 14.1 | | ElementInternals† | 77 | 79 | 93 | 16.4 | | delegatesFocus† | 53 | 79 | 94 | 15 | | AdoptedStyleSheets* | 73 | 79 | 101 | 16.4 | | CSS container queries* | 106 | 106 | 110 | 16.0 | | | | Compatibility | 88 | 88 | 78 | 16.4 | | Support | Latest ChromeOS LTS Release | Microsoft Edge Extended Stable Channel | ESR 115 | Last 2 Versions | | Status | Chrome | Edge | Firefox | Safari |

*Optional

†Can be polyfilled

Notes:

  • Compatibility may be extended via polyfills (not included)

Documentation

Material Design Web (MDW) is components-first. If you just want to build a UI, start with the component docs and use HTML only — no custom JavaScript required.

1) Use the components

2) Theming

3) Samples

4) Advanced: extend the core system (JavaScript)

Use these only if you need custom behavior, state models, or new components.

5) Reference

  • API reference
  • Generated artifacts (API + types) are published to npm on release.

6) Contributing