diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -50,7 +50,7 @@ API | |||
50 | 50 | ||
51 | | Name | Type | Default | Description | | 51 | | Name | Type | Default | Description | |
52 | |-------------------------|-----------------------------------|-----------------------------------------------|--------------------------------------------------------------------------------------------| | 52 | |-------------------------|-----------------------------------|-----------------------------------------------|--------------------------------------------------------------------------------------------| |
53 | | prefixCls | String | | prefixCls of this component | | 53 | | prefixCls | String | 'rc-time-picker' | prefixCls of this component | |
54 | | clearText | String | 'clear' | | | 54 | | clearText | String | 'clear' | | |
55 | | disabled | Boolean | false | whether picker is disabled | | 55 | | disabled | Boolean | false | whether picker is disabled | |
56 | | clearText | String | clear | clear text | | 56 | | clearText | String | clear | clear text | |
@@ -59,19 +59,19 @@ API | |||
59 | | defaultOpenValue | moment | moment() | default open panel value, used to set utcOffset,locale if value/defaultValue absent | | 59 | | defaultOpenValue | moment | moment() | default open panel value, used to set utcOffset,locale if value/defaultValue absent | |
60 | | value | moment | null | current value | | 60 | | value | moment | null | current value | |
61 | | placeholder | String | '' | time input's placeholder | | 61 | | placeholder | String | '' | time input's placeholder | |
62 | | showHour | Boolean | whether show hour | | | 62 | | showHour | Boolean | true | whether show hour | | |
63 | | showMinute | Boolean | whether show minute | | | 63 | | showMinute | Boolean | true | whether show minute | | |
64 | | showSecond | Boolean | whether show second | | | 64 | | showSecond | Boolean | true | whether show second | | |
65 | | format | String | | | | 65 | | format | String | - | | | |
66 | | disabledHours | Function | disabled hour options | | | 66 | | disabledHours | Function | - | disabled hour options | | |
67 | | disabledMinutes | Function | disabled minute options | | | 67 | | disabledMinutes | Function | - | disabled minute options | | |
68 | | disabledSeconds | Function | disabled second options | | | 68 | | disabledSeconds | Function | - | disabled second options | | |
69 | | use12Hours | Boolean | 12 hours display mode | | | 69 | | use12Hours | Boolean | false | 12 hours display mode | |
70 | | hideDisabledOptions | Boolean | whether hide disabled options | | | 70 | | hideDisabledOptions | Boolean | false | whether hide disabled options | | |
71 | | onChange | Function | null | called when select a different value | | 71 | | onChange | Function | null | called when select a different value | |
72 | | addon | Function | nothing | 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()`.| | 72 | | 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()`.| |
73 | | placement | String | bottomLeft | one of ['left','right','top','bottom', 'topLeft', 'topRight', 'bottomLeft', 'bottomRight'] | | 73 | | placement | String | bottomLeft | one of ['left','right','top','bottom', 'topLeft', 'topRight', 'bottomLeft', 'bottomRight'] | |
74 | | transitionName | String | '' | | | 74 | | transitionName | String | '' | | |
75 | | name | String | - | sets the name of the generated input | | 75 | | name | String | - | sets the name of the generated input | |
76 | | onOpen | Function({ open }) | | when TimePicker panel is opened | | 76 | | onOpen | Function({ open }) | | when TimePicker panel is opened | |
77 | | onClose | Function({ open }) | | when TimePicker panel is opened | | 77 | | onClose | Function({ open }) | | when TimePicker panel is opened | |