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.2 to 0.12.3

3

dist/esm/index.js

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

for (const key in value) {
if (!this[key]) {
// be careful of 0 values
if (this[key] === undefined) {
this[key] = value[key];

@@ -654,0 +655,0 @@ }

@@ -315,3 +315,4 @@ /*

for (const key in value) {
if (!this[key]) {
// be careful of 0 values
if (this[key] === undefined) {
this[key] = value[key];

@@ -318,0 +319,0 @@ }

{
"name": "@lightningjs/solid",
"version": "0.12.2",
"version": "0.12.3",
"description": "Lightning renderer for solid universal",

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

@@ -408,3 +408,4 @@ /*

for (const key in value) {
if (!this[key as keyof SolidStyles]) {
// be careful of 0 values
if (this[key as keyof SolidStyles] === undefined) {
this[key as keyof SolidStyles] = value[key as keyof SolidStyles];

@@ -411,0 +412,0 @@ }

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