()
| 104 | } |
| 105 | |
| 106 | _onSelectionChange() { |
| 107 | const tableSelection = this._tableSelection!; |
| 108 | const selected = tableSelection.isMultiSelectable() ? !this._isSelected : true; |
| 109 | tableSelection.setSelected(this, selected, true); |
| 110 | } |
| 111 | |
| 112 | _onkeydown(e: KeyboardEvent, eventOrigin: HTMLElement) { |
| 113 | if ((eventOrigin === this && this._isSelectable && isSpace(e)) || (eventOrigin === this._selectionCell && (isSpace(e) || isEnter(e)))) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…