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

@magic-spells/select-dropdown

v0.1.0

Published

Accessible custom select dropdown web component.

Readme

@magic-spells/select-dropdown

A fully accessible custom select dropdown web component with keyboard navigation, theming via CSS custom properties, and zero dependencies.

🔍 Live Demo - See it in action!

Install

npm install @magic-spells/select-dropdown

Usage

ES Module

import '@magic-spells/select-dropdown'

CDN / Script Tag

<link rel="stylesheet" href="https://unpkg.com/@magic-spells/select-dropdown/dist/select-dropdown.css" />
<script src="https://unpkg.com/@magic-spells/select-dropdown"></script>

HTML

<select-dropdown>
  <select-trigger>
    <span class="select-label-text">Pick a fruit</span>
  </select-trigger>

  <input type="hidden" name="fruit" />

  <select-panel>
    <select-option value="apple">Apple</select-option>
    <select-option value="banana" selected>Banana</select-option>
    <select-option value="cherry">Cherry</select-option>
  </select-panel>
</select-dropdown>

Elements

| Element | Description | |---|---| | <select-dropdown> | Root container | | <select-trigger> | Clickable trigger button | | <select-panel> | Options list container | | <select-option> | Selectable option | | <select-divider> | Visual separator between groups | | <select-label> | Non-interactive group heading |

Grouped Options

Use <select-label> and <select-divider> to organize options into groups. These elements are automatically skipped during keyboard navigation.

<select-panel>
  <select-label>Fruits</select-label>
  <select-option value="apple">Apple</select-option>
  <select-option value="banana">Banana</select-option>
  <select-divider></select-divider>
  <select-label>Nuts</select-label>
  <select-option value="almond">Almond</select-option>
</select-panel>

Events

dropdown.addEventListener('change', () => {
  console.log(dropdown.value) // selected value
  console.log(dropdown.selectedText) // selected label
})

Programmatic updates use the same control API:

dropdown.value = 'banana'

Option values come from the value attribute. If an option has no value, its trimmed text content is used.

Theming

Style with CSS custom properties:

select-dropdown {
  --select-color-text: #333;
  --select-color-background: #fff;
  --select-color-border: #ddd;
  --select-color-border-hover: #aaa;
  --select-color-border-dark: #666;
  --select-color-primary: #4299e1;
  --select-color-hover: #f0f0f0;
  --select-color-focus: #e6f7ff;
  --select-color-selected: #e6f7ff;
}

Keyboard Navigation

| Key | Action | |---|---| | Tab | Focus the dropdown | | Enter / Space | Open dropdown or select option | | | Open dropdown or navigate options | | Home / End | Jump to first/last option | | Escape | Close dropdown | | Any letter | Jump to matching option |

Attributes

  • selected on <select-option> — pre-select an option
  • value on <select-option> — the option's value

License

This project is licensed under the MIT License - see the LICENSE file for details.