Skip to content

Commit 57c7a95

Browse files
author
Hai Nguyen
committed
v0.6.0 Release
1 parent a7b6cf9 commit 57c7a95

File tree

2 files changed

+51
-3
lines changed

2 files changed

+51
-3
lines changed

CHANGELOG.md

+50-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
1+
## 0.6.0
2+
###### _Jan. 26, 2105_
3+
4+
##### General
5+
- Fixed dependencies to prevent multiple versions of React getting loaded on the docs site (#194)
6+
7+
##### Deprecated
8+
- Input - Please use TextField instead.
9+
10+
##### New
11+
- Radio Button Group
12+
- This component was created to make it easier to work with groups of radio buttons (#151)
13+
- Tabs
14+
- Added new Tabs component.
15+
- TextField
16+
- This component replaces Input. It extends the native input element and will support all of
17+
its props and events. It also supports valueLink and can be controlled or uncontrolled.
18+
- MultiLine text fields now grow and shrink as the user inputs data.
19+
- Allow for both floating labels and hint text in the same input.
20+
- Floating labels now generate a label element.
21+
22+
##### Fixes
23+
- AppBar
24+
- Added icon prop. (#250)
25+
- Checkbox
26+
- Checkbox styling now matches material design specs
27+
- This component has been revamped and can now be controlled or uncontrolled.
28+
- Date Picker
29+
- Fixed a bug with getDate() (#196)
30+
- Added onChange prop (#198)
31+
- Dialog
32+
- Actions can now be passed in as an array of react elements. (#241)
33+
- Menu Item
34+
- Menu Items now respond to onTouchTap
35+
- Radio Button
36+
- Checkbox styling now matches material design specs
37+
- This component has been revamped and can now be controlled or uncontrolled.
38+
- Slider
39+
- Fixed a css bug with slider handles (#225)
40+
- Added onDragStart and onDragStop props (#217)
41+
- Snackbar
42+
- Fixed Ghost hidden snackbar (#235)
43+
- Toggle
44+
- This component now extends a native input checkbox.
45+
- It can now be controlled or uncontrolled.
46+
- Toolbar
47+
- Fixed FlatButton positioning inside toolbar (#224)
48+
149
## 0.5.0
250
###### _Jan. 3, 2105_
351

@@ -12,7 +60,7 @@
1260
- Spacebar key up triggers button clicks. (#155)
1361
- Slider
1462
- Changed slider cursor (#187)
15-
- Snackbar (New)
63+
- Snackbar **(New)**
1664
- Added a snackbar component.
1765

1866
## 0.4.1
@@ -27,7 +75,7 @@
2775
- Buttons
2876
- Added secondary button colors
2977
- Removed underline styles on link buttons (#172)
30-
- Date Picker (New)
78+
- Date Picker **(New)**
3179
- Added new date picker component.
3280
- Dialog version is implemented, inline version to follow in upcoming release.
3381
- Has both portrait and landscape modes.

package.json

+1-1
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.5.0",
4+
"version": "0.6.0",
55
"description": "Material Design UI components built with React",
66
"main": "./src/index",
77
"scripts": {

0 commit comments

Comments
 (0)