@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
21 lines (20 loc) • 723 B
TypeScript
import { KendoComponent } from '../_types/component';
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: KendoComponent<KendoCalendarProps & React.HTMLAttributes<HTMLDivElement>>;
export default Calendar;