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

@skybin-tech/nebula-ui

v0.0.25

Published

Reusable React component library with form validation using shadcn/ui patterns, react-hook-form, and Zod

Readme

nebula-ui

A React component library built on shadcn/ui patterns, providing form-integrated components with automatic Zod validation, accessible primitives, and utility hooks.

See CHANGELOG.md for release history.

Installation

npm install @skybin-tech/nebula-ui

Peer dependencies

npm install react react-dom react-hook-form @hookform/resolvers zod \
  @radix-ui/react-avatar @radix-ui/react-checkbox @radix-ui/react-dropdown-menu \
  @radix-ui/react-label @radix-ui/react-radio-group @radix-ui/react-select \
  @radix-ui/react-separator @radix-ui/react-slot @radix-ui/react-switch \
  class-variance-authority clsx tailwind-merge lucide-react tailwindcss

Styles

Import the stylesheet once in your app entry point:

import "@skybin-tech/nebula-ui/styles.css";

Form system

The form system is built around react-hook-form and zod. Wrap fields in <Form> and each field automatically registers its validation rules — no need to define a schema separately.

Form

The root form component. Provides context to all child fields and handles validation and submission.

import { Form, TextBox, Button } from "@skybin-tech/nebula-ui";

<Form
  onSubmit={(data) => console.log(data)}
  defaultValues={{ username: "", email: "" }}
>
  <TextBox name="username" label="Username" required minLength={3} maxLength={50} />
  <TextBox name="email" label="Email" type="email" required email />
  <Button type="submit">Submit</Button>
</Form>

You can also provide a base Zod schema that gets merged with field-level rules:

const baseSchema = z.object({ username: z.string(), email: z.string() });

<Form schema={baseSchema} onSubmit={handleSubmit}>
  <TextBox name="username" required minLength={3} />
  <TextBox name="email" required email />
</Form>

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | onSubmit | SubmitHandler | — | Form submit handler | | onError | SubmitErrorHandler | — | Validation error handler | | defaultValues | object | — | Initial field values | | values | object | — | Controlled field values | | schema | ZodType | — | Base Zod schema (merged with field rules) | | config | FormConfig | — | Form-wide configuration (size, layout, etc.) | | form | UseFormReturn | — | External RHF form instance | | mode | string | "onBlur" | When to trigger validation | | reValidateMode | string | "onChange" | When to re-validate after first submission |

FormConfig options

| Key | Type | Default | Description | |-----|------|---------|-------------| | size | "sm" \| "md" \| "lg" | "md" | Default size for all fields | | layout | "vertical" \| "horizontal" \| "inline" | "vertical" | Layout direction | | labelWidth | string \| number | — | Label width for horizontal layout | | disabled | boolean | false | Disable all fields | | colon | boolean | true | Append : to labels | | showInlineErrors | boolean | true | Show validation errors inline | | validateOnBlur | boolean | true | Validate on blur | | validateOnChange | boolean | false | Validate on change |


TextBox

Single-line text input with full form integration.

<TextBox name="username" label="Username" required minLength={3} maxLength={50} />
<TextBox name="email" label="Email" type="email" required email />
<TextBox name="website" label="Website" url />
<TextBox name="amount" label="Amount" type="number" minValue={0} maxValue={100} />
<TextBox name="search" label="Search" prefix={<SearchIcon />} allowClear />

Validation props

| Prop | Type | Description | |------|------|-------------| | required | boolean \| string | Mark as required; string sets the error message | | minLength | number \| { value, message } | Minimum character count | | maxLength | number \| { value, message } | Maximum character count | | minValue | number \| { value, message } | Minimum numeric value | | maxValue | number \| { value, message } | Maximum numeric value | | pattern | RegExp \| { value, message } | Regex pattern | | email | boolean \| string | Email format validation | | url | boolean \| string | URL format validation | | validate | (value) => boolean \| string | Custom validation function |


TextArea

Multi-line text input with optional character count display.

<TextArea name="description" label="Description" required minLength={10} />
<TextArea name="bio" label="Bio" showCount maxCount={500} maxLength={500} />

Supports the same validation props as TextBox (except minValue, maxValue, email, url, pattern).


Select

Dropdown select with support for an options array or custom children.

<Select
  name="country"
  label="Country"
  required
  options={[
    { label: "USA", value: "us" },
    { label: "Canada", value: "ca" },
  ]}
/>

// Or with custom children
<Select name="role" label="Role" required>
  <SelectItem value="admin">Admin</SelectItem>
  <SelectItem value="user">User</SelectItem>
</Select>

Checkbox

Boolean checkbox field. When required is set, the checkbox must be checked to pass validation.

<Checkbox name="terms" label="I agree to the terms and conditions" required />
<Checkbox name="newsletter" label="Subscribe to newsletter" />

RadioGroup

A group of mutually exclusive radio buttons. Accepts an options array or custom RadioItem children.

<RadioGroup
  name="gender"
  label="Gender"
  required
  options={[
    { label: "Male", value: "male" },
    { label: "Female", value: "female" },
    { label: "Other", value: "other" },
  ]}
/>

// Horizontal layout
<RadioGroup name="size" label="Size" direction="horizontal" options={[...]} />

Switch

Toggle switch backed by a boolean form field.

<Switch name="notifications" label="Enable notifications" />
<Switch name="terms" label="Accept terms" required="You must accept the terms" />
<Switch name="darkMode" label="Dark mode" checkedText="On" uncheckedText="Off" />

Display components

Button

A styled button with multiple variants, sizes, and a built-in loading state.

import { Button } from "@skybin-tech/nebula-ui";

<Button variant="primary" size="md">Save</Button>
<Button variant="outline" loading>Saving…</Button>
<Button variant="danger" fullWidth>Delete</Button>

| Variant | Description | |---------|-------------| | primary | Filled primary colour (default) | | secondary | Filled secondary colour | | outline | Transparent with primary border | | ghost | Transparent, no border | | danger | Destructive / red |

Sizes: sm, md (default), lg.


Card

Composable card layout components.

import { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from "@skybin-tech/nebula-ui";

<Card>
  <CardHeader>
    <CardTitle>Title</CardTitle>
    <CardDescription>Subtitle</CardDescription>
  </CardHeader>
  <CardContent>Content goes here</CardContent>
  <CardFooter>Footer</CardFooter>
</Card>

Badge

Small status or label indicator.

import { Badge } from "@skybin-tech/nebula-ui";

<Badge variant="default">New</Badge>
<Badge variant="secondary">Beta</Badge>
<Badge variant="destructive">Error</Badge>
<Badge variant="outline">Draft</Badge>

Avatar

User avatar with image and fallback initials.

import { Avatar, AvatarImage, AvatarFallback } from "@skybin-tech/nebula-ui";

<Avatar>
  <AvatarImage src="/avatar.jpg" alt="John Doe" />
  <AvatarFallback>JD</AvatarFallback>
</Avatar>

DropdownMenu

Accessible dropdown built on Radix UI.

import {
  DropdownMenu,
  DropdownMenuTrigger,
  DropdownMenuContent,
  DropdownMenuItem,
  DropdownMenuSeparator,
} from "@skybin-tech/nebula-ui";

<DropdownMenu>
  <DropdownMenuTrigger asChild>
    <Button variant="outline">Options</Button>
  </DropdownMenuTrigger>
  <DropdownMenuContent>
    <DropdownMenuItem>Edit</DropdownMenuItem>
    <DropdownMenuItem>Duplicate</DropdownMenuItem>
    <DropdownMenuSeparator />
    <DropdownMenuItem>Delete</DropdownMenuItem>
  </DropdownMenuContent>
</DropdownMenu>

Separator

A horizontal or vertical divider line.

import { Separator } from "@skybin-tech/nebula-ui";

<Separator />
<Separator orientation="vertical" />

Hooks

useDebounce

Debounces a value, returning the latest value only after the specified delay has elapsed with no further changes.

import { useDebounce } from "@skybin-tech/nebula-ui";

const debouncedSearch = useDebounce(searchTerm, 300);

useToggle

Returns a boolean state and a stable toggle function.

import { useToggle } from "@skybin-tech/nebula-ui";

const [isOpen, toggleOpen] = useToggle(false);

Utilities

cn

Merges Tailwind CSS class names, handling conflicts via tailwind-merge.

import { cn } from "@skybin-tech/nebula-ui";

<div className={cn("p-4 text-sm", isActive && "bg-primary text-white")} />