]> git.immae.eu Git - github/fretlink/time-picker.git/blob - README.md
d2dcc3cab07bcf0eb58b6566a965e595d680cf9c
[github/fretlink/time-picker.git] / README.md
1 # TimePicker
2
3 React TimePicker
4
5 install
6 -------
7
8 ```
9 npm install rc-time-picker
10 ```
11
12 Usage
13 -----
14
15 ```
16 import TimePicker from 'rc-time-picker';
17 import React from 'react';
18 import ReactDOM from 'react-dom';
19 ReactDOM.render(<TimePicker />, container);
20 ```
21
22 API
23 ---
24
25 ### TimePicker
26
27 | Name | Type | Default | Description |
28 |----------------|----------------------------|-----------------------------------------------|--------------------------------------------------------------------------------------------|
29 | prefixCls | String | | prefixCls of this component |
30 | locale | Object | import from 'rc-time-picker/lib/locale/en_US' | |
31 | disabled | Boolean | false | whether picker is disabled |
32 | open | Boolean | false | current open state of picker. controlled prop |
33 | defaultValue | GregorianCalendar | null | default initial value |
34 | value | GregorianCalendar | null | current value |
35 | gregorianCalendarLocale | GregorianCalendar locale object | null | if value and defaultValue not set, you should set this to your locale |
36 | placeholder | String | '' | time input's placeholder |
37 | showHour | Boolean | whether show hour | |
38 | showSecond | Boolean | whether show second | |
39 | formatter | String|GregorianCalendarFormatter | | |
40 | hourOptions | Array<String> | hour options | |
41 | minuteOptions | Array<String> | minute options | |
42 | secondOptions | Array<String> | second options | |
43 | onChange | Function | null | called when select a different value |
44 | placement | String | bottomLeft | one of ['left','right','top','bottom', 'topLeft', 'topRight', 'bottomLeft', 'bottomRight'] |
45 | transitionName | String | '' | |
46
47 License
48 -------
49
50 rc-time-picker is released under the MIT license.