@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
14 lines (13 loc) • 632 B
TypeScript
import type { BreadcrumbAPI, BreadcrumbLinkProps, BreadcrumbStates, LabelPropType, LinkProps, Stringified } from '../../schema';
import type { JSX } from '../../stencil-public-runtime';
export declare class KolBreadcrumb implements BreadcrumbAPI {
private readonly renderLink;
render(): JSX.Element;
_label: LabelPropType;
_links: Stringified<BreadcrumbLinkProps[]>;
state: BreadcrumbStates;
validateLabel(value?: LabelPropType, _oldValue?: LabelPropType, initial?: boolean): void;
validateLinks(value?: Stringified<LinkProps[]>): void;
componentWillLoad(): void;
disconnectedCallback(): void;
}