uncover-co / elm-widgets / W.InputTextArea

view : List (Attribute msg) -> { value : String, onInput : String -> msg } -> Html msg

Styles

placeholder : String -> Attribute msg

resizable : Basics.Bool -> Attribute msg

rows : Basics.Int -> Attribute msg

autogrow : Basics.Bool -> Attribute msg

States

autofocus : Attribute msg

disabled : Basics.Bool -> Attribute msg

readOnly : Basics.Bool -> Attribute msg

Validation Attributes

required : Basics.Bool -> Attribute msg

Actions

onBlur : msg -> Attribute msg

onEnter : msg -> Attribute msg

onFocus : msg -> Attribute msg

Html

htmlAttrs : List (Html.Attribute msg) -> Attribute msg

noAttr : Attribute msg


type Attribute msg