File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/cdk-experimental/listbox Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,9 +45,9 @@ import {toSignal} from '@angular/core/rxjs-interop';
4545 'class' : 'cdk-listbox' ,
4646 '[attr.tabindex]' : 'pattern.tabindex()' ,
4747 '[attr.aria-disabled]' : 'pattern.disabled()' ,
48+ '[attr.aria-orientation]' : 'pattern.orientation()' ,
4849 '[attr.aria-multiselectable]' : 'pattern.multiselectable()' ,
4950 '[attr.aria-activedescendant]' : 'pattern.activedescendant()' ,
50- '[attr.aria-orientation]' : 'pattern.orientation()' ,
5151 '(focusin)' : 'pattern.onFocus()' ,
5252 '(keydown)' : 'pattern.onKeydown($event)' ,
5353 '(mousedown)' : 'pattern.onMousedown($event)' ,
@@ -116,8 +116,8 @@ let count = 0;
116116 host : {
117117 'role' : 'option' ,
118118 'class' : 'cdk-option' ,
119- '[attr.aria-selected]' : 'pattern.selected()' ,
120119 '[attr.tabindex]' : 'pattern.tabindex()' ,
120+ '[attr.aria-selected]' : 'pattern.selected()' ,
121121 '[attr.aria-disabled]' : 'pattern.disabled()' ,
122122 } ,
123123} )
You can’t perform that action at this time.
0 commit comments