ant-design-vue/types/menu/menu.d.ts
Akshay Jat 0e499ee908 feat: typescript support (#359)
* feat: typescript support

Added typing files for better support in Typescript

* feat: typescript support

Adding declare keywords left in last commit

* feat: typescript support

Added support to add Ant Design globally (Vue.use(Antd))

* feat: typescript support

Fix wrong import file

* fix: typescript support

changed aobject[] to object[]

* feat: typescript support

Removed Library version from comments & corrected few incorrect types

* fix: typescript support

Tree : xxxKeys should support number[]

* fix: typescript support

table: updated return type for customXXX

* fix: typescript support

Fix spelling mistake (plcement => placement)
2019-01-01 12:13:51 +08:00

114 lines
2.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 { MenuItem } from "./menu-item";
import { SubMenu } from "./sub-menu";
import { MenuItemGroup } from "./menu-item-group";
import { Divider } from "../divider";
export declare class Menu extends AntdComponent {
static Item: MenuItem;
static SubMenu: SubMenu;
static ItemGroup: MenuItemGroup;
static Divider: Divider;
/**
* Allow selection of multiple items
* @default false
* @type boolean
*/
multiple: boolean;
/**
* array with the keys of currently selected menu items
* @type string[]
*/
selectedKeys: string[];
/**
* array with the keys of default selected menu items
* @type string[]
*/
defaultSelectedKeys: string[];
/**
* array with the keys of default opened sub menus
* @type any
*/
defaultOpenKeys: any;
/**
* array with the keys of currently opened sub menus
* @type string[]
*/
openKeys: string[];
/**
* type of the menu; vertical, horizontal, and inline modes are supported
* @default 'vertical'
* @type string
*/
mode:
| "horizontal"
| "vertical"
| "vertical-left"
| "vertical-right"
| "inline";
/**
* delay time to show submenu when mouse enter, unit: second
* @default 0
* @type number
*/
subMenuOpenDelay: number;
/**
* delay time to hide submenu when mouse leave, unit: second
* @default 0.1
* @type number
*/
subMenuCloseDelay: Number;
/**
* indent px of inline menu item on each level
* @default 24
* @type number
*/
inlineIndent: number;
/**
* style of the root node
* @type object
*/
style: object;
/**
* color theme of the menu
* @default 'light'
* @type string
*/
theme: "light" | "dark";
/**
* render submenu into DOM before it shows
* @default false
* @type boolean
*/
forceSubMenuRender: boolean;
/**
* allow selecting menu items
* @default true
* @type boolean
*/
selectable: boolean;
/**
* specifies the collapsed status when menu is inline mode
* @type boolean
*/
inlineCollapsed: boolean;
}