anki/ts/deckoptions/SpinBox.svelte

35 lines
826 B
Svelte
Raw Normal View History

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import ConfigEntry from "./ConfigEntry.svelte";
export let label: string;
2021-04-25 13:37:21 +02:00
export let tooltip: string;
export let value: number;
export let min = 1;
export let max = 9999;
export let warnings: string[] = [];
export let defaultValue: number = 0;
function checkMinMax() {
if (value > max) {
value = max;
} else if (value < min) {
value = min;
}
}
</script>
2021-04-25 13:37:21 +02:00
<ConfigEntry {label} {tooltip} {warnings} bind:value {defaultValue}>
<input
type="number"
{min}
{max}
bind:value
class="form-control"
on:blur={checkMinMax}
/>
</ConfigEntry>