-
Notifications
You must be signed in to change notification settings - Fork 26.2k
fix(core): remove core animation import symbols #22692
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
Conversation
You can preview 055ed1a at https://pr22692-055ed1a.ngbuilds.io/. |
055ed1a
to
d2747b3
Compare
You can preview d2747b3 at https://pr22692-d2747b3.ngbuilds.io/. |
d2747b3
to
70ac53d
Compare
You can preview 70ac53d at https://pr22692-70ac53d.ngbuilds.io/. |
styles: AnimationStyleMetadata | AnimationKeyframesSequenceMetadata | null; | ||
timings: string | number | AnimateTimings; | ||
} | ||
|
||
/** @deprecated */ | ||
export declare type AnimationEntryMetadata = any; |
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.
Delete these as well. They are coming from core.ts
70ac53d
to
48781df
Compare
You can preview 48781df at https://pr22692-48781df.ngbuilds.io/. |
Hi @matsko! This PR has merge conflicts due to recent upstream merges. |
48781df
to
80d6851
Compare
This patch removes the deprecated support for animation symbol imports from @angular/core. BREAKING CHANGE: it is no longer possible to import animation-related functions from @angular/core. All animation symbols must now be imported from @angular/animations.
80d6851
to
4ed71c4
Compare
You can preview 80d6851 at https://pr22692-80d6851.ngbuilds.io/. |
You can preview 4ed71c4 at https://pr22692-4ed71c4.ngbuilds.io/. |
This patch removes the deprecated support for animation symbol imports from @angular/core. BREAKING CHANGE: it is no longer possible to import animation-related functions from @angular/core. All animation symbols must now be imported from @angular/animations. PR Close angular#22692
The `packages/core/src/animation/dsl.ts` symlink ws removed in angular#22692, so `create-/remove-symlinks.sh` scripts for Windows should not try to "fix" it.
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. |
This patch removes the deprecated support for animation
symbol imports from @angular/core.
BREAKING CHANGE: it is no longer possible to import
animation-related functions from @angular/core. All
animation symbols must now be imported from @angular/animations.