From bbd955680132e773de2e5926507ba84ad7e60f10 Mon Sep 17 00:00:00 2001 From: LLinFan- Date: Thu, 1 Nov 2018 09:56:35 +0800 Subject: [PATCH] update select props :onPopupScroll update select props type:onPopupScroll --- 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 61ff73a67a..cf18679e8b 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?: () => any; + onPopupScroll?: (e: React.KeyboardEvent) => any; onInputKeyDown?: (e: React.KeyboardEvent) => void; onMouseEnter?: (e: React.MouseEvent) => any; onMouseLeave?: (e: React.MouseEvent) => any;