Skip to content

docs(material/chips): review migration guide #25826

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions guides/v15-mdc-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,6 @@ DOM and CSS of the components, you may need to tweak some of your application's
* After toggling a checkbox with the mouse, the ripple will remain visible instead of animating out.

### Chips
<!-- TODO(zarend): review -->

* The chips component has been split into multiple variants corresponding with more appropriate
interaction patterns for accessibility. The original `mat-chip-list` used `role="listbox"`, but
Expand All @@ -286,8 +285,10 @@ DOM and CSS of the components, you may need to tweak some of your application's
accessibility pattern with the chips visuals.

* The migration tool always changes the legacy `<mat-chip-list>` to `<mat-chip-listbox>` to minimize
differences before and after. You should separately consider changing to `<mat-chip-grid>` on a
case-by-case basis.
differences before and after. You should separately consider changing to `<mat-chip-grid>` or
`<mat-chip-set>` on a case-by-case basis. See [Chips Interaction Patterns](
/components/chips/overview#interaction-patterns) for more guidence on
choosing the appropriate component for your use case.

### Dialog

Expand Down