gd-sprest-js
Version:
SharePoint 2013/Online js components.
49 lines (48 loc) • 1.33 kB
TypeScript
import { Fabric, IProps } from ".";
/**
* Contextual Menu
*/
export interface IContextualMenu {
/** Closes the menu. */
close(): any;
/** Returns the fabric component. */
get(): Fabric.IContextualMenu;
}
/**
* Contextual Menu Props
*/
export interface IContextualMenuProps extends IProps {
/** The target element to associate the menu with. */
elTarget?: Element | HTMLElement;
/** The menu items. */
items?: Array<IContextualMenuItem>;
/** The button icon. */
icon?: string;
/** True to hide the context menu. (Default: true) */
isHidden?: boolean;
/** The click event */
onClick?: (ev?: Event, item?: IContextualMenuItem) => void;
/** The button text. */
text?: string;
}
/**
* IContextualMenuItem
*/
export interface IContextualMenuItem {
/** The optional json data to associate with the item. */
data?: any;
/** The button icon. */
icon?: string;
/** True to disable the item. */
isDisabled?: boolean;
/** True to render the item as selected. */
isSelected?: boolean;
/** The sub-menu. */
menu?: Array<IContextualMenuItem>;
/** The item click event. */
onClick?: (ev?: Event, item?: IContextualMenuItem) => void;
/** The item text. */
text?: string;
/** The item value. */
value?: string;
}