From afadf1940b1bb541a6234d022777c0481f7717a6 Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Mon, 13 Jun 2022 10:29:29 -0400 Subject: [PATCH] docs(nav,route-outlet): use animation builder (#25451) --- core/src/components.d.ts | 8 ++++---- core/src/components/nav/nav.tsx | 2 +- core/src/components/router-outlet/route-outlet.tsx | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/src/components.d.ts b/core/src/components.d.ts index b4e20ad6db..0f5a90487d 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -1619,7 +1619,7 @@ export namespace Components { */ "animated": boolean; /** - * By default `ion-nav` animates transition between pages based in the mode (ios or material design). However, this property allows to create custom transition using `AnimateBuilder` functions. + * By default `ion-nav` animates transition between pages based in the mode (ios or material design). However, this property allows to create custom transition using `AnimationBuilder` functions. */ "animation"?: AnimationBuilder; /** @@ -2280,7 +2280,7 @@ export namespace Components { */ "animated": boolean; /** - * This property allows to create custom transition using AnimateBuilder functions. + * This property allows to create custom transition using AnimationBuilder functions. */ "animation"?: AnimationBuilder; "commit": (enteringEl: HTMLElement, leavingEl: HTMLElement | undefined, opts?: RouterOutletOptions | undefined) => Promise; @@ -5547,7 +5547,7 @@ declare namespace LocalJSX { */ "animated"?: boolean; /** - * By default `ion-nav` animates transition between pages based in the mode (ios or material design). However, this property allows to create custom transition using `AnimateBuilder` functions. + * By default `ion-nav` animates transition between pages based in the mode (ios or material design). However, this property allows to create custom transition using `AnimationBuilder` functions. */ "animation"?: AnimationBuilder; "delegate"?: FrameworkDelegate; @@ -6164,7 +6164,7 @@ declare namespace LocalJSX { */ "animated"?: boolean; /** - * This property allows to create custom transition using AnimateBuilder functions. + * This property allows to create custom transition using AnimationBuilder functions. */ "animation"?: AnimationBuilder; "delegate"?: FrameworkDelegate; diff --git a/core/src/components/nav/nav.tsx b/core/src/components/nav/nav.tsx index 5e5ce2c604..bf90a19e35 100644 --- a/core/src/components/nav/nav.tsx +++ b/core/src/components/nav/nav.tsx @@ -67,7 +67,7 @@ export class Nav implements NavOutlet { /** * By default `ion-nav` animates transition between pages based in the mode (ios or material design). - * However, this property allows to create custom transition using `AnimateBuilder` functions. + * However, this property allows to create custom transition using `AnimationBuilder` functions. */ @Prop() animation?: AnimationBuilder; diff --git a/core/src/components/router-outlet/route-outlet.tsx b/core/src/components/router-outlet/route-outlet.tsx index 51511a870b..c1ba068bed 100644 --- a/core/src/components/router-outlet/route-outlet.tsx +++ b/core/src/components/router-outlet/route-outlet.tsx @@ -51,7 +51,7 @@ export class RouterOutlet implements ComponentInterface, NavOutlet { */ @Prop() animated = true; - /** This property allows to create custom transition using AnimateBuilder functions. */ + /** This property allows to create custom transition using AnimationBuilder functions. */ @Prop() animation?: AnimationBuilder; /** @internal */