-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.d.ts
123 lines (96 loc) · 4.8 KB
/
index.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
/** The time picker returned to the calling project. */
export type TimePicker =
{
/** The element which contains the clock */
element: HTMLElement
/** Set the width of the time picker. The height is proportional to the width. */
setWidth: (width: number | string) => void
/** Return the current time */
getTime: () => {hour: number, minute: number}
/** Set the current time programmatically */
setTime: (hours?: number | string, minutes?: number | string) => void
/** Set the clock to 12 hour mode.
* If the clock is in 12h mode, the times used in getTime, setTime and onOk will still be in 24h format */
set12h: () => void
/** Set the clock to 24 hour mode */
set24h: () => void
/** Show the hour hand */
showHours: () => void
/** Show the minute hand */
showMinutes: () => void
/** Dispose of the time picker and invoke any "onOk" event handlers */
ok: () => void
/** Dispose of the time picker and invoke any "onCancel" event handlers */
cancel: () => void
/** Add an event handler for when the time changes */
onTimeChanged: (callback: (hour: number, minute: number) => void) => void
/** Add an event handler for when the set time operation completes successfully */
onOk: (callback: (hour: number, minute: number) => void) => void
/** Add an event handler for when the set time operation is canceled */
onCancel: (callback: () => void) => void
/** Add an event handler for when the time picker is disposed of */
onDispose: (callback: () => void) => void
/** Manually dispose of the time picker */
dispose: () => void
}
/** The results of a timepicker input */
export type TimePickerInput =
{
/** If the time picker is open, get it's time. Otherwise, get the time in the <input>.
* If the input cannot be parsed, returns null */
getTime: () => {hour: number, minute: number} | null,
/** Set the time in the time picker if open, otherwise, set the time in the input.
* If force=true, set the time in the input either way
*/
setTime: (hour: number | string, minute: number | string, force?: boolean) => void,
/**Dispose of the time picker input */
dispose: () => void,
}
/** Data to initialize a time picker with a time */
export type InitializeTimeData =
{
/** The initial time to show. If a Date is used, it's "getHours()" and "getMinutes()" functions will be called to get the time */
time?: {
/** The hour in 24hour format. 24 is not a valid hour, use 0 instead */
hour?: number | string,
/** The minute */
minute?: number | string
} | Date
}
/** Common inputs for all time picker export types */
export type CommonData =
{
/** Specify a 12 or 24 hour clock. If not specified, the user browser default will be used.
* If the clock is in 12h mode, the times used as inputs, in getTime, setTime and onOk will still be in 24h format */
mode?: 12 | 24 | "12" | "24",
/** The width of the component. Default 300px. If set, will also ajust the font-size.
* If a % value is used, the control will grow to fit parent element size. In this case, font-size must also be set on the parent.
* If an em value is used, the font-size will be un altered. This may have some unexpected outcomes. */
width?: number | string
}
/** The inputs for a new time picker */
export type TimePickerData =
CommonData &
InitializeTimeData &
{
/** The element to create the time picker inside. If not specified, a new div will be created */
element?: HTMLElement
/** If set to true, the "hours" input will be focused on render. Default false */
focus?: boolean
}
/** The inputs for a new modal time picker */
export type TimePickerModalData = CommonData & InitializeTimeData
/** The inputs for a new time picker, which launches when an input receives focus */
export type TimePickerInputData =
CommonData &
InitializeTimeData &
{
/** The input element */
inputElement?: HTMLInputElement
}
/** Create a new time picker. The timepicker lives in the "element" return value which can then be appended to the DOM */
export function timePicker(input?: TimePickerData): TimePicker
/** Create a new time picker and render in a modal */
export function timePickerModal(input?: TimePickerModalData): TimePicker
/** Create a new time picker and render in a modal each time an input is focused */
export function timePickerInput(input?: TimePickerInputData): TimePickerInput