primevue-mirror/components/megamenu/MegaMenu.d.ts

112 lines
2.6 KiB
TypeScript
Raw Normal View History

2023-03-01 13:04:12 +00:00
/**
*
* MegaMenu is navigation component that displays submenus together.
*
* [Live Demo](https://www.primevue.org/megamenu/)
*
* @module megamenu
*
*/
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:04:12 +00:00
/**
* Defines valid properties in MegaMenu component.
*/
2022-09-06 12:03:37 +00:00
export interface MegaMenuProps {
/**
* An array of menuitems.
*/
model?: MenuItem[] | undefined;
/**
* Defines the orientation.
2023-03-03 08:18:55 +00:00
* @defaultValue 'horizontal'
2022-09-06 12:03:37 +00:00
*/
2023-03-01 13:04:12 +00:00
orientation?: 'horizontal' | 'vertical' | undefined;
2022-09-06 12:03:37 +00:00
/**
* Whether to apply 'router-link-active-exact' class if route exactly matches the item path.
2023-03-01 13:04:12 +00:00
* @defaultValue true
2022-09-06 12:03:37 +00:00
*/
exact?: boolean | undefined;
2022-12-08 11:04:25 +00:00
/**
* When present, it specifies that the component should be disabled.
2023-03-01 13:04:12 +00:00
* @defaultValue false
2022-12-08 11:04:25 +00:00
*/
disabled?: boolean | undefined;
/**
* 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:04:12 +00:00
/**
* Defines valid slots in MegaMenu component.
*/
2022-09-06 12:03:37 +00:00
export interface MegaMenuSlots {
/**
* Custom start template.
*/
2023-03-01 13:04:12 +00:00
start(): VNode[];
2022-09-06 12:03:37 +00:00
/**
* Custom end template.
*/
2023-03-01 13:04:12 +00:00
end(): VNode[];
2022-09-06 12:03:37 +00:00
/**
* Custom item template.
* @param {Object} scope - item slot's params.
*/
2023-03-01 13:04:12 +00:00
item(scope: {
2022-09-06 12:03:37 +00:00
/**
* Menuitem instance
*/
item: MenuItem;
2023-03-01 13:04:12 +00:00
}): VNode[];
2022-09-06 12:03:37 +00:00
}
2023-03-01 13:04:12 +00:00
/**
* Defines valid emits in MegaMenu component.
*/
export interface MegaMenuEmits {
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:04:12 +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:04:12 +00:00
blur(event: Event): void;
}
2022-09-06 12:03:37 +00:00
2023-03-01 13:04:12 +00:00
/**
* **PrimeVue - MegaMenu**
*
* _MegaMenu is navigation component that displays submenus together._
*
* [Live Demo](https://www.primevue.org/megamenu/)
* --- ---
2023-03-03 10:55:20 +00:00
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
2023-03-01 13:04:12 +00:00
*
* @group Component
*
*/
2022-09-14 11:26:01 +00:00
declare class MegaMenu extends ClassComponent<MegaMenuProps, MegaMenuSlots, MegaMenuEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
MegaMenu: GlobalComponentConstructor<MegaMenu>;
2022-09-06 12:03:37 +00:00
}
}
export default MegaMenu;