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

@waggylabs/yumekit

v0.5.1

Published

Modern Web Component UI Kit

Downloads

3,041

Readme


Overview

YumeKit is a collection of 51 production-ready components built with native Web Components. It works with any framework — or none at all — and ships with a comprehensive design token system, built-in theming, an icon registry, and full TypeScript support.

  • Zero dependencies — built entirely on web standards
  • Framework-agnostic — works with React, Vue, Svelte, or plain HTML
  • Themeable — 22 built-in themes plus support for fully custom themes
  • Accessible — ARIA-compliant, keyboard navigable, form-associated inputs
  • Tree-shakeable — import only the components you use

Installation

npm install @waggylabs/yumekit

Usage

Via CDN (script tag)

The IIFE bundle includes all components and icons. Drop it into any HTML page:

<script src="https://cdn.jsdelivr.net/npm/@waggylabs/yumekit/dist/yumekit.min.js"></script>

<y-button color="primary">Click me</y-button>

Via ESM (recommended)

Import the full library or individual components for tree-shaking:

// Full library
import "@waggylabs/yumekit";

// Individual components
import "@waggylabs/yumekit/components/y-theme";
import "@waggylabs/yumekit/components/y-button";
import "@waggylabs/yumekit/components/y-input";

Then use the <y-theme> component to apply a theme:

<y-theme theme="blue-light">
    <!-- your app content -->
</y-theme>

Components

| Component | Element | Description | | ------------- | ------------------ | ------------------------------------------------------- | | Animate | <y-animate> | Scroll/viewport-triggered animation wrapper | | App Bar | <y-appbar> | Top or side navigation bar | | Avatar | <y-avatar> | User avatar with shape and color variants | | Avatar Group | <y-avatar-group> | Overlapping avatar group with overflow count | | Badge | <y-badge> | Status badge or label | | Banner | <y-banner> | Full-width inline message / alert banner | | Break | <y-break> | Divider with optional centered label, icon, or slot | | Breadcrumbs | <y-breadcrumbs> | Navigation breadcrumb trail with collapse support | | Button | <y-button> | Button with icon, size, and style variants | | Button Group | <y-button-group> | Groups buttons (or inputs) into a connected toolbar | | Card | <y-card> | Content card container | | Checkbox | <y-checkbox> | Form checkbox input | | Code | <y-code> | Code block with built-in syntax highlighting | | Color | <y-color> | Color swatch / value display | | Color Picker | <y-colorpicker> | Interactive color picker | | Data Grid | <y-data-grid> | Data grid with sorting, filtering, editing, pagination | | Date | <y-date> | Date input | | DatePicker | <y-datepicker> | A date and time picker | | Dialog | <y-dialog> | Modal dialog | | Dock | <y-dock> | Fixed navigation dock | | Drawer | <y-drawer> | Side drawer / sidebar | | Droplist | <y-droplist> | Drag-and-drop reorderable list | | Gallery | <y-gallery> | Media gallery with lightbox | | Grid | <y-grid> | CSS Grid layout container | | Help | <y-help> | Guided product tour / onboarding walkthrough | | Icon | <y-icon> | SVG icon display | | Input | <y-input> | Text input field | | Masonry | <y-masonry> | JS-positioned masonry layout | | Menu | <y-menu> | Dropdown navigation menu | | Paginator | <y-paginator> | Pagination controls | | Panel Bar | <y-panelbar> | Accordion panel group | | Popover | <y-popover> | Anchored floating popover | | Progress | <y-progress> | Progress bar | | Radio | <y-radio> | Radio button input | | Rating | <y-rating> | Star / icon rating input | | Select | <y-select> | Select / dropdown input | | Shape | <y-shape> | Decorative CSS shape container | | Sidebar | <y-sidebar> | Collapsible app sidebar navigation | | Slider | <y-slider> | Range slider input | | Splitter | <y-splitter> | Two-pane container with a draggable resize handle | | Stack | <y-stack> | Flexbox layout container (row or column) | | Stepper | <y-stepper> | Multi-step wizard with sequential flow | | Switch | <y-switch> | Toggle switch | | Table | <y-table> | Sortable data table | | Tabs | <y-tabs> | Tabbed interface | | Tag | <y-tag> | Tag / chip label | | Textarea | <y-textarea> | Multi-line text input | | Theme | <y-theme> | Theme provider | | Toast | <y-toast> | Notification toast | | Tooltip | <y-tooltip> | Tooltip / popover | | Tree | <y-tree> | Hierarchical tree view |

Sub-elements

These are building blocks used inside their parent component, not standalone components (and not included in the count above):

| Element | Used inside | Description | | --------------- | -------------- | -------------------------------- | | <y-panel> | <y-panelbar> | Individual accordion panel | | <y-tree-item> | <y-tree> | Individual node within a tree |


TypeScript

Type definitions are included. React-specific type augmentations are available at @waggylabs/yumekit/react.

import "@waggylabs/yumekit";

License

MIT © WaggyLabs