UNPKG

@carbon/ibm-products-web-components

Version:
44 lines 1.26 kB
/** * @license * * Copyright IBM Corp. 2025, 2025 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import { LitElement } from 'lit'; /** * Page header Breadcrumb Bar. * @element c4p-page-header-breadcrumb */ declare class CDSPageHeaderBreadcrumb extends LitElement { /** * Specify if breadcrumb bar has bottom border. */ border: boolean; /** * Set to `true` if the breadcrumb bar is sitting within a grid * (ie. when used in tandem with page-header-hero-image) */ withinGrid: boolean; /** * Set to `true` if page actions should be flush (no padding) */ pageActionsFlush: boolean; /** * Set to `true` if content actions should be flush (no padding) */ contentActionsFlush: boolean; /** * Aria label for the page header actions navigation. */ actionsAriaLabel: string; context: any; connectedCallback(): void; updated(changedProperties: Map<string, any>): void; private updateFixedClass; render(): import("lit-html").TemplateResult<1>; static styles: any; } export default CDSPageHeaderBreadcrumb; //# sourceMappingURL=page-header-breadcrumb.d.ts.map