docs(changelog): add chip refactor (#16366)

closes #16352
This commit is contained in:
Cam Wiegert
2018-11-18 17:26:50 -05:00
committed by GitHub
parent 52cea5a404
commit 9b23c9082c

View File

@@ -20,6 +20,28 @@ Segment Button now requires the text to be wrapped in an `ion-label` element for
<ion-label>Item One</ion-label>
</ion-segment-button>
```
#### Simplifying Chip
Because of updates to the Material Design spec, `ion-chip` no longer requires a chip-specific version of `ion-icon` or `ion-button`. Chips themselves should be interactive and don't require a nested button.
*Old usage:*
```html
<ion-chip>
<ion-chip-icon name="checkmark"><ion-chip-button>
</ion-chip>
```
*New usage:*
```html
<ion-chip>
<ion-icon name="checkmark"></ion-icon>
</ion-chip>
```
### Bug Fixes
* **alert:** use tint for md button active background ([#16278](https://github.com/ionic-team/ionic/issues/16278)) ([0fec722](https://github.com/ionic-team/ionic/commit/0fec722))