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.12.10 to 0.12.11

4

dist/esm/index.js

@@ -607,7 +607,7 @@ import { createSignal, mergeProps as mergeProps$1, createRoot, createRenderEffect, createMemo, createComponent as createComponent$1, untrack, onMount } from 'solid-js';

async start() {
let animation = this._animationQueue.pop();
let animation = this._animationQueue.shift();
while (animation) {
this._animationRunning = true;
await this.animate(animation.props, animation.animationSettings).start().waitUntilStopped();
animation = this._animationQueue.pop();
animation = this._animationQueue.shift();
}

@@ -614,0 +614,0 @@ this._animationRunning = false;

@@ -270,3 +270,3 @@ /*

async start() {
let animation = this._animationQueue.pop();
let animation = this._animationQueue.shift();
while (animation) {

@@ -277,3 +277,3 @@ this._animationRunning = true;

.waitUntilStopped();
animation = this._animationQueue.pop();
animation = this._animationQueue.shift();
}

@@ -280,0 +280,0 @@ this._animationRunning = false;

@@ -37,3 +37,3 @@ import { type AnimationSettings, type Dimensions, type INode, type INodeWritableProps, type ITextNodeWritableProps, type NodeFailedPayload, type NodeLoadedPayload } from '@lightningjs/renderer';

borderTop?: BorderStyle;
display?: 'flex';
display?: 'flex' | 'block';
effects?: any;

@@ -40,0 +40,0 @@ flexDirection?: 'row' | 'column';

{
"name": "@lightningjs/solid",
"version": "0.12.10",
"version": "0.12.11",
"description": "Lightning renderer for solid universal",

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

@@ -13,2 +13,6 @@ <p>

## Playground
[playground.solidjs.com](https://playground.solidjs.com/anonymous/667180a0-ac7c-4e54-96e8-1e8d66f41790)
## Quick Start

@@ -15,0 +19,0 @@

@@ -358,3 +358,3 @@ /*

async start() {
let animation = this._animationQueue.pop();
let animation = this._animationQueue.shift();
while (animation) {

@@ -365,3 +365,3 @@ this._animationRunning = true;

.waitUntilStopped();
animation = this._animationQueue.pop();
animation = this._animationQueue.shift();
}

@@ -368,0 +368,0 @@ this._animationRunning = false;

@@ -67,3 +67,3 @@ /*

borderTop?: BorderStyle;
display?: 'flex';
display?: 'flex' | 'block';
effects?: any; // Should be EffectMap

@@ -70,0 +70,0 @@ flexDirection?: 'row' | 'column';

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