anki/ts/deck-options/SpinBox.svelte

45 lines
880 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 { pageTheme } from "../sveltelib/theme";
export let value: number;
export let min = 1;
export let max = 9999;
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="spin-box form-control"
class:nightMode={$pageTheme.isDark}
on:blur={checkMinMax}
/>
<style lang="scss">
@use "sass/night-mode" as nightmode;
.spin-box {
/* overwrite Bootstrap */
padding: 0.2rem 0.75rem;
}
.nightMode {
@include nightmode.input;
}
</style>