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

@chromvoid/headless-ui

v0.1.1

Published

Headless interaction and accessibility contracts for future UI kit

Readme

The goal of this package is to provide a standalone headless foundation for a future UI kit, built on Reatom v1000 and WAI-ARIA APG behavior contracts.

The visual UI kit is intentionally out of scope for this package.

Import contract

The package ships from dist/ and supports both a convenience root barrel and lean leaf imports.

Use the root barrel when convenience matters more than bundle shape:

import {createButton, createTabs} from '@chromvoid/headless-ui'

Use leaf subpaths in perf-sensitive code when you want an intentionally narrow dependency graph:

import {createButton} from '@chromvoid/headless-ui/button'
import {CompositeNavigationOrientation} from '@chromvoid/headless-ui/interactions/composite-navigation'
import {toggleSelection} from '@chromvoid/headless-ui/core/selection'

The root barrel remains supported, but subpaths are the stable lean-import contract for applications and higher-level packages such as @chromvoid/uikit.

Architecture decisions and delivery artifacts:

  • ./specs/ADR-001-headless-architecture.md
  • ./specs/IMPLEMENTATION-ROADMAP.md
  • ./specs/ISSUE-BACKLOG.md
  • ./specs/RELEASE-CANDIDATE.md
  • ./specs/release/mvp-changelog.md

Package-local workflow

Run all package checks from the package root:

npm ci
npm run lint
npm run test
npm run build
npm pack --dry-run

Implemented components

  • listbox (src/listbox/, specs/components/listbox.md)
  • combobox (src/combobox/, specs/components/combobox.md)
  • menu (src/menu/, specs/components/menu.md)
  • tabs (src/tabs/, specs/components/tabs.md)
  • treeview (src/treeview/, specs/components/treeview.md)
  • alert (src/alert/, specs/components/alert.md)
  • breadcrumb (src/breadcrumb/, specs/components/breadcrumb.md)
  • landmarks (src/landmarks/, specs/components/landmarks.md)
  • meter (src/meter/, specs/components/meter.md)
  • link (src/link/, specs/components/link.md)
  • table (src/table/, specs/components/table.md)
  • button (src/button/, specs/components/button.md)
  • checkbox (src/checkbox/, specs/components/checkbox.md)
  • switch (src/switch/, specs/components/switch.md)
  • radio-group (src/radio-group/, specs/components/radio-group.md)
  • slider (src/slider/, specs/components/slider.md)
  • spinbutton (src/spinbutton/, specs/components/spinbutton.md)
  • slider-multi-thumb (src/slider-multi-thumb/, specs/components/slider-multi-thumb.md)
  • disclosure (src/disclosure/, specs/components/disclosure.md)
  • accordion (src/accordion/, specs/components/accordion.md)
  • dialog (src/dialog/, specs/components/dialog.md)
  • alert-dialog (src/alert-dialog/, specs/components/alert-dialog.md)
  • tooltip (src/tooltip/, specs/components/tooltip.md)
  • menu-button (src/menu-button/, specs/components/menu-button.md)
  • toolbar (src/toolbar/, specs/components/toolbar.md)
  • grid (src/grid/, specs/components/grid.md)
  • treegrid (src/treegrid/, specs/components/treegrid.md)
  • feed (src/feed/, specs/components/feed.md)
  • carousel (src/carousel/, specs/components/carousel.md)
  • window-splitter (src/window-splitter/, specs/components/window-splitter.md)

MVP-next scaffolds (not finalized)

  • popover (src/popover/, specs/components/popover.md)
  • select (src/select/, specs/components/select.md)
  • context-menu (src/context-menu/, specs/components/context-menu.md)
  • command-palette (src/command-palette/, specs/components/command-palette.md)
  • toast (src/toast/, specs/components/toast.md)
  • progress (src/progress/, specs/components/progress.md)

Shared layers

  • src/core/ - selection and value-range state primitives
  • src/interactions/ - keyboard intents, typeahead, composite navigation, overlay focus
  • src/a11y-contracts/ - typed aria/role contracts
  • src/adapters/ - adapter contracts and integration coverage

Conventions

  • each component lives in a dedicated directory: src/<component>/
  • each component has a dedicated contract spec: specs/components/<component>.md
  • package must remain independent from monorepo-only imports (@project/*, apps/*)