Validation is not triggered with oninput
and value
props in Svelte 5
#493
Labels
documentation
Improvements or additions to documentation
Description
While it does work when using
bind:value
in aninput
tag, validation is not triggered when manually mutating the value via an oninput handler (oninput={e => $form.field = e.currentTarget.value }
).If applicable, a MRE
I've made a minimal reproduction repo. When inputting values in text fields with
oninput + value props
, the validation is not triggered, but it works when using the text fields withbind:value
.https://sveltelab.dev/github.com/rayrw/svelte5-superforms-proxy-field (right click to open in a new tab)
The text was updated successfully, but these errors were encountered: