Cole Chamberlin

Results 11 comments of Cole Chamberlin

Hey, just wondering if there's any progress on this issue, and if not could I contribute to getting this over the finish line? I'm developing a [game](https://gramjam.app) in the svelte...

Does this preclude the usage of `transformResponse` with codegen tools like `@rtk-query/codegen-openapi`? It seems like `enhanceEndpoints` is the only way to intercept the API response types in this case.

Yeah, I'd love this as well. https://user-images.githubusercontent.com/5025783/131439359-5a09acc9-c060-46d6-8dc0-9e2093f82c8c.mp4 See this example of the entering bar incorrectly transitioning other bars

I ran into a similar issue, wondering if anyone else has seen this behavior. I have a modal I want to open on initial page load, so I have something...

> @jessecoleman You should probably use `afterNavigate` instead of `onMount`. Thanks. I think I figured out my issue, which was maybe unrelated to this bug. When calling `invalidate` on a...

Is there any more progress on this feature? We're thinking about using this library in our project and we'd really like to be able to use it with some of...

Yeah, the swap behavior is working for me, I mostly wanted to avoid having to hack together some imperative animation to achieve the "return to origin" effect that was default...

I was able to work around this by conditionally adding a css class with `transition: transform 0.5s ease` to the element being dragged after releasing. It works well enough, although...

Just adding more context: seems like the issue is related to mixing `translate` and `translate3d` styles between the built-in svelte crossfade and the drag and drop library. passing `gpuAcceleration: false`...

My workaround here was to bake the delay into the `css` animation, since I already have a custom crossfade function. Would be nice to have a framework-level solution, but I...