Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lightningjs/solid

Package Overview
Dependencies
Maintainers
7
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lightningjs/solid - npm Package Compare versions

Comparing version 0.11.1 to 0.11.2

2

dist/esm/index.js

@@ -566,3 +566,3 @@ import { createSignal, mergeProps as mergeProps$1, createRoot, createRenderEffect, createMemo, createComponent as createComponent$1, untrack, createEffect } from 'solid-js';

if (this.lng) {
if (config.animationsEnabled && this.transition) {
if (config.animationsEnabled && this.transition && (this.transition === true || this.transition[name])) {
const animationSettings = this.transition === true || this.transition[name] === true ? undefined : this.transition[name];

@@ -569,0 +569,0 @@ return this.animate({

@@ -221,3 +221,5 @@ /*

if (this.lng) {
if (config.animationsEnabled && this.transition) {
if (config.animationsEnabled &&
this.transition &&
(this.transition === true || this.transition[name])) {
const animationSettings = this.transition === true || this.transition[name] === true

@@ -224,0 +226,0 @@ ? undefined

{
"name": "@lightningjs/solid",
"version": "0.11.1",
"version": "0.11.2",
"description": "Lightning renderer for solid universal",

@@ -5,0 +5,0 @@ "type": "module",

@@ -290,3 +290,7 @@ /*

if (this.lng) {
if (config.animationsEnabled && this.transition) {
if (
config.animationsEnabled &&
this.transition &&
(this.transition === true || this.transition[name])
) {
const animationSettings =

@@ -293,0 +297,0 @@ this.transition === true || this.transition[name] === true

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