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">
|
2022-02-04 09:36:34 +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;
|
|
|
|
|
|
|
|
let stringValue: string;
|
2022-03-29 06:33:46 +02:00
|
|
|
$: stringValue = value.toFixed(2);
|
2021-04-12 06:18:30 +02:00
|
|
|
|
|
|
|
function update(this: HTMLInputElement): void {
|
2021-05-28 23:59:20 +02:00
|
|
|
value = Math.min(max, Math.max(min, parseFloat(this.value)));
|
2021-04-12 06:18:30 +02:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2021-05-28 00:52:49 +02:00
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
class="form-control"
|
2021-11-24 22:17:41 +01:00
|
|
|
class:nightMode={$pageTheme.isDark}
|
2021-05-28 00:52:49 +02:00
|
|
|
{min}
|
|
|
|
{max}
|
|
|
|
step="0.01"
|
|
|
|
value={stringValue}
|
|
|
|
on:blur={update}
|
|
|
|
/>
|
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
|
|
|
|
|
|
|
.nightMode {
|
|
|
|
@include nightmode.input;
|
|
|
|
}
|
|
|
|
</style>
|