@lightningjs/solid
Advanced tools
Comparing version 0.10.3 to 0.10.4
@@ -601,3 +601,4 @@ import { createSignal, createEffect, mergeProps as mergeProps$1, createRoot, createRenderEffect, createMemo, createComponent as createComponent$1, untrack } from 'solid-js'; | ||
if (this.rendered) { | ||
setActiveElement(this); | ||
// Delay setting focus so children can render (useful for Row + Column) | ||
queueMicrotask(() => setActiveElement(this)); | ||
} else { | ||
@@ -604,0 +605,0 @@ this.autofocus = true; |
@@ -252,3 +252,4 @@ /* | ||
if (this.rendered) { | ||
setActiveElement(this); | ||
// Delay setting focus so children can render (useful for Row + Column) | ||
queueMicrotask(() => setActiveElement(this)); | ||
} | ||
@@ -255,0 +256,0 @@ else { |
{ | ||
"name": "@lightningjs/solid", | ||
"version": "0.10.3", | ||
"version": "0.10.4", | ||
"description": "Lightning renderer for solid universal", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -9,2 +9,5 @@ <p> | ||
## Hello World | ||
For a Hello World type guide go to this [Page](HelloWorld.md) | ||
## Quick Start | ||
@@ -11,0 +14,0 @@ |
@@ -338,3 +338,4 @@ /* | ||
if (this.rendered) { | ||
setActiveElement<ElementNode>(this); | ||
// Delay setting focus so children can render (useful for Row + Column) | ||
queueMicrotask(() => setActiveElement<ElementNode>(this)); | ||
} else { | ||
@@ -341,0 +342,0 @@ this.autofocus = true; |
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
288277
4511
433