* Implemented as part of MatFormFieldControl. * @docs-private
(event: MouseEvent)
| 311 | * @docs-private |
| 312 | */ |
| 313 | onContainerClick(event: MouseEvent) { |
| 314 | if (!this.disabled && !this._originatesFromChip(event)) { |
| 315 | this.focus(); |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | /** |
| 320 | * Focuses the first chip in this chip grid, or the associated input when there |
nothing calls this directly
no test coverage detected