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

@leafer-ui/data

Package Overview
Dependencies
Maintainers
1
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@leafer-ui/data - npm Package Compare versions

Comparing version
1.9.4
to
1.9.5
+5
-5
package.json
{
"name": "@leafer-ui/data",
"version": "1.9.4",
"version": "1.9.5",
"description": "@leafer-ui/data",

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

"dependencies": {
"@leafer/core": "1.9.4",
"@leafer-ui/external": "1.9.4"
"@leafer/core": "1.9.5",
"@leafer-ui/external": "1.9.5"
},
"devDependencies": {
"@leafer/interface": "1.9.4",
"@leafer-ui/interface": "1.9.4"
"@leafer/interface": "1.9.5",
"@leafer-ui/interface": "1.9.5"
}
}

@@ -8,2 +8,6 @@ import { ILineData } from "@leafer-ui/interface"

public get __usePathBox(): boolean {
return ((this as ILineData).points || (this as ILineData).__pathInputed) as any as boolean
}
}
import { IPolygonData } from '@leafer-ui/interface'
import { UIData } from "./UIData"
import { LineData } from './LineData'
export class PolygonData extends UIData implements IPolygonData {
export class PolygonData extends LineData implements IPolygonData {
}

@@ -66,2 +66,3 @@ import { INumber, IPointData, IBoolean, IValue, IPathCommandData, IPathCommandObject, IPathString } from '@leafer/interface';

declare class LineData extends UIData implements ILineData {
get __usePathBox(): boolean;
}

@@ -77,3 +78,3 @@

declare class PolygonData extends UIData implements IPolygonData {
declare class PolygonData extends LineData implements IPolygonData {
}

@@ -80,0 +81,0 @@