From 1078c7f5fa57db2d15f1fd199978c335e65cfe52 Mon Sep 17 00:00:00 2001 From: Matthias Winkelmann Date: Wed, 7 Dec 2016 07:40:58 +0100 Subject: [PATCH] Updated examples for elm 0.18 --- examples/1-presidents.elm | 4 +--- examples/2-travel.elm | 10 ++++------ examples/elm-package.json | 10 +++++----- 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/examples/1-presidents.elm b/examples/1-presidents.elm index 30d08f1..f4837d8 100644 --- a/examples/1-presidents.elm +++ b/examples/1-presidents.elm @@ -1,14 +1,12 @@ import Html exposing (Html, div, h1, input, text) -import Html.App as App import Html.Attributes exposing (placeholder) import Html.Events exposing (onInput) -import String import Table main = - App.program + Html.program { init = init presidents , update = update , view = view diff --git a/examples/2-travel.elm b/examples/2-travel.elm index 5dd003a..4941dff 100644 --- a/examples/2-travel.elm +++ b/examples/2-travel.elm @@ -1,16 +1,14 @@ import Html exposing (Html, Attribute, div, h1, input, p, text) -import Html.App as App -import Html.Attributes exposing (checked, style, type') +import Html.Attributes exposing (checked, style, type_) import Html.Events exposing (onClick) import Html.Lazy exposing (lazy) -import String import Table exposing (defaultCustomizations) import Time exposing (Time) main = - App.program + Html.program { init = init missionSights , update = update , view = view @@ -171,7 +169,7 @@ checkboxColumn = viewCheckbox : Sight -> Table.HtmlDetails Msg viewCheckbox {selected} = Table.HtmlDetails [] - [ input [ type' "checkbox", checked selected ] [] + [ input [ type_ "checkbox", checked selected ] [] ] @@ -198,4 +196,4 @@ missionSights = , Sight "Get catcalled at BART" (5 * Time.minute) 0 1.6 False , Sight "Buy a painting at \"Stuff\"" (45 * Time.minute) 400 4.7 False , Sight "McDonalds at 24th" (20 * Time.minute) 5 2.8 False - ] \ No newline at end of file + ] diff --git a/examples/elm-package.json b/examples/elm-package.json index b2c7233..6e91c68 100644 --- a/examples/elm-package.json +++ b/examples/elm-package.json @@ -1,5 +1,5 @@ { - "version": "1.0.0", + "version": "1.0.1", "summary": "helpful summary of your project, less than 80 characters", "repository": "https://github.com/user/project.git", "license": "BSD3", @@ -8,9 +8,9 @@ ], "exposed-modules": [], "dependencies": { - "elm-lang/core": "4.0.3 <= v < 5.0.0", - "elm-lang/html": "1.1.0 <= v < 2.0.0", - "evancz/elm-sortable-table": "1.0.0 <= v < 2.0.0" + "elm-lang/core": "5.0.0 <= v < 6.0.0", + "elm-lang/html": "2.0.0 <= v < 3.0.0", + "evancz/elm-sortable-table": "1.0.1 <= v < 2.0.0" }, - "elm-version": "0.17.0 <= v < 0.18.0" + "elm-version": "0.18.0 <= v < 0.19.0" }