From 31f38a9d3fd58ce1808efa15964bc55ed9150537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matuzal=C3=A9m=20Teles?= Date: Wed, 19 May 2021 16:56:43 -0300 Subject: [PATCH] feat(@clayui/drop-down): Add the new ContainerProps API to the interface typing --- packages/clay-drop-down/src/DropDown.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/clay-drop-down/src/DropDown.tsx b/packages/clay-drop-down/src/DropDown.tsx index c525612a8a..10dbafe86f 100644 --- a/packages/clay-drop-down/src/DropDown.tsx +++ b/packages/clay-drop-down/src/DropDown.tsx @@ -55,7 +55,8 @@ interface IProps extends React.HTMLAttributes { /** * Prop to pass DOM element attributes to . */ - menuElementAttrs?: React.HTMLAttributes; + menuElementAttrs?: React.HTMLAttributes & + Pick, 'containerProps'>; menuHeight?: React.ComponentProps['height'];