(max: number)
| 234 | private _max: number = 100; |
| 235 | |
| 236 | private _updateMax(max: number): void { |
| 237 | const prevMax = this._max; |
| 238 | this._max = max; |
| 239 | this._isRange ? this._updateMaxRange({old: prevMax, new: max}) : this._updateMaxNonRange(max); |
| 240 | this._onMinMaxOrStepChange(); |
| 241 | } |
| 242 | |
| 243 | private _updateMaxRange(max: {old: number; new: number}): void { |
| 244 | const endInput = this._getInput(_MatThumb.END) as _MatSliderRangeThumb; |
no test coverage detected