@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
22 lines (21 loc) • 862 B
TypeScript
import { KendoCardProps } from '../card';
export type KendoTimelineCardProps = KendoCardProps & {
/** @aria role for the card element (button for vertical, tabpanel for horizontal) */
ariaRole?: string;
/** @aria aria-describedby pointing to the date element */
ariaDescribedBy?: string;
/** @aria aria-live region for vertical cards */
ariaLive?: 'polite' | 'off';
/** @aria aria-expanded for collapsible vertical cards */
ariaExpanded?: boolean;
/** @aria aria-label for horizontal tabpanel */
ariaLabel?: string;
/** @aria tab index for focusable cards */
cardTabIndex?: number;
};
export declare const TimelineCard: {
(props: KendoTimelineCardProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: any[];
defaultOptions: {};
};
export default TimelineCard;