264561cd0d
* Redesign deck config, swap tooltips for help modals, link to manual * Replace canvas-inset with canvas-code for custom scheduling * Make section header link to manual too * Include elevation Sass library * Remove two unused exports * Fix tabbed spinboxes * Update ftl/core/deck-config.ftl * Update ftl/core/deck-config.ftl * Fix format * Make border-radius and box-shadow more subtle * Fix margin for vertical aspect ratio * Make direct hover on info badge apply effect instantly * Add redirect line to manual underneath chapter
28 lines
892 B
Svelte
28 lines
892 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 Switch from "../components/Switch.svelte";
|
|
import ConfigInput from "./ConfigInput.svelte";
|
|
import Label from "./Label.svelte";
|
|
import RevertButton from "./RevertButton.svelte";
|
|
|
|
export let value: boolean;
|
|
export let defaultValue: boolean;
|
|
|
|
const id = Math.random().toString(36).substring(2);
|
|
</script>
|
|
|
|
<Row --cols={6}>
|
|
<Col --col-size={4}><Label for={id}><slot /></Label></Col>
|
|
<Col --col-justify="flex-end">
|
|
<ConfigInput grow={false}>
|
|
<Switch {id} bind:value />
|
|
<RevertButton slot="revert" bind:value {defaultValue} />
|
|
</ConfigInput>
|
|
</Col>
|
|
</Row>
|