From 9b23c9082cdbd3f758194a3f4ccbe61e250203b0 Mon Sep 17 00:00:00 2001 From: Cam Wiegert Date: Sun, 18 Nov 2018 17:26:50 -0500 Subject: [PATCH] docs(changelog): add chip refactor (#16366) closes #16352 --- CHANGELOG.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d9d525088..7a4b6908fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,28 @@ Segment Button now requires the text to be wrapped in an `ion-label` element for Item One ``` + +#### 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 + + + +``` + +*New usage:* + +```html + + + +``` + + ### 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))