resolvers icon indicating copy to clipboard operation
resolvers copied to clipboard

📋 Validation resolvers: Yup, Zod, AJV, Joi, Superstruct, Vest, class-validator, io-ts, typanion, Ajv, TypeBox, Valibot and nope.

Results 98 resolvers issues
Sort by recently updated
recently updated
newest added

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Bumps [eslint](https://github.com/eslint/eslint) from 7.32.0 to 8.23.1. Release notes Sourced from eslint's releases. v8.23.1 Bug Fixes b719893 fix: Upgrade eslintrc to stop redefining plugins (#16297) (Brandon Mills) 734b54e fix: improve autofix...

dependencies

Related issue: https://github.com/react-hook-form/resolvers/issues/445 Added new attribute to the schemaOptions to include the ClassTransformOptions and give more flexibility to make it possible to add transformation options.

- feat infer FormType from zod schema without using type assertion ```ts const HogeSchema = z.object({ name: z.string(), age: z.number(), }); const _ = useForm({ resolver: zodResolver(HogeSchema) }); // _...

**Describe the bug** When a class is annotated with `@Expose({groups: "group-name"})` the validation doesn't work. With the plain `@Expose()` annotation there's no problem. **To Reproduce** Create a simple class to...

**Describe the bug** I upgraded the version from 2.9.10 to 3.3.2 and it stopped working. **To Reproduce** I am creating a generic function that wraps useForm ```tsx import { DefaultValues,...

Need more detail

**Describe the bug** I want to use zod's `superRefine` validation function. hook form shows that form is invalid, **but `errors` object is empty** **To Reproduce** Steps to reproduce the behavior:...

question

**Describe the bug** i got this bug in my next app ![Screen Shot 2023-11-10 at 15 43 37](https://github.com/react-hook-form/resolvers/assets/94334395/e7ef0d3f-0ed4-4035-8ecc-ced97f0548d9) > Expected 6 arguments, but got 1.ts(2554) > yup.d.ts(3, 138): An argument...

**Describe the bug** The zod resolver doesn't seem to run the superRefine function correctly on form changes, it only works when changing the field defined in the path of the...

**Describe the bug** When trying to stringify my errors object, I'm receiving a TypeError Converting circular structure to JSON **To Reproduce** Steps to reproduce the behavior: 1. Go to the...