Combined stream of all of the child chips' blur events.
()
| 168 | |
| 169 | /** Combined stream of all of the child chips' blur events. */ |
| 170 | get chipBlurChanges(): Observable<MatChipEvent> { |
| 171 | return this._getChipStream(chip => chip._onBlur); |
| 172 | } |
| 173 | |
| 174 | /** The value of the listbox, which is the combined value of the selected chips. */ |
| 175 | @Input() |
nothing calls this directly
no test coverage detected