Releases: jaredpalmer/formik
Releases · jaredpalmer/formik
v0.9.0-beta.2
- Fix type signature of
FormikBag
inwithFormik()
v0.9.0-beta.1
- Fix TS type in
handleSubmit
ofwithFormik
Begin internal migration to 0.9.0 @palmerhq ...
v0.9.0-alpha.10
- Fix incorrect prop-type on
<Field />
v0.8.9
v0.8.8
v0.8.7
tl;dr
validationSchema
can now alternatively accept a function that returns a Yup schema (instead of just a schema)
Old:
validationSchema?: Schema
New:
validationSchema?: Schema | ((props: Props) => Schema)
v0.8.6
v0.8.5
- Make sure
status
is reset when callingresetForm
v0.8.3
Patch Release:
- Don't use
Object.values
to compute thedirty
prop.