()
| 852 | } |
| 853 | |
| 854 | _clearFocus() { |
| 855 | const allItems = this._getItems(); |
| 856 | |
| 857 | allItems.map(item => { |
| 858 | item.focused = false; |
| 859 | |
| 860 | return item; |
| 861 | }); |
| 862 | } |
| 863 | |
| 864 | // Get groups and items as a flat array for filtering |
| 865 | _getItems() { |
no test coverage detected