solid-transition-group
solid-transition-group copied to clipboard
SolidJS components for applying animations when children elements enter or leave the DOM.
Currently this package only provides `` and `` components that apply styles to direct individual elements. But you cannot easily toggle exit/enter classes in nested elements. Is it something solved...
When this library is being used together with https://suid.io/, all material styles are lost on exit transition, because the `` element in the `` gets removed when the exit transition...
hi this is my democode https://github.com/kulame/solid-demo/blob/master/src/Search.tsx ```typescript ``` Why doesn't the window still not disappear after I clicked outside ? In addition, the animation effect of Transition never appears after...
I have a 3rd party component that relies on a `document.getElementById` call to find a DOM node in my components `onMount` function. Works great with the normal transition, until I...
Is: Currently if a keyed `` is used inside of a ``, and the Show value is suspense-transitioned with `startTransition`, the exit and enter animations will already run with old...
adding this to a solid start bare template causes routes to be duplicated to the bottom of the page upon navigation. here's a repro repo https://github.com/samualtnorman/solid-transition-group-issue 
Hello, is it possible that we could just pass a static, non-transition related class to the container element which gets to contain the children passed to Transition component and rendered...
Here's the reproduction url: https://github.com/Odas0R/solid-group-transition-bug Everything you need to do is on the URL to throw the error. I'm using `wrangler` cli which emulates a worker environment. Code also breaks...
Hi! I ran into an issue where I tried to write tests for a component that uses the `` component, but it doesn't seem like it works in tests (using...
How to use this in Portal? ```js {show() && } ``` Transition's children is a Portal, not a HTMLElement, so Transition can not add classes to inner dialog element.