From 622333363c485951521dbb75076cf20149242612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C3=87etin?= <92744169+mehmetcetin01140@users.noreply.github.com> Date: Tue, 26 Mar 2024 10:01:25 +0300 Subject: [PATCH] Fixed #15084 - Listbox | Missing aria-label --- src/app/components/listbox/listbox.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/components/listbox/listbox.ts b/src/app/components/listbox/listbox.ts index 6fa43eef625..5d5d6b15654 100755 --- a/src/app/components/listbox/listbox.ts +++ b/src/app/components/listbox/listbox.ts @@ -273,6 +273,11 @@ export class Listbox implements AfterContentInit, OnInit, ControlValueAccessor, * @group Props */ @Input() autoOptionFocus: boolean | undefined = true; + /** + * Defines a string that labels the input for accessibility. + * @group Props + */ + @Input() ariaLabel: string | undefined; /** * When enabled, the focused option is selected. * @group Props