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";
|
2021-04-26 15:34:33 +02:00
|
|
|
import HelpPopup from "./HelpPopup.svelte";
|
2021-04-25 13:37:21 +02:00
|
|
|
export let label: string;
|
2021-04-12 06:18:30 +02:00
|
|
|
export let value: boolean;
|
|
|
|
export let defaultValue: boolean;
|
2021-04-26 15:34:33 +02:00
|
|
|
export let tooltip = "";
|
|
|
|
export let id: string | undefined = undefined;
|
2021-04-12 06:18:30 +02:00
|
|
|
</script>
|
|
|
|
|
2021-04-26 15:34:33 +02:00
|
|
|
<ConfigEntry {id} label="" wholeLine={true} bind:value {defaultValue}>
|
2021-05-19 09:18:28 +02:00
|
|
|
<div class="checkbox-outer">
|
2021-04-26 15:34:33 +02:00
|
|
|
<label> <input type="checkbox" bind:checked={value} /> {label} </label>
|
|
|
|
{#if tooltip}
|
|
|
|
<HelpPopup html={tooltip} />
|
|
|
|
{/if}
|
|
|
|
</div>
|
2021-04-12 06:18:30 +02:00
|
|
|
</ConfigEntry>
|
2021-05-26 01:21:33 +02:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.checkbox-outer {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
</style>
|