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

@kittlekit/schema-form-react

v0.1.2

Published

React orchestration layer for bootstrap schema forms

Downloads

380

Readme

@kittlekit/schema-form-react

npm version license: MIT

React orchestration layer for Kittlekit schema forms. This package connects @kittlekit/schema-form-core to React and @tanstack/react-form without forcing a specific visual renderer.

What This Package Is

Use this package when you want:

  • schema-driven React form state
  • submit orchestration
  • field transformation and validation hooks
  • a reusable form engine that can power a custom renderer

This package is intentionally lighter than @kittlekit/schema-form-tailwind. It gives you orchestration, not a complete visual theme.

Install

npm install @kittlekit/schema-form-react @kittlekit/schema-form-core react react-dom zod @tanstack/react-form

Quick Start

import * as React from "react"
import { z } from "zod"
import { fieldMeta } from "@kittlekit/schema-form-core"
import { useSchemaForm } from "@kittlekit/schema-form-react"

const schema = z.object({
  name: z.string().describe(fieldMeta({ label: "Name" })),
  email: z.string().email().describe(fieldMeta({ label: "Email" })),
})

export function UserForm() {
  const { fields, form, submit } = useSchemaForm({
    schema,
    onSubmit: async (data) => {
      console.log(data)
    },
  })

  return (
    <form
      onSubmit={async (event) => {
        event.preventDefault()
        await submit()
      }}
    >
      {fields.map((field) => (
        <form.Field key={field.name} name={field.name}>
          {(instance) => (
            <input
              value={String(instance.state.value ?? "")}
              onChange={(event) => instance.handleChange(event.target.value)}
            />
          )}
        </form.Field>
      ))}
      <button type="submit">Submit</button>
    </form>
  )
}

Main Export

useSchemaForm(options)

Provides:

  • fields
  • form
  • defaultValues
  • submit()
  • submitError
  • setSubmitError()

Supported options

  • schema
  • defaultValues
  • formKey
  • onSubmit
  • beforeSubmit
  • validate
  • transformFields

These make it possible to customize orchestration without forking core logic.

Extension Points

transformFields

Use when you want to reorder, hide, or inject fields after Zod parsing.

validate

Use when you want domain validation in addition to Zod validation.

beforeSubmit

Use when you need final payload transformation before the validated submit step.

Typical Architectures

Headless React form

Use useSchemaForm plus your own renderer.

UI kit integration

Use useSchemaForm plus your design system components.

With Kittlekit Tailwind renderer

If you want the full prebuilt renderer, use @kittlekit/schema-form-tailwind on top of this package.

Relationship to Other Packages

schema-form-core -> schema-form-react -> schema-form-tailwind

Out of Scope

This package intentionally does not include:

  • Tailwind styling
  • upload widgets
  • map widgets
  • Next.js-only behavior
  • app-specific fetch logic

Runtime Notes

  • React-only package
  • uses @tanstack/react-form
  • ESM package with runtime JS + type definitions

Publish

npm run build --workspace @kittlekit/schema-form-react
npm publish --workspace @kittlekit/schema-form-react --access public

Examples

  • smoke app: sandbox/schema-form-smoke
  • app integration: web/src/components/form/SchemaForm.tsx

Release Notes

0.1.1

  • exposed stable React orchestration on top of schema-form-core
  • validated submit lifecycle and package consumption from npm