File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ the `atFocusedItemIndex` accessor.
99** Before** :
1010
1111``` ts
12- #tabindex = new TabindexController (this );
12+ #tabindex = new RovingTabindexController (this );
1313
1414firstUpdated () {
1515 this .#tabindex .initItems (this .items );
@@ -25,7 +25,7 @@ updated(changed: PropertyValues<this>) {
2525** After** :
2626
2727``` ts
28- #tabindex = new TabindexController (this , {
28+ #tabindex = RovingTabindexController . of (this , {
2929 getItems : () => this .items ,
3030});
3131
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ This controller implements the [WAI-ARIA activedescendant pattern][pattern]
77for keyboard and screen-reader accessibility.
88
99``` ts
10- #activedescentant = ActivedescendantController .of (this , {
10+ #activedescendant = ActivedescendantController .of (this , {
1111 getItems : () => this .options ,
1212 getItemsContainer : () => this .#listbox ,
1313 getOrientation : () => ' vertical' ,
You can’t perform that action at this time.
0 commit comments