PanelMenu d.ts updated
parent
4265497548
commit
2d343263b4
|
@ -1,11 +1,28 @@
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* PanelMenu is a hybrid of Accordion and Tree components.
|
||||||
|
*
|
||||||
|
* [Live Demo](https://www.primevue.org/panelmenu/)
|
||||||
|
*
|
||||||
|
* @module panelmenu
|
||||||
|
*
|
||||||
|
*/
|
||||||
import { VNode } from 'vue';
|
import { VNode } from 'vue';
|
||||||
import { MenuItem } from '../menuitem';
|
import { MenuItem } from '../menuitem';
|
||||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Custom expanded keys metadata.
|
||||||
|
* @see {@link PanelMenuProps.expandedKeys}
|
||||||
|
*/
|
||||||
export interface PanelMenuExpandedKeys {
|
export interface PanelMenuExpandedKeys {
|
||||||
[key: string]: any;
|
[key: string]: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Custom panel open event.
|
||||||
|
* @see {@link PanelMenuEmits['panel-open']}
|
||||||
|
*/
|
||||||
export interface PanelMenuPanelOpenEvent {
|
export interface PanelMenuPanelOpenEvent {
|
||||||
/**
|
/**
|
||||||
* Browser mouse event.
|
* Browser mouse event.
|
||||||
|
@ -19,10 +36,15 @@ export interface PanelMenuPanelOpenEvent {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Custom panel close event.
|
||||||
|
* @see {@link PanelMenuEmits['panel-close']}
|
||||||
* @extends {PanelMenuPanelOpenEvent}
|
* @extends {PanelMenuPanelOpenEvent}
|
||||||
*/
|
*/
|
||||||
export interface PanelMenuPanelCloseEvent extends PanelMenuPanelOpenEvent {}
|
export interface PanelMenuPanelCloseEvent extends PanelMenuPanelOpenEvent {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines valid properties in PanelMenu component.
|
||||||
|
*/
|
||||||
export interface PanelMenuProps {
|
export interface PanelMenuProps {
|
||||||
/**
|
/**
|
||||||
* An array of menuitems.
|
* An array of menuitems.
|
||||||
|
@ -30,11 +52,12 @@ export interface PanelMenuProps {
|
||||||
model?: MenuItem[] | undefined;
|
model?: MenuItem[] | undefined;
|
||||||
/**
|
/**
|
||||||
* A map of keys to represent the expansion state in controlled mode.
|
* A map of keys to represent the expansion state in controlled mode.
|
||||||
* @see PanelMenuExpandedKeys
|
* @type {PanelMenuExpandedKeys}
|
||||||
*/
|
*/
|
||||||
expandedKeys?: PanelMenuExpandedKeys;
|
expandedKeys?: PanelMenuExpandedKeys;
|
||||||
/**
|
/**
|
||||||
* Whether to apply 'router-link-active-exact' class if route exactly matches the item path.
|
* Whether to apply 'router-link-active-exact' class if route exactly matches the item path.
|
||||||
|
* @defaultValue true
|
||||||
*/
|
*/
|
||||||
exact?: boolean | undefined;
|
exact?: boolean | undefined;
|
||||||
/**
|
/**
|
||||||
|
@ -43,37 +66,55 @@ export interface PanelMenuProps {
|
||||||
tabindex?: number | string | undefined;
|
tabindex?: number | string | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines valid slots in PanelMenu component.
|
||||||
|
*/
|
||||||
export interface PanelMenuSlots {
|
export interface PanelMenuSlots {
|
||||||
/**
|
/**
|
||||||
* Custom content for each item.
|
* Custom content for each item.
|
||||||
* @param {Object} scope - item slot's params.
|
* @param {Object} scope - item slot's params.
|
||||||
*/
|
*/
|
||||||
item: (scope: {
|
item(scope: {
|
||||||
/**
|
/**
|
||||||
* Menuitem instance
|
* Menuitem instance
|
||||||
*/
|
*/
|
||||||
item: MenuItem;
|
item: MenuItem;
|
||||||
}) => VNode[];
|
}): VNode[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export declare type PanelMenuEmits = {
|
/**
|
||||||
|
* Defines valid emits in PanelMenu component.
|
||||||
|
*/
|
||||||
|
export interface PanelMenuEmits {
|
||||||
/**
|
/**
|
||||||
* Emitted when the expandedKeys changes.
|
* Emitted when the expandedKeys changes.
|
||||||
* @param {*} value - New value.
|
* @param {*} value - New value.
|
||||||
*/
|
*/
|
||||||
'update:expandedKeys': (value: any) => void;
|
'update:expandedKeys'(value: any): void;
|
||||||
/**
|
/**
|
||||||
* Callback to invoke when a panel gets expanded.
|
* Callback to invoke when a panel gets expanded.
|
||||||
* @param {PanelMenuPanelOpenEvent} event - Custom panel open event.
|
* @param {PanelMenuPanelOpenEvent} event - Custom panel open event.
|
||||||
*/
|
*/
|
||||||
'panel-open': (event: PanelMenuPanelOpenEvent) => void;
|
'panel-open'(event: PanelMenuPanelOpenEvent): void;
|
||||||
/**
|
/**
|
||||||
* Callback to invoke when an active panel is collapsed by clicking on the header.
|
* Callback to invoke when an active panel is collapsed by clicking on the header.
|
||||||
* @param {PanelMenuPanelCloseEvent} event - Custom panel close event.
|
* @param {PanelMenuPanelCloseEvent} event - Custom panel close event.
|
||||||
*/
|
*/
|
||||||
'panel-close': (event: PanelMenuPanelCloseEvent) => void;
|
'panel-close'(event: PanelMenuPanelCloseEvent): void;
|
||||||
};
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* **PrimeVue - PanelMenu**
|
||||||
|
*
|
||||||
|
* _PanelMenu is a hybrid of Accordion and Tree components._
|
||||||
|
*
|
||||||
|
* [Live Demo](https://www.primevue.org/panelmenu/)
|
||||||
|
* --- ---
|
||||||
|
* 
|
||||||
|
*
|
||||||
|
* @group Component
|
||||||
|
*
|
||||||
|
*/
|
||||||
declare class PanelMenu extends ClassComponent<PanelMenuProps, PanelMenuSlots, PanelMenuEmits> {}
|
declare class PanelMenu extends ClassComponent<PanelMenuProps, PanelMenuSlots, PanelMenuEmits> {}
|
||||||
|
|
||||||
declare module '@vue/runtime-core' {
|
declare module '@vue/runtime-core' {
|
||||||
|
@ -82,17 +123,4 @@ declare module '@vue/runtime-core' {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* PanelMenu is a hybrid of Accordion and Tree components.
|
|
||||||
*
|
|
||||||
* Helper API:
|
|
||||||
*
|
|
||||||
* - [MenuItem](https://www.primefaces.org/primevue/menumodel)
|
|
||||||
*
|
|
||||||
* Demos:
|
|
||||||
*
|
|
||||||
* - [PanelMenu](https://www.primefaces.org/primevue/panelmenu)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
export default PanelMenu;
|
export default PanelMenu;
|
||||||
|
|
Loading…
Reference in New Issue