()
| 124 | */ |
| 125 | @Input({transform: booleanAttribute}) |
| 126 | override get disabled(): boolean { |
| 127 | return this.ngControl ? !!this.ngControl.disabled : this._disabled; |
| 128 | } |
| 129 | override set disabled(value: boolean) { |
| 130 | this._disabled = value; |
| 131 | this._syncChipsState(); |
nothing calls this directly
no test coverage detected