0026506543
- prettier's formatting has changed, so files needed to be reformatted - dart is spitting out deprecation warnings like: 254 │ 2: $spacer / 2, │ ^^^^^^^^^^^ ╵ bazel-out/darwin-fastbuild/bin/ts/sass/bootstrap/_variables.scss 254:6 @import ts/sass/button_mixins.scss 2:9 @use ts/components/ColorPicker.svelte 2:5 root stylesheet DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($grid-gutter-width, 2)
44 lines
1.1 KiB
Svelte
44 lines
1.1 KiB
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import { createEventDispatcher } from "svelte";
|
|
import ConfigEntry from "./ConfigEntry.svelte";
|
|
import type { NumberValueEvent } from "./events";
|
|
|
|
export let label: string;
|
|
export let tooltip: string;
|
|
export let value: number;
|
|
export let defaultValue: number;
|
|
export let min = 1;
|
|
export let max = 9999;
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
let stringValue: string;
|
|
$: stringValue = value.toFixed(2);
|
|
|
|
function update(this: HTMLInputElement): void {
|
|
dispatch("changed", {
|
|
value: Math.min(max, Math.max(min, parseFloat(this.value))),
|
|
});
|
|
}
|
|
|
|
function revert(evt: NumberValueEvent): void {
|
|
dispatch("changed", { value: evt.detail.value });
|
|
}
|
|
</script>
|
|
|
|
<ConfigEntry {label} {tooltip} {value} {defaultValue} on:revert={revert}>
|
|
<input
|
|
type="number"
|
|
{min}
|
|
{max}
|
|
step="0.01"
|
|
value={stringValue}
|
|
on:blur={update}
|
|
class="form-control"
|
|
/>
|
|
</ConfigEntry>
|