docs: Update placeholder type for Rangepicker (#24853)

* Update placeholder possibilities for Rangepicker

A rangepicker needs two placeholder fields instead of one. It is an array of two strings.
This commit is contained in:
eenlars 2020-06-09 06:51:34 +02:00 committed by GitHub
parent d6d3de8a1b
commit 7f48f7336c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ import moment from 'moment';
| inputReadOnly | Set the `readonly` attribute of the input tag (avoids virtual keyboard on touch devices) | boolean | false | |
| minuteStep | interval between minutes in picker | number | 1 | |
| open | whether to popup panel | boolean | false | |
| placeholder | display when there's no value | string | "Select a time" | |
| placeholder | display when there's no value | string \| [string, string] | "Select a time" | |
| popupClassName | className of panel | string | - | |
| popupStyle | style of panel | CSSProperties | - | |
| secondStep | interval between seconds in picker | number | 1 | |