Pablo Berganza
Pablo Berganza
Sorry for the delay! I've been thinking over this. I can see the usefulness of this so I do want to implement this. Currently this behaviour is implemented on reporters...
Take this as experimental (since I'd like to explore other behaviours) but for now, the latest version of `@felte/reporter-dom` also accepts an option `preventFocusOnError`: ```javascript import reporter from '@felte/reporter-dom'; const...
This sounds like a bug! I'll label is as such and see why it's happening ASAP.
Hey! I'm really sorry for the delay. What version of validator-yup are you using? Might you be using a pre 1.0.0 version? Since 1.0.0 this package has the API that's...
Due to how data moves in Felte, Felte has no access to transformed values! Although there is a way to do this (validator-yup does this) I'm not sure why I...
Hey! The way to do this would be using both the [`reset`](https://felte.dev/docs/svelte/helper-functions#reset) helper (returned from createForm) and the [`initialValues`](https://felte.dev/docs/svelte/default-data) configuration option. This way the initial values would be under your...
Are you setting the 'initialValues' option? Without setting initialValues it might take an extra tick for Felte to set the stores. Although I'd have expected that to already be available...
Thanks for the report! This seems to be an issue on my side. _But_ it works if you remove the `(interest.key)` part. ```svelte import { createForm } from 'felte'; const...
As a further update. I'm not sure how I did not catch this before but: If you want to key your items (using interest.key like the example), add the attribute...
Just transformed it to a draft! No worries about it. Give me a while to look over the rest!