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

234 lines
5.6 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';
2023-07-06 11:17:08 +00:00
import { ComponentHooks } from '../basecomponent';
2022-09-06 12:03:37 +00:00
import { MenuItem } from '../menuitem';
2023-09-05 08:50:46 +00:00
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
2022-09-06 12:03:37 +00:00
export declare type BreadcrumbPassThroughOptionType = BreadcrumbPassThroughAttributes | ((options: BreadcrumbPassThroughMethodOptions) => BreadcrumbPassThroughAttributes | string) | string | null | undefined;
2023-04-26 09:57:16 +00:00
/**
* Custom passthrough(pt) option method.
*/
export interface BreadcrumbPassThroughMethodOptions {
/**
* Defines instance.
*/
2023-07-06 12:01:33 +00:00
instance: any;
/**
* Defines valid properties.
*/
2023-04-26 09:57:16 +00:00
props: BreadcrumbProps;
/**
* Defines current options.
*/
2023-07-24 14:18:43 +00:00
context: BreadcrumbContext;
2023-09-05 08:50:46 +00:00
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
2023-04-26 09:57:16 +00:00
}
/**
* Custom passthrough(pt) options.
* @see {@link BreadcrumbProps.pt}
*/
export interface BreadcrumbPassThroughOptions {
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the root's DOM element.
2023-04-26 09:57:16 +00:00
*/
root?: BreadcrumbPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the list's DOM element.
2023-04-26 09:57:16 +00:00
*/
menu?: BreadcrumbPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the list item's DOM element.
2023-04-26 09:57:16 +00:00
*/
menuitem?: BreadcrumbPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the action's DOM element.
2023-04-26 09:57:16 +00:00
*/
action?: BreadcrumbPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the icon's DOM element.
2023-04-26 09:57:16 +00:00
*/
icon?: BreadcrumbPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the label's DOM element.
2023-04-26 09:57:16 +00:00
*/
label?: BreadcrumbPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the separator's DOM element.
2023-04-26 09:57:16 +00:00
*/
separator?: BreadcrumbPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the separator icon's DOM element.
2023-04-26 09:57:16 +00:00
*/
separatorIcon?: BreadcrumbPassThroughOptionType;
2023-07-06 11:09:01 +00:00
/**
2023-11-07 06:16:39 +00:00
* Used to manage all lifecycle hooks.
2023-07-06 11:09:01 +00:00
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
2023-04-26 09:57:16 +00:00
}
/**
* Custom passthrough attributes for each DOM elements
*/
export interface BreadcrumbPassThroughAttributes {
[key: string]: any;
}
2023-07-24 14:18:43 +00:00
/**
* Defines current options in Breadcrumb component.
*/
export interface BreadcrumbContext {
/**
* Current menuitem
*/
item: any;
/**
* Index of the menuitem
*/
index: number;
}
/**
* Defines valid router binding props in Breadcrumb component.
*/
export interface BreadcrumbRouterBindProps {
/**
* Action element binding
*/
action: object;
/**
* Icon element binding
*/
icon: object;
/**
* Label element binding
*/
label: object;
}
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-11-08 12:47:48 +00:00
* @deprecated since v3.40.0.
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.
*/
2023-11-24 12:21:54 +00:00
ariaLabel?: string | undefined;
2022-12-08 11:04:25 +00:00
/**
* Identifier of the underlying menu element.
*/
2023-11-24 12:21:54 +00:00
ariaLabelledby?: string | undefined;
2023-04-26 09:57:16 +00:00
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to DOM elements inside the component.
2023-04-26 09:57:16 +00:00
* @type {BreadcrumbPassThroughOptions}
*/
pt?: PassThrough<BreadcrumbPassThroughOptions>;
2023-09-05 08:50:46 +00:00
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
2023-05-29 07:05:29 +00:00
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
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-08-30 13:28:00 +00:00
/**
* Label property of the menuitem
*/
label: string | ((...args: any) => string) | undefined;
/**
* Binding properties of the menuitem
*/
props: BreadcrumbRouterBindProps;
2023-03-01 12:35:48 +00:00
}): VNode[];
/**
* Custom separator template.
*/
separator(): VNode[];
/**
* Custom item icon template.
* @param {Object} scope - item icon slot's params.
*/
itemicon(scope: {
/**
* Menuitem instance
*/
item: MenuItem;
/**
* Style class of the item icon element.
*/
class: any;
}): 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;