@lightningtv/core
Advanced tools
Comparing version 2.5.9 to 2.5.10
@@ -38,3 +38,3 @@ import { isTextNode, isElementText } from './utils.js'; | ||
const containerSize = node[dimension] || 0; | ||
const containerCrossSize = node[crossDimension] || 0; | ||
let containerCrossSize = node[crossDimension] || 0; | ||
const gap = node.gap || 0; | ||
@@ -85,3 +85,3 @@ const justify = node.justifyContent || 'flexStart'; | ||
containerUpdated = true; | ||
node.height = newHeight; | ||
node.height = containerCrossSize = newHeight; | ||
} | ||
@@ -88,0 +88,0 @@ } |
{ | ||
"name": "@lightningtv/core", | ||
"version": "2.5.9", | ||
"version": "2.5.10", | ||
"description": "Lightning TV Core for Universal Renderers", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -47,3 +47,3 @@ import { type ElementNode } from './elementNode.js'; | ||
const containerSize = node[dimension] || 0; | ||
const containerCrossSize = node[crossDimension] || 0; | ||
let containerCrossSize = node[crossDimension] || 0; | ||
const gap = node.gap || 0; | ||
@@ -106,3 +106,3 @@ const justify = node.justifyContent || 'flexStart'; | ||
containerUpdated = true; | ||
node.height = newHeight; | ||
node.height = containerCrossSize = newHeight; | ||
} | ||
@@ -109,0 +109,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
230958