| 54 | } |
| 55 | |
| 56 | export interface SelectTriggerProps { |
| 57 | prefixCls: string; |
| 58 | children: React.ReactElement; |
| 59 | disabled: boolean; |
| 60 | visible: boolean; |
| 61 | popupElement: React.ReactElement; |
| 62 | |
| 63 | animation?: string; |
| 64 | transitionName?: string; |
| 65 | placement?: Placement; |
| 66 | builtinPlacements?: BuildInPlacements; |
| 67 | dropdownStyle: React.CSSProperties; |
| 68 | dropdownClassName: string; |
| 69 | direction: string; |
| 70 | dropdownMatchSelectWidth?: boolean | number; |
| 71 | dropdownRender?: (menu: React.ReactElement) => React.ReactElement; |
| 72 | getPopupContainer?: RenderDOMFunc; |
| 73 | dropdownAlign: AlignType; |
| 74 | empty: boolean; |
| 75 | |
| 76 | getTriggerDOMNode: (node: HTMLElement) => HTMLElement; |
| 77 | onPopupVisibleChange?: (visible: boolean) => void; |
| 78 | |
| 79 | onPopupMouseEnter: () => void; |
| 80 | } |
| 81 | |
| 82 | const SelectTrigger: React.ForwardRefRenderFunction<RefTriggerProps, SelectTriggerProps> = ( |
| 83 | props, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…