Material Ui Datetimepicker Versions Save

[UNMAINTAINED] Wrapper for Material UI Date and Time picker components

v1.0.7

6 years ago

Breaking changes

N/A

Fixes

  • Fixed react warning: switching input element from uncontrolled to controlled.

v1.0.6

6 years ago

Thanks to all contributors, but this project is really low-supporting. So if you want to become a maintainer of this project, please contact current owner. Thanks

Features

  • Do not render IconButton if clearIcon is null.
  • Allow for placeholder for "falsey" value prop
  • Remove all peerdeps from bundle (New size - 3.93kb gzipped)

v1.0.3

6 years ago

Here are some highlights ✨

Move to the controlled state

From now this package would accept 1 prop to both inputs => value. It can be updated from outside, so from now we support controlled state.

<DateTimePicker
+ value={this.state.selectedDate} // can be null to display current day or nothing as in uncontrolled mode
- initialDate={this.state.selectedDate}
- defaultTime={this.state.selectedDate}
/>

v1.0.2

6 years ago

There are some highlights :sparkles:

Component fixes / Enhancements

  • Fix not applying disable property for clear button @ahmedtehseen

1.0.1

6 years ago

Oct 15, 2017

This release is actually bug fixing, but its the first one in our github release history 🥇

Big thanks to the 2 contributors who made this release possible. :wink: There are some highlights. :relaxed:

Features

  • Add ability to override inline styles of textField and IconButton via props

Component Fixes / Enhancements

  • Fix prop types check errors @ahmedtehseen @d9767192
  • Fix fullWidth issue for textField @d9767192
  • Fix invalid prop defaultTime passing to TimePicker component @d9767192