0.2.11 • Published 5 months ago

@solidjs-final-form/core v0.2.11

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

Solid final form

npm version License: MIT Solid final form is a comprehensive library that bridges the robust form management capabilities of Final Form with the reactive and efficient rendering of Solid.js. Designed specifically for Solid.js developers, this package offers an elegant and powerful solution for creating, managing, and validating forms with ease.


Quick start

Installation:

npm i @solidjs-final-form/core final-form
# or
yarn add @solidjs-final-form/core final-form
# or
pnpm add @solidjs-final-form/core final-form

Simple usage:

For TypeScript users: Add directives to your global.d.ts

import { FormDirectives } from '@solidjs-final-form/core'

declare module "solid-js" {
  namespace JSX {
    interface Directives extends FormDirectives {}
  }
}

Examples: