mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Conflicts: angular-material/angular-material.d.ts bookshelf/bookshelf.d.ts react-widgets/react-widgets.d.ts vinyl/vinyl.d.ts
140 lines
5.0 KiB
TypeScript
140 lines
5.0 KiB
TypeScript
import * as React from 'react';
|
|
|
|
interface DateTimePickerProps extends React.Props<DateTimePickerClass> {
|
|
/**
|
|
* Whether to show the date picker button.
|
|
* @default true
|
|
*/
|
|
calendar?: boolean;
|
|
/**
|
|
* Whether to show the time picker button.
|
|
* @default true
|
|
*/
|
|
time?: boolean;
|
|
/**
|
|
* The minimum Date that can be selected. Min only limits selection, it doesn't constrain
|
|
* the date values that can be typed or pasted into the widget. If you need this behavior
|
|
* you can constrain values via the onChange handler.
|
|
* @default Date(1900, 0, 1)
|
|
*/
|
|
min?: Date;
|
|
/**
|
|
* The maximum Date that can be selected. Max only limits selection, it doesn't constrain
|
|
* the date values that can be typed or pasted into the widget. If you need this behavior
|
|
* you can constrain values via the onChange handler.
|
|
* @default Date(2099, 11, 31)
|
|
*/
|
|
max?: Date;
|
|
/**
|
|
* Default current date at which the calendar opens. If none is provided, opens at today's
|
|
* date or the value date (if any).
|
|
* @default Date()
|
|
*/
|
|
currentDate?: Date;
|
|
/**
|
|
* Change event Handler that is called when the currentDate is changed. The handler is
|
|
* called with the currentDate object.
|
|
*/
|
|
onCurrentDateChange?: (date?: Date) => void;
|
|
/**
|
|
* A string format used to display the date value.
|
|
*/
|
|
format?: string;
|
|
/**
|
|
* A string format to be used while the date input has focus. Useful for showing a simpler
|
|
* format for inputing.
|
|
*/
|
|
editFormat?: string;
|
|
/**
|
|
* A string format used by the time dropdown to render times.
|
|
*/
|
|
timeFormat?: string;
|
|
/**
|
|
* The amount of minutes between each entry in the time list.
|
|
*/
|
|
step?: number | boolean;
|
|
/**
|
|
* Determines how the widget parses the typed date string into a Date object. You can
|
|
* provide an array of formats to try, or provide a function that returns a date to handle
|
|
* parsing yourself. When parse is unspecified and the format prop is a String parse will
|
|
* automatically use that format as its default
|
|
*/
|
|
parse?: (str: string) => Date | string[];
|
|
/**
|
|
* The starting and lowest level view the calendar can navigate down to.
|
|
* @enum "month" "year" "decade" "century"
|
|
*/
|
|
initialView?: "month" | "year" | "decade" | "century";
|
|
/**
|
|
* The highest level view the calendar can navigate up to. This value should be higher than
|
|
* initialView.
|
|
* @enum "month" "year" "decade" "century"
|
|
*/
|
|
finalView?: "month" | "year" | "decade" | "century";
|
|
/**
|
|
* The current selected date, should be a Date instance or null.
|
|
*/
|
|
value?: Date;
|
|
/**
|
|
* Default value.
|
|
*/
|
|
defaultValue?: Date;
|
|
/**
|
|
* Change event Handler that is called when the value is changed. The handler is called with
|
|
* both the current Date object (or null if it was not parseable), and the second argument
|
|
* is a string representation of the date value, formated by the format prop.
|
|
*/
|
|
onChange?: (date?: Date, dateStr?: string) => void;
|
|
/**
|
|
* This handler fires when an item has been selected from the list or calendar. It fires
|
|
* before the onChange handler, and fires regardless of whether the value has actually
|
|
* changed.
|
|
*/
|
|
onSelect?: (date?: Date) => void;
|
|
/**
|
|
* Whether or not the DateTimePicker is open. When unset (undefined) the DateTimePicker will
|
|
* handle the opening and closing internally. The defaultOpen prop can be used to set an
|
|
* initialization value for uncontrolled widgets.
|
|
* @enum false "calendar" "time"
|
|
*/
|
|
open?: boolean | "calendar" | "time";
|
|
/**
|
|
* Called when the DateTimePicker is about to open or close. onToggle should be used when
|
|
* the open prop is set otherwise the widget will never open or close.
|
|
*/
|
|
onToggle?: (isOpen: boolean) => void;
|
|
/**
|
|
* The speed, in milliseconds, of the either dropdown animation.
|
|
*/
|
|
duration?: number;
|
|
/**
|
|
* Mark whether the widget should render right-to-left. This property can also be implicitly
|
|
* passed to the widget through a childContext prop (isRtl) this allows higher level
|
|
* application components to specify the direction.
|
|
*/
|
|
isRtl?: boolean;
|
|
/**
|
|
* Object hash containing display text and/or text for screen readers. Use the messages
|
|
* object to localize widget text and increase accessibility.
|
|
*/
|
|
messages?: DateTimePickerMessages;
|
|
}
|
|
|
|
interface DateTimePickerMessages {
|
|
/**
|
|
* Title and screen reader text for the left arrow button.
|
|
* @default "Select Date"
|
|
*/
|
|
calendarButton?: string;
|
|
/**
|
|
* Title and screen reader text for the right arrow button.
|
|
* @default "Select Time"
|
|
*/
|
|
timeButton?: string;
|
|
}
|
|
|
|
interface DateTimePicker extends React.ReactElement<DateTimePickerProps> {}
|
|
interface DateTimePickerClass extends React.ComponentClass<DateTimePickerProps> {}
|
|
declare var DateTimePicker: DateTimePickerClass;
|
|
export = DateTimePicker;
|