chore: update type menu (#2717)

pull/2725/head^2
binhaoCen 2020-08-19 21:47:08 +08:00 committed by GitHub
parent 13b01d7a70
commit 4063fe6627
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 128 additions and 117 deletions

View File

@ -4,17 +4,19 @@
import { AntdComponent } from '../component'; import { AntdComponent } from '../component';
import { MenuItem } from './menu-item'; import { MenuItem } from './menu-item';
import { VNodeChild } from 'vue';
export declare class MenuItemGroup extends AntdComponent { export declare class MenuItemGroup extends AntdComponent {
$props:{
/** /**
* sub menu items * sub menu items
* @type MenuItem[] * @type MenuItem[]
*/ */
children: MenuItem[]; children?: MenuItem[];
/** /**
* title of the group * title of the group
* @type string | slot * @type string | slot
*/ */
title: any; title?: VNodeChild | JSX.Element;
}
} }

View File

@ -5,22 +5,24 @@
import { AntdComponent } from '../component'; import { AntdComponent } from '../component';
export declare class MenuItem extends AntdComponent { export declare class MenuItem extends AntdComponent {
$props: {
/** /**
* unique id of the menu item * unique id of the menu item
* @type string * @type string
*/ */
key: string; key?: string;
/** /**
* whether menu item is disabled or not * whether menu item is disabled or not
* @default false * @default false
* @type boolean * @type boolean
*/ */
disabled: boolean; disabled?: boolean;
/** /**
* set display title for collapsed item * set display title for collapsed item
* @type string * @type string
*/ */
title: string; title?: string;
}
} }

34
types/menu/menu.d.ts vendored
View File

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

View File

@ -4,26 +4,31 @@
import { AntdComponent } from '../component'; import { AntdComponent } from '../component';
import { MenuItem } from './menu-item'; import { MenuItem } from './menu-item';
import { VNodeChild } from 'vue';
export declare class SubMenu extends AntdComponent { export declare class SubMenu extends AntdComponent {
$props: {
/** /**
* unique id of the menu item * unique id of the menu item
* @type string * @type string
*/ */
key: string; key?: string;
/** /**
* whether menu item is disabled or not * whether menu item is disabled or not
* @default false * @default false
* @type boolean * @type boolean
*/ */
disabled: boolean; disabled?: boolean;
/** /**
* title of the sub menu * title of the sub menu
* @type string | slot * @type string | slot
*/ */
title: any; title?: VNodeChild | JSX.Element;
/**
popupClassName: string; * Sub-menu class name (1.5.0)
*/
popupClassName?: string;
}
} }