Combined stream of all of the child chips' focus events.
()
| 66 | |
| 67 | /** Combined stream of all of the child chips' focus events. */ |
| 68 | get chipFocusChanges(): Observable<MatChipEvent> { |
| 69 | return this._getChipStream(chip => chip._onFocus); |
| 70 | } |
| 71 | |
| 72 | /** Combined stream of all of the child chips' destroy events. */ |
| 73 | get chipDestroyedChanges(): Observable<MatChipEvent> { |
nothing calls this directly
no test coverage detected