File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import { useEffect, useRef } from 'react';
55
66import { useUniqueId } from '@cloudscape-design/component-toolkit/internal' ;
77
8- import { DropdownProps } from '../../dropdown/interfaces' ;
98import { ButtonTriggerProps } from '../../internal/components/button-trigger' ;
109import { DropdownStatusProps } from '../../internal/components/dropdown-status' ;
1110import { DropdownOption , OptionDefinition , OptionGroup } from '../../internal/components/option/interfaces' ;
@@ -174,7 +173,9 @@ export function useSelect({
174173 goHome : goHomeWithKeyboard ,
175174 } ) ;
176175
177- const getDropdownProps : ( ) => Pick < DropdownProps , 'onFocus' | 'onBlur' > & {
176+ const getDropdownProps : ( ) => {
177+ onFocus : NonCancelableEventHandler ;
178+ onBlur : NonCancelableEventHandler ;
178179 dropdownContentId ?: string ;
179180 ariaRole ?: string ;
180181 } = ( ) => ( {
You can’t perform that action at this time.
0 commit comments