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

dash-ui-kit

v2.1.0-dev

Published

Dash UI Kit for React js

Readme

dash-ui-kit

Dash ui kit is a UI component library with TypeScript, TailwindCSS v4, and class-variance-authority (CVA) support.

At the moment the library is in its initial stage and is actively developed. More components will be added soon and more detailed documentation will be written.

You can see all the created components in the storybook - https://alexeytriplea.github.io/dash-ui-kit/

⚡ Quick Start

Installation

from npm

npm i dash-ui-kit

Setup with Tailwind CSS v4

/* main.css */
@import "tailwindcss";
@import "dash-ui-kit/theme";
@import "dash-ui-kit/styles";
import { Button } from 'dash-ui-kit/react';

<Button colorScheme="brand">Button</Button>

📱 React Native Support

Dash UI Kit now includes 7 ported components for React Native with full NativeWind support.

Installation

npm i dash-ui-kit
npm i nativewind twrnc
npm i react-native-svg

Usage

import { Avatar, Badge, BigNumber, ValueCard } from 'dash-ui-kit/react-native';

// Avatar with identicon
<Avatar identifier="user123" size="md" />

// Badge with status
<Badge colorScheme="success">Active</Badge>

// BigNumber with formatting
<BigNumber variant="space">1234567.89</BigNumber>

// ValueCard container
<ValueCard label="Balance" value="$1,234.56" size="sm" />

Available React Native Components

  • Avatar - Unique identicons from usernames/IDs with full customization
  • Badge - Status indicators with color schemes and sizes
  • BigNumber - Large number formatting with space/comma variants
  • ValueCard - Flexible labeled value containers
  • Identifier - Transaction/document ID display with copy functionality
  • CopyButton - Copy-to-clipboard with visual feedback
  • NotActive - Inactive state indicator component
  • useDebounce - Custom hook for debouncing values

Peer Dependencies

React Native setup requires:

  • react-native >= 0.70
  • nativewind for styling (using twrnc)
  • react-native-svg for SVG rendering

Documentation

For detailed porting guide and technical details, see REACT_NATIVE_PORT_GUIDE.md

📦 Components

  • ThemeProvider - Theme context for dark/light mode
  • Avatar - Avatar component that creates unique identicons from usernames with customizable appearance. To create avatars for identities, documents, and other entities, you should use their identifiers.
  • Button - Flexible buttons with multiple variants and color schemes
  • Select - The component of the form for choosing one element from the set.
  • Text - Typography component for text.
  • ValueCard - A flexibly customized container.

🎨 Features

  • Tailwind v4: Modern CSS-first architecture with @theme and @layer
  • Auto-generated: Theme CSS automatically built from source
  • TypeScript: Full type safety and IntelliSense support
  • Lightweight: Minimal bundle size impact

🚀 Usage Examples

Button Component

import { Button } from 'dash-ui-kit/react';

// Color schemes
<Button colorScheme="brand">Brand Button</Button>
<Button colorScheme="mint">Mint Button</Button>
<Button colorScheme="gray">Gray Button</Button>
<Button colorScheme="red">Red Button</Button>

// Variants
<Button variant="solid">Solid Button</Button>
<Button variant="outline">Outline Button</Button>

// Sizes
<Button size="sm">Small Button</Button>
<Button size="md">Medium Button</Button>

Text Component

import { Text } from 'dash-ui-kit/react';

<Text size="xl" weight="bold" color="blue">
  Styled Text
</Text>

🔧 Development

npm run build        # Build library
npm run test         # Run tests
npm run storybook    # Start Storybook

License

MIT