DateTimePicker
Component to comfortably enter a date time value. The DateTimePicker component
automatically uses the user's settings for the locale and timezone and formats
the date and time accordingly.
DateTimePickerProps
Signature:
export declare type DateTimeerProps = < | | , (value: | | ) => , > & & & & DateTimeerTypeProps & & {
/**
* Earliest allowed ISOString and timestamp for validation.
*/
min?: ;
/**
* Latest allowed ISOString for validation.
*/
max?: ;
/**
* The placeholder that's shown in the input field if the content is empty.
*/
placeholder?: ;
/**
* Internal: associates this control with a `_Form` rendered outside its
* React subtree via the native `form` attribute. Unstable.
* @internal
*/
_form?: ;
/**
* Internal: routes this control's native/Strato validation messages to the
* field outlet (default), the enclosing form's outlet, or both. Unstable.
* @internal
*/
_messageTarget?: | [];
};