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

@stealthscale/component-actions

v0.1.0

Published

Draws what a person presses: a button, a toggle, and the triggers that carry an action.

Readme

@stealthscale/component-actions

Draws what a person presses: the button, and the square button that holds one glyph. Every component binds a recipe and draws nothing of its own, so a theme restyles all of them by extending the recipe. The preset under ./theme registers the recipes with an application's compiler.

Every value a theme can change on a component is an axis of its recipe, so a caller sets it as a prop and writes no style. A caller changes the element a component draws with as.

Install

pnpm add @stealthscale/component-actions

The package peers on react and @stealthscale/theme. An application lists the preset under ./theme among the presets its compiler installs.

Button

Draws the element a person presses, in a look, a size and a status, raised off the page and glowing or rippling where a page sets that effect. Under a press the look fills to its pressed colour, the box scales to 98 percent, and an elevated button drops towards the page. A button that opens with a mark leads with one step less inset, so the room before the mark is the width of the gap after it rather than a word's worth. The element is button, and type defaults to button so one inside a form does not send it.

import { Button, ButtonPropsProvider } from "@stealthscale/component-actions";

<Button size="lg" variant="outline">
  Save
</Button>;
<Button as="a">Read on</Button>;
<ButtonPropsProvider value={{ size: "sm", variant: "subtle" }}>
  <Button>Cancel</Button>
  <Button variant="solid">Save</Button>
</ButtonPropsProvider>;

ButtonPropsProvider sets the variants of every button below it. A prop on the button itself overrides the provider's.

The glass look is translucent, so the contrast of its label depends on what sits behind it. The theme's contrast gate measures the opaque looks alone, and a page puts a glass button on a surface it has checked.

| Axis | Values | Default | | ----------- | ------------------------------------------------------------------ | ------- | | variant | solid, subtle, surface, outline, ghost, plain, glass | solid | | size | xs, sm, md, lg, xl, 2xl, 3xl, 4xl | md | | status | info, success, warning, error | primary | | shape | square | none | | effect | glow, ripple | none | | elevation | raised, floating | flat |

IconButton

Draws a button that holds one glyph and no words. It binds the button's recipe with the square shape as its default, so it takes every axis a button takes and a theme that moves the button moves it too. A glyph names nothing, so the props require an accessible name: aria-label, or aria-labelledby pointing at the element that holds the words. The type refuses an icon button without one.

import { IconButton } from "@stealthscale/component-actions";
import { Icon } from "@stealthscale/component-typography";

<IconButton aria-label="Close" variant="ghost">
  <Icon>
    <path d="M6 6l12 12M18 6L6 18" />
  </Icon>
</IconButton>;

Licence

MIT. See LICENSE.