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-tailwind

v0.1.2

Published

Tailwind-rendered schema form components for bootstrap schema forms

Readme

@kittlekit/schema-form-tailwind

npm version license: MIT

Tailwind-oriented renderer package for Kittlekit schema forms. It provides field rendering utilities, layout helpers, field arrays, a date picker, and small reusable UI helpers used by the packaged form renderer.

What This Package Is

Use this package when you want:

  • a ready-made visual renderer for schema-driven forms
  • Tailwind-based layout and field helpers
  • a form UI layer on top of schema-form-core and schema-form-react

This package is still intentionally composable: it accepts injected UI primitives instead of forcing one hardcoded app shell.

Install

npm install @kittlekit/schema-form-tailwind @kittlekit/schema-form-react @kittlekit/schema-form-core react react-dom tailwindcss

Depending on which components you use, you may also need:

  • @base-ui/react
  • class-variance-authority
  • clsx
  • tailwind-merge
  • date-fns
  • react-day-picker
  • lucide-react

Main Exports

  • TailwindFieldRenderer
  • FieldArray
  • FieldErrors
  • LoadingOverlay
  • DatePicker
  • grid helpers such as getColSpanClass
  • small reusable UI helpers such as Button, Popover, cn

Quick Start

import { TailwindFieldRenderer } from "@kittlekit/schema-form-tailwind"

In most apps, you inject your own UI primitives into the renderer instead of using the package in total isolation.

Renderer Pattern

The package is designed around injected components.

For example, TailwindFieldRenderer expects you to provide primitives for:

  • inputs
  • selects
  • multiselect
  • checkbox/switch
  • radio group
  • autocomplete

This keeps the package reusable while preserving the current visual direction.

Typical Use Cases

App wrapper package

Your app can create a tiny wrapper that injects your design system primitives and keeps the rest reusable.

Shared internal design system

If several apps share the same UI primitives, this package can be the shared renderer layer.

Relationship to Other Packages

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

Optional addons

  • @kittlekit/schema-form-upload-next
  • @kittlekit/schema-form-map-leaflet

Those remain separate so every consumer does not have to pull in upload or map runtime dependencies.

Out of Scope

This package intentionally does not include:

  • your app-specific file upload transport
  • your map provider configuration
  • auth/session coupling

Runtime Notes

  • React package
  • Tailwind-oriented styling
  • ESM runtime with JS + typings

Publish

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

Examples

  • smoke app: sandbox/schema-form-smoke
  • field renderer wrapper: web/src/components/form/FieldRenderer.tsx

Release Notes

0.1.1

  • packaged the Tailwind renderer layer, field arrays, and date picker
  • validated external installation in a clean smoke app