@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
29 lines (28 loc) • 962 B
TypeScript
declare const options: {
size: ("small" | "medium" | "large" | undefined)[];
};
export type KendoCalendarHeaderProps = {
calendarView?: 'month' | 'year' | 'decade' | 'century';
calendarTitleText?: string;
showToday?: boolean;
showNavigationButtons?: boolean;
size?: (typeof options.size)[number] | null;
orientation?: 'vertical' | 'horizontal';
dir?: 'ltr' | 'rtl';
/** @aria id for the title button, used for aria-labelledby from the grid */
titleId?: string;
};
export declare const CalendarHeader: {
(props: KendoCalendarHeaderProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
options: {
size: ("small" | "medium" | "large" | undefined)[];
};
className: string;
defaultOptions: {
calendarTitleText: string;
showToday: boolean;
showNavigationButtons: boolean;
orientation: string;
};
};
export default CalendarHeader;