mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
4b58ea6d98
* tokenize en strings in components and refactor en.json * add changeset * refactor more translation files * more translation files * tweak * fix test * fix other test * fix test --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
61 lines
1.3 KiB
Svelte
61 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
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;
|
|
|
|
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
|
|
on:input
|
|
on:select
|
|
on:blur
|
|
on:focus
|
|
/>
|
|
</Block>
|