Skip to content

Commit 867e87d

Browse files
committed
v0.9.0 Release
1 parent 26081eb commit 867e87d

File tree

2 files changed

+37
-4
lines changed

2 files changed

+37
-4
lines changed

CHANGELOG.md

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
## 0.9.0
2+
###### _Jun 9, 2015_
3+
4+
##### Breaking
5+
We've cleaned up some of our click/tap events. (#771) Upgrade should be straight forward, please see below:
6+
- DropDownIcon - closeOnMenuItemClick has been replaced with closeOnMenuItemTouchTap.
7+
- Menu - onItemClick has been removed; use onItemTap instead.
8+
- MenuItem - onClick event has been removed; use onTouchTap instead.
9+
10+
##### General
11+
- ClickAwayable is now bound to onTouchTap instead of onClick (#766)
12+
13+
##### Components
14+
- AppBar will now render its children (#725)
15+
- DatePicker will now properly handle defaultDate prop changes (#722)
16+
- Dialog actions now respond to onTouchTap (#752)
17+
- LeftNav
18+
- Fixed line height style bug (#742)
19+
- Fixed a bug that caused the LeftNav to immediately close on iOS full screen mode (#751, #366)
20+
- Menu
21+
- Will now adjust its height when props change (#544, #203)
22+
- MenuItemStyle prop is now passed down to nested menus (#802)
23+
- RadioButtonGroup can now have its styles overridden (#768)
24+
- RaisedButtons - Fixed a bug that caused incorrect transitions (#731, #702)
25+
- SvgIcon - ViewBox can now be passed in as a prop (#747)
26+
- Tabs - Components inside tabs now keep their state when switching between tabs (#700, #450)
27+
- TextField
28+
- Multi-line text fields can now be initialized with a certain number of rows (#693)
29+
- Fixed style bug that caused width to not be set on disabled text-fields
30+
- Fixed style bug that caused focus underline to be black
31+
- Fixed style problem that caused text to jump on multi-line inputs
32+
- Theme (New)
33+
- This is a high order component that can be used to set your theme overrides (#797)
34+
135
## 0.8.0
236
###### _May 24, 2015_
337

@@ -34,7 +68,7 @@
3468
- An example would be: `var SvgIcon = require('material-ui/lib/svg-icon);`
3569
- The `/lib` folder in Material-UI contains the file structure needed when referencing individual components.
3670

37-
###### Components
71+
##### Components
3872
- Date Picker
3973
- Added AutoOK Prop (#658)
4074
- Added ability to specify min and max dates (#658)
@@ -44,15 +78,14 @@
4478
- Linear and Circular Progress Indicators - NEW (#632)
4579
- TimePicker - NEW (#589)
4680

47-
4881
## 0.7.5
4982
###### _Apr. 27, 2015_
5083

5184
###### General
5285
- Removed deprecation warnings by replacing `this.getDOMNode()` with `React.findDOMNode()` (#558)
5386
- Replaced `process.NODE_ENV` with `process.env.NODE_ENV` (#573)
5487

55-
###### Components
88+
##### Components
5689
- DropDownMenu
5790
- Fixed `props is not defined` error when `onChange` is invoked (#556)
5891
- Floating Action Button

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "material-ui",
33
"author": "Call-em-all Engineering Team",
4-
"version": "0.8.0",
4+
"version": "0.9.0",
55
"description": "Material Design UI components built with React",
66
"main": "./lib",
77
"scripts": {

0 commit comments

Comments
 (0)