@yamada-ui/radio 0.3.6 → 0.3.8
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.d.mts +1 -1
- package/dist/radio.d.ts +1 -1
- package/package.json +7 -7
package/dist/radio.d.mts
CHANGED
|
@@ -51,7 +51,7 @@ type RadioOptions = {
|
|
|
51
51
|
labelProps?: HTMLUIProps<'span'>;
|
|
52
52
|
};
|
|
53
53
|
type RadioProps<Y extends string | number = string> = Omit<HTMLUIProps<'label'>, keyof UseRadioProps> & ThemeProps<'Radio'> & UseRadioProps<Y> & RadioOptions;
|
|
54
|
-
declare const Radio: (<Y extends string | number = string>(props: Omit<HTMLUIProps<"label">, "
|
|
54
|
+
declare const Radio: (<Y extends string | number = string>(props: Omit<HTMLUIProps<"label">, "onChange" | "id" | "defaultChecked" | keyof FormControlOptions | "name" | "value" | "isChecked"> & ThemeProps<"Radio"> & FormControlOptions & {
|
|
55
55
|
/**
|
|
56
56
|
* id assigned to input.
|
|
57
57
|
*/
|
package/dist/radio.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ type RadioOptions = {
|
|
|
51
51
|
labelProps?: HTMLUIProps<'span'>;
|
|
52
52
|
};
|
|
53
53
|
type RadioProps<Y extends string | number = string> = Omit<HTMLUIProps<'label'>, keyof UseRadioProps> & ThemeProps<'Radio'> & UseRadioProps<Y> & RadioOptions;
|
|
54
|
-
declare const Radio: (<Y extends string | number = string>(props: Omit<HTMLUIProps<"label">, "
|
|
54
|
+
declare const Radio: (<Y extends string | number = string>(props: Omit<HTMLUIProps<"label">, "onChange" | "id" | "defaultChecked" | keyof FormControlOptions | "name" | "value" | "isChecked"> & ThemeProps<"Radio"> & FormControlOptions & {
|
|
55
55
|
/**
|
|
56
56
|
* id assigned to input.
|
|
57
57
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamada-ui/radio",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.8",
|
|
4
4
|
"description": "Yamada UI radio component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yamada",
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"url": "https://github.com/hirotomoyamada/yamada-ui/issues"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@yamada-ui/core": "0.
|
|
39
|
-
"@yamada-ui/utils": "0.
|
|
40
|
-
"@yamada-ui/form-control": "0.3.
|
|
41
|
-
"@yamada-ui/layouts": "0.3.
|
|
42
|
-
"@yamada-ui/use-controllable-state": "0.2.
|
|
43
|
-
"@yamada-ui/use-focus-visible": "0.2.
|
|
38
|
+
"@yamada-ui/core": "0.11.0",
|
|
39
|
+
"@yamada-ui/utils": "0.3.0",
|
|
40
|
+
"@yamada-ui/form-control": "0.3.8",
|
|
41
|
+
"@yamada-ui/layouts": "0.3.6",
|
|
42
|
+
"@yamada-ui/use-controllable-state": "0.2.2",
|
|
43
|
+
"@yamada-ui/use-focus-visible": "0.2.2"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"react": "^18.0.0",
|