()
| 273 | } |
| 274 | |
| 275 | ngAfterContentInit() { |
| 276 | this.chipBlurChanges.pipe(takeUntil(this._destroyed)).subscribe(() => { |
| 277 | this._blur(); |
| 278 | this.stateChanges.next(); |
| 279 | }); |
| 280 | |
| 281 | merge(this.chipFocusChanges, this._chips.changes) |
| 282 | .pipe(takeUntil(this._destroyed)) |
| 283 | .subscribe(() => this.stateChanges.next()); |
| 284 | } |
| 285 | |
| 286 | ngDoCheck() { |
| 287 | if (this.ngControl) { |