0.2.11 • Published 5 months ago

@solidjs-final-form/arrays v0.2.11

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

Solid final form - arrays

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/arrays final-form-arrays
# or
yarn add @solidjs-final-form/arrays final-form-arrays
# or
pnpm add @solidjs-final-form/arrays final-form-arrays

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: