Combined stream of all of the child chips' blur events.
()
| 216 | |
| 217 | /** Combined stream of all of the child chips' blur events. */ |
| 218 | get chipBlurChanges(): Observable<MatChipEvent> { |
| 219 | return this._getChipStream(chip => chip._onBlur); |
| 220 | } |
| 221 | |
| 222 | /** Emits when the chip grid value has been changed by the user. */ |
| 223 | @Output() readonly change: EventEmitter<MatChipGridChange> = |
nothing calls this directly
no test coverage detected