gradio/js/dropdown
Hannah 44c53d9bde
Fix dropdown refocusing due to <label /> element (#7081)
* Remove extra blur causing refocus bug and add a11y tweaks

* change label to div causing reopen of dropdown

* add changeset

* Tweak label attribute

* fix browser test

* formatting

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
2024-01-22 10:32:27 -08:00
..
shared Fix dropdown refocusing due to <label /> element (#7081) 2024-01-22 10:32:27 -08:00
CHANGELOG.md chore: update versions (#7004) 2024-01-19 00:13:02 -05:00
Dropdown.stories.svelte Version 4 development branch (#5498) 2023-10-31 04:46:02 +00:00
dropdown.test.ts Fix dropdown blur bug when values are provided as tuples (#6694) 2023-12-07 08:03:11 -08:00
Example.svelte Refactor examples so they accept data in the same format as is returned by function, rename .as_example() to .process_example() (#6933) 2024-01-10 16:35:25 -08:00
Index.svelte Version 4 development branch (#5498) 2023-10-31 04:46:02 +00:00
Multiselect.stories.svelte format (#6658) 2023-12-04 14:37:04 -08:00
package.json chore: update versions (#7004) 2024-01-19 00:13:02 -05:00
README.md Version 4 development branch (#5498) 2023-10-31 04:46:02 +00:00

@gradio/dropdown

<script>
    import {BaseDropdown, BaseMultiselect, BaseExample } from "@gradio/dropdown";
</script>

BaseDropdown

	export let label: string;
	export let info: string | undefined = undefined;
	export let value: string | number | (string | number)[] | undefined = [];
	export let value_is_output = false;
	export let choices: [string, string | number][];
	export let disabled = false;
	export let show_label: boolean;
	export let container = true;
	export let allow_custom_value = false;
	export let filterable = true;

BaseMultiselect

	export let label: string;
	export let info: string | undefined = undefined;
	export let value: string | number | (string | number)[] | undefined = [];
	export let value_is_output = false;
	export let max_choices: number | null = null;
	export let choices: [string, string | number][];
	export let disabled = false;
	export let show_label: boolean;
	export let container = true;
	export let allow_custom_value = false;
	export let filterable = true;
	export let i18n: I18nFormatter;

BaseExample

	export let value: string;
	export let type: "gallery" | "table";
	export let selected = false;