@yamada-ui/radio 1.2.7-dev-20240909050233 → 1.2.7-dev-20240909151848
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/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>;
|
|
93
|
-
} & M, "id">, "
|
|
93
|
+
} & M, "id">, "id" | "onFocus" | "onBlur" | "isRequired" | "isDisabled" | "isInvalid" | "isReadOnly" | "disabled" | "readOnly" | "required">, "id" | "onChange" | "name" | "value" | "defaultIsChecked" | "isChecked">, "_invalid" | "_hover" | "_active" | "_focus" | "_focusVisible" | "aria-disabled" | "aria-invalid" | "aria-readonly" | "aria-required" | "onFocus" | "onBlur" | "disabled" | "readOnly" | "required" | "data-readonly">;
|
|
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>;
|
|
93
|
-
} & M, "id">, "
|
|
93
|
+
} & M, "id">, "id" | "onFocus" | "onBlur" | "isRequired" | "isDisabled" | "isInvalid" | "isReadOnly" | "disabled" | "readOnly" | "required">, "id" | "onChange" | "name" | "value" | "defaultIsChecked" | "isChecked">, "_invalid" | "_hover" | "_active" | "_focus" | "_focusVisible" | "aria-disabled" | "aria-invalid" | "aria-readonly" | "aria-required" | "onFocus" | "onBlur" | "disabled" | "readOnly" | "required" | "data-readonly">;
|
|
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": "1.2.7-dev-
|
|
3
|
+
"version": "1.2.7-dev-20240909151848",
|
|
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.14.0-dev-
|
|
40
|
-
"@yamada-ui/form-control": "2.1.1-dev-
|
|
41
|
-
"@yamada-ui/layouts": "1.1.34-dev-
|
|
42
|
-
"@yamada-ui/use-controllable-state": "1.0.19-dev-
|
|
43
|
-
"@yamada-ui/use-focus-visible": "1.1.6-dev-
|
|
44
|
-
"@yamada-ui/utils": "1.4.1-dev-
|
|
39
|
+
"@yamada-ui/core": "1.14.0-dev-20240909151848",
|
|
40
|
+
"@yamada-ui/form-control": "2.1.1-dev-20240909151848",
|
|
41
|
+
"@yamada-ui/layouts": "1.1.34-dev-20240909151848",
|
|
42
|
+
"@yamada-ui/use-controllable-state": "1.0.19-dev-20240909151848",
|
|
43
|
+
"@yamada-ui/use-focus-visible": "1.1.6-dev-20240909151848",
|
|
44
|
+
"@yamada-ui/utils": "1.4.1-dev-20240909151848"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"clean-package": "2.2.0",
|