* The ARIA selected applied to the chip. Conforms to WAI ARIA best practices for listbox * interaction patterns. * * From [WAI ARIA Listbox authoring practices guide]( * https://www.w3.org/WAI/ARIA/apg/patterns/listbox/): * "If any options are selected, each selected option has eithe
()
| 132 | * VoiceOver reading every option as "selected" (#25736). |
| 133 | */ |
| 134 | get ariaSelected(): string | null { |
| 135 | return this.selectable ? this.selected.toString() : null; |
| 136 | } |
| 137 | |
| 138 | /** The unstyled chip selector for this component. */ |
| 139 | protected override basicChipAttrName = 'mat-basic-chip-option'; |
no test coverage detected