(str: string)
| 847 | } |
| 848 | |
| 849 | _startsWithMatchingItems(str: string): Array<IComboBoxItem> { |
| 850 | const allItems:Array<IComboBoxItem> = this._getItems().filter(item => !isInstanceOfComboBoxItemGroup(item)); |
| 851 | return Filters.StartsWith(str, allItems, "text"); |
| 852 | } |
| 853 | |
| 854 | _clearFocus() { |
| 855 | const allItems = this._getItems(); |
no test coverage detected