primevue-mirror/components/contextmenu/ContextMenu.d.ts

153 lines
3.9 KiB
TypeScript
Raw Normal View History

2023-03-01 13:03:58 +00:00
/**
*
* ContextMenu displays an overlay menu on right click of its target. Note that components like DataTable has special integration with ContextMenu.
* Refer to documentation of the individual documentation of the with context menu support.
*
* [Live Demo](https://www.primevue.org/contextmenu/)
*
* @module contextmenu
*
*/
2022-09-06 12:03:37 +00:00
import { VNode } from 'vue';
import { MenuItem } from '../menuitem';
2022-12-08 11:04:25 +00:00
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
2022-09-06 12:03:37 +00:00
2023-03-01 13:03:58 +00:00
/**
* Defines valid properties in ContextMenu component.
*/
2022-09-06 12:03:37 +00:00
export interface ContextMenuProps {
/**
* An array of menuitems.
*/
model?: MenuItem[] | undefined;
/**
* A valid query selector or an HTMLElement to specify where the overlay gets attached.
2023-03-08 10:51:52 +00:00
* @defaultValue body
2022-09-06 12:03:37 +00:00
*/
2023-03-01 13:03:58 +00:00
appendTo?: 'body' | 'self' | string | undefined | HTMLElement;
2022-09-06 12:03:37 +00:00
/**
* Whether to automatically manage layering.
2023-03-01 13:03:58 +00:00
* @defaultValue true
2022-09-06 12:03:37 +00:00
*/
autoZIndex?: boolean | undefined;
/**
* Base zIndex value to use in layering.
2023-03-01 13:03:58 +00:00
* @defaultValue 0
2022-09-06 12:03:37 +00:00
*/
baseZIndex?: number | undefined;
/**
* Attaches the menu to document instead of a particular item.
2023-03-01 13:03:58 +00:00
* @defaultValue false
2022-09-06 12:03:37 +00:00
*/
global?: boolean | undefined;
/**
* Whether to apply 'router-link-active-exact' class if route exactly matches the item path.
2023-03-01 13:03:58 +00:00
* @defaultValue true
2022-09-06 12:03:37 +00:00
*/
exact?: boolean | undefined;
2022-12-08 11:04:25 +00:00
/**
* Index of the element in tabbing order.
*/
tabindex?: number | string | undefined;
/**
* Defines a string value that labels an interactive element.
*/
'aria-label'?: string | undefined;
/**
* Identifier of the underlying menu element.
*/
'aria-labelledby'?: string | undefined;
2022-09-06 12:03:37 +00:00
}
2023-03-01 13:03:58 +00:00
/**
* Defines valid slots in ContextMenu component.
*/
2022-09-06 12:03:37 +00:00
export interface ContextMenuSlots {
/**
* Custom item template.
* @param {Object} scope - item slot's params.
*/
2023-03-01 13:03:58 +00:00
item(scope: {
2022-09-06 12:03:37 +00:00
/**
* Menuitem instance
*/
item: MenuItem;
2023-03-01 13:03:58 +00:00
}): VNode[];
2022-09-06 12:03:37 +00:00
}
2023-03-01 13:03:58 +00:00
/**
* Defines valid emits in ContextMenu component.
*/
export interface ContextMenuEmits {
2022-12-08 11:04:25 +00:00
/**
* Callback to invoke when the component receives focus.
* @param {Event} event - Browser event.
*/
2023-03-01 13:03:58 +00:00
focus(event: Event): void;
2022-12-08 11:04:25 +00:00
/**
* Callback to invoke when the component loses focus.
* @param {Event} event - Browser event.
*/
2023-03-01 13:03:58 +00:00
blur(event: Event): void;
2022-12-08 11:04:25 +00:00
/**
* Callback to invoke before the popup is shown.
*/
2023-03-01 13:03:58 +00:00
'before-show'(): void;
2022-12-08 11:04:25 +00:00
/**
* Callback to invoke before the popup is hidden.
*/
2023-03-01 13:03:58 +00:00
'before-hide'(): void;
2022-12-08 11:04:25 +00:00
/**
* Callback to invoke when the popup is shown.
*/
2023-03-01 13:03:58 +00:00
show(): void;
2022-12-08 11:04:25 +00:00
/**
* Callback to invoke when the popup is hidden.
*/
2023-03-01 13:03:58 +00:00
hide(): void;
}
2022-09-06 12:03:37 +00:00
2023-03-01 13:03:58 +00:00
/**
* **PrimeVue - ContextMenu**
*
* _ContextMenu displays an overlay menu on right click of its target. Note that components like DataTable has special integration with ContextMenu.
* Refer to documentation of the individual documentation of the with context menu support._
*
* [Live Demo](https://www.primevue.org/contextmenu/)
* --- ---
2023-03-03 10:55:20 +00:00
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
2023-03-01 13:03:58 +00:00
*
* @group Component
*
*/
2022-09-06 12:03:37 +00:00
declare class ContextMenu extends ClassComponent<ContextMenuProps, ContextMenuSlots, ContextMenuEmits> {
/**
* Toggles the visibility of the menu.
* @param {Event} event - Browser event.
*
* @memberof ContextMenu
*/
2023-03-01 13:03:58 +00:00
toggle(event: Event): void;
2022-09-06 12:03:37 +00:00
/**
* Shows the menu.
* @param {Event} event - Browser event.
*
* @memberof ContextMenu
*/
2023-03-01 13:03:58 +00:00
show(event: Event): void;
2022-09-06 12:03:37 +00:00
/**
* Hides the menu.
*
* @memberof ContextMenu
*/
2023-03-01 13:03:58 +00:00
hide(): void;
2022-09-06 12:03:37 +00:00
}
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
ContextMenu: GlobalComponentConstructor<ContextMenu>;
2022-09-06 12:03:37 +00:00
}
}
export default ContextMenu;