From 77eb4ca0610c4129938d0dcef0b468ef40c679a3 Mon Sep 17 00:00:00 2001 From: Andrew Kushnir Date: Sat, 18 May 2024 18:17:54 -0700 Subject: [PATCH] docs: declare `provideAnimationsAsync()` function stable (#55871) This commit removes the `@developerPreview` label from the `provideAnimationsAsync()` function, effectively declaring it stable. PR Close #55871 --- packages/platform-browser/animations/async/src/providers.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/platform-browser/animations/async/src/providers.ts b/packages/platform-browser/animations/async/src/providers.ts index 34a1b936b21..78f85c765e6 100644 --- a/packages/platform-browser/animations/async/src/providers.ts +++ b/packages/platform-browser/animations/async/src/providers.ts @@ -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',