Syncs the chip-set's state with the individual chips.
()
| 152 | |
| 153 | /** Syncs the chip-set's state with the individual chips. */ |
| 154 | protected _syncChipsState() { |
| 155 | this._chips?.forEach(chip => { |
| 156 | chip._chipListDisabled = this._disabled; |
| 157 | chip._changeDetectorRef.markForCheck(); |
| 158 | }); |
| 159 | } |
| 160 | |
| 161 | /** Dummy method for subclasses to override. Base chip set cannot be focused. */ |
| 162 | focus() {} |
no test coverage detected