diff --git a/examples/DragAndDrop.elm b/examples/DragAndDrop.elm index d8f73e4..e9e19d7 100644 --- a/examples/DragAndDrop.elm +++ b/examples/DragAndDrop.elm @@ -1,3 +1,5 @@ +module DragAndDrop exposing (..) + import Browser import File exposing (File) import File.Select as Select diff --git a/examples/DragAndDropWithImagePreview.elm b/examples/DragAndDropWithImagePreview.elm index ff13147..026152b 100644 --- a/examples/DragAndDropWithImagePreview.elm +++ b/examples/DragAndDropWithImagePreview.elm @@ -1,3 +1,5 @@ +module DragAndDropWithImagePreview exposing (..) + import Browser import File exposing (File) import File.Select as Select diff --git a/examples/SelectFiles.elm b/examples/SelectFiles.elm index f6aee08..fc938a7 100644 --- a/examples/SelectFiles.elm +++ b/examples/SelectFiles.elm @@ -1,3 +1,5 @@ +module SelectFiles exposing (..) + import Browser import File exposing (File) import Html exposing (..) diff --git a/examples/SelectFilesWithProgress.elm b/examples/SelectFilesWithProgress.elm index c943fe5..901735d 100644 --- a/examples/SelectFilesWithProgress.elm +++ b/examples/SelectFilesWithProgress.elm @@ -1,3 +1,5 @@ +module SelectFilesWithProgress exposing (..) + import Browser import File exposing (File) import Html exposing (..) diff --git a/examples/SelectFilesWithProgressAndCancellation.elm b/examples/SelectFilesWithProgressAndCancellation.elm index f6424b7..afb19b3 100644 --- a/examples/SelectFilesWithProgressAndCancellation.elm +++ b/examples/SelectFilesWithProgressAndCancellation.elm @@ -1,3 +1,5 @@ +module SelectFilesWithProgressAndCancellation exposing (..) + import Browser import File exposing (File) import Html exposing (..) diff --git a/examples/elm.json b/examples/elm.json index 3cf402a..f687557 100644 --- a/examples/elm.json +++ b/examples/elm.json @@ -3,7 +3,7 @@ "source-directories": [ "." ], - "elm-version": "0.19.0", + "elm-version": "0.19.1", "dependencies": { "direct": { "elm/browser": "1.0.1",