---
tags: [gradio-custom-component, Dropdown]
title: gradio_dropdownplus
short_description: Advanced Dropdown Component for Gradio UI
colorFrom: blue
colorTo: yellow
sdk: gradio
pinned: false
app_file: space.py
---
# `gradio_dropdownplus`
<a href="https://pypi.org/project/gradio_dropdownplus/" target="_blank"><img alt="PyPI - Version" src="https://img.shields.io/pypi/v/gradio_dropdownplus"></a>
Advanced Dropdown Component for Gradio UI
## Installation
```bash
pip install gradio_dropdownplus
```
## Usage
```python
import gradio as gr
from gradio_dropdownplus import DropdownPlus
# --- 1. Define Choices and Helper Function ---
# Choices for demonstration
MODEL_CHOICES = [
("GPT-4 Turbo", "gpt-4-1106-preview"),
("Claude 3 Opus", "claude-3-opus-20240229"),
("Llama 3 70B", "llama3-70b-8192"),
]
FEATURE_CHOICES = ["Feature A", "Feature B", "Feature C", "Feature D"]
def update_output(model_selection, feature_selection_with_info, multi_selection):
"""Formats the selected values for display."""
return (
f"--- SELECTIONS ---\n\n"
f"Model Selection (Help only): {model_selection}\n\n"
f"Feature Selection (Help & Info): {feature_selection_with_info}\n\n"
f"Multi-Select Features: {multi_selection}"
)
# --- 2. Build the Gradio App ---
with gr.Blocks(theme=gr.themes.Ocean(), title="DropdownPlus Demo") as demo:
gr.Markdown(
"""
# DropdownPlus Component Demo
A demonstration of the `tooltip` functionality in the DropdownPlus component.
"""
)
with gr.Row():
with gr.Column(scale=2):
gr.Markdown("### Interactive Examples")
# --- Example 1: Dropdown with `label` and `help` only ---
dropdown_help_only = DropdownPlus(
choices=MODEL_CHOICES,
label="Select a Model",
help="This is a tooltip. It appears next to the label and provides brief guidance.",
interactive=True
)
# --- Example 3: Multi-select to show it works there too ---
dropdown_multi = DropdownPlus(
choices=FEATURE_CHOICES,
label="Select Multiple Features",
info="Help and info also work with multiselect.",
help="Select one or more options.",
multiselect=True,
value=["Feature A", "Feature C"], # Default value
interactive=True
)
# --- Example 2: Dropdown with `label`, `help`, AND `info` ---
dropdown_with_info = DropdownPlus(
choices=FEATURE_CHOICES,
label="Choose a Feature",
info="This text appears below the label to provide more context.",
help="The tooltip still appears next to the label, even when 'info' text is present.",
interactive=True
)
with gr.Column(scale=1):
gr.Markdown("### Output")
output_textbox = gr.Textbox(
label="Current Values",
lines=8,
interactive=False
)
# --- Event Listeners ---
# List of all interactive components
inputs = [
dropdown_help_only,
dropdown_with_info,
dropdown_multi
]
# Any change to any dropdown will update the output textbox
for component in inputs:
component.change(
fn=update_output,
inputs=inputs,
outputs=output_textbox
)
# Trigger the initial display on load
demo.load(
fn=update_output,
inputs=inputs,
outputs=output_textbox
)
if __name__ == "__main__":
demo.launch()
```
## `DropdownPlus`
### Initialization
<table>
<thead>
<tr>
<th align="left">name</th>
<th align="left" style="width: 25%;">type</th>
<th align="left">default</th>
<th align="left">description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>choices</code></td>
<td align="left" style="width: 25%;">
```python
Sequence[
str | int | float | tuple[str, str | int | float]
]
| None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">a list of string or numeric options to choose from. An option can also be a tuple of the form (name, value), where name is the displayed name of the dropdown choice and value is the value to be passed to the function, or returned by the function.</td>
</tr>
<tr>
<td align="left"><code>value</code></td>
<td align="left" style="width: 25%;">
```python
str
| int
| float
| Sequence[str | int | float]
| Callable
| DefaultValue
| None
```
</td>
<td align="left"><code>value = <gradio_dropdownplus.dropdownplus.DefaultValue object at 0x00000170A604EDD0></code></td>
<td align="left">the value selected in dropdown. If `multiselect` is true, this should be list, otherwise a single string or number from among `choices`. By default, the first choice in `choices` is initally selected. If set explicitly to None, no value is initally selected. If a function is provided, the function will be called each time the app loads to set the initial value of this component.</td>
</tr>
<tr>
<td align="left"><code>type</code></td>
<td align="left" style="width: 25%;">
```python
Literal["value", "index"]
```
</td>
<td align="left"><code>"value"</code></td>
<td align="left">type of value to be returned by component. "value" returns the string of the choice selected, "index" returns the index of the choice selected.</td>
</tr>
<tr>
<td align="left"><code>multiselect</code></td>
<td align="left" style="width: 25%;">
```python
bool | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">if True, multiple choices can be selected.</td>
</tr>
<tr>
<td align="left"><code>allow_custom_value</code></td>
<td align="left" style="width: 25%;">
```python
bool
```
</td>
<td align="left"><code>False</code></td>
<td align="left">if True, allows user to enter a custom value that is not in the list of choices.</td>
</tr>
<tr>
<td align="left"><code>max_choices</code></td>
<td align="left" style="width: 25%;">
```python
int | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">maximum number of choices that can be selected. If None, no limit is enforced.</td>
</tr>
<tr>
<td align="left"><code>filterable</code></td>
<td align="left" style="width: 25%;">
```python
bool
```
</td>
<td align="left"><code>True</code></td>
<td align="left">if True, user will be able to type into the dropdown and filter the choices by typing. Can only be set to False if `allow_custom_value` is False.</td>
</tr>
<tr>
<td align="left"><code>label</code></td>
<td align="left" style="width: 25%;">
```python
str | I18nData | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">the label for this component, displayed above the component if `show_label` is `True` and is also used as the header if there are a table of examples for this component. If None and used in a `gr.Interface`, the label will be the name of the parameter this component corresponds to.</td>
</tr>
<tr>
<td align="left"><code>info</code></td>
<td align="left" style="width: 25%;">
```python
str | I18nData | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">additional component description, appears below the label in smaller font. Supports markdown / HTML syntax.</td>
</tr>
<tr>
<td align="left"><code>help</code></td>
<td align="left" style="width: 25%;">
```python
str | I18nData | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">A string of help text to display in a tooltip next to the label.</td>
</tr>
<tr>
<td align="left"><code>every</code></td>
<td align="left" style="width: 25%;">
```python
Timer | float | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">continously calls `value` to recalculate it if `value` is a function (has no effect otherwise). Can provide a Timer whose tick resets `value`, or a float that provides the regular interval for the reset Timer.</td>
</tr>
<tr>
<td align="left"><code>inputs</code></td>
<td align="left" style="width: 25%;">
```python
Component | Sequence[Component] | set[Component] | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">components that are used as inputs to calculate `value` if `value` is a function (has no effect otherwise). `value` is recalculated any time the inputs change.</td>
</tr>
<tr>
<td align="left"><code>show_label</code></td>
<td align="left" style="width: 25%;">
```python
bool | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">if True, will display label.</td>
</tr>
<tr>
<td align="left"><code>container</code></td>
<td align="left" style="width: 25%;">
```python
bool
```
</td>
<td align="left"><code>True</code></td>
<td align="left">if True, will place the component in a container - providing some extra padding around the border.</td>
</tr>
<tr>
<td align="left"><code>scale</code></td>
<td align="left" style="width: 25%;">
```python
int | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. scale applies in Rows, and to top-level Components in Blocks where fill_height=True.</td>
</tr>
<tr>
<td align="left"><code>min_width</code></td>
<td align="left" style="width: 25%;">
```python
int
```
</td>
<td align="left"><code>160</code></td>
<td align="left">minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first.</td>
</tr>
<tr>
<td align="left"><code>interactive</code></td>
<td align="left" style="width: 25%;">
```python
bool | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">if True, choices in this dropdown will be selectable; if False, selection will be disabled. If not provided, this is inferred based on whether the component is used as an input or output.</td>
</tr>
<tr>
<td align="left"><code>visible</code></td>
<td align="left" style="width: 25%;">
```python
bool
```
</td>
<td align="left"><code>True</code></td>
<td align="left">if False, component will be hidden.</td>
</tr>
<tr>
<td align="left"><code>elem_id</code></td>
<td align="left" style="width: 25%;">
```python
str | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">an optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.</td>
</tr>
<tr>
<td align="left"><code>elem_classes</code></td>
<td align="left" style="width: 25%;">
```python
list[str] | str | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">an optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.</td>
</tr>
<tr>
<td align="left"><code>render</code></td>
<td align="left" style="width: 25%;">
```python
bool
```
</td>
<td align="left"><code>True</code></td>
<td align="left">if False, component will not be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.</td>
</tr>
<tr>
<td align="left"><code>key</code></td>
<td align="left" style="width: 25%;">
```python
int | str | tuple[int | str, ...] | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">None</td>
</tr>
<tr>
<td align="left"><code>preserved_by_key</code></td>
<td align="left" style="width: 25%;">
```python
list[str] | str | None
```
</td>
<td align="left"><code>"value"</code></td>
<td align="left">None</td>
</tr>
</tbody></table>
### Events
| name | description |
|:-----|:------------|
| `change` | Triggered when the value of the DropdownPlus changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See `.input()` for a listener that is only triggered by user input. |
| `input` | This listener is triggered when the user changes the value of the DropdownPlus. |
| `select` | Event listener for when the user selects or deselects the DropdownPlus. Uses event data gradio.SelectData to carry `value` referring to the label of the DropdownPlus, and `selected` to refer to state of the DropdownPlus. See EventData documentation on how to use this event data |
| `focus` | This listener is triggered when the DropdownPlus is focused. |
| `blur` | This listener is triggered when the DropdownPlus is unfocused/blurred. |
| `key_up` | This listener is triggered when the user presses a key while the DropdownPlus is focused. |
### User function
The impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).
- When used as an Input, the component only impacts the input signature of the user function.
- When used as an output, the component only impacts the return signature of the user function.
The code snippet below is accurate in cases where the component is used as both an input and an output.
- **As output:** Is passed, passes the value of the selected dropdown choice as a `str | int | float` or its index as an `int` into the function, depending on `type`. Or, if `multiselect` is True, passes the values of the selected dropdown choices as a list of corresponding values/indices instead.
- **As input:** Should return, expects a `str | int | float` corresponding to the value of the dropdown entry to be selected. Or, if `multiselect` is True, expects a `list` of values corresponding to the selected dropdown entries.
```python
def predict(
value: str
| int
| float
| list[str | int | float]
| list[int | None]
| None
) -> str | int | float | list[str | int | float] | None:
return value
```
Raw data
{
"_id": null,
"home_page": null,
"name": "gradio-dropdownplus",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "gradio-custom-component, gradio-template-Dropdown",
"author": null,
"author_email": "Eliseu Silva <elismasilva@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/fb/5c/4564e2c1715fea2a824140a78ec20c8a803f9441d7842b494af02ad94d6e/gradio_dropdownplus-0.0.2.tar.gz",
"platform": null,
"description": "---\ntags: [gradio-custom-component, Dropdown]\ntitle: gradio_dropdownplus\nshort_description: Advanced Dropdown Component for Gradio UI\ncolorFrom: blue\ncolorTo: yellow\nsdk: gradio\npinned: false\napp_file: space.py\n---\n\n# `gradio_dropdownplus`\n<a href=\"https://pypi.org/project/gradio_dropdownplus/\" target=\"_blank\"><img alt=\"PyPI - Version\" src=\"https://img.shields.io/pypi/v/gradio_dropdownplus\"></a> \n\nAdvanced Dropdown Component for Gradio UI\n\n## Installation\n\n```bash\npip install gradio_dropdownplus\n```\n\n## Usage\n\n```python\nimport gradio as gr\nfrom gradio_dropdownplus import DropdownPlus\n\n# --- 1. Define Choices and Helper Function ---\n\n# Choices for demonstration\nMODEL_CHOICES = [\n (\"GPT-4 Turbo\", \"gpt-4-1106-preview\"),\n (\"Claude 3 Opus\", \"claude-3-opus-20240229\"),\n (\"Llama 3 70B\", \"llama3-70b-8192\"),\n]\n\nFEATURE_CHOICES = [\"Feature A\", \"Feature B\", \"Feature C\", \"Feature D\"]\n\ndef update_output(model_selection, feature_selection_with_info, multi_selection):\n \"\"\"Formats the selected values for display.\"\"\"\n return (\n f\"--- SELECTIONS ---\\n\\n\"\n f\"Model Selection (Help only): {model_selection}\\n\\n\"\n f\"Feature Selection (Help & Info): {feature_selection_with_info}\\n\\n\"\n f\"Multi-Select Features: {multi_selection}\"\n )\n\n# --- 2. Build the Gradio App ---\n\nwith gr.Blocks(theme=gr.themes.Ocean(), title=\"DropdownPlus Demo\") as demo:\n gr.Markdown(\n \"\"\"\n # DropdownPlus Component Demo\n A demonstration of the `tooltip` functionality in the DropdownPlus component.\n \"\"\"\n )\n\n with gr.Row(): \n with gr.Column(scale=2):\n gr.Markdown(\"### Interactive Examples\")\n \n # --- Example 1: Dropdown with `label` and `help` only ---\n dropdown_help_only = DropdownPlus(\n choices=MODEL_CHOICES,\n label=\"Select a Model\",\n help=\"This is a tooltip. It appears next to the label and provides brief guidance.\",\n interactive=True\n )\n # --- Example 3: Multi-select to show it works there too ---\n dropdown_multi = DropdownPlus(\n choices=FEATURE_CHOICES,\n label=\"Select Multiple Features\",\n info=\"Help and info also work with multiselect.\",\n help=\"Select one or more options.\",\n multiselect=True,\n value=[\"Feature A\", \"Feature C\"], # Default value\n interactive=True\n )\n \n # --- Example 2: Dropdown with `label`, `help`, AND `info` ---\n dropdown_with_info = DropdownPlus(\n choices=FEATURE_CHOICES,\n label=\"Choose a Feature\",\n info=\"This text appears below the label to provide more context.\",\n help=\"The tooltip still appears next to the label, even when 'info' text is present.\",\n interactive=True\n )\n\n \n \n with gr.Column(scale=1):\n gr.Markdown(\"### Output\")\n \n output_textbox = gr.Textbox(\n label=\"Current Values\",\n lines=8,\n interactive=False\n )\n\n # --- Event Listeners ---\n \n # List of all interactive components\n inputs = [\n dropdown_help_only,\n dropdown_with_info,\n dropdown_multi\n ]\n \n # Any change to any dropdown will update the output textbox\n for component in inputs:\n component.change(\n fn=update_output,\n inputs=inputs,\n outputs=output_textbox\n )\n\n # Trigger the initial display on load\n demo.load(\n fn=update_output,\n inputs=inputs,\n outputs=output_textbox\n )\n\nif __name__ == \"__main__\":\n demo.launch()\n```\n\n## `DropdownPlus`\n\n### Initialization\n\n<table>\n<thead>\n<tr>\n<th align=\"left\">name</th>\n<th align=\"left\" style=\"width: 25%;\">type</th>\n<th align=\"left\">default</th>\n<th align=\"left\">description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td align=\"left\"><code>choices</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nSequence[\n str | int | float | tuple[str, str | int | float]\n ]\n | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">a list of string or numeric options to choose from. An option can also be a tuple of the form (name, value), where name is the displayed name of the dropdown choice and value is the value to be passed to the function, or returned by the function.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>value</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr\n | int\n | float\n | Sequence[str | int | float]\n | Callable\n | DefaultValue\n | None\n```\n\n</td>\n<td align=\"left\"><code>value = <gradio_dropdownplus.dropdownplus.DefaultValue object at 0x00000170A604EDD0></code></td>\n<td align=\"left\">the value selected in dropdown. If `multiselect` is true, this should be list, otherwise a single string or number from among `choices`. By default, the first choice in `choices` is initally selected. If set explicitly to None, no value is initally selected. If a function is provided, the function will be called each time the app loads to set the initial value of this component.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>type</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nLiteral[\"value\", \"index\"]\n```\n\n</td>\n<td align=\"left\"><code>\"value\"</code></td>\n<td align=\"left\">type of value to be returned by component. \"value\" returns the string of the choice selected, \"index\" returns the index of the choice selected.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>multiselect</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">if True, multiple choices can be selected.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>allow_custom_value</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>False</code></td>\n<td align=\"left\">if True, allows user to enter a custom value that is not in the list of choices.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>max_choices</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">maximum number of choices that can be selected. If None, no limit is enforced.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>filterable</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">if True, user will be able to type into the dropdown and filter the choices by typing. Can only be set to False if `allow_custom_value` is False.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | I18nData | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">the label for this component, displayed above the component if `show_label` is `True` and is also used as the header if there are a table of examples for this component. If None and used in a `gr.Interface`, the label will be the name of the parameter this component corresponds to.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>info</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | I18nData | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">additional component description, appears below the label in smaller font. Supports markdown / HTML syntax.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>help</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | I18nData | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">A string of help text to display in a tooltip next to the label.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>every</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nTimer | float | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">continously calls `value` to recalculate it if `value` is a function (has no effect otherwise). Can provide a Timer whose tick resets `value`, or a float that provides the regular interval for the reset Timer.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>inputs</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nComponent | Sequence[Component] | set[Component] | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">components that are used as inputs to calculate `value` if `value` is a function (has no effect otherwise). `value` is recalculated any time the inputs change.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>show_label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">if True, will display label.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>container</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">if True, will place the component in a container - providing some extra padding around the border.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>scale</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. scale applies in Rows, and to top-level Components in Blocks where fill_height=True.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>min_width</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint\n```\n\n</td>\n<td align=\"left\"><code>160</code></td>\n<td align=\"left\">minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>interactive</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">if True, choices in this dropdown will be selectable; if False, selection will be disabled. If not provided, this is inferred based on whether the component is used as an input or output.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>visible</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">if False, component will be hidden.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>elem_id</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">an optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>elem_classes</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nlist[str] | str | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">an optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>render</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">if False, component will not be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>key</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | str | tuple[int | str, ...] | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">None</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>preserved_by_key</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nlist[str] | str | None\n```\n\n</td>\n<td align=\"left\"><code>\"value\"</code></td>\n<td align=\"left\">None</td>\n</tr>\n</tbody></table>\n\n\n### Events\n\n| name | description |\n|:-----|:------------|\n| `change` | Triggered when the value of the DropdownPlus changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See `.input()` for a listener that is only triggered by user input. |\n| `input` | This listener is triggered when the user changes the value of the DropdownPlus. |\n| `select` | Event listener for when the user selects or deselects the DropdownPlus. Uses event data gradio.SelectData to carry `value` referring to the label of the DropdownPlus, and `selected` to refer to state of the DropdownPlus. See EventData documentation on how to use this event data |\n| `focus` | This listener is triggered when the DropdownPlus is focused. |\n| `blur` | This listener is triggered when the DropdownPlus is unfocused/blurred. |\n| `key_up` | This listener is triggered when the user presses a key while the DropdownPlus is focused. |\n\n\n\n### User function\n\nThe impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).\n\n- When used as an Input, the component only impacts the input signature of the user function.\n- When used as an output, the component only impacts the return signature of the user function.\n\nThe code snippet below is accurate in cases where the component is used as both an input and an output.\n\n- **As output:** Is passed, passes the value of the selected dropdown choice as a `str | int | float` or its index as an `int` into the function, depending on `type`. Or, if `multiselect` is True, passes the values of the selected dropdown choices as a list of corresponding values/indices instead.\n- **As input:** Should return, expects a `str | int | float` corresponding to the value of the dropdown entry to be selected. Or, if `multiselect` is True, expects a `list` of values corresponding to the selected dropdown entries.\n\n ```python\n def predict(\n value: str\n | int\n | float\n | list[str | int | float]\n | list[int | None]\n | None\n ) -> str | int | float | list[str | int | float] | None:\n return value\n ```\n \n",
"bugtrack_url": null,
"license": null,
"summary": "Advanced Dropdown Component for Gradio UI",
"version": "0.0.2",
"project_urls": null,
"split_keywords": [
"gradio-custom-component",
" gradio-template-dropdown"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "abd7271eac14b814f3bb69827e7fc854de71eaa3a72ce44bd68708fdb032becb",
"md5": "a0335b245b5b762b8ce1c9e67083e391",
"sha256": "17fc98c1faf298b75e6e8a78c29c911c72effa3e846f957f056ec23c0f0e3fc9"
},
"downloads": -1,
"filename": "gradio_dropdownplus-0.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a0335b245b5b762b8ce1c9e67083e391",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 1981787,
"upload_time": "2025-09-04T13:24:38",
"upload_time_iso_8601": "2025-09-04T13:24:38.445941Z",
"url": "https://files.pythonhosted.org/packages/ab/d7/271eac14b814f3bb69827e7fc854de71eaa3a72ce44bd68708fdb032becb/gradio_dropdownplus-0.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb5c4564e2c1715fea2a824140a78ec20c8a803f9441d7842b494af02ad94d6e",
"md5": "f1dfb2faa66b2a1e97f6b5aafdb8b85c",
"sha256": "c7f007a3e95f101fcafcb2ff0fa385561f50d8e18dd8f84ebba31e4d35507bb0"
},
"downloads": -1,
"filename": "gradio_dropdownplus-0.0.2.tar.gz",
"has_sig": false,
"md5_digest": "f1dfb2faa66b2a1e97f6b5aafdb8b85c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 2017702,
"upload_time": "2025-09-04T13:24:40",
"upload_time_iso_8601": "2025-09-04T13:24:40.595888Z",
"url": "https://files.pythonhosted.org/packages/fb/5c/4564e2c1715fea2a824140a78ec20c8a803f9441d7842b494af02ad94d6e/gradio_dropdownplus-0.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-09-04 13:24:40",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "gradio-dropdownplus"
}