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
This commit is contained in:
Damien Elmes 2021-04-26 20:17:48 +10:00
parent f77983fc9f
commit 8475e7829b

View file

@ -13,13 +13,21 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
export let warnings: string[] = [];
export let defaultValue: number = 0;
$: if (value > max) {
value = max;
} else if (value < min) {
value = min;
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" />
<input
type="number"
{min}
{max}
bind:value
class="form-control"
on:blur={checkMinMax} />
</ConfigEntry>