Deselects an array of values.
(values: T[])
| 168 | |
| 169 | /** Deselects an array of values. */ |
| 170 | private _deselect(values: T[]) { |
| 171 | this._verifyValueAssignment(values); |
| 172 | values.forEach(value => this._unmarkSelected(value)); |
| 173 | const changed = this._hasQueuedChanges(); |
| 174 | this._emitChangeEvent(); |
| 175 | return changed; |
| 176 | } |
| 177 | |
| 178 | /** Sets the current selection from an array of items. */ |
| 179 | private _setSelection(values: T[]) { |
no test coverage detected