You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This version marks the release of @angular/cdk (component dev kit)! This package contains
general building blocks for UI components decoupled from the visuals of Material Design. In the
initial release, code from Angular Material's core/ have been moved for a11y/, bidi/, coercion/, observe-content/, platform/, portal/. The @angular/material package now
re-exports these symbols, marked as deprecated. The re-exports will be removed in a subsequent
release.
Initial version of data-table component. There is both a <cdk-table> (the core) and the <md-table> (with Material Design styles). See the documentation on material.angular.io for more
information.
Initial version of <md-paginator> and <md-sort-header> components, which can be used either
with <md-table> or any other table.
Both @angular/material and @angular/cdk are now strict null compliant.
Breaking changes
@angular/material now depends on @angular/cdk as a peer dependency.
Some types have expanded to include | null or | undefined for strict null compatibility. If
your application uses strict null checks, you may have to update the types in your app to match up
with the more accurate types coming from Angular Material.
Angular Material no longer adds RxJS operators to the prototype of Observable. If your app
depended on these operators being added by Angular Material, you will need to import them
explicitly.
Bug Fixes
autocomplete: allow number zero as value (#5364) (9137fd9), closes #5363
autocomplete: don't scroll panel when option is visible (#4905) (d3af57d)
autocomplete: not closing when tapping away on mobile (#5260) (1dcaca7)
autocomplete: reopening when clicking an option in IE (#5172) (fe31210), closes #5165
autosize: resize when form value changes. Fixes #4657 (#5315) (8c9c11a)