()
| 364 | static i18nBundle: I18nBundle; |
| 365 | |
| 366 | constructor() { |
| 367 | super(); |
| 368 | |
| 369 | this._handleResizeBound = this._handleResize.bind(this); |
| 370 | |
| 371 | // Init ItemNavigation |
| 372 | this._itemNavigation = new ItemNavigation(this, { |
| 373 | getItemsCallback: () => this._getFocusableRefs(), |
| 374 | skipItemsSize: PAGE_UP_DOWN_SIZE, |
| 375 | }); |
| 376 | } |
| 377 | |
| 378 | onBeforeRendering() { |
| 379 | this._itemsFlat = this._flatten(this.items); |
nothing calls this directly
no test coverage detected