@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
18 lines (17 loc) • 775 B
TypeScript
import type { HeadingAPI, HeadingLevel, HeadingStates, HeadingVariantPropType, LabelWithExpertSlotPropType } from '../../schema';
import type { JSX } from '../../stencil-public-runtime';
export declare class KolHeadingWc implements HeadingAPI {
_label: LabelWithExpertSlotPropType;
_level?: HeadingLevel;
_secondaryHeadline?: string;
_variant?: HeadingVariantPropType;
state: HeadingStates;
validateLabel(value?: LabelWithExpertSlotPropType): void;
validateLevel(value?: HeadingLevel): void;
validateSecondaryHeadline(value?: string): void;
validateVariant(value?: HeadingVariantPropType): void;
componentWillLoad(): void;
private readonly renderHeadline;
private readonly renderSecondaryHeadline;
render(): JSX.Element;
}