Skip to content

Commit

Permalink
feat: add autocomplete for standard emojis (#264)
Browse files Browse the repository at this point in the history
* feat: keep state of the emoji start

* fix: add elm-json

* feat: filter emojis to display

* feat: select emoji in dropdown

* feat: select custom emojis
  • Loading branch information
vjousse authored Jun 11, 2024
1 parent d2387b8 commit 1995409
Show file tree
Hide file tree
Showing 8 changed files with 775 additions and 137 deletions.
96 changes: 49 additions & 47 deletions elm.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,53 @@
{
"type": "application",
"source-directories": ["src"],
"elm-version": "0.19.1",
"dependencies": {
"direct": {
"ContaSystemer/elm-menu": "1.1.2",
"FabienHenon/elm-infinite-scroll": "3.0.3",
"NoRedInk/elm-json-decode-pipeline": "1.0.1",
"billstclair/elm-port-funnel": "1.2.0",
"billstclair/elm-websocket-client": "4.1.0",
"elm/browser": "1.0.2",
"elm/core": "1.0.5",
"elm/html": "1.0.0",
"elm/http": "2.0.0",
"elm/json": "1.1.3",
"elm/time": "1.0.0",
"elm/url": "1.0.0",
"elm-community/dict-extra": "2.4.0",
"elm-community/list-extra": "8.7.0",
"elm-community/string-extra": "4.0.1",
"hecrj/html-parser": "2.4.0",
"lukewestby/elm-http-builder": "8.0.0",
"rtfeldman/elm-iso8601-date-strings": "1.1.4",
"ryan-haskell/date-format": "1.0.0",
"sporto/qs": "2.0.0",
"vjousse/elm-emoji": "1.0.0",
"vjousse/elm-mastodon-tooty": "2.1.0"
"type": "application",
"source-directories": [
"src"
],
"elm-version": "0.19.1",
"dependencies": {
"direct": {
"ContaSystemer/elm-menu": "1.1.2",
"FabienHenon/elm-infinite-scroll": "3.0.3",
"NoRedInk/elm-json-decode-pipeline": "1.0.1",
"billstclair/elm-port-funnel": "1.2.0",
"billstclair/elm-websocket-client": "4.1.0",
"elm/browser": "1.0.2",
"elm/core": "1.0.5",
"elm/html": "1.0.0",
"elm/http": "2.0.0",
"elm/json": "1.1.3",
"elm/time": "1.0.0",
"elm/url": "1.0.0",
"elm-community/dict-extra": "2.4.0",
"elm-community/list-extra": "8.7.0",
"elm-community/string-extra": "4.0.1",
"hecrj/html-parser": "2.4.0",
"lukewestby/elm-http-builder": "8.0.0",
"rtfeldman/elm-iso8601-date-strings": "1.1.4",
"ryan-haskell/date-format": "1.0.0",
"sporto/qs": "2.0.0",
"vjousse/elm-emoji": "1.1.0",
"vjousse/elm-mastodon-tooty": "2.1.0"
},
"indirect": {
"Janiczek/cmd-extra": "1.1.0",
"elm/bytes": "1.0.8",
"elm/file": "1.0.5",
"elm/parser": "1.1.0",
"elm/regex": "1.0.0",
"elm/svg": "1.0.1",
"elm/virtual-dom": "1.0.3",
"robinheghan/murmur3": "1.0.0",
"rtfeldman/elm-css": "18.0.0",
"rtfeldman/elm-hex": "1.0.0"
}
},
"indirect": {
"Janiczek/cmd-extra": "1.1.0",
"elm/bytes": "1.0.8",
"elm/file": "1.0.5",
"elm/parser": "1.1.0",
"elm/regex": "1.0.0",
"elm/svg": "1.0.1",
"elm/virtual-dom": "1.0.3",
"robinheghan/murmur3": "1.0.0",
"rtfeldman/elm-css": "18.0.0",
"rtfeldman/elm-hex": "1.0.0"
"test-dependencies": {
"direct": {
"elm-explorations/test": "2.2.0"
},
"indirect": {
"elm/random": "1.0.0"
}
}
},
"test-dependencies": {
"direct": {
"elm-explorations/test": "2.2.0"
},
"indirect": {
"elm/random": "1.0.0"
}
}
}
Loading

0 comments on commit 1995409

Please sign in to comment.