@tamagui/react-native-web-lite 2.0.0-rc.4 → 2.0.0-rc.40
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/dist/cjs/AccessibilityInfo/index.cjs +77 -65
- package/dist/cjs/ActivityIndicator/__tests__/index-test.cjs +70 -49
- package/dist/cjs/ActivityIndicator/index.cjs +110 -108
- package/dist/cjs/Alert/index.cjs +12 -10
- package/dist/cjs/AppRegistry/AppContainer.cjs +50 -45
- package/dist/cjs/AppRegistry/__tests__/index-test.cjs +32 -18
- package/dist/cjs/AppRegistry/__tests__/index-test.node.cjs +47 -40
- package/dist/cjs/AppRegistry/index.cjs +38 -26
- package/dist/cjs/AppRegistry/renderApplication.cjs +44 -39
- package/dist/cjs/AppState/__tests__/index-test.cjs +13 -9
- package/dist/cjs/AppState/index.cjs +41 -25
- package/dist/cjs/Appearance/index.cjs +38 -27
- package/dist/cjs/BackHandler/index.cjs +12 -10
- package/dist/cjs/Clipboard/index.cjs +30 -17
- package/dist/cjs/DeviceEmitter.cjs +12 -10
- package/dist/cjs/DeviceInfo/index.cjs +21 -13
- package/dist/cjs/Dimensions/__tests__/index-test.cjs +29 -16
- package/dist/cjs/Dimensions/index.cjs +63 -33
- package/dist/cjs/FlatList.cjs +139 -95
- package/dist/cjs/I18nManager/index.cjs +19 -13
- package/dist/cjs/Image/index.cjs +209 -147
- package/dist/cjs/Image/types.cjs +7 -5
- package/dist/cjs/ImageBackground/__tests__/index-test.cjs +33 -29
- package/dist/cjs/ImageBackground/index.cjs +49 -47
- package/dist/cjs/InteractionManager/TaskQueue.cjs +49 -25
- package/dist/cjs/InteractionManager/index.cjs +115 -88
- package/dist/cjs/Keyboard/index.cjs +12 -10
- package/dist/cjs/KeyboardAvoidingView/index.cjs +30 -26
- package/dist/cjs/Libraries/Pressability/Pressability.cjs +28 -0
- package/dist/cjs/Libraries/Pressability/usePressability.cjs +28 -0
- package/dist/cjs/Linking/__tests__/index-test.cjs +31 -15
- package/dist/cjs/Linking/index.cjs +37 -23
- package/dist/cjs/LogBox/index.cjs +12 -10
- package/dist/cjs/Modal/ModalAnimation.cjs +141 -114
- package/dist/cjs/Modal/ModalContent.cjs +39 -29
- package/dist/cjs/Modal/ModalPortal.cjs +44 -33
- package/dist/cjs/Modal/index.cjs +12 -10
- package/dist/cjs/NativeModules/index.cjs +12 -10
- package/dist/cjs/PanResponder/index.cjs +24 -22
- package/dist/cjs/PixelRatio/index.cjs +12 -10
- package/dist/cjs/Pressable/index.cjs +128 -100
- package/dist/cjs/RefreshControl/index.cjs +14 -12
- package/dist/cjs/SafeAreaView/index.cjs +44 -37
- package/dist/cjs/ScrollView/ScrollViewBase.cjs +111 -82
- package/dist/cjs/ScrollView/index.cjs +286 -172
- package/dist/cjs/SectionList.cjs +26 -24
- package/dist/cjs/Share/index.cjs +25 -15
- package/dist/cjs/StatusBar/index.cjs +12 -10
- package/dist/cjs/Text/index.cjs +171 -144
- package/dist/cjs/Text/types.cjs +7 -5
- package/dist/cjs/TextInput/index.cjs +252 -141
- package/dist/cjs/TextInput/types.cjs +7 -5
- package/dist/cjs/TouchableNativeFeedback.cjs +12 -10
- package/dist/cjs/TouchableOpacity.cjs +91 -82
- package/dist/cjs/TouchableWithoutFeedback.cjs +73 -69
- package/dist/cjs/UnimplementedView.cjs +31 -26
- package/dist/cjs/Vibration/index.cjs +23 -19
- package/dist/cjs/View/index.cjs +106 -85
- package/dist/cjs/View/types.cjs +7 -5
- package/dist/cjs/VirtualizedList.cjs +26 -24
- package/dist/cjs/codegenNativeCommand.cjs +14 -11
- package/dist/cjs/codegenNativeComponent.cjs +14 -11
- package/dist/cjs/createElement/__tests__/index-test.cjs +162 -99
- package/dist/cjs/createElement/index.cjs +78 -68
- package/dist/cjs/createReactDOMStyle.cjs +16 -12
- package/dist/cjs/index.cjs +78 -76
- package/dist/cjs/modules/requestIdleCallback.cjs +28 -26
- package/dist/cjs/preprocess.cjs +13 -10
- package/dist/cjs/render/index.cjs +12 -10
- package/dist/cjs/styleTypes.cjs +7 -5
- package/dist/cjs/types.cjs +7 -5
- package/dist/cjs/useColorScheme/index.cjs +29 -26
- package/dist/cjs/useLocaleContext/index.cjs +12 -10
- package/dist/cjs/useWindowDimensions/index.cjs +35 -28
- package/dist/cjs/vendor/react-native/Animated/Animated.cjs +31 -29
- package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.cjs +97 -45
- package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.cjs +545 -466
- package/dist/cjs/vendor/react-native/Animated/AnimatedMock.cjs +106 -99
- package/dist/cjs/vendor/react-native/Animated/Easing.cjs +27 -15
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.cjs +303 -215
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedModule.cjs +58 -56
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedTurboModule.cjs +55 -53
- package/dist/cjs/vendor/react-native/Animated/SpringConfig.cjs +22 -14
- package/dist/cjs/vendor/react-native/Animated/animations/Animation.cjs +22 -14
- package/dist/cjs/vendor/react-native/Animated/animations/DecayAnimation.cjs +45 -21
- package/dist/cjs/vendor/react-native/Animated/animations/SpringAnimation.cjs +116 -44
- package/dist/cjs/vendor/react-native/Animated/animations/TimingAnimation.cjs +77 -32
- package/dist/cjs/vendor/react-native/Animated/bezier.cjs +68 -27
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedFlatList.cjs +33 -31
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.cjs +26 -13
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.cjs +33 -31
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedSectionList.cjs +33 -31
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.cjs +14 -12
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.cjs +14 -12
- package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.cjs +40 -37
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedAddition.cjs +26 -17
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedColor.cjs +148 -65
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDiffClamp.cjs +28 -18
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDivision.cjs +42 -22
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedInterpolation.cjs +122 -47
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedModulo.cjs +21 -15
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedMultiplication.cjs +26 -17
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedNode.cjs +70 -27
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedProps.cjs +73 -32
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedStyle.cjs +60 -28
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedSubtraction.cjs +26 -17
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTracking.cjs +36 -19
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTransform.cjs +57 -32
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValue.cjs +108 -39
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValueXY.cjs +53 -30
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedWithChildren.cjs +44 -18
- package/dist/cjs/vendor/react-native/Animated/useAnimatedProps.cjs +63 -43
- package/dist/cjs/vendor/react-native/Batchinator/index.cjs +27 -15
- package/dist/cjs/vendor/react-native/EventEmitter/NativeEventEmitter.cjs +28 -16
- package/dist/cjs/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.cjs +12 -10
- package/dist/cjs/vendor/react-native/FeatureFlags.cjs +18 -16
- package/dist/cjs/vendor/react-native/FillRateHelper/index.cjs +92 -42
- package/dist/cjs/vendor/react-native/FlatList/index.cjs +166 -105
- package/dist/cjs/vendor/react-native/JSEventLoopWatchdog/index.cjs +39 -24
- package/dist/cjs/vendor/react-native/LayoutAnimation/index.cjs +75 -71
- package/dist/cjs/vendor/react-native/PanResponder/index.cjs +181 -118
- package/dist/cjs/vendor/react-native/PooledClass/index.cjs +44 -30
- package/dist/cjs/vendor/react-native/ReactNative/ReactNativeFeatureFlags.cjs +17 -15
- package/dist/cjs/vendor/react-native/SectionList/index.cjs +63 -39
- package/dist/cjs/vendor/react-native/StaticContainer/index.cjs +25 -23
- package/dist/cjs/vendor/react-native/StaticRenderer/index.cjs +24 -22
- package/dist/cjs/vendor/react-native/TouchHistoryMath/index.cjs +48 -29
- package/dist/cjs/vendor/react-native/TurboModule/RCTExport.cjs +17 -15
- package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.cjs +14 -11
- package/dist/cjs/vendor/react-native/Types/CoreEventTypes.cjs +127 -125
- package/dist/cjs/vendor/react-native/Utilities/Platform.cjs +12 -10
- package/dist/cjs/vendor/react-native/Utilities/clamp.cjs +19 -11
- package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.cjs +19 -12
- package/dist/cjs/vendor/react-native/Utilities/useMergeRefs.cjs +21 -11
- package/dist/cjs/vendor/react-native/Utilities/useRefEffect.cjs +19 -11
- package/dist/cjs/vendor/react-native/ViewabilityHelper/index.cjs +92 -51
- package/dist/cjs/vendor/react-native/ViewabilityHelper.cjs +91 -50
- package/dist/cjs/vendor/react-native/VirtualizeUtils/index.cjs +96 -58
- package/dist/cjs/vendor/react-native/VirtualizedList/CellRenderMask.cjs +75 -44
- package/dist/cjs/vendor/react-native/VirtualizedList/ChildListCollection.cjs +36 -17
- package/dist/cjs/vendor/react-native/VirtualizedList/StateSafePureComponent.cjs +51 -41
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.cjs +87 -78
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListContext.cjs +36 -32
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListProps.cjs +19 -17
- package/dist/cjs/vendor/react-native/VirtualizedList/index.cjs +147 -101
- package/dist/cjs/vendor/react-native/VirtualizedSectionList/index.cjs +93 -58
- package/dist/cjs/vendor/react-native/deepDiffer/index.cjs +49 -19
- package/dist/cjs/vendor/react-native/emitter/EventEmitter.cjs +12 -10
- package/dist/cjs/vendor/react-native/emitter/_EmitterSubscription.cjs +16 -11
- package/dist/cjs/vendor/react-native/emitter/_EventEmitter.cjs +31 -20
- package/dist/cjs/vendor/react-native/emitter/_EventSubscription.cjs +12 -10
- package/dist/cjs/vendor/react-native/emitter/_EventSubscriptionVendor.cjs +31 -17
- package/dist/cjs/vendor/react-native/infoLog/index.cjs +12 -10
- package/dist/cjs/vendor/react-native/useRefEffect.cjs +19 -11
- package/dist/cjs/vendor/react-native/vendor/emitter/EventEmitter.cjs +37 -22
- package/dist/cjs/without-animated.cjs +251 -143
- package/dist/esm/AccessibilityInfo/index.mjs +65 -55
- package/dist/esm/AccessibilityInfo/index.mjs.map +1 -1
- package/dist/esm/ActivityIndicator/__tests__/index-test.mjs +56 -37
- package/dist/esm/ActivityIndicator/__tests__/index-test.mjs.map +1 -1
- package/dist/esm/ActivityIndicator/index.mjs +82 -82
- package/dist/esm/ActivityIndicator/index.mjs.map +1 -1
- package/dist/esm/AppRegistry/AppContainer.mjs +22 -19
- package/dist/esm/AppRegistry/AppContainer.mjs.map +1 -1
- package/dist/esm/AppRegistry/__tests__/index-test.mjs +22 -10
- package/dist/esm/AppRegistry/__tests__/index-test.mjs.map +1 -1
- package/dist/esm/AppRegistry/__tests__/index-test.node.mjs +35 -30
- package/dist/esm/AppRegistry/__tests__/index-test.node.mjs.map +1 -1
- package/dist/esm/AppRegistry/index.mjs +23 -13
- package/dist/esm/AppRegistry/index.mjs.map +1 -1
- package/dist/esm/AppRegistry/renderApplication.mjs +27 -24
- package/dist/esm/AppRegistry/renderApplication.mjs.map +1 -1
- package/dist/esm/AppState/__tests__/index-test.mjs +5 -3
- package/dist/esm/AppState/__tests__/index-test.mjs.map +1 -1
- package/dist/esm/AppState/index.mjs +29 -15
- package/dist/esm/AppState/index.mjs.map +1 -1
- package/dist/esm/Appearance/index.mjs +26 -17
- package/dist/esm/Appearance/index.mjs.map +1 -1
- package/dist/esm/Clipboard/index.mjs +18 -7
- package/dist/esm/Clipboard/index.mjs.map +1 -1
- package/dist/esm/DeviceInfo/index.mjs +7 -1
- package/dist/esm/DeviceInfo/index.mjs.map +1 -1
- package/dist/esm/Dimensions/__tests__/index-test.mjs +21 -10
- package/dist/esm/Dimensions/__tests__/index-test.mjs.map +1 -1
- package/dist/esm/Dimensions/index.mjs +51 -23
- package/dist/esm/Dimensions/index.mjs.map +1 -1
- package/dist/esm/FlatList.mjs +111 -69
- package/dist/esm/FlatList.mjs.map +1 -1
- package/dist/esm/I18nManager/index.mjs +7 -3
- package/dist/esm/I18nManager/index.mjs.map +1 -1
- package/dist/esm/Image/index.mjs +178 -118
- package/dist/esm/Image/index.mjs.map +1 -1
- package/dist/esm/ImageBackground/__tests__/index-test.mjs +22 -20
- package/dist/esm/ImageBackground/__tests__/index-test.mjs.map +1 -1
- package/dist/esm/ImageBackground/index.mjs +32 -32
- package/dist/esm/ImageBackground/index.mjs.map +1 -1
- package/dist/esm/InteractionManager/TaskQueue.mjs +37 -15
- package/dist/esm/InteractionManager/TaskQueue.mjs.map +1 -1
- package/dist/esm/InteractionManager/index.mjs +87 -62
- package/dist/esm/InteractionManager/index.mjs.map +1 -1
- package/dist/esm/KeyboardAvoidingView/index.mjs +3 -1
- package/dist/esm/KeyboardAvoidingView/index.mjs.map +1 -1
- package/dist/esm/Libraries/Pressability/Pressability.mjs +3 -0
- package/dist/esm/Libraries/Pressability/Pressability.mjs.map +1 -0
- package/dist/esm/Libraries/Pressability/usePressability.mjs +3 -0
- package/dist/esm/Libraries/Pressability/usePressability.mjs.map +1 -0
- package/dist/esm/Linking/__tests__/index-test.mjs +23 -9
- package/dist/esm/Linking/__tests__/index-test.mjs.map +1 -1
- package/dist/esm/Linking/index.mjs +25 -13
- package/dist/esm/Linking/index.mjs.map +1 -1
- package/dist/esm/Modal/ModalAnimation.mjs +113 -88
- package/dist/esm/Modal/ModalAnimation.mjs.map +1 -1
- package/dist/esm/Modal/ModalContent.mjs +13 -5
- package/dist/esm/Modal/ModalContent.mjs.map +1 -1
- package/dist/esm/Modal/ModalPortal.mjs +17 -8
- package/dist/esm/Modal/ModalPortal.mjs.map +1 -1
- package/dist/esm/Pressable/index.mjs +97 -71
- package/dist/esm/Pressable/index.mjs.map +1 -1
- package/dist/esm/SafeAreaView/index.mjs +16 -11
- package/dist/esm/SafeAreaView/index.mjs.map +1 -1
- package/dist/esm/ScrollView/ScrollViewBase.mjs +83 -56
- package/dist/esm/ScrollView/ScrollViewBase.mjs.map +1 -1
- package/dist/esm/ScrollView/index.mjs +256 -144
- package/dist/esm/ScrollView/index.mjs.map +1 -1
- package/dist/esm/SectionList.mjs +2 -2
- package/dist/esm/Share/index.mjs +13 -5
- package/dist/esm/Share/index.mjs.map +1 -1
- package/dist/esm/Text/index.mjs +143 -118
- package/dist/esm/Text/index.mjs.map +1 -1
- package/dist/esm/TextInput/index.mjs +224 -115
- package/dist/esm/TextInput/index.mjs.map +1 -1
- package/dist/esm/TouchableOpacity.mjs +63 -56
- package/dist/esm/TouchableOpacity.mjs.map +1 -1
- package/dist/esm/TouchableWithoutFeedback.mjs +46 -44
- package/dist/esm/TouchableWithoutFeedback.mjs.map +1 -1
- package/dist/esm/UnimplementedView.mjs +4 -1
- package/dist/esm/UnimplementedView.mjs.map +1 -1
- package/dist/esm/Vibration/index.mjs +11 -9
- package/dist/esm/Vibration/index.mjs.map +1 -1
- package/dist/esm/View/index.mjs +79 -60
- package/dist/esm/View/index.mjs.map +1 -1
- package/dist/esm/VirtualizedList.mjs +2 -2
- package/dist/esm/codegenNativeCommand.mjs +2 -1
- package/dist/esm/codegenNativeCommand.mjs.map +1 -1
- package/dist/esm/codegenNativeComponent.mjs +2 -1
- package/dist/esm/codegenNativeComponent.mjs.map +1 -1
- package/dist/esm/createElement/__tests__/index-test.mjs +151 -90
- package/dist/esm/createElement/__tests__/index-test.mjs.map +1 -1
- package/dist/esm/createElement/index.mjs +49 -41
- package/dist/esm/createElement/index.mjs.map +1 -1
- package/dist/esm/createReactDOMStyle.mjs +2 -1
- package/dist/esm/createReactDOMStyle.mjs.map +1 -1
- package/dist/esm/index.js +52 -158
- package/dist/esm/index.js.map +1 -6
- package/dist/esm/index.mjs +4 -4
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm/modules/requestIdleCallback.mjs +16 -16
- package/dist/esm/modules/requestIdleCallback.mjs.map +1 -1
- package/dist/esm/preprocess.mjs +2 -2
- package/dist/esm/preprocess.mjs.map +1 -1
- package/dist/esm/useColorScheme/index.mjs +3 -2
- package/dist/esm/useColorScheme/index.mjs.map +1 -1
- package/dist/esm/useWindowDimensions/index.mjs +9 -4
- package/dist/esm/useWindowDimensions/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/Animated.mjs +10 -10
- package/dist/esm/vendor/react-native/Animated/Animated.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/AnimatedEvent.mjs +81 -31
- package/dist/esm/vendor/react-native/Animated/AnimatedEvent.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/AnimatedImplementation.mjs +519 -442
- package/dist/esm/vendor/react-native/Animated/AnimatedImplementation.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/AnimatedMock.mjs +86 -81
- package/dist/esm/vendor/react-native/Animated/AnimatedMock.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/Easing.mjs +15 -5
- package/dist/esm/vendor/react-native/Animated/Easing.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedHelper.mjs +284 -198
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedHelper.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedModule.mjs +34 -34
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedModule.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedTurboModule.mjs +31 -31
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedTurboModule.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/SpringConfig.mjs +10 -4
- package/dist/esm/vendor/react-native/Animated/SpringConfig.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/animations/Animation.mjs +10 -4
- package/dist/esm/vendor/react-native/Animated/animations/Animation.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/animations/DecayAnimation.mjs +31 -9
- package/dist/esm/vendor/react-native/Animated/animations/DecayAnimation.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/animations/SpringAnimation.mjs +100 -30
- package/dist/esm/vendor/react-native/Animated/animations/SpringAnimation.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/animations/TimingAnimation.mjs +62 -19
- package/dist/esm/vendor/react-native/Animated/animations/TimingAnimation.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/bezier.mjs +56 -17
- package/dist/esm/vendor/react-native/Animated/bezier.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedFlatList.mjs +5 -5
- package/dist/esm/vendor/react-native/Animated/components/AnimatedFlatList.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedImage.mjs +2 -2
- package/dist/esm/vendor/react-native/Animated/components/AnimatedImage.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedScrollView.mjs +6 -6
- package/dist/esm/vendor/react-native/Animated/components/AnimatedScrollView.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedSectionList.mjs +5 -5
- package/dist/esm/vendor/react-native/Animated/components/AnimatedSectionList.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedText.mjs +1 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedView.mjs +1 -1
- package/dist/esm/vendor/react-native/Animated/createAnimatedComponent.mjs +12 -11
- package/dist/esm/vendor/react-native/Animated/createAnimatedComponent.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedAddition.mjs +11 -4
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedAddition.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedColor.mjs +132 -51
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedColor.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDiffClamp.mjs +14 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDiffClamp.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDivision.mjs +26 -8
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDivision.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedInterpolation.mjs +107 -34
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedInterpolation.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedModulo.mjs +7 -3
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedModulo.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedMultiplication.mjs +11 -4
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedMultiplication.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedNode.mjs +56 -15
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedNode.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedProps.mjs +56 -17
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedProps.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedStyle.mjs +43 -13
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedStyle.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.mjs +11 -4
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTracking.mjs +22 -7
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTracking.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTransform.mjs +42 -19
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTransform.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValue.mjs +92 -25
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValue.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValueXY.mjs +38 -17
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValueXY.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedWithChildren.mjs +30 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedWithChildren.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/useAnimatedProps.mjs +45 -27
- package/dist/esm/vendor/react-native/Animated/useAnimatedProps.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Batchinator/index.mjs +15 -5
- package/dist/esm/vendor/react-native/Batchinator/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/EventEmitter/NativeEventEmitter.mjs +14 -4
- package/dist/esm/vendor/react-native/EventEmitter/NativeEventEmitter.mjs.map +1 -1
- package/dist/esm/vendor/react-native/FeatureFlags.mjs +6 -6
- package/dist/esm/vendor/react-native/FillRateHelper/index.mjs +80 -32
- package/dist/esm/vendor/react-native/FillRateHelper/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/FlatList/index.mjs +137 -78
- package/dist/esm/vendor/react-native/FlatList/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/JSEventLoopWatchdog/index.mjs +28 -15
- package/dist/esm/vendor/react-native/JSEventLoopWatchdog/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/LayoutAnimation/index.mjs +61 -59
- package/dist/esm/vendor/react-native/LayoutAnimation/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/PanResponder/index.mjs +155 -94
- package/dist/esm/vendor/react-native/PanResponder/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/PooledClass/index.mjs +32 -20
- package/dist/esm/vendor/react-native/PooledClass/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/ReactNative/ReactNativeFeatureFlags.mjs +5 -5
- package/dist/esm/vendor/react-native/SectionList/index.mjs +37 -15
- package/dist/esm/vendor/react-native/SectionList/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/StaticContainer/index.mjs +1 -1
- package/dist/esm/vendor/react-native/StaticContainer/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/TouchHistoryMath/index.mjs +36 -19
- package/dist/esm/vendor/react-native/TouchHistoryMath/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/TurboModule/RCTExport.mjs +5 -5
- package/dist/esm/vendor/react-native/TurboModule/RCTExport.mjs.map +1 -1
- package/dist/esm/vendor/react-native/TurboModule/TurboModuleRegistry.mjs +2 -1
- package/dist/esm/vendor/react-native/TurboModule/TurboModuleRegistry.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Types/CoreEventTypes.mjs +115 -115
- package/dist/esm/vendor/react-native/Types/CoreEventTypes.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Utilities/clamp.mjs +7 -1
- package/dist/esm/vendor/react-native/Utilities/clamp.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Utilities/setAndForwardRef.mjs +7 -2
- package/dist/esm/vendor/react-native/Utilities/setAndForwardRef.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Utilities/useMergeRefs.mjs +9 -1
- package/dist/esm/vendor/react-native/Utilities/useMergeRefs.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Utilities/useRefEffect.mjs +7 -1
- package/dist/esm/vendor/react-native/Utilities/useRefEffect.mjs.map +1 -1
- package/dist/esm/vendor/react-native/ViewabilityHelper/index.mjs +80 -41
- package/dist/esm/vendor/react-native/ViewabilityHelper/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/ViewabilityHelper.mjs +79 -40
- package/dist/esm/vendor/react-native/ViewabilityHelper.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizeUtils/index.mjs +84 -48
- package/dist/esm/vendor/react-native/VirtualizeUtils/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/CellRenderMask.mjs +63 -34
- package/dist/esm/vendor/react-native/VirtualizedList/CellRenderMask.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/ChildListCollection.mjs +24 -7
- package/dist/esm/vendor/react-native/VirtualizedList/ChildListCollection.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/StateSafePureComponent.mjs +25 -17
- package/dist/esm/vendor/react-native/VirtualizedList/StateSafePureComponent.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.mjs +59 -52
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListContext.mjs +9 -7
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListContext.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListProps.mjs +7 -7
- package/dist/esm/vendor/react-native/VirtualizedList/index.mjs +128 -84
- package/dist/esm/vendor/react-native/VirtualizedList/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedSectionList/index.mjs +67 -34
- package/dist/esm/vendor/react-native/VirtualizedSectionList/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/deepDiffer/index.mjs +37 -9
- package/dist/esm/vendor/react-native/deepDiffer/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/emitter/_EmitterSubscription.mjs +4 -1
- package/dist/esm/vendor/react-native/emitter/_EmitterSubscription.mjs.map +1 -1
- package/dist/esm/vendor/react-native/emitter/_EventEmitter.mjs +16 -7
- package/dist/esm/vendor/react-native/emitter/_EventEmitter.mjs.map +1 -1
- package/dist/esm/vendor/react-native/emitter/_EventSubscriptionVendor.mjs +19 -7
- package/dist/esm/vendor/react-native/emitter/_EventSubscriptionVendor.mjs.map +1 -1
- package/dist/esm/vendor/react-native/useRefEffect.mjs +7 -1
- package/dist/esm/vendor/react-native/useRefEffect.mjs.map +1 -1
- package/dist/esm/vendor/react-native/vendor/emitter/EventEmitter.mjs +25 -12
- package/dist/esm/vendor/react-native/vendor/emitter/EventEmitter.mjs.map +1 -1
- package/dist/esm/without-animated.mjs +175 -69
- package/dist/esm/without-animated.mjs.map +1 -1
- package/package.json +34 -8
- package/src/Libraries/Pressability/Pressability.ts +2 -0
- package/src/Libraries/Pressability/usePressability.ts +2 -0
- package/src/ScrollView/ScrollViewBase.tsx +12 -7
- package/src/ScrollView/index.tsx +31 -0
- package/src/createReactDOMStyle.ts +4 -1
- package/src/preprocess.ts +1 -0
- package/src/vendor/react-native/Animated/AnimatedImplementation.js +7 -7
- package/src/without-animated.tsx +156 -27
- package/dist/cjs/AccessibilityInfo/index.js +0 -95
- package/dist/cjs/AccessibilityInfo/index.js.map +0 -6
- package/dist/cjs/ActivityIndicator/__tests__/index-test.js +0 -116
- package/dist/cjs/ActivityIndicator/__tests__/index-test.js.map +0 -6
- package/dist/cjs/ActivityIndicator/index.js +0 -109
- package/dist/cjs/ActivityIndicator/index.js.map +0 -6
- package/dist/cjs/Alert/index.js +0 -24
- package/dist/cjs/Alert/index.js.map +0 -6
- package/dist/cjs/AppRegistry/AppContainer.js +0 -41
- package/dist/cjs/AppRegistry/AppContainer.js.map +0 -6
- package/dist/cjs/AppRegistry/__tests__/index-test.js +0 -77
- package/dist/cjs/AppRegistry/__tests__/index-test.js.map +0 -6
- package/dist/cjs/AppRegistry/__tests__/index-test.node.js +0 -131
- package/dist/cjs/AppRegistry/__tests__/index-test.node.js.map +0 -6
- package/dist/cjs/AppRegistry/index.js +0 -90
- package/dist/cjs/AppRegistry/index.js.map +0 -6
- package/dist/cjs/AppRegistry/renderApplication.js +0 -43
- package/dist/cjs/AppRegistry/renderApplication.js.map +0 -6
- package/dist/cjs/AppState/__tests__/index-test.js +0 -33
- package/dist/cjs/AppState/__tests__/index-test.js.map +0 -6
- package/dist/cjs/AppState/index.js +0 -71
- package/dist/cjs/AppState/index.js.map +0 -6
- package/dist/cjs/Appearance/index.js +0 -40
- package/dist/cjs/Appearance/index.js.map +0 -6
- package/dist/cjs/BackHandler/index.js +0 -31
- package/dist/cjs/BackHandler/index.js.map +0 -6
- package/dist/cjs/Clipboard/index.js +0 -47
- package/dist/cjs/Clipboard/index.js.map +0 -6
- package/dist/cjs/DeviceEmitter.js +0 -22
- package/dist/cjs/DeviceEmitter.js.map +0 -6
- package/dist/cjs/DeviceInfo/index.js +0 -53
- package/dist/cjs/DeviceInfo/index.js.map +0 -6
- package/dist/cjs/Dimensions/__tests__/index-test.js +0 -51
- package/dist/cjs/Dimensions/__tests__/index-test.js.map +0 -6
- package/dist/cjs/Dimensions/index.js +0 -76
- package/dist/cjs/Dimensions/index.js.map +0 -6
- package/dist/cjs/FlatList.js +0 -194
- package/dist/cjs/FlatList.js.map +0 -6
- package/dist/cjs/I18nManager/index.js +0 -29
- package/dist/cjs/I18nManager/index.js.map +0 -6
- package/dist/cjs/Image/index.js +0 -254
- package/dist/cjs/Image/index.js.map +0 -6
- package/dist/cjs/Image/types.js +0 -14
- package/dist/cjs/Image/types.js.map +0 -6
- package/dist/cjs/ImageBackground/__tests__/index-test.js +0 -48
- package/dist/cjs/ImageBackground/__tests__/index-test.js.map +0 -6
- package/dist/cjs/ImageBackground/index.js +0 -55
- package/dist/cjs/ImageBackground/index.js.map +0 -6
- package/dist/cjs/InteractionManager/TaskQueue.js +0 -75
- package/dist/cjs/InteractionManager/TaskQueue.js.map +0 -6
- package/dist/cjs/InteractionManager/index.js +0 -94
- package/dist/cjs/InteractionManager/index.js.map +0 -6
- package/dist/cjs/Keyboard/index.js +0 -34
- package/dist/cjs/Keyboard/index.js.map +0 -6
- package/dist/cjs/KeyboardAvoidingView/index.js +0 -57
- package/dist/cjs/KeyboardAvoidingView/index.js.map +0 -6
- package/dist/cjs/Linking/__tests__/index-test.js +0 -38
- package/dist/cjs/Linking/__tests__/index-test.js.map +0 -6
- package/dist/cjs/Linking/index.js +0 -85
- package/dist/cjs/Linking/index.js.map +0 -6
- package/dist/cjs/LogBox/index.js +0 -32
- package/dist/cjs/LogBox/index.js.map +0 -6
- package/dist/cjs/Modal/ModalAnimation.js +0 -137
- package/dist/cjs/Modal/ModalAnimation.js.map +0 -6
- package/dist/cjs/Modal/ModalContent.js +0 -77
- package/dist/cjs/Modal/ModalContent.js.map +0 -6
- package/dist/cjs/Modal/ModalPortal.js +0 -42
- package/dist/cjs/Modal/ModalPortal.js.map +0 -6
- package/dist/cjs/Modal/index.js +0 -21
- package/dist/cjs/Modal/index.js.map +0 -6
- package/dist/cjs/NativeModules/index.js +0 -24
- package/dist/cjs/NativeModules/index.js.map +0 -6
- package/dist/cjs/PanResponder/index.js +0 -29
- package/dist/cjs/PanResponder/index.js.map +0 -6
- package/dist/cjs/PixelRatio/index.js +0 -52
- package/dist/cjs/PixelRatio/index.js.map +0 -6
- package/dist/cjs/Pressable/index.js +0 -141
- package/dist/cjs/Pressable/index.js.map +0 -6
- package/dist/cjs/RefreshControl/index.js +0 -41
- package/dist/cjs/RefreshControl/index.js.map +0 -6
- package/dist/cjs/SafeAreaView/index.js +0 -44
- package/dist/cjs/SafeAreaView/index.js.map +0 -6
- package/dist/cjs/ScrollView/ScrollViewBase.js +0 -125
- package/dist/cjs/ScrollView/ScrollViewBase.js.map +0 -6
- package/dist/cjs/ScrollView/index.js +0 -525
- package/dist/cjs/ScrollView/index.js.map +0 -6
- package/dist/cjs/SectionList.js +0 -30
- package/dist/cjs/SectionList.js.map +0 -6
- package/dist/cjs/Share/index.js +0 -55
- package/dist/cjs/Share/index.js.map +0 -6
- package/dist/cjs/StatusBar/index.js +0 -32
- package/dist/cjs/StatusBar/index.js.map +0 -6
- package/dist/cjs/Text/index.js +0 -153
- package/dist/cjs/Text/index.js.map +0 -6
- package/dist/cjs/Text/types.js +0 -14
- package/dist/cjs/Text/types.js.map +0 -6
- package/dist/cjs/TextInput/index.js +0 -269
- package/dist/cjs/TextInput/index.js.map +0 -6
- package/dist/cjs/TextInput/types.js +0 -14
- package/dist/cjs/TextInput/types.js.map +0 -6
- package/dist/cjs/TouchableNativeFeedback.js +0 -21
- package/dist/cjs/TouchableNativeFeedback.js.map +0 -6
- package/dist/cjs/TouchableOpacity.js +0 -122
- package/dist/cjs/TouchableOpacity.js.map +0 -6
- package/dist/cjs/TouchableWithoutFeedback.js +0 -89
- package/dist/cjs/TouchableWithoutFeedback.js.map +0 -6
- package/dist/cjs/UnimplementedView.js +0 -36
- package/dist/cjs/UnimplementedView.js.map +0 -6
- package/dist/cjs/Vibration/index.js +0 -30
- package/dist/cjs/Vibration/index.js.map +0 -6
- package/dist/cjs/View/index.js +0 -102
- package/dist/cjs/View/index.js.map +0 -6
- package/dist/cjs/View/types.js +0 -14
- package/dist/cjs/View/types.js.map +0 -6
- package/dist/cjs/VirtualizedList.js +0 -30
- package/dist/cjs/VirtualizedList.js.map +0 -6
- package/dist/cjs/codegenNativeCommand.js +0 -23
- package/dist/cjs/codegenNativeCommand.js.map +0 -6
- package/dist/cjs/codegenNativeComponent.js +0 -23
- package/dist/cjs/codegenNativeComponent.js.map +0 -6
- package/dist/cjs/createElement/__tests__/index-test.js +0 -536
- package/dist/cjs/createElement/__tests__/index-test.js.map +0 -6
- package/dist/cjs/createElement/index.js +0 -60
- package/dist/cjs/createElement/index.js.map +0 -6
- package/dist/cjs/createReactDOMStyle.js +0 -21
- package/dist/cjs/createReactDOMStyle.js.map +0 -6
- package/dist/cjs/index.js +0 -114
- package/dist/cjs/index.js.map +0 -6
- package/dist/cjs/modules/requestIdleCallback.js +0 -34
- package/dist/cjs/modules/requestIdleCallback.js.map +0 -6
- package/dist/cjs/preprocess.js +0 -24
- package/dist/cjs/preprocess.js.map +0 -6
- package/dist/cjs/render/index.js +0 -31
- package/dist/cjs/render/index.js.map +0 -6
- package/dist/cjs/styleTypes.js +0 -14
- package/dist/cjs/styleTypes.js.map +0 -6
- package/dist/cjs/types.js +0 -14
- package/dist/cjs/types.js.map +0 -6
- package/dist/cjs/useColorScheme/index.js +0 -39
- package/dist/cjs/useColorScheme/index.js.map +0 -6
- package/dist/cjs/useLocaleContext/index.js +0 -21
- package/dist/cjs/useLocaleContext/index.js.map +0 -6
- package/dist/cjs/useWindowDimensions/index.js +0 -40
- package/dist/cjs/useWindowDimensions/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/Animated.js +0 -32
- package/dist/cjs/vendor/react-native/Animated/Animated.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.js +0 -130
- package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.js +0 -432
- package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/AnimatedMock.js +0 -115
- package/dist/cjs/vendor/react-native/Animated/AnimatedMock.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/AnimatedPlatformConfig.js +0 -2
- package/dist/cjs/vendor/react-native/Animated/AnimatedPlatformConfig.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/Easing.js +0 -182
- package/dist/cjs/vendor/react-native/Animated/Easing.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.js +0 -322
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedModule.js +0 -90
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedModule.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedTurboModule.js +0 -85
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedTurboModule.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/SpringConfig.js +0 -71
- package/dist/cjs/vendor/react-native/Animated/SpringConfig.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/animations/Animation.js +0 -63
- package/dist/cjs/vendor/react-native/Animated/animations/Animation.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/animations/DecayAnimation.js +0 -59
- package/dist/cjs/vendor/react-native/Animated/animations/DecayAnimation.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/animations/SpringAnimation.js +0 -155
- package/dist/cjs/vendor/react-native/Animated/animations/SpringAnimation.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/animations/TimingAnimation.js +0 -80
- package/dist/cjs/vendor/react-native/Animated/animations/TimingAnimation.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/bezier.js +0 -77
- package/dist/cjs/vendor/react-native/Animated/bezier.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedFlatList.js +0 -32
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedFlatList.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.js +0 -24
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.js +0 -32
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedSectionList.js +0 -32
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedSectionList.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.js +0 -24
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.js +0 -24
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.js +0 -37
- package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedAddition.js +0 -52
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedAddition.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedColor.js +0 -172
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedColor.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js +0 -57
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDivision.js +0 -54
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDivision.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedInterpolation.js +0 -167
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedInterpolation.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedModulo.js +0 -52
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedModulo.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedMultiplication.js +0 -52
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedMultiplication.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedNode.js +0 -134
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedNode.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedProps.js +0 -107
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedProps.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedStyle.js +0 -95
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedStyle.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedSubtraction.js +0 -52
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedSubtraction.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTracking.js +0 -69
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTracking.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTransform.js +0 -94
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTransform.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValue.js +0 -181
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValue.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValueXY.js +0 -82
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValueXY.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedWithChildren.js +0 -66
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedWithChildren.js.map +0 -6
- package/dist/cjs/vendor/react-native/Animated/useAnimatedProps.js +0 -75
- package/dist/cjs/vendor/react-native/Animated/useAnimatedProps.js.map +0 -6
- package/dist/cjs/vendor/react-native/Batchinator/index.js +0 -51
- package/dist/cjs/vendor/react-native/Batchinator/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/EventEmitter/NativeEventEmitter.js +0 -60
- package/dist/cjs/vendor/react-native/EventEmitter/NativeEventEmitter.js.map +0 -6
- package/dist/cjs/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.js +0 -24
- package/dist/cjs/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.js.map +0 -6
- package/dist/cjs/vendor/react-native/FeatureFlags.js +0 -28
- package/dist/cjs/vendor/react-native/FeatureFlags.js.map +0 -6
- package/dist/cjs/vendor/react-native/FillRateHelper/index.js +0 -125
- package/dist/cjs/vendor/react-native/FillRateHelper/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/FlatList/index.js +0 -263
- package/dist/cjs/vendor/react-native/FlatList/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/JSEventLoopWatchdog/index.js +0 -57
- package/dist/cjs/vendor/react-native/JSEventLoopWatchdog/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/LayoutAnimation/index.js +0 -102
- package/dist/cjs/vendor/react-native/LayoutAnimation/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/PanResponder/index.js +0 -147
- package/dist/cjs/vendor/react-native/PanResponder/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/PooledClass/index.js +0 -39
- package/dist/cjs/vendor/react-native/PooledClass/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js +0 -29
- package/dist/cjs/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js.map +0 -6
- package/dist/cjs/vendor/react-native/SectionList/index.js +0 -87
- package/dist/cjs/vendor/react-native/SectionList/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/StaticContainer/index.js +0 -41
- package/dist/cjs/vendor/react-native/StaticContainer/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/StaticRenderer/index.js +0 -40
- package/dist/cjs/vendor/react-native/StaticRenderer/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/TouchHistoryMath/index.js +0 -119
- package/dist/cjs/vendor/react-native/TouchHistoryMath/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/TurboModule/RCTExport.js +0 -27
- package/dist/cjs/vendor/react-native/TurboModule/RCTExport.js.map +0 -6
- package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.js +0 -33
- package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.js.map +0 -6
- package/dist/cjs/vendor/react-native/Types/CoreEventTypes.js +0 -128
- package/dist/cjs/vendor/react-native/Types/CoreEventTypes.js.map +0 -6
- package/dist/cjs/vendor/react-native/Utilities/Platform.js +0 -23
- package/dist/cjs/vendor/react-native/Utilities/Platform.js.map +0 -6
- package/dist/cjs/vendor/react-native/Utilities/clamp.js +0 -26
- package/dist/cjs/vendor/react-native/Utilities/clamp.js.map +0 -6
- package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.js +0 -29
- package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.js.map +0 -6
- package/dist/cjs/vendor/react-native/Utilities/useMergeRefs.js +0 -33
- package/dist/cjs/vendor/react-native/Utilities/useMergeRefs.js.map +0 -6
- package/dist/cjs/vendor/react-native/Utilities/useRefEffect.js +0 -32
- package/dist/cjs/vendor/react-native/Utilities/useRefEffect.js.map +0 -6
- package/dist/cjs/vendor/react-native/ViewabilityHelper/index.js +0 -153
- package/dist/cjs/vendor/react-native/ViewabilityHelper/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/ViewabilityHelper.js +0 -145
- package/dist/cjs/vendor/react-native/ViewabilityHelper.js.map +0 -6
- package/dist/cjs/vendor/react-native/VirtualizeUtils/index.js +0 -86
- package/dist/cjs/vendor/react-native/VirtualizeUtils/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/VirtualizedList/CellRenderMask.js +0 -78
- package/dist/cjs/vendor/react-native/VirtualizedList/CellRenderMask.js.map +0 -6
- package/dist/cjs/vendor/react-native/VirtualizedList/ChildListCollection.js +0 -61
- package/dist/cjs/vendor/react-native/VirtualizedList/ChildListCollection.js.map +0 -6
- package/dist/cjs/vendor/react-native/VirtualizedList/StateSafePureComponent.js +0 -76
- package/dist/cjs/vendor/react-native/VirtualizedList/StateSafePureComponent.js.map +0 -6
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.js +0 -160
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.js.map +0 -6
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListContext.js +0 -65
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListContext.js.map +0 -6
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListProps.js +0 -59
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListProps.js.map +0 -6
- package/dist/cjs/vendor/react-native/VirtualizedList/index.js +0 -238
- package/dist/cjs/vendor/react-native/VirtualizedList/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/VirtualizedSectionList/index.js +0 -119
- package/dist/cjs/vendor/react-native/VirtualizedSectionList/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/deepDiffer/index.js +0 -49
- package/dist/cjs/vendor/react-native/deepDiffer/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/emitter/EventEmitter.js +0 -24
- package/dist/cjs/vendor/react-native/emitter/EventEmitter.js.map +0 -6
- package/dist/cjs/vendor/react-native/emitter/EventSubscription.js +0 -2
- package/dist/cjs/vendor/react-native/emitter/EventSubscription.js.map +0 -6
- package/dist/cjs/vendor/react-native/emitter/_EmitterSubscription.js +0 -48
- package/dist/cjs/vendor/react-native/emitter/_EmitterSubscription.js.map +0 -6
- package/dist/cjs/vendor/react-native/emitter/_EventEmitter.js +0 -128
- package/dist/cjs/vendor/react-native/emitter/_EventEmitter.js.map +0 -6
- package/dist/cjs/vendor/react-native/emitter/_EventSubscription.js +0 -38
- package/dist/cjs/vendor/react-native/emitter/_EventSubscription.js.map +0 -6
- package/dist/cjs/vendor/react-native/emitter/_EventSubscriptionVendor.js +0 -77
- package/dist/cjs/vendor/react-native/emitter/_EventSubscriptionVendor.js.map +0 -6
- package/dist/cjs/vendor/react-native/infoLog/index.js +0 -26
- package/dist/cjs/vendor/react-native/infoLog/index.js.map +0 -6
- package/dist/cjs/vendor/react-native/useRefEffect.js +0 -32
- package/dist/cjs/vendor/react-native/useRefEffect.js.map +0 -6
- package/dist/cjs/vendor/react-native/vendor/emitter/EventEmitter.js +0 -87
- package/dist/cjs/vendor/react-native/vendor/emitter/EventEmitter.js.map +0 -6
- package/dist/cjs/without-animated.js +0 -179
- package/dist/cjs/without-animated.js.map +0 -6
- package/dist/esm/AccessibilityInfo/index.js +0 -79
- package/dist/esm/AccessibilityInfo/index.js.map +0 -6
- package/dist/esm/ActivityIndicator/__tests__/index-test.js +0 -102
- package/dist/esm/ActivityIndicator/__tests__/index-test.js.map +0 -6
- package/dist/esm/ActivityIndicator/index.js +0 -88
- package/dist/esm/ActivityIndicator/index.js.map +0 -6
- package/dist/esm/Alert/index.js +0 -8
- package/dist/esm/Alert/index.js.map +0 -6
- package/dist/esm/AppRegistry/AppContainer.js +0 -20
- package/dist/esm/AppRegistry/AppContainer.js.map +0 -6
- package/dist/esm/AppRegistry/__tests__/index-test.js +0 -59
- package/dist/esm/AppRegistry/__tests__/index-test.js.map +0 -6
- package/dist/esm/AppRegistry/__tests__/index-test.node.js +0 -116
- package/dist/esm/AppRegistry/__tests__/index-test.node.js.map +0 -6
- package/dist/esm/AppRegistry/index.js +0 -76
- package/dist/esm/AppRegistry/index.js.map +0 -6
- package/dist/esm/AppRegistry/renderApplication.js +0 -31
- package/dist/esm/AppRegistry/renderApplication.js.map +0 -6
- package/dist/esm/AppState/__tests__/index-test.js +0 -14
- package/dist/esm/AppState/__tests__/index-test.js.map +0 -6
- package/dist/esm/AppState/index.js +0 -55
- package/dist/esm/AppState/index.js.map +0 -6
- package/dist/esm/Appearance/index.js +0 -24
- package/dist/esm/Appearance/index.js.map +0 -6
- package/dist/esm/BackHandler/index.js +0 -15
- package/dist/esm/BackHandler/index.js.map +0 -6
- package/dist/esm/Clipboard/index.js +0 -31
- package/dist/esm/Clipboard/index.js.map +0 -6
- package/dist/esm/DeviceEmitter.js +0 -6
- package/dist/esm/DeviceEmitter.js.map +0 -6
- package/dist/esm/DeviceInfo/index.js +0 -38
- package/dist/esm/DeviceInfo/index.js.map +0 -6
- package/dist/esm/Dimensions/__tests__/index-test.js +0 -32
- package/dist/esm/Dimensions/__tests__/index-test.js.map +0 -6
- package/dist/esm/Dimensions/index.js +0 -60
- package/dist/esm/Dimensions/index.js.map +0 -6
- package/dist/esm/FlatList.js +0 -177
- package/dist/esm/FlatList.js.map +0 -6
- package/dist/esm/I18nManager/index.js +0 -13
- package/dist/esm/I18nManager/index.js.map +0 -6
- package/dist/esm/Image/index.js +0 -240
- package/dist/esm/Image/index.js.map +0 -6
- package/dist/esm/Image/types.js +0 -1
- package/dist/esm/Image/types.js.map +0 -6
- package/dist/esm/ImageBackground/__tests__/index-test.js +0 -32
- package/dist/esm/ImageBackground/__tests__/index-test.js.map +0 -6
- package/dist/esm/ImageBackground/index.js +0 -43
- package/dist/esm/ImageBackground/index.js.map +0 -6
- package/dist/esm/InteractionManager/TaskQueue.js +0 -59
- package/dist/esm/InteractionManager/TaskQueue.js.map +0 -6
- package/dist/esm/InteractionManager/index.js +0 -73
- package/dist/esm/InteractionManager/index.js.map +0 -6
- package/dist/esm/Keyboard/index.js +0 -18
- package/dist/esm/Keyboard/index.js.map +0 -6
- package/dist/esm/KeyboardAvoidingView/index.js +0 -35
- package/dist/esm/KeyboardAvoidingView/index.js.map +0 -6
- package/dist/esm/Linking/__tests__/index-test.js +0 -19
- package/dist/esm/Linking/__tests__/index-test.js.map +0 -6
- package/dist/esm/Linking/index.js +0 -69
- package/dist/esm/Linking/index.js.map +0 -6
- package/dist/esm/LogBox/index.js +0 -16
- package/dist/esm/LogBox/index.js.map +0 -6
- package/dist/esm/Modal/ModalAnimation.js +0 -116
- package/dist/esm/Modal/ModalAnimation.js.map +0 -6
- package/dist/esm/Modal/ModalContent.js +0 -55
- package/dist/esm/Modal/ModalContent.js.map +0 -6
- package/dist/esm/Modal/ModalPortal.js +0 -20
- package/dist/esm/Modal/ModalPortal.js.map +0 -6
- package/dist/esm/Modal/index.js +0 -5
- package/dist/esm/Modal/index.js.map +0 -6
- package/dist/esm/NativeModules/index.js +0 -8
- package/dist/esm/NativeModules/index.js.map +0 -6
- package/dist/esm/PanResponder/index.js +0 -5
- package/dist/esm/PanResponder/index.js.map +0 -6
- package/dist/esm/PixelRatio/index.js +0 -36
- package/dist/esm/PixelRatio/index.js.map +0 -6
- package/dist/esm/Pressable/index.js +0 -122
- package/dist/esm/Pressable/index.js.map +0 -6
- package/dist/esm/RefreshControl/index.js +0 -26
- package/dist/esm/RefreshControl/index.js.map +0 -6
- package/dist/esm/SafeAreaView/index.js +0 -23
- package/dist/esm/SafeAreaView/index.js.map +0 -6
- package/dist/esm/ScrollView/ScrollViewBase.js +0 -104
- package/dist/esm/ScrollView/ScrollViewBase.js.map +0 -6
- package/dist/esm/ScrollView/index.js +0 -515
- package/dist/esm/ScrollView/index.js.map +0 -6
- package/dist/esm/SectionList.js +0 -7
- package/dist/esm/SectionList.js.map +0 -6
- package/dist/esm/Share/index.js +0 -39
- package/dist/esm/Share/index.js.map +0 -6
- package/dist/esm/StatusBar/index.js +0 -16
- package/dist/esm/StatusBar/index.js.map +0 -6
- package/dist/esm/Text/index.js +0 -142
- package/dist/esm/Text/index.js.map +0 -6
- package/dist/esm/Text/types.js +0 -1
- package/dist/esm/Text/types.js.map +0 -6
- package/dist/esm/TextInput/index.js +0 -258
- package/dist/esm/TextInput/index.js.map +0 -6
- package/dist/esm/TextInput/types.js +0 -1
- package/dist/esm/TextInput/types.js.map +0 -6
- package/dist/esm/TouchableNativeFeedback.js +0 -5
- package/dist/esm/TouchableNativeFeedback.js.map +0 -6
- package/dist/esm/TouchableOpacity.js +0 -105
- package/dist/esm/TouchableOpacity.js.map +0 -6
- package/dist/esm/TouchableWithoutFeedback.js +0 -67
- package/dist/esm/TouchableWithoutFeedback.js.map +0 -6
- package/dist/esm/UnimplementedView.js +0 -14
- package/dist/esm/UnimplementedView.js.map +0 -6
- package/dist/esm/Vibration/index.js +0 -14
- package/dist/esm/Vibration/index.js.map +0 -6
- package/dist/esm/View/index.js +0 -90
- package/dist/esm/View/index.js.map +0 -6
- package/dist/esm/View/types.js +0 -1
- package/dist/esm/View/types.js.map +0 -6
- package/dist/esm/VirtualizedList.js +0 -7
- package/dist/esm/VirtualizedList.js.map +0 -6
- package/dist/esm/codegenNativeCommand.js +0 -7
- package/dist/esm/codegenNativeCommand.js.map +0 -6
- package/dist/esm/codegenNativeComponent.js +0 -7
- package/dist/esm/codegenNativeComponent.js.map +0 -6
- package/dist/esm/createElement/__tests__/index-test.js +0 -519
- package/dist/esm/createElement/__tests__/index-test.js.map +0 -6
- package/dist/esm/createElement/index.js +0 -48
- package/dist/esm/createElement/index.js.map +0 -6
- package/dist/esm/createReactDOMStyle.js +0 -5
- package/dist/esm/createReactDOMStyle.js.map +0 -6
- package/dist/esm/modules/requestIdleCallback.js +0 -18
- package/dist/esm/modules/requestIdleCallback.js.map +0 -6
- package/dist/esm/preprocess.js +0 -13
- package/dist/esm/preprocess.js.map +0 -6
- package/dist/esm/render/index.js +0 -15
- package/dist/esm/render/index.js.map +0 -6
- package/dist/esm/styleTypes.js +0 -1
- package/dist/esm/styleTypes.js.map +0 -6
- package/dist/esm/types.js +0 -1
- package/dist/esm/types.js.map +0 -6
- package/dist/esm/useColorScheme/index.js +0 -16
- package/dist/esm/useColorScheme/index.js.map +0 -6
- package/dist/esm/useLocaleContext/index.js +0 -5
- package/dist/esm/useLocaleContext/index.js.map +0 -6
- package/dist/esm/useWindowDimensions/index.js +0 -17
- package/dist/esm/useWindowDimensions/index.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/Animated.js +0 -24
- package/dist/esm/vendor/react-native/Animated/Animated.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/AnimatedEvent.js +0 -116
- package/dist/esm/vendor/react-native/Animated/AnimatedEvent.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/AnimatedImplementation.js +0 -433
- package/dist/esm/vendor/react-native/Animated/AnimatedImplementation.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/AnimatedMock.js +0 -105
- package/dist/esm/vendor/react-native/Animated/AnimatedMock.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/AnimatedPlatformConfig.js +0 -1
- package/dist/esm/vendor/react-native/Animated/AnimatedPlatformConfig.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/Easing.js +0 -165
- package/dist/esm/vendor/react-native/Animated/Easing.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedHelper.js +0 -312
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedHelper.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedModule.js +0 -66
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedModule.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedTurboModule.js +0 -61
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedTurboModule.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/SpringConfig.js +0 -55
- package/dist/esm/vendor/react-native/Animated/SpringConfig.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/animations/Animation.js +0 -46
- package/dist/esm/vendor/react-native/Animated/animations/Animation.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/animations/DecayAnimation.js +0 -43
- package/dist/esm/vendor/react-native/Animated/animations/DecayAnimation.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/animations/SpringAnimation.js +0 -141
- package/dist/esm/vendor/react-native/Animated/animations/SpringAnimation.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/animations/TimingAnimation.js +0 -66
- package/dist/esm/vendor/react-native/Animated/animations/TimingAnimation.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/bezier.js +0 -60
- package/dist/esm/vendor/react-native/Animated/bezier.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/components/AnimatedFlatList.js +0 -11
- package/dist/esm/vendor/react-native/Animated/components/AnimatedFlatList.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/components/AnimatedImage.js +0 -10
- package/dist/esm/vendor/react-native/Animated/components/AnimatedImage.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/components/AnimatedScrollView.js +0 -11
- package/dist/esm/vendor/react-native/Animated/components/AnimatedScrollView.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/components/AnimatedSectionList.js +0 -11
- package/dist/esm/vendor/react-native/Animated/components/AnimatedSectionList.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/components/AnimatedText.js +0 -9
- package/dist/esm/vendor/react-native/Animated/components/AnimatedText.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/components/AnimatedView.js +0 -9
- package/dist/esm/vendor/react-native/Animated/components/AnimatedView.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/createAnimatedComponent.js +0 -16
- package/dist/esm/vendor/react-native/Animated/createAnimatedComponent.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedAddition.js +0 -37
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedAddition.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedColor.js +0 -159
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedColor.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js +0 -42
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDivision.js +0 -40
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDivision.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedInterpolation.js +0 -152
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedInterpolation.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedModulo.js +0 -37
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedModulo.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedMultiplication.js +0 -37
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedMultiplication.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedNode.js +0 -118
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedNode.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedProps.js +0 -95
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedProps.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedStyle.js +0 -83
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedStyle.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.js +0 -37
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTracking.js +0 -55
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTracking.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTransform.js +0 -79
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTransform.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValue.js +0 -167
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValue.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValueXY.js +0 -68
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValueXY.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedWithChildren.js +0 -50
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedWithChildren.js.map +0 -6
- package/dist/esm/vendor/react-native/Animated/useAnimatedProps.js +0 -63
- package/dist/esm/vendor/react-native/Animated/useAnimatedProps.js.map +0 -6
- package/dist/esm/vendor/react-native/Batchinator/index.js +0 -34
- package/dist/esm/vendor/react-native/Batchinator/index.js.map +0 -6
- package/dist/esm/vendor/react-native/EventEmitter/NativeEventEmitter.js +0 -44
- package/dist/esm/vendor/react-native/EventEmitter/NativeEventEmitter.js.map +0 -6
- package/dist/esm/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.js +0 -8
- package/dist/esm/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.js.map +0 -6
- package/dist/esm/vendor/react-native/FeatureFlags.js +0 -12
- package/dist/esm/vendor/react-native/FeatureFlags.js.map +0 -6
- package/dist/esm/vendor/react-native/FillRateHelper/index.js +0 -109
- package/dist/esm/vendor/react-native/FillRateHelper/index.js.map +0 -6
- package/dist/esm/vendor/react-native/FlatList/index.js +0 -247
- package/dist/esm/vendor/react-native/FlatList/index.js.map +0 -6
- package/dist/esm/vendor/react-native/JSEventLoopWatchdog/index.js +0 -40
- package/dist/esm/vendor/react-native/JSEventLoopWatchdog/index.js.map +0 -6
- package/dist/esm/vendor/react-native/LayoutAnimation/index.js +0 -86
- package/dist/esm/vendor/react-native/LayoutAnimation/index.js.map +0 -6
- package/dist/esm/vendor/react-native/PanResponder/index.js +0 -124
- package/dist/esm/vendor/react-native/PanResponder/index.js.map +0 -6
- package/dist/esm/vendor/react-native/PooledClass/index.js +0 -23
- package/dist/esm/vendor/react-native/PooledClass/index.js.map +0 -6
- package/dist/esm/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js +0 -13
- package/dist/esm/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js.map +0 -6
- package/dist/esm/vendor/react-native/SectionList/index.js +0 -65
- package/dist/esm/vendor/react-native/SectionList/index.js.map +0 -6
- package/dist/esm/vendor/react-native/StaticContainer/index.js +0 -16
- package/dist/esm/vendor/react-native/StaticContainer/index.js.map +0 -6
- package/dist/esm/vendor/react-native/StaticRenderer/index.js +0 -15
- package/dist/esm/vendor/react-native/StaticRenderer/index.js.map +0 -6
- package/dist/esm/vendor/react-native/TouchHistoryMath/index.js +0 -103
- package/dist/esm/vendor/react-native/TouchHistoryMath/index.js.map +0 -6
- package/dist/esm/vendor/react-native/TurboModule/RCTExport.js +0 -10
- package/dist/esm/vendor/react-native/TurboModule/RCTExport.js.map +0 -6
- package/dist/esm/vendor/react-native/TurboModule/TurboModuleRegistry.js +0 -16
- package/dist/esm/vendor/react-native/TurboModule/TurboModuleRegistry.js.map +0 -6
- package/dist/esm/vendor/react-native/Types/CoreEventTypes.js +0 -111
- package/dist/esm/vendor/react-native/Types/CoreEventTypes.js.map +0 -6
- package/dist/esm/vendor/react-native/Utilities/Platform.js +0 -7
- package/dist/esm/vendor/react-native/Utilities/Platform.js.map +0 -6
- package/dist/esm/vendor/react-native/Utilities/clamp.js +0 -9
- package/dist/esm/vendor/react-native/Utilities/clamp.js.map +0 -6
- package/dist/esm/vendor/react-native/Utilities/setAndForwardRef.js +0 -12
- package/dist/esm/vendor/react-native/Utilities/setAndForwardRef.js.map +0 -6
- package/dist/esm/vendor/react-native/Utilities/useMergeRefs.js +0 -17
- package/dist/esm/vendor/react-native/Utilities/useMergeRefs.js.map +0 -6
- package/dist/esm/vendor/react-native/Utilities/useRefEffect.js +0 -16
- package/dist/esm/vendor/react-native/Utilities/useRefEffect.js.map +0 -6
- package/dist/esm/vendor/react-native/ViewabilityHelper/index.js +0 -136
- package/dist/esm/vendor/react-native/ViewabilityHelper/index.js.map +0 -6
- package/dist/esm/vendor/react-native/ViewabilityHelper.js +0 -129
- package/dist/esm/vendor/react-native/ViewabilityHelper.js.map +0 -6
- package/dist/esm/vendor/react-native/VirtualizeUtils/index.js +0 -70
- package/dist/esm/vendor/react-native/VirtualizeUtils/index.js.map +0 -6
- package/dist/esm/vendor/react-native/VirtualizedList/CellRenderMask.js +0 -62
- package/dist/esm/vendor/react-native/VirtualizedList/CellRenderMask.js.map +0 -6
- package/dist/esm/vendor/react-native/VirtualizedList/ChildListCollection.js +0 -45
- package/dist/esm/vendor/react-native/VirtualizedList/ChildListCollection.js.map +0 -6
- package/dist/esm/vendor/react-native/VirtualizedList/StateSafePureComponent.js +0 -53
- package/dist/esm/vendor/react-native/VirtualizedList/StateSafePureComponent.js.map +0 -6
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.js +0 -140
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.js.map +0 -6
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListContext.js +0 -44
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListContext.js.map +0 -6
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListProps.js +0 -43
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListProps.js.map +0 -6
- package/dist/esm/vendor/react-native/VirtualizedList/index.js +0 -232
- package/dist/esm/vendor/react-native/VirtualizedList/index.js.map +0 -6
- package/dist/esm/vendor/react-native/VirtualizedSectionList/index.js +0 -97
- package/dist/esm/vendor/react-native/VirtualizedSectionList/index.js.map +0 -6
- package/dist/esm/vendor/react-native/deepDiffer/index.js +0 -32
- package/dist/esm/vendor/react-native/deepDiffer/index.js.map +0 -6
- package/dist/esm/vendor/react-native/emitter/EventEmitter.js +0 -7
- package/dist/esm/vendor/react-native/emitter/EventEmitter.js.map +0 -6
- package/dist/esm/vendor/react-native/emitter/EventSubscription.js +0 -1
- package/dist/esm/vendor/react-native/emitter/EventSubscription.js.map +0 -6
- package/dist/esm/vendor/react-native/emitter/_EmitterSubscription.js +0 -31
- package/dist/esm/vendor/react-native/emitter/_EmitterSubscription.js.map +0 -6
- package/dist/esm/vendor/react-native/emitter/_EventEmitter.js +0 -115
- package/dist/esm/vendor/react-native/emitter/_EventEmitter.js.map +0 -6
- package/dist/esm/vendor/react-native/emitter/_EventSubscription.js +0 -21
- package/dist/esm/vendor/react-native/emitter/_EventSubscription.js.map +0 -6
- package/dist/esm/vendor/react-native/emitter/_EventSubscriptionVendor.js +0 -60
- package/dist/esm/vendor/react-native/emitter/_EventSubscriptionVendor.js.map +0 -6
- package/dist/esm/vendor/react-native/infoLog/index.js +0 -9
- package/dist/esm/vendor/react-native/infoLog/index.js.map +0 -6
- package/dist/esm/vendor/react-native/useRefEffect.js +0 -16
- package/dist/esm/vendor/react-native/useRefEffect.js.map +0 -6
- package/dist/esm/vendor/react-native/vendor/emitter/EventEmitter.js +0 -71
- package/dist/esm/vendor/react-native/vendor/emitter/EventEmitter.js.map +0 -6
- package/dist/esm/without-animated.js +0 -229
- package/dist/esm/without-animated.js.map +0 -6
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { AnimatedEvent, attachNativeEvent } from "./AnimatedEvent.mjs";
|
|
2
|
+
import { DecayAnimation } from "./animations/DecayAnimation.mjs";
|
|
3
|
+
import { SpringAnimation } from "./animations/SpringAnimation.mjs";
|
|
4
|
+
import { TimingAnimation } from "./animations/TimingAnimation.mjs";
|
|
2
5
|
import { AnimatedAddition } from "./nodes/AnimatedAddition.mjs";
|
|
3
6
|
import { AnimatedDiffClamp } from "./nodes/AnimatedDiffClamp.mjs";
|
|
4
7
|
import { AnimatedDivision } from "./nodes/AnimatedDivision.mjs";
|
|
@@ -6,476 +9,550 @@ import { AnimatedInterpolation } from "./nodes/AnimatedInterpolation.mjs";
|
|
|
6
9
|
import { AnimatedModulo } from "./nodes/AnimatedModulo.mjs";
|
|
7
10
|
import { AnimatedMultiplication } from "./nodes/AnimatedMultiplication.mjs";
|
|
8
11
|
import { AnimatedNode } from "./nodes/AnimatedNode.mjs";
|
|
9
|
-
import "./nodes/AnimatedProps.mjs";
|
|
10
12
|
import { AnimatedSubtraction } from "./nodes/AnimatedSubtraction.mjs";
|
|
11
13
|
import { AnimatedTracking } from "./nodes/AnimatedTracking.mjs";
|
|
12
14
|
import { AnimatedValue } from "./nodes/AnimatedValue.mjs";
|
|
13
15
|
import { AnimatedValueXY } from "./nodes/AnimatedValueXY.mjs";
|
|
14
|
-
import { DecayAnimation } from "./animations/DecayAnimation.mjs";
|
|
15
|
-
import { SpringAnimation } from "./animations/SpringAnimation.mjs";
|
|
16
|
-
import { TimingAnimation } from "./animations/TimingAnimation.mjs";
|
|
17
16
|
import { createAnimatedComponent } from "./createAnimatedComponent.mjs";
|
|
18
|
-
import "./animations/Animation.mjs";
|
|
19
17
|
import { AnimatedColor } from "./nodes/AnimatedColor.mjs";
|
|
20
18
|
const add = function (a, b) {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
maybeVectorAnim = function (value, config, anim) {
|
|
44
|
-
if (value instanceof AnimatedValueXY) {
|
|
45
|
-
const configX = {
|
|
46
|
-
...config
|
|
47
|
-
},
|
|
48
|
-
configY = {
|
|
49
|
-
...config
|
|
50
|
-
};
|
|
51
|
-
for (const key in config) {
|
|
52
|
-
const {
|
|
53
|
-
x,
|
|
54
|
-
y
|
|
55
|
-
} = config[key];
|
|
56
|
-
x !== void 0 && y !== void 0 && (configX[key] = x, configY[key] = y);
|
|
57
|
-
}
|
|
58
|
-
const aX = anim(value.x, configX),
|
|
59
|
-
aY = anim(value.y, configY);
|
|
60
|
-
return parallel([aX, aY], {
|
|
61
|
-
stopTogether: !1
|
|
62
|
-
});
|
|
63
|
-
} else if (value instanceof AnimatedColor) {
|
|
64
|
-
const configR = {
|
|
65
|
-
...config
|
|
66
|
-
},
|
|
67
|
-
configG = {
|
|
68
|
-
...config
|
|
69
|
-
},
|
|
70
|
-
configB = {
|
|
71
|
-
...config
|
|
72
|
-
},
|
|
73
|
-
configA = {
|
|
74
|
-
...config
|
|
75
|
-
};
|
|
76
|
-
for (const key in config) {
|
|
77
|
-
const {
|
|
78
|
-
r,
|
|
79
|
-
g,
|
|
80
|
-
b,
|
|
81
|
-
a
|
|
82
|
-
} = config[key];
|
|
83
|
-
r !== void 0 && g !== void 0 && b !== void 0 && a !== void 0 && (configR[key] = r, configG[key] = g, configB[key] = b, configA[key] = a);
|
|
84
|
-
}
|
|
85
|
-
const aR = anim(value.r, configR),
|
|
86
|
-
aG = anim(value.g, configG),
|
|
87
|
-
aB = anim(value.b, configB),
|
|
88
|
-
aA = anim(value.a, configA);
|
|
89
|
-
return parallel([aR, aG, aB, aA], {
|
|
90
|
-
stopTogether: !1
|
|
91
|
-
});
|
|
92
|
-
}
|
|
93
|
-
return null;
|
|
94
|
-
},
|
|
95
|
-
spring = function (value, config) {
|
|
96
|
-
const start = function (animatedValue, configuration, callback) {
|
|
97
|
-
callback = _combineCallbacks(callback, configuration);
|
|
98
|
-
const singleValue = animatedValue,
|
|
99
|
-
singleConfig = configuration;
|
|
100
|
-
singleValue.stopTracking(), configuration.toValue instanceof AnimatedNode ? singleValue.track(new AnimatedTracking(singleValue, configuration.toValue, SpringAnimation, singleConfig, callback)) : singleValue.animate(new SpringAnimation(singleConfig), callback);
|
|
19
|
+
return new AnimatedAddition(a, b);
|
|
20
|
+
};
|
|
21
|
+
const subtract = function (a, b) {
|
|
22
|
+
return new AnimatedSubtraction(a, b);
|
|
23
|
+
};
|
|
24
|
+
const divide = function (a, b) {
|
|
25
|
+
return new AnimatedDivision(a, b);
|
|
26
|
+
};
|
|
27
|
+
const multiply = function (a, b) {
|
|
28
|
+
return new AnimatedMultiplication(a, b);
|
|
29
|
+
};
|
|
30
|
+
const modulo = function (a, modulus) {
|
|
31
|
+
return new AnimatedModulo(a, modulus);
|
|
32
|
+
};
|
|
33
|
+
const diffClamp = function (a, min, max) {
|
|
34
|
+
return new AnimatedDiffClamp(a, min, max);
|
|
35
|
+
};
|
|
36
|
+
const _combineCallbacks = function (callback, config) {
|
|
37
|
+
if (callback && config.onComplete) {
|
|
38
|
+
return (...args) => {
|
|
39
|
+
config.onComplete && config.onComplete(...args);
|
|
40
|
+
callback && callback(...args);
|
|
101
41
|
};
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
value.resetAnimation();
|
|
111
|
-
},
|
|
112
|
-
_startNativeLoop: function (iterations) {
|
|
113
|
-
const singleConfig = {
|
|
114
|
-
...config,
|
|
115
|
-
iterations
|
|
116
|
-
};
|
|
117
|
-
start(value, singleConfig);
|
|
118
|
-
},
|
|
119
|
-
_isUsingNativeDriver: function () {
|
|
120
|
-
return config.useNativeDriver || !1;
|
|
121
|
-
}
|
|
42
|
+
} else {
|
|
43
|
+
return callback || config.onComplete;
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
const maybeVectorAnim = function (value, config, anim) {
|
|
47
|
+
if (value instanceof AnimatedValueXY) {
|
|
48
|
+
const configX = {
|
|
49
|
+
...config
|
|
122
50
|
};
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
const start = function (animatedValue, configuration, callback) {
|
|
126
|
-
callback = _combineCallbacks(callback, configuration);
|
|
127
|
-
const singleValue = animatedValue,
|
|
128
|
-
singleConfig = configuration;
|
|
129
|
-
singleValue.stopTracking(), configuration.toValue instanceof AnimatedNode ? singleValue.track(new AnimatedTracking(singleValue, configuration.toValue, TimingAnimation, singleConfig, callback)) : singleValue.animate(new TimingAnimation(singleConfig), callback);
|
|
51
|
+
const configY = {
|
|
52
|
+
...config
|
|
130
53
|
};
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
value.resetAnimation();
|
|
140
|
-
},
|
|
141
|
-
_startNativeLoop: function (iterations) {
|
|
142
|
-
const singleConfig = {
|
|
143
|
-
...config,
|
|
144
|
-
iterations
|
|
145
|
-
};
|
|
146
|
-
start(value, singleConfig);
|
|
147
|
-
},
|
|
148
|
-
_isUsingNativeDriver: function () {
|
|
149
|
-
return config.useNativeDriver || !1;
|
|
54
|
+
for (const key in config) {
|
|
55
|
+
const {
|
|
56
|
+
x,
|
|
57
|
+
y
|
|
58
|
+
} = config[key];
|
|
59
|
+
if (x !== void 0 && y !== void 0) {
|
|
60
|
+
configX[key] = x;
|
|
61
|
+
configY[key] = y;
|
|
150
62
|
}
|
|
63
|
+
}
|
|
64
|
+
const aX = anim(value.x, configX);
|
|
65
|
+
const aY = anim(value.y, configY);
|
|
66
|
+
return parallel([aX, aY], {
|
|
67
|
+
stopTogether: false
|
|
68
|
+
});
|
|
69
|
+
} else if (value instanceof AnimatedColor) {
|
|
70
|
+
const configR = {
|
|
71
|
+
...config
|
|
151
72
|
};
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
const start = function (animatedValue, configuration, callback) {
|
|
155
|
-
callback = _combineCallbacks(callback, configuration);
|
|
156
|
-
const singleValue = animatedValue,
|
|
157
|
-
singleConfig = configuration;
|
|
158
|
-
singleValue.stopTracking(), singleValue.animate(new DecayAnimation(singleConfig), callback);
|
|
73
|
+
const configG = {
|
|
74
|
+
...config
|
|
159
75
|
};
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
start(value, config, callback);
|
|
163
|
-
},
|
|
164
|
-
stop: function () {
|
|
165
|
-
value.stopAnimation();
|
|
166
|
-
},
|
|
167
|
-
reset: function () {
|
|
168
|
-
value.resetAnimation();
|
|
169
|
-
},
|
|
170
|
-
_startNativeLoop: function (iterations) {
|
|
171
|
-
const singleConfig = {
|
|
172
|
-
...config,
|
|
173
|
-
iterations
|
|
174
|
-
};
|
|
175
|
-
start(value, singleConfig);
|
|
176
|
-
},
|
|
177
|
-
_isUsingNativeDriver: function () {
|
|
178
|
-
return config.useNativeDriver || !1;
|
|
179
|
-
}
|
|
76
|
+
const configB = {
|
|
77
|
+
...config
|
|
180
78
|
};
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
let current = 0;
|
|
184
|
-
return {
|
|
185
|
-
start: function (callback) {
|
|
186
|
-
const onComplete = function (result) {
|
|
187
|
-
if (!result.finished) {
|
|
188
|
-
callback && callback(result);
|
|
189
|
-
return;
|
|
190
|
-
}
|
|
191
|
-
if (current++, current === animations.length) {
|
|
192
|
-
callback && callback(result);
|
|
193
|
-
return;
|
|
194
|
-
}
|
|
195
|
-
animations[current].start(onComplete);
|
|
196
|
-
};
|
|
197
|
-
animations.length === 0 ? callback && callback({
|
|
198
|
-
finished: !0
|
|
199
|
-
}) : animations[current].start(onComplete);
|
|
200
|
-
},
|
|
201
|
-
stop: function () {
|
|
202
|
-
current < animations.length && animations[current].stop();
|
|
203
|
-
},
|
|
204
|
-
reset: function () {
|
|
205
|
-
animations.forEach((animation, idx) => {
|
|
206
|
-
idx <= current && animation.reset();
|
|
207
|
-
}), current = 0;
|
|
208
|
-
},
|
|
209
|
-
_startNativeLoop: function () {
|
|
210
|
-
throw new Error("Loops run using the native driver cannot contain Animated.sequence animations");
|
|
211
|
-
},
|
|
212
|
-
_isUsingNativeDriver: function () {
|
|
213
|
-
return !1;
|
|
214
|
-
}
|
|
79
|
+
const configA = {
|
|
80
|
+
...config
|
|
215
81
|
};
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
82
|
+
for (const key in config) {
|
|
83
|
+
const {
|
|
84
|
+
r,
|
|
85
|
+
g,
|
|
86
|
+
b,
|
|
87
|
+
a
|
|
88
|
+
} = config[key];
|
|
89
|
+
if (r !== void 0 && g !== void 0 && b !== void 0 && a !== void 0) {
|
|
90
|
+
configR[key] = r;
|
|
91
|
+
configG[key] = g;
|
|
92
|
+
configB[key] = b;
|
|
93
|
+
configA[key] = a;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
const aR = anim(value.r, configR);
|
|
97
|
+
const aG = anim(value.g, configG);
|
|
98
|
+
const aB = anim(value.b, configB);
|
|
99
|
+
const aA = anim(value.a, configA);
|
|
100
|
+
return parallel([aR, aG, aB, aA], {
|
|
101
|
+
stopTogether: false
|
|
102
|
+
});
|
|
103
|
+
}
|
|
104
|
+
return null;
|
|
105
|
+
};
|
|
106
|
+
const spring = function (value, config) {
|
|
107
|
+
const start = function (animatedValue, configuration, callback) {
|
|
108
|
+
callback = _combineCallbacks(callback, configuration);
|
|
109
|
+
const singleValue = animatedValue;
|
|
110
|
+
const singleConfig = configuration;
|
|
111
|
+
singleValue.stopTracking();
|
|
112
|
+
if (configuration.toValue instanceof AnimatedNode) {
|
|
113
|
+
singleValue.track(new AnimatedTracking(singleValue, configuration.toValue, SpringAnimation, singleConfig, callback));
|
|
114
|
+
} else {
|
|
115
|
+
singleValue.animate(new SpringAnimation(singleConfig), callback);
|
|
116
|
+
}
|
|
117
|
+
};
|
|
118
|
+
return maybeVectorAnim(value, config, spring) || {
|
|
119
|
+
start: function (callback) {
|
|
120
|
+
start(value, config, callback);
|
|
121
|
+
},
|
|
122
|
+
stop: function () {
|
|
123
|
+
value.stopAnimation();
|
|
124
|
+
},
|
|
125
|
+
reset: function () {
|
|
126
|
+
value.resetAnimation();
|
|
127
|
+
},
|
|
128
|
+
_startNativeLoop: function (iterations) {
|
|
129
|
+
const singleConfig = {
|
|
130
|
+
...config,
|
|
131
|
+
iterations
|
|
132
|
+
};
|
|
133
|
+
start(value, singleConfig);
|
|
134
|
+
},
|
|
135
|
+
_isUsingNativeDriver: function () {
|
|
136
|
+
return config.useNativeDriver || false;
|
|
137
|
+
}
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
const timing = function (value, config) {
|
|
141
|
+
const start = function (animatedValue, configuration, callback) {
|
|
142
|
+
callback = _combineCallbacks(callback, configuration);
|
|
143
|
+
const singleValue = animatedValue;
|
|
144
|
+
const singleConfig = configuration;
|
|
145
|
+
singleValue.stopTracking();
|
|
146
|
+
if (configuration.toValue instanceof AnimatedNode) {
|
|
147
|
+
singleValue.track(new AnimatedTracking(singleValue, configuration.toValue, TimingAnimation, singleConfig, callback));
|
|
148
|
+
} else {
|
|
149
|
+
singleValue.animate(new TimingAnimation(singleConfig), callback);
|
|
150
|
+
}
|
|
151
|
+
};
|
|
152
|
+
return maybeVectorAnim(value, config, timing) || {
|
|
153
|
+
start: function (callback) {
|
|
154
|
+
start(value, config, callback);
|
|
155
|
+
},
|
|
156
|
+
stop: function () {
|
|
157
|
+
value.stopAnimation();
|
|
158
|
+
},
|
|
159
|
+
reset: function () {
|
|
160
|
+
value.resetAnimation();
|
|
161
|
+
},
|
|
162
|
+
_startNativeLoop: function (iterations) {
|
|
163
|
+
const singleConfig = {
|
|
164
|
+
...config,
|
|
165
|
+
iterations
|
|
166
|
+
};
|
|
167
|
+
start(value, singleConfig);
|
|
168
|
+
},
|
|
169
|
+
_isUsingNativeDriver: function () {
|
|
170
|
+
return config.useNativeDriver || false;
|
|
171
|
+
}
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
const decay = function (value, config) {
|
|
175
|
+
const start = function (animatedValue, configuration, callback) {
|
|
176
|
+
callback = _combineCallbacks(callback, configuration);
|
|
177
|
+
const singleValue = animatedValue;
|
|
178
|
+
const singleConfig = configuration;
|
|
179
|
+
singleValue.stopTracking();
|
|
180
|
+
singleValue.animate(new DecayAnimation(singleConfig), callback);
|
|
181
|
+
};
|
|
182
|
+
return maybeVectorAnim(value, config, decay) || {
|
|
183
|
+
start: function (callback) {
|
|
184
|
+
start(value, config, callback);
|
|
185
|
+
},
|
|
186
|
+
stop: function () {
|
|
187
|
+
value.stopAnimation();
|
|
188
|
+
},
|
|
189
|
+
reset: function () {
|
|
190
|
+
value.resetAnimation();
|
|
191
|
+
},
|
|
192
|
+
_startNativeLoop: function (iterations) {
|
|
193
|
+
const singleConfig = {
|
|
194
|
+
...config,
|
|
195
|
+
iterations
|
|
196
|
+
};
|
|
197
|
+
start(value, singleConfig);
|
|
198
|
+
},
|
|
199
|
+
_isUsingNativeDriver: function () {
|
|
200
|
+
return config.useNativeDriver || false;
|
|
201
|
+
}
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
const sequence = function (animations) {
|
|
205
|
+
let current = 0;
|
|
206
|
+
return {
|
|
207
|
+
start: function (callback) {
|
|
208
|
+
const onComplete = function (result) {
|
|
209
|
+
if (!result.finished) {
|
|
210
|
+
callback && callback(result);
|
|
211
|
+
return;
|
|
212
|
+
}
|
|
213
|
+
current++;
|
|
214
|
+
if (current === animations.length) {
|
|
215
|
+
callback && callback(result);
|
|
216
|
+
return;
|
|
217
|
+
}
|
|
218
|
+
animations[current].start(onComplete);
|
|
219
|
+
};
|
|
220
|
+
if (animations.length === 0) {
|
|
221
|
+
callback && callback({
|
|
222
|
+
finished: true
|
|
223
|
+
});
|
|
224
|
+
} else {
|
|
225
|
+
animations[current].start(onComplete);
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
stop: function () {
|
|
229
|
+
if (current < animations.length) {
|
|
230
|
+
animations[current].stop();
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
reset: function () {
|
|
234
|
+
animations.forEach((animation, idx) => {
|
|
235
|
+
if (idx <= current) {
|
|
236
|
+
animation.reset();
|
|
237
|
+
}
|
|
238
|
+
});
|
|
239
|
+
current = 0;
|
|
240
|
+
},
|
|
241
|
+
_startNativeLoop: function () {
|
|
242
|
+
throw new Error("Loops run using the native driver cannot contain Animated.sequence animations");
|
|
243
|
+
},
|
|
244
|
+
_isUsingNativeDriver: function () {
|
|
245
|
+
return false;
|
|
246
|
+
}
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
const parallel = function (animations, config) {
|
|
250
|
+
let doneCount = 0;
|
|
251
|
+
const hasEnded = {};
|
|
252
|
+
const stopTogether = !(config && config.stopTogether === false);
|
|
253
|
+
const result = {
|
|
254
|
+
start: function (callback) {
|
|
255
|
+
if (doneCount === animations.length) {
|
|
256
|
+
callback && callback({
|
|
257
|
+
finished: true
|
|
258
|
+
});
|
|
259
|
+
return;
|
|
260
|
+
}
|
|
261
|
+
animations.forEach((animation, idx) => {
|
|
262
|
+
const cb = function (endResult) {
|
|
263
|
+
hasEnded[idx] = true;
|
|
264
|
+
doneCount++;
|
|
223
265
|
if (doneCount === animations.length) {
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
});
|
|
266
|
+
doneCount = 0;
|
|
267
|
+
callback && callback(endResult);
|
|
227
268
|
return;
|
|
228
269
|
}
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
};
|
|
237
|
-
animation ? animation.start(cb) : cb({
|
|
238
|
-
finished: !0
|
|
239
|
-
});
|
|
240
|
-
});
|
|
241
|
-
},
|
|
242
|
-
stop: function () {
|
|
243
|
-
animations.forEach((animation, idx) => {
|
|
244
|
-
!hasEnded[idx] && animation.stop(), hasEnded[idx] = !0;
|
|
245
|
-
});
|
|
246
|
-
},
|
|
247
|
-
reset: function () {
|
|
248
|
-
animations.forEach((animation, idx) => {
|
|
249
|
-
animation.reset(), hasEnded[idx] = !1, doneCount = 0;
|
|
270
|
+
if (!endResult.finished && stopTogether) {
|
|
271
|
+
result.stop();
|
|
272
|
+
}
|
|
273
|
+
};
|
|
274
|
+
if (!animation) {
|
|
275
|
+
cb({
|
|
276
|
+
finished: true
|
|
250
277
|
});
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
278
|
+
} else {
|
|
279
|
+
animation.start(cb);
|
|
280
|
+
}
|
|
281
|
+
});
|
|
282
|
+
},
|
|
283
|
+
stop: function () {
|
|
284
|
+
animations.forEach((animation, idx) => {
|
|
285
|
+
!hasEnded[idx] && animation.stop();
|
|
286
|
+
hasEnded[idx] = true;
|
|
287
|
+
});
|
|
288
|
+
},
|
|
289
|
+
reset: function () {
|
|
290
|
+
animations.forEach((animation, idx) => {
|
|
291
|
+
animation.reset();
|
|
292
|
+
hasEnded[idx] = false;
|
|
293
|
+
doneCount = 0;
|
|
294
|
+
});
|
|
295
|
+
},
|
|
296
|
+
_startNativeLoop: function () {
|
|
297
|
+
throw new Error("Loops run using the native driver cannot contain Animated.parallel animations");
|
|
298
|
+
},
|
|
299
|
+
_isUsingNativeDriver: function () {
|
|
300
|
+
return false;
|
|
301
|
+
}
|
|
302
|
+
};
|
|
303
|
+
return result;
|
|
304
|
+
};
|
|
305
|
+
const delay = function (time) {
|
|
306
|
+
return timing(new AnimatedValue(0), {
|
|
307
|
+
toValue: 0,
|
|
308
|
+
delay: time,
|
|
309
|
+
duration: 0,
|
|
310
|
+
useNativeDriver: false
|
|
311
|
+
});
|
|
312
|
+
};
|
|
313
|
+
const stagger = function (time, animations) {
|
|
314
|
+
return parallel(animations.map((animation, i) => {
|
|
315
|
+
return sequence([delay(time * i), animation]);
|
|
316
|
+
}));
|
|
317
|
+
};
|
|
318
|
+
const loop = function (animation, {
|
|
319
|
+
iterations = -1,
|
|
320
|
+
resetBeforeIteration = true
|
|
321
|
+
} = {}) {
|
|
322
|
+
let isFinished = false;
|
|
323
|
+
let iterationsSoFar = 0;
|
|
324
|
+
return {
|
|
325
|
+
start: function (callback) {
|
|
326
|
+
const restart = function (result = {
|
|
327
|
+
finished: true
|
|
328
|
+
}) {
|
|
329
|
+
if (isFinished || iterationsSoFar === iterations || result.finished === false) {
|
|
330
|
+
callback && callback(result);
|
|
331
|
+
} else {
|
|
332
|
+
iterationsSoFar++;
|
|
333
|
+
resetBeforeIteration && animation.reset();
|
|
334
|
+
animation.start(restart);
|
|
257
335
|
}
|
|
258
336
|
};
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
stagger = function (time, animations) {
|
|
270
|
-
return parallel(animations.map((animation, i) => sequence([delay(time * i), animation])));
|
|
271
|
-
},
|
|
272
|
-
loop = function (animation, {
|
|
273
|
-
iterations = -1,
|
|
274
|
-
resetBeforeIteration = !0
|
|
275
|
-
} = {}) {
|
|
276
|
-
let isFinished = !1,
|
|
277
|
-
iterationsSoFar = 0;
|
|
278
|
-
return {
|
|
279
|
-
start: function (callback) {
|
|
280
|
-
const restart = function (result = {
|
|
281
|
-
finished: !0
|
|
282
|
-
}) {
|
|
283
|
-
isFinished || iterationsSoFar === iterations || result.finished === !1 ? callback && callback(result) : (iterationsSoFar++, resetBeforeIteration && animation.reset(), animation.start(restart));
|
|
284
|
-
};
|
|
285
|
-
!animation || iterations === 0 ? callback && callback({
|
|
286
|
-
finished: !0
|
|
287
|
-
}) : animation._isUsingNativeDriver() ? animation._startNativeLoop(iterations) : restart();
|
|
288
|
-
},
|
|
289
|
-
stop: function () {
|
|
290
|
-
isFinished = !0, animation.stop();
|
|
291
|
-
},
|
|
292
|
-
reset: function () {
|
|
293
|
-
iterationsSoFar = 0, isFinished = !1, animation.reset();
|
|
294
|
-
},
|
|
295
|
-
_startNativeLoop: function () {
|
|
296
|
-
throw new Error("Loops run using the native driver cannot contain Animated.loop animations");
|
|
297
|
-
},
|
|
298
|
-
_isUsingNativeDriver: function () {
|
|
299
|
-
return animation._isUsingNativeDriver();
|
|
337
|
+
if (!animation || iterations === 0) {
|
|
338
|
+
callback && callback({
|
|
339
|
+
finished: true
|
|
340
|
+
});
|
|
341
|
+
} else {
|
|
342
|
+
if (animation._isUsingNativeDriver()) {
|
|
343
|
+
animation._startNativeLoop(iterations);
|
|
344
|
+
} else {
|
|
345
|
+
restart();
|
|
346
|
+
}
|
|
300
347
|
}
|
|
301
|
-
}
|
|
348
|
+
},
|
|
349
|
+
stop: function () {
|
|
350
|
+
isFinished = true;
|
|
351
|
+
animation.stop();
|
|
352
|
+
},
|
|
353
|
+
reset: function () {
|
|
354
|
+
iterationsSoFar = 0;
|
|
355
|
+
isFinished = false;
|
|
356
|
+
animation.reset();
|
|
357
|
+
},
|
|
358
|
+
_startNativeLoop: function () {
|
|
359
|
+
throw new Error("Loops run using the native driver cannot contain Animated.loop animations");
|
|
360
|
+
},
|
|
361
|
+
_isUsingNativeDriver: function () {
|
|
362
|
+
return animation._isUsingNativeDriver();
|
|
363
|
+
}
|
|
302
364
|
};
|
|
365
|
+
};
|
|
303
366
|
function forkEvent(event2, listener) {
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
}
|
|
367
|
+
if (!event2) {
|
|
368
|
+
return listener;
|
|
369
|
+
} else if (event2 instanceof AnimatedEvent) {
|
|
370
|
+
event2.__addListener(listener);
|
|
371
|
+
return event2;
|
|
372
|
+
} else {
|
|
373
|
+
return (...args) => {
|
|
374
|
+
typeof event2 === "function" && event2(...args);
|
|
375
|
+
listener(...args);
|
|
376
|
+
};
|
|
377
|
+
}
|
|
307
378
|
}
|
|
308
379
|
function unforkEvent(event2, listener) {
|
|
309
|
-
event2 && event2 instanceof AnimatedEvent
|
|
380
|
+
if (event2 && event2 instanceof AnimatedEvent) {
|
|
381
|
+
event2.__removeListener(listener);
|
|
382
|
+
}
|
|
310
383
|
}
|
|
311
384
|
const event = function (argMapping, config) {
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
385
|
+
const animatedEvent = new AnimatedEvent(argMapping, config);
|
|
386
|
+
if (animatedEvent.__isNative) {
|
|
387
|
+
return animatedEvent;
|
|
388
|
+
} else {
|
|
389
|
+
return animatedEvent.__getHandler();
|
|
390
|
+
}
|
|
391
|
+
};
|
|
392
|
+
const AnimatedImplementationExports = {
|
|
393
|
+
/**
|
|
394
|
+
* Standard value class for driving animations. Typically initialized with
|
|
395
|
+
* `new Animated.Value(0);`
|
|
396
|
+
*
|
|
397
|
+
* See https://reactnative.dev/docs/animated#value
|
|
398
|
+
*/
|
|
399
|
+
Value: AnimatedValue,
|
|
400
|
+
/**
|
|
401
|
+
* 2D value class for driving 2D animations, such as pan gestures.
|
|
402
|
+
*
|
|
403
|
+
* See https://reactnative.dev/docs/animatedvaluexy
|
|
404
|
+
*/
|
|
405
|
+
ValueXY: AnimatedValueXY,
|
|
406
|
+
/**
|
|
407
|
+
* Value class for driving color animations.
|
|
408
|
+
*/
|
|
409
|
+
Color: AnimatedColor,
|
|
410
|
+
/**
|
|
411
|
+
* Exported to use the Interpolation type in flow.
|
|
412
|
+
*
|
|
413
|
+
* See https://reactnative.dev/docs/animated#interpolation
|
|
414
|
+
*/
|
|
415
|
+
Interpolation: AnimatedInterpolation,
|
|
416
|
+
/**
|
|
417
|
+
* Exported for ease of type checking. All animated values derive from this
|
|
418
|
+
* class.
|
|
419
|
+
*
|
|
420
|
+
* See https://reactnative.dev/docs/animated#node
|
|
421
|
+
*/
|
|
422
|
+
Node: AnimatedNode,
|
|
423
|
+
/**
|
|
424
|
+
* Animates a value from an initial velocity to zero based on a decay
|
|
425
|
+
* coefficient.
|
|
426
|
+
*
|
|
427
|
+
* See https://reactnative.dev/docs/animated#decay
|
|
428
|
+
*/
|
|
429
|
+
decay,
|
|
430
|
+
/**
|
|
431
|
+
* Animates a value along a timed easing curve. The Easing module has tons of
|
|
432
|
+
* predefined curves, or you can use your own function.
|
|
433
|
+
*
|
|
434
|
+
* See https://reactnative.dev/docs/animated#timing
|
|
435
|
+
*/
|
|
436
|
+
timing,
|
|
437
|
+
/**
|
|
438
|
+
* Animates a value according to an analytical spring model based on
|
|
439
|
+
* damped harmonic oscillation.
|
|
440
|
+
*
|
|
441
|
+
* See https://reactnative.dev/docs/animated#spring
|
|
442
|
+
*/
|
|
443
|
+
spring,
|
|
444
|
+
/**
|
|
445
|
+
* Creates a new Animated value composed from two Animated values added
|
|
446
|
+
* together.
|
|
447
|
+
*
|
|
448
|
+
* See https://reactnative.dev/docs/animated#add
|
|
449
|
+
*/
|
|
450
|
+
add,
|
|
451
|
+
/**
|
|
452
|
+
* Creates a new Animated value composed by subtracting the second Animated
|
|
453
|
+
* value from the first Animated value.
|
|
454
|
+
*
|
|
455
|
+
* See https://reactnative.dev/docs/animated#subtract
|
|
456
|
+
*/
|
|
457
|
+
subtract,
|
|
458
|
+
/**
|
|
459
|
+
* Creates a new Animated value composed by dividing the first Animated value
|
|
460
|
+
* by the second Animated value.
|
|
461
|
+
*
|
|
462
|
+
* See https://reactnative.dev/docs/animated#divide
|
|
463
|
+
*/
|
|
464
|
+
divide,
|
|
465
|
+
/**
|
|
466
|
+
* Creates a new Animated value composed from two Animated values multiplied
|
|
467
|
+
* together.
|
|
468
|
+
*
|
|
469
|
+
* See https://reactnative.dev/docs/animated#multiply
|
|
470
|
+
*/
|
|
471
|
+
multiply,
|
|
472
|
+
/**
|
|
473
|
+
* Creates a new Animated value that is the (non-negative) modulo of the
|
|
474
|
+
* provided Animated value.
|
|
475
|
+
*
|
|
476
|
+
* See https://reactnative.dev/docs/animated#modulo
|
|
477
|
+
*/
|
|
478
|
+
modulo,
|
|
479
|
+
/**
|
|
480
|
+
* Create a new Animated value that is limited between 2 values. It uses the
|
|
481
|
+
* difference between the last value so even if the value is far from the
|
|
482
|
+
* bounds it will start changing when the value starts getting closer again.
|
|
483
|
+
*
|
|
484
|
+
* See https://reactnative.dev/docs/animated#diffclamp
|
|
485
|
+
*/
|
|
486
|
+
diffClamp,
|
|
487
|
+
/**
|
|
488
|
+
* Starts an animation after the given delay.
|
|
489
|
+
*
|
|
490
|
+
* See https://reactnative.dev/docs/animated#delay
|
|
491
|
+
*/
|
|
492
|
+
delay,
|
|
493
|
+
/**
|
|
494
|
+
* Starts an array of animations in order, waiting for each to complete
|
|
495
|
+
* before starting the next. If the current running animation is stopped, no
|
|
496
|
+
* following animations will be started.
|
|
497
|
+
*
|
|
498
|
+
* See https://reactnative.dev/docs/animated#sequence
|
|
499
|
+
*/
|
|
500
|
+
sequence,
|
|
501
|
+
/**
|
|
502
|
+
* Starts an array of animations all at the same time. By default, if one
|
|
503
|
+
* of the animations is stopped, they will all be stopped. You can override
|
|
504
|
+
* this with the `stopTogether` flag.
|
|
505
|
+
*
|
|
506
|
+
* See https://reactnative.dev/docs/animated#parallel
|
|
507
|
+
*/
|
|
508
|
+
parallel,
|
|
509
|
+
/**
|
|
510
|
+
* Array of animations may run in parallel (overlap), but are started in
|
|
511
|
+
* sequence with successive delays. Nice for doing trailing effects.
|
|
512
|
+
*
|
|
513
|
+
* See https://reactnative.dev/docs/animated#stagger
|
|
514
|
+
*/
|
|
515
|
+
stagger,
|
|
516
|
+
/**
|
|
517
|
+
* Loops a given animation continuously, so that each time it reaches the
|
|
518
|
+
* end, it resets and begins again from the start.
|
|
519
|
+
*
|
|
520
|
+
* See https://reactnative.dev/docs/animated#loop
|
|
521
|
+
*/
|
|
522
|
+
loop,
|
|
523
|
+
/**
|
|
524
|
+
* Takes an array of mappings and extracts values from each arg accordingly,
|
|
525
|
+
* then calls `setValue` on the mapped outputs.
|
|
526
|
+
*
|
|
527
|
+
* See https://reactnative.dev/docs/animated#event
|
|
528
|
+
*/
|
|
529
|
+
event,
|
|
530
|
+
/**
|
|
531
|
+
* Make any React component Animatable. Used to create `Animated.View`, etc.
|
|
532
|
+
*
|
|
533
|
+
* See https://reactnative.dev/docs/animated#createanimatedcomponent
|
|
534
|
+
*/
|
|
535
|
+
createAnimatedComponent,
|
|
536
|
+
/**
|
|
537
|
+
* Imperative API to attach an animated value to an event on a view. Prefer
|
|
538
|
+
* using `Animated.event` with `useNativeDrive: true` if possible.
|
|
539
|
+
*
|
|
540
|
+
* See https://reactnative.dev/docs/animated#attachnativeevent
|
|
541
|
+
*/
|
|
542
|
+
attachNativeEvent,
|
|
543
|
+
/**
|
|
544
|
+
* Advanced imperative API for snooping on animated events that are passed in
|
|
545
|
+
* through props. Use values directly where possible.
|
|
546
|
+
*
|
|
547
|
+
* See https://reactnative.dev/docs/animated#forkevent
|
|
548
|
+
*/
|
|
549
|
+
forkEvent,
|
|
550
|
+
unforkEvent,
|
|
551
|
+
/**
|
|
552
|
+
* Expose Event class, so it can be used as a type for type checkers.
|
|
553
|
+
*/
|
|
554
|
+
Event: AnimatedEvent
|
|
555
|
+
};
|
|
479
556
|
var AnimatedImplementation_default = AnimatedImplementationExports;
|
|
480
557
|
export { AnimatedImplementationExports as AnimatedImplementation, AnimatedImplementationExports, AnimatedImplementation_default as default };
|
|
481
558
|
//# sourceMappingURL=AnimatedImplementation.mjs.map
|