solid-forms icon indicating copy to clipboard operation
solid-forms copied to clipboard

A Solidjs library for working with forms. Demo: https://stackblitz.com/edit/vitejs-vite-mmmzfj?file=src/Example.tsx.

Results 3 solid-forms issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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 ![Image](https://github.com/user-attachments/assets/38aeb313-4476-424d-8c5d-1eefea22067d) - Bad component typing...

bug