<script lang="ts"> import { type ArtistInput } from '$gql/Mutations'; import { type OmitIdentifiers } from '$gql/Utils'; import { type Artist } from '$gql/graphql'; import Labelled from '$lib/components/Labelled.svelte'; import { createEventDispatcher } from 'svelte'; const dispatch = createEventDispatcher<{ submit: ArtistInput }>(); export let artist: OmitIdentifiers<Artist>; function submit() { dispatch('submit', { name: artist.name }); } </script> <form on:submit|preventDefault={submit}> <div class="grid-labels"> <Labelled label="Name" let:id> <!-- svelte-ignore a11y-autofocus --> <input autofocus required {id} bind:value={artist.name} /> </Labelled> </div> <slot /> </form>