The DateInput component of the DatePicker widget has been causing our team a few headaches all centering around the format placeholder used on the input. The issues center around:
- Integration with our form validation framework is difficult as the widget treats all invalid dates as null, including an "empty" date field.
- The format placeholder makes it impossible to copy+paste a date into the DateInput, which is something our users frequently try to do.
The jQueryUI version of the DatePicker component did not try to do the format placeholder functionality. Is there a way to disable this functionality in the react version of the DatePicker and have the Datenput function as a plain text input when typing?