v1.0.0-rc.3
First of all thanks to all contributors :)
Here are release highlights ✨
🎉 Check out our new documentation website
Breaking changes
Utils class have been redone from static class to the instance-based, so now override utils via extends
.
import DateFnsUtils from 'material-ui-pickers/utils/date-fns-utils';
export class CustomUtils extends DateFnsUtils {
...
}
Features
- Localization - checkout out documentation for date-fns and moment
- Disabling month navigation buttons depends on disabled days in the next/prev month #236
- Add
onOpen
andonClose
callbacks #234 - Add ability to get the ref of rendered picker wrapper with
pickerRef
prop #265