-
Notifications
You must be signed in to change notification settings - Fork 6.8k
refactor(select): remove deprecated APIs for 9.0.0 #17230
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
refactor(select): remove deprecated APIs for 9.0.0 #17230
Conversation
Can you add a breaking changes message to your commit? |
BREAKING CHANGES: * `MatSelect.focused` is now a readonly property. * `_liveAnnouncer` constructor parameter is now required. * `transformPanel` constant has been removed. Use `matSelectAnimations.transformPanel`. * `matSelectAnimations.fadeInContent` has been removed.
35745df
to
5e8d301
Compare
Done. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Should there be a schematic for this one?
|
I'm not sure whether we have the ability to write a schematic that transforms a reference to a constant to a property access expression. |
We totally can (but it will involve some work with managing imports etc.). Most of the general cases are handled by the |
That's what I meant: it's doable but we don't really have it right now. IMO this isn't really worth the effort since it's not a symbol that would be used much anyway. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
BREAKING CHANGES:
MatSelect.focused
is now a readonly property._liveAnnouncer
constructor parameter is now required.transformPanel
constant has been removed. UsematSelectAnimations.transformPanel
.matSelectAnimations.fadeInContent
has been removed.