MCPcopy
hub / github.com/angular/components / min

Method min

src/material/slider/slider.ts:149–151  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

147 /** The minimum value that the slider can have. */
148 @Input({transform: numberAttribute})
149 get min(): number {
150 return this._min;
151 }
152 set min(v: number) {
153 const min = v === undefined || v === null || isNaN(v) ? this._min : v;
154 if (this._min !== min) {

Callers 15

_clampValueMethod · 0.45
stepMethod · 0.45
YouTubePlayerDemoClass · 0.45
_applySizeFunction · 0.45
_dragStartedFunction · 0.45
_computeNewSizeFunction · 0.45
applyMaxColumnSizeMethod · 0.45
_expandRangeMethod · 0.45
smoothScrollViewportToFunction · 0.45
generateValidGridFunction · 0.45

Calls 1

_updateMinMethod · 0.95

Tested by 1

smoothScrollViewportToFunction · 0.36