From 98327005f4528ee270ed8389e56a97ac069c99d3 Mon Sep 17 00:00:00 2001 From: Dobes Vandermeer <dobes@formative.com> Date: Wed, 12 Feb 2025 15:44:01 -0800 Subject: [PATCH] Export MenuPortalProps It seems like this type is not re-exported from index like the other Props types are, but it would be useful when providing a replacement component for MenuPortal. --- packages/react-select/src/index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/react-select/src/index.ts b/packages/react-select/src/index.ts index 312aab9f03..db36d49847 100644 --- a/packages/react-select/src/index.ts +++ b/packages/react-select/src/index.ts @@ -32,7 +32,12 @@ export type { LoadingIndicatorProps, } from './components/indicators'; export type { InputProps } from './components/Input'; -export type { MenuListProps, MenuProps, NoticeProps } from './components/Menu'; +export type { + MenuListProps, + MenuProps, + MenuPortalProps, + NoticeProps, +} from './components/Menu'; export type { MultiValueGenericProps, MultiValueProps,