anki/ts/deckoptions/SpinBox.svelte
Damien Elmes 8475e7829b defer bounds checking in SpinBox to focus loss
The previous behaviour was preventing a backspace to remove the
current text when a minimum of 1 or greater was supplied
2021-04-26 20:17:48 +10:00

34 lines
822 B
Svelte

<!--
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;
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>
<ConfigEntry {label} {tooltip} {warnings} bind:value {defaultValue}>
<input
type="number"
{min}
{max}
bind:value
class="form-control"
on:blur={checkMinMax} />
</ConfigEntry>