-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSS Animations example doesn't work #385
Comments
Hmm.. the example works in codesandbox: https://codesandbox.io/s/basic-css-transition-36rln So probably something specific to playground/website. I will transfer the issue there. |
Ok this is interesting When you change the import to and @solid-primitives/transition-group (dependency of solid-transition-group) Solid playground uses esm.sh for fetching packages, and so if you request the
It requests solid-js version 1.6.15 But when you request the @solid-primitives/transition-group dependency:
It requests solid-js 1.6.14 But then, when you request for solid-js - version used by your code in the playground
It responds with 1.6.14 😅 So both playground and solid-transition-group are working fine. It's just that they are using different solid versions - which breaks the usual execution of effects - because esm.sh responds with inconsistent solid-js versions. |
Describe the bug
Navigate to the CSS Animations example and it won't render anything because it crashes with the following error:
Your Example Website or App
https://www.solidjs.com/examples/cssanimations
Steps to Reproduce the Bug or Issue
Check out this 45-sec video: https://youtu.be/d1Jk8Ma58iQ
Expected behavior
I expected to see some transitions and animations.
Screenshots or Videos
No response
Platform
Additional context
No response
The text was updated successfully, but these errors were encountered: