@yamada-ui/checkbox 0.3.18 → 0.3.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/checkbox.d.mts +1 -1
- package/dist/checkbox.d.ts +1 -1
- package/package.json +4 -4
package/dist/checkbox.d.mts
CHANGED
|
@@ -82,7 +82,7 @@ type CheckboxOptions = {
|
|
|
82
82
|
labelProps?: HTMLUIProps<'span'>;
|
|
83
83
|
};
|
|
84
84
|
type CheckboxProps<Y extends string | number = string> = Omit<HTMLUIProps<'label'>, keyof UseCheckboxProps | 'checked'> & ThemeProps<'Checkbox'> & UseCheckboxProps<Y> & CheckboxOptions;
|
|
85
|
-
declare const Checkbox: (<Y extends string | number = string>(props: Omit<HTMLUIProps<"label">, "
|
|
85
|
+
declare const Checkbox: (<Y extends string | number = string>(props: Omit<HTMLUIProps<"label">, "value" | "name" | "id" | "tabIndex" | "onFocus" | "onBlur" | "onChange" | "defaultChecked" | "checked" | keyof FormControlOptions | "isChecked" | "isIndeterminate"> & ThemeProps<"Checkbox"> & FormControlOptions & {
|
|
86
86
|
/**
|
|
87
87
|
* id assigned to input.
|
|
88
88
|
*/
|
package/dist/checkbox.d.ts
CHANGED
|
@@ -82,7 +82,7 @@ type CheckboxOptions = {
|
|
|
82
82
|
labelProps?: HTMLUIProps<'span'>;
|
|
83
83
|
};
|
|
84
84
|
type CheckboxProps<Y extends string | number = string> = Omit<HTMLUIProps<'label'>, keyof UseCheckboxProps | 'checked'> & ThemeProps<'Checkbox'> & UseCheckboxProps<Y> & CheckboxOptions;
|
|
85
|
-
declare const Checkbox: (<Y extends string | number = string>(props: Omit<HTMLUIProps<"label">, "
|
|
85
|
+
declare const Checkbox: (<Y extends string | number = string>(props: Omit<HTMLUIProps<"label">, "value" | "name" | "id" | "tabIndex" | "onFocus" | "onBlur" | "onChange" | "defaultChecked" | "checked" | keyof FormControlOptions | "isChecked" | "isIndeterminate"> & ThemeProps<"Checkbox"> & FormControlOptions & {
|
|
86
86
|
/**
|
|
87
87
|
* id assigned to input.
|
|
88
88
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamada-ui/checkbox",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.19",
|
|
4
4
|
"description": "Yamada UI checkbox component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yamada",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@yamada-ui/core": "0.12.5",
|
|
39
39
|
"@yamada-ui/utils": "0.3.3",
|
|
40
|
-
"@yamada-ui/layouts": "0.3.
|
|
41
|
-
"@yamada-ui/motion": "0.4.15",
|
|
40
|
+
"@yamada-ui/layouts": "0.3.16",
|
|
42
41
|
"@yamada-ui/form-control": "0.3.18",
|
|
42
|
+
"@yamada-ui/motion": "0.4.15",
|
|
43
43
|
"@yamada-ui/use-focus-visible": "0.2.5",
|
|
44
|
-
"@yamada-ui/use-controllable-state": "0.
|
|
44
|
+
"@yamada-ui/use-controllable-state": "0.3.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"react": "^18.0.0",
|