Module

Halogen.Widgets.Slider

Package
purescript-halogen-widgets
Repository
afcondon/purescript-halogen-widgets

A controlled range slider. The parent owns value; dragging requests new values via Changed, debounced inside the widget (a drag fires a flood of input events — exactly the behaviour the contract says belongs in the widget, not in app code). Set debounce to Milliseconds 0.0 to emit every step.

#Input Source

type Input = { debounce :: Milliseconds, disabled :: Boolean, max :: Number, min :: Number, step :: Number, value :: Number }

#Output Source

data Output

Constructors

#Query Source

data Query a

Constructors

#component Source

#defaultInput Source