Sends focus to the first gridcell when the user clicks anywhere inside the chip.
()
| 148 | |
| 149 | /** Sends focus to the first gridcell when the user clicks anywhere inside the chip. */ |
| 150 | _handleFocus() { |
| 151 | if (!this._isEditing && !this.disabled) { |
| 152 | this.focus(); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | override _handleKeydown(event: KeyboardEvent): void { |
| 157 | if (event.keyCode === ENTER && !this.disabled) { |