formik
formik copied to clipboard
Build forms in React, without the tears 😭
## Bug report ### Current Behavior When settings `enableReinitialize` Formik renders twice (instead rendering once as it was in version 1.5.8 for example) ### Expected behavior Formik should render once...
## Bug report ### Current Behavior We have a use case where fields need to be updated as the result of an async function, very similar to [this example](https://formik.org/docs/examples/dependent-fields-async-api-request). However,...
## Bug report ### Current Behavior  When we select a data we get the error please see the codesandbox below ### Expected behavior we must be able to select...
When the given validation function are synchronous there is no reason to make them async. Making them async actually makes the whole code much slower and creates unecessary re-renders.
## Bug report ### Current Behavior In the `onBlur` handler of an ``, when manually calling `setFieldValue` and `setFieldTouched` in this order, and only doing validation on `setFieldTouched`, an outdated...
## Bug report The Expo Snack Demo referred to on the URL: https://formik.org/docs/overview does not work ### Current Behavior Throws error as under: ``` Unable to resolve module '@babel/runtime/helpers/interopRequireDefault.js' Evaluating...
Related to [2172](https://github.com/jaredpalmer/formik/issues/2172) Maybe it could be extended to use cases without validateOnMount but with validate function or validationSchema ?
## Bug report When using from Formik, the server action does not execute, but it works when using a regular HTML form element ## Problem Recording https://github.com/jaredpalmer/formik/assets/118288247/1fdc54fb-b73d-4079-90a9-9ca9fde2167d | Software |...
## Feature request ### Current Behavior Right now you have the option to set `validateOnBlur`. When using this in combination with the handler `handleBlur` whenever you blur out of a...
## 🐛 Bug report It looks like at one point, the FormikErrors type allowed errors to be type `any`, which was added in bug #266, to support i18n frameworks. But...