@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
28 lines (27 loc) • 859 B
TypeScript
declare const options: {
size: ("small" | "medium" | "large")[];
};
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';
};
export declare const CalendarHeader: {
(props: KendoCalendarHeaderProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
options: {
size: ("small" | "medium" | "large")[];
};
className: string;
defaultOptions: {
calendarTitleText: string;
showToday: boolean;
showNavigationButtons: boolean;
orientation: string;
size: "medium";
};
};
export default CalendarHeader;