Skip to content

Releases: jaredpalmer/formik

formik-native@2.1.10-next.6

16 Nov 15:51
3c51c71
Compare
Choose a tag to compare
Pre-release

Patch Changes

  • Updated dependencies [4e515a4]:
    • formik@3.0.0-next.6

formik-native@2.1.10-next.5

16 Nov 15:04
76fa3c7
Compare
Choose a tag to compare
Pre-release

Patch Changes

  • Updated dependencies [50433fa]:
    • formik@3.0.0-next.5

formik@3.0.0-next.4

14 Nov 19:46
f828d75
Compare
Choose a tag to compare
formik@3.0.0-next.4 Pre-release
Pre-release

Patch Changes

  • 0ad41eb #2903 Thanks @jaredpalmer! - Renames unstable_StrictField to FastField and thus deprecates <FastField shouldUpdate> prop. If you need this functionality, use useFormikContext() and useField() in a custom component wrapped in React.memo() instead. In addition, and this is breaking, FastField is no longer passed form object in any render prop.

    If you still need to access the form object in render use FormikConsumer like so:

    - import { FastField } from 'formik'
    + import { FastField, FormikConsumer } from 'formik'
    
    <FastField name="firstName">
    - {({ field, meta, form }) => ( /* ... */ )}
    + {({ field, meta }) => (
    +   <FormikConsumer>{form => /* ... */}</FormikConsumer>
    + )}
    </FastField>

formik-native@2.1.10-next.4

14 Nov 19:46
f828d75
Compare
Choose a tag to compare
Pre-release

Patch Changes

  • Updated dependencies [0ad41eb]:
    • formik@3.0.0-next.4

formik@2.2.5

11 Nov 22:44
8b1abb2
Compare
Choose a tag to compare

Patch Changes

formik-native@2.1.13

11 Nov 22:44
8b1abb2
Compare
Choose a tag to compare

Patch Changes

formik@3.0.0-next.3

11 Nov 23:22
036af69
Compare
Choose a tag to compare
formik@3.0.0-next.3 Pre-release
Pre-release

Patch Changes

  • 6383b86 #2893 Thanks @jaredpalmer! - Added optimized Form, ErrorMessage, and the following additional optimized field-level hooks
    and components that only rerender when their respective slices have changed:

    • unstable_useFieldValue
    • unstable_useFieldTouched
    • unstable_useFieldError
    • unstable_useStrictField
    • unstable_StrictField

    In addition, there is a very very unstable unstable_useFormikContextSelector that we'll be using
    to prototype other APIss in product that is also included. This will definitely not be released, so you have been warned.

formik-native@2.1.10-next.3

11 Nov 23:22
036af69
Compare
Choose a tag to compare
Pre-release

Patch Changes

  • Updated dependencies [6383b86]:
    • formik@3.0.0-next.3

formik@2.2.4

10 Nov 19:58
f2fab98
Compare
Choose a tag to compare

Patch Changes

formik-native@2.1.12

10 Nov 19:58
f2fab98
Compare
Choose a tag to compare

Patch Changes