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

@rcarls/rc-menu

v0.3.2

Published

Menu popup for command surfaces with keyboard navigation and typed activation events.

Readme

@rcarls/rc-menu

Menu popup for command surfaces with keyboard navigation and typed activation events, following the WAI-ARIA Menu pattern.

Docs: https://richardcarls.github.io/rc-webcomponents/components/rc-menu.


Installation

npm install @rcarls/rc-menu

Import

import '@rcarls/rc-menu';                    // side-effect: registers <rc-menu>
import { RCMenu } from '@rcarls/rc-menu';    // named class export

Basic usage

Slot any focusable elements as menu items. Non-focusable elements (separators, headings) are rendered but excluded from keyboard navigation.

<rc-menu label="File">
  <button>New</button>
  <button>Open…</button>
  <hr aria-hidden="true" />
  <button disabled>Save</button>
  <button>Save As…</button>
</rc-menu>

rc-menu is typically used inside an rc-menu-button or rc-menubar, which handle positioning and trigger wiring. It can also be used standalone as a context menu.


API

Properties / attributes

| Property | Attribute | Type | Default | Description | |---|---|---|---|---| | label | label | string | '' | Value of the aria-label on the menu container. Required for accessibility when no visible label is present. |

CSS custom properties

| Property | Default | Description | |---|---|---| | --rc-menu-min-width | 10em | Minimum width of the menu container | | --rc-menu-padding-block | 0.25em | Block-axis (top/bottom) padding inside the root | | --rc-menu-background | Canvas | Menu background color (system color keyword) | | --rc-menu-border | 1px solid ButtonBorder | Menu border | | --rc-menu-shadow | 0 2px 8px rgba(0,0,0,0.15) | Box shadow |

CSS parts

| Part | Element | Description | |---|---|---| | root | div[role="menu"] | The inner menu container |

Slots

| Slot | Description | |---|---| | (default) | Menu items. Only focusable elements participate in keyboard navigation. <button>, <a href>, elements with tabindex, and <input>/<select>/<textarea> are recognised as focusable; all others are skipped. |

Events

| Event | Bubbles | Cancelable | Detail | When | |---|---|---|---|---| | rc-menu-activate | Yes (composed) | No | { item: HTMLElement } | User presses Enter or Space on a focused item | | rc-menu-close | Yes (composed) | No | — | User presses Escape |

Public methods

focusFirst(): void            // Focus the first navigable item
focusLast(): void             // Focus the last navigable item
focusItem(item: HTMLElement): void     // Focus a specific item
focusItemAt(index: number): void       // Focus item at zero-based index

Read-only getters

items: HTMLElement[]          // All currently navigable (focusable) slotted items
firstItem: HTMLElement | undefined
lastItem: HTMLElement | undefined
nextItem: HTMLElement | undefined    // Relative to the currently focused item
previousItem: HTMLElement | undefined

Keyboard behaviour

| Key | Action | |---|---| | ArrowDown | Focus next item (wraps) | | ArrowUp | Focus previous item (wraps) | | Home | Focus first item | | End | Focus last item | | Enter / Space | Activate focused item (fires rc-menu-activate) | | Escape | Fire rc-menu-close |


ARIA

| Attribute | Where | Value | |---|---|---| | role="menu" | Root div | — | | aria-label | Root div | Value of label property | | role="menuitem" | Each slotted focusable item | Set dynamically on slot change | | tabindex="0" | Active item | One item is tabbable at a time (roving tabindex) | | tabindex="-1" | All other items | Removed from tab order |


Browser support

All modern browsers. Requires Web Components support (Chrome 67+, Firefox 63+, Safari 12.1+).