Skip to content

Commit b0adf3c

Browse files
author
Kubit
committed
Add new aria values to Option component interface
1 parent dd6a0b4 commit b0adf3c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/components/option/types/option.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ export type OptionSublabelType = Omit<IText<string>, 'children'> & {
1212

1313
type OptionAriaAttributes = Pick<
1414
React.AriaAttributes,
15-
'aria-label' | 'aria-labelledby' | 'aria-describedby' | 'aria-hidden' | 'aria-selected'
15+
| 'aria-label'
16+
| 'aria-labelledby'
17+
| 'aria-describedby'
18+
| 'aria-hidden'
19+
| 'aria-selected'
20+
| 'aria-current'
1621
>;
1722

1823
/**

0 commit comments

Comments
 (0)