Skip to content

Releases: dmtrKovalenko/material-ui-datetimepicker

v1.0.7

26 Feb 14:51
Compare
Choose a tag to compare

Breaking changes

N/A

Fixes

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

v1.0.6

23 Jan 11:37
Compare
Choose a tag to compare

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

21 Nov 12:00
Compare
Choose a tag to compare

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

29 Oct 17:27
Compare
Choose a tag to compare

There are some highlights ✨

Component fixes / Enhancements

  • Fix not applying disable property for clear button @ahmedtehseen

v1.0.1

15 Oct 13:40
Compare
Choose a tag to compare

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. 😉
There are some highlights. ☺️

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