UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

17 lines (16 loc) 754 B
import { KendoComponent } from '../_types/component'; export declare const TIMELINETRACKITEM_CLASSNAME = "k-timeline-track-item"; declare const states: "focus"[]; export type KendoTimelineTrackItemOptions = { children?: React.JSX.Element | React.JSX.Element[]; content?: string; /** @aria aria-selected="true" when tab is selected/focused */ ariaSelected?: boolean; /** @aria aria-describedby points to the tabpanel */ ariaDescribedBy?: string; }; export type KendoTimelineTrackItemState = { [K in (typeof states)[number]]?: boolean; }; export declare const TimelineTrackItem: KendoComponent<KendoTimelineTrackItemOptions & KendoTimelineTrackItemState & React.HTMLAttributes<HTMLLIElement>>; export default TimelineTrackItem;