2023-03-28 05:13:48 +02:00
|
|
|
<script lang="ts">
|
2023-06-14 20:39:36 +02:00
|
|
|
import { UIEventSource } from "../../Logic/UIEventSource.js"
|
2023-03-28 05:13:48 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* For some stupid reason, it is very hard to bind inputs
|
|
|
|
*/
|
2023-06-14 20:39:36 +02:00
|
|
|
export let selected: UIEventSource<boolean>
|
|
|
|
let _c: boolean = selected.data ?? true
|
2023-03-28 05:13:48 +02:00
|
|
|
$: selected.setData(_c)
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<input type="checkbox" bind:checked={_c} />
|