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.3.3 to 0.3.4

2

package.json
{
"name": "@lightningjs/solid",
"version": "0.3.3",
"version": "0.3.4",
"description": "Lightning renderer for solid universal",

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

@@ -181,3 +181,3 @@ /*

linearGradient: {
set(props) {
set(props = {}) {
this._linearGradient = props;

@@ -184,0 +184,0 @@ if (props.colors) {

@@ -72,12 +72,17 @@ /*

untrack(() => {
focusPath().forEach((elm) => {
const fp = focusPath();
for (const elm of fp) {
if (isFunc(elm[`on${key}`])) {
return elm[`on${key}`].call(elm, e, elm);
if (elm[`on${key}`].call(elm, e, elm) === true) {
break;
}
}
if (isFunc(elm.onKeyPress)) {
return elm.onKeyPress.call(elm, e, key, elm);
if (elm.onKeyPress.call(elm, e, key, elm) === true) {
break;
}
}
return false;
});
}
return false;
});

@@ -84,0 +89,0 @@ }

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