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

@lemonadejs/buttongroup

v6.0.0-beta.0

Published

LemonadeJS buttongroup block — contract-verified, framework-agnostic.

Readme

<Buttongroup /> — @lemonadejs/buttongroup

LemonadeJS buttongroup block — contract-verified, framework-agnostic.

✓ verified — 18 contract checks · framework-agnostic · zero dependencies

Overview

— a fused row (or column) of buttons (LemonadeJS v6 block)

One block covering both plain action groups and toggle selection: selectable='' plain action buttons — onclick(value, event) selectable='single' exclusive selection — click selects, click again deselects (value | null) selectable='multiple' toggle set — the value is always an array

The selection follows the dropdown model, divisor-free: bind="${state}" the live two-way selection (single value or array) external writes land silently; user toggles fire onchange (.set)

Install

npm install @lemonadejs/buttongroup
import Buttongroup from '@lemonadejs/buttongroup';
import '@lemonadejs/buttongroup/style.css';

Usage

import { html, mount } from 'lemonadejs';

const App = () => html`<div>
    <${Buttongroup} />
</div>`;

mount(App, document.getElementById('root'));

Three deployment forms, one component:

html`<${Buttongroup} />`                       // by value (no registration)
setComponents({ Buttongroup });               // then <Buttongroup /> by name anywhere
createWebComponent(Buttongroup);              // <lm-buttongroup> in plain HTML/any framework

Props

Every declared prop arrives as a live state — pass a value for a snapshot or a state for a two-way live wire. Attribute strings are coerced to the declared type.

| Prop | Type | Default | Description | |---|---|---|---| | bind | any | — | Two-way bound value. .set() fires onchange; plain assignment is silent. selection: single value, array when multiple (any) | | options | array | — | { value, label, icon, disabled } or strings | | selectable | string | '' | '' action buttons | single | multiple | | variant | string | '' | '' contained | outlined | text | | color | string | '' | green | orange | red | purple | | size | string | '' | small | large (default in between) | | orientation | string | '' | '' horizontal | vertical | | disabled | boolean | false | blocks the whole group (native) |

Events

All event names are lowercase (the platform convention — LJS-305 warns otherwise).

  • onchange — (selection) on user toggles
  • onclick — (value, event) in plain mode

Styling

All classes follow the lm-buttongroup-* convention; visual variants are data-* attributes on the root. Override freely — there is no styling engine to fight.

Contract

The machine-readable schema ships with the package:

import contract from '@lemonadejs/buttongroup/contract.json';

verify.json carries the conformance proof produced by verify(Buttongroup).