2021-04-12 06:18:30 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script lang="ts">
|
2021-11-24 22:17:41 +01:00
|
|
|
import { pageTheme } from "../sveltelib/theme";
|
2021-06-21 21:16:40 +02:00
|
|
|
|
2021-04-12 06:18:30 +02:00
|
|
|
export let value: number;
|
|
|
|
export let min = 1;
|
|
|
|
export let max = 9999;
|
|
|
|
|
2021-04-26 12:17:48 +02:00
|
|
|
function checkMinMax() {
|
|
|
|
if (value > max) {
|
|
|
|
value = max;
|
|
|
|
} else if (value < min) {
|
|
|
|
value = min;
|
|
|
|
}
|
2021-04-12 06:18:30 +02:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2021-05-28 00:52:49 +02:00
|
|
|
<input
|
|
|
|
type="number"
|
2021-06-05 15:37:49 +02:00
|
|
|
pattern="[0-9]*"
|
|
|
|
inputmode="numeric"
|
2021-05-28 00:52:49 +02:00
|
|
|
{min}
|
|
|
|
{max}
|
|
|
|
bind:value
|
2021-11-17 04:49:52 +01:00
|
|
|
class="spin-box form-control"
|
2021-11-24 22:17:41 +01:00
|
|
|
class:nightMode={$pageTheme.isDark}
|
2021-05-28 00:52:49 +02:00
|
|
|
on:blur={checkMinMax}
|
|
|
|
/>
|
2021-06-21 21:16:40 +02:00
|
|
|
|
|
|
|
<style lang="scss">
|
2021-10-09 02:25:03 +02:00
|
|
|
@use "sass/night-mode" as nightmode;
|
2021-06-21 21:16:40 +02:00
|
|
|
|
2021-11-17 04:49:52 +01:00
|
|
|
.spin-box {
|
|
|
|
/* overwrite Bootstrap */
|
|
|
|
padding: 0.2rem 0.75rem;
|
|
|
|
}
|
|
|
|
|
2021-06-21 21:16:40 +02:00
|
|
|
.nightMode {
|
|
|
|
@include nightmode.input;
|
|
|
|
}
|
|
|
|
</style>
|