()
| 121 | /** Whether the slider displays a numeric value label upon pressing the thumb. */ |
| 122 | @Input({transform: booleanAttribute}) |
| 123 | get discrete(): boolean { |
| 124 | return this._discrete; |
| 125 | } |
| 126 | set discrete(v: boolean) { |
| 127 | this._discrete = v; |
| 128 | this._updateValueIndicatorUIs(); |
nothing calls this directly
no test coverage detected