mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 01:42:34 +00:00
Styles imported. Components added
This commit is contained in:
parent
3cb3910561
commit
8264983db4
452 changed files with 55902 additions and 0 deletions
98
components/contextmenu/ContextMenu.d.ts
vendored
Executable file
98
components/contextmenu/ContextMenu.d.ts
vendored
Executable file
|
@ -0,0 +1,98 @@
|
|||
import { VNode } from 'vue';
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
import { MenuItem } from '../menuitem';
|
||||
|
||||
type ContextMenuAppendTo = 'body' | 'self' | string | undefined | HTMLElement;
|
||||
|
||||
export interface ContextMenuProps {
|
||||
/**
|
||||
* An array of menuitems.
|
||||
*/
|
||||
model?: MenuItem[] | undefined;
|
||||
/**
|
||||
* A valid query selector or an HTMLElement to specify where the overlay gets attached.
|
||||
* @see ContextMenuAppendTo
|
||||
* Default value is 'body'
|
||||
*/
|
||||
appendTo?: ContextMenuAppendTo;
|
||||
/**
|
||||
* Whether to automatically manage layering.
|
||||
* Default value is true.
|
||||
*/
|
||||
autoZIndex?: boolean | undefined;
|
||||
/**
|
||||
* Base zIndex value to use in layering.
|
||||
* Default value is 0.
|
||||
*/
|
||||
baseZIndex?: number | undefined;
|
||||
/**
|
||||
* Attaches the menu to document instead of a particular item.
|
||||
*/
|
||||
global?: boolean | undefined;
|
||||
/**
|
||||
* Whether to apply 'router-link-active-exact' class if route exactly matches the item path.
|
||||
* Default value is true.
|
||||
*/
|
||||
exact?: boolean | undefined;
|
||||
}
|
||||
|
||||
export interface ContextMenuSlots {
|
||||
/**
|
||||
* Custom item template.
|
||||
* @param {Object} scope - item slot's params.
|
||||
*/
|
||||
item: (scope: {
|
||||
/**
|
||||
* Menuitem instance
|
||||
*/
|
||||
item: MenuItem;
|
||||
}) => VNode[];
|
||||
}
|
||||
|
||||
export declare type ContextMenuEmits = {
|
||||
}
|
||||
|
||||
declare class ContextMenu extends ClassComponent<ContextMenuProps, ContextMenuSlots, ContextMenuEmits> {
|
||||
/**
|
||||
* Toggles the visibility of the menu.
|
||||
* @param {Event} event - Browser event.
|
||||
*
|
||||
* @memberof ContextMenu
|
||||
*/
|
||||
toggle: (event: Event) => void;
|
||||
/**
|
||||
* Shows the menu.
|
||||
* @param {Event} event - Browser event.
|
||||
*
|
||||
* @memberof ContextMenu
|
||||
*/
|
||||
show: (event: Event) => void;
|
||||
/**
|
||||
* Hides the menu.
|
||||
*
|
||||
* @memberof ContextMenu
|
||||
*/
|
||||
hide: () => void;
|
||||
}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
ContextMenu: GlobalComponentConstructor<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.
|
||||
*
|
||||
* Helper API:
|
||||
*
|
||||
* - [MenuItem](https://www.primefaces.org/primevue/showcase/#/menumodel)
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [ContextMenu](https://www.primefaces.org/primevue/showcase/#/contextmenu)
|
||||
*
|
||||
*/
|
||||
export default ContextMenu;
|
Loading…
Add table
Add a link
Reference in a new issue