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">
|
|
|
|
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"
|
|
|
|
{min}
|
|
|
|
{max}
|
|
|
|
bind:value
|
|
|
|
class="form-control"
|
|
|
|
on:blur={checkMinMax}
|
|
|
|
/>
|