UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

32 lines (31 loc) 1.05 kB
declare const options: { size: ("small" | "medium" | "large")[]; }; export type KendoMultiViewCalendarOptions = { size?: (typeof options.size)[number] | null; }; export type KendoMultiViewCalendarProps = KendoMultiViewCalendarOptions & { calendarTitleText?: string; calendarView?: 'month' | 'year' | 'decade' | 'century'; orientation?: 'horizontal' | 'vertical'; showCalendarFooter?: boolean; calendarCaption?: string; showTableHead?: boolean; showWeek?: boolean; dir?: 'ltr' | 'rtl'; }; export declare const MultiViewCalendar: { (props: KendoMultiViewCalendarProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; states: any[]; options: { size: ("small" | "medium" | "large")[]; }; className: string; defaultOptions: { readonly size: "medium"; readonly calendarTitleText: "October 2021 - November 2021"; readonly orientation: "horizontal"; readonly calendarView: "month"; }; }; export default MultiViewCalendar;