mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 19:19:26 +08:00
978b9f98e7
* refactor: table ts * fix: should pass context to onChange correctly
23 lines
509 B
TypeScript
23 lines
509 B
TypeScript
import * as React from 'react';
|
|
import RcDropdown from 'rc-dropdown';
|
|
|
|
export interface DropDownProps {
|
|
trigger: string[];
|
|
overlay: React.ReactNode;
|
|
visible: boolean;
|
|
onVisibleChange: (visible: boolean) => void;
|
|
}
|
|
|
|
export default class Dropdown extends React.Component<DropDownProps, any> {
|
|
static defaultProps = {
|
|
transitionName: 'slide-up',
|
|
prefixCls: 'ant-dropdown',
|
|
mouseEnterDelay: 0.15,
|
|
mouseLeaveDelay: 0.1,
|
|
};
|
|
|
|
render() {
|
|
return <RcDropdown {...this.props} />;
|
|
}
|
|
}
|