-
To start this off I think Elm's avoidance of infix operators is generally a really good design decision.
That being said, I'm running into an interesting issue. In `style-elements` we want to have…
-
Right now I can't install `mdgriffith/style-elements` with `mdgriffith/elm-style-animation`, i.e.
```
cd /tmp
mkdir test
cd test
elm-package install mdgriffith/style-elements
elm-package insta…
-
Hey @mdgriffith,
Thanks again for this awesome package! I've tried about 4 different approaches to Css in Elm and this package is by far the best for animation with Elm, it actually saved me a lot …
-
I was working on an animation which consisted of two steps, and noticed that the second step never got executed. It's probably easier to give a minimal example to explain:
```
module Main exposing…
-
This looks really nice. I can tell you put a lot of thought into it. I've [been investigating the elm architecture](https://github.com/ccorcos/elmish) which has led me here because this snabbdom uses …
-
#### Description :octocat:
It would seem that #9127 introduced a regression in layer indexing. I managed to get my system into a working state by deleting https://github.com/syl20bnr/spacemacs/commit…
-
Have you already considered taking advantage of [homogeneous coordinates](https://en.wikipedia.org/wiki/Homogeneous_coordinates) for your private data types?
-
The `rotate` transform for SVG takes two optional arguments that describe the point about which the element is to be rotated. Because the library does not expose these two arguments, the default of (0…
-
It should be a good idea to add the `Animation.State` to the docs because the compiler is suggesting something totally different: `Animation.Model.Animation msg`. I had to look in one of your repos to…
-
instead of `{style = Animation.style [ Animation.left (px 0.0) ]}` I want to break but styles into helper functions. I need to do this in order to dynamically style each element so I set up a function…