@carbon/ibm-products-web-components
Version:
Carbon for IBM Products Web Components
43 lines (42 loc) • 1.14 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;
/**
* 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;