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

@helixui/library

v0.3.4

Published

Enterprise Web Component Library built with Lit 3.x

Downloads

1,529

Readme

@helixui/library

Enterprise Web Component Library built with Lit 3.x, TypeScript, and Shadow DOM — designed for healthcare applications where accessibility and reliability are non-negotiable.

npm version License: MIT


Installation

npm install @helixui/library

Design tokens are included automatically as a dependency via @helixui/tokens.


Usage

Barrel import (all components)

import '@helixui/library';

Per-component import (recommended for tree-shaking)

import '@helixui/library/components/hx-button';
import '@helixui/library/components/hx-card';
import '@helixui/library/components/hx-text-input';

HTML / Twig (after script load)

<hx-button variant="primary">Save</hx-button>

<hx-text-input label="Patient Name" required></hx-text-input>

<hx-alert variant="warning">Please review before submitting.</hx-alert>

CDN (placeholder — coming soon)

<script type="module" src="https://cdn.example.com/@helixui/library/dist/index.js"></script>

Components

73 component directories, 85 custom elements total.

| Component | Tag | |---|---| | Accordion | <hx-accordion> | | Action Bar | <hx-action-bar> | | Alert | <hx-alert> | | Avatar | <hx-avatar> | | Badge | <hx-badge> | | Breadcrumb | <hx-breadcrumb> | | Button | <hx-button> | | Button Group | <hx-button-group> | | Card | <hx-card> | | Carousel | <hx-carousel> | | Checkbox | <hx-checkbox> | | Checkbox Group | <hx-checkbox-group> | | Code Snippet | <hx-code-snippet> | | Color Picker | <hx-color-picker> | | Combobox | <hx-combobox> | | Container | <hx-container> | | Copy Button | <hx-copy-button> | | Data Table | <hx-data-table> | | Date Picker | <hx-date-picker> | | Dialog | <hx-dialog> | | Divider | <hx-divider> | | Drawer | <hx-drawer> | | Dropdown | <hx-dropdown> | | Field | <hx-field> | | Field Label | <hx-field-label> | | File Upload | <hx-file-upload> | | Form | <hx-form> | | Format Date | <hx-format-date> | | Grid | <hx-grid> | | Help Text | <hx-help-text> | | Icon | <hx-icon> | | Image | <hx-image> | | Link | <hx-link> | | List | <hx-list> | | Menu | <hx-menu> | | Meter | <hx-meter> | | Nav | <hx-nav> | | Number Input | <hx-number-input> | | Overflow Menu | <hx-overflow-menu> | | Pagination | <hx-pagination> | | Popover | <hx-popover> | | Popup | <hx-popup> | | Progress Bar | <hx-progress-bar> | | Progress Ring | <hx-progress-ring> | | Prose | <hx-prose> | | Radio Group | <hx-radio-group> | | Rating | <hx-rating> | | Select | <hx-select> | | Side Nav | <hx-side-nav> | | Skeleton | <hx-skeleton> | | Slider | <hx-slider> | | Spinner | <hx-spinner> | | Split Button | <hx-split-button> | | Split Panel | <hx-split-panel> | | Stack | <hx-stack> | | Status Indicator | <hx-status-indicator> | | Steps | <hx-steps> | | Structured List | <hx-structured-list> | | Switch | <hx-switch> | | Tabs | <hx-tabs> | | Tag | <hx-tag> | | Text | <hx-text> | | Text Input | <hx-text-input> | | Textarea | <hx-textarea> | | Theme | <hx-theme> | | Time Picker | <hx-time-picker> | | Toast | <hx-toast> | | Toggle Button | <hx-toggle-button> | | Tooltip | <hx-tooltip> | | Top Nav | <hx-top-nav> | | Tree View | <hx-tree-view> | | Visually Hidden | <hx-visually-hidden> |


Design Tokens

All components consume design tokens from @helixui/tokens via CSS custom properties. Override at the semantic level to theme your application:

:root {
  --hx-color-primary: #0057b8;
  --hx-color-primary-hover: #004a9e;
  --hx-spacing-md: 1rem;
  --hx-font-family-base: 'Inter', sans-serif;
}

See the @helixui/tokens package for the full token reference.


Framework Support

Components are standard Custom Elements and work in any framework:

  • Vanilla HTML / Twig — drop in <script type="module"> and use tags directly
  • React — use via @lit/react wrappers or directly in JSX
  • Vue — works out of the box with compilerOptions.isCustomElement
  • Angular — add CUSTOM_ELEMENTS_SCHEMA to your module
  • Drupal — attach via Drupal behaviors; compatible with Twig templates

Documentation

Full component docs, API reference, and Storybook playground:

Docs site coming soon


License

MIT