@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
22 lines (21 loc) • 729 B
TypeScript
export type KendoCalendarInfiniteViewProps = {
orientation?: 'vertical' | 'horizontal';
calendarView?: 'month' | 'year' | 'decade' | 'century';
headerText?: string;
showWeekdays?: boolean;
showWeekNumbers?: boolean;
showNavigationButtons?: boolean;
weekdayCellsText?: string[];
};
export declare const CalendarInfiniteView: {
(props: KendoCalendarInfiniteViewProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
className: string;
defaultOptions: {
orientation: string;
calendarView: string;
headerText: string;
showWeekdays: boolean;
showNavigationButtons: boolean;
};
};
export default CalendarInfiniteView;