zwischenstand

This commit is contained in:
2024-02-13 16:36:09 +00:00
parent e5fba13002
commit 5763db4e22
187 changed files with 16453 additions and 1359 deletions

View File

@@ -1,7 +1,8 @@
<script lang="ts">
import type { Writable } from "svelte/store"
export let groupTitle: string
export let checkboxes: { name: string; emailName: string }[]
export let checkboxes: { textTitle: string; emailTitle: string }[]
export let formValues: Writable<FormValues>
export let rowNr: number
</script>
@@ -14,10 +15,10 @@
<input
type="checkbox"
class="checkbox-input checkit"
bind:this="{$formValues[`checkbox_${groupTitle}_${rowNr}_${checkbox.emailName}`]}"
bind:this="{$formValues[`checkbox_${groupTitle}_${rowNr}_${checkbox.emailTitle}`]}"
/>
<span class="checkit-span"></span>
{checkbox.name}
{checkbox.textTitle}
</label>
{/each}
</div>