(max: number)
| 268 | } |
| 269 | |
| 270 | private _updateMaxNonRange(max: number): void { |
| 271 | const input = this._getInput(_MatThumb.END); |
| 272 | if (input) { |
| 273 | const oldValue = input.value; |
| 274 | |
| 275 | input.max = max; |
| 276 | input._updateThumbUIByValue(); |
| 277 | this._updateTrackUI(input); |
| 278 | |
| 279 | if (oldValue !== input.value) { |
| 280 | this._onValueChange(input); |
| 281 | } |
| 282 | } |
| 283 | } |
| 284 | |
| 285 | /** The values at which the thumb will snap. */ |
| 286 | @Input({transform: numberAttribute}) |
no test coverage detected