From 47806dc1f2f0ef022ee1cbfe932c8c439d0dfeee Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Wed, 27 Jan 2016 10:51:29 -0600 Subject: [PATCH] chore(changelog): updates for alpha.53 --- CHANGELOG.md | 189 +++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 183 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a14d92213..5993f18964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,182 @@ + +# 2.0.0-alpha.53 (2016-01-27) + +### Features + +* Normalize how `ion-item` and inner inputs/avatars/icons/etc are written +* Only one type of `ion-item`, rather than every input also having a similar structure +* Multiple inputs can be placed inside of an `ion-item` +* Allow avatars/thumbnails/icons next to checkbox/radio/toggle/select/input +* Inputs can be stand-alone components, and not required within an `ion-item` + + +### Breaking Changes + +* Inputs are now placed inside of `ion-item` +* Inputs do not come with their own label +* `ion-item-content` has been replaced with `ion-label` +* Native HTML `` and ` + +``` + +Now: + +``` + + Email + + + + + Comments + + + +``` + + +##### Checkbox Refactor + +Was: + +``` + + My Checkbox + +``` + +Now: + +``` + + My Checkbox + + +``` + + +##### Radio Button Refactor + +Was: + +``` + + + + Auto Manufacturers + + + + Cord + + + + Duesenberg + + + + Hudson + + + +``` + +Now: + +``` + + + + Auto Manufacturers + + + + Cord + + + + + Duesenberg + + + + + Hudson + + + + +``` + + +##### Select Refactor + +Was: + +``` + + Gender + Female + Male + +``` + +Now: + +``` + + Gender + + Female + Male + + +``` + + +##### Toggle Refactor + +Was: + +``` + + My Toggle + +``` + +Now: + +``` + + My Toggle + + +``` + + + +# 2.0.0-alpha.52 (2016-01-25) + +- Bug fixes + + -# 2.0.0-alpha.51 (2016-1-21) +# 2.0.0-alpha.51 (2016-01-21) ### Breaking Changes @@ -26,7 +203,7 @@ ] }, ``` - + * Modify the fonts `src` in your `ionic.config.js` file: ``` @@ -37,7 +214,7 @@ ``` -# 2.0.0-alpha.48 (2016-1-7) +# 2.0.0-alpha.48 (2016-01-07) ### Breaking Changes @@ -60,7 +237,7 @@ Now: -# 2.0.0-alpha.47 (2016-1-4) +# 2.0.0-alpha.47 (2016-01-04) ### Breaking Changes @@ -397,8 +574,8 @@ class MyPage { * Allows colors to be different per platform * ie: Gray navbars in iOS, blue navbars in MD. Identical HTML/JS * config: `tabbarStyle`, `navbarStyle` has been removed, should now use different Sass color maps instead of setting it in the config -* text-input: class `has-value` has become `input-has-value` -* text-input: class `has-focus` has become `input-focused` +* text-input: class `has-value` has become `input-has-value` +* text-input: class `has-focus` has become `input-focused` * searchbar: class `left-align` has become `searchbar-left-aligned` * searchbar: class `focused` has become `searchbar-focused`