@lightningjs/solid-primitives
Advanced tools
Comparing version 0.4.4 to 0.4.5
@@ -30,3 +30,7 @@ /* | ||
return; | ||
const child = elm.children[elm.selected]; | ||
let child = elm.children[elm.selected]; | ||
while (child?.skipFocus) { | ||
elm.selected++; | ||
child = elm.children[elm.selected]; | ||
} | ||
if (!(child instanceof ElementNode)) | ||
@@ -33,0 +37,0 @@ return; |
@@ -29,3 +29,7 @@ /* | ||
return; | ||
const child = elm.children[elm.selected]; | ||
let child = elm.children[elm.selected]; | ||
while (child?.skipFocus) { | ||
elm.selected++; | ||
child = elm.children[elm.selected]; | ||
} | ||
if (!(child instanceof ElementNode)) | ||
@@ -32,0 +36,0 @@ return; |
{ | ||
"name": "@lightningjs/solid-primitives", | ||
"version": "0.4.4", | ||
"version": "0.4.5", | ||
"description": "Lightning Primitives for Solid Lightning", | ||
"type": "module", | ||
"source": "./index.js", | ||
"types": "./dist/index.d.ts", | ||
@@ -73,3 +74,2 @@ "main": "./dist/index.js", | ||
"dist", | ||
"src", | ||
"packages", | ||
@@ -76,0 +76,0 @@ "LICENSE", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
142814
1818