mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-18 22:36:31 +08:00
Add onMouseEnter and onMouseLeave to SelectProps (#11314)
This commit is contained in:
parent
c696757793
commit
308cb046e4
@ -49,6 +49,8 @@ export interface SelectProps extends AbstractSelectProps {
|
||||
onFocus?: () => any;
|
||||
onPopupScroll?: () => any;
|
||||
onInputKeyDown?: (e: React.KeyboardEvent<HTMLInputElement>) => void;
|
||||
onMouseEnter?: (e: React.MouseEvent<HTMLInputElement>) => any;
|
||||
onMouseLeave?: (e: React.MouseEvent<HTMLInputElement>) => any;
|
||||
maxTagCount?: number;
|
||||
maxTagPlaceholder?: React.ReactNode | ((omittedValues: SelectValue[]) => React.ReactNode);
|
||||
optionFilterProp?: string;
|
||||
|
Loading…
Reference in New Issue
Block a user