@carbon/ibm-products-web-components
Version:
Carbon for IBM Products Web Components
47 lines • 1.31 kB
TypeScript
/**
* @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';
import '@carbon/web-components/es/components/tooltip/index.js';
/**
* Page header content.
* @element c4p-page-header-content
*/
declare class CDSPageHeaderContent extends LitElement {
/**
* Set to `true` if there are contextual actions
*/
private _hasContextualActions;
/**
* Handles `slotchange` event.
*/
protected _handleSlotChange({ target }: Event): void;
/**
* Title text of the page-header-content
*/
title: string;
/**
* Heading level for the title (h1-h6).
*/
titleLevel: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
/**
* Set to `true` if the tag text has ellipsis applied
*/
_hasEllipsisApplied: 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;
context: any;
updated(): void;
render(): import("lit-html").TemplateResult<1>;
static styles: any;
}
export default CDSPageHeaderContent;
//# sourceMappingURL=page-header-content.d.ts.map