Patch Changes
-
fix: unable to access
MainThreadRefin some scenarios (#1996) -
Add
getComputedStylePropertyforMainThread.Elementto retrieve computed style values synchronously. (#2005)Requires Lynx SDK >= 3.5
function getStyle(ele: MainThread.Element) { 'main thread'; const width = ele.getComputedStyleProperty('width'); // Returns 300px const transformMatrix = ele.getComputedStyleProperty('transform'); // Returns matrix(2, 0, 0, 2, 200, 400) }