@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
14 lines (13 loc) • 642 B
TypeScript
export declare const CALENDARTABLE_CLASSNAME = "k-calendar-table";
export type KendoCalendarTableProps = {
calendarCaption?: string;
showTableHead?: boolean;
showWeek?: boolean;
/** @aria aria-labelledby pointing to the calendar title */
ariaLabelledBy?: string;
/** @aria aria-activedescendant pointing to focused cell */
ariaActiveDescendant?: string;
/** @aria When true, this table acts as the grid root (standard calendar) */
gridRole?: boolean;
};
export declare const CalendarTable: (props: KendoCalendarTableProps & React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;