()
| 150 | } |
| 151 | |
| 152 | _init() { |
| 153 | this._getItems().forEach((item, idx) => { |
| 154 | item.forcedTabIndex = (idx === this._currentIndex) ? "0" : "-1"; |
| 155 | }); |
| 156 | } |
| 157 | |
| 158 | _onkeydown(event: KeyboardEvent) { |
| 159 | if (!this._canNavigate()) { |
no test coverage detected