@yamada-ui/menu 1.0.16-next-20240308164301 → 1.0.16
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.
|
@@ -26,8 +26,8 @@ type MenuOptionGroupOptions<Y extends string | string[] = string> = {
|
|
|
26
26
|
onChange?: (value: Y) => void;
|
|
27
27
|
};
|
|
28
28
|
type MenuOptionGroupProps<Y extends string | string[] = string> = Omit<HTMLUIProps<"div">, keyof MenuOptionGroupOptions> & MenuOptionGroupOptions<Y>;
|
|
29
|
-
declare const MenuOptionGroup: (<Y extends string | string[] = string>(props:
|
|
30
|
-
ref?: Ref<HTMLDivElement
|
|
29
|
+
declare const MenuOptionGroup: (<Y extends string | string[] = string>(props: MenuOptionGroupProps<Y> & {
|
|
30
|
+
ref?: Ref<HTMLDivElement>;
|
|
31
31
|
}) => JSX.Element) & ComponentArgs;
|
|
32
32
|
|
|
33
33
|
export { MenuOptionGroup, type MenuOptionGroupProps };
|
|
@@ -26,8 +26,8 @@ type MenuOptionGroupOptions<Y extends string | string[] = string> = {
|
|
|
26
26
|
onChange?: (value: Y) => void;
|
|
27
27
|
};
|
|
28
28
|
type MenuOptionGroupProps<Y extends string | string[] = string> = Omit<HTMLUIProps<"div">, keyof MenuOptionGroupOptions> & MenuOptionGroupOptions<Y>;
|
|
29
|
-
declare const MenuOptionGroup: (<Y extends string | string[] = string>(props:
|
|
30
|
-
ref?: Ref<HTMLDivElement
|
|
29
|
+
declare const MenuOptionGroup: (<Y extends string | string[] = string>(props: MenuOptionGroupProps<Y> & {
|
|
30
|
+
ref?: Ref<HTMLDivElement>;
|
|
31
31
|
}) => JSX.Element) & ComponentArgs;
|
|
32
32
|
|
|
33
33
|
export { MenuOptionGroup, type MenuOptionGroupProps };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamada-ui/menu",
|
|
3
|
-
"version": "1.0.16
|
|
3
|
+
"version": "1.0.16",
|
|
4
4
|
"description": "Yamada UI menu component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yamada",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"url": "https://github.com/yamada-ui/yamada-ui/issues"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@yamada-ui/core": "1.4.3
|
|
40
|
-
"@yamada-ui/utils": "1.0.7
|
|
41
|
-
"@yamada-ui/popover": "1.0.16
|
|
42
|
-
"@yamada-ui/motion": "1.0.16
|
|
43
|
-
"@yamada-ui/transitions": "1.0.16
|
|
44
|
-
"@yamada-ui/use-disclosure": "1.0.7
|
|
45
|
-
"@yamada-ui/use-descendant": "1.0.7
|
|
46
|
-
"@yamada-ui/use-clickable": "1.0.7
|
|
47
|
-
"@yamada-ui/use-controllable-state": "1.0.7
|
|
39
|
+
"@yamada-ui/core": "1.4.3",
|
|
40
|
+
"@yamada-ui/utils": "1.0.7",
|
|
41
|
+
"@yamada-ui/popover": "1.0.16",
|
|
42
|
+
"@yamada-ui/motion": "1.0.16",
|
|
43
|
+
"@yamada-ui/transitions": "1.0.16",
|
|
44
|
+
"@yamada-ui/use-disclosure": "1.0.7",
|
|
45
|
+
"@yamada-ui/use-descendant": "1.0.7",
|
|
46
|
+
"@yamada-ui/use-clickable": "1.0.7",
|
|
47
|
+
"@yamada-ui/use-controllable-state": "1.0.7"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"react": "^18.0.0",
|