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.9
to
1.9.10
+5
-5
package.json
{
"name": "@leafer-ui/data",
"version": "1.9.9",
"version": "1.9.10",
"description": "@leafer-ui/data",

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

"dependencies": {
"@leafer/core": "1.9.9",
"@leafer-ui/external": "1.9.9"
"@leafer/core": "1.9.10",
"@leafer-ui/external": "1.9.10"
},
"devDependencies": {
"@leafer/interface": "1.9.9",
"@leafer-ui/interface": "1.9.9"
"@leafer/interface": "1.9.10",
"@leafer-ui/interface": "1.9.10"
}
}

@@ -22,4 +22,4 @@ import { IImageData, IImageInputData, IImage, IObject, IJSONOptions } from '@leafer-ui/interface'

public __getData(): IObject {
const data = super.__getData()
delete data.fill
const data: IImageInputData = super.__getData()
if (data.url) delete data.fill
return data

@@ -29,6 +29,6 @@ }

public __getInputData(names?: string[] | IObject, options?: IJSONOptions): IObject {
const data = super.__getInputData(names, options)
delete data.fill
const data: IImageInputData = super.__getInputData(names, options)
if (data.url) delete data.fill
return data
}
}