()
| 214 | /** Whether the chip is disabled. */ |
| 215 | @Input({transform: booleanAttribute}) |
| 216 | get disabled(): boolean { |
| 217 | return this._disabled || this._chipListDisabled; |
| 218 | } |
| 219 | set disabled(value: boolean) { |
| 220 | this._disabled = value; |
| 221 | } |
no outgoing calls
no test coverage detected