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

@tahahamdy/rhf-form

v1.0.7

Published

A reusable React Hook Form component system with shadcn/ui

Readme

@tahahamdy/rhf-form

A reusable, UI-agnostic React Hook Form component system with built-in Zod schema-driven AutoForm capabilities.

Features

  • UI Agnostic: Built to inject your own UI components (e.g., shadcn/ui, Material UI) via a simple FormConfigProvider.
  • Type-safe: Fully built with TypeScript.
  • AutoForm: Automatically generate forms from Zod schemas with complete customization and layout control.
  • Rich Fields: Includes a comprehensive set of pre-built React Hook Form field wrappers containing inputs, selects, creatables, date pickers, conditional fields, etc.
  • Tree-shakable: Exported via modern ESM and CJS formats.

Installation

Install the library using your preferred package manager:

npm install @tahahamdy/rhf-form

Peer Dependencies

Ensure you have the following peer dependencies installed in your project:

npm install react react-dom react-hook-form tailwindcss

Getting Started

1. Setup FormConfigProvider

Wrap your app or form area with FormConfigProvider. Provide the required UI components from your designated design system.

import { FormConfigProvider } from "@tahahamdy/rhf-form";
// Standard UI imports, e.g., from shadcn/ui
import { Input } from "@/components/ui/input";
import { Button } from "@/components/ui/button";
import { Label } from "@/components/ui/label";
// ... import other required UI primitives

export function AppProviders({ children }) {
  return (
    <FormConfigProvider
      components={{
        Input,
        Button,
        Label,
        // ... inject all required UI components according to FormUIComponents type
      }}
    >
      {children}
    </FormConfigProvider>
  );
}

2. Manual Field Usage

You can use the rich field variants in your form setup manually.

import { useForm } from "react-hook-form";
import { RHFInputField, RHFFormCard } from "@tahahamdy/rhf-form";

function MyForm() {
  const form = useForm({ defaultValues: { name: "" } });

  const onSubmit = (data) => console.log(data);

  return (
    <RHFFormCard form={form} onSubmit={onSubmit} title="Basic Form">
      <RHFInputField control={form.control} name="name" label="Full Name" />
    </RHFFormCard>
  );
}

3. AutoForm Configuration (Schema-driven forms)

Use AutoForm to construct entire forms rapidly directly from a Zod schema!

import { z } from "zod";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { AutoForm, RHFFormCard } from "@tahahamdy/rhf-form";

// Define your schema
const schema = z.object({
  fullName: z.string().min(2).describe("Full Name"),
  email: z.string().email().describe("Email Address"),
  notifications: z.boolean().describe("Receive updates?").optional(),
});

export function UserRegistrationForm() {
  const form = useForm({
    resolver: zodResolver(schema),
    defaultValues: { fullName: "", email: "", notifications: false },
  });

  return (
    <RHFFormCard
      form={form}
      onSubmit={(data) => console.log(data)}
      title="Register"
    >
      <AutoForm
        schema={schema}
        control={form.control}
        layout="stack" // or "grid"
      />
    </RHFFormCard>
  );
}

Available Fields

  • RHFInputField
  • RHFPasswordInputField
  • RHFTextareaField
  • RHFSelectField
  • RHFCreatableSelectField
  • RHFCheckboxField
  • RHFSwitchField
  • RHFDatePickerField
  • RHFDateRangePickerField
  • RHFInternationalPhoneField
  • RHFImageUpload

Structure Wrappers

  • RHFFormCard
  • RHFDialogForm
  • RHFFormSection

License

MIT License.