From 0ab61974aa8b3a85a2028f8223b81ea9f3ee201c Mon Sep 17 00:00:00 2001 From: Cee Chen Date: Fri, 11 Aug 2023 18:27:09 -0700 Subject: [PATCH] Fix downstream EuiInputPopover types --- src/components/form/super_select/super_select.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/form/super_select/super_select.tsx b/src/components/form/super_select/super_select.tsx index fb3cbfed898d..f6b7a9a1b2ff 100644 --- a/src/components/form/super_select/super_select.tsx +++ b/src/components/form/super_select/super_select.tsx @@ -18,7 +18,7 @@ import { EuiSuperSelectControlProps, EuiSuperSelectOption, } from './super_select_control'; -import { EuiInputPopover, EuiPopoverProps } from '../../popover'; +import { EuiInputPopover, EuiInputPopoverProps } from '../../popover'; import { EuiContextMenuItem, EuiContextMenuItemLayoutAlignment, @@ -80,7 +80,7 @@ export type EuiSuperSelectProps = CommonProps & isOpen?: boolean; /** - * Optional props to pass to the underlying [EuiPopover](/#/layout/popover). + * Optional props to pass to the underlying [EuiInputPopover](/#/layout/popover#popover-attached-to-input-element). * Allows fine-grained control of the popover dropdown menu, including * `repositionOnScroll` for EuiSuperSelects used within scrollable containers, * and customizing popover panel styling. @@ -88,7 +88,7 @@ export type EuiSuperSelectProps = CommonProps & * Does not accept a nested `popoverProps.isOpen` property - use the top level * `isOpen` API instead. */ - popoverProps?: Partial>; + popoverProps?: Partial>; }; export class EuiSuperSelect extends Component<