mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-05 11:10:03 +08:00
1419538ea7
* asd * changes * fix everything * cleanup * add changeset * fix casing * lockfile * fix casing * fix ci, enable linting * fix test * add changeset * add changeset * delete changeset * fix dirs * fix casing * fix notebooks * fix casing * fix casing * fix casing * fix casing * fix casing * fix casing * fix casing * fix casing --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
46 lines
1006 B
Svelte
46 lines
1006 B
Svelte
<script lang="ts">
|
|
import Radio from "../shared";
|
|
import { Block } from "@gradio/atoms";
|
|
import { StatusTracker } from "@gradio/statustracker";
|
|
import type { LoadingStatus } from "@gradio/statustracker/types";
|
|
|
|
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[] = [];
|
|
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}
|
|
on:change
|
|
on:input
|
|
on:select
|
|
/>
|
|
</Block>
|