react-native-reanimated 3.6.0 → 3.6.2
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/createAnimatedComponent.js +12 -0
- package/lib/module/createAnimatedComponent/createAnimatedComponent.js.map +1 -1
- package/lib/module/createAnimatedComponent/setAndForwardRef.js +2 -0
- package/lib/module/createAnimatedComponent/setAndForwardRef.js.map +1 -1
- package/lib/module/reanimated2/Easing.js +3 -3
- package/lib/module/reanimated2/Easing.js.map +1 -1
- package/lib/module/reanimated2/PlatformChecker.js.map +1 -1
- package/lib/module/reanimated2/animation/decay/decay.js +9 -0
- package/lib/module/reanimated2/animation/decay/decay.js.map +1 -1
- package/lib/module/reanimated2/animation/decay/utils.js +13 -0
- package/lib/module/reanimated2/animation/decay/utils.js.map +1 -1
- package/lib/module/reanimated2/animation/delay.js +9 -0
- package/lib/module/reanimated2/animation/delay.js.map +1 -1
- package/lib/module/reanimated2/animation/repeat.js +11 -0
- package/lib/module/reanimated2/animation/repeat.js.map +1 -1
- package/lib/module/reanimated2/animation/sequence.js +10 -0
- package/lib/module/reanimated2/animation/sequence.js.map +1 -1
- package/lib/module/reanimated2/animation/spring.js +9 -0
- package/lib/module/reanimated2/animation/spring.js.map +1 -1
- package/lib/module/reanimated2/animation/springUtils.js +16 -0
- package/lib/module/reanimated2/animation/springUtils.js.map +1 -1
- package/lib/module/reanimated2/animation/timing.js +18 -0
- package/lib/module/reanimated2/animation/timing.js.map +1 -1
- package/lib/module/reanimated2/animation/util.js +7 -0
- package/lib/module/reanimated2/animation/util.js.map +1 -1
- package/lib/module/reanimated2/commonTypes.js +30 -7
- package/lib/module/reanimated2/commonTypes.js.map +1 -1
- package/lib/module/reanimated2/component/FlatList.js.map +1 -1
- package/lib/module/reanimated2/component/LayoutAnimationConfig.js +7 -0
- package/lib/module/reanimated2/component/LayoutAnimationConfig.js.map +1 -1
- package/lib/module/reanimated2/component/ScrollView.js.map +1 -1
- package/lib/module/reanimated2/globals.d.js.map +1 -1
- package/lib/module/reanimated2/helperTypes.js.map +1 -1
- package/lib/module/reanimated2/hook/useAnimatedKeyboard.js +8 -0
- package/lib/module/reanimated2/hook/useAnimatedKeyboard.js.map +1 -1
- package/lib/module/reanimated2/hook/useAnimatedProps.js +9 -0
- package/lib/module/reanimated2/hook/useAnimatedProps.js.map +1 -1
- package/lib/module/reanimated2/hook/useAnimatedReaction.js +6 -4
- package/lib/module/reanimated2/hook/useAnimatedReaction.js.map +1 -1
- package/lib/module/reanimated2/hook/useAnimatedRef.js +7 -0
- package/lib/module/reanimated2/hook/useAnimatedRef.js.map +1 -1
- package/lib/module/reanimated2/hook/useAnimatedScrollHandler.js +10 -2
- package/lib/module/reanimated2/hook/useAnimatedScrollHandler.js.map +1 -1
- package/lib/module/reanimated2/hook/useAnimatedSensor.js +10 -0
- package/lib/module/reanimated2/hook/useAnimatedSensor.js.map +1 -1
- package/lib/module/reanimated2/hook/useAnimatedStyle.js +8 -0
- package/lib/module/reanimated2/hook/useAnimatedStyle.js.map +1 -1
- package/lib/module/reanimated2/hook/useDerivedValue.js +14 -8
- package/lib/module/reanimated2/hook/useDerivedValue.js.map +1 -1
- package/lib/module/reanimated2/hook/useEvent.js +7 -6
- package/lib/module/reanimated2/hook/useEvent.js.map +1 -1
- package/lib/module/reanimated2/hook/useFrameCallback.js +17 -0
- package/lib/module/reanimated2/hook/useFrameCallback.js.map +1 -1
- package/lib/module/reanimated2/hook/useHandler.js +8 -2
- package/lib/module/reanimated2/hook/useHandler.js.map +1 -1
- package/lib/module/reanimated2/hook/useReducedMotion.js +9 -0
- package/lib/module/reanimated2/hook/useReducedMotion.js.map +1 -1
- package/lib/module/reanimated2/hook/useScrollViewOffset.js +8 -0
- package/lib/module/reanimated2/hook/useScrollViewOffset.js.map +1 -1
- package/lib/module/reanimated2/hook/useSharedValue.js +11 -3
- package/lib/module/reanimated2/hook/useSharedValue.js.map +1 -1
- package/lib/module/reanimated2/hook/useWorkletCallback.js +3 -0
- package/lib/module/reanimated2/hook/useWorkletCallback.js.map +1 -1
- package/lib/module/reanimated2/index.js +1 -1
- package/lib/module/reanimated2/index.js.map +1 -1
- package/lib/module/reanimated2/interpolateColor.js +21 -0
- package/lib/module/reanimated2/interpolateColor.js.map +1 -1
- package/lib/module/reanimated2/interpolation.js +51 -21
- package/lib/module/reanimated2/interpolation.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/animationBuilder/BaseAnimationBuilder.js +29 -2
- package/lib/module/reanimated2/layoutReanimation/animationBuilder/BaseAnimationBuilder.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/animationBuilder/ComplexAnimationBuilder.js +67 -2
- package/lib/module/reanimated2/layoutReanimation/animationBuilder/ComplexAnimationBuilder.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/animationBuilder/Keyframe.js +6 -3
- package/lib/module/reanimated2/layoutReanimation/animationBuilder/Keyframe.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/animationBuilder/commonTypes.js +4 -0
- package/lib/module/reanimated2/layoutReanimation/animationBuilder/commonTypes.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Bounce.js +80 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Bounce.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Fade.js +79 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Fade.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Flip.js +96 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Flip.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Lightspeed.js +31 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Lightspeed.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Pinwheel.js +15 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Pinwheel.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Roll.js +31 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Roll.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Rotate.js +63 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Rotate.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Slide.js +64 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Slide.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Stretch.js +32 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Stretch.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Zoom.js +128 -0
- package/lib/module/reanimated2/layoutReanimation/defaultAnimations/Zoom.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultTransitions/CurvedTransition.js +8 -0
- package/lib/module/reanimated2/layoutReanimation/defaultTransitions/CurvedTransition.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultTransitions/EntryExitTransition.js +9 -0
- package/lib/module/reanimated2/layoutReanimation/defaultTransitions/EntryExitTransition.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultTransitions/FadingTransition.js +8 -0
- package/lib/module/reanimated2/layoutReanimation/defaultTransitions/FadingTransition.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultTransitions/JumpingTransition.js +8 -0
- package/lib/module/reanimated2/layoutReanimation/defaultTransitions/JumpingTransition.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultTransitions/LinearTransition.js +10 -3
- package/lib/module/reanimated2/layoutReanimation/defaultTransitions/LinearTransition.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/defaultTransitions/SequencedTransition.js +8 -0
- package/lib/module/reanimated2/layoutReanimation/defaultTransitions/SequencedTransition.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/sharedTransitions/SharedTransition.js +49 -3
- package/lib/module/reanimated2/layoutReanimation/sharedTransitions/SharedTransition.js.map +1 -1
- package/lib/module/reanimated2/layoutReanimation/web/createAnimation.js +4 -4
- package/lib/module/reanimated2/layoutReanimation/web/createAnimation.js.map +1 -1
- package/lib/module/reanimated2/platform-specific/checkCppVersion.js +0 -2
- package/lib/module/reanimated2/platform-specific/checkCppVersion.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/module/reanimated2/platformFunctions/dispatchCommand.js +9 -0
- package/lib/module/reanimated2/platformFunctions/dispatchCommand.js.map +1 -1
- package/lib/module/reanimated2/platformFunctions/getRelativeCoords.js +14 -4
- package/lib/module/reanimated2/platformFunctions/getRelativeCoords.js.map +1 -1
- package/lib/module/reanimated2/platformFunctions/measure.js +7 -0
- package/lib/module/reanimated2/platformFunctions/measure.js.map +1 -1
- package/lib/module/reanimated2/platformFunctions/scrollTo.js +9 -0
- package/lib/module/reanimated2/platformFunctions/scrollTo.js.map +1 -1
- package/lib/module/reanimated2/platformFunctions/setNativeProps.js +8 -0
- package/lib/module/reanimated2/platformFunctions/setNativeProps.js.map +1 -1
- package/lib/module/reanimated2/runtimes.js +8 -0
- package/lib/module/reanimated2/runtimes.js.map +1 -1
- package/lib/module/reanimated2/threads.js +16 -6
- package/lib/module/reanimated2/threads.js.map +1 -1
- package/lib/typescript/createAnimatedComponent/createAnimatedComponent.d.ts +12 -0
- package/lib/typescript/reanimated2/Easing.d.ts +3 -3
- package/lib/typescript/reanimated2/animation/decay/decay.d.ts +8 -0
- package/lib/typescript/reanimated2/animation/decay/utils.d.ts +12 -0
- package/lib/typescript/reanimated2/animation/delay.d.ts +9 -0
- package/lib/typescript/reanimated2/animation/repeat.d.ts +11 -0
- package/lib/typescript/reanimated2/animation/sequence.d.ts +8 -0
- package/lib/typescript/reanimated2/animation/spring.d.ts +9 -0
- package/lib/typescript/reanimated2/animation/springUtils.d.ts +15 -0
- package/lib/typescript/reanimated2/animation/timing.d.ts +17 -0
- package/lib/typescript/reanimated2/animation/util.d.ts +6 -0
- package/lib/typescript/reanimated2/commonTypes.d.ts +25 -7
- package/lib/typescript/reanimated2/component/FlatList.d.ts +6 -0
- package/lib/typescript/reanimated2/component/LayoutAnimationConfig.d.ts +7 -0
- package/lib/typescript/reanimated2/component/ScrollView.d.ts +3 -2
- package/lib/typescript/reanimated2/helperTypes.d.ts +45 -3
- package/lib/typescript/reanimated2/hook/useAnimatedKeyboard.d.ts +7 -0
- package/lib/typescript/reanimated2/hook/useAnimatedProps.d.ts +9 -0
- package/lib/typescript/reanimated2/hook/useAnimatedReaction.d.ts +6 -4
- package/lib/typescript/reanimated2/hook/useAnimatedRef.d.ts +6 -0
- package/lib/typescript/reanimated2/hook/useAnimatedScrollHandler.d.ts +10 -0
- package/lib/typescript/reanimated2/hook/useAnimatedSensor.d.ts +8 -0
- package/lib/typescript/reanimated2/hook/useAnimatedStyle.d.ts +8 -0
- package/lib/typescript/reanimated2/hook/useDerivedValue.d.ts +9 -1
- package/lib/typescript/reanimated2/hook/useEvent.d.ts +8 -5
- package/lib/typescript/reanimated2/hook/useFrameCallback.d.ts +14 -0
- package/lib/typescript/reanimated2/hook/useHandler.d.ts +8 -0
- package/lib/typescript/reanimated2/hook/useReducedMotion.d.ts +8 -0
- package/lib/typescript/reanimated2/hook/useScrollViewOffset.d.ts +7 -0
- package/lib/typescript/reanimated2/hook/useSharedValue.d.ts +8 -1
- package/lib/typescript/reanimated2/hook/useWorkletCallback.d.ts +3 -0
- package/lib/typescript/reanimated2/index.d.ts +1 -1
- package/lib/typescript/reanimated2/interpolateColor.d.ts +17 -0
- package/lib/typescript/reanimated2/interpolation.d.ts +30 -2
- package/lib/typescript/reanimated2/layoutReanimation/animationBuilder/BaseAnimationBuilder.d.ts +25 -2
- package/lib/typescript/reanimated2/layoutReanimation/animationBuilder/ComplexAnimationBuilder.d.ts +56 -1
- package/lib/typescript/reanimated2/layoutReanimation/animationBuilder/commonTypes.d.ts +4 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Bounce.d.ts +70 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Fade.d.ts +70 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Flip.d.ts +84 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Lightspeed.d.ts +28 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Pinwheel.d.ts +14 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Roll.d.ts +28 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Rotate.d.ts +56 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Slide.d.ts +56 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Stretch.d.ts +28 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultAnimations/Zoom.d.ts +112 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultTransitions/CurvedTransition.d.ts +7 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultTransitions/EntryExitTransition.d.ts +8 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultTransitions/FadingTransition.d.ts +7 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultTransitions/JumpingTransition.d.ts +7 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultTransitions/LinearTransition.d.ts +10 -0
- package/lib/typescript/reanimated2/layoutReanimation/defaultTransitions/SequencedTransition.d.ts +7 -0
- package/lib/typescript/reanimated2/layoutReanimation/sharedTransitions/SharedTransition.d.ts +43 -1
- package/lib/typescript/reanimated2/layoutReanimation/web/createAnimation.d.ts +4 -4
- package/lib/typescript/reanimated2/platform-specific/jsVersion.d.ts +1 -1
- package/lib/typescript/reanimated2/platformFunctions/dispatchCommand.d.ts +8 -0
- package/lib/typescript/reanimated2/platformFunctions/getRelativeCoords.d.ts +11 -3
- package/lib/typescript/reanimated2/platformFunctions/measure.d.ts +7 -0
- package/lib/typescript/reanimated2/platformFunctions/scrollTo.d.ts +9 -0
- package/lib/typescript/reanimated2/platformFunctions/setNativeProps.d.ts +7 -0
- package/lib/typescript/reanimated2/runtimes.d.ts +8 -0
- package/lib/typescript/reanimated2/threads.d.ts +17 -2
- package/package.json +2 -1
- package/src/createAnimatedComponent/createAnimatedComponent.tsx +18 -0
- package/src/createAnimatedComponent/setAndForwardRef.ts +2 -0
- package/src/reanimated2/Easing.ts +3 -3
- package/src/reanimated2/PlatformChecker.ts +1 -1
- package/src/reanimated2/animation/decay/decay.ts +8 -0
- package/src/reanimated2/animation/decay/utils.ts +12 -0
- package/src/reanimated2/animation/delay.ts +9 -0
- package/src/reanimated2/animation/repeat.ts +11 -0
- package/src/reanimated2/animation/sequence.ts +8 -0
- package/src/reanimated2/animation/spring.ts +9 -0
- package/src/reanimated2/animation/springUtils.ts +15 -0
- package/src/reanimated2/animation/timing.ts +17 -0
- package/src/reanimated2/animation/util.ts +6 -0
- package/src/reanimated2/commonTypes.ts +25 -7
- package/src/reanimated2/component/FlatList.tsx +6 -0
- package/src/reanimated2/component/LayoutAnimationConfig.tsx +7 -0
- package/src/reanimated2/component/ScrollView.tsx +3 -1
- package/src/reanimated2/globals.d.ts +1 -1
- package/src/reanimated2/helperTypes.ts +45 -3
- package/src/reanimated2/hook/useAnimatedKeyboard.ts +7 -0
- package/src/reanimated2/hook/useAnimatedProps.ts +9 -0
- package/src/reanimated2/hook/useAnimatedReaction.ts +6 -4
- package/src/reanimated2/hook/useAnimatedRef.ts +6 -0
- package/src/reanimated2/hook/useAnimatedScrollHandler.ts +10 -0
- package/src/reanimated2/hook/useAnimatedSensor.ts +8 -0
- package/src/reanimated2/hook/useAnimatedStyle.ts +8 -0
- package/src/reanimated2/hook/useDerivedValue.ts +15 -7
- package/src/reanimated2/hook/useEvent.ts +9 -6
- package/src/reanimated2/hook/useFrameCallback.ts +14 -0
- package/src/reanimated2/hook/useHandler.ts +8 -0
- package/src/reanimated2/hook/useReducedMotion.ts +8 -0
- package/src/reanimated2/hook/useScrollViewOffset.ts +7 -0
- package/src/reanimated2/hook/useSharedValue.ts +12 -3
- package/src/reanimated2/hook/useWorkletCallback.ts +3 -0
- package/src/reanimated2/index.ts +1 -1
- package/src/reanimated2/interpolateColor.ts +17 -0
- package/src/reanimated2/interpolation.ts +48 -22
- package/src/reanimated2/layoutReanimation/animationBuilder/BaseAnimationBuilder.ts +26 -3
- package/src/reanimated2/layoutReanimation/animationBuilder/ComplexAnimationBuilder.ts +57 -2
- package/src/reanimated2/layoutReanimation/animationBuilder/Keyframe.ts +7 -6
- package/src/reanimated2/layoutReanimation/animationBuilder/commonTypes.ts +4 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Bounce.ts +71 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Fade.ts +70 -1
- package/src/reanimated2/layoutReanimation/defaultAnimations/Flip.ts +84 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Lightspeed.ts +28 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Pinwheel.ts +14 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Roll.ts +28 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Rotate.ts +56 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Slide.ts +56 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Stretch.ts +28 -0
- package/src/reanimated2/layoutReanimation/defaultAnimations/Zoom.ts +112 -0
- package/src/reanimated2/layoutReanimation/defaultTransitions/CurvedTransition.ts +7 -0
- package/src/reanimated2/layoutReanimation/defaultTransitions/EntryExitTransition.ts +8 -0
- package/src/reanimated2/layoutReanimation/defaultTransitions/FadingTransition.ts +7 -0
- package/src/reanimated2/layoutReanimation/defaultTransitions/JumpingTransition.ts +8 -0
- package/src/reanimated2/layoutReanimation/defaultTransitions/LinearTransition.ts +10 -3
- package/src/reanimated2/layoutReanimation/defaultTransitions/SequencedTransition.ts +7 -0
- package/src/reanimated2/layoutReanimation/sharedTransitions/SharedTransition.ts +45 -3
- package/src/reanimated2/layoutReanimation/web/createAnimation.ts +4 -4
- package/src/reanimated2/platform-specific/checkCppVersion.ts +0 -4
- package/src/reanimated2/platform-specific/jsVersion.ts +1 -1
- package/src/reanimated2/platformFunctions/dispatchCommand.ts +8 -0
- package/src/reanimated2/platformFunctions/getRelativeCoords.ts +12 -4
- package/src/reanimated2/platformFunctions/measure.ts +7 -0
- package/src/reanimated2/platformFunctions/scrollTo.ts +9 -0
- package/src/reanimated2/platformFunctions/setNativeProps.ts +7 -0
- package/src/reanimated2/runtimes.ts +8 -0
- package/src/reanimated2/threads.ts +18 -7
|
@@ -1,60 +1,130 @@
|
|
|
1
1
|
import type { EntryExitAnimationFunction, IEntryExitAnimationBuilder } from '../animationBuilder/commonTypes';
|
|
2
2
|
import type { BaseAnimationBuilder } from '../animationBuilder';
|
|
3
3
|
import { ComplexAnimationBuilder } from '../animationBuilder';
|
|
4
|
+
/**
|
|
5
|
+
* Bounce entering animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
6
|
+
*
|
|
7
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
8
|
+
*
|
|
9
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
10
|
+
*/
|
|
4
11
|
export declare class BounceIn extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
5
12
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
6
13
|
static getDuration(): number;
|
|
7
14
|
getDuration(): number;
|
|
8
15
|
build: () => EntryExitAnimationFunction;
|
|
9
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* Bounce from bottom animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
19
|
+
*
|
|
20
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
21
|
+
*
|
|
22
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
23
|
+
*/
|
|
10
24
|
export declare class BounceInDown extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
11
25
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
12
26
|
static getDuration(): number;
|
|
13
27
|
getDuration(): number;
|
|
14
28
|
build: () => EntryExitAnimationFunction;
|
|
15
29
|
}
|
|
30
|
+
/**
|
|
31
|
+
* Bounce from top animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
32
|
+
*
|
|
33
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
34
|
+
*
|
|
35
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
36
|
+
*/
|
|
16
37
|
export declare class BounceInUp extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
17
38
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
18
39
|
static getDuration(): number;
|
|
19
40
|
getDuration(): number;
|
|
20
41
|
build: () => EntryExitAnimationFunction;
|
|
21
42
|
}
|
|
43
|
+
/**
|
|
44
|
+
* Bounce from left animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
45
|
+
*
|
|
46
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
47
|
+
*
|
|
48
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
49
|
+
*/
|
|
22
50
|
export declare class BounceInLeft extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
23
51
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
24
52
|
static getDuration(): number;
|
|
25
53
|
getDuration(): number;
|
|
26
54
|
build: () => EntryExitAnimationFunction;
|
|
27
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* Bounce from right animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
58
|
+
*
|
|
59
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
60
|
+
*
|
|
61
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
62
|
+
*/
|
|
28
63
|
export declare class BounceInRight extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
29
64
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
30
65
|
static getDuration(): number;
|
|
31
66
|
getDuration(): number;
|
|
32
67
|
build: () => EntryExitAnimationFunction;
|
|
33
68
|
}
|
|
69
|
+
/**
|
|
70
|
+
* Bounce exiting animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
71
|
+
*
|
|
72
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
73
|
+
*
|
|
74
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
75
|
+
*/
|
|
34
76
|
export declare class BounceOut extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
35
77
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
36
78
|
static getDuration(): number;
|
|
37
79
|
getDuration(): number;
|
|
38
80
|
build: () => EntryExitAnimationFunction;
|
|
39
81
|
}
|
|
82
|
+
/**
|
|
83
|
+
* Bounce to bottom animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
84
|
+
*
|
|
85
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
86
|
+
*
|
|
87
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
88
|
+
*/
|
|
40
89
|
export declare class BounceOutDown extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
41
90
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
42
91
|
static getDuration(): number;
|
|
43
92
|
getDuration(): number;
|
|
44
93
|
build: () => EntryExitAnimationFunction;
|
|
45
94
|
}
|
|
95
|
+
/**
|
|
96
|
+
* Bounce to top animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
97
|
+
*
|
|
98
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
99
|
+
*
|
|
100
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
101
|
+
*/
|
|
46
102
|
export declare class BounceOutUp extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
47
103
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
48
104
|
static getDuration(): number;
|
|
49
105
|
getDuration(): number;
|
|
50
106
|
build: () => EntryExitAnimationFunction;
|
|
51
107
|
}
|
|
108
|
+
/**
|
|
109
|
+
* Bounce to left animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
110
|
+
*
|
|
111
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
112
|
+
*
|
|
113
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
114
|
+
*/
|
|
52
115
|
export declare class BounceOutLeft extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
53
116
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
54
117
|
static getDuration(): number;
|
|
55
118
|
getDuration(): number;
|
|
56
119
|
build: () => EntryExitAnimationFunction;
|
|
57
120
|
}
|
|
121
|
+
/**
|
|
122
|
+
* Bounce to right animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
123
|
+
*
|
|
124
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
125
|
+
*
|
|
126
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
127
|
+
*/
|
|
58
128
|
export declare class BounceOutRight extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
59
129
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
60
130
|
static getDuration(): number;
|
|
@@ -1,42 +1,112 @@
|
|
|
1
1
|
import type { IEntryExitAnimationBuilder, EntryExitAnimationFunction } from '../animationBuilder/commonTypes';
|
|
2
2
|
import type { BaseAnimationBuilder } from '../animationBuilder';
|
|
3
3
|
import { ComplexAnimationBuilder } from '../animationBuilder';
|
|
4
|
+
/**
|
|
5
|
+
* Fade in animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
6
|
+
*
|
|
7
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
8
|
+
*
|
|
9
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
10
|
+
*/
|
|
4
11
|
export declare class FadeIn extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
5
12
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
6
13
|
build: () => EntryExitAnimationFunction;
|
|
7
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* Fade from right animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
17
|
+
*
|
|
18
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
19
|
+
*
|
|
20
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
21
|
+
*/
|
|
8
22
|
export declare class FadeInRight extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
9
23
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
10
24
|
build: () => EntryExitAnimationFunction;
|
|
11
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
* Fade from left animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
28
|
+
*
|
|
29
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
30
|
+
*
|
|
31
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
32
|
+
*/
|
|
12
33
|
export declare class FadeInLeft extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
13
34
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
14
35
|
build: () => EntryExitAnimationFunction;
|
|
15
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* Fade from top animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
39
|
+
*
|
|
40
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
41
|
+
*
|
|
42
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
43
|
+
*/
|
|
16
44
|
export declare class FadeInUp extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
17
45
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
18
46
|
build: () => EntryExitAnimationFunction;
|
|
19
47
|
}
|
|
48
|
+
/**
|
|
49
|
+
* Fade from bottom animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
50
|
+
*
|
|
51
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
52
|
+
*
|
|
53
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
54
|
+
*/
|
|
20
55
|
export declare class FadeInDown extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
21
56
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
22
57
|
build: () => EntryExitAnimationFunction;
|
|
23
58
|
}
|
|
59
|
+
/**
|
|
60
|
+
* Fade out animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
61
|
+
*
|
|
62
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
63
|
+
*
|
|
64
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
65
|
+
*/
|
|
24
66
|
export declare class FadeOut extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
25
67
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
26
68
|
build: () => EntryExitAnimationFunction;
|
|
27
69
|
}
|
|
70
|
+
/**
|
|
71
|
+
* Fade to right animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
72
|
+
*
|
|
73
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
74
|
+
*
|
|
75
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
76
|
+
*/
|
|
28
77
|
export declare class FadeOutRight extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
29
78
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
30
79
|
build: () => EntryExitAnimationFunction;
|
|
31
80
|
}
|
|
81
|
+
/**
|
|
82
|
+
* Fade to left animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
83
|
+
*
|
|
84
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
85
|
+
*
|
|
86
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
87
|
+
*/
|
|
32
88
|
export declare class FadeOutLeft extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
33
89
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
34
90
|
build: () => EntryExitAnimationFunction;
|
|
35
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* Fade to top animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
94
|
+
*
|
|
95
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
96
|
+
*
|
|
97
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
98
|
+
*/
|
|
36
99
|
export declare class FadeOutUp extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
37
100
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
38
101
|
build: () => EntryExitAnimationFunction;
|
|
39
102
|
}
|
|
103
|
+
/**
|
|
104
|
+
* Fade to bottom animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
105
|
+
*
|
|
106
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
107
|
+
*
|
|
108
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
109
|
+
*/
|
|
40
110
|
export declare class FadeOutDown extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
41
111
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
42
112
|
build: () => EntryExitAnimationFunction;
|
|
@@ -1,50 +1,134 @@
|
|
|
1
1
|
import type { IEntryExitAnimationBuilder, EntryExitAnimationFunction, EntryAnimationsValues, ExitAnimationsValues, AnimationConfigFunction, IEntryAnimationBuilder, IExitAnimationBuilder } from '../animationBuilder/commonTypes';
|
|
2
2
|
import type { BaseAnimationBuilder } from '../animationBuilder';
|
|
3
3
|
import { ComplexAnimationBuilder } from '../animationBuilder';
|
|
4
|
+
/**
|
|
5
|
+
* Rotate from top on the X axis. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
6
|
+
*
|
|
7
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
8
|
+
*
|
|
9
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip
|
|
10
|
+
*/
|
|
4
11
|
export declare class FlipInXUp extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
5
12
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
6
13
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
7
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* Rotate from left on the Y axis. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
17
|
+
*
|
|
18
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
19
|
+
*
|
|
20
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip
|
|
21
|
+
*/
|
|
8
22
|
export declare class FlipInYLeft extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
9
23
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
10
24
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
11
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
* Rotate from bottom on the X axis. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
28
|
+
*
|
|
29
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
30
|
+
*
|
|
31
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip
|
|
32
|
+
*/
|
|
12
33
|
export declare class FlipInXDown extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
13
34
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
14
35
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
15
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* Rotate from right on the Y axis. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
39
|
+
*
|
|
40
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
41
|
+
*
|
|
42
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip
|
|
43
|
+
*/
|
|
16
44
|
export declare class FlipInYRight extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
17
45
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
18
46
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
19
47
|
}
|
|
48
|
+
/**
|
|
49
|
+
* Eased rotate in on the X axis. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
50
|
+
*
|
|
51
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
52
|
+
*
|
|
53
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip
|
|
54
|
+
*/
|
|
20
55
|
export declare class FlipInEasyX extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
21
56
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
22
57
|
build: () => EntryExitAnimationFunction;
|
|
23
58
|
}
|
|
59
|
+
/**
|
|
60
|
+
* Eased rotate in on the Y axis. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
61
|
+
*
|
|
62
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
63
|
+
*
|
|
64
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip
|
|
65
|
+
*/
|
|
24
66
|
export declare class FlipInEasyY extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
25
67
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
26
68
|
build: () => EntryExitAnimationFunction;
|
|
27
69
|
}
|
|
70
|
+
/**
|
|
71
|
+
* Rotate to top animation on the X axis. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
72
|
+
*
|
|
73
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
74
|
+
*
|
|
75
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip
|
|
76
|
+
*/
|
|
28
77
|
export declare class FlipOutXUp extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
29
78
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
30
79
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
31
80
|
}
|
|
81
|
+
/**
|
|
82
|
+
* Rotate to left on the Y axis. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
83
|
+
*
|
|
84
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
85
|
+
*
|
|
86
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip
|
|
87
|
+
*/
|
|
32
88
|
export declare class FlipOutYLeft extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
33
89
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
34
90
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
35
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* Rotate to bottom on the X axis. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
94
|
+
*
|
|
95
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
96
|
+
*
|
|
97
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip
|
|
98
|
+
*/
|
|
36
99
|
export declare class FlipOutXDown extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
37
100
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
38
101
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
39
102
|
}
|
|
103
|
+
/**
|
|
104
|
+
* Rotate to right animation on the Y axis. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
105
|
+
*
|
|
106
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
107
|
+
*
|
|
108
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip
|
|
109
|
+
*/
|
|
40
110
|
export declare class FlipOutYRight extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
41
111
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
42
112
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
43
113
|
}
|
|
114
|
+
/**
|
|
115
|
+
* Eased rotate on the X axis. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
116
|
+
*
|
|
117
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
118
|
+
*
|
|
119
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip
|
|
120
|
+
*/
|
|
44
121
|
export declare class FlipOutEasyX extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
45
122
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
46
123
|
build: () => EntryExitAnimationFunction;
|
|
47
124
|
}
|
|
125
|
+
/**
|
|
126
|
+
* Eased rotate on the Y axis. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
127
|
+
*
|
|
128
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
129
|
+
*
|
|
130
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#flip
|
|
131
|
+
*/
|
|
48
132
|
export declare class FlipOutEasyY extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
49
133
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
50
134
|
build: () => EntryExitAnimationFunction;
|
|
@@ -1,18 +1,46 @@
|
|
|
1
1
|
import type { BaseAnimationBuilder } from '../animationBuilder';
|
|
2
2
|
import { ComplexAnimationBuilder } from '../animationBuilder';
|
|
3
3
|
import type { EntryExitAnimationFunction, IEntryExitAnimationBuilder } from '../animationBuilder/commonTypes';
|
|
4
|
+
/**
|
|
5
|
+
* Entry from right animation with change in skew and opacity. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
6
|
+
*
|
|
7
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
8
|
+
*
|
|
9
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#lightspeed
|
|
10
|
+
*/
|
|
4
11
|
export declare class LightSpeedInRight extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
5
12
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
6
13
|
build: () => EntryExitAnimationFunction;
|
|
7
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* Entry from left animation with change in skew and opacity. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
17
|
+
*
|
|
18
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
19
|
+
*
|
|
20
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#lightspeed
|
|
21
|
+
*/
|
|
8
22
|
export declare class LightSpeedInLeft extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
9
23
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
10
24
|
build: () => EntryExitAnimationFunction;
|
|
11
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
* Exit to right animation with change in skew and opacity. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
28
|
+
*
|
|
29
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
30
|
+
*
|
|
31
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#lightspeed
|
|
32
|
+
*/
|
|
12
33
|
export declare class LightSpeedOutRight extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
13
34
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
14
35
|
build: () => EntryExitAnimationFunction;
|
|
15
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* Exit to left animation with change in skew and opacity. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
39
|
+
*
|
|
40
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
41
|
+
*
|
|
42
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations/#lightspeed
|
|
43
|
+
*/
|
|
16
44
|
export declare class LightSpeedOutLeft extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
17
45
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
18
46
|
build: () => EntryExitAnimationFunction;
|
|
@@ -1,10 +1,24 @@
|
|
|
1
1
|
import type { BaseAnimationBuilder } from '../animationBuilder';
|
|
2
2
|
import { ComplexAnimationBuilder } from '../animationBuilder';
|
|
3
3
|
import type { EntryExitAnimationFunction, IEntryExitAnimationBuilder } from '../animationBuilder/commonTypes';
|
|
4
|
+
/**
|
|
5
|
+
* Entry with change in rotation, scale, and opacity. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
6
|
+
*
|
|
7
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
8
|
+
*
|
|
9
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#pinwheel
|
|
10
|
+
*/
|
|
4
11
|
export declare class PinwheelIn extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
5
12
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
6
13
|
build: () => EntryExitAnimationFunction;
|
|
7
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* Exit with change in rotation, scale, and opacity. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
17
|
+
*
|
|
18
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
19
|
+
*
|
|
20
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#pinwheel
|
|
21
|
+
*/
|
|
8
22
|
export declare class PinwheelOut extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
9
23
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
10
24
|
build: () => EntryExitAnimationFunction;
|
|
@@ -1,18 +1,46 @@
|
|
|
1
1
|
import type { BaseAnimationBuilder } from '../animationBuilder';
|
|
2
2
|
import { ComplexAnimationBuilder } from '../animationBuilder';
|
|
3
3
|
import type { EntryExitAnimationFunction, IEntryExitAnimationBuilder } from '../animationBuilder/commonTypes';
|
|
4
|
+
/**
|
|
5
|
+
* Roll from left animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
6
|
+
*
|
|
7
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
8
|
+
*
|
|
9
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#roll
|
|
10
|
+
*/
|
|
4
11
|
export declare class RollInLeft extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
5
12
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
6
13
|
build: () => EntryExitAnimationFunction;
|
|
7
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* Roll from right animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
17
|
+
*
|
|
18
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
19
|
+
*
|
|
20
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#roll
|
|
21
|
+
*/
|
|
8
22
|
export declare class RollInRight extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
9
23
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
10
24
|
build: () => EntryExitAnimationFunction;
|
|
11
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
* Roll to left animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
28
|
+
*
|
|
29
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
30
|
+
*
|
|
31
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#roll
|
|
32
|
+
*/
|
|
12
33
|
export declare class RollOutLeft extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
13
34
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
14
35
|
build: () => EntryExitAnimationFunction;
|
|
15
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* Roll to right animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
39
|
+
*
|
|
40
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
41
|
+
*
|
|
42
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#roll
|
|
43
|
+
*/
|
|
16
44
|
export declare class RollOutRight extends ComplexAnimationBuilder implements IEntryExitAnimationBuilder {
|
|
17
45
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
18
46
|
build: () => EntryExitAnimationFunction;
|
|
@@ -1,34 +1,90 @@
|
|
|
1
1
|
import type { BaseAnimationBuilder } from '../animationBuilder';
|
|
2
2
|
import { ComplexAnimationBuilder } from '../animationBuilder';
|
|
3
3
|
import type { EntryAnimationsValues, ExitAnimationsValues, AnimationConfigFunction, IEntryAnimationBuilder, IExitAnimationBuilder } from '../animationBuilder/commonTypes';
|
|
4
|
+
/**
|
|
5
|
+
* Rotate to bottom from left edge. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
6
|
+
*
|
|
7
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
8
|
+
*
|
|
9
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
10
|
+
*/
|
|
4
11
|
export declare class RotateInDownLeft extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
5
12
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
6
13
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
7
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* Rotate to bottom from right edge. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
17
|
+
*
|
|
18
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
19
|
+
*
|
|
20
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
21
|
+
*/
|
|
8
22
|
export declare class RotateInDownRight extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
9
23
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
10
24
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
11
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
* Rotate to top from left edge. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
28
|
+
*
|
|
29
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
30
|
+
*
|
|
31
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
32
|
+
*/
|
|
12
33
|
export declare class RotateInUpLeft extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
13
34
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
14
35
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
15
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* Rotate to top from right edge. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
39
|
+
*
|
|
40
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
41
|
+
*
|
|
42
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
43
|
+
*/
|
|
16
44
|
export declare class RotateInUpRight extends ComplexAnimationBuilder implements IEntryAnimationBuilder {
|
|
17
45
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
18
46
|
build: () => AnimationConfigFunction<EntryAnimationsValues>;
|
|
19
47
|
}
|
|
48
|
+
/**
|
|
49
|
+
* Rotate to bottom from left edge. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
50
|
+
*
|
|
51
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
52
|
+
*
|
|
53
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
54
|
+
*/
|
|
20
55
|
export declare class RotateOutDownLeft extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
21
56
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
22
57
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
23
58
|
}
|
|
59
|
+
/**
|
|
60
|
+
* Rotate to bottom from right edge. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
61
|
+
*
|
|
62
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
63
|
+
*
|
|
64
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
65
|
+
*/
|
|
24
66
|
export declare class RotateOutDownRight extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
25
67
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
26
68
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
27
69
|
}
|
|
70
|
+
/**
|
|
71
|
+
* Rotate to top from left edge. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
72
|
+
*
|
|
73
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
74
|
+
*
|
|
75
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
76
|
+
*/
|
|
28
77
|
export declare class RotateOutUpLeft extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
29
78
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
30
79
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|
|
31
80
|
}
|
|
81
|
+
/**
|
|
82
|
+
* Rotate to top from right edge. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
83
|
+
*
|
|
84
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
85
|
+
*
|
|
86
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#rotate
|
|
87
|
+
*/
|
|
32
88
|
export declare class RotateOutUpRight extends ComplexAnimationBuilder implements IExitAnimationBuilder {
|
|
33
89
|
static createInstance<T extends typeof BaseAnimationBuilder>(this: T): InstanceType<T>;
|
|
34
90
|
build: () => AnimationConfigFunction<ExitAnimationsValues>;
|