mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
fe057300f0
* delegate gradio events via a custom event dispatcher * improve md perf + share code * fix df markdown * prevent model3d from rerending too frequently * tweaks * fix more event bugs with video * add changeset * optimise handle mount * does this do anything * fix * remove old dispatches * fix dropdown position * oops * fixes * fix tests * fix types * format * fix markdown code * add changeset * fix typecheck * fix typecheck * fix demos * notebooks * fix tests * changer * maybe this * fixes * add changeset * fix chatbot alignment mobile * fix chantbot * add changeset * changeset * changeset * storybook --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
53 lines
1.3 KiB
Svelte
53 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
import type { Gradio, SelectData } from "@gradio/utils";
|
|
import Radio from "../shared";
|
|
import { Block } from "@gradio/atoms";
|
|
import { StatusTracker } from "@gradio/statustracker";
|
|
import type { LoadingStatus } from "@gradio/statustracker";
|
|
import { _ } from "svelte-i18n";
|
|
|
|
export let label = $_("radio.radio");
|
|
export let info: string | undefined = undefined;
|
|
export let elem_id = "";
|
|
export let elem_classes: string[] = [];
|
|
export let visible = true;
|
|
export let value: string | number | null = null;
|
|
export let value_is_output = false;
|
|
export let choices: [string, number][] = [];
|
|
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;
|
|
export let gradio: Gradio<{
|
|
change: never;
|
|
select: SelectData;
|
|
input: never;
|
|
}>;
|
|
</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={() => gradio.dispatch("change")}
|
|
on:input={() => gradio.dispatch("input")}
|
|
on:select={(e) => gradio.dispatch("select", e.detail)}
|
|
/>
|
|
</Block>
|