1.2.13 • Published 3 months ago

@felte/preact v1.2.13

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

Felte: A form library for Preact

Tests Bundle size NPM Version codecov

Felte is an extensible form library originally built for Svelte but easily integrated with Preact using this package. Felte, on its most simple form, only requires you to set a ref to your form element to work. No custom Field or Form components are needed, making custom styles really easy to do. If you want to see it in action, you can check this CodeSandbox demo.

Features

  • Single action to make your form reactive.
  • Use HTML5 native elements to create your form. (Only the name attribute is necessary).
  • No re-renders at all unless you need to use a specific field's value within your component.
  • Provides stores and helper functions to handle more complex use cases.
  • No assumptions on your validation strategy. Use any validation library you want or write your own strategy.
  • Handles addition and removal of form controls during runtime.
  • Official solutions for error reporting using reporter packages.
  • Well tested. Currently at 99% code coverage and constantly working on improving test quality.
  • Supports validation with yup, zod and superstruct.
  • Easily extend its functionality.

Simple usage example

import { h } from 'preact';
import { useForm } from '@felte/preact';

function Form() {
  const { form } = useForm({
    onSubmit: (values) => console.log(values),
  });

  return (
    <form ref={form}>
      <input name="email" />
      <input name="password" type="password" />
      <button type="submit">Submit</button>
    </form>
  );
}

Installation

npm install --save @felte/preact

# Or, if you use yarn

yarn add @felte/preact

Usage

To learn more about how to use @felte/preact to handle your forms, check the official documentation. The API is exactly the same as @felte/react except for the import.

1.2.13

3 months ago

1.2.12

3 months ago

1.2.11

8 months ago

1.2.8

11 months ago

1.2.9

11 months ago

1.2.10

11 months ago

1.2.7

1 year ago

1.2.6

2 years ago

1.2.5

2 years ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.7

2 years ago

1.1.6

2 years ago

1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago