uncover-co / elm-widgets / W.DataRow

view : List (Attribute msg) -> List (Html msg) -> Html msg

header : List (Html msg) -> Attribute msg

footer : List (Html msg) -> Attribute msg

left : List (Html msg) -> Attribute msg

right : List (Html msg) -> Attribute msg

Next API

This will be the only API available on the next major release.

viewNext : List (Attribute msg) -> { left : List (Html msg), main : List (Html msg), right : List (Html msg) } -> Html msg

viewNextExtra : List (Attribute msg) -> { left : List (Html msg), header : List (Html msg), main : List (Html msg), footer : List (Html msg), right : List (Html msg) } -> Html msg

Actions

href : String -> Attribute msg

openNewTab : Attribute msg

onClick : msg -> Attribute msg

noLeftClick : Attribute msg

Styles

noBackground : Attribute msg

gap : Basics.Int -> Attribute msg

innerGap : Basics.Int -> Attribute msg

padding : Basics.Int -> Attribute msg

paddingX : Basics.Int -> Attribute msg

paddingY : Basics.Int -> Attribute msg

noPadding : Attribute msg

Html

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

Attributes applied to the parent element.

noAttr : Attribute msg


type Attribute msg