Eden L

Results 8 comments of Eden L

This also states "3 or more" fractional columns, which can never work.

Why not even just use a simple string in place of an enum when using SQLite? SQLite is mostly just used for dev envs, and even if it wasn't, so...

Currently I can live without this by mapping the validation error name to the error message I want, but it seems like an extra step that could be done without.

Excellent! I'm really not sure if this is the best way to go about this, and doesn't really solve things like the `not` validator. In my own code I'm just...

What I did in my project was use `validator.name` not as a name but rather as a key for an i18n. This way for an error with name `between` I...

I agree manually setting a field as dirty is a less-than-perfect solution, but it's the best one I had that wouldn't require `svelte-forms` to link to the HTML element. The...

Perhaps a new label is needed for docs issues? It's more bug than feature request, but it's not very informative.

That's just for one checkbox. Svelte docs give us (`bind:group`)[https://svelte.dev/docs#template-syntax-element-directives-bind-group] to collect values like that into an array. Radio buttons also use `bind:group` but uses it to set one value...