docs: declare provideAnimationsAsync() function stable (#55871)

This commit removes the `@developerPreview` label from the `provideAnimationsAsync()` function, effectively declaring it stable.

PR Close #55871
This commit is contained in:
Andrew Kushnir 2024-05-18 18:17:54 -07:00 committed by Dylan Hunn
parent 4f4f41016e
commit 77eb4ca061

View file

@ -25,7 +25,7 @@ import {AsyncAnimationRendererFactory} from './async_animation_renderer';
* to learn more about animations in Angular.
*
* When you use this function instead of the eager `provideAnimations()`, animations won't be
* renderered until the renderer is loaded.
* rendered until the renderer is loaded.
*
* @usageNotes
*
@ -45,7 +45,6 @@ import {AsyncAnimationRendererFactory} from './async_animation_renderer';
* @param type pass `'noop'` as argument to disable animations.
*
* @publicApi
* @developerPreview
*/
export function provideAnimationsAsync(
type: 'animations' | 'noop' = 'animations',