Checks whether all values are selected.
()
| 177 | |
| 178 | /** Checks whether all values are selected. */ |
| 179 | isAllSelected() { |
| 180 | return this._data.every((value, index) => this._selection.isSelected({value, index})); |
| 181 | } |
| 182 | |
| 183 | /** Checks whether partially selected. */ |
| 184 | isPartialSelected() { |
no test coverage detected