All Questions
Tagged with svelte-5 sveltekit-superforms
3 questions
1
vote
1
answer
587
views
Form Enhancement with Superforms and Shadcn Svelte does not work in svelte 5
I've started a new project using svelte kit with svelte 5. I opted for shadcn-svelte and build a simple login form with superforms.
<script lang="ts">
import type {PageData} from &...
0
votes
1
answer
366
views
Svelte 5 and Superforms: Error Submiting Value of a DatePicker Component
I'm working with Svelte 5 and using Superforms for form handling. My goal is to bind a CalendarDate object from a custom DatePicker component to a Superforms field and then convert that CalendarDate ...
0
votes
1
answer
464
views
Superforms : updating array of objects
I'm trying to work with schema that looks like this (using zod):
const examSchema = z.object({
name: z.string().min(4).max(250),
message: z.string().max(500).optional(),
maxPoints: z....