* Determines if key manager should avoid putting a given chip action in the tab index. Skip * non-interactive and disabled actions since the user can't do anything with them.
(action: MatChipContent)
| 262 | * non-interactive and disabled actions since the user can't do anything with them. |
| 263 | */ |
| 264 | protected _skipPredicate(action: MatChipContent): boolean { |
| 265 | // `mat-chip-set` does not permit focusing disabled chips. |
| 266 | return action.disabled; |
| 267 | } |
| 268 | |
| 269 | /** Listens to changes in the chip set and syncs up the state of the individual chips. */ |
| 270 | private _trackChipSetChanges() { |
no outgoing calls
no test coverage detected