mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +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>
69 lines
1.6 KiB
Svelte
69 lines
1.6 KiB
Svelte
<script lang="ts">
|
|
import type { Gradio, SelectData } from "@gradio/utils";
|
|
import Dropdown 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 = $_("dropdown.dropdown");
|
|
export let info: string | undefined = undefined;
|
|
export let elem_id = "";
|
|
export let elem_classes: string[] = [];
|
|
export let visible = true;
|
|
export let value: string | string[];
|
|
export let value_is_output = false;
|
|
export let multiselect = false;
|
|
export let max_choices: number;
|
|
export let choices: string[];
|
|
export let show_label: boolean;
|
|
export let container = true;
|
|
export let scale: number | null = null;
|
|
export let min_width: number | undefined = undefined;
|
|
export let loading_status: LoadingStatus;
|
|
export let allow_custom_value = false;
|
|
export let gradio: Gradio<{
|
|
change: never;
|
|
input: never;
|
|
select: SelectData;
|
|
blur: never;
|
|
focus: never;
|
|
}>;
|
|
|
|
if (multiselect && !value) {
|
|
value = [];
|
|
} else if (!value) {
|
|
value = "";
|
|
}
|
|
</script>
|
|
|
|
<Block
|
|
{visible}
|
|
{elem_id}
|
|
{elem_classes}
|
|
padding={container}
|
|
allow_overflow={false}
|
|
{scale}
|
|
{min_width}
|
|
>
|
|
<StatusTracker {...loading_status} />
|
|
|
|
<Dropdown
|
|
bind:value
|
|
bind:value_is_output
|
|
{choices}
|
|
{multiselect}
|
|
{max_choices}
|
|
{label}
|
|
{info}
|
|
{show_label}
|
|
{allow_custom_value}
|
|
{container}
|
|
on:change={() => gradio.dispatch("change")}
|
|
on:input={() => gradio.dispatch("input")}
|
|
on:select={(e) => gradio.dispatch("select", e.detail)}
|
|
on:blur={() => gradio.dispatch("blur")}
|
|
on:focus={() => gradio.dispatch("focus")}
|
|
/>
|
|
</Block>
|