Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
solid-transition-group
Advanced tools
Animation library influenced by React Transition Group and Vue Transitions for the SolidJS library.
Known limitation: Transition and Transition Group work on detecting changes on DOM children. Only supports single DOM child. Not Text or Fragments.
Animations aren't always smooth under rapid input still working on improving.
Props:
Events:
Usage:
<Transition>
serve as transition effects for single element/component. The <Transition>
only applies the transition behavior to the wrapped content inside; it doesn't render an extra DOM element, or show up in the inspected component hierarchy.
// simple CSS animation
<Transition name="slide-fade">{show() && <div>Hello</div>}</Transition>
// JS Animation
<Transition
onEnter={(el, done) => {
const a = el.animate([{ opacity: 0 }, { opacity: 1 }], {
duration: 600
});
a.finished.then(done);
}}
onExit={(el, done) => {
const a = el.animate([{ opacity: 1 }, { opacity: 0 }], {
duration: 600
});
a.finished.then(done);
}}
>
{show() && <div>Hello</div>}
</Transition>
Props:
<Transition>
except mode, appear.Events:
<Transition>
.Usage:
<TransitionGroup>
serve as transition effects for multiple elements/components.
<TransitionGroup>
supports moving transitions via CSS transform. When a child's position on screen has changed after an update, it will get applied a moving CSS class (auto generated from the name attribute or configured with the move-class attribute). If the CSS transform property is "transition-able" when the moving class is applied, the element will be smoothly animated to its destination using the FLIP technique.
<ul>
<TransitionGroup name="slide">
<For each={state.items}>{
item => <li>{item.text}</li>
}</For>
</TransitionGroup>
</ul>
FAQs
Components to manage animations for SolidJS
The npm package solid-transition-group receives a total of 7,678 weekly downloads. As such, solid-transition-group popularity was classified as popular.
We found that solid-transition-group demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.