feat(picker-column): assign custom aria-labels to column options (#26749)

This commit is contained in:
Sean Perkins
2023-02-13 16:30:03 -05:00
committed by GitHub
parent 00d10f5f6a
commit daa89a26ac
4 changed files with 46 additions and 3 deletions

View File

@ -57,4 +57,8 @@ export interface PickerColumnOption {
duration?: number;
transform?: string;
selected?: boolean;
/**
* The optional text to assign as the aria-label on the picker column option.
*/
ariaLabel?: string;
}