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

@bip-design-systems/ui-components

v0.2.2

Published

BipUI — React component library

Readme

@bip-design-systems/ui-components

React component library with full TypeScript support, CSS Modules, and design tokens. Built for the BipUI design system.

npm version license


Requirements

  • React 18+
  • Node >= 20

Installation

pnpm add @bip-design-systems/ui-components
# or
npm install @bip-design-systems/ui-components

Setup

Import the compiled CSS in your app entry point. No Tailwind or other CSS tooling required.

// src/main.tsx (or index.tsx)
import '@bip-design-systems/ui-components/style.css';

Quick Start

import { Button, Input, ToastProvider, useToast } from '@bip-design-systems/ui-components';

export const App = () => (
  <ToastProvider>
    <MyPage />
  </ToastProvider>
);

const MyPage = () => {
  const { addToast } = useToast();
  return (
    <div>
      <Input label="Nombre" />
      <Button
        variant="primary"
        onClick={() => addToast({ variant: 'success', title: '¡Guardado!', message: 'Los cambios fueron guardados.' })}
      >
        Guardar
      </Button>
    </div>
  );
};

Components

Form inputs

| Component | Description | |-----------|-------------| | Button | primary, secondary, bare, soul variants · sm / md / lg sizes | | Input | Text field with label, helper text, error, disabled, readOnly states | | Textarea | Text area with resize control (none / vertical / horizontal / both) | | Select | Native select with custom chevron, variants, and accessibility | | MultiSelect | Multi-value select with chips, internal search, and keyboard navigation | | Checkbox | Accessible checkbox with indeterminate state support | | CheckboxGroup | Group of related checkboxes | | Radio | Radio button with label and helper text | | Toggle | On/off switch with integrated label | | DatePicker | Date picker with calendar, min/max range, and full accessibility | | TimePicker | Time picker with scrollable H/M columns and configurable step | | DateRangePicker | Date range picker (start + end) with dual calendars | | Calendar | Standalone reusable calendar | | FileUpload | Drag-and-drop file upload zone | | SearchInput | Input with integrated search icon |

Feedback

| Component | Description | |-----------|-------------| | Alert | Status messages: info, success, warning, error · dismiss button · role="status"/"alert" | | Toast | Floating notifications via <ToastProvider> + useToast() hook · auto-dismiss with progress bar | | Badge | Compact label with semantic variants and optional dot indicator | | Spinner | Animated loading indicator with sizes and colors | | Skeleton | Loading placeholder: text, circle, rect variants | | ProgressBar | Progress bar with color variants and animation |

Content & data

| Component | Description | |-----------|-------------| | Card | Compound card: CardHeader, CardBody, CardFooter | | Table | Responsive table: TableHead, TableBody, TableRow, TableHeader, TableCell · sortable, striped, compact, selectable rows | | DataTable | Advanced table with pagination, sorting, and integrated filtering | | StatsCard | Stat card with main value, label, and trend | | Avatar / AvatarGroup | User avatar with image or initials; AvatarGroup for stacked overflow | | Timeline / TimelineItem | Vertical timeline with customizable items | | Stepper / StepperStep | Wizard step indicator with completed/active/pending states |

Navigation

| Component | Description | |-----------|-------------| | Navbar | Compound navigation bar: NavbarBrand, NavbarNav, NavbarItem, NavbarActions · sticky, responsive hamburger menu | | Breadcrumb | Navigation breadcrumb with configurable separator | | Tabs | Accessible tabs: TabList, Tab, TabPanel | | Pagination | Paginator with first/last page jump | | Dropdown | Compound dropdown menu: DropdownTrigger, DropdownMenu, DropdownItem, DropdownDivider · full keyboard navigation | | Accordion | Expandable panel compound: AccordionItem, AccordionTrigger, AccordionContent |

Overlay

| Component | Description | |-----------|-------------| | Modal | Dialog with focus trap and portal: ModalHeader, ModalBody, ModalFooter | | ConfirmDialog | Confirmation dialog with positive/negative actions | | DrawerPanel | Side sliding panel with background overlay | | Tooltip | Positionable tooltip with configurable delay |

Sidebar

| Component | Description | |-----------|-------------| | Sidebar | Compound sidebar: SidebarHeader, SidebarBrand, SidebarContent, SidebarGroup, SidebarGroupLabel, SidebarItem, SidebarFooter, SidebarTrigger · collapsible (w-60↔w-16), mobile drawer |

Utilities

| Component | Description | |-----------|-------------| | Divider | Horizontal or vertical divider with optional label | | EmptyState | Empty state with icon, title, description, and primary action | | Odontogram | Interactive odontogram for recording dental conditions per tooth |


Peer dependencies

{
  "react": ">=18",
  "react-dom": ">=18"
}

Links


License

MIT — Copyright (c) 2026 Eduardo Gonzalez