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

lambda-ui-components

v1.3.3

Published

Modern, accessible, and themeable React UI components library built with TypeScript and Framer Motion.

Downloads

1,049

Readme

Lambda UI Components

npm version license downloads GitHub Repo stars React 18+ Build Status

Lambda UI Components is a modern, accessible, and flexible React component library designed to help you build beautiful, consistent, and scalable user interfaces with ease. Every component is crafted with precision and attention to detail.

✨ Features

  • Accessible by default: Components follow WAI-ARIA guidelines and are keyboard-friendly.
  • Modern design: Built-in dark mode, theming, and responsive layouts.
  • Developer experience: TypeScript-first, clear props, and Storybook demos.
  • Flexible & composable: Extend, override, or compose components as you need.

🚀 Installation

Lambda UI Components is published as an npm package. You can install it using your favorite package manager:

pnpm add lambda-ui-components
# or
npm install lambda-ui-components
# or
yarn add lambda-ui-components

Tip: For best results, use pnpm or yarn in monorepo setups.

⚡ Peer Dependencies

Lambda UI Components requires React 18+ and ReactDOM as peer dependencies. Make sure they are installed in your project.

pnpm add react react-dom

For syntax highlighting in CodeBlock, install prismjs:

pnpm add prismjs

🎨 Importing CSS

Import the Lambda UI CSS in your main entry file (usually src/index.tsx or _app.tsx in Next.js):

import "lambda-ui-components/dist/main.css";

This ensures all components are styled correctly out of the box.

🛠️ Theme & Configuration Providers

For advanced theming, localization, and consistent UI configuration, wrap your app with LambdaConfigProvider and ThemeProvider at the root of your component tree:

import { LambdaConfigProvider, ThemeProvider } from "lambda-ui-components";

export default function App({ children }) {
  return (
    <LambdaConfigProvider lang="en">
      <ThemeProvider defaultTheme="dark">
        {children}
      </ThemeProvider>
    </LambdaConfigProvider>
  );
}

📦 Basic Usage

Import and use components in your React app:

import { Button, Card } from "lambda-ui-components";

export default function Example() {
  return (
    <Card>
      <Button color="primary">Hello Lambda UI</Button>
    </Card>
  );
}

All components are fully typed and support both controlled and uncontrolled usage patterns.

Next.js & RSC

If you use Next.js App Router, add "use client" at the top of your page or component file whenever you use interactive components:

"use client";
import { Button } from "lambda-ui-components";
// ...

This is only necessary in Next.js App Router. In Vite, Astro, Remix, or CRA, you do not need this directive.

🧩 Components Included

Lambda UI offers a comprehensive set of UI primitives and advanced components, including:

  • Button
  • Input & TextArea
  • Select & Dropdown
  • Checkbox & Radio
  • Switch
  • Dialog & Drawer
  • Notification
  • Table & Pagination
  • Card
  • Tabs
  • Slider
  • Avatar
  • Progress
  • Skeleton
  • Stepper (with custom validation)
  • And many more…

🎨 Theming & Customization

  • CSS Variables: Lambda UI Components uses CSS variables for theming. You can globally override the theme by changing variables in your CSS or using data-theme for dark mode and custom themes.
  • Unstyled Prop: To customize the style of specific components, many support the unstyled prop, which removes default styles so you can apply your own.

📅 Latest Updates (v1.1.0)

🎉 New Features

  • Stepper: Added onStepValidate callback for custom step validation
    • Support for both sync and async validation
    • Block step advancement when validation fails
    • Display custom error messages with visual feedback
    • See CHANGELOG.md for full details

⚠️ Breaking Changes

  • Stepper: Refactored to use children composition pattern (removed steps prop)

🐛 Fixes & Improvements

  • Stepper: Improved styling and layout consistency
  • Stepper: Better TypeScript type safety

📋 Changelog

For a complete list of changes, improvements, and breaking changes across all versions, see CHANGELOG.md.

🤝 Contribution

  • Fork the repo and create a PR with your improvement or bugfix.
  • Follow the component and style conventions.

📝 License

This project is licensed under the MIT License. You can freely use it in personal and commercial projects. See the LICENSE file for more details.

Developed by BitCoder__