UNPKG

tgui-angular

Version:

🚀 Angular UI library for Telegram Web Apps with modern components and theming support | 💼 Author is open to work opportunities | 📧 Contact: a.blagovestnov@gmail.com | 💬 Telegram: @ablagovestnov

26 lines (25 loc) • 1.39 kB
import { TypographyComponent } from '../typography.component'; import * as i0 from "@angular/core"; /** * The Headline component serves as a wrapper for text that is intended to be displayed prominently, * typically used for section headings or important titles within the application. It leverages the Typography * component for consistent typographic styling, offering a range of customization options through its props. * The component defaults to an `<h5>` HTML tag, providing semantic meaning and ensuring good SEO practices, * but can be customized as needed. */ export declare class HeadlineComponent extends TypographyComponent { /** * The size level of the headline, influencing its styling. */ level: import("@angular/core").InputSignal<"1" | "2">; tag: import("@angular/core").InputSignal<string | undefined>; get isLevel1(): boolean; get isLevel2(): boolean; get isPlain(): boolean; get isCaps(): boolean; get isWeight1(): boolean; get isWeight2(): boolean; get isWeight3(): boolean; static ɵfac: i0.ɵɵFactoryDeclaration<HeadlineComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<HeadlineComponent, "tgui-headline", never, { "level": { "alias": "level"; "required": false; "isSignal": true; }; "tag": { "alias": "tag"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>; }