gradio/js/checkbox/static/StaticCheckbox.svelte

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
911 B
Svelte
Raw Normal View History

2022-02-02 22:02:09 +08:00
<script lang="ts">
import Checkbox from "../shared";
import { Block, Info } from "@gradio/atoms";
import { StatusTracker } from "@gradio/statustracker";
import type { LoadingStatus } from "@gradio/statustracker";
2022-03-12 00:00:48 +08:00
export let elem_id = "";
export let elem_classes: string[] = [];
export let visible = true;
export let value = false;
export let value_is_output = false;
export let label = "Checkbox";
export let info: string | undefined = undefined;
export let container = true;
export let scale: number | null = null;
export let min_width: number | undefined = undefined;
export let loading_status: LoadingStatus;
</script>
<Block {visible} {elem_id} {elem_classes} {container} {scale} {min_width}>
<StatusTracker {...loading_status} />
{#if info}
<Info>{info}</Info>
{/if}
<Checkbox
{label}
bind:value
bind:value_is_output
on:change
on:input
on:select
disabled
/>
</Block>