react-native-reanimated 3.6.2 → 3.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/module/createAnimatedComponent/commonTypes.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Bounce.js +10 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Bounce.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Fade.js +10 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Fade.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Flip.js +12 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Flip.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Lightspeed.js +4 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Lightspeed.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Pinwheel.js +2 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Pinwheel.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Roll.js +4 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Roll.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Rotate.js +8 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Rotate.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Slide.js +8 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Slide.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Stretch.js +4 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Stretch.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Zoom.js +16 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Zoom.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/web/animationsManager.js +1 -1
- package/lib/module/reanimated2/layoutReanimation/web/animationsManager.js.map +1 -1
- package/lib/module/reanimated2/platform-specific/jsVersion.js +1 -1
- package/lib/module/reanimated2/platform-specific/jsVersion.js.map +1 -1
- package/lib/typescript/createAnimatedComponent/commonTypes.d.ts +6 -3
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Bounce.d.ts +10 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Fade.d.ts +10 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Flip.d.ts +12 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Lightspeed.d.ts +4 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Pinwheel.d.ts +2 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Roll.d.ts +4 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Rotate.d.ts +8 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Slide.d.ts +8 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Stretch.d.ts +4 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Zoom.d.ts +16 -0
- package/lib/typescript/reanimated2/platform-specific/jsVersion.d.ts +1 -1
- package/package.json +1 -1
- package/src/createAnimatedComponent/commonTypes.ts +16 -6
- package/src/reanimated2/layoutReanimation/defaultAnimations/Bounce.ts +20 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Fade.ts +19 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Flip.ts +24 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Lightspeed.ts +8 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Pinwheel.ts +4 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Roll.ts +8 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Rotate.ts +16 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Slide.ts +16 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Stretch.ts +8 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Zoom.ts +32 -0
- package/src/reanimated2/layoutReanimation/web/animationsManager.ts +10 -2
- package/src/reanimated2/platform-specific/jsVersion.ts +1 -1
|
@@ -9,6 +9,7 @@ import type { EntryExitAnimationFunction, IEntryExitAnimationBuilder } from '../
|
|
|
9
9
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#roll
|
|
10
10
|
*/
|
|
11
11
|
export declare class RollInLeft extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
12
|
+
static presetName: string;
|
|
12
13
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
13
14
|
build: () => EntryExitAnimationFunction;
|
|
14
15
|
}
|
|
@@ -20,6 +21,7 @@ export declare class RollInLeft extends ComplexAnimationBuilder implements IEntr
|
|
|
20
21
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#roll
|
|
21
22
|
*/
|
|
22
23
|
export declare class RollInRight extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
24
|
+
static presetName: string;
|
|
23
25
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
24
26
|
build: () => EntryExitAnimationFunction;
|
|
25
27
|
}
|
|
@@ -31,6 +33,7 @@ export declare class RollInRight extends ComplexAnimationBuilder implements IEnt
|
|
|
31
33
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#roll
|
|
32
34
|
*/
|
|
33
35
|
export declare class RollOutLeft extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
36
|
+
static presetName: string;
|
|
34
37
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
35
38
|
build: () => EntryExitAnimationFunction;
|
|
36
39
|
}
|
|
@@ -42,6 +45,7 @@ export declare class RollOutLeft extends ComplexAnimationBuilder implements IEnt
|
|
|
42
45
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#roll
|
|
43
46
|
*/
|
|
44
47
|
export declare class RollOutRight extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
48
|
+
static presetName: string;
|
|
45
49
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
46
50
|
build: () => EntryExitAnimationFunction;
|
|
47
51
|
}
|
|
@@ -9,6 +9,7 @@ import type { EntryAnimationsValues, ExitAnimationsValues, AnimationConfigFuncti
|
|
|
9
9
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
10
10
|
*/
|
|
11
11
|
export declare class RotateInDownLeft extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
12
|
+
static presetName: string;
|
|
12
13
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
13
14
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
14
15
|
}
|
|
@@ -20,6 +21,7 @@ export declare class RotateInDownLeft extends ComplexAnimationBuilder implements
|
|
|
20
21
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
21
22
|
*/
|
|
22
23
|
export declare class RotateInDownRight extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
24
|
+
static presetName: string;
|
|
23
25
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
24
26
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
25
27
|
}
|
|
@@ -31,6 +33,7 @@ export declare class RotateInDownRight extends ComplexAnimationBuilder implement
|
|
|
31
33
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
32
34
|
*/
|
|
33
35
|
export declare class RotateInUpLeft extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
36
|
+
static presetName: string;
|
|
34
37
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
35
38
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
36
39
|
}
|
|
@@ -42,6 +45,7 @@ export declare class RotateInUpLeft extends ComplexAnimationBuilder implements I
|
|
|
42
45
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
43
46
|
*/
|
|
44
47
|
export declare class RotateInUpRight extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
48
|
+
static presetName: string;
|
|
45
49
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
46
50
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
47
51
|
}
|
|
@@ -53,6 +57,7 @@ export declare class RotateInUpRight extends ComplexAnimationBuilder implements
|
|
|
53
57
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
54
58
|
*/
|
|
55
59
|
export declare class RotateOutDownLeft extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
60
|
+
static presetName: string;
|
|
56
61
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
57
62
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
58
63
|
}
|
|
@@ -64,6 +69,7 @@ export declare class RotateOutDownLeft extends ComplexAnimationBuilder implement
|
|
|
64
69
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
65
70
|
*/
|
|
66
71
|
export declare class RotateOutDownRight extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
72
|
+
static presetName: string;
|
|
67
73
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
68
74
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
69
75
|
}
|
|
@@ -75,6 +81,7 @@ export declare class RotateOutDownRight extends ComplexAnimationBuilder implemen
|
|
|
75
81
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
76
82
|
*/
|
|
77
83
|
export declare class RotateOutUpLeft extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
84
|
+
static presetName: string;
|
|
78
85
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
79
86
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
80
87
|
}
|
|
@@ -86,6 +93,7 @@ export declare class RotateOutUpLeft extends ComplexAnimationBuilder implements
|
|
|
86
93
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
87
94
|
*/
|
|
88
95
|
export declare class RotateOutUpRight extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
96
|
+
static presetName: string;
|
|
89
97
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
90
98
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
91
99
|
}
|
|
@@ -9,6 +9,7 @@ import { ComplexAnimationBuilder } from '../animationBuilder';
|
|
|
9
9
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#slide
|
|
10
10
|
*/
|
|
11
11
|
export declare class SlideInRight extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
12
|
+
static presetName: string;
|
|
12
13
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
13
14
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
14
15
|
}
|
|
@@ -20,6 +21,7 @@ export declare class SlideInRight extends ComplexAnimationBuilder implements IEn
|
|
|
20
21
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#slide
|
|
21
22
|
*/
|
|
22
23
|
export declare class SlideInLeft extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
24
|
+
static presetName: string;
|
|
23
25
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
24
26
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
25
27
|
}
|
|
@@ -31,6 +33,7 @@ export declare class SlideInLeft extends ComplexAnimationBuilder implements IEnt
|
|
|
31
33
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#slide
|
|
32
34
|
*/
|
|
33
35
|
export declare class SlideOutRight extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
36
|
+
static presetName: string;
|
|
34
37
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
35
38
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
36
39
|
}
|
|
@@ -42,6 +45,7 @@ export declare class SlideOutRight extends ComplexAnimationBuilder implements IE
|
|
|
42
45
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#slide
|
|
43
46
|
*/
|
|
44
47
|
export declare class SlideOutLeft extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
48
|
+
static presetName: string;
|
|
45
49
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
46
50
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
47
51
|
}
|
|
@@ -53,6 +57,7 @@ export declare class SlideOutLeft extends ComplexAnimationBuilder implements IEx
|
|
|
53
57
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#slide
|
|
54
58
|
*/
|
|
55
59
|
export declare class SlideInUp extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
60
|
+
static presetName: string;
|
|
56
61
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
57
62
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
58
63
|
}
|
|
@@ -64,6 +69,7 @@ export declare class SlideInUp extends ComplexAnimationBuilder implements IEntry
|
|
|
64
69
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#slide
|
|
65
70
|
*/
|
|
66
71
|
export declare class SlideInDown extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
72
|
+
static presetName: string;
|
|
67
73
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
68
74
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
69
75
|
}
|
|
@@ -75,6 +81,7 @@ export declare class SlideInDown extends ComplexAnimationBuilder implements IEnt
|
|
|
75
81
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#slide
|
|
76
82
|
*/
|
|
77
83
|
export declare class SlideOutUp extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
84
|
+
static presetName: string;
|
|
78
85
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
79
86
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
80
87
|
}
|
|
@@ -86,6 +93,7 @@ export declare class SlideOutUp extends ComplexAnimationBuilder implements IExit
|
|
|
86
93
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#slide
|
|
87
94
|
*/
|
|
88
95
|
export declare class SlideOutDown extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
96
|
+
static presetName: string;
|
|
89
97
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
90
98
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
91
99
|
}
|
|
@@ -9,6 +9,7 @@ import { ComplexAnimationBuilder } from '../animationBuilder';
|
|
|
9
9
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#stretch
|
|
10
10
|
*/
|
|
11
11
|
export declare class StretchInX extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
12
|
+
static presetName: string;
|
|
12
13
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
13
14
|
build: () => EntryExitAnimationFunction;
|
|
14
15
|
}
|
|
@@ -20,6 +21,7 @@ export declare class StretchInX extends ComplexAnimationBuilder implements IEntr
|
|
|
20
21
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#stretch
|
|
21
22
|
*/
|
|
22
23
|
export declare class StretchInY extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
24
|
+
static presetName: string;
|
|
23
25
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
24
26
|
build: () => EntryExitAnimationFunction;
|
|
25
27
|
}
|
|
@@ -31,6 +33,7 @@ export declare class StretchInY extends ComplexAnimationBuilder implements IEntr
|
|
|
31
33
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#stretch
|
|
32
34
|
*/
|
|
33
35
|
export declare class StretchOutX extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
36
|
+
static presetName: string;
|
|
34
37
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
35
38
|
build: () => EntryExitAnimationFunction;
|
|
36
39
|
}
|
|
@@ -42,6 +45,7 @@ export declare class StretchOutX extends ComplexAnimationBuilder implements IEnt
|
|
|
42
45
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#stretch
|
|
43
46
|
*/
|
|
44
47
|
export declare class StretchOutY extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
48
|
+
static presetName: string;
|
|
45
49
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
46
50
|
build: () => EntryExitAnimationFunction;
|
|
47
51
|
}
|
|
@@ -9,6 +9,7 @@ import { ComplexAnimationBuilder } from '../animationBuilder';
|
|
|
9
9
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
10
10
|
*/
|
|
11
11
|
export declare class ZoomIn extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
12
|
+
static presetName: string;
|
|
12
13
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
13
14
|
build: () => EntryExitAnimationFunction;
|
|
14
15
|
}
|
|
@@ -20,6 +21,7 @@ export declare class ZoomIn extends ComplexAnimationBuilder implements IEntryExi
|
|
|
20
21
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
21
22
|
*/
|
|
22
23
|
export declare class ZoomInRotate extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
24
|
+
static presetName: string;
|
|
23
25
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
24
26
|
build: () => EntryExitAnimationFunction;
|
|
25
27
|
}
|
|
@@ -31,6 +33,7 @@ export declare class ZoomInRotate extends ComplexAnimationBuilder implements IEn
|
|
|
31
33
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
32
34
|
*/
|
|
33
35
|
export declare class ZoomInLeft extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
36
|
+
static presetName: string;
|
|
34
37
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
35
38
|
build: () => EntryExitAnimationFunction;
|
|
36
39
|
}
|
|
@@ -42,6 +45,7 @@ export declare class ZoomInLeft extends ComplexAnimationBuilder implements IEntr
|
|
|
42
45
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
43
46
|
*/
|
|
44
47
|
export declare class ZoomInRight extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
48
|
+
static presetName: string;
|
|
45
49
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
46
50
|
build: () => EntryExitAnimationFunction;
|
|
47
51
|
}
|
|
@@ -53,6 +57,7 @@ export declare class ZoomInRight extends ComplexAnimationBuilder implements IEnt
|
|
|
53
57
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
54
58
|
*/
|
|
55
59
|
export declare class ZoomInUp extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
60
|
+
static presetName: string;
|
|
56
61
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
57
62
|
build: () => EntryExitAnimationFunction;
|
|
58
63
|
}
|
|
@@ -64,6 +69,7 @@ export declare class ZoomInUp extends ComplexAnimationBuilder implements IEntryE
|
|
|
64
69
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
65
70
|
*/
|
|
66
71
|
export declare class ZoomInDown extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
72
|
+
static presetName: string;
|
|
67
73
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
68
74
|
build: () => EntryExitAnimationFunction;
|
|
69
75
|
}
|
|
@@ -75,6 +81,7 @@ export declare class ZoomInDown extends ComplexAnimationBuilder implements IEntr
|
|
|
75
81
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
76
82
|
*/
|
|
77
83
|
export declare class ZoomInEasyUp extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
84
|
+
static presetName: string;
|
|
78
85
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
79
86
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
80
87
|
}
|
|
@@ -86,6 +93,7 @@ export declare class ZoomInEasyUp extends ComplexAnimationBuilder implements IEn
|
|
|
86
93
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
87
94
|
*/
|
|
88
95
|
export declare class ZoomInEasyDown extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
96
|
+
static presetName: string;
|
|
89
97
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
90
98
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
91
99
|
}
|
|
@@ -97,6 +105,7 @@ export declare class ZoomInEasyDown extends ComplexAnimationBuilder implements I
|
|
|
97
105
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
98
106
|
*/
|
|
99
107
|
export declare class ZoomOut extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
108
|
+
static presetName: string;
|
|
100
109
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
101
110
|
build: () => EntryExitAnimationFunction;
|
|
102
111
|
}
|
|
@@ -108,6 +117,7 @@ export declare class ZoomOut extends ComplexAnimationBuilder implements IEntryEx
|
|
|
108
117
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
109
118
|
*/
|
|
110
119
|
export declare class ZoomOutRotate extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
120
|
+
static presetName: string;
|
|
111
121
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
112
122
|
build: () => EntryExitAnimationFunction;
|
|
113
123
|
}
|
|
@@ -119,6 +129,7 @@ export declare class ZoomOutRotate extends ComplexAnimationBuilder implements IE
|
|
|
119
129
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
120
130
|
*/
|
|
121
131
|
export declare class ZoomOutLeft extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
132
|
+
static presetName: string;
|
|
122
133
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
123
134
|
build: () => EntryExitAnimationFunction;
|
|
124
135
|
}
|
|
@@ -130,6 +141,7 @@ export declare class ZoomOutLeft extends ComplexAnimationBuilder implements IEnt
|
|
|
130
141
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
131
142
|
*/
|
|
132
143
|
export declare class ZoomOutRight extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
144
|
+
static presetName: string;
|
|
133
145
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
134
146
|
build: () => EntryExitAnimationFunction;
|
|
135
147
|
}
|
|
@@ -141,6 +153,7 @@ export declare class ZoomOutRight extends ComplexAnimationBuilder implements IEn
|
|
|
141
153
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
142
154
|
*/
|
|
143
155
|
export declare class ZoomOutUp extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
156
|
+
static presetName: string;
|
|
144
157
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
145
158
|
build: () => EntryExitAnimationFunction;
|
|
146
159
|
}
|
|
@@ -152,6 +165,7 @@ export declare class ZoomOutUp extends ComplexAnimationBuilder implements IEntry
|
|
|
152
165
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
153
166
|
*/
|
|
154
167
|
export declare class ZoomOutDown extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
168
|
+
static presetName: string;
|
|
155
169
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
156
170
|
build: () => EntryExitAnimationFunction;
|
|
157
171
|
}
|
|
@@ -163,6 +177,7 @@ export declare class ZoomOutDown extends ComplexAnimationBuilder implements IEnt
|
|
|
163
177
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
164
178
|
*/
|
|
165
179
|
export declare class ZoomOutEasyUp extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
180
|
+
static presetName: string;
|
|
166
181
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
167
182
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
168
183
|
}
|
|
@@ -174,6 +189,7 @@ export declare class ZoomOutEasyUp extends ComplexAnimationBuilder implements IE
|
|
|
174
189
|
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#zoom
|
|
175
190
|
*/
|
|
176
191
|
export declare class ZoomOutEasyDown extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
192
|
+
static presetName: string;
|
|
177
193
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
178
194
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
179
195
|
}
|
package/package.json
CHANGED
|
@@ -54,25 +54,35 @@ export interface IJSPropsUpdater {
|
|
|
54
54
|
): void;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
+
export type LayoutAnimationStaticContext = {
|
|
58
|
+
presetName: string;
|
|
59
|
+
};
|
|
60
|
+
|
|
57
61
|
export type AnimatedComponentProps<P extends Record<string, unknown>> = P & {
|
|
58
62
|
forwardedRef?: Ref<Component>;
|
|
59
63
|
style?: NestedArray<StyleProps>;
|
|
60
64
|
animatedProps?: Partial<AnimatedComponentProps<AnimatedProps>>;
|
|
61
65
|
animatedStyle?: StyleProps;
|
|
62
|
-
layout?:
|
|
66
|
+
layout?: (
|
|
63
67
|
| BaseAnimationBuilder
|
|
64
68
|
| ILayoutAnimationBuilder
|
|
65
|
-
| typeof BaseAnimationBuilder
|
|
66
|
-
|
|
69
|
+
| typeof BaseAnimationBuilder
|
|
70
|
+
) &
|
|
71
|
+
LayoutAnimationStaticContext;
|
|
72
|
+
entering?: (
|
|
67
73
|
| BaseAnimationBuilder
|
|
68
74
|
| typeof BaseAnimationBuilder
|
|
69
75
|
| EntryExitAnimationFunction
|
|
70
|
-
| Keyframe
|
|
71
|
-
|
|
76
|
+
| Keyframe
|
|
77
|
+
) &
|
|
78
|
+
LayoutAnimationStaticContext;
|
|
79
|
+
exiting?: (
|
|
72
80
|
| BaseAnimationBuilder
|
|
73
81
|
| typeof BaseAnimationBuilder
|
|
74
82
|
| EntryExitAnimationFunction
|
|
75
|
-
| Keyframe
|
|
83
|
+
| Keyframe
|
|
84
|
+
) &
|
|
85
|
+
LayoutAnimationStaticContext;
|
|
76
86
|
sharedTransitionTag?: string;
|
|
77
87
|
sharedTransitionStyle?: SharedTransition;
|
|
78
88
|
};
|
|
@@ -19,6 +19,8 @@ export class BounceIn
|
|
|
19
19
|
extends ComplexAnimationBuilder
|
|
20
20
|
implements IEntryExitAnimationBuilder
|
|
21
21
|
{
|
|
22
|
+
static presetName = 'BounceIn';
|
|
23
|
+
|
|
22
24
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
23
25
|
this: T
|
|
24
26
|
): InstanceType<T> {
|
|
@@ -79,6 +81,8 @@ export class BounceInDown
|
|
|
79
81
|
extends ComplexAnimationBuilder
|
|
80
82
|
implements IEntryExitAnimationBuilder
|
|
81
83
|
{
|
|
84
|
+
static presetName = 'BounceInDown';
|
|
85
|
+
|
|
82
86
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
83
87
|
this: T
|
|
84
88
|
): InstanceType<T> {
|
|
@@ -143,6 +147,8 @@ export class BounceInUp
|
|
|
143
147
|
extends ComplexAnimationBuilder
|
|
144
148
|
implements IEntryExitAnimationBuilder
|
|
145
149
|
{
|
|
150
|
+
static presetName = 'BounceInUp';
|
|
151
|
+
|
|
146
152
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
147
153
|
this: T
|
|
148
154
|
): InstanceType<T> {
|
|
@@ -203,6 +209,8 @@ export class BounceInLeft
|
|
|
203
209
|
extends ComplexAnimationBuilder
|
|
204
210
|
implements IEntryExitAnimationBuilder
|
|
205
211
|
{
|
|
212
|
+
static presetName = 'BounceInLeft';
|
|
213
|
+
|
|
206
214
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
207
215
|
this: T
|
|
208
216
|
): InstanceType<T> {
|
|
@@ -263,6 +271,8 @@ export class BounceInRight
|
|
|
263
271
|
extends ComplexAnimationBuilder
|
|
264
272
|
implements IEntryExitAnimationBuilder
|
|
265
273
|
{
|
|
274
|
+
static presetName = 'BounceInRight';
|
|
275
|
+
|
|
266
276
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
267
277
|
this: T
|
|
268
278
|
): InstanceType<T> {
|
|
@@ -323,6 +333,8 @@ export class BounceOut
|
|
|
323
333
|
extends ComplexAnimationBuilder
|
|
324
334
|
implements IEntryExitAnimationBuilder
|
|
325
335
|
{
|
|
336
|
+
static presetName = 'BounceOut';
|
|
337
|
+
|
|
326
338
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
327
339
|
this: T
|
|
328
340
|
): InstanceType<T> {
|
|
@@ -383,6 +395,8 @@ export class BounceOutDown
|
|
|
383
395
|
extends ComplexAnimationBuilder
|
|
384
396
|
implements IEntryExitAnimationBuilder
|
|
385
397
|
{
|
|
398
|
+
static presetName = 'BounceOutDown';
|
|
399
|
+
|
|
386
400
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
387
401
|
this: T
|
|
388
402
|
): InstanceType<T> {
|
|
@@ -445,6 +459,8 @@ export class BounceOutUp
|
|
|
445
459
|
extends ComplexAnimationBuilder
|
|
446
460
|
implements IEntryExitAnimationBuilder
|
|
447
461
|
{
|
|
462
|
+
static presetName = 'BounceOutUp';
|
|
463
|
+
|
|
448
464
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
449
465
|
this: T
|
|
450
466
|
): InstanceType<T> {
|
|
@@ -507,6 +523,8 @@ export class BounceOutLeft
|
|
|
507
523
|
extends ComplexAnimationBuilder
|
|
508
524
|
implements IEntryExitAnimationBuilder
|
|
509
525
|
{
|
|
526
|
+
static presetName = 'BounceOutLeft';
|
|
527
|
+
|
|
510
528
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
511
529
|
this: T
|
|
512
530
|
): InstanceType<T> {
|
|
@@ -569,6 +587,8 @@ export class BounceOutRight
|
|
|
569
587
|
extends ComplexAnimationBuilder
|
|
570
588
|
implements IEntryExitAnimationBuilder
|
|
571
589
|
{
|
|
590
|
+
static presetName = 'BounceOutRight';
|
|
591
|
+
|
|
572
592
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
573
593
|
this: T
|
|
574
594
|
): InstanceType<T> {
|
|
@@ -17,6 +17,7 @@ export class FadeIn
|
|
|
17
17
|
extends ComplexAnimationBuilder
|
|
18
18
|
implements IEntryExitAnimationBuilder
|
|
19
19
|
{
|
|
20
|
+
static presetName = 'FadeIn';
|
|
20
21
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
21
22
|
this: T
|
|
22
23
|
): InstanceType<T> {
|
|
@@ -57,6 +58,8 @@ export class FadeInRight
|
|
|
57
58
|
extends ComplexAnimationBuilder
|
|
58
59
|
implements IEntryExitAnimationBuilder
|
|
59
60
|
{
|
|
61
|
+
static presetName = 'FadeInRight';
|
|
62
|
+
|
|
60
63
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
61
64
|
this: T
|
|
62
65
|
): InstanceType<T> {
|
|
@@ -101,6 +104,8 @@ export class FadeInLeft
|
|
|
101
104
|
extends ComplexAnimationBuilder
|
|
102
105
|
implements IEntryExitAnimationBuilder
|
|
103
106
|
{
|
|
107
|
+
static presetName = 'FadeInLeft';
|
|
108
|
+
|
|
104
109
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
105
110
|
this: T
|
|
106
111
|
): InstanceType<T> {
|
|
@@ -145,6 +150,8 @@ export class FadeInUp
|
|
|
145
150
|
extends ComplexAnimationBuilder
|
|
146
151
|
implements IEntryExitAnimationBuilder
|
|
147
152
|
{
|
|
153
|
+
static presetName = 'FadeInUp';
|
|
154
|
+
|
|
148
155
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
149
156
|
this: T
|
|
150
157
|
): InstanceType<T> {
|
|
@@ -189,6 +196,8 @@ export class FadeInDown
|
|
|
189
196
|
extends ComplexAnimationBuilder
|
|
190
197
|
implements IEntryExitAnimationBuilder
|
|
191
198
|
{
|
|
199
|
+
static presetName = 'FadeInDown';
|
|
200
|
+
|
|
192
201
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
193
202
|
this: T
|
|
194
203
|
): InstanceType<T> {
|
|
@@ -233,6 +242,8 @@ export class FadeOut
|
|
|
233
242
|
extends ComplexAnimationBuilder
|
|
234
243
|
implements IEntryExitAnimationBuilder
|
|
235
244
|
{
|
|
245
|
+
static presetName = 'FadeOut';
|
|
246
|
+
|
|
236
247
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
237
248
|
this: T
|
|
238
249
|
): InstanceType<T> {
|
|
@@ -273,6 +284,8 @@ export class FadeOutRight
|
|
|
273
284
|
extends ComplexAnimationBuilder
|
|
274
285
|
implements IEntryExitAnimationBuilder
|
|
275
286
|
{
|
|
287
|
+
static presetName = 'FadeOutRight';
|
|
288
|
+
|
|
276
289
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
277
290
|
this: T
|
|
278
291
|
): InstanceType<T> {
|
|
@@ -317,6 +330,8 @@ export class FadeOutLeft
|
|
|
317
330
|
extends ComplexAnimationBuilder
|
|
318
331
|
implements IEntryExitAnimationBuilder
|
|
319
332
|
{
|
|
333
|
+
static presetName = 'FadeOutLeft';
|
|
334
|
+
|
|
320
335
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
321
336
|
this: T
|
|
322
337
|
): InstanceType<T> {
|
|
@@ -360,6 +375,8 @@ export class FadeOutUp
|
|
|
360
375
|
extends ComplexAnimationBuilder
|
|
361
376
|
implements IEntryExitAnimationBuilder
|
|
362
377
|
{
|
|
378
|
+
static presetName = 'FadeOutUp';
|
|
379
|
+
|
|
363
380
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
364
381
|
this: T
|
|
365
382
|
): InstanceType<T> {
|
|
@@ -404,6 +421,8 @@ export class FadeOutDown
|
|
|
404
421
|
extends ComplexAnimationBuilder
|
|
405
422
|
implements IEntryExitAnimationBuilder
|
|
406
423
|
{
|
|
424
|
+
static presetName = 'FadeOutDown';
|
|
425
|
+
|
|
407
426
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
408
427
|
this: T
|
|
409
428
|
): InstanceType<T> {
|
|
@@ -22,6 +22,8 @@ export class FlipInXUp
|
|
|
22
22
|
extends ComplexAnimationBuilder
|
|
23
23
|
implements IEntryAnimationBuilder
|
|
24
24
|
{
|
|
25
|
+
static presetName = 'FlipInXUp';
|
|
26
|
+
|
|
25
27
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
26
28
|
this: T
|
|
27
29
|
): InstanceType<T> {
|
|
@@ -70,6 +72,8 @@ export class FlipInYLeft
|
|
|
70
72
|
extends ComplexAnimationBuilder
|
|
71
73
|
implements IEntryAnimationBuilder
|
|
72
74
|
{
|
|
75
|
+
static presetName = 'FlipInYLeft';
|
|
76
|
+
|
|
73
77
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
74
78
|
this: T
|
|
75
79
|
): InstanceType<T> {
|
|
@@ -118,6 +122,8 @@ export class FlipInXDown
|
|
|
118
122
|
extends ComplexAnimationBuilder
|
|
119
123
|
implements IEntryAnimationBuilder
|
|
120
124
|
{
|
|
125
|
+
static presetName = 'FlipInXDown';
|
|
126
|
+
|
|
121
127
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
122
128
|
this: T
|
|
123
129
|
): InstanceType<T> {
|
|
@@ -166,6 +172,8 @@ export class FlipInYRight
|
|
|
166
172
|
extends ComplexAnimationBuilder
|
|
167
173
|
implements IEntryAnimationBuilder
|
|
168
174
|
{
|
|
175
|
+
static presetName = 'FlipInYRight';
|
|
176
|
+
|
|
169
177
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
170
178
|
this: T
|
|
171
179
|
): InstanceType<T> {
|
|
@@ -214,6 +222,8 @@ export class FlipInEasyX
|
|
|
214
222
|
extends ComplexAnimationBuilder
|
|
215
223
|
implements IEntryExitAnimationBuilder
|
|
216
224
|
{
|
|
225
|
+
static presetName = 'FlipInEasyX';
|
|
226
|
+
|
|
217
227
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
218
228
|
this: T
|
|
219
229
|
): InstanceType<T> {
|
|
@@ -257,6 +267,8 @@ export class FlipInEasyY
|
|
|
257
267
|
extends ComplexAnimationBuilder
|
|
258
268
|
implements IEntryExitAnimationBuilder
|
|
259
269
|
{
|
|
270
|
+
static presetName = 'FlipInEasyY';
|
|
271
|
+
|
|
260
272
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
261
273
|
this: T
|
|
262
274
|
): InstanceType<T> {
|
|
@@ -300,6 +312,8 @@ export class FlipOutXUp
|
|
|
300
312
|
extends ComplexAnimationBuilder
|
|
301
313
|
implements IExitAnimationBuilder
|
|
302
314
|
{
|
|
315
|
+
static presetName = 'FlipOutXUp';
|
|
316
|
+
|
|
303
317
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
304
318
|
this: T
|
|
305
319
|
): InstanceType<T> {
|
|
@@ -353,6 +367,8 @@ export class FlipOutYLeft
|
|
|
353
367
|
extends ComplexAnimationBuilder
|
|
354
368
|
implements IExitAnimationBuilder
|
|
355
369
|
{
|
|
370
|
+
static presetName = 'FlipOutYLeft';
|
|
371
|
+
|
|
356
372
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
357
373
|
this: T
|
|
358
374
|
): InstanceType<T> {
|
|
@@ -406,6 +422,8 @@ export class FlipOutXDown
|
|
|
406
422
|
extends ComplexAnimationBuilder
|
|
407
423
|
implements IExitAnimationBuilder
|
|
408
424
|
{
|
|
425
|
+
static presetName = 'FlipOutXDown';
|
|
426
|
+
|
|
409
427
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
410
428
|
this: T
|
|
411
429
|
): InstanceType<T> {
|
|
@@ -459,6 +477,8 @@ export class FlipOutYRight
|
|
|
459
477
|
extends ComplexAnimationBuilder
|
|
460
478
|
implements IExitAnimationBuilder
|
|
461
479
|
{
|
|
480
|
+
static presetName = 'FlipOutYRight';
|
|
481
|
+
|
|
462
482
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
463
483
|
this: T
|
|
464
484
|
): InstanceType<T> {
|
|
@@ -512,6 +532,8 @@ export class FlipOutEasyX
|
|
|
512
532
|
extends ComplexAnimationBuilder
|
|
513
533
|
implements IEntryExitAnimationBuilder
|
|
514
534
|
{
|
|
535
|
+
static presetName = 'FlipOutEasyX';
|
|
536
|
+
|
|
515
537
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
516
538
|
this: T
|
|
517
539
|
): InstanceType<T> {
|
|
@@ -555,6 +577,8 @@ export class FlipOutEasyY
|
|
|
555
577
|
extends ComplexAnimationBuilder
|
|
556
578
|
implements IEntryExitAnimationBuilder
|
|
557
579
|
{
|
|
580
|
+
static presetName = 'FlipOutEasyY';
|
|
581
|
+
|
|
558
582
|
static createInstance<T extends typeof BaseAnimationBuilder>(
|
|
559
583
|
this: T
|
|
560
584
|
): InstanceType<T> {
|