Interface Breadcrumb

A single breadcrumb in the breadcrumbs bar.

interface Breadcrumb {
    containerClass?: string;
    iconClass?: string;
    id: string;
    label: string;
    longLabel: string;
    type: symbol;
}

Properties

containerClass?: string

CSS classes for the container.

iconClass?: string

A CSS class for the icon.

id: string

An ID of this breadcrumb that should be unique in the breadcrumbs bar.

label: string

The text that will be rendered as label.

longLabel: string

A longer text that will be used as tooltip text.

type: symbol

The breadcrumb type. Should be the same as the contribution type BreadcrumbsContribution#type.