gradio/js/app/src/components/Radio/Radio.svelte

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

48 lines
1.1 KiB
Svelte
Raw Normal View History

<script lang="ts">
2022-03-08 21:35:42 +08:00
import { Radio } from "@gradio/form";
import { Block } from "@gradio/atoms";
import StatusTracker from "../StatusTracker/StatusTracker.svelte";
import type { LoadingStatus } from "../StatusTracker/types";
2022-03-08 21:35:42 +08:00
export let label = "Radio";
export let info: string | undefined = undefined;
export let elem_id = "";
export let elem_classes: string[] = [];
export let visible = true;
export let value: string | null = null;
export let value_is_output = false;
export let choices: string[] = [];
2022-03-12 00:00:48 +08:00
export let mode: "static" | "dynamic";
export let show_label: boolean;
export let container = false;
export let scale: number | null = null;
export let min_width: number | undefined = undefined;
export let loading_status: LoadingStatus;
</script>
<Block
{visible}
type="fieldset"
{elem_id}
{elem_classes}
{container}
{scale}
{min_width}
>
<StatusTracker {...loading_status} />
<Radio
bind:value
bind:value_is_output
{label}
{info}
{elem_id}
{show_label}
{choices}
disabled={mode === "static"}
on:change
on:input
on:select
/>
</Block>