anki/ts/deck-options/SpinBox.svelte

43 lines
863 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 { getContext } from "svelte";
import { nightModeKey } from "components/context-keys";
export let value: number;
export let min = 1;
export let max = 9999;
const nightMode = getContext<boolean>(nightModeKey);
function checkMinMax() {
if (value > max) {
value = max;
} else if (value < min) {
value = min;
}
}
</script>
<input
type="number"
2021-06-05 15:37:49 +02:00
pattern="[0-9]*"
inputmode="numeric"
{min}
{max}
bind:value
class="form-control"
class:nightMode
on:blur={checkMinMax}
/>
<style lang="scss">
2021-08-17 22:07:28 +02:00
@use "night-mode" as nightmode;
.nightMode {
@include nightmode.input;
}
</style>