UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

25 lines (24 loc) 874 B
import * as React from 'react'; import { DateRangeType } from 'office-ui-fabric-react/lib/Calendar'; export interface ICalendarInlineExampleState { selectedDate: Date | null; selectedDateRange: Date[] | null; } export interface ICalendarInlineExampleProps { isMonthPickerVisible?: boolean; dateRangeType: DateRangeType; autoNavigateOnSelection: boolean; showGoToToday: boolean; showNavigateButtons?: boolean; highlightCurrentMonth?: boolean; isDayPickerVisible?: boolean; showMonthPickerAsOverlay?: boolean; } export declare class CalendarInlineExample extends React.Component<ICalendarInlineExampleProps, ICalendarInlineExampleState> { constructor(); render(): JSX.Element; private _onDismiss(); private _goPrevious(); private _goNext(); private _onSelectDate(date, dateRangeArray); }