jotai-form icon indicating copy to clipboard operation
jotai-form copied to clipboard

Form atoms for Jotai

Results 4 jotai-form issues
Sort by recently updated
recently updated
newest added

Types for the `fieldErrors` in `atomWithFormControls` is missing types. The `fieldErrors` and `error` split was made to be an easy way to differentiate but it seems like it's easy to...

bug
types

If I have an atom defined like this ``` export const nameAtom = atomWithValidate("", { validate: (name) => { try { name.parse(name); return name; } catch (err: any) { throw...

Right now the initial values in all form helpers take a primitive or object. Add in the ability to pass in an atom to them. At first look this might...

enhancement
help wanted

This needs more research as to how to keep it atomic but avoid the boilerplate of creating atoms manually and using adapters for schema libraries like zod or yup to...

enhancement
help wanted