Module

Halogen.Widgets.Stepper

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

A controlled integer stepper: ‹ value › with clampInted bounds. The parent owns value; the arrows request value ± step (clampInted) via Changed.

#Input Source

type Input = { disabled :: Boolean, max :: Int, min :: Int, step :: Int, value :: Int }

#Output Source

data Output

Constructors

#Query Source

data Query a

Constructors

#component Source

#defaultInput Source