Checks to see if the blur should emit the (chipEnd) event.
()
| 172 | |
| 173 | /** Checks to see if the blur should emit the (chipEnd) event. */ |
| 174 | _blur() { |
| 175 | if (this.addOnBlur) { |
| 176 | this._emitChipEnd(); |
| 177 | } |
| 178 | this.focused = false; |
| 179 | // Blur the chip list if it is not focused |
| 180 | if (!this._chipGrid.focused) { |
| 181 | this._chipGrid._blur(); |
| 182 | } |
| 183 | this._chipGrid.stateChanges.next(); |
| 184 | } |
| 185 | |
| 186 | _focus() { |
| 187 | this.focused = true; |
nothing calls this directly
no test coverage detected