primevue-mirror/components/lib/breadcrumb/Breadcrumb.d.ts

87 lines
2.0 KiB
TypeScript
Raw Normal View History

2023-03-01 12:35:48 +00:00
/**
*
* Breadcrumb provides contextual information about page hierarchy.
*
* [Live Demo](https://www.primevue.org/breadcrumb/)
*
* @module breadcrumb
*
*/
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 12:35:48 +00:00
/**
* Defines valid properties in Breadcrumb component.
*/
2022-09-06 12:03:37 +00:00
export interface BreadcrumbProps {
/**
* An array of menuitems.
*/
2023-03-01 12:35:48 +00:00
model?: MenuItem[] | undefined;
2022-09-06 12:03:37 +00:00
/**
* Configuration for the home icon.
*/
2023-03-01 12:35:48 +00:00
home?: MenuItem | 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 12:35:48 +00:00
* @defaultValue true
2022-09-06 12:03:37 +00:00
*/
2023-03-01 12:35:48 +00:00
exact?: boolean | undefined;
2022-12-08 11:04:25 +00:00
/**
* 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 12:35:48 +00:00
/**
* Defines valid slots in Breadcrumb component.
*/
2022-09-06 12:03:37 +00:00
export interface BreadcrumbSlots {
/**
* Custom item template.
* @param {Object} scope - item slot's params.
*/
2023-03-01 12:35:48 +00:00
item(scope: {
2022-09-06 12:03:37 +00:00
/**
* Menuitem instance
*/
item: MenuItem;
2023-03-01 12:35:48 +00:00
}): VNode[];
/**
* Custom separator template.
*/
separator(): VNode[];
2022-09-06 12:03:37 +00:00
}
2023-03-01 12:35:48 +00:00
/**
* Defines valid emits in Breadcrumb component.
*/
export interface BreadcrumbEmits {}
2022-09-06 12:03:37 +00:00
2023-03-01 12:35:48 +00:00
/**
* **PrimeVue - Breadcrumb**
*
* _Breadcrumb provides contextual information about page hierarchy._
*
* [Live Demo](https://www.primevue.org/breadcrumb/)
* --- ---
2023-03-03 10:55:20 +00:00
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
2023-03-01 12:35:48 +00:00
*
* @group Component
*
*/
2022-09-14 11:26:01 +00:00
declare class Breadcrumb extends ClassComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
Breadcrumb: GlobalComponentConstructor<Breadcrumb>;
2022-09-06 12:03:37 +00:00
}
}
export default Breadcrumb;