Checks whether any of the chips is focused.
()
| 147 | |
| 148 | /** Checks whether any of the chips is focused. */ |
| 149 | protected _hasFocusedChip() { |
| 150 | return this._chips && this._chips.some(chip => chip._hasFocus()); |
| 151 | } |
| 152 | |
| 153 | /** Syncs the chip-set's state with the individual chips. */ |
| 154 | protected _syncChipsState() { |