61 lines
1.3 KiB
TypeScript
61 lines
1.3 KiB
TypeScript
// Project: https://github.com/vueComponent/ant-design-vue
|
|
// Definitions by: akki-jat <https://github.com/akki-jat>
|
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
|
|
|
import { AntdComponent } from "../component";
|
|
import { Menu } from "../menu/menu";
|
|
|
|
export declare class DropdownButton extends AntdComponent {
|
|
/**
|
|
* whether the dropdown menu is disabled
|
|
* @type boolean
|
|
*/
|
|
disabled: boolean;
|
|
|
|
/**
|
|
* the dropdown menu
|
|
* @type Menu
|
|
*/
|
|
overlay: Menu;
|
|
|
|
/**
|
|
* placement of pop menu: bottomLeft bottomCenter bottomRight topLeft topCenter topRight
|
|
* @default 'bottomLeft'
|
|
* @type string
|
|
*/
|
|
placement:
|
|
| "topLeft"
|
|
| "topCenter"
|
|
| "topRight"
|
|
| "bottomLeft"
|
|
| "bottomCenter"
|
|
| "bottomRight";
|
|
|
|
/**
|
|
* size of the button, the same as Button
|
|
* @default 'default'
|
|
* @type string
|
|
*/
|
|
size: "small" | "large" | "default";
|
|
|
|
/**
|
|
* the trigger mode which executes the drop-down action
|
|
* @default ['hover']
|
|
* @type string[]
|
|
*/
|
|
trigger: Array<"click" | "hover" | "contextmenu">;
|
|
|
|
/**
|
|
* type of the button, the same as Button
|
|
* @default 'default'
|
|
* @type string
|
|
*/
|
|
type: "primary" | "danger" | "dashed" | "ghost" | "default";
|
|
|
|
/**
|
|
* whether the dropdown menu is visible
|
|
* @type boolean
|
|
*/
|
|
visible: boolean;
|
|
}
|