hecrj / composable-form / Form.Base.NumberField

This module contains a reusable NumberField type.

Definition


type alias NumberField number values =
Form.Field.Field (Attributes number) String values

Represents a number field.

Note: You should not need to care about this unless you are creating your own custom fields or writing custom view code.


type alias Attributes number =
{ label : String
, placeholder : String
, step : Maybe number
, min : Maybe number
, max : Maybe number 
}

The attributes of a NumberField.

You need to provide these to:

Helpers

form : (NumberField number values -> field) -> Form.Base.FieldConfig (Attributes number) String values output -> Form.Base.Form values output field

Builds a Form with a single NumberField.

Note: You should not need to care about this unless you are creating your own custom fields.