You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@leafer/layout

Package Overview
Dependencies
Maintainers
1
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@leafer/layout - npm Package Compare versions

Comparing version
1.5.1
to
1.5.2
+5
-5
package.json
{
"name": "@leafer/layout",
"version": "1.5.1",
"version": "1.5.2",
"description": "@leafer/layout",

@@ -25,9 +25,9 @@ "author": "Chao (Leafer) Wan",

"dependencies": {
"@leafer/math": "1.5.1",
"@leafer/helper": "1.5.1",
"@leafer/platform": "1.5.1"
"@leafer/math": "1.5.2",
"@leafer/helper": "1.5.2",
"@leafer/platform": "1.5.2"
},
"devDependencies": {
"@leafer/interface": "1.5.1"
"@leafer/interface": "1.5.2"
}
}

@@ -125,3 +125,7 @@ import { ILeaf, ILeafLayout, ILocationType, IBoundsType, IBoundsData, IMatrixData, ILayoutBoundsData, IPointData } from '@leafer/interface'

while (root.parent && !root.parent.leafer) { root = root.parent }
Platform.layout(root)
const r = root as any
if (r.__fullLayouting) return // fix: 循环
r.__fullLayouting = true
Platform.layout(r)
delete r.__fullLayouting
}

@@ -128,0 +132,0 @@ }