Skip to content

Commit

Permalink
Merge stable into master
Browse files Browse the repository at this point in the history
  • Loading branch information
CKEditorBot authored Jan 24, 2024
2 parents f67bce1 + 24d57ed commit dd3b278
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ckeditor5-ui/src/focuscycler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import type View from './view.js';
import type ViewCollection from './viewcollection.js';

/**
* A utility class that helps cycling over focusable {@link module:ui/view~View views} in a
* A utility class that helps cycling over {@link module:ui/focuscycler~FocusableView focusable views} in a
* {@link module:ui/viewcollection~ViewCollection} when the focus is tracked by the
* {@link module:utils/focustracker~FocusTracker} instance. It helps implementing keyboard
* navigation in HTML forms, toolbars, lists and the like.
Expand All @@ -31,7 +31,7 @@ import type ViewCollection from './viewcollection.js';
* A simple cycler setup can look like this:
*
* ```ts
* const focusables = new ViewCollection();
* const focusables = new ViewCollection<FocusableView>();
* const focusTracker = new FocusTracker();
*
* // Add focusable views to the focus tracker.
Expand Down

0 comments on commit dd3b278

Please sign in to comment.