@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
15 lines (14 loc) • 619 B
TypeScript
import { KendoComponent } from '../_types/component';
export type KendoCalendarInfiniteViewProps = {
orientation?: 'vertical' | 'horizontal';
calendarView?: 'month' | 'year' | 'decade' | 'century';
headerText?: string;
showWeekdays?: boolean;
showWeekNumbers?: boolean;
showNavigationButtons?: boolean;
weekdayCellsText?: string[];
/** @aria aria-labelledby for the content grid table */
gridLabelledBy?: string;
};
export declare const CalendarInfiniteView: KendoComponent<KendoCalendarInfiniteViewProps & React.HTMLAttributes<HTMLDivElement>>;
export default CalendarInfiniteView;