From 09dd044c7a6f6fe9ee08a803e600424a9a01e535 Mon Sep 17 00:00:00 2001 From: afc163 Date: Tue, 4 Dec 2018 20:28:48 +0800 Subject: [PATCH] :bug: Fix Dropdown types, close #13420 --- components/dropdown/dropdown.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/dropdown/dropdown.tsx b/components/dropdown/dropdown.tsx index 6fb9c665dc..9585f28afa 100644 --- a/components/dropdown/dropdown.tsx +++ b/components/dropdown/dropdown.tsx @@ -19,6 +19,8 @@ export interface DropDownProps { transitionName?: string; placement?: 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight'; forceRender?: boolean; + mouseEnterDelay?: number; + mouseLeaveDelay?: number; } export default class Dropdown extends React.Component {