Browse Source

docs: fix typo

pull/5955/head
Benjy Cui 8 years ago
parent
commit
f434772466
  1. 2
      components/time-picker/index.en-US.md
  2. 2
      components/time-picker/index.tsx

2
components/time-picker/index.en-US.md

@ -26,7 +26,7 @@ import moment from 'moment';
| defaultValue | to set default time | [moment](http://momentjs.com/) | - |
| value | to set time | [moment](http://momentjs.com/) | - |
| open | whether to popup panel | boolean | false |
| onOpenChange | a callback function which will be called while panel opening/closing | (status: boolean): void | 无 |
| onOpenChange | a callback function which will be called while panel opening/closing | (open: boolean): void | - |
| placeholder | display when there's no value | string | "Select a time" |
| onChange | a callback function, can be executed when the selected time is changing | function(time: moment, timeString: string): void | - |
| format | to set the time format | string | "HH:mm:ss" |

2
components/time-picker/index.tsx

@ -14,7 +14,7 @@ export interface TimePickerProps {
open?: boolean;
format?: string;
onChange?: (time: moment.Moment, timeString: string) => void;
onOpenChange?: (status: boolean) => void;
onOpenChange?: (open: boolean) => void;
disabled?: boolean;
placeholder?: string;
hideDisabledOptions?: boolean;

Loading…
Cancel
Save