@bolttech/atoms-checkbox
Advanced tools
Comparing version 0.2.2 to 0.2.3
{ | ||
"name": "@bolttech/atoms-checkbox", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"main": "./index.cjs", | ||
@@ -8,3 +8,3 @@ "type": "commonjs", | ||
"dependencies": { | ||
"@edirect/frontend-foundations": "0.0.51", | ||
"@edirect/frontend-foundations": "0.0.56", | ||
"react": "18.2.0", | ||
@@ -11,0 +11,0 @@ "styled-components": "5.3.6" |
export { Checkbox } from './lib/atoms-checkbox'; | ||
export { CheckboxProps } from './lib/atoms-checkbox.type'; |
@@ -1,3 +0,2 @@ | ||
/// <reference types="react" /> | ||
import { CheckboxProps } from './atoms-checkbox.type'; | ||
export declare function Checkbox({ id, label, disabled, errorMessage, ref, checked, onChange, }: CheckboxProps): JSX.Element; | ||
export declare function Checkbox({ id, label, disabled, errorMessage, ref, checked, onChange, onBlur, onFocus, }: CheckboxProps): import("react/jsx-runtime").JSX.Element; |
@@ -0,0 +0,0 @@ interface LabelProps { |
@@ -10,2 +10,4 @@ import { ChangeEventHandler } from 'react'; | ||
onChange?: ChangeEventHandler<HTMLInputElement>; | ||
onBlur?: ChangeEventHandler<HTMLInputElement>; | ||
onFocus?: ChangeEventHandler<HTMLInputElement>; | ||
} |
Sorry, the diff of this file is not supported yet
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
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
6985
146
+ Added@edirect/frontend-foundations@0.0.56(transitive)
- Removed@edirect/frontend-foundations@0.0.51(transitive)