30bbbaf00b
* Make eslint sort our imports * fix missing deps in eslint rule (dae) Caught on Linux due to the stricter sandboxing * Remove exports-last eslint rule (for now?) * Adjust browserslist settings - We use ResizeObserver which is not supported in browsers like KaiOS, Baidu or Android UC * Raise minimum iOS version 13.4 - It's the first version that supports ResizeObserver * Apply new eslint rules to sort imports
31 lines
1007 B
Svelte
31 lines
1007 B
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 Col from "../components/Col.svelte";
|
|
import Row from "../components/Row.svelte";
|
|
import Label from "./Label.svelte";
|
|
import RevertButton from "./RevertButton.svelte";
|
|
import Switch from "./Switch.svelte";
|
|
import TooltipLabel from "./TooltipLabel.svelte";
|
|
|
|
export let value: boolean;
|
|
export let defaultValue: boolean;
|
|
export let markdownTooltip: string | undefined = undefined;
|
|
|
|
const id = Math.random().toString(36).substring(2);
|
|
</script>
|
|
|
|
<Row --cols={6}>
|
|
<Col --col-size={4}
|
|
>{#if markdownTooltip}<TooltipLabel for={id} {markdownTooltip}
|
|
><slot /></TooltipLabel
|
|
>{:else}<Label for={id}><slot /></Label>{/if}</Col
|
|
>
|
|
<Col --col-justify="flex-end">
|
|
<Switch {id} bind:value />
|
|
<RevertButton bind:value {defaultValue} />
|
|
</Col>
|
|
</Row>
|