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

abrplus-ui-kit

v1.0.9

Published

A modular React UI component library with Tailwind support, designed for building modern and consistent interfaces. Supports both **Tailwind v3 and v4** setups and provides separate global and theme CSS for maximum flexibility.

Downloads

75

Readme

Abrplus UI Kit

A modular React UI component library with Tailwind support, designed for building modern and consistent interfaces. Supports both Tailwind v3 and v4 setups and provides separate global and theme CSS for maximum flexibility.


Features

  • Fully typed with TypeScript.
  • Ready-to-use atoms, molecules, and Ant Design overrides.
  • Tailwind-compatible styles with auto-generated colors and fonts.
  • Separate theme CSS for Tailwind v4 consumers.
  • Built with Vite, Storybook, and Vitest for fast development and testing.
  • Optional peer dependencies for integration flexibility.

Installation

# Using pnpm
pnpm add github:1stdevelopment/abrplus-ui-kit

# Using npm
npm install github:1stdevelopment/abrplus-ui-kit

# Using yarn
yarn add github:1stdevelopment/abrplus-ui-kit

Peer Dependencies

Ensure your project includes compatible peer dependencies:

  • react >= 18
  • react-dom >= 18
  • antd ^5 (optional)
  • i18next ^23 (optional)
  • react-i18next ^13 (optional)
  • react-router-dom ^6 (optional)
  • tailwind-merge ^1.14 (optional)
  • starkstring (optional)

Usage

1. Import components

import { Button } from 'abrplus-ui-kit/atoms';
import { Card } from 'abrplus-ui-kit/molecules';
import React from 'react';

2. Import styles

For global CSS:

import 'abrplus-ui-kit/style.css';

For Tailwind v4 theme CSS:

import 'abrplus-ui-kit/theme.css';

3. Ant Design overrides (optional)

import 'abrplus-ui-kit/ant-overrides';

Available Modules

  • Atoms: abrplus-ui-kit/atoms
  • Molecules: abrplus-ui-kit/molecules
  • Ant Design Overrides: abrplus-ui-kit/ant-overrides
  • Global CSS: abrplus-ui-kit/style.css
  • Theme CSS: abrplus-ui-kit/theme.css (Tailwind v4 @theme)

Scripts

| Command | Description | | ---------------------- | --------------------------------------------- | | pnpm build | Lints, formats, tests, and builds the library | | pnpm lint | Run ESLint across the project | | pnpm format | Format code with Prettier | | pnpm test | Run all Vitest tests | | pnpm test:watch | Watch mode for tests | | pnpm test:ui | Run Vitest in UI mode | | pnpm test:coverage | Generate coverage report | | pnpm storybook | Run Storybook in dev mode | | pnpm build-storybook | Build Storybook static site | | pnpm gen:icon | Generate icon components | | pnpm gen:tw | Generate Tailwind theme CSS |


Development

  1. Clone the repository and install dependencies:
pnpm install
  1. Run Storybook to preview components:
pnpm storybook
  1. Build the library for local testing:
pnpm build
  1. Run tests and coverage:
pnpm test
pnpm test:coverage

Tailwind Integration

  • The library ships two CSS files for Tailwind:
  1. style.css → global classes & default Tailwind utilities
  2. theme.css@theme variables for Tailwind v4

Usage in Tailwind v4 app:

@import 'abrplus-ui-kit/style.css';
@import 'abrplus-ui-kit/theme.css';
  • Your Tailwind config can now use the @theme variables for consistent theming.

Contributing

  • Follow ESLint and Prettier rules (pnpm lint / pnpm format)
  • Add tests for new components using Vitest
  • Use Storybook to visualize and document UI changes