@bolttech/atoms-checkbox
Advanced tools
Comparing version 0.3.0 to 0.3.1
{ | ||
"name": "@bolttech/atoms-checkbox", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"main": "./index.cjs", | ||
@@ -8,3 +8,3 @@ "type": "commonjs", | ||
"dependencies": { | ||
"@edirect/frontend-foundations": "0.0.53", | ||
"@edirect/frontend-foundations": "0.0.55", | ||
"react": "18.2.0", | ||
@@ -11,0 +11,0 @@ "styled-components": "5.3.6" |
/// <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): JSX.Element; |
@@ -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
43367
1042
+ Added@edirect/frontend-foundations@0.0.55(transitive)
- Removed@edirect/frontend-foundations@0.0.53(transitive)