()
| 102 | /** Whether the slider is disabled. */ |
| 103 | @Input({transform: booleanAttribute}) |
| 104 | get disabled(): boolean { |
| 105 | return this._disabled; |
| 106 | } |
| 107 | set disabled(v: boolean) { |
| 108 | this._disabled = v; |
| 109 | const endInput = this._getInput(_MatThumb.END); |