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

dylangerlach-ui-library

v1.3.4

Published

React UI component library with MUI-style theming and Tailwind CSS. Includes form inputs, buttons, menus, and more with full TypeScript support.

Readme

UI Library

A React component library built with Tailwind CSS and MUI-style theming. Includes form inputs, buttons, menus, and more with full TypeScript support.

Installation

npm install dylangerlach-ui-library

Quick Start

1. Import the CSS

import "dylangerlach-ui-library/dist/index.css";

2. Set Up Theming (REQUIRED)

This library requires MUI-style theming. You must wrap your app with ThemeProvider and define a palette.

import { ThemeProvider, createTheme } from "dylangerlach-ui-library";

const theme = createTheme({
  palette: {
    primary: {
      main: "#1976d2",
      contrastText: "#fff",
    },
    secondary: {
      main: "#dc004e",
      contrastText: "#fff",
    },
    // ... other palette colors
  },
  mode: "light", // or "dark"
});

function App() {
  return (
    <ThemeProvider theme={theme}>
      <YourApp />
    </ThemeProvider>
  );
}

Theme System

This library uses MUI-style theming (Material-UI pattern). All components use theme colors via the useTheme() hook.

Theme Structure

The theme follows Material-UI's palette structure:

interface Palette {
  primary: PaletteColor;      // Brand primary color
  secondary: PaletteColor;     // Brand secondary color
  accent: PaletteColor;        // Accent color
  success: PaletteColor;       // Success/positive actions
  warning: PaletteColor;       // Warning/caution
  error: PaletteColor;         // Error/destructive actions
  info: PaletteColor;          // Informational
  background: {
    default: string;           // Page background
    paper: string;             // Card/paper background
  };
  text: {
    primary: string;           // Primary text
    secondary: string;         // Secondary text
    disabled: string;          // Disabled text
  };
  divider: string;             // Divider lines
  border: string;              // Borders
}

Creating Custom Themes

import { createTheme } from "dylangerlach-ui-library";

// Minimal theme (uses defaults for unspecified colors)
const theme = createTheme({
  palette: {
    primary: {
      main: "#1976d2",
      contrastText: "#fff",
    },
  },
});

// Full custom theme
const customTheme = createTheme({
  palette: {
    primary: {
      main: "#1976d2",
      light: "#42a5f5",
      dark: "#1565c0",
      contrastText: "#fff",
    },
    secondary: {
      main: "#dc004e",
      contrastText: "#fff",
    },
    background: {
      default: "#f5f5f5",
      paper: "#ffffff",
    },
    text: {
      primary: "#212121",
      secondary: "#757575",
      disabled: "#bdbdbd",
    },
  },
  mode: "light",
});

Light/Dark Mode

import { ThemeProvider, useThemeMode } from "dylangerlach-ui-library";

function App() {
  const { mode, toggleMode } = useThemeMode();
  
  return (
    <ThemeProvider defaultMode="dark">
      <button onClick={toggleMode}>
        Switch to {mode === "light" ? "dark" : "light"} mode
      </button>
      <YourApp />
    </ThemeProvider>
  );
}

Components

Form Inputs

TextInput

Single-line text input with label, error handling, and icons.

import { TextInput } from "dylangerlach-ui-library";

<TextInput
  label="Email"
  value={email}
  onChange={setEmail}
  error={errors.email}
  helperText="Enter your email address"
  startIcon={<MailIcon />}
/>

TextBoxInput

Multi-line text input (textarea) with validation.

import { TextBoxInput } from "dylangerlach-ui-library";

<TextBoxInput
  label="Description"
  value={description}
  onChange={setDescription}
  rows={5}
  error={errors.description}
/>

EmailInput

Email input with built-in validation.

import { EmailInput } from "dylangerlach-ui-library";

<EmailInput
  label="Email"
  value={email}
  onChange={setEmail}
  validate
/>

PasswordInput

Password input with visibility toggle and optional strength indicator.

import { PasswordInput } from "dylangerlach-ui-library";

<PasswordInput
  label="Password"
  value={password}
  onChange={setPassword}
  showStrength
/>

DateInput

Date picker with single date or range selection.

import { DateInput } from "dylangerlach-ui-library";

// Single date
<DateInput
  label="Start Date"
  value={startDate}
  onChange={setStartDate}
  preventFuture
/>

// Date range
<DateInput
  mode="range"
  value={[startDate, endDate]}
  onChange={([start, end]) => {
    setStartDate(start);
    setEndDate(end);
  }}
/>

CheckboxInput

Checkbox with label and validation.

import { CheckboxInput } from "dylangerlach-ui-library";

<CheckboxInput
  label="I agree to the terms"
  checked={agreed}
  onChange={setAgreed}
  required
  error={errors.agreement}
/>

DropdownInput

Single-select dropdown.

import { DropdownInput } from "dylangerlach-ui-library";

<DropdownInput
  label="Country"
  value={selectedCountry}
  onChange={setSelectedCountry}
  options={[
    { id: "us", name: "United States" },
    { id: "uk", name: "United Kingdom" },
  ]}
/>

PaginatedDropdownInput

Async dropdown with pagination support.

import { PaginatedDropdownInput } from "dylangerlach-ui-library";

<PaginatedDropdownInput
  label="User"
  loadOptions={async (search, loadedOptions) => {
    const response = await fetch(
      `/api/users?q=${search}&page=${loadedOptions.length / 20}`
    );
    const data = await response.json();
    return { options: data.users, hasMore: data.hasMore };
  }}
  value={selectedUser}
  onChange={setSelectedUser}
/>

JsonInput

JSON textarea with syntax validation and formatting.

import { JsonInput } from "dylangerlach-ui-library";

<JsonInput
  label="Configuration"
  value={config}
  onChange={setConfig}
/>

ColorSelector

Color picker with popover interface.

import { ColorSelector } from "dylangerlach-ui-library";

<ColorSelector
  value={color}
  onChange={setColor}
  label="Background Color"
/>

Buttons & Actions

Button

Versatile button with variants, sizes, and loading states.

import { Button } from "dylangerlach-ui-library";

<Button variant="primary" size="md" onClick={handleClick}>
  Click me
</Button>

<Button
  variant="primary"
  icon={<Icon />}
  iconPosition="left"
  isLoading={isLoading}
>
  Submit
</Button>

IconButton

Button designed for displaying icons.

import { IconButton } from "dylangerlach-ui-library";

<IconButton
  label="Settings"
  active={isSettingsOpen}
  onClick={toggleSettings}
>
  <SettingsIcon />
</IconButton>

ToggleIcon

Toggleable icon button.

import { ToggleIcon } from "dylangerlach-ui-library";

<ToggleIcon
  icon={<HeartIcon />}
  active={isFavorited}
  onToggle={() => setIsFavorited(!isFavorited)}
  label="Favorite"
/>

Menus & Navigation

DropdownMenu

Dropdown menu with nested submenu support.

import { DropdownMenu } from "dylangerlach-ui-library";

const [open, setOpen] = useState(false);

<DropdownMenu
  trigger={<Button>Actions</Button>}
  items={[
    { id: "1", label: "Edit", onClick: () => console.log("Edit") },
    { id: "2", label: "Delete", variant: "danger", onClick: () => console.log("Delete") },
    {
      id: "3",
      label: "More",
      children: [
        { id: "3-1", label: "Option 1", onClick: () => {} },
        { id: "3-2", label: "Option 2", onClick: () => {} },
      ],
    },
  ]}
  open={open}
  onOpenChange={setOpen}
/>

Loading Indicators

Spinner

Simple spinning loader icon.

import { Spinner } from "dylangerlach-ui-library";

<Spinner className="h-6 w-6" />

ThreeDotLoader

Three-dot loading animation.

import { ThreeDotLoader } from "dylangerlach-ui-library";

<ThreeDotLoader pace="fast" className="h-4 w-4" />

TypeScript Support

Full TypeScript support with exported types:

import type {
  Theme,
  ThemeOptions,
  ThemeMode,
  Palette,
  PaletteOptions,
  PaletteColor,
  DropdownMenuItem,
  DropdownMenuProps,
} from "dylangerlach-ui-library";

API Reference

See the package documentation for detailed API reference.

License

MIT