svg icon indicating copy to clipboard operation
svg copied to clipboard

Fast SVG in Elm

Results 12 svg issues
Sort by recently updated
recently updated
newest added

This is a duplicate of issue #3 , where passing an `Html.Attributes.class` instance to an `svg` function results in a runtime error, even though the code compiles just fine. Example:...

When attempting to add a class name to an SVG element using `class` from the `elm-lang/html` package the compiler doesn't complain. When running the compiled program an error is thrown:...

In reference to https://github.com/elm-lang/svg/issues/17

This is similar to #22 but I thought I would add more details since this was actually causing problems with rendering. Summary: Use of `xlink:href` in SVG output causes rendering...

I believe the `viewBox : Int -> Int -> Int -> Int -> Attribute msg` type signature would be more intutive than `viewBox : String -> Attribute msg`. `Html.Attributes` has...

With SVG 2, the `xlink:` namespace is not necessary and attributes using it are deprecated. I expect `Svg.Attributes` should reflect this change by, for example, exposing `href` instead of `xlinkHref`....

Hi, So there is one quircky thing about SVG when you are trying to get precise information about the position of pointer inside the SVG itself. Namely when you bind...

I'm looking for a way to serialize SVG. Related to https://github.com/elm/file/issues/1 The app I’m using this for is pretty niche, so a lot of this might not make sense, but...

There is a discrepancy in how **elm-lang/html** and **elm-lang/svg** packages work with `style` attribute. This attribute is declared with different types in each package: `Html.Attributes.style : List (String, String) ->...

Just as in HTML, it’s useful to be able to create a space-separated list of classes to be applied to an SVG element. `Html.Attributes.classList` does this for HTML. For `Svg`,...