(step: number)
| 296 | private _step: number = 1; |
| 297 | |
| 298 | private _updateStep(step: number): void { |
| 299 | this._step = step; |
| 300 | this._isRange ? this._updateStepRange() : this._updateStepNonRange(); |
| 301 | this._onMinMaxOrStepChange(); |
| 302 | } |
| 303 | |
| 304 | private _updateStepRange(): void { |
| 305 | const endInput = this._getInput(_MatThumb.END) as _MatSliderRangeThumb; |
no test coverage detected