Combined stream of all of the child chips' remove events.
()
| 76 | |
| 77 | /** Combined stream of all of the child chips' remove events. */ |
| 78 | get chipRemovedChanges(): Observable<MatChipEvent> { |
| 79 | return this._getChipStream(chip => chip.removed); |
| 80 | } |
| 81 | |
| 82 | /** Whether the chip set is disabled. */ |
| 83 | @Input({transform: booleanAttribute}) |
nothing calls this directly
no test coverage detected