sveltekit-superforms
sveltekit-superforms copied to clipboard
Making SvelteKit forms a pleasure to use!
- [X] Before posting an issue, read the [FAQ](https://superforms.rocks/faq) and search the previous issues. **Description** Maybe a bug, maybe is supposed to be so. Please close if the latter. I...
1. Why is `onUpdate` used to submit a form in SPA mode without +page.ts? https://superforms.rocks/concepts/spa#without-a-pagets-file 2. How to reset a form after it's submitted? 3. How to reset a form...
**Is your feature request related to a problem? Please describe.** I really need a "touched" feature. A touched input field is a field that the user focused and blurred (onBlur)....
- [X] Before posting an issue, read the [FAQ](https://superforms.rocks/faq) and search the previous issues. **Description** A clear and concise description of what the bug is, and, unless obvious, what you...
**Is your feature request related to a problem? Please describe.** Arktype adapter currently requires defaults; as of arktype 2.0.0-beta.6, arktype supports jsonschema conversion, which could be used to generate defaults,...
**Is your feature request related to a problem? Please describe.** I'm using valibot adapter which also supports transformations. Consider the schema: ``` const schema = v.object({ email: v.pipe(v.string(), v.trim(), v.toLowerCase(),...
- [x] Before posting an issue, read the [FAQ](https://superforms.rocks/faq) and search the previous issues. **Description** I have a pretty dense SPA superform component that throws an error from `EnhancedForm_destroy`, because...
**Description** I'm encountering a critical issue with `sveltekit-superforms` where none of the form fields are being recognized. Despite following the documentation and ensuring that `dataType: 'json'` is set and `use:enhance`...
**Is your feature request related to a problem? Please describe.** I have some slow data that needs to be fetched from a database, which pre-populates the form. I don't want...
**Description** Currently I'm using superforms with Svelte 5 just fine. However, when I use $effect or some reactive code on a field input value, it will trigger on every other...