UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

70 lines (69 loc) 1.7 kB
import { BaseStyle } from 'primeng/base'; import * as i0 from "@angular/core"; export declare class BreadCrumbStyle extends BaseStyle { name: string; theme: ({ dt }: { dt: any; }) => string; classes: { root: string; list: string; homeItem: string; separator: string; item: ({ instance }: { instance: any; }) => (string | { 'p-disabled': any; })[]; itemLink: string; itemIcon: string; itemLabel: string; }; static ɵfac: i0.ɵɵFactoryDeclaration<BreadCrumbStyle, never>; static ɵprov: i0.ɵɵInjectableDeclaration<BreadCrumbStyle>; } /** * * Breadcrumb provides contextual information about page hierarchy. * * [Live Demo](https://www.primeng.org/breadcrumb/) * * @module breadcrumbstyle * */ export declare enum BreadcrumbClasses { /** * Class name of the root element */ root = "p-breadcrumb", /** * Class name of the list element */ list = "p-breadcrumb-list", /** * Class name of the home item element */ homeItem = "p-breadcrumb-home-item", /** * Class name of the separator element */ separator = "p-breadcrumb-separator", /** * Class name of the item element */ item = "p-breadcrumb-item", /** * Class name of the item link element */ itemLink = "p-breadcrumb-item-link", /** * Class name of the item icon element */ itemIcon = "p-breadcrumb-item-icon", /** * Class name of the item label element */ itemLabel = "p-breadcrumb-item-label" } export interface BreadcrumbStyle extends BaseStyle { }