mdgriffith / style-elements

Create styles that don't mysteriously break!
http://package.elm-lang.org/packages/mdgriffith/style-elements/latest
BSD 3-Clause "New" or "Revised" License
445 stars 49 forks source link

Add Date/Time picker to Element.Input #143

Open TomSesselmann opened 6 years ago

TomSesselmann commented 6 years ago

The big picture of what I'm trying to do

Would be good to have a native date/time picker in Element.Input

Unfortunately you can't set the type attribute of a text input field in style-elements as described here #64

The best workaround I can find at the moment is

node "input" <| 
    el None
        [ attribute "type" "datetime-local" ]
        (text "")

Versions

TomSesselmann commented 6 years ago

Also <input type=number> would be good to add too.