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

@data-slot/toggle-group

v0.2.80

Published

A group of toggle buttons with shared state, supporting single or multiple selection.

Readme

@data-slot/toggle-group

A group of toggle buttons with shared state, supporting single or multiple selection.

Installation

bun add @data-slot/toggle-group

Usage

Basic Markup

<!-- Single selection (default) -->
<div data-slot="toggle-group" data-default-value="center">
  <button data-slot="toggle-group-item" data-value="left">Left</button>
  <button data-slot="toggle-group-item" data-value="center">Center</button>
  <button data-slot="toggle-group-item" data-value="right">Right</button>
</div>

<!-- Multiple selection -->
<div data-slot="toggle-group" data-multiple data-default-value="bold italic">
  <button data-slot="toggle-group-item" data-value="bold">B</button>
  <button data-slot="toggle-group-item" data-value="italic">I</button>
  <button data-slot="toggle-group-item" data-value="underline">U</button>
</div>

JavaScript

import { create, createToggleGroup } from "@data-slot/toggle-group";

// Auto-discover and bind all toggle-group elements
const controllers = create();

// Or target a specific element
const group = createToggleGroup(element, {
  defaultValue: "center",
  multiple: false,
  orientation: "horizontal",
  loop: true,
  onValueChange: (value) => console.log(value),
});

// Programmatic control
group.setValue("left");
group.toggle("bold");
console.log(group.value); // ["left"]

// Cleanup
group.destroy();

Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | defaultValue | string \| string[] | [] | Initial selected value(s). For multiple values, use array or space-separated string. | | multiple | boolean | false | Allow multiple selections. | | orientation | "horizontal" \| "vertical" | "horizontal" | Orientation for keyboard navigation. | | loop | boolean | true | Wrap keyboard focus at ends. | | disabled | boolean | false | Disable the entire group. | | onValueChange | (value: string[]) => void | - | Callback when selection changes. |

Data Attributes

Root Element

| Attribute | Description | |-----------|-------------| | data-slot="toggle-group" | Required. Identifies the root element. | | data-default-value | Initial selected value(s). Space-separated for multiple values. | | data-multiple | Enable multiple selection mode. | | data-orientation | "horizontal" or "vertical" for keyboard navigation. | | data-disabled | Disable the entire group. |

Item Elements

| Attribute | Description | |-----------|-------------| | data-slot="toggle-group-item" | Required. Identifies an item. | | data-value | Required. The value associated with this item. | | data-disabled | Disable this specific item. |

State Attributes (set by component)

| Attribute | Values | Description | |-----------|--------|-------------| | aria-pressed | "true" | "false" | Whether item is pressed. | | data-state | "on" | "off" | Visual state for styling. | | data-value (on root) | Space-separated values | Current selection. |

Events

Outbound Events

// Listen for changes
root.addEventListener("toggle-group:change", (e) => {
  console.log(e.detail.value); // string[]
});

Inbound Events

| Event | Detail | Description | |-------|--------|-------------| | toggle-group:set | { value: string \| string[] } | Set selection programmatically |

// Set selection from outside
root.dispatchEvent(new CustomEvent("toggle-group:set", {
  detail: { value: "bold" }
}));

// Set multiple values
root.dispatchEvent(new CustomEvent("toggle-group:set", {
  detail: { value: ["bold", "italic"] }
}));

Note: Blocked when group is disabled.

Deprecated Shapes

The following shapes are deprecated and will be removed in v1.0:

// Deprecated: bare string
root.dispatchEvent(new CustomEvent("toggle-group:set", {
  detail: "bold"
}));

// Deprecated: bare array
root.dispatchEvent(new CustomEvent("toggle-group:set", {
  detail: ["bold", "italic"]
}));

Use { value: ... } instead.

Keyboard Navigation

| Key | Action | |-----|--------| | ArrowRight / ArrowDown | Move to next item (based on orientation) | | ArrowLeft / ArrowUp | Move to previous item (based on orientation) | | Home | Move to first item | | End | Move to last item | | Enter / Space | Toggle current item |

Styling

/* Style pressed items */
[data-slot="toggle-group-item"][data-state="on"] {
  background: #333;
  color: white;
}

/* Style disabled items */
[data-slot="toggle-group-item"][aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

Accessibility

  • Root has role="group"
  • Items have aria-pressed attribute
  • Disabled items have aria-disabled="true" and native disabled
  • Supports roving tabindex for keyboard navigation
  • Add aria-label or aria-labelledby to root for context