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">
|
|
|
|
import ConfigEntry from "./ConfigEntry.svelte";
|
|
|
|
|
|
|
|
export let label: string;
|
2021-04-25 13:37:21 +02:00
|
|
|
export let tooltip: string;
|
2021-04-12 06:18:30 +02:00
|
|
|
export let value: number;
|
|
|
|
export let min = 1;
|
|
|
|
export let max = 9999;
|
2021-04-17 14:53:47 +02:00
|
|
|
export let warnings: string[] = [];
|
2021-04-12 06:18:30 +02:00
|
|
|
export let defaultValue: number = 0;
|
|
|
|
|
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-04-25 13:37:21 +02:00
|
|
|
<ConfigEntry {label} {tooltip} {warnings} bind:value {defaultValue}>
|
2021-04-26 12:17:48 +02:00
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
{min}
|
|
|
|
{max}
|
|
|
|
bind:value
|
|
|
|
class="form-control"
|
|
|
|
on:blur={checkMinMax} />
|
2021-04-12 06:18:30 +02:00
|
|
|
</ConfigEntry>
|