@shayan-mirzaie/skeleton-react
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -1,2 +0,2 @@ | ||
declare function App(): any; | ||
declare function App(): JSX.Element; | ||
export default App; |
@@ -6,3 +6,3 @@ declare type props = { | ||
}; | ||
export default function Circle({ radius, margin, onClick }: props): any; | ||
export default function ({ radius, margin, onClick, }: props): JSX.Element; | ||
export {}; |
declare type props = { | ||
height?: string; | ||
width?: string; | ||
margin?: string; | ||
full?: boolean; | ||
onClick?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void; | ||
margin?: string; | ||
}; | ||
export default function Rect({ height, width, margin, onClick }: props): any; | ||
export default function ({ height, width, margin, full, onClick, }: props): JSX.Element; | ||
export {}; |
@@ -0,1 +1,2 @@ | ||
import React from "react"; | ||
declare type props = { | ||
@@ -6,3 +7,3 @@ children: React.ReactNode; | ||
}; | ||
export default function Skeleton({ children, enable, dir }: props): any; | ||
export default function ({ children, enable, dir }: props): JSX.Element; | ||
export {}; |
declare type props = { | ||
width?: string; | ||
margin?: string; | ||
onClick?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void; | ||
margin?: string; | ||
}; | ||
export default function Square({ width, margin, onClick }: props): any; | ||
export default function ({ width, margin, onClick, }: props): JSX.Element; | ||
export {}; |
@@ -5,3 +5,3 @@ declare type props = { | ||
}; | ||
export default function List({ children, count }: props): any; | ||
export default function List({ children, count }: props): JSX.Element; | ||
export {}; |
@@ -5,5 +5,5 @@ import Skeleton from "./components/Skeleton"; | ||
import Circle from "./components/Circle"; | ||
import Row from "./components/frame/Row"; | ||
import Col from "./components/frame/Col"; | ||
import Center from "./components/frame/Center"; | ||
import Row from "./frame/Row"; | ||
import Col from "./frame/Col"; | ||
import Center from "./frame/Center"; | ||
import List from "./module/List"; | ||
@@ -10,0 +10,0 @@ declare const _default: typeof Skeleton & { |
@@ -5,3 +5,3 @@ { | ||
"author": "Shayan Mirzaie <shayan.mirzaie1998@gmail.com>", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"type": "module", | ||
@@ -8,0 +8,0 @@ "homepage": "https://github.com/shayan1998/skeleton-react", |
Sorry, the diff of this file is too big to display
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 4 instances 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
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
146369
19
2568
1
39
66
1