Skip to content

docs(changelog): add missing breaking changes #7585

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
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@

### Breaking Changes

* All "md" prefixes have been removed. See the [deprecation notice in the beta.11 notes for more
information](https://github.com/angular/material2/blob/master/CHANGELOG.md#deprecation-of-md-prefix).
* All cdk re-exports in `@angular/material` have been removed. See the [the beta.10 notes for more
information](https://github.com/angular/material2/blob/master/CHANGELOG.md#breaking-changes-2).
* Previously the `ScrollDispatcher.scrolled` subscription would react both on scroll events and on window resize events. Now it only reacts to scroll events. To react to resize events, subscribe to the `ViewportRuler.change()` stream.
* `UniqueSelectionDispatcher`, `UniqueSelectionDispatcherListener` and `UNIQUE_SELECTION_DISPATCHER_PROVIDER` are no longer
available from @angular/material and instead must be imported from @angular/cdk/collections
Expand Down
2 changes: 1 addition & 1 deletion guides/theming.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ an additional step is required for those components to be affected by the theme'
To do this, you can add the appropriate class to the global overlay container. For the example above,
this would look like:
```ts
import {OverlayContainer} from '@angular/material';
import {OverlayContainer} from '@angular/cdk/overlay';

@NgModule({
// ...
Expand Down