@tamagui/react-native-web-lite 2.7.6 → 3.0.0-beta.637.1
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 +82 -87
- package/dist/cjs/ActivityIndicator/index.cjs +83 -103
- package/dist/cjs/Alert/index.cjs +17 -20
- package/dist/cjs/AppRegistry/AppContainer.cjs +37 -52
- package/dist/cjs/AppRegistry/index.cjs +69 -81
- package/dist/cjs/AppRegistry/renderApplication.cjs +42 -54
- package/dist/cjs/AppState/index.cjs +60 -67
- package/dist/cjs/Appearance/index.cjs +40 -49
- package/dist/cjs/BackHandler/index.cjs +20 -25
- package/dist/cjs/Clipboard/index.cjs +50 -53
- package/dist/cjs/DeviceEmitter.cjs +15 -18
- package/dist/cjs/DeviceInfo/index.cjs +50 -63
- package/dist/cjs/Dimensions/index.cjs +86 -89
- package/dist/cjs/FlatList.cjs +177 -211
- package/dist/cjs/I18nManager/index.cjs +24 -29
- package/dist/cjs/Image/index.cjs +277 -308
- package/dist/cjs/Image/types.cjs +10 -11
- package/dist/cjs/ImageBackground/index.cjs +35 -48
- package/dist/cjs/InteractionManager/TaskQueue.cjs +95 -100
- package/dist/cjs/InteractionManager/index.cjs +105 -115
- package/dist/cjs/Keyboard/index.cjs +23 -28
- package/dist/cjs/KeyboardAvoidingView/index.cjs +41 -54
- package/dist/cjs/Libraries/Pressability/Pressability.cjs +15 -18
- package/dist/cjs/Libraries/Pressability/usePressability.cjs +15 -18
- package/dist/cjs/Linking/index.cjs +86 -89
- package/dist/cjs/LogBox/index.cjs +20 -21
- package/dist/cjs/Modal/ModalAnimation.cjs +131 -151
- package/dist/cjs/Modal/ModalContent.cjs +57 -77
- package/dist/cjs/Modal/ModalPortal.cjs +38 -46
- package/dist/cjs/Modal/index.cjs +15 -18
- package/dist/cjs/NativeModules/index.cjs +15 -20
- package/dist/cjs/PanResponder/index.cjs +18 -26
- package/dist/cjs/PixelRatio/index.cjs +45 -48
- package/dist/cjs/Pressable/index.cjs +130 -142
- package/dist/cjs/RefreshControl/index.cjs +18 -35
- package/dist/cjs/SafeAreaView/index.cjs +35 -46
- package/dist/cjs/ScrollView/WebScrollView.cjs +270 -0
- package/dist/cjs/ScrollView/index.cjs +15 -662
- package/dist/cjs/SectionList.cjs +19 -25
- package/dist/cjs/Share/index.cjs +44 -47
- package/dist/cjs/StatusBar/index.cjs +17 -18
- package/dist/cjs/Text/index.cjs +133 -171
- package/dist/cjs/Text/types.cjs +10 -11
- package/dist/cjs/TextInput/index.cjs +281 -359
- package/dist/cjs/TextInput/types.cjs +10 -11
- package/dist/cjs/TouchableNativeFeedback.cjs +15 -18
- package/dist/cjs/TouchableOpacity.cjs +91 -99
- package/dist/cjs/TouchableWithoutFeedback.cjs +65 -74
- package/dist/cjs/UnimplementedView.cjs +26 -36
- package/dist/cjs/Vibration/index.cjs +25 -28
- package/dist/cjs/View/index.cjs +89 -121
- package/dist/cjs/View/types.cjs +10 -11
- package/dist/cjs/VirtualizedList.cjs +19 -25
- package/dist/cjs/codegenNativeCommands.cjs +32 -0
- package/dist/cjs/codegenNativeComponent.cjs +19 -18
- package/dist/cjs/createElement/index.cjs +52 -70
- package/dist/cjs/createReactDOMStyle.cjs +16 -17
- package/dist/cjs/index.cjs +106 -106
- package/dist/cjs/modules/requestIdleCallback.cjs +28 -29
- package/dist/cjs/preprocess.cjs +19 -20
- package/dist/cjs/render/index.cjs +18 -19
- package/dist/cjs/styleTypes.cjs +10 -11
- package/dist/cjs/types.cjs +10 -11
- package/dist/cjs/useColorScheme/index.cjs +27 -37
- package/dist/cjs/useLocaleContext/index.cjs +15 -18
- package/dist/cjs/useWindowDimensions/index.cjs +32 -42
- package/dist/cjs/vendor/react-native/Animated/Animated.cjs +23 -24
- package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.cjs +136 -141
- package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.cjs +500 -533
- package/dist/cjs/vendor/react-native/Animated/AnimatedMock.cjs +100 -109
- package/dist/cjs/vendor/react-native/Animated/AnimatedPlatformConfig.cjs +2 -1
- package/dist/cjs/vendor/react-native/Animated/Easing.cjs +182 -183
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.cjs +302 -328
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedModule.cjs +48 -56
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedTurboModule.cjs +46 -53
- package/dist/cjs/vendor/react-native/Animated/SpringConfig.cjs +63 -64
- package/dist/cjs/vendor/react-native/Animated/animations/Animation.cjs +52 -56
- package/dist/cjs/vendor/react-native/Animated/animations/DecayAnimation.cjs +74 -79
- package/dist/cjs/vendor/react-native/Animated/animations/SpringAnimation.cjs +210 -215
- package/dist/cjs/vendor/react-native/Animated/animations/TimingAnimation.cjs +107 -116
- package/dist/cjs/vendor/react-native/Animated/bezier.cjs +83 -88
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedFlatList.cjs +23 -29
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.cjs +19 -25
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.cjs +23 -29
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedSectionList.cjs +23 -29
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.cjs +16 -17
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.cjs +16 -17
- package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.cjs +32 -44
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedAddition.cjs +51 -52
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedColor.cjs +244 -247
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDiffClamp.cjs +59 -60
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDivision.cjs +65 -66
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedInterpolation.cjs +185 -188
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedModulo.cjs +49 -50
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedMultiplication.cjs +51 -52
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedNode.cjs +152 -156
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedProps.cjs +133 -134
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedStyle.cjs +113 -116
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedSubtraction.cjs +51 -52
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTracking.cjs +73 -75
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTransform.cjs +109 -110
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValue.cjs +212 -216
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValueXY.cjs +96 -103
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedWithChildren.cjs +70 -71
- package/dist/cjs/vendor/react-native/Animated/useAnimatedProps.cjs +75 -76
- package/dist/cjs/vendor/react-native/Batchinator/index.cjs +46 -57
- package/dist/cjs/vendor/react-native/EventEmitter/NativeEventEmitter.cjs +54 -57
- package/dist/cjs/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.cjs +16 -17
- package/dist/cjs/vendor/react-native/FeatureFlags.cjs +21 -24
- package/dist/cjs/vendor/react-native/FillRateHelper/index.cjs +165 -173
- package/dist/cjs/vendor/react-native/FlatList/index.cjs +259 -294
- package/dist/cjs/vendor/react-native/JSEventLoopWatchdog/index.cjs +66 -69
- package/dist/cjs/vendor/react-native/LayoutAnimation/index.cjs +87 -91
- package/dist/cjs/vendor/react-native/PanResponder/index.cjs +170 -176
- package/dist/cjs/vendor/react-native/PooledClass/index.cjs +42 -43
- package/dist/cjs/vendor/react-native/ReactNative/ReactNativeFeatureFlags.cjs +21 -22
- package/dist/cjs/vendor/react-native/SectionList/index.cjs +95 -110
- package/dist/cjs/vendor/react-native/StaticContainer/index.cjs +28 -34
- package/dist/cjs/vendor/react-native/StaticRenderer/index.cjs +27 -33
- package/dist/cjs/vendor/react-native/TouchHistoryMath/index.cjs +82 -111
- package/dist/cjs/vendor/react-native/TurboModule/RCTExport.cjs +17 -22
- package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.cjs +20 -21
- package/dist/cjs/vendor/react-native/Types/CoreEventTypes.cjs +124 -127
- package/dist/cjs/vendor/react-native/Utilities/Platform.cjs +16 -17
- package/dist/cjs/vendor/react-native/Utilities/clamp.cjs +23 -24
- package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.cjs +26 -30
- package/dist/cjs/vendor/react-native/Utilities/useMergeRefs.cjs +27 -30
- package/dist/cjs/vendor/react-native/Utilities/useRefEffect.cjs +26 -27
- package/dist/cjs/vendor/react-native/ViewabilityHelper/index.cjs +154 -163
- package/dist/cjs/vendor/react-native/ViewabilityHelper.cjs +147 -156
- package/dist/cjs/vendor/react-native/VirtualizeUtils/index.cjs +124 -125
- package/dist/cjs/vendor/react-native/VirtualizedList/CellRenderMask.cjs +100 -99
- package/dist/cjs/vendor/react-native/VirtualizedList/ChildListCollection.cjs +63 -64
- package/dist/cjs/vendor/react-native/VirtualizedList/StateSafePureComponent.cjs +66 -75
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.cjs +104 -160
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListContext.cjs +56 -64
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListProps.cjs +51 -52
- package/dist/cjs/vendor/react-native/VirtualizedList/index.cjs +222 -284
- package/dist/cjs/vendor/react-native/VirtualizedSectionList/index.cjs +124 -144
- package/dist/cjs/vendor/react-native/deepDiffer/index.cjs +58 -59
- package/dist/cjs/vendor/react-native/emitter/EventEmitter.cjs +16 -17
- package/dist/cjs/vendor/react-native/emitter/EventSubscription.cjs +2 -1
- package/dist/cjs/vendor/react-native/emitter/_EmitterSubscription.cjs +43 -44
- package/dist/cjs/vendor/react-native/emitter/_EventEmitter.cjs +115 -120
- package/dist/cjs/vendor/react-native/emitter/_EventSubscription.cjs +31 -32
- package/dist/cjs/vendor/react-native/emitter/_EventSubscriptionVendor.cjs +80 -81
- package/dist/cjs/vendor/react-native/infoLog/index.cjs +17 -18
- package/dist/cjs/vendor/react-native/useRefEffect.cjs +26 -27
- package/dist/cjs/vendor/react-native/vendor/emitter/EventEmitter.cjs +88 -89
- package/dist/cjs/without-animated.cjs +255 -267
- package/dist/esm/AccessibilityInfo/index.mjs +69 -69
- package/dist/esm/AccessibilityInfo/index.mjs.map +1 -1
- package/dist/esm/ActivityIndicator/index.mjs +66 -78
- package/dist/esm/ActivityIndicator/index.mjs.map +1 -1
- package/dist/esm/Alert/index.mjs +4 -3
- package/dist/esm/Alert/index.mjs.map +1 -1
- package/dist/esm/AppRegistry/AppContainer.mjs +21 -28
- package/dist/esm/AppRegistry/AppContainer.mjs.map +1 -1
- package/dist/esm/AppRegistry/index.mjs +58 -65
- package/dist/esm/AppRegistry/index.mjs.map +1 -1
- package/dist/esm/AppRegistry/renderApplication.mjs +30 -40
- package/dist/esm/AppRegistry/renderApplication.mjs.map +1 -1
- package/dist/esm/AppState/index.mjs +48 -50
- package/dist/esm/AppState/index.mjs.map +1 -1
- package/dist/esm/Appearance/index.mjs +27 -31
- package/dist/esm/Appearance/index.mjs.map +1 -1
- package/dist/esm/BackHandler/index.mjs +6 -7
- package/dist/esm/BackHandler/index.mjs.map +1 -1
- package/dist/esm/Clipboard/index.mjs +37 -36
- package/dist/esm/Clipboard/index.mjs.map +1 -1
- package/dist/esm/DeviceEmitter.mjs +2 -0
- package/dist/esm/DeviceEmitter.mjs.map +1 -1
- package/dist/esm/DeviceInfo/index.mjs +37 -45
- package/dist/esm/DeviceInfo/index.mjs.map +1 -1
- package/dist/esm/Dimensions/index.mjs +72 -72
- package/dist/esm/Dimensions/index.mjs.map +1 -1
- package/dist/esm/FlatList.mjs +162 -188
- package/dist/esm/FlatList.mjs.map +1 -1
- package/dist/esm/I18nManager/index.mjs +10 -11
- package/dist/esm/I18nManager/index.mjs.map +1 -1
- package/dist/esm/Image/index.mjs +261 -285
- package/dist/esm/Image/index.mjs.map +1 -1
- package/dist/esm/Image/types.mjs +0 -2
- package/dist/esm/ImageBackground/index.mjs +21 -31
- package/dist/esm/ImageBackground/index.mjs.map +1 -1
- package/dist/esm/InteractionManager/TaskQueue.mjs +83 -83
- package/dist/esm/InteractionManager/TaskQueue.mjs.map +1 -1
- package/dist/esm/InteractionManager/index.mjs +89 -89
- package/dist/esm/InteractionManager/index.mjs.map +1 -1
- package/dist/esm/Keyboard/index.mjs +10 -10
- package/dist/esm/Keyboard/index.mjs.map +1 -1
- package/dist/esm/KeyboardAvoidingView/index.mjs +24 -29
- package/dist/esm/KeyboardAvoidingView/index.mjs.map +1 -1
- package/dist/esm/Libraries/Pressability/Pressability.mjs +1 -0
- package/dist/esm/Libraries/Pressability/Pressability.mjs.map +1 -1
- package/dist/esm/Libraries/Pressability/usePressability.mjs +2 -1
- package/dist/esm/Libraries/Pressability/usePressability.mjs.map +1 -1
- package/dist/esm/Linking/index.mjs +73 -71
- package/dist/esm/Linking/index.mjs.map +1 -1
- package/dist/esm/LogBox/index.mjs +5 -4
- package/dist/esm/LogBox/index.mjs.map +1 -1
- package/dist/esm/Modal/ModalAnimation.mjs +116 -126
- package/dist/esm/Modal/ModalAnimation.mjs.map +1 -1
- package/dist/esm/Modal/ModalContent.mjs +41 -51
- package/dist/esm/Modal/ModalContent.mjs.map +1 -1
- package/dist/esm/Modal/ModalPortal.mjs +22 -20
- package/dist/esm/Modal/ModalPortal.mjs.map +1 -1
- package/dist/esm/Modal/index.mjs +1 -0
- package/dist/esm/Modal/index.mjs.map +1 -1
- package/dist/esm/NativeModules/index.mjs +3 -3
- package/dist/esm/NativeModules/index.mjs.map +1 -1
- package/dist/esm/PanResponder/index.mjs +3 -3
- package/dist/esm/PixelRatio/index.mjs +33 -31
- package/dist/esm/PixelRatio/index.mjs.map +1 -1
- package/dist/esm/Pressable/index.mjs +114 -119
- package/dist/esm/Pressable/index.mjs.map +1 -1
- package/dist/esm/RefreshControl/index.mjs +4 -18
- package/dist/esm/RefreshControl/index.mjs.map +1 -1
- package/dist/esm/SafeAreaView/index.mjs +18 -21
- package/dist/esm/SafeAreaView/index.mjs.map +1 -1
- package/dist/esm/ScrollView/WebScrollView.mjs +244 -0
- package/dist/esm/ScrollView/WebScrollView.mjs.map +1 -0
- package/dist/esm/ScrollView/index.mjs +3 -635
- package/dist/esm/SectionList.mjs +3 -4
- package/dist/esm/Share/index.mjs +32 -30
- package/dist/esm/Share/index.mjs.map +1 -1
- package/dist/esm/StatusBar/index.mjs +2 -1
- package/dist/esm/StatusBar/index.mjs.map +1 -1
- package/dist/esm/Text/index.mjs +116 -146
- package/dist/esm/Text/index.mjs.map +1 -1
- package/dist/esm/Text/types.mjs +0 -2
- package/dist/esm/TextInput/index.mjs +265 -336
- package/dist/esm/TextInput/index.mjs.map +1 -1
- package/dist/esm/TextInput/types.mjs +0 -2
- package/dist/esm/TouchableNativeFeedback.mjs +2 -2
- package/dist/esm/TouchableOpacity.mjs +75 -73
- package/dist/esm/TouchableOpacity.mjs.map +1 -1
- package/dist/esm/TouchableWithoutFeedback.mjs +49 -48
- package/dist/esm/TouchableWithoutFeedback.mjs.map +1 -1
- package/dist/esm/UnimplementedView.mjs +11 -11
- package/dist/esm/UnimplementedView.mjs.map +1 -1
- package/dist/esm/Vibration/index.mjs +11 -10
- package/dist/esm/Vibration/index.mjs.map +1 -1
- package/dist/esm/View/index.mjs +73 -97
- package/dist/esm/View/index.mjs.map +1 -1
- package/dist/esm/View/types.mjs +0 -2
- package/dist/esm/VirtualizedList.mjs +3 -4
- package/dist/esm/codegenNativeCommands.mjs +8 -0
- package/dist/esm/codegenNativeCommands.mjs.map +1 -0
- package/dist/esm/codegenNativeComponent.mjs +5 -3
- package/dist/esm/codegenNativeComponent.mjs.map +1 -1
- package/dist/esm/createElement/index.mjs +35 -45
- package/dist/esm/createElement/index.mjs.map +1 -1
- package/dist/esm/createReactDOMStyle.mjs +2 -0
- package/dist/esm/createReactDOMStyle.mjs.map +1 -1
- package/dist/esm/index.js +15 -10
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/index.mjs +15 -10
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm/modules/requestIdleCallback.mjs +13 -12
- package/dist/esm/modules/requestIdleCallback.mjs.map +1 -1
- package/dist/esm/preprocess.mjs +3 -3
- package/dist/esm/render/index.mjs +1 -0
- package/dist/esm/render/index.mjs.map +1 -1
- package/dist/esm/styleTypes.mjs +0 -2
- package/dist/esm/types.mjs +0 -2
- package/dist/esm/useColorScheme/index.mjs +11 -11
- package/dist/esm/useColorScheme/index.mjs.map +1 -1
- package/dist/esm/useLocaleContext/index.mjs +2 -2
- package/dist/esm/useWindowDimensions/index.mjs +16 -16
- package/dist/esm/useWindowDimensions/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/Animated.mjs +12 -10
- package/dist/esm/vendor/react-native/Animated/Animated.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/AnimatedEvent.mjs +124 -127
- package/dist/esm/vendor/react-native/Animated/AnimatedEvent.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/AnimatedImplementation.mjs +485 -515
- package/dist/esm/vendor/react-native/Animated/AnimatedImplementation.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/AnimatedMock.mjs +85 -91
- package/dist/esm/vendor/react-native/Animated/AnimatedMock.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/AnimatedPlatformConfig.mjs +0 -2
- package/dist/esm/vendor/react-native/Animated/Easing.mjs +169 -167
- package/dist/esm/vendor/react-native/Animated/Easing.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedHelper.mjs +273 -296
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedHelper.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedModule.mjs +26 -26
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedModule.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedTurboModule.mjs +24 -23
- package/dist/esm/vendor/react-native/Animated/NativeAnimatedTurboModule.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/SpringConfig.mjs +48 -47
- package/dist/esm/vendor/react-native/Animated/SpringConfig.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/animations/Animation.mjs +38 -39
- package/dist/esm/vendor/react-native/Animated/animations/Animation.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/animations/DecayAnimation.mjs +60 -62
- package/dist/esm/vendor/react-native/Animated/animations/DecayAnimation.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/animations/SpringAnimation.mjs +196 -198
- package/dist/esm/vendor/react-native/Animated/animations/SpringAnimation.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/animations/TimingAnimation.mjs +93 -99
- package/dist/esm/vendor/react-native/Animated/animations/TimingAnimation.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/bezier.mjs +68 -71
- package/dist/esm/vendor/react-native/Animated/bezier.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedFlatList.mjs +7 -5
- package/dist/esm/vendor/react-native/Animated/components/AnimatedFlatList.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedImage.mjs +3 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedImage.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedScrollView.mjs +7 -5
- package/dist/esm/vendor/react-native/Animated/components/AnimatedScrollView.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedSectionList.mjs +7 -5
- package/dist/esm/vendor/react-native/Animated/components/AnimatedSectionList.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedText.mjs +2 -0
- package/dist/esm/vendor/react-native/Animated/components/AnimatedText.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/components/AnimatedView.mjs +2 -0
- package/dist/esm/vendor/react-native/Animated/components/AnimatedView.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/createAnimatedComponent.mjs +15 -19
- package/dist/esm/vendor/react-native/Animated/createAnimatedComponent.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedAddition.mjs +37 -35
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedAddition.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedColor.mjs +230 -230
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedColor.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDiffClamp.mjs +45 -43
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDiffClamp.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDivision.mjs +51 -49
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDivision.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedInterpolation.mjs +172 -172
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedInterpolation.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedModulo.mjs +35 -33
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedModulo.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedMultiplication.mjs +37 -35
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedMultiplication.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedNode.mjs +138 -139
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedNode.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedProps.mjs +119 -117
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedProps.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedStyle.mjs +99 -99
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedStyle.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.mjs +37 -35
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTracking.mjs +60 -59
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTracking.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTransform.mjs +95 -93
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTransform.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValue.mjs +198 -199
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValue.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValueXY.mjs +82 -86
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValueXY.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedWithChildren.mjs +56 -54
- package/dist/esm/vendor/react-native/Animated/nodes/AnimatedWithChildren.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Animated/useAnimatedProps.mjs +61 -59
- package/dist/esm/vendor/react-native/Animated/useAnimatedProps.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Batchinator/index.mjs +32 -40
- package/dist/esm/vendor/react-native/Batchinator/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/EventEmitter/NativeEventEmitter.mjs +40 -40
- package/dist/esm/vendor/react-native/EventEmitter/NativeEventEmitter.mjs.map +1 -1
- package/dist/esm/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.mjs +2 -0
- package/dist/esm/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.mjs.map +1 -1
- package/dist/esm/vendor/react-native/FeatureFlags.mjs +7 -6
- package/dist/esm/vendor/react-native/FeatureFlags.mjs.map +1 -1
- package/dist/esm/vendor/react-native/FillRateHelper/index.mjs +150 -156
- package/dist/esm/vendor/react-native/FillRateHelper/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/FlatList/index.mjs +244 -271
- package/dist/esm/vendor/react-native/FlatList/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/JSEventLoopWatchdog/index.mjs +52 -52
- package/dist/esm/vendor/react-native/JSEventLoopWatchdog/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/LayoutAnimation/index.mjs +73 -74
- package/dist/esm/vendor/react-native/LayoutAnimation/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/PanResponder/index.mjs +153 -151
- package/dist/esm/vendor/react-native/PanResponder/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/PooledClass/index.mjs +27 -26
- package/dist/esm/vendor/react-native/PooledClass/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/ReactNative/ReactNativeFeatureFlags.mjs +6 -5
- package/dist/esm/vendor/react-native/ReactNative/ReactNativeFeatureFlags.mjs.map +1 -1
- package/dist/esm/vendor/react-native/SectionList/index.mjs +78 -85
- package/dist/esm/vendor/react-native/SectionList/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/StaticContainer/index.mjs +11 -9
- package/dist/esm/vendor/react-native/StaticContainer/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/StaticRenderer/index.mjs +10 -8
- package/dist/esm/vendor/react-native/StaticRenderer/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/TouchHistoryMath/index.mjs +67 -94
- package/dist/esm/vendor/react-native/TouchHistoryMath/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/TurboModule/RCTExport.mjs +3 -6
- package/dist/esm/vendor/react-native/TurboModule/RCTExport.mjs.map +1 -1
- package/dist/esm/vendor/react-native/TurboModule/TurboModuleRegistry.mjs +6 -4
- package/dist/esm/vendor/react-native/TurboModule/TurboModuleRegistry.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Types/CoreEventTypes.mjs +105 -106
- package/dist/esm/vendor/react-native/Types/CoreEventTypes.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Utilities/Platform.mjs +2 -0
- package/dist/esm/vendor/react-native/Utilities/Platform.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Utilities/clamp.mjs +8 -7
- package/dist/esm/vendor/react-native/Utilities/clamp.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Utilities/setAndForwardRef.mjs +11 -13
- package/dist/esm/vendor/react-native/Utilities/setAndForwardRef.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Utilities/useMergeRefs.mjs +13 -13
- package/dist/esm/vendor/react-native/Utilities/useMergeRefs.mjs.map +1 -1
- package/dist/esm/vendor/react-native/Utilities/useRefEffect.mjs +12 -10
- package/dist/esm/vendor/react-native/Utilities/useRefEffect.mjs.map +1 -1
- package/dist/esm/vendor/react-native/ViewabilityHelper/index.mjs +140 -146
- package/dist/esm/vendor/react-native/ViewabilityHelper/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/ViewabilityHelper.mjs +133 -139
- package/dist/esm/vendor/react-native/ViewabilityHelper.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizeUtils/index.mjs +107 -106
- package/dist/esm/vendor/react-native/VirtualizeUtils/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/CellRenderMask.mjs +88 -82
- package/dist/esm/vendor/react-native/VirtualizedList/CellRenderMask.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/ChildListCollection.mjs +49 -47
- package/dist/esm/vendor/react-native/VirtualizedList/ChildListCollection.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/StateSafePureComponent.mjs +49 -50
- package/dist/esm/vendor/react-native/VirtualizedList/StateSafePureComponent.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.mjs +87 -135
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListContext.mjs +38 -38
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListContext.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListProps.mjs +36 -35
- package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListProps.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedList/index.mjs +207 -266
- package/dist/esm/vendor/react-native/VirtualizedList/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/VirtualizedSectionList/index.mjs +107 -119
- package/dist/esm/vendor/react-native/VirtualizedSectionList/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/deepDiffer/index.mjs +43 -42
- package/dist/esm/vendor/react-native/deepDiffer/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/emitter/EventEmitter.mjs +2 -0
- package/dist/esm/vendor/react-native/emitter/EventEmitter.mjs.map +1 -1
- package/dist/esm/vendor/react-native/emitter/EventSubscription.mjs +0 -2
- package/dist/esm/vendor/react-native/emitter/_EmitterSubscription.mjs +29 -27
- package/dist/esm/vendor/react-native/emitter/_EmitterSubscription.mjs.map +1 -1
- package/dist/esm/vendor/react-native/emitter/_EventEmitter.mjs +101 -103
- package/dist/esm/vendor/react-native/emitter/_EventEmitter.mjs.map +1 -1
- package/dist/esm/vendor/react-native/emitter/_EventSubscription.mjs +16 -15
- package/dist/esm/vendor/react-native/emitter/_EventSubscription.mjs.map +1 -1
- package/dist/esm/vendor/react-native/emitter/_EventSubscriptionVendor.mjs +66 -64
- package/dist/esm/vendor/react-native/emitter/_EventSubscriptionVendor.mjs.map +1 -1
- package/dist/esm/vendor/react-native/infoLog/index.mjs +2 -1
- package/dist/esm/vendor/react-native/infoLog/index.mjs.map +1 -1
- package/dist/esm/vendor/react-native/useRefEffect.mjs +12 -10
- package/dist/esm/vendor/react-native/useRefEffect.mjs.map +1 -1
- package/dist/esm/vendor/react-native/vendor/emitter/EventEmitter.mjs +71 -70
- package/dist/esm/vendor/react-native/vendor/emitter/EventEmitter.mjs.map +1 -1
- package/dist/esm/without-animated.mjs +172 -187
- package/dist/esm/without-animated.mjs.map +1 -1
- package/package.json +12 -12
- package/src/ScrollView/WebScrollView.tsx +383 -0
- package/src/ScrollView/index.tsx +6 -892
- package/src/codegenNativeCommands.ts +6 -0
- package/src/codegenNativeComponent.ts +2 -2
- package/src/index.tsx +3 -0
- package/src/without-animated.tsx +1 -0
- package/dist/cjs/ActivityIndicator/__tests__/index-test.cjs +0 -209
- package/dist/cjs/AppRegistry/__tests__/index-test.cjs +0 -97
- package/dist/cjs/AppRegistry/__tests__/index-test.node.cjs +0 -162
- package/dist/cjs/AppState/__tests__/index-test.cjs +0 -38
- package/dist/cjs/Dimensions/__tests__/index-test.cjs +0 -67
- package/dist/cjs/ImageBackground/__tests__/index-test.cjs +0 -72
- package/dist/cjs/Linking/__tests__/index-test.cjs +0 -56
- package/dist/cjs/ScrollView/ScrollViewBase.cjs +0 -167
- package/dist/cjs/codegenNativeCommand.cjs +0 -31
- package/dist/cjs/createElement/__tests__/index-test.cjs +0 -828
- package/dist/esm/ActivityIndicator/__tests__/index-test.mjs +0 -186
- package/dist/esm/ActivityIndicator/__tests__/index-test.mjs.map +0 -1
- package/dist/esm/AppRegistry/__tests__/index-test.mjs +0 -74
- package/dist/esm/AppRegistry/__tests__/index-test.mjs.map +0 -1
- package/dist/esm/AppRegistry/__tests__/index-test.node.mjs +0 -139
- package/dist/esm/AppRegistry/__tests__/index-test.node.mjs.map +0 -1
- package/dist/esm/AppState/__tests__/index-test.mjs +0 -15
- package/dist/esm/AppState/__tests__/index-test.mjs.map +0 -1
- package/dist/esm/Dimensions/__tests__/index-test.mjs +0 -44
- package/dist/esm/Dimensions/__tests__/index-test.mjs.map +0 -1
- package/dist/esm/Image/types.mjs.map +0 -1
- package/dist/esm/ImageBackground/__tests__/index-test.mjs +0 -49
- package/dist/esm/ImageBackground/__tests__/index-test.mjs.map +0 -1
- package/dist/esm/Linking/__tests__/index-test.mjs +0 -33
- package/dist/esm/Linking/__tests__/index-test.mjs.map +0 -1
- package/dist/esm/PanResponder/index.mjs.map +0 -1
- package/dist/esm/ScrollView/ScrollViewBase.mjs +0 -130
- package/dist/esm/ScrollView/ScrollViewBase.mjs.map +0 -1
- package/dist/esm/ScrollView/index.mjs.map +0 -1
- package/dist/esm/SectionList.mjs.map +0 -1
- package/dist/esm/Text/types.mjs.map +0 -1
- package/dist/esm/TextInput/types.mjs.map +0 -1
- package/dist/esm/TouchableNativeFeedback.mjs.map +0 -1
- package/dist/esm/View/types.mjs.map +0 -1
- package/dist/esm/VirtualizedList.mjs.map +0 -1
- package/dist/esm/codegenNativeCommand.mjs +0 -6
- package/dist/esm/codegenNativeCommand.mjs.map +0 -1
- package/dist/esm/createElement/__tests__/index-test.mjs +0 -805
- package/dist/esm/createElement/__tests__/index-test.mjs.map +0 -1
- package/dist/esm/preprocess.mjs.map +0 -1
- package/dist/esm/styleTypes.mjs.map +0 -1
- package/dist/esm/types.mjs.map +0 -1
- package/dist/esm/useLocaleContext/index.mjs.map +0 -1
- package/dist/esm/vendor/react-native/Animated/AnimatedPlatformConfig.mjs.map +0 -1
- package/dist/esm/vendor/react-native/emitter/EventSubscription.mjs.map +0 -1
- package/src/ActivityIndicator/__tests__/__snapshots__/index-test.js.snap +0 -466
- package/src/ActivityIndicator/__tests__/index-test.tsx +0 -147
- package/src/AppRegistry/__tests__/index-test.node.tsx +0 -144
- package/src/AppRegistry/__tests__/index-test.tsx +0 -94
- package/src/AppState/__tests__/index-test.tsx +0 -24
- package/src/Dimensions/__tests__/index-test.tsx +0 -54
- package/src/ImageBackground/__tests__/index-test.tsx +0 -49
- package/src/Linking/__tests__/index-test.tsx +0 -37
- package/src/Pressable/__tests__/__snapshots__/index-test.js.snap +0 -196
- package/src/ScrollView/ScrollViewBase.tsx +0 -183
- package/src/ScrollView/__tests__/__snapshots__/index-test.js.snap +0 -49
- package/src/Text/__tests__/__snapshots__/index-test.js.snap +0 -218
- package/src/codegenNativeCommand.ts +0 -6
- package/src/createElement/__tests__/__snapshots__/index-test.js.snap +0 -13
- package/src/createElement/__tests__/index-test.tsx +0 -647
|
@@ -3,108 +3,108 @@ import { AnimatedTransform } from "./AnimatedTransform.mjs";
|
|
|
3
3
|
import { AnimatedWithChildren } from "./AnimatedWithChildren.mjs";
|
|
4
4
|
import { NativeAnimatedHelper } from "../NativeAnimatedHelper.mjs";
|
|
5
5
|
import { StyleSheet } from "@tamagui/react-native-web-internals";
|
|
6
|
+
|
|
6
7
|
const flattenStyle = StyleSheet.flatten;
|
|
7
8
|
function createAnimatedStyle(inputStyle) {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
class AnimatedStyle extends AnimatedWithChildren {
|
|
23
|
-
_inputStyle;
|
|
24
|
-
_style;
|
|
25
|
-
constructor(style) {
|
|
26
|
-
super();
|
|
27
|
-
this._inputStyle = style;
|
|
28
|
-
this._style = createAnimatedStyle(style);
|
|
29
|
-
}
|
|
30
|
-
// Recursively get values for nested styles (like iOS's shadowOffset)
|
|
31
|
-
_walkStyleAndGetValues(style) {
|
|
32
|
-
const updatedStyle = {};
|
|
33
|
-
for (const key in style) {
|
|
34
|
-
const value = style[key];
|
|
35
|
-
if (value instanceof AnimatedNode) {
|
|
36
|
-
if (!value.__isNative) {
|
|
37
|
-
updatedStyle[key] = value.__getValue();
|
|
38
|
-
}
|
|
39
|
-
} else if (value && !Array.isArray(value) && typeof value === "object") {
|
|
40
|
-
updatedStyle[key] = this._walkStyleAndGetValues(value);
|
|
41
|
-
} else {
|
|
42
|
-
updatedStyle[key] = value;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
return updatedStyle;
|
|
46
|
-
}
|
|
47
|
-
__getValue() {
|
|
48
|
-
return [this._inputStyle, this._walkStyleAndGetValues(this._style)];
|
|
49
|
-
}
|
|
50
|
-
// Recursively get animated values for nested styles (like iOS's shadowOffset)
|
|
51
|
-
_walkStyleAndGetAnimatedValues(style) {
|
|
52
|
-
const updatedStyle = {};
|
|
53
|
-
for (const key in style) {
|
|
54
|
-
const value = style[key];
|
|
55
|
-
if (value instanceof AnimatedNode) {
|
|
56
|
-
updatedStyle[key] = value.__getAnimatedValue();
|
|
57
|
-
} else if (value && !Array.isArray(value) && typeof value === "object") {
|
|
58
|
-
updatedStyle[key] = this._walkStyleAndGetAnimatedValues(value);
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
return updatedStyle;
|
|
62
|
-
}
|
|
63
|
-
__getAnimatedValue() {
|
|
64
|
-
return this._walkStyleAndGetAnimatedValues(this._style);
|
|
65
|
-
}
|
|
66
|
-
__attach() {
|
|
67
|
-
for (const key in this._style) {
|
|
68
|
-
const value = this._style[key];
|
|
69
|
-
if (value instanceof AnimatedNode) {
|
|
70
|
-
value.__addChild(this);
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
__detach() {
|
|
75
|
-
for (const key in this._style) {
|
|
76
|
-
const value = this._style[key];
|
|
77
|
-
if (value instanceof AnimatedNode) {
|
|
78
|
-
value.__removeChild(this);
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
super.__detach();
|
|
82
|
-
}
|
|
83
|
-
__makeNative() {
|
|
84
|
-
for (const key in this._style) {
|
|
85
|
-
const value = this._style[key];
|
|
86
|
-
if (value instanceof AnimatedNode) {
|
|
87
|
-
value.__makeNative();
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
super.__makeNative();
|
|
91
|
-
}
|
|
92
|
-
__getNativeConfig() {
|
|
93
|
-
const styleConfig = {};
|
|
94
|
-
for (const styleKey in this._style) {
|
|
95
|
-
if (this._style[styleKey] instanceof AnimatedNode) {
|
|
96
|
-
const style = this._style[styleKey];
|
|
97
|
-
style.__makeNative();
|
|
98
|
-
styleConfig[styleKey] = style.__getNativeTag();
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
NativeAnimatedHelper.validateStyles(styleConfig);
|
|
102
|
-
return {
|
|
103
|
-
type: "style",
|
|
104
|
-
style: styleConfig
|
|
105
|
-
};
|
|
106
|
-
}
|
|
9
|
+
const style = flattenStyle(inputStyle);
|
|
10
|
+
const animatedStyles = {};
|
|
11
|
+
for (const key in style) {
|
|
12
|
+
const value = style[key];
|
|
13
|
+
if (key === "transform" && Array.isArray(value)) {
|
|
14
|
+
animatedStyles[key] = new AnimatedTransform(value);
|
|
15
|
+
} else if (value instanceof AnimatedNode) {
|
|
16
|
+
animatedStyles[key] = value;
|
|
17
|
+
} else if (value && !Array.isArray(value) && typeof value === "object") {
|
|
18
|
+
animatedStyles[key] = createAnimatedStyle(value);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
return animatedStyles;
|
|
107
22
|
}
|
|
23
|
+
var AnimatedStyle = class extends AnimatedWithChildren {
|
|
24
|
+
_inputStyle;
|
|
25
|
+
_style;
|
|
26
|
+
constructor(style) {
|
|
27
|
+
super();
|
|
28
|
+
this._inputStyle = style;
|
|
29
|
+
this._style = createAnimatedStyle(style);
|
|
30
|
+
}
|
|
31
|
+
_walkStyleAndGetValues(style) {
|
|
32
|
+
const updatedStyle = {};
|
|
33
|
+
for (const key in style) {
|
|
34
|
+
const value = style[key];
|
|
35
|
+
if (value instanceof AnimatedNode) {
|
|
36
|
+
if (!value.__isNative) {
|
|
37
|
+
updatedStyle[key] = value.__getValue();
|
|
38
|
+
}
|
|
39
|
+
} else if (value && !Array.isArray(value) && typeof value === "object") {
|
|
40
|
+
updatedStyle[key] = this._walkStyleAndGetValues(value);
|
|
41
|
+
} else {
|
|
42
|
+
updatedStyle[key] = value;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
return updatedStyle;
|
|
46
|
+
}
|
|
47
|
+
__getValue() {
|
|
48
|
+
return [this._inputStyle, this._walkStyleAndGetValues(this._style)];
|
|
49
|
+
}
|
|
50
|
+
_walkStyleAndGetAnimatedValues(style) {
|
|
51
|
+
const updatedStyle = {};
|
|
52
|
+
for (const key in style) {
|
|
53
|
+
const value = style[key];
|
|
54
|
+
if (value instanceof AnimatedNode) {
|
|
55
|
+
updatedStyle[key] = value.__getAnimatedValue();
|
|
56
|
+
} else if (value && !Array.isArray(value) && typeof value === "object") {
|
|
57
|
+
updatedStyle[key] = this._walkStyleAndGetAnimatedValues(value);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
return updatedStyle;
|
|
61
|
+
}
|
|
62
|
+
__getAnimatedValue() {
|
|
63
|
+
return this._walkStyleAndGetAnimatedValues(this._style);
|
|
64
|
+
}
|
|
65
|
+
__attach() {
|
|
66
|
+
for (const key in this._style) {
|
|
67
|
+
const value = this._style[key];
|
|
68
|
+
if (value instanceof AnimatedNode) {
|
|
69
|
+
value.__addChild(this);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
__detach() {
|
|
74
|
+
for (const key in this._style) {
|
|
75
|
+
const value = this._style[key];
|
|
76
|
+
if (value instanceof AnimatedNode) {
|
|
77
|
+
value.__removeChild(this);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
super.__detach();
|
|
81
|
+
}
|
|
82
|
+
__makeNative() {
|
|
83
|
+
for (const key in this._style) {
|
|
84
|
+
const value = this._style[key];
|
|
85
|
+
if (value instanceof AnimatedNode) {
|
|
86
|
+
value.__makeNative();
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
super.__makeNative();
|
|
90
|
+
}
|
|
91
|
+
__getNativeConfig() {
|
|
92
|
+
const styleConfig = {};
|
|
93
|
+
for (const styleKey in this._style) {
|
|
94
|
+
if (this._style[styleKey] instanceof AnimatedNode) {
|
|
95
|
+
const style = this._style[styleKey];
|
|
96
|
+
style.__makeNative();
|
|
97
|
+
styleConfig[styleKey] = style.__getNativeTag();
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
NativeAnimatedHelper.validateStyles(styleConfig);
|
|
101
|
+
return {
|
|
102
|
+
type: "style",
|
|
103
|
+
style: styleConfig
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
};
|
|
108
107
|
var AnimatedStyle_default = AnimatedStyle;
|
|
108
|
+
|
|
109
109
|
export { AnimatedStyle, AnimatedStyle_default as default };
|
|
110
110
|
//# sourceMappingURL=AnimatedStyle.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"AnimatedStyle.js","names":[],"sources":["esm/vendor/react-native/Animated/nodes/AnimatedStyle.js"],"sourcesContent":["import { AnimatedNode } from \"./AnimatedNode\";\nimport { AnimatedTransform } from \"./AnimatedTransform\";\nimport { AnimatedWithChildren } from \"./AnimatedWithChildren\";\nimport { NativeAnimatedHelper } from \"../NativeAnimatedHelper\";\nimport { StyleSheet } from \"@tamagui/react-native-web-internals\";\nconst flattenStyle = StyleSheet.flatten;\nfunction createAnimatedStyle(inputStyle) {\n const style = flattenStyle(inputStyle);\n const animatedStyles = {};\n for (const key in style) {\n const value = style[key];\n if (key === \"transform\" && Array.isArray(value)) {\n animatedStyles[key] = new AnimatedTransform(value);\n } else if (value instanceof AnimatedNode) {\n animatedStyles[key] = value;\n } else if (value && !Array.isArray(value) && typeof value === \"object\") {\n animatedStyles[key] = createAnimatedStyle(value);\n }\n }\n return animatedStyles;\n}\nclass AnimatedStyle extends AnimatedWithChildren {\n _inputStyle;\n _style;\n constructor(style) {\n super();\n this._inputStyle = style;\n this._style = createAnimatedStyle(style);\n }\n // Recursively get values for nested styles (like iOS's shadowOffset)\n _walkStyleAndGetValues(style) {\n const updatedStyle = {};\n for (const key in style) {\n const value = style[key];\n if (value instanceof AnimatedNode) {\n if (!value.__isNative) {\n updatedStyle[key] = value.__getValue();\n }\n } else if (value && !Array.isArray(value) && typeof value === \"object\") {\n updatedStyle[key] = this._walkStyleAndGetValues(value);\n } else {\n updatedStyle[key] = value;\n }\n }\n return updatedStyle;\n }\n __getValue() {\n return [this._inputStyle, this._walkStyleAndGetValues(this._style)];\n }\n // Recursively get animated values for nested styles (like iOS's shadowOffset)\n _walkStyleAndGetAnimatedValues(style) {\n const updatedStyle = {};\n for (const key in style) {\n const value = style[key];\n if (value instanceof AnimatedNode) {\n updatedStyle[key] = value.__getAnimatedValue();\n } else if (value && !Array.isArray(value) && typeof value === \"object\") {\n updatedStyle[key] = this._walkStyleAndGetAnimatedValues(value);\n }\n }\n return updatedStyle;\n }\n __getAnimatedValue() {\n return this._walkStyleAndGetAnimatedValues(this._style);\n }\n __attach() {\n for (const key in this._style) {\n const value = this._style[key];\n if (value instanceof AnimatedNode) {\n value.__addChild(this);\n }\n }\n }\n __detach() {\n for (const key in this._style) {\n const value = this._style[key];\n if (value instanceof AnimatedNode) {\n value.__removeChild(this);\n }\n }\n super.__detach();\n }\n __makeNative() {\n for (const key in this._style) {\n const value = this._style[key];\n if (value instanceof AnimatedNode) {\n value.__makeNative();\n }\n }\n super.__makeNative();\n }\n __getNativeConfig() {\n const styleConfig = {};\n for (const styleKey in this._style) {\n if (this._style[styleKey] instanceof AnimatedNode) {\n const style = this._style[styleKey];\n style.__makeNative();\n styleConfig[styleKey] = style.__getNativeTag();\n }\n }\n NativeAnimatedHelper.validateStyles(styleConfig);\n return {\n type: \"style\",\n style: styleConfig\n };\n }\n}\nvar AnimatedStyle_default = AnimatedStyle;\nexport {\n AnimatedStyle,\n AnimatedStyle_default as default\n};\n//# sourceMappingURL=AnimatedStyle.js.map\n"],"mappings":";;;;;;;AAKA,MAAM,eAAe,WAAW;AAChC,SAAS,oBAAoB,YAAY;CACvC,MAAM,QAAQ,aAAa,UAAU;CACrC,MAAM,iBAAiB,CAAC;CACxB,KAAK,MAAM,OAAO,OAAO;EACvB,MAAM,QAAQ,MAAM;EACpB,IAAI,QAAQ,eAAe,MAAM,QAAQ,KAAK,GAAG;GAC/C,eAAe,OAAO,IAAI,kBAAkB,KAAK;EACnD,OAAO,IAAI,iBAAiB,cAAc;GACxC,eAAe,OAAO;EACxB,OAAO,IAAI,SAAS,CAAC,MAAM,QAAQ,KAAK,KAAK,OAAO,UAAU,UAAU;GACtE,eAAe,OAAO,oBAAoB,KAAK;EACjD;CACF;CACA,OAAO;AACT;AACA,IAAM,gBAAN,cAA4B,qBAAqB;CAC/C;CACA;CACA,YAAY,OAAO;EACjB,MAAM;EACN,KAAK,cAAc;EACnB,KAAK,SAAS,oBAAoB,KAAK;CACzC;CAEA,uBAAuB,OAAO;EAC5B,MAAM,eAAe,CAAC;EACtB,KAAK,MAAM,OAAO,OAAO;GACvB,MAAM,QAAQ,MAAM;GACpB,IAAI,iBAAiB,cAAc;IACjC,IAAI,CAAC,MAAM,YAAY;KACrB,aAAa,OAAO,MAAM,WAAW;IACvC;GACF,OAAO,IAAI,SAAS,CAAC,MAAM,QAAQ,KAAK,KAAK,OAAO,UAAU,UAAU;IACtE,aAAa,OAAO,KAAK,uBAAuB,KAAK;GACvD,OAAO;IACL,aAAa,OAAO;GACtB;EACF;EACA,OAAO;CACT;CACA,aAAa;EACX,OAAO,CAAC,KAAK,aAAa,KAAK,uBAAuB,KAAK,MAAM,CAAC;CACpE;CAEA,+BAA+B,OAAO;EACpC,MAAM,eAAe,CAAC;EACtB,KAAK,MAAM,OAAO,OAAO;GACvB,MAAM,QAAQ,MAAM;GACpB,IAAI,iBAAiB,cAAc;IACjC,aAAa,OAAO,MAAM,mBAAmB;GAC/C,OAAO,IAAI,SAAS,CAAC,MAAM,QAAQ,KAAK,KAAK,OAAO,UAAU,UAAU;IACtE,aAAa,OAAO,KAAK,+BAA+B,KAAK;GAC/D;EACF;EACA,OAAO;CACT;CACA,qBAAqB;EACnB,OAAO,KAAK,+BAA+B,KAAK,MAAM;CACxD;CACA,WAAW;EACT,KAAK,MAAM,OAAO,KAAK,QAAQ;GAC7B,MAAM,QAAQ,KAAK,OAAO;GAC1B,IAAI,iBAAiB,cAAc;IACjC,MAAM,WAAW,IAAI;GACvB;EACF;CACF;CACA,WAAW;EACT,KAAK,MAAM,OAAO,KAAK,QAAQ;GAC7B,MAAM,QAAQ,KAAK,OAAO;GAC1B,IAAI,iBAAiB,cAAc;IACjC,MAAM,cAAc,IAAI;GAC1B;EACF;EACA,MAAM,SAAS;CACjB;CACA,eAAe;EACb,KAAK,MAAM,OAAO,KAAK,QAAQ;GAC7B,MAAM,QAAQ,KAAK,OAAO;GAC1B,IAAI,iBAAiB,cAAc;IACjC,MAAM,aAAa;GACrB;EACF;EACA,MAAM,aAAa;CACrB;CACA,oBAAoB;EAClB,MAAM,cAAc,CAAC;EACrB,KAAK,MAAM,YAAY,KAAK,QAAQ;GAClC,IAAI,KAAK,OAAO,qBAAqB,cAAc;IACjD,MAAM,QAAQ,KAAK,OAAO;IAC1B,MAAM,aAAa;IACnB,YAAY,YAAY,MAAM,eAAe;GAC/C;EACF;EACA,qBAAqB,eAAe,WAAW;EAC/C,OAAO;GACL,MAAM;GACN,OAAO;EACT;CACF;AACF;AACA,IAAI,wBAAwB"}
|
|
@@ -1,41 +1,43 @@
|
|
|
1
1
|
import { AnimatedInterpolation } from "./AnimatedInterpolation.mjs";
|
|
2
2
|
import { AnimatedValue } from "./AnimatedValue.mjs";
|
|
3
3
|
import { AnimatedWithChildren } from "./AnimatedWithChildren.mjs";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
}
|
|
4
|
+
|
|
5
|
+
var AnimatedSubtraction = class extends AnimatedWithChildren {
|
|
6
|
+
_a;
|
|
7
|
+
_b;
|
|
8
|
+
constructor(a, b) {
|
|
9
|
+
super();
|
|
10
|
+
this._a = typeof a === "number" ? new AnimatedValue(a) : a;
|
|
11
|
+
this._b = typeof b === "number" ? new AnimatedValue(b) : b;
|
|
12
|
+
}
|
|
13
|
+
__makeNative(platformConfig) {
|
|
14
|
+
this._a.__makeNative(platformConfig);
|
|
15
|
+
this._b.__makeNative(platformConfig);
|
|
16
|
+
super.__makeNative(platformConfig);
|
|
17
|
+
}
|
|
18
|
+
__getValue() {
|
|
19
|
+
return this._a.__getValue() - this._b.__getValue();
|
|
20
|
+
}
|
|
21
|
+
interpolate(config) {
|
|
22
|
+
return new AnimatedInterpolation(this, config);
|
|
23
|
+
}
|
|
24
|
+
__attach() {
|
|
25
|
+
this._a.__addChild(this);
|
|
26
|
+
this._b.__addChild(this);
|
|
27
|
+
}
|
|
28
|
+
__detach() {
|
|
29
|
+
this._a.__removeChild(this);
|
|
30
|
+
this._b.__removeChild(this);
|
|
31
|
+
super.__detach();
|
|
32
|
+
}
|
|
33
|
+
__getNativeConfig() {
|
|
34
|
+
return {
|
|
35
|
+
type: "subtraction",
|
|
36
|
+
input: [this._a.__getNativeTag(), this._b.__getNativeTag()]
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
};
|
|
39
40
|
var AnimatedSubtraction_default = AnimatedSubtraction;
|
|
41
|
+
|
|
40
42
|
export { AnimatedSubtraction, AnimatedSubtraction_default as default };
|
|
41
43
|
//# sourceMappingURL=AnimatedSubtraction.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"AnimatedSubtraction.js","names":[],"sources":["esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.js"],"sourcesContent":["import { AnimatedInterpolation } from \"./AnimatedInterpolation\";\nimport { AnimatedValue } from \"./AnimatedValue\";\nimport { AnimatedWithChildren } from \"./AnimatedWithChildren\";\nclass AnimatedSubtraction extends AnimatedWithChildren {\n _a;\n _b;\n constructor(a, b) {\n super();\n this._a = typeof a === \"number\" ? new AnimatedValue(a) : a;\n this._b = typeof b === \"number\" ? new AnimatedValue(b) : b;\n }\n __makeNative(platformConfig) {\n this._a.__makeNative(platformConfig);\n this._b.__makeNative(platformConfig);\n super.__makeNative(platformConfig);\n }\n __getValue() {\n return this._a.__getValue() - this._b.__getValue();\n }\n interpolate(config) {\n return new AnimatedInterpolation(this, config);\n }\n __attach() {\n this._a.__addChild(this);\n this._b.__addChild(this);\n }\n __detach() {\n this._a.__removeChild(this);\n this._b.__removeChild(this);\n super.__detach();\n }\n __getNativeConfig() {\n return {\n type: \"subtraction\",\n input: [this._a.__getNativeTag(), this._b.__getNativeTag()]\n };\n }\n}\nvar AnimatedSubtraction_default = AnimatedSubtraction;\nexport {\n AnimatedSubtraction,\n AnimatedSubtraction_default as default\n};\n//# sourceMappingURL=AnimatedSubtraction.js.map\n"],"mappings":";;;;;AAGA,IAAM,sBAAN,cAAkC,qBAAqB;CACrD;CACA;CACA,YAAY,GAAG,GAAG;EAChB,MAAM;EACN,KAAK,KAAK,OAAO,MAAM,WAAW,IAAI,cAAc,CAAC,IAAI;EACzD,KAAK,KAAK,OAAO,MAAM,WAAW,IAAI,cAAc,CAAC,IAAI;CAC3D;CACA,aAAa,gBAAgB;EAC3B,KAAK,GAAG,aAAa,cAAc;EACnC,KAAK,GAAG,aAAa,cAAc;EACnC,MAAM,aAAa,cAAc;CACnC;CACA,aAAa;EACX,OAAO,KAAK,GAAG,WAAW,IAAI,KAAK,GAAG,WAAW;CACnD;CACA,YAAY,QAAQ;EAClB,OAAO,IAAI,sBAAsB,MAAM,MAAM;CAC/C;CACA,WAAW;EACT,KAAK,GAAG,WAAW,IAAI;EACvB,KAAK,GAAG,WAAW,IAAI;CACzB;CACA,WAAW;EACT,KAAK,GAAG,cAAc,IAAI;EAC1B,KAAK,GAAG,cAAc,IAAI;EAC1B,MAAM,SAAS;CACjB;CACA,oBAAoB;EAClB,OAAO;GACL,MAAM;GACN,OAAO,CAAC,KAAK,GAAG,eAAe,GAAG,KAAK,GAAG,eAAe,CAAC;EAC5D;CACF;AACF;AACA,IAAI,8BAA8B"}
|
|
@@ -1,64 +1,65 @@
|
|
|
1
|
-
import
|
|
1
|
+
import "./AnimatedValue.mjs";
|
|
2
2
|
import { AnimatedNode } from "./AnimatedNode.mjs";
|
|
3
3
|
import { generateNewAnimationId, shouldUseNativeDriver } from "../NativeAnimatedHelper.mjs";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}
|
|
4
|
+
|
|
5
|
+
var AnimatedTracking = class extends AnimatedNode {
|
|
6
|
+
_value;
|
|
7
|
+
_parent;
|
|
8
|
+
_callback;
|
|
9
|
+
_animationConfig;
|
|
10
|
+
_animationClass;
|
|
11
|
+
_useNativeDriver;
|
|
12
|
+
constructor(value, parent, animationClass, animationConfig, callback) {
|
|
13
|
+
super();
|
|
14
|
+
this._value = value;
|
|
15
|
+
this._parent = parent;
|
|
16
|
+
this._animationClass = animationClass;
|
|
17
|
+
this._animationConfig = animationConfig;
|
|
18
|
+
this._useNativeDriver = shouldUseNativeDriver(animationConfig);
|
|
19
|
+
this._callback = callback;
|
|
20
|
+
this.__attach();
|
|
21
|
+
}
|
|
22
|
+
__makeNative() {
|
|
23
|
+
this.__isNative = true;
|
|
24
|
+
this._parent.__makeNative();
|
|
25
|
+
super.__makeNative();
|
|
26
|
+
this._value.__makeNative();
|
|
27
|
+
}
|
|
28
|
+
__getValue() {
|
|
29
|
+
return this._parent.__getValue();
|
|
30
|
+
}
|
|
31
|
+
__attach() {
|
|
32
|
+
this._parent.__addChild(this);
|
|
33
|
+
if (this._useNativeDriver) {
|
|
34
|
+
this.__makeNative();
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
__detach() {
|
|
38
|
+
this._parent.__removeChild(this);
|
|
39
|
+
super.__detach();
|
|
40
|
+
}
|
|
41
|
+
update() {
|
|
42
|
+
this._value.animate(new this._animationClass({
|
|
43
|
+
...this._animationConfig,
|
|
44
|
+
toValue: this._animationConfig.toValue.__getValue()
|
|
45
|
+
}), this._callback);
|
|
46
|
+
}
|
|
47
|
+
__getNativeConfig() {
|
|
48
|
+
const animation = new this._animationClass({
|
|
49
|
+
...this._animationConfig,
|
|
50
|
+
toValue: void 0
|
|
51
|
+
});
|
|
52
|
+
const animationConfig = animation.__getNativeAnimationConfig();
|
|
53
|
+
return {
|
|
54
|
+
type: "tracking",
|
|
55
|
+
animationId: generateNewAnimationId(),
|
|
56
|
+
animationConfig,
|
|
57
|
+
toValue: this._parent.__getNativeTag(),
|
|
58
|
+
value: this._value.__getNativeTag()
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
62
|
var AnimatedTracking_default = AnimatedTracking;
|
|
63
|
+
|
|
63
64
|
export { AnimatedTracking, AnimatedTracking_default as default };
|
|
64
65
|
//# sourceMappingURL=AnimatedTracking.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"AnimatedTracking.js","names":[],"sources":["esm/vendor/react-native/Animated/nodes/AnimatedTracking.js"],"sourcesContent":["import { AnimatedValue } from \"./AnimatedValue\";\nimport { AnimatedNode } from \"./AnimatedNode\";\nimport { generateNewAnimationId, shouldUseNativeDriver } from \"../NativeAnimatedHelper\";\nclass AnimatedTracking extends AnimatedNode {\n _value;\n _parent;\n _callback;\n _animationConfig;\n _animationClass;\n _useNativeDriver;\n constructor(value, parent, animationClass, animationConfig, callback) {\n super();\n this._value = value;\n this._parent = parent;\n this._animationClass = animationClass;\n this._animationConfig = animationConfig;\n this._useNativeDriver = shouldUseNativeDriver(animationConfig);\n this._callback = callback;\n this.__attach();\n }\n __makeNative() {\n this.__isNative = true;\n this._parent.__makeNative();\n super.__makeNative();\n this._value.__makeNative();\n }\n __getValue() {\n return this._parent.__getValue();\n }\n __attach() {\n this._parent.__addChild(this);\n if (this._useNativeDriver) {\n this.__makeNative();\n }\n }\n __detach() {\n this._parent.__removeChild(this);\n super.__detach();\n }\n update() {\n this._value.animate(\n new this._animationClass({\n ...this._animationConfig,\n toValue: this._animationConfig.toValue.__getValue()\n }),\n this._callback\n );\n }\n __getNativeConfig() {\n const animation = new this._animationClass({\n ...this._animationConfig,\n // remove toValue from the config as it's a ref to Animated.Value\n toValue: void 0\n });\n const animationConfig = animation.__getNativeAnimationConfig();\n return {\n type: \"tracking\",\n animationId: generateNewAnimationId(),\n animationConfig,\n toValue: this._parent.__getNativeTag(),\n value: this._value.__getNativeTag()\n };\n }\n}\nvar AnimatedTracking_default = AnimatedTracking;\nexport {\n AnimatedTracking,\n AnimatedTracking_default as default\n};\n//# sourceMappingURL=AnimatedTracking.js.map\n"],"mappings":";;;;;AAGA,IAAM,mBAAN,cAA+B,aAAa;CAC1C;CACA;CACA;CACA;CACA;CACA;CACA,YAAY,OAAO,QAAQ,gBAAgB,iBAAiB,UAAU;EACpE,MAAM;EACN,KAAK,SAAS;EACd,KAAK,UAAU;EACf,KAAK,kBAAkB;EACvB,KAAK,mBAAmB;EACxB,KAAK,mBAAmB,sBAAsB,eAAe;EAC7D,KAAK,YAAY;EACjB,KAAK,SAAS;CAChB;CACA,eAAe;EACb,KAAK,aAAa;EAClB,KAAK,QAAQ,aAAa;EAC1B,MAAM,aAAa;EACnB,KAAK,OAAO,aAAa;CAC3B;CACA,aAAa;EACX,OAAO,KAAK,QAAQ,WAAW;CACjC;CACA,WAAW;EACT,KAAK,QAAQ,WAAW,IAAI;EAC5B,IAAI,KAAK,kBAAkB;GACzB,KAAK,aAAa;EACpB;CACF;CACA,WAAW;EACT,KAAK,QAAQ,cAAc,IAAI;EAC/B,MAAM,SAAS;CACjB;CACA,SAAS;EACP,KAAK,OAAO,QACV,IAAI,KAAK,gBAAgB;GACvB,GAAG,KAAK;GACR,SAAS,KAAK,iBAAiB,QAAQ,WAAW;EACpD,CAAC,GACD,KAAK,SACP;CACF;CACA,oBAAoB;EAClB,MAAM,YAAY,IAAI,KAAK,gBAAgB;GACzC,GAAG,KAAK;GAER,SAAS,KAAK;EAChB,CAAC;EACD,MAAM,kBAAkB,UAAU,2BAA2B;EAC7D,OAAO;GACL,MAAM;GACN,aAAa,uBAAuB;GACpC;GACA,SAAS,KAAK,QAAQ,eAAe;GACrC,OAAO,KAAK,OAAO,eAAe;EACpC;CACF;AACF;AACA,IAAI,2BAA2B"}
|