Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IItemOptions

An options object for creating a context menu item.

Hierarchy

Index

Properties

Optional args

args: ReadonlyJSONObject

The arguments for the command.

The default value is an empty object.

Optional command

command: undefined | string

The command to execute when the item is triggered.

The default value is an empty string.

Optional rank

rank: undefined | number

The rank for the item.

The rank is used as a tie-breaker when ordering context menu items for display. Items are sorted in the following order:

  1. Depth in the DOM tree (deeper is better)
  2. Selector specificity (higher is better)
  3. Rank (lower is better)
  4. Insertion order

The default rank is Infinity.

selector

selector: string

The CSS selector for the context menu item.

The context menu item will only be displayed in the context menu when the selector matches a node on the propagation path of the contextmenu event. This allows the menu item to be restricted to user-defined contexts.

The selector must not contain commas.

Optional submenu

submenu: Menu | null

The submenu for a 'submenu' type item.

The default value is null.

Optional type

type: ItemType

The type of the menu item.

The default value is 'command'.

Generated using TypeDoc