(selection: SelectionMap, ids: Array<any>,
selected: boolean, scrollIntoView: boolean = false)
| 277 | } |
| 278 | |
| 279 | private selectionHandlerSelect(selection: SelectionMap, ids: Array<any>, |
| 280 | selected: boolean, scrollIntoView: boolean = false): void { |
| 281 | this.selectionCleared = false; |
| 282 | const firstSelect = scrollIntoView ? this.blockSelections.current.isEmpty() : false; |
| 283 | selection.select(ids, selected); |
| 284 | this.updateSelection(firstSelect); |
| 285 | } |
| 286 | |
| 287 | private selectionHandlerClear(): void { |
| 288 | this.clearSelection(); |
nothing calls this directly
no test coverage detected