@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
16 lines (15 loc) • 773 B
TypeScript
import type { FocusableElement, LabelPropType, LinkProps, SkipNavAPI, SkipNavStates, Stringified } from '../../schema';
import type { JSX } from '../../stencil-public-runtime';
export declare class KolSkipNav implements SkipNavAPI, FocusableElement {
protected readonly host?: HTMLKolSkipNavElement;
protected readonly ctaRef: import("../../utils/element-interaction").CtaRef<HTMLKolLinkWcElement>;
render(): JSX.Element;
focus(): Promise<void>;
_label: LabelPropType;
_links: Stringified<LinkProps[]>;
state: SkipNavStates;
validateLabel(value?: LabelPropType, _oldValue?: LabelPropType, initial?: boolean): void;
validateLinks(value?: Stringified<LinkProps[]>): void;
componentWillLoad(): void;
disconnectedCallback(): void;
}