23 lines
688 B
Svelte
23 lines
688 B
Svelte
<script>
|
|
import Field from "@/components/base/Field.svelte";
|
|
|
|
export let key = "";
|
|
export let options = {};
|
|
</script>
|
|
|
|
<div class="grid">
|
|
<div class="col-sm-6">
|
|
<Field class="form-field" name="schema.{key}.options.min" let:uniqueId>
|
|
<label for={uniqueId}>Min</label>
|
|
<input type="number" id={uniqueId} bind:value={options.min} />
|
|
</Field>
|
|
</div>
|
|
|
|
<div class="col-sm-6">
|
|
<Field class="form-field" name="schema.{key}.options.max" let:uniqueId>
|
|
<label for={uniqueId}>Max</label>
|
|
<input type="number" id={uniqueId} min={options.min} bind:value={options.max} />
|
|
</Field>
|
|
</div>
|
|
</div>
|