react-final-form
react-final-form copied to clipboard
🏁 High performance subscription-based form state management for React
### Are you submitting a **bug report** or a **feature request**? Bug report ### What is the current behavior? `dirtySinceLastSubmit` is always false and `dirtyFieldsSinceLastSubmit` is always an empty Object...
### Are you submitting a **bug report** or a **feature request**? I believe it's a bug. ### What is the current behavior? In a Form with `validateOnBlur` activated, when having...
### Are you submitting a **bug report** or a **feature request**? Feature Request ### What is the current behavior? Currently, there is no way I can find that would allow...
### Are you submitting a **bug report** or a **feature request**? I'm not sure if what I'm trying is supported so it could be either. ### What is the current...
### Are you submitting a **bug report** or a **feature request**? bug ### What is the current behavior? `meta.error` errors returned from field validators is an object instead of a...
This commit https://github.com/final-form/react-final-form/issues/864 introduced a breaking change for TypeScript users because now mapped types over `FormProps` return a dictionary of `any`. For example: ```ts type FinalFormWrapperProps< FormValues extends object =...
Fix https://github.com/final-form/react-final-form/issues/809 In this PR, I delay the first onChange call to the `React.useEffect`, I think it shall fix the problem of updating while rendering.
### What is the current behavior? ```typescript const { submitError } = useFormState() ``` Then I got the following lint error. > Unsafe array destructuring of a tuple element with...
### Are you submitting a **bug report** or a **feature request**? bug report ### What is the current behavior? In my local environment, I have a Field that has `name...
### Are you submitting a **bug report** or a **feature request**? Bug ### What is the current behavior? `form.pauseValidation` is not working. It seems to be that react-final-form is calling...