2021-05-29 13:30:10 +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 Row from "./Row.svelte";
|
|
|
|
import Col from "./Col.svelte";
|
2021-06-11 23:15:40 +02:00
|
|
|
import TooltipLabel from "./TooltipLabel.svelte";
|
2021-05-29 13:30:10 +02:00
|
|
|
import SpinBoxFloat from "./SpinBoxFloat.svelte";
|
|
|
|
import RevertButton from "./RevertButton.svelte";
|
|
|
|
|
|
|
|
export let value: any;
|
|
|
|
export let defaultValue: any;
|
|
|
|
export let min = 0;
|
|
|
|
export let max: number | undefined = undefined;
|
|
|
|
export let markdownTooltip: string;
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<Row>
|
|
|
|
<Col size={7}>
|
2021-06-11 23:15:40 +02:00
|
|
|
<TooltipLabel {markdownTooltip}><slot /></TooltipLabel>
|
2021-05-29 13:30:10 +02:00
|
|
|
</Col>
|
|
|
|
<Col size={5}>
|
2021-06-05 14:35:02 +02:00
|
|
|
<SpinBoxFloat bind:value {min} {max} />
|
2021-06-22 01:41:31 +02:00
|
|
|
<RevertButton bind:value {defaultValue} />
|
2021-05-29 13:30:10 +02:00
|
|
|
</Col>
|
|
|
|
</Row>
|