Skip to content

Commit afadf19

Browse files
authored
docs(nav,route-outlet): use animation builder (#25451)
1 parent a8fb570 commit afadf19

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

core/src/components.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1619,7 +1619,7 @@ export namespace Components {
16191619
*/
16201620
"animated": boolean;
16211621
/**
1622-
* 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.
1622+
* 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.
16231623
*/
16241624
"animation"?: AnimationBuilder;
16251625
/**
@@ -2280,7 +2280,7 @@ export namespace Components {
22802280
*/
22812281
"animated": boolean;
22822282
/**
2283-
* This property allows to create custom transition using AnimateBuilder functions.
2283+
* This property allows to create custom transition using AnimationBuilder functions.
22842284
*/
22852285
"animation"?: AnimationBuilder;
22862286
"commit": (enteringEl: HTMLElement, leavingEl: HTMLElement | undefined, opts?: RouterOutletOptions | undefined) => Promise<boolean>;
@@ -5547,7 +5547,7 @@ declare namespace LocalJSX {
55475547
*/
55485548
"animated"?: boolean;
55495549
/**
5550-
* 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.
5550+
* 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.
55515551
*/
55525552
"animation"?: AnimationBuilder;
55535553
"delegate"?: FrameworkDelegate;
@@ -6164,7 +6164,7 @@ declare namespace LocalJSX {
61646164
*/
61656165
"animated"?: boolean;
61666166
/**
6167-
* This property allows to create custom transition using AnimateBuilder functions.
6167+
* This property allows to create custom transition using AnimationBuilder functions.
61686168
*/
61696169
"animation"?: AnimationBuilder;
61706170
"delegate"?: FrameworkDelegate;

core/src/components/nav/nav.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export class Nav implements NavOutlet {
6767

6868
/**
6969
* By default `ion-nav` animates transition between pages based in the mode (ios or material design).
70-
* However, this property allows to create custom transition using `AnimateBuilder` functions.
70+
* However, this property allows to create custom transition using `AnimationBuilder` functions.
7171
*/
7272
@Prop() animation?: AnimationBuilder;
7373

core/src/components/router-outlet/route-outlet.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class RouterOutlet implements ComponentInterface, NavOutlet {
5151
*/
5252
@Prop() animated = true;
5353

54-
/** This property allows to create custom transition using AnimateBuilder functions. */
54+
/** This property allows to create custom transition using AnimationBuilder functions. */
5555
@Prop() animation?: AnimationBuilder;
5656

5757
/** @internal */

0 commit comments

Comments
 (0)