Fabian Hiller
Fabian Hiller
Happy to help if there are any questions about Valibot!
#3508 was merged.
Thank you for your feedback! I will look into it!
Sorry for not solving this issue. I will close this as the codemod seems to be less important now and I prefer to focus on our v1 release and new...
What framework are you using? Can you share the code for your current implementation?
You can use our `setValue` method instead: https://modularforms.dev/solid/api/setValue
I do not recommend calling it from inside. Instead, pass a function that calls `setValue` to your custom component: ```tsx setValue(formStore, 'name', value)} /> ```
Isn't the `onChange` from my last comment what you need? Otherwise you could also update the hidden input via an event to automatically trigger our normal `props.onInput` function.
> The onChange needs to be called from outside of the element. It's ok and works but it would be better to have that encapsulated into the component. I'm not...
Progressively enhanced forms and forms with file uploads make it necessary to capture all input with a HTML form field like `` and ``. Otherwise, the form input can't be...