From 0b6035f81a10be2e94f3e9c065de13fa4b591ce2 Mon Sep 17 00:00:00 2001 From: Dmytro Klymenko Date: Thu, 7 Aug 2025 15:47:44 -0400 Subject: [PATCH 1/3] fix(select): use space as aria-labelledby separator --- packages/hooks/use-aria-multiselect/src/use-multiselect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/hooks/use-aria-multiselect/src/use-multiselect.ts b/packages/hooks/use-aria-multiselect/src/use-multiselect.ts index ded0b36a7d..00e97041f4 100644 --- a/packages/hooks/use-aria-multiselect/src/use-multiselect.ts +++ b/packages/hooks/use-aria-multiselect/src/use-multiselect.ts @@ -144,7 +144,7 @@ export function useMultiSelect( valueId, triggerProps["aria-labelledby"], triggerProps["aria-label"] && !triggerProps["aria-labelledby"] ? triggerProps.id : null, - ].join(","), + ].join(" "), onFocus(e: FocusEvent) { if (state.isFocused) { return; From bad99fa8431411fc10f7d592cc74db88b7dacdc3 Mon Sep 17 00:00:00 2001 From: Dmytro Klymenko Date: Thu, 7 Aug 2025 15:53:30 -0400 Subject: [PATCH 2/3] chore(chageset): add changeset (#5586) --- .changeset/selfish-pears-boil.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changeset/selfish-pears-boil.md diff --git a/.changeset/selfish-pears-boil.md b/.changeset/selfish-pears-boil.md new file mode 100644 index 0000000000..88d8f2a245 --- /dev/null +++ b/.changeset/selfish-pears-boil.md @@ -0,0 +1,6 @@ +--- +"@heroui/use-aria-multiselect": patch +"@heroui/select": patch +--- + +fix `Select` accessibility label not including selected options From 0789a96c3fd1633dcb0db836ccd1a3cfc8fdd418 Mon Sep 17 00:00:00 2001 From: WK Wong Date: Sat, 30 Aug 2025 22:07:27 +0800 Subject: [PATCH 3/3] chore(changeset): add issue number and remove select --- .changeset/selfish-pears-boil.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.changeset/selfish-pears-boil.md b/.changeset/selfish-pears-boil.md index 88d8f2a245..09d82d4280 100644 --- a/.changeset/selfish-pears-boil.md +++ b/.changeset/selfish-pears-boil.md @@ -1,6 +1,5 @@ --- "@heroui/use-aria-multiselect": patch -"@heroui/select": patch --- -fix `Select` accessibility label not including selected options +fix `Select` accessibility label not including selected options (#5586)