solid-forms
solid-forms copied to clipboard
A Solidjs library for working with forms. Demo: https://stackblitz.com/edit/vitejs-vite-mmmzfj?file=src/Example.tsx.
There does not appear to be a way to fully reset a form. Using `setValue` on the controls doesn't update the `dirty | touched` state, so any validators that fail...
If you have a FormGroup with multiple controls, observing `control.rawValue.valueA` will emit updates even when just `control.rawValue.valueB` changed. The reason is that `rawValue` is changing whenever any nested value changes,...
I have a control defined using `withControl` and the expected props for the control and the component are reversed. ## Screenshots - Bad control typing  - Bad component typing...