@lightningjs/solid
Advanced tools
Comparing version 0.15.3 to 0.15.4
@@ -391,3 +391,3 @@ import { createSignal, mergeProps as mergeProps$1, createRoot, createRenderEffect, createMemo, createComponent as createComponent$1, untrack, splitProps } from 'solid-js'; | ||
// Update container size | ||
if (node.flexBoundary === 'contain') { | ||
if (node.flexBoundary !== 'fixed') { | ||
const calculatedSize = start - gap; | ||
@@ -499,3 +499,3 @@ if (calculatedSize !== node[dimension]) { | ||
class ElementNode extends Object { | ||
// default is undefined aka fixed size | ||
// default is undefined - contained for flex calculated size | ||
@@ -502,0 +502,0 @@ // Public but uses _ prefix |
@@ -84,3 +84,3 @@ /* | ||
// Update container size | ||
if (node.flexBoundary === 'contain') { | ||
if (node.flexBoundary !== 'fixed') { | ||
const calculatedSize = start - gap; | ||
@@ -87,0 +87,0 @@ if (calculatedSize !== node[dimension]) { |
@@ -117,3 +117,3 @@ /* | ||
flexOrder; | ||
flexBoundary; // default is undefined aka fixed size | ||
flexBoundary; // default is undefined - contained for flex calculated size | ||
_queueDelete; | ||
@@ -120,0 +120,0 @@ forwardFocus; |
@@ -41,3 +41,3 @@ import { createShader } from '../lightningInit.js'; | ||
flexOrder?: number; | ||
flexBoundary?: 'contain'; | ||
flexBoundary?: 'contain' | 'fixed'; | ||
_queueDelete?: boolean; | ||
@@ -44,0 +44,0 @@ forwardFocus?: number | ((this: ElementNode, elm: ElementNode) => boolean | void); |
{ | ||
"name": "@lightningjs/solid", | ||
"version": "0.15.3", | ||
"version": "0.15.4", | ||
"description": "Lightning renderer for solid universal", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -93,3 +93,3 @@ /* | ||
// Update container size | ||
if (node.flexBoundary === 'contain') { | ||
if (node.flexBoundary !== 'fixed') { | ||
const calculatedSize = start - gap; | ||
@@ -96,0 +96,0 @@ if (calculatedSize !== node[dimension]) { |
@@ -187,3 +187,3 @@ /* | ||
flexOrder?: number; | ||
flexBoundary?: 'contain'; // default is undefined aka fixed size | ||
flexBoundary?: 'contain' | 'fixed'; // default is undefined - contained for flex calculated size | ||
_queueDelete?: boolean; | ||
@@ -190,0 +190,0 @@ forwardFocus?: |
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
270856