time-select.d.ts
1.17 KB
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
import { ElementUIComponent, ElementUIComponentSize, ElementUIHorizontalAlignment } from './component'
export interface TimeSelectOptions {
/** Start time */
start?: string,
/** End time */
end?: string,
/** Time step */
step?: string,
/** Minimum time, any time before this time will be disabled */
minTime?: string,
/** Maximum time, any time after this time will be disabled */
maxTime?: string
}
/** TimeSelect Component */
export declare class ElTimeSelect extends ElementUIComponent {
/** Whether DatePicker is read only */
readonly: boolean
/** Whether DatePicker is disabled */
disabled: boolean
/** Whether the input is editable */
editable: boolean
/** Whether to show clear button */
clearable: boolean
/** Size of Input */
size: ElementUIComponentSize
/** Placeholder */
placeholder: string
/** Value of the picker */
value: string | Date
/** Alignment */
align: ElementUIHorizontalAlignment
/** Custom class name for TimePicker's dropdown */
popperClass: string
/** Additional options, check the table below */
pickerOptions: TimeSelectOptions
/**
* Focus the Input component
*/
focus (): void
}