primait / forms / Prima.DatePicker

init : Date -> ( Date, Date ) -> Model

Get initial time picker model


type alias Model =
{ date : Date
, selectingYear : Basics.Bool
, daysPickerRange : ( Date
, Date ) 
}


type Msg
    = Noop
    | YearSelection
    | DaySelection
    | PrevMonth
    | NextMonth
    | SelectYear Basics.Int
    | SelectDay Basics.Int

update : Msg -> Model -> Model

view : Model -> Html Msg

selectedDate : Model -> Date

Returns currently selected date