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**? Not sure if this is a bug or a current feature 🤔 ### What is the current behavior? When...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.4 to 1.14.8. Commits 3d81dc3 Release version 1.14.8 of the npm package. 62e546a Drop confidential headers across schemes. 2ede36d Release version 1.14.7 of the npm package. 8b347cb...
### Are you submitting a **bug report** or a **feature request**? Bug report ### What is the current behavior? Forms with large amount of fields (>100, as is often the...
This issue is connected with this PR https://github.com/final-form/react-final-form/pull/513/files When onSubmit returns without delay update batches and re-render never happens. This will fix issue with `subscription` and `submitting` where `submitting` will...
Below is Final Form's example: ```js type Props = FieldRenderProps; const TextInput: React.FC = ({ input, meta, ...rest }: Props) => ( ); export default TextInput; ``` How can this...
**Describe the bug** I just came across something probably considered a feature that may cause some headaches and I'm not sure it's intended behaviour and if so, would love to...
### Are you submitting a **bug report** or a **feature request**? Please guys check the code down below in the sandbox. The same decorators but getting an error about `decorators...
### Are you submitting a **bug report** or a **feature request**? Bug Report ### What is the current behavior? When unregistering/re-registering a field on a form that is subscribed to...
### Are you submitting a **bug report** or a **feature request**? Bug Report ### What is the current behavior? If I have two fields on the page that both use...
When asking https://stackoverflow.com/q/70774121/298479 I found another question where a comment (even from @erikras IIRC) suggested storing the "raw" data in the value and converting it only during submission. However, there...