edkv

Results 5 issues of edkv

#### Example ```elm module Main exposing (main) import Browser import Browser.Events import Browser.Navigation import Html exposing (Html) import Html.Attributes import Html.Events import Json.Decode type Model = Button | Image |...

Example: ``` > Url.Builder.absolute [ "foo", "/", "bar" ] [] "/foo///bar" : String ``` Should be `/foo%2Fbar`, right? I've seen #21, didn't read the spec, but here's what the [Wikipedia...

request
breaking

Consider the following example: ```elm div [ css [ hover [ backgroundColor black ] ] ] [ span [] [ text "Hello" ] , span [] [ text " world!"]...

question

`VirtualDom.map` is O(1) operation. On the other hand, `Html.Styled.map` traverses the entire tree converting all nodes and attributes. Moreover, `view |> map A |> map B` requires traversing the tree...

question

(copied from Slack) Since you're working on 2.0, I want to share some ideas I have. I was thinking if we can reduce number of modules in the library. For...