@lightningjs/solid
Advanced tools
Comparing version 0.12.2 to 0.12.3
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
293586
4567