Pablo Berganza
Pablo Berganza
I'd say this is expected behaviour (sort of). Felte runs validations whenever the `data` store changes, and on mount the data store is updated both when `createForm` is called and...
Can you give me some more context? What type of input are you trying to assign a value of `Infinity` to? `number`?
My initial guess here would be that context is setting the value _slightly after_ Felte has already grabbed the DOM values as initial values for the form. I'd have to...
@0bon this actually happens due to the browser itself not dispatching any events when changing the value of an input programmatically! So it's an expected behaviour. Pre-1.0.0 I had experimented...
There's no built-in way to know if the form has been submitted. But handling something like that yourself on an `onSubmit` should be possible? Regarding touched. There is an [`isDirty`](https://felte.dev/docs/svelte/stores#isdirty)...
Hey! When you say "custom component" do you mean something built with [`createField`](https://felte.dev/docs/svelte/custom-form-controls#using-createfield)? If so, it does accept an `onFormReset` function to handle situations like this.
Ah. I think I see where the issue comes from. Yeah, while Felte _does_ reset the value of the input itself (in HTML), browser's don't dispatch any event when a...
Yeah, I paused development on this to focus on v1 of [Felte](https://github.com/pablo-abc/felte). While I would like to finish this one (accesible component libraries are definitely needed), I just haven't managed...
So, ReachUI (and other "primitive only" libraries) generally don't have an API for theming. But that'd be interesting to work on, although it wouldn't be a "port" per se of...
What is your build set up? It seems your setup is trying to import marked from the UMD build rather than the ESM build.