virtual-dom icon indicating copy to clipboard operation
virtual-dom copied to clipboard

The foundation of HTML and SVG in Elm.

Results 61 virtual-dom issues
Sort by recently updated
recently updated
newest added

This was previously reported in https://github.com/elm/compiler/issues/1735, and noted to probably be fixed in 0.19.0. I'm running elm 0.19.0 and get that error when running https://github.com/evancz/elm-architecture-tutorial/blob/bbe9e3f76a2415734349583f562465e45c1c6f46/examples/03-form.elm with two minor modifications: *...

In a single page application when a link is clicked you get a call to ```onUrlChange : Url -> msg``` and the message is sent to ```update : msg ->...

## SSCCE: https://ellie-app.com/4TNwCtWm5HGa1 ```elm module Main exposing (main) import Browser import Html exposing (Html) import Html.Attributes import Html.Events import Task import Json.Encode main = Browser.element { init = init ,...

I got this weird error: Here is the breaking code: Notice that `elm make` compiles successfully.

I just upgraded to version `1.0.1` and ran in to problems when using `Html.attribute "" ""`. It didn't use to cause an exception, and now it does. Let me know...

When virtualizing an ``, the `src` attribute is interpreted as an attribute. But [`Html.Attributes.src`](https://github.com/elm/html/blob/1.0.0/src/Html/Attributes.elm#L307) is a property. This inconsistency confuses `_VirtualDom_diffFacts`, which generates a patch to delete the attribute and...

When switching between two forms, if the structure of the HTML is similiar enough, the virtual DOM will reuse the existing input elements and change the properties/attributes around. Attributes that...

## SSCCE https://ellie-app.com/937PLf6rLa1/0 ## Expected behaviour Selecting the first option (which has `value ""`) should send a message updating the selected value to `""`. Instead it sends a message with...

## Situation In a signup form, the fact that virtual-dom cannot diff properly the list of inputs can easily, mistakenly lead to accidentally leaking passwords. ## Problem Because virtual-dom relies...

I have a module called `TaskRouterTask`, with its corresponding `Msg` of `UpdateTask (Result String TaskRouterTask)`. `TaskRouterTask` is just a simple type alias: `type alias TaskRouterTask = { sid : String,...