Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,25 +34,25 @@ Install your preferred validation library alongside `@hookform/resolvers`.

| resolver | Infer values <br /> from schema | [criteriaMode](https://react-hook-form.com/docs/useform#criteriaMode) |
|---|---|---|
| AJV | ❌ | `firstError | all` |
| AJV | ❌ | `firstError \| all` |
| Arktype | ✅ | `firstError` |
| class-validator | ✅ | `firstError | all` |
| class-validator | ✅ | `firstError \| all` |
| computed-types | ✅ | `firstError` |
| Effect | ✅ | `firstError | all` |
| Effect | ✅ | `firstError \| all` |
| fluentvalidation-ts | ❌ | `firstError` |
| io-ts | ✅ | `firstError` |
| joi | ❌ | `firstError | all` |
| joi | ❌ | `firstError \| all` |
| Nope | ❌ | `firstError` |
| Standard Schema | ✅ | `firstError | all` |
| Standard Schema | ✅ | `firstError \| all` |
| Superstruct | ✅ | `firstError` |
| typanion | ✅ | `firstError` |
| typebox | ✅ | `firstError | all` |
| typeschema | ❌ | `firstError | all` |
| valibot | ✅ | `firstError | all` |
| vest | ❌ | `firstError | all` |
| vine | ✅ | `firstError | all` |
| yup | ✅ | `firstError | all` |
| zod | ✅ | `firstError | all` |
| typebox | ✅ | `firstError \| all` |
| typeschema | ❌ | `firstError \| all` |
| valibot | ✅ | `firstError \| all` |
| vest | ❌ | `firstError \| all` |
| vine | ✅ | `firstError \| all` |
| yup | ✅ | `firstError \| all` |
| zod | ✅ | `firstError \| all` |
</details>

## TypeScript
Expand Down Expand Up @@ -91,7 +91,9 @@ useForm<z.input<typeof schema>, any, z.output<typeof schema>>({

### Supported resolvers

- [React Hook Form Resolvers](#react-hook-form-resolvers)
- [Install](#install)
- [TypeScript](#typescript)
- [Links](#links)
- [Supported resolvers](#supported-resolvers)
- [API](#api)
Expand All @@ -118,7 +120,6 @@ useForm<z.input<typeof schema>, any, z.output<typeof schema>>({
- [fluentvalidation-ts](#fluentvalidation-ts)
- [standard-schema](#standard-schema)
- [Backers](#backers)
- [Sponsors](#sponsors)
- [Contributors](#contributors)

## API
Expand Down