diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-01T22·04+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-01T22·04+0100 |
commit | 249e3113ffbcda047bd9461f01aaa64aa2dd94f1 (patch) | |
tree | 6f3edd19086b88a60e48fa66a74cbc501e776b35 /client/elm.json | |
parent | 54eb29eae0398dd19f5fdaed278f29453b0b7e44 (diff) |
Support creating Trips from the frontend
*sigh* ... spent way too much time encoding/decoding date types... I need my database, server, client, and JSON need to agree on types. TL;DR: - Add CSS for elm/datepicker library - Create Common.allErrors to display UI errors - Prefer Data.Time.Calendar.Day instead of newtype Date wrapper around Text
Diffstat (limited to 'client/elm.json')
-rw-r--r-- | client/elm.json | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/elm.json b/client/elm.json index 76664b62b8ed..c4095e118e24 100644 --- a/client/elm.json +++ b/client/elm.json @@ -6,6 +6,7 @@ "elm-version": "0.19.1", "dependencies": { "direct": { + "CurrySoftware/elm-datepicker": "4.0.0", "elm/browser": "1.0.2", "elm/core": "1.0.5", "elm/html": "1.0.0", @@ -19,6 +20,7 @@ "elm-community/list-extra": "8.2.3", "elm-community/maybe-extra": "5.2.0", "elm-community/random-extra": "3.1.0", + "justinmimbs/date": "3.2.1", "krisajenkins/remotedata": "6.0.1", "ryannhg/date-format": "2.3.0" }, |