mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
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>
This commit is contained in:
parent
ac735551bb
commit
44c53d9bde
6
.changeset/lovely-mammals-refuse.md
Normal file
6
.changeset/lovely-mammals-refuse.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
"@gradio/dropdown": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Fix dropdown refocusing due to `<label />` element
|
@ -3,12 +3,7 @@ import { test, expect } from "@gradio/tootils";
|
||||
test("test that the submit and clear buttons in a loaded space work", async ({
|
||||
page
|
||||
}) => {
|
||||
await page
|
||||
.locator("label")
|
||||
.filter({ hasText: "x" })
|
||||
.locator("div")
|
||||
.nth(2)
|
||||
.click();
|
||||
await page.getByLabel("x").click();
|
||||
await page.getByLabel("Pakistan", { exact: true }).click();
|
||||
await page.getByRole("button", { name: "Submit" }).click();
|
||||
await expect(await page.getByLabel("Output")).toHaveValue("Pakistan");
|
||||
|
@ -181,13 +181,17 @@
|
||||
});
|
||||
</script>
|
||||
|
||||
<label class:container>
|
||||
<div class:container>
|
||||
<BlockTitle {show_label} {info}>{label}</BlockTitle>
|
||||
|
||||
<div class="wrap">
|
||||
<div class="wrap-inner" class:show_options>
|
||||
<div class="secondary-wrap">
|
||||
<input
|
||||
role="listbox"
|
||||
aria-controls="dropdown-options"
|
||||
aria-expanded={show_options}
|
||||
aria-label={label}
|
||||
class="border-none"
|
||||
class:subdued={!choices_names.includes(input_text) &&
|
||||
!allow_custom_value}
|
||||
@ -217,7 +221,7 @@
|
||||
on:change={handle_option_selected}
|
||||
/>
|
||||
</div>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.icon-wrap {
|
||||
@ -225,11 +229,7 @@
|
||||
margin-right: var(--size-2);
|
||||
width: var(--size-5);
|
||||
}
|
||||
label:not(.container),
|
||||
label:not(.container) .wrap,
|
||||
label:not(.container) .wrap-inner,
|
||||
label:not(.container) .secondary-wrap,
|
||||
label:not(.container) input {
|
||||
.container {
|
||||
height: 100%;
|
||||
}
|
||||
.container .wrap {
|
||||
@ -255,6 +255,7 @@
|
||||
align-items: center;
|
||||
gap: var(--checkbox-label-gap);
|
||||
padding: var(--checkbox-label-padding);
|
||||
height: 100%;
|
||||
}
|
||||
.secondary-wrap {
|
||||
display: flex;
|
||||
@ -262,6 +263,7 @@
|
||||
align-items: center;
|
||||
border: none;
|
||||
min-width: min-content;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
input {
|
||||
@ -272,6 +274,7 @@
|
||||
width: var(--size-full);
|
||||
color: var(--body-text-color);
|
||||
font-size: var(--input-text-size);
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
input:disabled {
|
||||
|
Loading…
x
Reference in New Issue
Block a user