MCPcopy Index your code
hub / github.com/angular/components / _updateMin

Method _updateMin

src/material/slider/slider.ts:174–179  ·  view source on GitHub ↗
(min: number)

Source from the content-addressed store, hash-verified

172 disableRipple: boolean = false;
173
174 private _updateMin(min: number): void {
175 const prevMin = this._min;
176 this._min = min;
177 this._isRange ? this._updateMinRange({old: prevMin, new: min}) : this._updateMinNonRange(min);
178 this._onMinMaxOrStepChange();
179 }
180
181 private _updateMinRange(min: {old: number; new: number}): void {
182 const endInput = this._getInput(_MatThumb.END) as _MatSliderRangeThumb;

Callers 1

minMethod · 0.95

Calls 3

_updateMinRangeMethod · 0.95
_updateMinNonRangeMethod · 0.95
_onMinMaxOrStepChangeMethod · 0.95

Tested by

no test coverage detected