Getting StartedInstallation and setup guides 6
FormInput and selection components 26
LayoutWorkflow and structural layout components 10
NavigationMenu surfaces and hierarchical actions 7
OverlayModal and floating layer surfaces 3
FeedbackStatus, empty, progress, and loading placeholder patterns 6
UtilityGeneral-purpose interface utilities 7

Imports

Styled component import

ts
import { TngSliderComponent } from '@tailng-ui/components';

Basic usage

Controlled value

html
<tng-slider
  [value]="volume()"
  (valueChange)="volume.set($event)"
  [min]="0"
  [max]="100"
  [step]="1"
  aria-label="Volume"
></tng-slider>

Slider variants

The wrapper keeps numeric state controlled while the surrounding shell carries labels and summaries.

Volume slider (Plain-CSS)

Volume

Controlled value with a compact summary beside the slider.

42%

Behavior baseline

  • The wrapper exposes a controlled numeric model through value and valueChange.
  • min, max, and step are forwarded to the native range input.