UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

56 lines 2.66 kB
import * as tslib_1 from "tslib"; import * as React from 'react'; import { DatePicker, DayOfWeek } from 'office-ui-fabric-react/lib/DatePicker'; import { addMonths, addYears } from 'office-ui-fabric-react/lib/utilities/dateMath/DateMath'; import './DatePicker.Examples.scss'; var today = new Date(Date.now()); var minDate = addMonths(today, -1); var maxDate = addYears(today, 1); var description = "When date boundaries are set (via minDate and maxDate props) the DatePicker will not allow out-of-bounds dates to be picked or entered. In this example, the allowed dates are " + minDate.toLocaleDateString() + "-" + maxDate.toLocaleDateString(); var DayPickerStrings = { months: [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' ], shortMonths: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], days: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], shortDays: ['S', 'M', 'T', 'W', 'T', 'F', 'S'], goToToday: 'Go to today', prevMonthAriaLabel: 'Go to previous month', nextMonthAriaLabel: 'Go to next month', prevYearAriaLabel: 'Go to previous year', nextYearAriaLabel: 'Go to next year', closeButtonAriaLabel: 'Close date picker', isRequiredErrorMessage: 'Field is required.', invalidInputErrorMessage: 'Invalid date format.', isOutOfBoundsErrorMessage: "Date must be between " + minDate.toLocaleDateString() + "-" + maxDate.toLocaleDateString() }; var DatePickerBoundedExample = /** @class */ (function (_super) { tslib_1.__extends(DatePickerBoundedExample, _super); function DatePickerBoundedExample(props) { var _this = _super.call(this, props) || this; _this.state = { firstDayOfWeek: DayOfWeek.Sunday }; return _this; } DatePickerBoundedExample.prototype.render = function () { var firstDayOfWeek = this.state.firstDayOfWeek; return (React.createElement("div", { className: "docs-DatePickerExample" }, React.createElement("p", null, description), React.createElement(DatePicker, { isRequired: false, firstDayOfWeek: firstDayOfWeek, strings: DayPickerStrings, placeholder: "Select a date...", minDate: minDate, maxDate: maxDate, allowTextInput: true }))); }; return DatePickerBoundedExample; }(React.Component)); export { DatePickerBoundedExample }; //# sourceMappingURL=DatePicker.Bounded.Example.js.map