UNPKG

5.2 kBMarkdownView Raw
1# TimePicker
2
3React TimePicker
4
5[![NPM version][npm-image]][npm-url]
6[![build status][travis-image]][travis-url]
7[![Test coverage][coveralls-image]][coveralls-url]
8[![gemnasium deps][gemnasium-image]][gemnasium-url]
9[![node version][node-image]][node-url]
10[![npm download][download-image]][download-url]
11
12[npm-image]: http://img.shields.io/npm/v/rc-time-picker.svg?style=flat-square
13[npm-url]: http://npmjs.org/package/rc-time-picker
14[travis-image]: https://img.shields.io/travis/react-component/time-picker.svg?style=flat-square
15[travis-url]: https://travis-ci.org/react-component/time-picker
16[coveralls-image]: https://img.shields.io/coveralls/react-component/time-picker.svg?style=flat-square
17[coveralls-url]: https://coveralls.io/r/react-component/time-picker?branch=master
18[gemnasium-image]: http://img.shields.io/gemnasium/react-component/time-picker.svg?style=flat-square
19[gemnasium-url]: https://gemnasium.com/react-component/time-picker
20[node-image]: https://img.shields.io/badge/node.js-%3E=_4.0.0-green.svg?style=flat-square
21[node-url]: http://nodejs.org/download/
22[download-image]: https://img.shields.io/npm/dm/rc-time-picker.svg?style=flat-square
23[download-url]: https://npmjs.org/package/rc-time-picker
24
25example
26--------
27
28http://react-component.github.io/time-picker/
29
30install
31-------
32
33```
34npm install rc-time-picker
35```
36
37Usage
38-----
39
40```
41import TimePicker from 'rc-time-picker';
42import ReactDOM from 'react-dom';
43ReactDOM.render(<TimePicker />, container);
44```
45
46API
47---
48
49### TimePicker
50
51| Name | Type | Default | Description |
52|-------------------------|-----------------------------------|---------|-------------|
53| prefixCls | String | 'rc-time-picker' | prefixCls of this component |
54| clearText | String | 'clear' | clear tooltip of icon |
55| disabled | Boolean | false | whether picker is disabled |
56| allowEmpty | Boolean | true | allow clearing text |
57| open | Boolean | false | current open state of picker. controlled prop |
58| defaultValue | moment | null | default initial value |
59| defaultOpenValue | moment | moment() | default open panel value, used to set utcOffset,locale if value/defaultValue absent |
60| value | moment | null | current value |
61| placeholder | String | '' | time input's placeholder |
62| className | String | '' | time picker className |
63| popupClassName | String | '' | time panel className |
64| showHour | Boolean | true | whether show hour | |
65| showMinute | Boolean | true | whether show minute |
66| showSecond | Boolean | true | whether show second |
67| format | String | - | moment format |
68| disabledHours | Function | - | disabled hour options |
69| disabledMinutes | Function | - | disabled minute options |
70| disabledSeconds | Function | - | disabled second options |
71| use12Hours | Boolean | false | 12 hours display mode |
72| hideDisabledOptions | Boolean | false | whether hide disabled options |
73| onChange | Function | null | called when select a different value |
74| addon | Function | - | called from timepicker panel to render some addon to its bottom, like an OK button. Receives panel instance as parameter, to be able to close it like `panel.close()`.|
75| placement | String | bottomLeft | one of ['left','right','top','bottom', 'topLeft', 'topRight', 'bottomLeft', 'bottomRight'] |
76| transitionName | String | '' | |
77| name | String | - | sets the name of the generated input |
78| onOpen | Function({ open }) | | when TimePicker panel is opened |
79| onClose | Function({ open }) | | when TimePicker panel is opened |
80| hourStep | Number | 1 | interval between hours in picker |
81| minuteStep | Number | 1 | interval between minutes in picker |
82| secondStep | Number | 1 | interval between seconds in picker |
83| focusOnOpen | Boolean | false | automatically focus the input when the picker opens |
84
85## Test Case
86
87```
88npm test
89npm run chrome-test
90```
91
92## Coverage
93
94```
95npm run coverage
96```
97
98open coverage/ dir
99
100License
101-------
102
103rc-time-picker is released under the MIT license.