fix: add props of onPopupScroll in Select (#9475)

This commit is contained in:
twobin 2018-03-02 10:15:01 +08:00 committed by 偏右
parent c51f041ebc
commit d816879e78

View File

@ -43,6 +43,7 @@ export interface SelectProps extends AbstractSelectProps {
onDeselect?: (value: SelectValue) => any;
onBlur?: () => any;
onFocus?: () => any;
onPopupScroll?: () => any;
onInputKeyDown?: (e: React.KeyboardEvent<HTMLInputElement>) => void;
maxTagCount?: number;
maxTagPlaceholder?: React.ReactNode | ((omittedValues: SelectValue[]) => React.ReactNode);