Tracks which element has focus; used for keyboard navigation
()
| 393 | |
| 394 | /** Tracks which element has focus; used for keyboard navigation */ |
| 395 | get focusIndex(): number { |
| 396 | return this._keyManager ? this._keyManager.activeItemIndex! : 0; |
| 397 | } |
| 398 | |
| 399 | /** When the focus index is set, we must manually send focus to the correct label */ |
| 400 | set focusIndex(value: number) { |
nothing calls this directly
no test coverage detected