Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lightningjs/solid

Package Overview
Dependencies
Maintainers
7
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lightningjs/solid - npm Package Compare versions

Comparing version 0.15.3 to 0.15.4

4

dist/esm/index.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc