We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 697b1db commit af2b859Copy full SHA for af2b859
.changeset/chatty-grapes-give.md
@@ -0,0 +1,5 @@
1
+---
2
+"@cube-dev/ui-kit": patch
3
4
+
5
+Fix Menu children typing.
src/components/pickers/Menu/Menu.tsx
@@ -11,6 +11,7 @@ import {
11
12
import {
13
BaseProps,
14
+ BasePropsWithoutChildren,
15
CONTAINER_STYLES,
16
ContainerStyleProps,
17
extractStyles,
@@ -26,7 +27,7 @@ import { MenuSection } from './MenuSection';
26
27
import { StyledMenu, StyledMenuHeader } from './styled';
28
29
export interface CubeMenuProps<T>
- extends BaseProps,
30
+ extends BasePropsWithoutChildren,
31
32
AriaMenuProps<T> {
33
selectionIcon?: MenuSelectionType;
0 commit comments