Skip to content

Commit 4f62c24

Browse files
committed
docs: changelogs
1 parent e2cd665 commit 4f62c24

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.changeset/a11y-controller-opts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

1414
firstUpdated() {
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

.changeset/activedescendant-controller.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This controller implements the [WAI-ARIA activedescendant pattern][pattern]
77
for 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',

0 commit comments

Comments
 (0)