@yamada-ui/radio 2.0.0-next-20240609204752 → 2.0.0-next-20240610152254
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/radio-group.d.mts +1 -1
- package/dist/radio-group.d.ts +1 -1
- package/dist/radio.d.mts +1 -1
- package/dist/radio.d.ts +1 -1
- package/package.json +7 -7
package/dist/radio-group.d.mts
CHANGED
@@ -41,7 +41,7 @@ type UseRadioGroupProps<Y extends string | number = string> = {
|
|
41
41
|
isNative?: boolean;
|
42
42
|
};
|
43
43
|
declare const useRadioGroup: <Y extends string | number = string, M extends Dict = Dict>({ id, name, isNative, value: valueProp, defaultValue, onChange: onChangeProp, ...props }: UseRadioGroupProps<Y> & M) => {
|
44
|
-
props: Omit<UseRadioGroupProps<Y> & M, "
|
44
|
+
props: Omit<UseRadioGroupProps<Y> & M, "defaultValue" | "id" | "onChange" | "name" | "value" | "isNative">;
|
45
45
|
id: string;
|
46
46
|
name: string;
|
47
47
|
value: Y;
|
package/dist/radio-group.d.ts
CHANGED
@@ -41,7 +41,7 @@ type UseRadioGroupProps<Y extends string | number = string> = {
|
|
41
41
|
isNative?: boolean;
|
42
42
|
};
|
43
43
|
declare const useRadioGroup: <Y extends string | number = string, M extends Dict = Dict>({ id, name, isNative, value: valueProp, defaultValue, onChange: onChangeProp, ...props }: UseRadioGroupProps<Y> & M) => {
|
44
|
-
props: Omit<UseRadioGroupProps<Y> & M, "
|
44
|
+
props: Omit<UseRadioGroupProps<Y> & M, "defaultValue" | "id" | "onChange" | "name" | "value" | "isNative">;
|
45
45
|
id: string;
|
46
46
|
name: string;
|
47
47
|
value: Y;
|
package/dist/radio.d.mts
CHANGED
@@ -90,7 +90,7 @@ declare const useRadio: <Y extends string | number = string, M extends Dict = Di
|
|
90
90
|
* The callback invoked when the checked state changes.
|
91
91
|
*/
|
92
92
|
onChange?: ChangeEventHandler<HTMLInputElement> | undefined;
|
93
|
-
} & M, "id">, "
|
93
|
+
} & M, "id">, "id" | "onFocus" | "onBlur" | "isRequired" | "isDisabled" | "isInvalid" | "isReadOnly" | "disabled" | "readOnly" | "required">, "id" | "onFocus" | "onBlur" | "onChange" | "name" | "value" | "defaultIsChecked" | "isChecked" | "disabled" | "readOnly" | "required">, any>;
|
94
94
|
isFocusVisible: boolean;
|
95
95
|
isFocused: boolean;
|
96
96
|
isHovered: boolean;
|
package/dist/radio.d.ts
CHANGED
@@ -90,7 +90,7 @@ declare const useRadio: <Y extends string | number = string, M extends Dict = Di
|
|
90
90
|
* The callback invoked when the checked state changes.
|
91
91
|
*/
|
92
92
|
onChange?: ChangeEventHandler<HTMLInputElement> | undefined;
|
93
|
-
} & M, "id">, "
|
93
|
+
} & M, "id">, "id" | "onFocus" | "onBlur" | "isRequired" | "isDisabled" | "isInvalid" | "isReadOnly" | "disabled" | "readOnly" | "required">, "id" | "onFocus" | "onBlur" | "onChange" | "name" | "value" | "defaultIsChecked" | "isChecked" | "disabled" | "readOnly" | "required">, any>;
|
94
94
|
isFocusVisible: boolean;
|
95
95
|
isFocused: boolean;
|
96
96
|
isHovered: boolean;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@yamada-ui/radio",
|
3
|
-
"version": "2.0.0-next-
|
3
|
+
"version": "2.0.0-next-20240610152254",
|
4
4
|
"description": "Yamada UI radio component",
|
5
5
|
"keywords": [
|
6
6
|
"yamada",
|
@@ -36,12 +36,12 @@
|
|
36
36
|
"url": "https://github.com/yamada-ui/yamada-ui/issues"
|
37
37
|
},
|
38
38
|
"dependencies": {
|
39
|
-
"@yamada-ui/core": "1.7.1-next-
|
40
|
-
"@yamada-ui/utils": "1.2.1-next-
|
41
|
-
"@yamada-ui/form-control": "2.0.0-next-
|
42
|
-
"@yamada-ui/layouts": "1.1.24-next-
|
43
|
-
"@yamada-ui/use-controllable-state": "1.0.14-next-
|
44
|
-
"@yamada-ui/use-focus-visible": "1.1.1-next-
|
39
|
+
"@yamada-ui/core": "1.7.1-next-20240610152254",
|
40
|
+
"@yamada-ui/utils": "1.2.1-next-20240610152254",
|
41
|
+
"@yamada-ui/form-control": "2.0.0-next-20240610152254",
|
42
|
+
"@yamada-ui/layouts": "1.1.24-next-20240610152254",
|
43
|
+
"@yamada-ui/use-controllable-state": "1.0.14-next-20240610152254",
|
44
|
+
"@yamada-ui/use-focus-visible": "1.1.1-next-20240610152254"
|
45
45
|
},
|
46
46
|
"devDependencies": {
|
47
47
|
"react": "^18.0.0",
|