New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

solid-transition-group

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

solid-transition-group - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

8

dist/solid-transition-group.js

@@ -45,3 +45,3 @@ import { createSignal, children, mergeProps, createComputed, untrack, batch, createEffect } from 'solid-js';

el.classList.add(...enterToClasses);
onEnter && onEnter(el, endTransition);
onEnter && onEnter(el, () => endTransition());

@@ -85,3 +85,3 @@ if (!onEnter || onEnter.length < 2) {

});
onExit && onExit(prev, endTransition);
onExit && onExit(prev, () => endTransition());

@@ -190,3 +190,3 @@ if (!onExit || onExit.length < 2) {

el.classList.add(...enterToClasses);
onEnter && onEnter(el, endTransition);
onEnter && onEnter(el, () => endTransition());

@@ -223,3 +223,3 @@ if (!onEnter || onEnter.length < 2) {

});
onExit && onExit(old, endTransition);
onExit && onExit(old, () => endTransition());

@@ -226,0 +226,0 @@ if (!onExit || onExit.length < 2) {

@@ -6,3 +6,3 @@ {

"license": "MIT",
"version": "0.0.9",
"version": "0.0.10",
"homepage": "https://github.com/solidjs/solid-transition-group#readme",

@@ -9,0 +9,0 @@ "repository": {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc