mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
9cefd2e90a
* image-editor-examples * add changeset * add changeset * delete changeset * change to process_example() * add changeset * changes for all components until dataset.py * rename * fix checkboxgroup * format * changes * add changeset * changes * add changeset * radio * add changeset * changes * add changeset * changes * examples * remove print * fix * clean * add changeset * fix tests * fix tests * fix test * fix * add changeset * fix video example * add changeset --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> |
||
---|---|---|
.. | ||
shared | ||
CHANGELOG.md | ||
Example.svelte | ||
Index.svelte | ||
package.json | ||
Radio.stories.svelte | ||
Radio.test.ts | ||
README.md |
@gradio/radio
<script>
import { BaseRadio, BaseExample } from "@gradio/radio";
</script>
BaseRadio
export let display_value: string;
export let internal_value: string | number;
export let disabled = false;
export let elem_id = "";
export let selected: string | number | null = null;
BaseExample
export let value: string;
export let type: "gallery" | "table";
export let selected = false;