()
| 82 | /** Whether the chip set is disabled. */ |
| 83 | @Input({transform: booleanAttribute}) |
| 84 | get disabled(): boolean { |
| 85 | return this._disabled; |
| 86 | } |
| 87 | set disabled(value: boolean) { |
| 88 | this._disabled = value; |
| 89 | this._syncChipsState(); |
nothing calls this directly
no test coverage detected