ReadonlyariaAccessible label.
ReadonlydisabledWhether the slider is disabled.
ReadonlymaxMaximum value.
ReadonlyminMinimum value.
ReadonlymodeSlider mode: single thumb or range (two thumbs).
ReadonlyshowWhether to show the min and max labels at each end of the track.
ReadonlyshowWhether to show tick marks along the track.
When true and no explicit ticks array is provided, tick marks
are generated automatically at each step interval.
ReadonlyshowWhether to show the current value label(s).
ReadonlystepStep increment.
ReadonlyticksExplicit tick mark definitions.
When provided, these override the auto-generated step-based ticks.
Each entry may include an optional label rendered below the mark.
Setting this implicitly enables tick display (even if showTicks
is false).
ReadonlyvalueCurrent value. Number for single, [low, high] for range.
ReadonlyvalueEmitted when the value changes.
A range slider with single-thumb and dual-thumb (range) modes.
In single mode,
valueis a number. In range mode,valueis a[low, high]tuple and two thumbs are rendered.Example