forked from jonthornton/jquery-timepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.timepicker.d.ts
152 lines (149 loc) · 7.11 KB
/
jquery.timepicker.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// Type definitions for jQuery.timepicker 1.11.11
// https://github.com/jonthornton/jquery-timepicker
/**
* Declaring a namespace because there are several jquery timepickers already out there on DefinitelyTyped. Jt stands for Jon Thornton
*/
declare namespace Jt.Timepicker {
/**
* Options object for the jquery.timepicker
*/
export interface Options {
/**
* Default: 'body'
* Override where the dropdown is appended.
* Takes either a string to use as a selector, a function that gets passed the clicked input element as argument or a jquery object to use directly.
*/
appendTo?: string | ((clickedElement) => string);
/**
* Default: null
* A class name to apply to the HTML element that contains the timepicker dropdown.
*/
className?: string;
/**
* Default: false
* Close the timepicker when the window is scrolled. (Replicates <select> behavior.)
*/
closeOnWindowScroll?: boolean;
/**
* Default: false
* Disable typing in the timepicker input box; force users to select from list.
* More information https://github.com/jonthornton/jquery-timepicker/issues/425#issuecomment-133262458
*/
disableTextInput?: boolean;
/**
* Default: []
* Disable selection of certain time ranges. Input is an array of time pairs, like `[['3:00am', '4:30am'], ['5:00pm', '8:00pm']].
* The start of the interval will be disabled but the end won't.
*/
disableTimeRanges?: Array<string[]>;
/**
* Default: false
* Disables the onscreen keyboard for touch devices. There can be instances where Firefox or Chrome have touch events enabled
* (such as on Surface tablets but not actually be a touch device. In this case disableTouchKeyboard will prevent the timepicker
* input field from being focused.
* More information: https://github.com/jonthornton/jquery-timepicker/issues/413
*/
disableTouchKeyboard?: boolean;
/**
* Default: Same as the minTime
* The time against which showDuration will compute relative times. This should be given as a formatted date string.
*/
durationTime?: string | Date | (() => string | Date);
/**
* Default: false
* Force update the time to step settings as soon as it loses focus`.
*/
forceRoundTime?: boolean;
/**
* Default: 24 hours after minTime
* The time that should appear last in the dropdown list. Can be used to limit the range of time options.
*/
maxTime?: Date | string;
/**
* Default: 12:00 am
* The time that should appear first in the dropdown list.
*/
minTime?: Date | string;
/**
* Default: false.
* Adds one or more custom options to the top of the dropdown. Can accept several different value types:
* Boolean (true): Adds a "None" option that results in an empty input value
* String: Adds an option with a custom label that results in an empty input value
* Object: Similar to string, but allows customizing the element's class name and the resulting input value. Can contain label, value, and className properties. The value property must be a string type.
* Array: An array of strings or objects to add multiple non-time options
*/
noneOption?: boolean | string | string[] | NoneObject;
/**
* default: 'l'
* By default the timepicker dropdown will be aligned to the bottom right of the input element, or aligned to the top left if there isn't enough room below the input. Force alignment with l (left), r (right), t (top), and b (bottom). Examples: tl, rb.
*/
orientation?: string;
/**
* Default: Rounds to the nearest step
* Function used to compute rounded times. The function will receive time in seconds and a settings object as arguments. The function should handle a null value for seconds
*/
roundingFunction?: (seconds: number, settings: Options) => number;
/**
* Default: null
* If no time value is selected, set the dropdown scroll position to show the time provided, e.g. "09:00". A time string, Date object, or integer (seconds past midnight) is acceptible, as well as the string 'now'
*/
scrollDefault?: string | Date | number | {};
/**
* Default: false
* Update the input with the currently highlighted time value when the timepicker loses focus.
*/
selectOnBlur?: boolean;
/**
* Default: false
* Show "24:00" as an option when using 24-hour time format
*/
show2400?: boolean;
/**
* Default: false
* Shows the relative time for each item in the dropdown. minTime or durationTime must be set.
*/
showDuration?: boolean;
/**
* Default: ["click", "focus"]
* Display a timepicker dropdown when the input fires a particular event. Set to null or an empty array to disable automatic display. Setting should be an array of strings
*/
showOn?: string[];
/**
* @deprecated Display a timepicker dropdown when the input gains focus.
* Default: true
*/
showOnFocus?: boolean;
/**
* Default: 30
* The amount of time, in minutes, between each item in the dropdown. Alternately, you can specify a function to generate steps dynamically. The function will receive a count integer (0, 1, 2...) and is expected to return a step integer.
*/
step?: number;
/**
* Default: false
* When scrolling on the edge of the picker, it prevent parent containers () to scroll
*/
stopScrollPropagation?: boolean;
/**
* Default: 'g:ia'
* How times should be displayed in the list and input element. Uses PHP's date() formatting syntax. Characters can be escaped with a preceeding double slash (e.g. H\\hi). Alternatively, you can specify a function instead of a string, to use completely custom time formatting. In this case, * the format function receives a Date object and is expected to return a formatted time as a string
*/
timeFormat?: string | ((givenDate: Date) => string);
/**
* Default: true
* Highlight the nearest corresponding time option as a value is typed into the form input.
*/
typeaheadHighlight?: boolean;
/**
* Default: false
* Convert the input to an HTML <SELECT> control. This is ideal for small screen devices, or if you want to prevent the user from entering
* arbitrary values. This option is not compatible with the following options: appendTo, closeOnWindowScroll, disableTouchKeyboard,
* scrollDefault, selectOnBlur, typeAheadHighlight.
*/
useSelect?: boolean;
}
export interface NoneObject {
label: string;
value: string;
className: string;
}
}