@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
34 lines (33 loc) • 1.06 kB
TypeScript
declare const options: {
size: ("small" | "medium" | "large")[];
};
export type KendoCalendarOptions = {
size?: (typeof options.size)[number] | null;
};
export type KendoCalendarProps = KendoCalendarOptions & {
orientation?: 'vertical' | 'horizontal';
calendarView?: 'month' | 'year' | 'decade' | 'century';
calendarTitleText?: string;
showTableHead?: boolean;
showWeek?: boolean;
showCalendarHeader?: boolean;
showCalendarFooter?: boolean;
calendarFooterText?: string;
dir?: 'ltr' | 'rtl';
};
export declare const Calendar: {
(props: KendoCalendarProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: any[];
options: {
size: ("small" | "medium" | "large")[];
};
className: string;
defaultOptions: {
readonly size: "medium";
readonly showCalendarHeader: true;
readonly orientation: "horizontal";
readonly calendarView: "month";
readonly calendarTitleText: "October 2021";
};
};
export default Calendar;