| <script lang="ts"> |
| import { createEventDispatcher, afterUpdate } from "svelte"; |
| import type { SelectData } from "@gradio/utils"; |
| |
| export let value: boolean; |
| export let value_is_output = false; |
| export let disabled = false; |
| export let label: string; |
| |
| const dispatch = createEventDispatcher<{ |
| change: boolean; |
| select: SelectData; |
| input: undefined; |
| }>(); |
| |
| function handle_change(): void { |
| dispatch("change", value); |
| if (!value_is_output) { |
| dispatch("input"); |
| } |
| } |
| afterUpdate(() => { |
| value_is_output = false; |
| }); |
| $: value, handle_change(); |
| </script> |
|
|
| <label class:disabled> |
| <input |
| bind:checked={value} |
| on:keydown={(event) => { |
| if (event.key === "Enter") { |
| value = !value; |
| dispatch("select", { |
| index: 0, |
| value: label, |
| selected: value, |
| }); |
| } |
| }} |
| on:input={(evt) => { |
| value = evt.currentTarget.checked; |
| dispatch("select", { |
| index: 0, |
| value: label, |
| selected: evt.currentTarget.checked, |
| }); |
| }} |
| {disabled} |
| type="checkbox" |
| name="test" |
| data-testid="checkbox" |
| /> |
| <span class="ml-2">{label}</span> |
| </label> |
|
|
| <style> |
| label { |
| display: flex; |
| align-items: center; |
| cursor: pointer; |
| color: var(--body-text-color); |
| font-weight: var(--checkbox-label-text-weight); |
| font-size: var(--checkbox-label-text-size); |
| line-height: var(--line-md); |
| } |
| |
| label > * + * { |
| margin-left: var(--size-2); |
| } |
| |
| input { |
| --ring-color: transparent; |
| position: relative; |
| box-shadow: var(--input-shadow); |
| border: 1px solid var(--checkbox-border-color); |
| border-radius: var(--checkbox-border-radius); |
| background-color: var(--checkbox-background-color); |
| line-height: var(--line-sm); |
| } |
| |
| input:checked, |
| input:checked:hover, |
| input:checked:focus { |
| border-color: var(--checkbox-border-color-selected); |
| background-image: var(--checkbox-check); |
| background-color: var(--checkbox-background-color-selected); |
| } |
| |
| input:checked:focus { |
| background-image: var(--checkbox-check); |
| background-color: var(--checkbox-background-color-selected); |
| border-color: var(--checkbox-border-color-focus); |
| } |
| |
| input:hover { |
| border-color: var(--checkbox-border-color-hover); |
| background-color: var(--checkbox-background-color-hover); |
| } |
| |
| input:focus { |
| border-color: var(--checkbox-border-color-focus); |
| background-color: var(--checkbox-background-color-focus); |
| } |
| |
| input[disabled], |
| .disabled { |
| cursor: not-allowed; |
| } |
| </style> |
|
|