Replies: 3 comments 3 replies
|
Yes, I'm refactoring the select and it will be out this week. |
0 replies
|
v21.2 released, please check the input attributes and you can also customize the aria-label for input. /** `aria-label` of the ng-select input. */
@Input('aria-label') ariaLabel: string | null = null;
/** `aria-labelledby` of the ng-select input. */
@Input('aria-labelledby') ariaLabelledby: string | null = null;
/** `aria-describedby` of the ng-select input. */
@Input('aria-describedby') ariaDescribedby: string | null = null; |
0 replies
|
v21.2 released, please check the input attributes and you can also customize the aria-label for input. /** `aria-label` of the ng-select input. */
@Input('aria-label') ariaLabel: string | null = null;
/** `aria-labelledby` of the ng-select input. */
@Input('aria-labelledby') ariaLabelledby: string | null = null;
/** `aria-describedby` of the ng-select input. */
@Input('aria-describedby') ariaDescribedby: string | null = null; |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hi there,
Thanks for continuing supporting this extension! I'm using
mtx-selectwith [searchable]="true" for my project, and it works very well. Here's a sample code:But recently I found it doesn't support the inner nested
inputelement being accessible when tab on it. There's noaria-labelassigned to it. I used NVDA as the assistant tool for testing. Would you consider add accessibility support to this extension?All reactions