Combined stream of all of the child chips' selection change events.
()
| 163 | |
| 164 | /** Combined stream of all of the child chips' selection change events. */ |
| 165 | get chipSelectionChanges(): Observable<MatChipSelectionChange> { |
| 166 | return this._getChipStream<MatChipSelectionChange, MatChipOption>(chip => chip.selectionChange); |
| 167 | } |
| 168 | |
| 169 | /** Combined stream of all of the child chips' blur events. */ |
| 170 | get chipBlurChanges(): Observable<MatChipEvent> { |
nothing calls this directly
no test coverage detected