diff --git a/CHANGELOG.md b/CHANGELOG.md index c2e73dc9cddc60..d163086606fba4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,45 @@ +## 0.10.2 +###### _Jul 29, 2015_ + +##### General +- Replaced onMouseOver / onMouseOut with onMouseEnter / onMouseLeave to achieve hover affects. + This prevented extra unnecessary renders from happening. (#1190) +- All svg icons inside the /svg-icons folder now uses the PureRenderMixin. + +##### Icon Builder +- Added tests, build process, file template, and file suffix (#1130, #1127, #1126, #1125, #1139) + +##### Component Fixes / Enhancements +- AppBar - Fixed a styling bug in Safari (#1226) +- Cards can now expand and collapse (#1060) +- DatePicker + - Allow using DatePicker as a controlled input (#1170) + - Added valueLink support and openDialog() (#1213) + - Fixed a bug that caused dates to get selected when switching months (#1243) + - Avoid handling keyboard events when calendar is not active (#1245) + - Fixed display glitch on Firefox (#1242, #1248) +- Dialog + - Hitting the ESC key no longer closes the window if modal is set to true (#1187, #1162) + - The onShow event now called after all contents in the dialog have been rendered. (#1198) +- DropDownMenu - Clicking away no longer triggers other click events to happen (#1177, #1174) +- FocusRipples now only render when actually shown. +- IconMenu + - Fixed a bug that caused a scrollable menu to jump after selecting an item. + - Fixed keyboard focus when user hits ESC. +- LeftNav + - Added some Perf improvements (#1184) + - Fixed a bug that caused onNavOpen to sometimes not fire (#1225) + - Added disableSwipeToOpen prop (#1279) +- Menu + - Performance improvements when opening a menu. + - Added animated prop. +- RaisedButton - Fixed a bug that caused rounded corners not to round (#1048) +- SelectField - Now passes the index and payload back in the onChange callback (#1193, #1194) +- Slider - Fixed a bug that caused value to not be set correctly (#1251) +- Snackbar - Extra props are now being passed down to the root (#1260) +- SvgIcon - Added code to remove some unnecessary renders on hover. +- Toolbar - Fixed display glitch on Firefox (#839, #1248) + ## 0.10.1 ###### _Jul 13, 2015_ diff --git a/docs/package.json b/docs/package.json index a3165c0e882dcd..b2edb12aea94f1 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "material-ui-docs", - "version": "0.10.1", + "version": "0.10.2", "description": "Documentation site for material-ui", "repository": { "type": "git", diff --git a/package.json b/package.json index e8adf7364d804b..7c41b35510f38b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "material-ui", "author": "Call-em-all Engineering Team", - "version": "0.10.1", + "version": "0.10.2", "description": "Material Design UI components built with React", "main": "./lib", "scripts": {