From 301c97d61c70c180606f32a3c2319be4ee6e3db6 Mon Sep 17 00:00:00 2001 From: zombiej Date: Fri, 2 Nov 2018 15:38:04 +0800 Subject: [PATCH] fix onPopupScroll def. ref #12913 --- components/select/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/select/index.tsx b/components/select/index.tsx index cf18679e8b..450f4ec529 100755 --- a/components/select/index.tsx +++ b/components/select/index.tsx @@ -55,7 +55,7 @@ export interface SelectProps extends AbstractSelectProps { onDeselect?: (value: SelectValue) => any; onBlur?: (value: SelectValue) => void; onFocus?: () => void; - onPopupScroll?: (e: React.KeyboardEvent) => any; + onPopupScroll?: React.UIEventHandler; onInputKeyDown?: (e: React.KeyboardEvent) => void; onMouseEnter?: (e: React.MouseEvent) => any; onMouseLeave?: (e: React.MouseEvent) => any;