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

@nurlan_allur/allur_ui_kit

v1.0.5

Published

A comprehensive React UI Kit library with modern components

Downloads

5

Readme

UI Kit Library

A comprehensive React UI component library built with TypeScript and Tailwind CSS, inspired by modern design systems like Material UI.

Features

  • 🎨 Modern Design: Clean, professional components following design system principles
  • 🔧 TypeScript Support: Full TypeScript support with proper type definitions
  • 🎯 Tailwind CSS: Built with Tailwind CSS for easy customization
  • 📦 Tree Shakeable: Import only what you need
  • Accessible: Built with accessibility in mind
  • 🔄 Multiple States: Support for loading, error, disabled states
  • 📱 Responsive: Mobile-first responsive design

Components

  • Button: Primary, secondary, and tertiary variants with multiple sizes
  • IconButton: Compact buttons for icon-only actions
  • Badge: Status indicators and labels
  • Breadcrumb: Navigation breadcrumb components
  • PageHeader: Consistent page headers with breadcrumbs

Installation

npm install @yourorg/ui-kit

Usage

import { Button, Badge, PageHeader } from '@yourorg/ui-kit'

function MyComponent() {
  return (
    <div>
      <PageHeader 
        title="My Page"
        description="Page description"
        breadcrumbItems={[
          { label: 'Home', href: '/' },
          { label: 'Current Page' }
        ]}
      />
      
      <div className="flex gap-4">
        <Button variant="primary" size="medium">
          Primary Action
        </Button>
        <Button variant="secondary" size="medium">
          Secondary Action
        </Button>
        <Badge variant="success">New</Badge>
      </div>
    </div>
  )
}

Development

Prerequisites

  • Node.js 16+
  • npm or yarn

Getting Started

  1. Clone the repository

  2. Install dependencies:

    npm install
  3. Start the development server:

    npm run dev
  4. Build the library:

    npm run build:lib

Scripts

  • npm run dev - Start development server with demo page
  • npm run build - Build demo page
  • npm run build:lib - Build the library for distribution
  • npm run preview - Preview the built demo page

Component API

Button

interface ButtonProps {
  variant?: 'primary' | 'secondary' | 'tertiary'
  size?: 'small' | 'medium' | 'large'
  leftIcon?: React.ReactNode
  rightIcon?: React.ReactNode
  loading?: boolean
  error?: boolean
  disabled?: boolean
  children: React.ReactNode
}

IconButton

interface IconButtonProps {
  variant?: 'primary' | 'secondary' | 'tertiary'
  size?: 'small' | 'medium' | 'large'
  loading?: boolean
  error?: boolean
  disabled?: boolean
  children: React.ReactNode
}

Badge

interface BadgeProps {
  variant?: 'default' | 'secondary' | 'success' | 'warning' | 'error'
  children: React.ReactNode
}

PageHeader

interface PageHeaderProps {
  title: string
  description?: string
  breadcrumbItems?: BreadcrumbItem[]
}

Breadcrumb

interface BreadcrumbProps {
  items: BreadcrumbItem[]
  separator?: React.ReactNode
}

interface BreadcrumbItem {
  label: string
  href?: string
  icon?: React.ReactNode
}

Customization

The library uses Tailwind CSS classes and CSS custom properties. You can customize the appearance by:

  1. Overriding CSS custom properties in your global CSS:

    :root {
      --button-text-large-18-medium-font-family: 'Your Font', sans-serif;
    }
  2. Using Tailwind CSS classes via the className prop on any component

  3. Extending the theme in your tailwind.config.js

License

MIT License - see LICENSE file for details.

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request