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 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_defineProperty","obj","key","value","_toPropertyKey","Object","defineProperty","enumerable","configurable","writable","arg","_toPrimitive","String","input","hint","prim","Symbol","toPrimitive","undefined","res","call","TypeError","Number","Easing","withDelay","withSequence","withTiming","ReduceMotion","getReduceMotionFromConfig","InnerKeyframe","constructor","definitions","System","delay","delayV","delayFunction","getDelayFunction","keyframes","initialValues","parseDefinitions","callback","callbackV","animations","addAnimation","keyframePoints","length","animation","duration","easing","linear","apply","map","keyframePoint","includes","transform","push","split","keys","forEach","transformProp","index","transformPropKey","toString","parsedKeyframes","from","Error","to","styleProp","Array","isArray","transformStyle","durationV","animationKeyPoints","getAnimationDuration","currentKeyPoint","maxDuration","currentDuration","reduce","acc","addKeyPoint","_ref","filter","parseInt","sort","a","b","keyPoint","keyframe","addKeyPointWith","durationMs","delayMs","withCallback","reduceMotion","reduceMotionV","_","Keyframe"],"sources":["Keyframe.ts"],"sourcesContent":["'use strict';\nimport type { EasingFunction } from '../../Easing';\nimport { Easing } from '../../Easing';\nimport { withDelay, withSequence, withTiming } from '../../animation';\nimport type {\n AnimationFunction,\n EntryExitAnimationFunction,\n IEntryExitAnimationBuilder,\n KeyframeProps,\n StylePropsWithArrayTransform,\n} from './commonTypes';\nimport type { StyleProps } from '../../commonTypes';\nimport type { TransformArrayItem } from '../../helperTypes';\nimport { ReduceMotion } from '../../commonTypes';\nimport { getReduceMotionFromConfig } from '../../animation/util';\n\ninterface KeyframePoint {\n duration: number;\n value: number | string;\n easing?: EasingFunction;\n}\ninterface ParsedKeyframesDefinition {\n initialValues: StyleProps;\n keyframes: Record<string, KeyframePoint[]>;\n}\nclass InnerKeyframe implements IEntryExitAnimationBuilder {\n durationV?: number;\n delayV?: number;\n reduceMotionV: ReduceMotion = ReduceMotion.System;\n callbackV?: (finished: boolean) => void;\n definitions: Record<string, KeyframeProps>;\n\n /*\n Keyframe definition should be passed in the constructor as the map\n which keys are between range 0 - 100 (%) and correspond to the point in the animation progress.\n */\n constructor(definitions: Record<string, KeyframeProps>) {\n this.definitions = definitions;\n }\n\n private parseDefinitions(): ParsedKeyframesDefinition {\n /* \n Each style property contain an array with all their key points: \n value, duration of transition to that value, and optional easing function (defaults to Linear)\n */\n const parsedKeyframes: Record<string, KeyframePoint[]> = {};\n /*\n Parsing keyframes 'from' and 'to'.\n */\n if (this.definitions.from) {\n if (this.definitions['0']) {\n throw new Error(\n \"[Reanimated] You cannot provide both keyframe 0 and 'from' as they both specified initial values.\"\n );\n }\n this.definitions['0'] = this.definitions.from;\n delete this.definitions.from;\n }\n if (this.definitions.to) {\n if (this.definitions['100']) {\n throw new Error(\n \"[Reanimated] You cannot provide both keyframe 100 and 'to' as they both specified values at the end of the animation.\"\n );\n }\n this.definitions['100'] = this.definitions.to;\n delete this.definitions.to;\n }\n /* \n One of the assumptions is that keyframe 0 is required to properly set initial values.\n Every other keyframe should contain properties from the set provided as initial values.\n */\n if (!this.definitions['0']) {\n throw new Error(\n \"[Reanimated] Please provide 0 or 'from' keyframe with initial state of your object.\"\n );\n }\n const initialValues: StyleProps = this.definitions['0'] as StyleProps;\n /*\n Initialize parsedKeyframes for properties provided in initial keyframe\n */\n Object.keys(initialValues).forEach((styleProp: string) => {\n if (styleProp === 'transform') {\n if (!Array.isArray(initialValues.transform)) {\n return;\n }\n initialValues.transform.forEach((transformStyle, index) => {\n Object.keys(transformStyle).forEach((transformProp: string) => {\n parsedKeyframes[index.toString() + '_transform:' + transformProp] =\n [];\n });\n });\n } else {\n parsedKeyframes[styleProp] = [];\n }\n });\n\n const duration: number = this.durationV ? this.durationV : 500;\n const animationKeyPoints: Array<string> = Array.from(\n Object.keys(this.definitions)\n );\n\n const getAnimationDuration = (\n key: string,\n currentKeyPoint: number\n ): number => {\n const maxDuration = (currentKeyPoint / 100) * duration;\n const currentDuration = parsedKeyframes[key].reduce(\n (acc: number, value: KeyframePoint) => acc + value.duration,\n 0\n );\n return maxDuration - currentDuration;\n };\n\n /* \n Other keyframes can't contain properties that were not specified in initial keyframe.\n */\n const addKeyPoint = ({\n key,\n value,\n currentKeyPoint,\n easing,\n }: {\n key: string;\n value: string | number;\n currentKeyPoint: number;\n easing?: EasingFunction;\n }): void => {\n if (!(key in parsedKeyframes)) {\n throw new Error(\n \"[Reanimated] Keyframe can contain only that set of properties that were provide with initial values (keyframe 0 or 'from')\"\n );\n }\n parsedKeyframes[key].push({\n duration: getAnimationDuration(key, currentKeyPoint),\n value: value,\n easing: easing,\n });\n };\n animationKeyPoints\n .filter((value: string) => parseInt(value) !== 0)\n .sort((a: string, b: string) => parseInt(a) - parseInt(b))\n .forEach((keyPoint: string) => {\n if (parseInt(keyPoint) < 0 || parseInt(keyPoint) > 100) {\n throw new Error(\n '[Reanimated] Keyframe should be in between range 0 - 100.'\n );\n }\n const keyframe: KeyframeProps = this.definitions[keyPoint];\n const easing = keyframe.easing;\n delete keyframe.easing;\n const addKeyPointWith = (key: string, value: string | number) =>\n addKeyPoint({\n key,\n value,\n currentKeyPoint: parseInt(keyPoint),\n easing,\n });\n Object.keys(keyframe).forEach((key: string) => {\n if (key === 'transform') {\n if (!Array.isArray(keyframe.transform)) {\n return;\n }\n keyframe.transform.forEach(\n (transformStyle: { [key: string]: any }, index) => {\n Object.keys(transformStyle).forEach((transformProp: string) => {\n addKeyPointWith(\n index.toString() + '_transform:' + transformProp,\n transformStyle[transformProp]\n );\n });\n }\n );\n } else {\n addKeyPointWith(key, keyframe[key]);\n }\n });\n });\n return { initialValues: initialValues, keyframes: parsedKeyframes };\n }\n\n duration(durationMs: number): InnerKeyframe {\n this.durationV = durationMs;\n return this;\n }\n\n delay(delayMs: number): InnerKeyframe {\n this.delayV = delayMs;\n return this;\n }\n\n withCallback(callback: (finsihed: boolean) => void): InnerKeyframe {\n this.callbackV = callback;\n return this;\n }\n\n reduceMotion(reduceMotionV: ReduceMotion): this {\n this.reduceMotionV = reduceMotionV;\n return this;\n }\n\n private getDelayFunction(): AnimationFunction {\n const delay = this.delayV;\n const reduceMotion = this.reduceMotionV;\n return delay\n ? (delay, animation) => {\n 'worklet';\n return withDelay(delay, animation, reduceMotion);\n }\n : (_, animation) => {\n 'worklet';\n animation.reduceMotion = getReduceMotionFromConfig(reduceMotion);\n return animation;\n };\n }\n\n build = (): EntryExitAnimationFunction => {\n const delay = this.delayV;\n const delayFunction = this.getDelayFunction();\n const { keyframes, initialValues } = this.parseDefinitions();\n const callback = this.callbackV;\n\n return () => {\n 'worklet';\n const animations: StylePropsWithArrayTransform = {};\n\n /* \n For each style property, an animations sequence is created that corresponds with its key points.\n Transform style properties require special handling because of their nested structure.\n */\n const addAnimation = (key: string) => {\n const keyframePoints = keyframes[key];\n // in case if property was only passed as initial value\n if (keyframePoints.length === 0) {\n return;\n }\n const animation = delayFunction(\n delay,\n keyframePoints.length === 1\n ? withTiming(keyframePoints[0].value, {\n duration: keyframePoints[0].duration,\n easing: keyframePoints[0].easing\n ? keyframePoints[0].easing\n : Easing.linear,\n })\n : withSequence.apply(\n this,\n keyframePoints.map((keyframePoint: KeyframePoint) =>\n withTiming(keyframePoint.value, {\n duration: keyframePoint.duration,\n easing: keyframePoint.easing\n ? keyframePoint.easing\n : Easing.linear,\n })\n )\n )\n );\n if (key.includes('transform')) {\n if (!('transform' in animations)) {\n animations.transform = [];\n }\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n animations.transform!.push(<TransformArrayItem>{\n [key.split(':')[1]]: animation,\n });\n } else {\n animations[key] = animation;\n }\n };\n Object.keys(initialValues).forEach((key: string) => {\n if (key.includes('transform')) {\n initialValues[key].forEach(\n (transformProp: Record<string, number | string>, index: number) => {\n Object.keys(transformProp).forEach((transformPropKey: string) => {\n addAnimation(\n index.toString() + '_transform:' + transformPropKey\n );\n });\n }\n );\n } else {\n addAnimation(key);\n }\n });\n return {\n animations: animations,\n initialValues: initialValues,\n callback: callback,\n };\n };\n };\n}\n\n// TODO TYPESCRIPT This is a temporary type to get rid of .d.ts file.\nexport declare class ReanimatedKeyframe {\n constructor(definitions: Record<string, KeyframeProps>);\n duration(durationMs: number): ReanimatedKeyframe;\n delay(delayMs: number): ReanimatedKeyframe;\n reduceMotion(reduceMotionV: ReduceMotion): ReanimatedKeyframe;\n withCallback(callback: (finished: boolean) => void): ReanimatedKeyframe;\n}\n\n// TODO TYPESCRIPT This temporary cast is to get rid of .d.ts file.\nexport const Keyframe = InnerKeyframe as unknown as typeof ReanimatedKeyframe;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"names":["_defineProperty","obj","key","value","_toPropertyKey","Object","defineProperty","enumerable","configurable","writable","arg","_toPrimitive","String","input","hint","prim","Symbol","toPrimitive","undefined","res","call","TypeError","Number","Easing","withDelay","withSequence","withTiming","ReduceMotion","getReduceMotionFromConfig","InnerKeyframe","constructor","definitions","System","delay","delayV","delayFunction","getDelayFunction","keyframes","initialValues","parseDefinitions","callback","callbackV","animations","addAnimation","keyframePoints","length","animation","duration","easing","linear","apply","map","keyframePoint","includes","transform","push","split","keys","forEach","transformProp","index","transformPropKey","makeKeyframeKey","parsedKeyframes","from","Error","to","styleProp","Array","isArray","transformStyle","durationV","animationKeyPoints","getAnimationDuration","currentKeyPoint","maxDuration","currentDuration","reduce","acc","addKeyPoint","_ref","filter","parseInt","sort","a","b","keyPoint","keyframe","addKeyPointWith","durationMs","delayMs","withCallback","reduceMotion","reduceMotionV","_","Keyframe"],"sources":["Keyframe.ts"],"sourcesContent":["'use strict';\nimport type { EasingFunction } from '../../Easing';\nimport { Easing } from '../../Easing';\nimport { withDelay, withSequence, withTiming } from '../../animation';\nimport type {\n AnimationFunction,\n EntryExitAnimationFunction,\n IEntryExitAnimationBuilder,\n KeyframeProps,\n StylePropsWithArrayTransform,\n} from './commonTypes';\nimport type { StyleProps } from '../../commonTypes';\nimport type { TransformArrayItem } from '../../helperTypes';\nimport { ReduceMotion } from '../../commonTypes';\nimport { getReduceMotionFromConfig } from '../../animation/util';\n\ninterface KeyframePoint {\n duration: number;\n value: number | string;\n easing?: EasingFunction;\n}\ninterface ParsedKeyframesDefinition {\n initialValues: StyleProps;\n keyframes: Record<string, KeyframePoint[]>;\n}\nclass InnerKeyframe implements IEntryExitAnimationBuilder {\n durationV?: number;\n delayV?: number;\n reduceMotionV: ReduceMotion = ReduceMotion.System;\n callbackV?: (finished: boolean) => void;\n definitions: Record<string, KeyframeProps>;\n\n /*\n Keyframe definition should be passed in the constructor as the map\n which keys are between range 0 - 100 (%) and correspond to the point in the animation progress.\n */\n constructor(definitions: Record<string, KeyframeProps>) {\n this.definitions = definitions;\n }\n\n private parseDefinitions(): ParsedKeyframesDefinition {\n /* \n Each style property contain an array with all their key points: \n value, duration of transition to that value, and optional easing function (defaults to Linear)\n */\n const parsedKeyframes: Record<string, KeyframePoint[]> = {};\n /*\n Parsing keyframes 'from' and 'to'.\n */\n if (this.definitions.from) {\n if (this.definitions['0']) {\n throw new Error(\n \"[Reanimated] You cannot provide both keyframe 0 and 'from' as they both specified initial values.\"\n );\n }\n this.definitions['0'] = this.definitions.from;\n delete this.definitions.from;\n }\n if (this.definitions.to) {\n if (this.definitions['100']) {\n throw new Error(\n \"[Reanimated] You cannot provide both keyframe 100 and 'to' as they both specified values at the end of the animation.\"\n );\n }\n this.definitions['100'] = this.definitions.to;\n delete this.definitions.to;\n }\n /* \n One of the assumptions is that keyframe 0 is required to properly set initial values.\n Every other keyframe should contain properties from the set provided as initial values.\n */\n if (!this.definitions['0']) {\n throw new Error(\n \"[Reanimated] Please provide 0 or 'from' keyframe with initial state of your object.\"\n );\n }\n const initialValues: StyleProps = this.definitions['0'] as StyleProps;\n /*\n Initialize parsedKeyframes for properties provided in initial keyframe\n */\n Object.keys(initialValues).forEach((styleProp: string) => {\n if (styleProp === 'transform') {\n if (!Array.isArray(initialValues.transform)) {\n return;\n }\n initialValues.transform.forEach((transformStyle, index) => {\n Object.keys(transformStyle).forEach((transformProp: string) => {\n parsedKeyframes[makeKeyframeKey(index, transformProp)] = [];\n });\n });\n } else {\n parsedKeyframes[styleProp] = [];\n }\n });\n\n const duration: number = this.durationV ? this.durationV : 500;\n const animationKeyPoints: Array<string> = Array.from(\n Object.keys(this.definitions)\n );\n\n const getAnimationDuration = (\n key: string,\n currentKeyPoint: number\n ): number => {\n const maxDuration = (currentKeyPoint / 100) * duration;\n const currentDuration = parsedKeyframes[key].reduce(\n (acc: number, value: KeyframePoint) => acc + value.duration,\n 0\n );\n return maxDuration - currentDuration;\n };\n\n /* \n Other keyframes can't contain properties that were not specified in initial keyframe.\n */\n const addKeyPoint = ({\n key,\n value,\n currentKeyPoint,\n easing,\n }: {\n key: string;\n value: string | number;\n currentKeyPoint: number;\n easing?: EasingFunction;\n }): void => {\n if (!(key in parsedKeyframes)) {\n throw new Error(\n \"[Reanimated] Keyframe can contain only that set of properties that were provide with initial values (keyframe 0 or 'from')\"\n );\n }\n parsedKeyframes[key].push({\n duration: getAnimationDuration(key, currentKeyPoint),\n value: value,\n easing: easing,\n });\n };\n animationKeyPoints\n .filter((value: string) => parseInt(value) !== 0)\n .sort((a: string, b: string) => parseInt(a) - parseInt(b))\n .forEach((keyPoint: string) => {\n if (parseInt(keyPoint) < 0 || parseInt(keyPoint) > 100) {\n throw new Error(\n '[Reanimated] Keyframe should be in between range 0 - 100.'\n );\n }\n const keyframe: KeyframeProps = this.definitions[keyPoint];\n const easing = keyframe.easing;\n delete keyframe.easing;\n const addKeyPointWith = (key: string, value: string | number) =>\n addKeyPoint({\n key,\n value,\n currentKeyPoint: parseInt(keyPoint),\n easing,\n });\n Object.keys(keyframe).forEach((key: string) => {\n if (key === 'transform') {\n if (!Array.isArray(keyframe.transform)) {\n return;\n }\n keyframe.transform.forEach(\n (transformStyle: { [key: string]: any }, index) => {\n Object.keys(transformStyle).forEach((transformProp: string) => {\n addKeyPointWith(\n makeKeyframeKey(index, transformProp),\n transformStyle[transformProp]\n );\n });\n }\n );\n } else {\n addKeyPointWith(key, keyframe[key]);\n }\n });\n });\n return { initialValues: initialValues, keyframes: parsedKeyframes };\n }\n\n duration(durationMs: number): InnerKeyframe {\n this.durationV = durationMs;\n return this;\n }\n\n delay(delayMs: number): InnerKeyframe {\n this.delayV = delayMs;\n return this;\n }\n\n withCallback(callback: (finsihed: boolean) => void): InnerKeyframe {\n this.callbackV = callback;\n return this;\n }\n\n reduceMotion(reduceMotionV: ReduceMotion): this {\n this.reduceMotionV = reduceMotionV;\n return this;\n }\n\n private getDelayFunction(): AnimationFunction {\n const delay = this.delayV;\n const reduceMotion = this.reduceMotionV;\n return delay\n ? (delay, animation) => {\n 'worklet';\n return withDelay(delay, animation, reduceMotion);\n }\n : (_, animation) => {\n 'worklet';\n animation.reduceMotion = getReduceMotionFromConfig(reduceMotion);\n return animation;\n };\n }\n\n build = (): EntryExitAnimationFunction => {\n const delay = this.delayV;\n const delayFunction = this.getDelayFunction();\n const { keyframes, initialValues } = this.parseDefinitions();\n const callback = this.callbackV;\n\n return () => {\n 'worklet';\n const animations: StylePropsWithArrayTransform = {};\n\n /* \n For each style property, an animations sequence is created that corresponds with its key points.\n Transform style properties require special handling because of their nested structure.\n */\n const addAnimation = (key: string) => {\n const keyframePoints = keyframes[key];\n // in case if property was only passed as initial value\n if (keyframePoints.length === 0) {\n return;\n }\n const animation = delayFunction(\n delay,\n keyframePoints.length === 1\n ? withTiming(keyframePoints[0].value, {\n duration: keyframePoints[0].duration,\n easing: keyframePoints[0].easing\n ? keyframePoints[0].easing\n : Easing.linear,\n })\n : withSequence.apply(\n this,\n keyframePoints.map((keyframePoint: KeyframePoint) =>\n withTiming(keyframePoint.value, {\n duration: keyframePoint.duration,\n easing: keyframePoint.easing\n ? keyframePoint.easing\n : Easing.linear,\n })\n )\n )\n );\n if (key.includes('transform')) {\n if (!('transform' in animations)) {\n animations.transform = [];\n }\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n animations.transform!.push(<TransformArrayItem>{\n [key.split(':')[1]]: animation,\n });\n } else {\n animations[key] = animation;\n }\n };\n Object.keys(initialValues).forEach((key: string) => {\n if (key.includes('transform')) {\n initialValues[key].forEach(\n (transformProp: Record<string, number | string>, index: number) => {\n Object.keys(transformProp).forEach((transformPropKey: string) => {\n addAnimation(makeKeyframeKey(index, transformPropKey));\n });\n }\n );\n } else {\n addAnimation(key);\n }\n });\n return {\n animations: animations,\n initialValues: initialValues,\n callback: callback,\n };\n };\n };\n}\n\nfunction makeKeyframeKey(index: number, transformProp: string) {\n return `${index}_transform:${transformProp}`;\n}\n\n// TODO TYPESCRIPT This is a temporary type to get rid of .d.ts file.\nexport declare class ReanimatedKeyframe {\n constructor(definitions: Record<string, KeyframeProps>);\n duration(durationMs: number): ReanimatedKeyframe;\n delay(delayMs: number): ReanimatedKeyframe;\n reduceMotion(reduceMotionV: ReduceMotion): ReanimatedKeyframe;\n withCallback(callback: (finished: boolean) => void): ReanimatedKeyframe;\n}\n\n// TODO TYPESCRIPT This temporary cast is to get rid of .d.ts file.\nexport const Keyframe = InnerKeyframe as unknown as typeof ReanimatedKeyframe;\n"],"mappings":"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"}
|
|
@@ -10,6 +10,10 @@ export let LayoutAnimationType = /*#__PURE__*/function (LayoutAnimationType) {
|
|
|
10
10
|
LayoutAnimationType[LayoutAnimationType["SHARED_ELEMENT_TRANSITION_PROGRESS"] = 5] = "SHARED_ELEMENT_TRANSITION_PROGRESS";
|
|
11
11
|
return LayoutAnimationType;
|
|
12
12
|
}({});
|
|
13
|
+
/**
|
|
14
|
+
* Used to configure the `.defaultTransitionType()` shared transition modifier.
|
|
15
|
+
* @experimental
|
|
16
|
+
*/
|
|
13
17
|
export let SharedTransitionType = /*#__PURE__*/function (SharedTransitionType) {
|
|
14
18
|
SharedTransitionType["ANIMATION"] = "animation";
|
|
15
19
|
SharedTransitionType["PROGRESS_ANIMATION"] = "progressAnimation";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["LayoutAnimationType","SharedTransitionType"],"sources":["commonTypes.ts"],"sourcesContent":["'use strict';\nimport type { TransformArrayItem } from '../../helperTypes';\nimport type { EasingFunction } from '../../Easing';\nimport type { StyleProps } from '../../commonTypes';\n\nexport type LayoutAnimationsOptions =\n | 'originX'\n | 'originY'\n | 'width'\n | 'height'\n | 'borderRadius'\n | 'globalOriginX'\n | 'globalOriginY';\n\ntype CurrentLayoutAnimationsValues = {\n [K in LayoutAnimationsOptions as `current${Capitalize<string & K>}`]: number;\n};\n\ntype TargetLayoutAnimationsValues = {\n [K in LayoutAnimationsOptions as `target${Capitalize<string & K>}`]: number;\n};\n\ninterface WindowDimensions {\n windowWidth: number;\n windowHeight: number;\n}\n\nexport interface KeyframeProps extends StyleProps {\n easing?: EasingFunction;\n}\n\nexport type LayoutAnimation = {\n initialValues: StyleProps;\n animations: StyleProps;\n callback?: (finished: boolean) => void;\n};\n\nexport type AnimationFunction = (a?: any, b?: any, c?: any) => any; // this is just a temporary mock\n\nexport type EntryAnimationsValues = TargetLayoutAnimationsValues &\n WindowDimensions;\n\nexport type ExitAnimationsValues = CurrentLayoutAnimationsValues &\n WindowDimensions;\n\nexport type EntryExitAnimationFunction =\n | ((targetValues: EntryAnimationsValues) => LayoutAnimation)\n | ((targetValues: ExitAnimationsValues) => LayoutAnimation)\n | (() => LayoutAnimation);\n\nexport type AnimationConfigFunction<T> = (targetValues: T) => LayoutAnimation;\n\nexport type LayoutAnimationsValues = CurrentLayoutAnimationsValues &\n TargetLayoutAnimationsValues &\n WindowDimensions;\n\nexport interface SharedTransitionAnimationsValues\n extends LayoutAnimationsValues {\n currentTransformMatrix: number[];\n targetTransformMatrix: number[];\n}\n\nexport type SharedTransitionAnimationsFunction = (\n values: SharedTransitionAnimationsValues\n) => LayoutAnimation;\n\nexport enum LayoutAnimationType {\n ENTERING = 1,\n EXITING = 2,\n LAYOUT = 3,\n SHARED_ELEMENT_TRANSITION = 4,\n SHARED_ELEMENT_TRANSITION_PROGRESS = 5,\n}\n\nexport type LayoutAnimationFunction = (\n targetValues: LayoutAnimationsValues\n) => LayoutAnimation;\n\nexport type LayoutAnimationStartFunction = (\n tag: number,\n type: LayoutAnimationType,\n yogaValues: Partial<SharedTransitionAnimationsValues>,\n config: LayoutAnimationFunction\n) => void;\n\nexport interface ILayoutAnimationBuilder {\n build: () => LayoutAnimationFunction;\n}\n\nexport interface BaseLayoutAnimationConfig {\n duration?: number;\n easing?: EasingFunction;\n type?: AnimationFunction;\n damping?: number;\n dampingRatio?: number;\n mass?: number;\n stiffness?: number;\n overshootClamping?: number;\n restDisplacementThreshold?: number;\n restSpeedThreshold?: number;\n}\n\nexport interface BaseBuilderAnimationConfig extends BaseLayoutAnimationConfig {\n rotate?: number | string;\n}\n\nexport type LayoutAnimationAndConfig = [\n AnimationFunction,\n BaseBuilderAnimationConfig\n];\n\nexport interface IEntryExitAnimationBuilder {\n build: () => EntryExitAnimationFunction;\n}\n\nexport interface IEntryAnimationBuilder {\n build: () => AnimationConfigFunction<EntryAnimationsValues>;\n}\n\nexport interface IExitAnimationBuilder {\n build: () => AnimationConfigFunction<ExitAnimationsValues>;\n}\n\nexport type ProgressAnimationCallback = (\n viewTag: number,\n progress: number\n) => void;\n\nexport type ProgressAnimation = (\n viewTag: number,\n values: SharedTransitionAnimationsValues,\n progress: number\n) => void;\n\nexport type CustomProgressAnimation = (\n values: SharedTransitionAnimationsValues,\n progress: number\n) => StyleProps;\n\nexport enum SharedTransitionType {\n ANIMATION = 'animation',\n PROGRESS_ANIMATION = 'progressAnimation',\n}\n\nexport type EntryExitAnimationsValues =\n | EntryAnimationsValues\n | ExitAnimationsValues;\n\nexport type StylePropsWithArrayTransform = StyleProps & {\n transform?: TransformArrayItem[];\n};\n"],"mappings":"AAAA,YAAY;;AAqCwD;;AA6BpE,WAAYA,mBAAmB,0BAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAA,OAAnBA,mBAAmB;AAAA;AAyE/B,WAAYC,oBAAoB,0BAApBA,oBAAoB;EAApBA,oBAAoB;EAApBA,oBAAoB;EAAA,OAApBA,oBAAoB;AAAA"}
|
|
1
|
+
{"version":3,"names":["LayoutAnimationType","SharedTransitionType"],"sources":["commonTypes.ts"],"sourcesContent":["'use strict';\nimport type { TransformArrayItem } from '../../helperTypes';\nimport type { EasingFunction } from '../../Easing';\nimport type { StyleProps } from '../../commonTypes';\n\nexport type LayoutAnimationsOptions =\n | 'originX'\n | 'originY'\n | 'width'\n | 'height'\n | 'borderRadius'\n | 'globalOriginX'\n | 'globalOriginY';\n\ntype CurrentLayoutAnimationsValues = {\n [K in LayoutAnimationsOptions as `current${Capitalize<string & K>}`]: number;\n};\n\ntype TargetLayoutAnimationsValues = {\n [K in LayoutAnimationsOptions as `target${Capitalize<string & K>}`]: number;\n};\n\ninterface WindowDimensions {\n windowWidth: number;\n windowHeight: number;\n}\n\nexport interface KeyframeProps extends StyleProps {\n easing?: EasingFunction;\n}\n\nexport type LayoutAnimation = {\n initialValues: StyleProps;\n animations: StyleProps;\n callback?: (finished: boolean) => void;\n};\n\nexport type AnimationFunction = (a?: any, b?: any, c?: any) => any; // this is just a temporary mock\n\nexport type EntryAnimationsValues = TargetLayoutAnimationsValues &\n WindowDimensions;\n\nexport type ExitAnimationsValues = CurrentLayoutAnimationsValues &\n WindowDimensions;\n\nexport type EntryExitAnimationFunction =\n | ((targetValues: EntryAnimationsValues) => LayoutAnimation)\n | ((targetValues: ExitAnimationsValues) => LayoutAnimation)\n | (() => LayoutAnimation);\n\nexport type AnimationConfigFunction<T> = (targetValues: T) => LayoutAnimation;\n\nexport type LayoutAnimationsValues = CurrentLayoutAnimationsValues &\n TargetLayoutAnimationsValues &\n WindowDimensions;\n\nexport interface SharedTransitionAnimationsValues\n extends LayoutAnimationsValues {\n currentTransformMatrix: number[];\n targetTransformMatrix: number[];\n}\n\nexport type SharedTransitionAnimationsFunction = (\n values: SharedTransitionAnimationsValues\n) => LayoutAnimation;\n\nexport enum LayoutAnimationType {\n ENTERING = 1,\n EXITING = 2,\n LAYOUT = 3,\n SHARED_ELEMENT_TRANSITION = 4,\n SHARED_ELEMENT_TRANSITION_PROGRESS = 5,\n}\n\nexport type LayoutAnimationFunction = (\n targetValues: LayoutAnimationsValues\n) => LayoutAnimation;\n\nexport type LayoutAnimationStartFunction = (\n tag: number,\n type: LayoutAnimationType,\n yogaValues: Partial<SharedTransitionAnimationsValues>,\n config: LayoutAnimationFunction\n) => void;\n\nexport interface ILayoutAnimationBuilder {\n build: () => LayoutAnimationFunction;\n}\n\nexport interface BaseLayoutAnimationConfig {\n duration?: number;\n easing?: EasingFunction;\n type?: AnimationFunction;\n damping?: number;\n dampingRatio?: number;\n mass?: number;\n stiffness?: number;\n overshootClamping?: number;\n restDisplacementThreshold?: number;\n restSpeedThreshold?: number;\n}\n\nexport interface BaseBuilderAnimationConfig extends BaseLayoutAnimationConfig {\n rotate?: number | string;\n}\n\nexport type LayoutAnimationAndConfig = [\n AnimationFunction,\n BaseBuilderAnimationConfig\n];\n\nexport interface IEntryExitAnimationBuilder {\n build: () => EntryExitAnimationFunction;\n}\n\nexport interface IEntryAnimationBuilder {\n build: () => AnimationConfigFunction<EntryAnimationsValues>;\n}\n\nexport interface IExitAnimationBuilder {\n build: () => AnimationConfigFunction<ExitAnimationsValues>;\n}\n\nexport type ProgressAnimationCallback = (\n viewTag: number,\n progress: number\n) => void;\n\nexport type ProgressAnimation = (\n viewTag: number,\n values: SharedTransitionAnimationsValues,\n progress: number\n) => void;\n\nexport type CustomProgressAnimation = (\n values: SharedTransitionAnimationsValues,\n progress: number\n) => StyleProps;\n\n/**\n * Used to configure the `.defaultTransitionType()` shared transition modifier.\n * @experimental\n */\nexport enum SharedTransitionType {\n ANIMATION = 'animation',\n PROGRESS_ANIMATION = 'progressAnimation',\n}\n\nexport type EntryExitAnimationsValues =\n | EntryAnimationsValues\n | ExitAnimationsValues;\n\nexport type StylePropsWithArrayTransform = StyleProps & {\n transform?: TransformArrayItem[];\n};\n"],"mappings":"AAAA,YAAY;;AAqCwD;;AA6BpE,WAAYA,mBAAmB,0BAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAnBA,mBAAmB,CAAnBA,mBAAmB;EAAA,OAAnBA,mBAAmB;AAAA;AAyE/B;AACA;AACA;AACA;AACA,WAAYC,oBAAoB,0BAApBA,oBAAoB;EAApBA,oBAAoB;EAApBA,oBAAoB;EAAA,OAApBA,oBAAoB;AAAA"}
|
|
@@ -5,6 +5,14 @@ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typ
|
|
|
5
5
|
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
6
6
|
import { withSequence, withTiming } from '../../animation';
|
|
7
7
|
import { ComplexAnimationBuilder } from '../animationBuilder';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Bounce entering animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
11
|
+
*
|
|
12
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
13
|
+
*
|
|
14
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
15
|
+
*/
|
|
8
16
|
export class BounceIn extends ComplexAnimationBuilder {
|
|
9
17
|
constructor() {
|
|
10
18
|
super(...arguments);
|
|
@@ -52,6 +60,14 @@ export class BounceIn extends ComplexAnimationBuilder {
|
|
|
52
60
|
return this.durationV ?? 600;
|
|
53
61
|
}
|
|
54
62
|
}
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Bounce from bottom animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
66
|
+
*
|
|
67
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
68
|
+
*
|
|
69
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
70
|
+
*/
|
|
55
71
|
export class BounceInDown extends ComplexAnimationBuilder {
|
|
56
72
|
constructor() {
|
|
57
73
|
super(...arguments);
|
|
@@ -99,6 +115,14 @@ export class BounceInDown extends ComplexAnimationBuilder {
|
|
|
99
115
|
return this.durationV ?? 600;
|
|
100
116
|
}
|
|
101
117
|
}
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Bounce from top animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
121
|
+
*
|
|
122
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
123
|
+
*
|
|
124
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
125
|
+
*/
|
|
102
126
|
export class BounceInUp extends ComplexAnimationBuilder {
|
|
103
127
|
constructor() {
|
|
104
128
|
super(...arguments);
|
|
@@ -146,6 +170,14 @@ export class BounceInUp extends ComplexAnimationBuilder {
|
|
|
146
170
|
return this.durationV ?? 600;
|
|
147
171
|
}
|
|
148
172
|
}
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Bounce from left animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
176
|
+
*
|
|
177
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
178
|
+
*
|
|
179
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
180
|
+
*/
|
|
149
181
|
export class BounceInLeft extends ComplexAnimationBuilder {
|
|
150
182
|
constructor() {
|
|
151
183
|
super(...arguments);
|
|
@@ -193,6 +225,14 @@ export class BounceInLeft extends ComplexAnimationBuilder {
|
|
|
193
225
|
return this.durationV ?? 600;
|
|
194
226
|
}
|
|
195
227
|
}
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* Bounce from right animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
231
|
+
*
|
|
232
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
233
|
+
*
|
|
234
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
235
|
+
*/
|
|
196
236
|
export class BounceInRight extends ComplexAnimationBuilder {
|
|
197
237
|
constructor() {
|
|
198
238
|
super(...arguments);
|
|
@@ -240,6 +280,14 @@ export class BounceInRight extends ComplexAnimationBuilder {
|
|
|
240
280
|
return this.durationV ?? 600;
|
|
241
281
|
}
|
|
242
282
|
}
|
|
283
|
+
|
|
284
|
+
/**
|
|
285
|
+
* Bounce exiting animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
286
|
+
*
|
|
287
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
288
|
+
*
|
|
289
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
290
|
+
*/
|
|
243
291
|
export class BounceOut extends ComplexAnimationBuilder {
|
|
244
292
|
constructor() {
|
|
245
293
|
super(...arguments);
|
|
@@ -287,6 +335,14 @@ export class BounceOut extends ComplexAnimationBuilder {
|
|
|
287
335
|
return this.durationV ?? 600;
|
|
288
336
|
}
|
|
289
337
|
}
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* Bounce to bottom animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
341
|
+
*
|
|
342
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
343
|
+
*
|
|
344
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
345
|
+
*/
|
|
290
346
|
export class BounceOutDown extends ComplexAnimationBuilder {
|
|
291
347
|
constructor() {
|
|
292
348
|
super(...arguments);
|
|
@@ -334,6 +390,14 @@ export class BounceOutDown extends ComplexAnimationBuilder {
|
|
|
334
390
|
return this.durationV ?? 600;
|
|
335
391
|
}
|
|
336
392
|
}
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* Bounce to top animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
396
|
+
*
|
|
397
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
398
|
+
*
|
|
399
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
400
|
+
*/
|
|
337
401
|
export class BounceOutUp extends ComplexAnimationBuilder {
|
|
338
402
|
constructor() {
|
|
339
403
|
super(...arguments);
|
|
@@ -381,6 +445,14 @@ export class BounceOutUp extends ComplexAnimationBuilder {
|
|
|
381
445
|
return this.durationV ?? 600;
|
|
382
446
|
}
|
|
383
447
|
}
|
|
448
|
+
|
|
449
|
+
/**
|
|
450
|
+
* Bounce to left animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
451
|
+
*
|
|
452
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
453
|
+
*
|
|
454
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
455
|
+
*/
|
|
384
456
|
export class BounceOutLeft extends ComplexAnimationBuilder {
|
|
385
457
|
constructor() {
|
|
386
458
|
super(...arguments);
|
|
@@ -428,6 +500,14 @@ export class BounceOutLeft extends ComplexAnimationBuilder {
|
|
|
428
500
|
return this.durationV ?? 600;
|
|
429
501
|
}
|
|
430
502
|
}
|
|
503
|
+
|
|
504
|
+
/**
|
|
505
|
+
* Bounce to right animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.
|
|
506
|
+
*
|
|
507
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
508
|
+
*
|
|
509
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce
|
|
510
|
+
*/
|
|
431
511
|
export class BounceOutRight extends ComplexAnimationBuilder {
|
|
432
512
|
constructor() {
|
|
433
513
|
super(...arguments);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_defineProperty","obj","key","value","_toPropertyKey","Object","defineProperty","enumerable","configurable","writable","arg","_toPrimitive","String","input","hint","prim","Symbol","toPrimitive","undefined","res","call","TypeError","Number","withSequence","withTiming","ComplexAnimationBuilder","BounceIn","constructor","arguments","delayFunction","getDelayFunction","delay","getDelay","duration","getDuration","callback","callbackV","initialValues","animations","transform","scale","createInstance","durationV","BounceInDown","values","translateY","windowHeight","BounceInUp","BounceInLeft","translateX","windowWidth","BounceInRight","BounceOut","BounceOutDown","BounceOutUp","BounceOutLeft","BounceOutRight"],"sources":["Bounce.ts"],"sourcesContent":["'use strict';\nimport type {\n EntryExitAnimationFunction,\n EntryExitAnimationsValues,\n IEntryExitAnimationBuilder,\n} from '../animationBuilder/commonTypes';\nimport { withSequence, withTiming } from '../../animation';\nimport type { BaseAnimationBuilder } from '../animationBuilder';\nimport { ComplexAnimationBuilder } from '../animationBuilder';\nexport class BounceIn\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceIn() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return () => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n scale: delayFunction(\n delay,\n withSequence(\n withTiming(1.2, { duration: duration * 0.55 }),\n withTiming(0.9, { duration: duration * 0.15 }),\n withTiming(1.1, { duration: duration * 0.15 }),\n withTiming(1, { duration: duration * 0.15 })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ scale: 0 }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\nexport class BounceInDown\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceInDown() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateY: delayFunction(\n delay,\n withSequence(\n withTiming(-20, { duration: duration * 0.55 }),\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(0, { duration: duration * 0.15 })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [\n {\n translateY: values.windowHeight,\n },\n ],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\nexport class BounceInUp\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceInUp() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateY: delayFunction(\n delay,\n withSequence(\n withTiming(20, { duration: duration * 0.55 }),\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(0, { duration: duration * 0.15 })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateY: -values.windowHeight }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\nexport class BounceInLeft\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceInLeft() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateX: delayFunction(\n delay,\n withSequence(\n withTiming(20, { duration: duration * 0.55 }),\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(0, { duration: duration * 0.15 })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateX: -values.windowWidth }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\nexport class BounceInRight\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceInRight() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateX: delayFunction(\n delay,\n withSequence(\n withTiming(-20, { duration: duration * 0.55 }),\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(0, { duration: duration * 0.15 })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateX: values.windowWidth }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\nexport class BounceOut\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceOut() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return () => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n scale: delayFunction(\n delay,\n withSequence(\n withTiming(1.1, { duration: duration * 0.15 }),\n withTiming(0.9, { duration: duration * 0.15 }),\n withTiming(1.2, { duration: duration * 0.15 }),\n withTiming(0, { duration: duration * 0.55 })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ scale: 1 }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\nexport class BounceOutDown\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceOutDown() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateY: delayFunction(\n delay,\n withSequence(\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(-20, { duration: duration * 0.15 }),\n withTiming(values.windowHeight, {\n duration: duration * 0.55,\n })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateY: 0 }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\nexport class BounceOutUp\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceOutUp() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateY: delayFunction(\n delay,\n withSequence(\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(20, { duration: duration * 0.15 }),\n withTiming(-values.windowHeight, {\n duration: duration * 0.55,\n })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateY: 0 }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\nexport class BounceOutLeft\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceOutLeft() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateX: delayFunction(\n delay,\n withSequence(\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(20, { duration: duration * 0.15 }),\n withTiming(-values.windowWidth, {\n duration: duration * 0.55,\n })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateX: 0 }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\nexport class BounceOutRight\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceOutRight() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateX: delayFunction(\n delay,\n withSequence(\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(-20, { duration: duration * 0.15 }),\n withTiming(values.windowWidth, {\n duration: duration * 0.55,\n })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateX: 0 }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"names":["_defineProperty","obj","key","value","_toPropertyKey","Object","defineProperty","enumerable","configurable","writable","arg","_toPrimitive","String","input","hint","prim","Symbol","toPrimitive","undefined","res","call","TypeError","Number","withSequence","withTiming","ComplexAnimationBuilder","BounceIn","constructor","arguments","delayFunction","getDelayFunction","delay","getDelay","duration","getDuration","callback","callbackV","initialValues","animations","transform","scale","createInstance","durationV","BounceInDown","values","translateY","windowHeight","BounceInUp","BounceInLeft","translateX","windowWidth","BounceInRight","BounceOut","BounceOutDown","BounceOutUp","BounceOutLeft","BounceOutRight"],"sources":["Bounce.ts"],"sourcesContent":["'use strict';\nimport type {\n EntryExitAnimationFunction,\n EntryExitAnimationsValues,\n IEntryExitAnimationBuilder,\n} from '../animationBuilder/commonTypes';\nimport { withSequence, withTiming } from '../../animation';\nimport type { BaseAnimationBuilder } from '../animationBuilder';\nimport { ComplexAnimationBuilder } from '../animationBuilder';\n\n/**\n * Bounce entering animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.\n *\n * You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).\n *\n * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce\n */\nexport class BounceIn\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceIn() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return () => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n scale: delayFunction(\n delay,\n withSequence(\n withTiming(1.2, { duration: duration * 0.55 }),\n withTiming(0.9, { duration: duration * 0.15 }),\n withTiming(1.1, { duration: duration * 0.15 }),\n withTiming(1, { duration: duration * 0.15 })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ scale: 0 }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\n/**\n * Bounce from bottom animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.\n *\n * You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).\n *\n * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce\n */\nexport class BounceInDown\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceInDown() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateY: delayFunction(\n delay,\n withSequence(\n withTiming(-20, { duration: duration * 0.55 }),\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(0, { duration: duration * 0.15 })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [\n {\n translateY: values.windowHeight,\n },\n ],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\n/**\n * Bounce from top animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.\n *\n * You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).\n *\n * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce\n */\nexport class BounceInUp\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceInUp() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateY: delayFunction(\n delay,\n withSequence(\n withTiming(20, { duration: duration * 0.55 }),\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(0, { duration: duration * 0.15 })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateY: -values.windowHeight }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\n/**\n * Bounce from left animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.\n *\n * You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).\n *\n * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce\n */\nexport class BounceInLeft\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceInLeft() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateX: delayFunction(\n delay,\n withSequence(\n withTiming(20, { duration: duration * 0.55 }),\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(0, { duration: duration * 0.15 })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateX: -values.windowWidth }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\n/**\n * Bounce from right animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.\n *\n * You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).\n *\n * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce\n */\nexport class BounceInRight\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceInRight() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateX: delayFunction(\n delay,\n withSequence(\n withTiming(-20, { duration: duration * 0.55 }),\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(0, { duration: duration * 0.15 })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateX: values.windowWidth }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\n/**\n * Bounce exiting animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.\n *\n * You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).\n *\n * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce\n */\nexport class BounceOut\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceOut() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return () => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n scale: delayFunction(\n delay,\n withSequence(\n withTiming(1.1, { duration: duration * 0.15 }),\n withTiming(0.9, { duration: duration * 0.15 }),\n withTiming(1.2, { duration: duration * 0.15 }),\n withTiming(0, { duration: duration * 0.55 })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ scale: 1 }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\n/**\n * Bounce to bottom animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.\n *\n * You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).\n *\n * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce\n */\nexport class BounceOutDown\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceOutDown() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateY: delayFunction(\n delay,\n withSequence(\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(-20, { duration: duration * 0.15 }),\n withTiming(values.windowHeight, {\n duration: duration * 0.55,\n })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateY: 0 }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\n/**\n * Bounce to top animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.\n *\n * You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).\n *\n * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce\n */\nexport class BounceOutUp\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceOutUp() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateY: delayFunction(\n delay,\n withSequence(\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(20, { duration: duration * 0.15 }),\n withTiming(-values.windowHeight, {\n duration: duration * 0.55,\n })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateY: 0 }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\n/**\n * Bounce to left animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.\n *\n * You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).\n *\n * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce\n */\nexport class BounceOutLeft\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceOutLeft() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateX: delayFunction(\n delay,\n withSequence(\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(20, { duration: duration * 0.15 }),\n withTiming(-values.windowWidth, {\n duration: duration * 0.55,\n })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateX: 0 }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n\n/**\n * Bounce to right animation. You can modify the behavior by chaining methods like `.delay(300)` or `.duration(100)`.\n *\n * You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).\n *\n * @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#bounce\n */\nexport class BounceOutRight\n extends ComplexAnimationBuilder\n implements IEntryExitAnimationBuilder\n{\n static createInstance<T extends typeof BaseAnimationBuilder>(\n this: T\n ): InstanceType<T> {\n return new BounceOutRight() as InstanceType<T>;\n }\n\n static getDuration(): number {\n return 600;\n }\n\n getDuration(): number {\n return this.durationV ?? 600;\n }\n\n build = (): EntryExitAnimationFunction => {\n const delayFunction = this.getDelayFunction();\n const delay = this.getDelay();\n const duration = this.getDuration();\n const callback = this.callbackV;\n const initialValues = this.initialValues;\n\n return (values: EntryExitAnimationsValues) => {\n 'worklet';\n return {\n animations: {\n transform: [\n {\n translateX: delayFunction(\n delay,\n withSequence(\n withTiming(-10, { duration: duration * 0.15 }),\n withTiming(10, { duration: duration * 0.15 }),\n withTiming(-20, { duration: duration * 0.15 }),\n withTiming(values.windowWidth, {\n duration: duration * 0.55,\n })\n )\n ),\n },\n ],\n },\n initialValues: {\n transform: [{ translateX: 0 }],\n ...initialValues,\n },\n callback: callback,\n };\n };\n };\n}\n"],"mappings":"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"}
|
|
@@ -4,6 +4,14 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
4
4
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
5
5
|
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
6
6
|
import { ComplexAnimationBuilder } from '../animationBuilder';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Fade in animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
10
|
+
*
|
|
11
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
12
|
+
*
|
|
13
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
14
|
+
*/
|
|
7
15
|
export class FadeIn extends ComplexAnimationBuilder {
|
|
8
16
|
constructor() {
|
|
9
17
|
super(...arguments);
|
|
@@ -33,6 +41,14 @@ export class FadeIn extends ComplexAnimationBuilder {
|
|
|
33
41
|
return new FadeIn();
|
|
34
42
|
}
|
|
35
43
|
}
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Fade from right animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
47
|
+
*
|
|
48
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
49
|
+
*
|
|
50
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
51
|
+
*/
|
|
36
52
|
export class FadeInRight extends ComplexAnimationBuilder {
|
|
37
53
|
constructor() {
|
|
38
54
|
super(...arguments);
|
|
@@ -68,6 +84,14 @@ export class FadeInRight extends ComplexAnimationBuilder {
|
|
|
68
84
|
return new FadeInRight();
|
|
69
85
|
}
|
|
70
86
|
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Fade from left animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
90
|
+
*
|
|
91
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
92
|
+
*
|
|
93
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
94
|
+
*/
|
|
71
95
|
export class FadeInLeft extends ComplexAnimationBuilder {
|
|
72
96
|
constructor() {
|
|
73
97
|
super(...arguments);
|
|
@@ -103,6 +127,14 @@ export class FadeInLeft extends ComplexAnimationBuilder {
|
|
|
103
127
|
return new FadeInLeft();
|
|
104
128
|
}
|
|
105
129
|
}
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Fade from top animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
133
|
+
*
|
|
134
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
135
|
+
*
|
|
136
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
137
|
+
*/
|
|
106
138
|
export class FadeInUp extends ComplexAnimationBuilder {
|
|
107
139
|
constructor() {
|
|
108
140
|
super(...arguments);
|
|
@@ -138,6 +170,14 @@ export class FadeInUp extends ComplexAnimationBuilder {
|
|
|
138
170
|
return new FadeInUp();
|
|
139
171
|
}
|
|
140
172
|
}
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Fade from bottom animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
176
|
+
*
|
|
177
|
+
* You pass it to the `entering` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
178
|
+
*
|
|
179
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
180
|
+
*/
|
|
141
181
|
export class FadeInDown extends ComplexAnimationBuilder {
|
|
142
182
|
constructor() {
|
|
143
183
|
super(...arguments);
|
|
@@ -173,6 +213,14 @@ export class FadeInDown extends ComplexAnimationBuilder {
|
|
|
173
213
|
return new FadeInDown();
|
|
174
214
|
}
|
|
175
215
|
}
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* Fade out animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
219
|
+
*
|
|
220
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
221
|
+
*
|
|
222
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
223
|
+
*/
|
|
176
224
|
export class FadeOut extends ComplexAnimationBuilder {
|
|
177
225
|
constructor() {
|
|
178
226
|
super(...arguments);
|
|
@@ -202,6 +250,14 @@ export class FadeOut extends ComplexAnimationBuilder {
|
|
|
202
250
|
return new FadeOut();
|
|
203
251
|
}
|
|
204
252
|
}
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* Fade to right animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
256
|
+
*
|
|
257
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
258
|
+
*
|
|
259
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
260
|
+
*/
|
|
205
261
|
export class FadeOutRight extends ComplexAnimationBuilder {
|
|
206
262
|
constructor() {
|
|
207
263
|
super(...arguments);
|
|
@@ -237,6 +293,14 @@ export class FadeOutRight extends ComplexAnimationBuilder {
|
|
|
237
293
|
return new FadeOutRight();
|
|
238
294
|
}
|
|
239
295
|
}
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* Fade to left animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
299
|
+
*
|
|
300
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
301
|
+
*
|
|
302
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
303
|
+
*/
|
|
240
304
|
export class FadeOutLeft extends ComplexAnimationBuilder {
|
|
241
305
|
constructor() {
|
|
242
306
|
super(...arguments);
|
|
@@ -272,6 +336,13 @@ export class FadeOutLeft extends ComplexAnimationBuilder {
|
|
|
272
336
|
return new FadeOutLeft();
|
|
273
337
|
}
|
|
274
338
|
}
|
|
339
|
+
/**
|
|
340
|
+
* Fade to top animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
341
|
+
*
|
|
342
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
343
|
+
*
|
|
344
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
345
|
+
*/
|
|
275
346
|
export class FadeOutUp extends ComplexAnimationBuilder {
|
|
276
347
|
constructor() {
|
|
277
348
|
super(...arguments);
|
|
@@ -307,6 +378,14 @@ export class FadeOutUp extends ComplexAnimationBuilder {
|
|
|
307
378
|
return new FadeOutUp();
|
|
308
379
|
}
|
|
309
380
|
}
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* Fade to bottom animation. You can modify the behavior by chaining methods like `.springify()` or `.duration(500)`.
|
|
384
|
+
*
|
|
385
|
+
* You pass it to the `exiting` prop on [an Animated component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
|
|
386
|
+
*
|
|
387
|
+
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#fade
|
|
388
|
+
*/
|
|
310
389
|
export class FadeOutDown extends ComplexAnimationBuilder {
|
|
311
390
|
constructor() {
|
|
312
391
|
super(...arguments);
|