This commit is contained in:
2026-01-13 17:51:19 +02:00
parent 25d3b525f6
commit 268c696d64
25 changed files with 889 additions and 80 deletions
@@ -0,0 +1,15 @@
<script>
let { field } = $props();
</script>
<fieldset>
<label>
Min items
<input type="number" bind:value={field.props.min} />
</label>
<label>
Max items
<input type="number" bind:value={field.props.max} />
</label>
</fieldset>