-
Notifications
You must be signed in to change notification settings - Fork 26.2k
fix(animations): only use the WA-polyfill alongside AnimationBuilder #22143
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 2321571 at https://pr22143-2321571.ngbuilds.io/. |
2321571
to
90f2fc6
Compare
You can preview 90f2fc6 at https://pr22143-90f2fc6.ngbuilds.io/. |
566e46f
to
8a7f92d
Compare
You can preview edade95 at https://pr22143-edade95.ngbuilds.io/. |
8a7f92d
to
32f98b6
Compare
You can preview 32f98b6 at https://pr22143-32f98b6.ngbuilds.io/. |
32f98b6
to
1f2f9ac
Compare
You can preview 1f2f9ac at https://pr22143-1f2f9ac.ngbuilds.io/. |
1f2f9ac
to
f71d4a4
Compare
You can preview f71d4a4 at https://pr22143-f71d4a4.ngbuilds.io/. |
bbf91b0
to
5309de2
Compare
You can preview 5309de2 at https://pr22143-5309de2.ngbuilds.io/. |
5309de2
to
f6342c0
Compare
You can preview f6342c0 at https://pr22143-f6342c0.ngbuilds.io/. |
f6342c0
to
7ce0982
Compare
You can preview 7ce0982 at https://pr22143-7ce0982.ngbuilds.io/. |
1b0917f
to
13e987a
Compare
You can preview e3991ad at https://pr22143-e3991ad.ngbuilds.io/. |
You can preview 1b0917f at https://pr22143-1b0917f.ngbuilds.io/. |
You can preview 13e987a at https://pr22143-13e987a.ngbuilds.io/. |
…ngular#22143) This patch removes the need to include the Web Animations API Polyfill (web-animations-js) as a dependency. Angular will now fallback to using CSS Keyframes in the event that `element.animate` is no longer supported by the browser. In the event that an application does use `AnimationBuilder` then the web-animations-js polyfill is required to enable programmatic, position-based access to an animation. Closes angular#17496 PR Close angular#22143
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 need to include the Web Animations API Polyfill
(web-animations-js) as a dependency. Angular will now fallback to using
CSS Keyframes in the event that
element.animate
is no longer supportedby the browser.
In the event that an application does use
AnimationBuilder
then theweb-animations-js polyfill is required to enable programmatic,
position-based access to an animation.
Closes #17496