@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
package/dist/esm/View/index.mjs
CHANGED
|
@@ -1,107 +1,83 @@
|
|
|
1
|
-
import { forwardPropsListView, getLocaleDirection, pick,
|
|
1
|
+
import { TextAncestorContext, forwardPropsListView, getLocaleDirection, pick, useElementLayout, useLocaleContext, useMergeRefs, usePlatformMethods, useResponderEvents } from "@tamagui/react-native-web-internals";
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
import { useCreateElement } from "../createElement/index.mjs";
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
const pickProps = (props) => pick(props, forwardPropsListView);
|
|
5
6
|
const View = React.forwardRef((props, forwardedRef) => {
|
|
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
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
component = "a";
|
|
67
|
-
if (hrefAttrs != null) {
|
|
68
|
-
const {
|
|
69
|
-
download,
|
|
70
|
-
rel,
|
|
71
|
-
target
|
|
72
|
-
} = hrefAttrs;
|
|
73
|
-
if (download != null) {
|
|
74
|
-
supportedProps.download = download;
|
|
75
|
-
}
|
|
76
|
-
if (rel != null) {
|
|
77
|
-
supportedProps.rel = rel;
|
|
78
|
-
}
|
|
79
|
-
if (typeof target === "string") {
|
|
80
|
-
supportedProps.target = target.charAt(0) !== "_" ? "_" + target : target;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
const platformMethodsRef = usePlatformMethods(supportedProps);
|
|
85
|
-
const setRef = useMergeRefs(hostRef, platformMethodsRef, forwardedRef);
|
|
86
|
-
supportedProps.ref = setRef;
|
|
87
|
-
return useCreateElement(component, supportedProps, {
|
|
88
|
-
writingDirection
|
|
89
|
-
});
|
|
7
|
+
const { hrefAttrs, onLayout, onMoveShouldSetResponder, onMoveShouldSetResponderCapture, onResponderEnd, onResponderGrant, onResponderMove, onResponderReject, onResponderRelease, onResponderStart, onResponderTerminate, onResponderTerminationRequest, onScrollShouldSetResponder, onScrollShouldSetResponderCapture, onSelectionChangeShouldSetResponder, onSelectionChangeShouldSetResponderCapture, onStartShouldSetResponder, onStartShouldSetResponderCapture, ...rest } = props;
|
|
8
|
+
if (process.env.NODE_ENV !== "production") {
|
|
9
|
+
React.Children.toArray(props.children).forEach((item) => {
|
|
10
|
+
if (typeof item === "string") {
|
|
11
|
+
console.error(`Unexpected text node: ${item}. A text node cannot be a child of a <View>.`);
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
const hasTextAncestor = React.useContext(TextAncestorContext);
|
|
16
|
+
const hostRef = React.useRef(null);
|
|
17
|
+
const { direction: contextDirection } = useLocaleContext();
|
|
18
|
+
useElementLayout(hostRef, onLayout);
|
|
19
|
+
useResponderEvents(hostRef, {
|
|
20
|
+
onMoveShouldSetResponder,
|
|
21
|
+
onMoveShouldSetResponderCapture,
|
|
22
|
+
onResponderEnd,
|
|
23
|
+
onResponderGrant,
|
|
24
|
+
onResponderMove,
|
|
25
|
+
onResponderReject,
|
|
26
|
+
onResponderRelease,
|
|
27
|
+
onResponderStart,
|
|
28
|
+
onResponderTerminate,
|
|
29
|
+
onResponderTerminationRequest,
|
|
30
|
+
onScrollShouldSetResponder,
|
|
31
|
+
onScrollShouldSetResponderCapture,
|
|
32
|
+
onSelectionChangeShouldSetResponder,
|
|
33
|
+
onSelectionChangeShouldSetResponderCapture,
|
|
34
|
+
onStartShouldSetResponder,
|
|
35
|
+
onStartShouldSetResponderCapture
|
|
36
|
+
});
|
|
37
|
+
let component = "div";
|
|
38
|
+
const langDirection = props.lang != null ? getLocaleDirection(props.lang) : null;
|
|
39
|
+
const componentDirection = props.dir || langDirection;
|
|
40
|
+
const writingDirection = componentDirection || contextDirection;
|
|
41
|
+
const supportedProps = pickProps(rest);
|
|
42
|
+
supportedProps.dir = componentDirection;
|
|
43
|
+
supportedProps.style = [
|
|
44
|
+
styles.view,
|
|
45
|
+
hasTextAncestor && styles.inline,
|
|
46
|
+
props.style
|
|
47
|
+
];
|
|
48
|
+
if (props.href != null) {
|
|
49
|
+
component = "a";
|
|
50
|
+
if (hrefAttrs != null) {
|
|
51
|
+
const { download, rel, target } = hrefAttrs;
|
|
52
|
+
if (download != null) {
|
|
53
|
+
supportedProps.download = download;
|
|
54
|
+
}
|
|
55
|
+
if (rel != null) {
|
|
56
|
+
supportedProps.rel = rel;
|
|
57
|
+
}
|
|
58
|
+
if (typeof target === "string") {
|
|
59
|
+
supportedProps.target = target.charAt(0) !== "_" ? "_" + target : target;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
const platformMethodsRef = usePlatformMethods(supportedProps);
|
|
64
|
+
const setRef = useMergeRefs(hostRef, platformMethodsRef, forwardedRef);
|
|
65
|
+
supportedProps.ref = setRef;
|
|
66
|
+
return useCreateElement(component, supportedProps, { writingDirection });
|
|
90
67
|
});
|
|
91
68
|
View.displayName = "View";
|
|
92
69
|
const styles = {
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
display: "inline-flex"
|
|
103
|
-
}
|
|
70
|
+
view: {
|
|
71
|
+
alignItems: "stretch",
|
|
72
|
+
boxSizing: "border-box",
|
|
73
|
+
display: "flex",
|
|
74
|
+
flexBasis: "auto",
|
|
75
|
+
flexDirection: "column",
|
|
76
|
+
flexShrink: 0
|
|
77
|
+
},
|
|
78
|
+
inline: { display: "inline-flex" }
|
|
104
79
|
};
|
|
105
80
|
var View_default = View;
|
|
81
|
+
|
|
106
82
|
export { View, View_default as default };
|
|
107
83
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["esm/View/index.js"],"sourcesContent":["import {\n forwardPropsListView,\n getLocaleDirection,\n pick,\n TextAncestorContext,\n useElementLayout,\n useLocaleContext,\n useMergeRefs,\n usePlatformMethods,\n useResponderEvents\n} from \"@tamagui/react-native-web-internals\";\nimport * as React from \"react\";\nimport { useCreateElement } from \"../createElement/index\";\nconst pickProps = (props) => pick(props, forwardPropsListView);\nconst View = React.forwardRef(\n (props, forwardedRef) => {\n const {\n hrefAttrs,\n onLayout,\n onMoveShouldSetResponder,\n onMoveShouldSetResponderCapture,\n onResponderEnd,\n onResponderGrant,\n onResponderMove,\n onResponderReject,\n onResponderRelease,\n onResponderStart,\n onResponderTerminate,\n onResponderTerminationRequest,\n onScrollShouldSetResponder,\n onScrollShouldSetResponderCapture,\n onSelectionChangeShouldSetResponder,\n onSelectionChangeShouldSetResponderCapture,\n onStartShouldSetResponder,\n onStartShouldSetResponderCapture,\n ...rest\n } = props;\n if (process.env.NODE_ENV !== \"production\") {\n React.Children.toArray(props.children).forEach((item) => {\n if (typeof item === \"string\") {\n console.error(\n `Unexpected text node: ${item}. A text node cannot be a child of a <View>.`\n );\n }\n });\n }\n const hasTextAncestor = React.useContext(TextAncestorContext);\n const hostRef = React.useRef(null);\n const { direction: contextDirection } = useLocaleContext();\n useElementLayout(hostRef, onLayout);\n useResponderEvents(hostRef, {\n onMoveShouldSetResponder,\n onMoveShouldSetResponderCapture,\n onResponderEnd,\n onResponderGrant,\n onResponderMove,\n onResponderReject,\n onResponderRelease,\n onResponderStart,\n onResponderTerminate,\n onResponderTerminationRequest,\n onScrollShouldSetResponder,\n onScrollShouldSetResponderCapture,\n onSelectionChangeShouldSetResponder,\n onSelectionChangeShouldSetResponderCapture,\n onStartShouldSetResponder,\n onStartShouldSetResponderCapture\n });\n let component = \"div\";\n const langDirection = props.lang != null ? getLocaleDirection(props.lang) : null;\n const componentDirection = props.dir || langDirection;\n const writingDirection = componentDirection || contextDirection;\n const supportedProps = pickProps(rest);\n supportedProps.dir = componentDirection;\n supportedProps.style = [styles.view, hasTextAncestor && styles.inline, props.style];\n if (props.href != null) {\n component = \"a\";\n if (hrefAttrs != null) {\n const { download, rel, target } = hrefAttrs;\n if (download != null) {\n supportedProps.download = download;\n }\n if (rel != null) {\n supportedProps.rel = rel;\n }\n if (typeof target === \"string\") {\n supportedProps.target = target.charAt(0) !== \"_\" ? \"_\" + target : target;\n }\n }\n }\n const platformMethodsRef = usePlatformMethods(supportedProps);\n const setRef = useMergeRefs(hostRef, platformMethodsRef, forwardedRef);\n supportedProps.ref = setRef;\n return useCreateElement(component, supportedProps, { writingDirection });\n }\n);\nView.displayName = \"View\";\nconst styles = {\n view: {\n alignItems: \"stretch\",\n boxSizing: \"border-box\",\n display: \"flex\",\n flexBasis: \"auto\",\n flexDirection: \"column\",\n flexShrink: 0\n },\n inline: {\n display: \"inline-flex\"\n }\n};\nvar View_default = View;\nexport {\n View,\n View_default as default\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;;;AAaA,MAAM,aAAa,UAAU,KAAK,OAAO,oBAAoB;AAC7D,MAAM,OAAO,MAAM,YAChB,OAAO,iBAAiB;CACvB,MAAM,EACJ,WACA,UACA,0BACA,iCACA,gBACA,kBACA,iBACA,mBACA,oBACA,kBACA,sBACA,+BACA,4BACA,mCACA,qCACA,4CACA,2BACA,kCACA,GAAG,SACD;CACJ,IAAI,QAAQ,IAAI,aAAa,cAAc;EACzC,MAAM,SAAS,QAAQ,MAAM,QAAQ,EAAE,SAAS,SAAS;GACvD,IAAI,OAAO,SAAS,UAAU;IAC5B,QAAQ,MACN,yBAAyB,KAAK,6CAChC;GACF;EACF,CAAC;CACH;CACA,MAAM,kBAAkB,MAAM,WAAW,mBAAmB;CAC5D,MAAM,UAAU,MAAM,OAAO,IAAI;CACjC,MAAM,EAAE,WAAW,qBAAqB,iBAAiB;CACzD,iBAAiB,SAAS,QAAQ;CAClC,mBAAmB,SAAS;EAC1B;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF,CAAC;CACD,IAAI,YAAY;CAChB,MAAM,gBAAgB,MAAM,QAAQ,OAAO,mBAAmB,MAAM,IAAI,IAAI;CAC5E,MAAM,qBAAqB,MAAM,OAAO;CACxC,MAAM,mBAAmB,sBAAsB;CAC/C,MAAM,iBAAiB,UAAU,IAAI;CACrC,eAAe,MAAM;CACrB,eAAe,QAAQ;EAAC,OAAO;EAAM,mBAAmB,OAAO;EAAQ,MAAM;CAAK;CAClF,IAAI,MAAM,QAAQ,MAAM;EACtB,YAAY;EACZ,IAAI,aAAa,MAAM;GACrB,MAAM,EAAE,UAAU,KAAK,WAAW;GAClC,IAAI,YAAY,MAAM;IACpB,eAAe,WAAW;GAC5B;GACA,IAAI,OAAO,MAAM;IACf,eAAe,MAAM;GACvB;GACA,IAAI,OAAO,WAAW,UAAU;IAC9B,eAAe,SAAS,OAAO,OAAO,CAAC,MAAM,MAAM,MAAM,SAAS;GACpE;EACF;CACF;CACA,MAAM,qBAAqB,mBAAmB,cAAc;CAC5D,MAAM,SAAS,aAAa,SAAS,oBAAoB,YAAY;CACrE,eAAe,MAAM;CACrB,OAAO,iBAAiB,WAAW,gBAAgB,EAAE,iBAAiB,CAAC;AACzE,CACF;AACA,KAAK,cAAc;AACnB,MAAM,SAAS;CACb,MAAM;EACJ,YAAY;EACZ,WAAW;EACX,SAAS;EACT,WAAW;EACX,eAAe;EACf,YAAY;CACd;CACA,QAAQ,EACN,SAAS,cACX;AACF;AACA,IAAI,eAAe"}
|
package/dist/esm/View/types.mjs
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export { default2 as VirtualizedList, VirtualizedList as default };
|
|
4
|
-
//# sourceMappingURL=VirtualizedList.mjs.map
|
|
1
|
+
import default2, { VirtualizedList } from "./vendor/react-native/VirtualizedList/index.mjs";
|
|
2
|
+
|
|
3
|
+
export { default2 as VirtualizedList, VirtualizedList as default };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
function codegenNativeCommands() {
|
|
2
|
+
console.warn(`codegenNativeCommands on web is a no-op`);
|
|
3
|
+
return {};
|
|
4
|
+
}
|
|
5
|
+
var codegenNativeCommands_default = codegenNativeCommands;
|
|
6
|
+
|
|
7
|
+
export { codegenNativeCommands, codegenNativeCommands_default as default };
|
|
8
|
+
//# sourceMappingURL=codegenNativeCommands.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"codegenNativeCommands.js","names":[],"sources":["esm/codegenNativeCommands.js"],"sourcesContent":["function codegenNativeCommands() {\n console.warn(`codegenNativeCommands on web is a no-op`);\n return {};\n}\nvar codegenNativeCommands_default = codegenNativeCommands;\nexport {\n codegenNativeCommands,\n codegenNativeCommands_default as default\n};\n//# sourceMappingURL=codegenNativeCommands.js.map\n"],"mappings":";AAAA,SAAS,wBAAwB;CAC/B,QAAQ,KAAK,yCAAyC;CACtD,OAAO,CAAC;AACV;AACA,IAAI,gCAAgC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
function codegenNativeComponent() {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
console.warn(`codegenNativeComponent on web is a no-op`);
|
|
3
|
+
return {};
|
|
4
4
|
}
|
|
5
|
-
|
|
5
|
+
var codegenNativeComponent_default = codegenNativeComponent;
|
|
6
|
+
|
|
7
|
+
export { codegenNativeComponent, codegenNativeComponent_default as default };
|
|
6
8
|
//# sourceMappingURL=codegenNativeComponent.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"codegenNativeComponent.js","names":[],"sources":["esm/codegenNativeComponent.js"],"sourcesContent":["function codegenNativeComponent() {\n console.warn(`codegenNativeComponent on web is a no-op`);\n return {};\n}\nvar codegenNativeComponent_default = codegenNativeComponent;\nexport {\n codegenNativeComponent,\n codegenNativeComponent_default as default\n};\n//# sourceMappingURL=codegenNativeComponent.js.map\n"],"mappings":";AAAA,SAAS,yBAAyB;CAChC,QAAQ,KAAK,0CAA0C;CACvD,OAAO,CAAC;AACV;AACA,IAAI,iCAAiC"}
|
|
@@ -2,56 +2,46 @@ import { AccessibilityUtil, LocaleProvider, createDOMProps, stylesFromProps } fr
|
|
|
2
2
|
import { getStyleTags, insertStyleRules, useDidFinishSSR } from "@tamagui/web";
|
|
3
3
|
import React, { useInsertionEffect, useMemo } from "react";
|
|
4
4
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
|
|
5
6
|
const useCreateElement = (component, props, options) => {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
styleObj[style[0]] = style;
|
|
21
|
-
}
|
|
22
|
-
insertStyleRules(styleObj);
|
|
23
|
-
}, [styles]);
|
|
24
|
-
return /* @__PURE__ */jsxs(Fragment, {
|
|
25
|
-
children: [element, styleTags]
|
|
26
|
-
});
|
|
7
|
+
const { element, styles } = createElementAndStyles(component, props, options);
|
|
8
|
+
const isHydrated = useDidFinishSSR();
|
|
9
|
+
const styleTags = useMemo(() => {
|
|
10
|
+
return isHydrated || !styles ? null : getStyleTags(styles);
|
|
11
|
+
}, []);
|
|
12
|
+
useInsertionEffect(() => {
|
|
13
|
+
if (!styles) return;
|
|
14
|
+
const styleObj = {};
|
|
15
|
+
for (const style of styles) {
|
|
16
|
+
styleObj[style[0]] = style;
|
|
17
|
+
}
|
|
18
|
+
insertStyleRules(styleObj);
|
|
19
|
+
}, [styles]);
|
|
20
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [element, styleTags] });
|
|
27
21
|
};
|
|
28
22
|
const createElement = (component, props, options) => {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
styles
|
|
32
|
-
} = createElementAndStyles(component, props, options);
|
|
33
|
-
return /* @__PURE__ */jsxs(Fragment, {
|
|
34
|
-
children: [element, styles ? getStyleTags(styles) : null]
|
|
35
|
-
});
|
|
23
|
+
const { element, styles } = createElementAndStyles(component, props, options);
|
|
24
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [element, styles ? getStyleTags(styles) : null] });
|
|
36
25
|
};
|
|
37
26
|
const createElementAndStyles = (component, props, options) => {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
27
|
+
let accessibilityComponent;
|
|
28
|
+
if (component && component.constructor === String) {
|
|
29
|
+
accessibilityComponent = AccessibilityUtil.propsToAccessibilityComponent(props);
|
|
30
|
+
}
|
|
31
|
+
const Component = accessibilityComponent || component;
|
|
32
|
+
const domProps = createDOMProps(Component, props, options);
|
|
33
|
+
const styles = stylesFromProps.get(domProps);
|
|
34
|
+
let element = React.createElement(Component, domProps);
|
|
35
|
+
const elementWithLocaleProvider = domProps.dir ? /* @__PURE__ */ jsx(LocaleProvider, {
|
|
36
|
+
direction: domProps.dir,
|
|
37
|
+
locale: domProps.lang,
|
|
38
|
+
children: element
|
|
39
|
+
}) : element;
|
|
40
|
+
return {
|
|
41
|
+
element: elementWithLocaleProvider,
|
|
42
|
+
styles
|
|
43
|
+
};
|
|
55
44
|
};
|
|
45
|
+
|
|
56
46
|
export { createElement, useCreateElement };
|
|
57
47
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["esm/createElement/index.js"],"sourcesContent":["import {\n AccessibilityUtil,\n LocaleProvider,\n createDOMProps,\n stylesFromProps\n} from \"@tamagui/react-native-web-internals\";\nimport {\n getStyleTags,\n insertStyleRules,\n useDidFinishSSR\n} from \"@tamagui/web\";\nimport React, { useInsertionEffect, useMemo } from \"react\";\nimport { Fragment, jsx, jsxs } from \"react/jsx-runtime\";\nconst useCreateElement = (component, props, options) => {\n const { element, styles } = createElementAndStyles(component, props, options);\n const isHydrated = useDidFinishSSR();\n const styleTags = useMemo(() => {\n return isHydrated || !styles ? null : getStyleTags(styles);\n }, [\n // never changes\n ]);\n useInsertionEffect(() => {\n if (!styles) return;\n const styleObj = {};\n for (const style of styles) {\n styleObj[style[0]] = style;\n }\n insertStyleRules(styleObj);\n }, [styles]);\n return /* @__PURE__ */ jsxs(Fragment, { children: [\n element,\n styleTags\n ] });\n};\nconst createElement = (component, props, options) => {\n const { element, styles } = createElementAndStyles(component, props, options);\n return /* @__PURE__ */ jsxs(Fragment, { children: [\n element,\n styles ? getStyleTags(styles) : null\n ] });\n};\nconst createElementAndStyles = (component, props, options) => {\n let accessibilityComponent;\n if (component && component.constructor === String) {\n accessibilityComponent = AccessibilityUtil.propsToAccessibilityComponent(props);\n }\n const Component = accessibilityComponent || component;\n const domProps = createDOMProps(Component, props, options);\n const styles = stylesFromProps.get(domProps);\n let element = React.createElement(Component, domProps);\n const elementWithLocaleProvider = domProps.dir ? /* @__PURE__ */ jsx(LocaleProvider, { direction: domProps.dir, locale: domProps.lang, children: element }) : element;\n return {\n element: elementWithLocaleProvider,\n styles\n };\n};\nexport {\n createElement,\n useCreateElement\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;;;;AAaA,MAAM,oBAAoB,WAAW,OAAO,YAAY;CACtD,MAAM,EAAE,SAAS,WAAW,uBAAuB,WAAW,OAAO,OAAO;CAC5E,MAAM,aAAa,gBAAgB;CACnC,MAAM,YAAY,cAAc;EAC9B,OAAO,cAAc,CAAC,SAAS,OAAO,aAAa,MAAM;CAC3D,GAAG,CAEH,CAAC;CACD,yBAAyB;EACvB,IAAI,CAAC,QAAQ;EACb,MAAM,WAAW,CAAC;EAClB,KAAK,MAAM,SAAS,QAAQ;GAC1B,SAAS,MAAM,MAAM;EACvB;EACA,iBAAiB,QAAQ;CAC3B,GAAG,CAAC,MAAM,CAAC;CACX,OAAuB,qBAAK,UAAU,EAAE,UAAU,CAChD,SACA,SACF,EAAE,CAAC;AACL;AACA,MAAM,iBAAiB,WAAW,OAAO,YAAY;CACnD,MAAM,EAAE,SAAS,WAAW,uBAAuB,WAAW,OAAO,OAAO;CAC5E,OAAuB,qBAAK,UAAU,EAAE,UAAU,CAChD,SACA,SAAS,aAAa,MAAM,IAAI,IAClC,EAAE,CAAC;AACL;AACA,MAAM,0BAA0B,WAAW,OAAO,YAAY;CAC5D,IAAI;CACJ,IAAI,aAAa,UAAU,gBAAgB,QAAQ;EACjD,yBAAyB,kBAAkB,8BAA8B,KAAK;CAChF;CACA,MAAM,YAAY,0BAA0B;CAC5C,MAAM,WAAW,eAAe,WAAW,OAAO,OAAO;CACzD,MAAM,SAAS,gBAAgB,IAAI,QAAQ;CAC3C,IAAI,UAAU,MAAM,cAAc,WAAW,QAAQ;CACrD,MAAM,4BAA4B,SAAS,MAAsB,oBAAI,gBAAgB;EAAE,WAAW,SAAS;EAAK,QAAQ,SAAS;EAAM,UAAU;CAAQ,CAAC,IAAI;CAC9J,OAAO;EACL,SAAS;EACT;CACF;AACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"createReactDOMStyle.js","names":[],"sources":["esm/createReactDOMStyle.js"],"sourcesContent":["import { createReactDOMStyle } from \"@tamagui/react-native-web-internals\";\nvar createReactDOMStyle_default = createReactDOMStyle;\nexport {\n createReactDOMStyle,\n createReactDOMStyle_default as default\n};\n//# sourceMappingURL=createReactDOMStyle.js.map\n"],"mappings":";;;AACA,IAAI,8BAA8B"}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { createContext } from "react";
|
|
2
|
-
import { AccessibilityUtil,
|
|
2
|
+
import { AccessibilityUtil, ImageLoader, InteractionManager, LocaleProvider, Platform, StyleSheet, TextAncestorContext, UIManager, canUseDOM, clickProps, createDOMProps, dismissKeyboard, flattenStyle, isWebColor, mergeRefs, normalizeColor, processColor, processStyle, useEvent, useHover, useLayoutEffect, useMergeRefs, usePlatformMethods } from "@tamagui/react-native-web-internals";
|
|
3
3
|
import { createElement } from "./createElement/index.mjs";
|
|
4
4
|
import { NativeModules } from "./NativeModules/index.mjs";
|
|
5
5
|
import { render } from "./render/index.mjs";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import
|
|
6
|
+
import { codegenNativeCommands } from "./codegenNativeCommands.mjs";
|
|
7
|
+
import { codegenNativeComponent } from "./codegenNativeComponent.mjs";
|
|
8
|
+
import default2 from "./vendor/react-native/Animated/Animated.mjs";
|
|
9
|
+
import default3 from "./vendor/react-native/Animated/Easing.mjs";
|
|
10
|
+
import default4 from "./vendor/react-native/EventEmitter/NativeEventEmitter.mjs";
|
|
11
|
+
import * as TurboModuleRegistry from "./vendor/react-native/TurboModule/TurboModuleRegistry.mjs";
|
|
9
12
|
import { AccessibilityInfo } from "./AccessibilityInfo/index.mjs";
|
|
10
13
|
import { Alert } from "./Alert/index.mjs";
|
|
11
14
|
import { Appearance } from "./Appearance/index.mjs";
|
|
@@ -48,14 +51,16 @@ import { useColorScheme } from "./useColorScheme/index.mjs";
|
|
|
48
51
|
import { useLocaleContext } from "./useLocaleContext/index.mjs";
|
|
49
52
|
import { useWindowDimensions } from "./useWindowDimensions/index.mjs";
|
|
50
53
|
import { unstable_batchedUpdates } from "react-dom";
|
|
54
|
+
|
|
51
55
|
function requireNativeComponent(name) {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
56
|
+
return function FakeComponent() {
|
|
57
|
+
return null;
|
|
58
|
+
};
|
|
55
59
|
}
|
|
56
|
-
const findNodeHandle = component => {
|
|
57
|
-
|
|
60
|
+
const findNodeHandle = (component) => {
|
|
61
|
+
throw new Error("not supported - use ref instead");
|
|
58
62
|
};
|
|
59
63
|
const RootTagContext = createContext(null);
|
|
60
|
-
|
|
64
|
+
|
|
65
|
+
export { AccessibilityInfo, AccessibilityUtil, ActivityIndicator, Alert, default2 as Animated, AppRegistry, AppState, Appearance, BackHandler, Clipboard, DeviceEmitter, DeviceEmitter2 as DeviceEventEmitter, DeviceInfo, Dimensions, UnimplementedView as DrawerLayoutAndroid, default3 as Easing, FlatList, I18nManager, Image, ImageBackground, ImageLoader, InteractionManager, Keyboard, KeyboardAvoidingView, Linking, LocaleProvider, LogBox, Modal, default4 as NativeEventEmitter, NativeModules, PanResponder, PixelRatio, Platform, Pressable, RefreshControl, RootTagContext, SafeAreaView, ScrollView, SectionList, Share, StatusBar, StyleSheet, UnimplementedView2 as Switch, Text, TextAncestorContext, TextInput, TouchableOpacity as Touchable, UnimplementedView3 as TouchableHighlight, TouchableNativeFeedback, TouchableOpacity2 as TouchableOpacity, TouchableWithoutFeedback, TurboModuleRegistry, UIManager, Vibration, View, VirtualizedList, canUseDOM, clickProps, codegenNativeCommands, codegenNativeComponent, createDOMProps, dismissKeyboard, findNodeHandle, flattenStyle, isWebColor, mergeRefs, normalizeColor, processColor, processStyle, render, requireNativeComponent, unstable_batchedUpdates, createElement as unstable_createElement, useColorScheme, useEvent, useHover, useLayoutEffect, useLocaleContext, useMergeRefs, usePlatformMethods, useWindowDimensions };
|
|
61
66
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["esm/index.js"],"sourcesContent":["import { createContext } from \"react\";\nimport {\n AccessibilityUtil,\n canUseDOM,\n clickProps,\n createDOMProps,\n dismissKeyboard,\n flattenStyle,\n ImageLoader,\n InteractionManager,\n isWebColor,\n LocaleProvider,\n mergeRefs,\n normalizeColor,\n Platform,\n processColor,\n processStyle,\n StyleSheet,\n TextAncestorContext,\n UIManager,\n useEvent,\n useHover,\n useLayoutEffect,\n useMergeRefs,\n usePlatformMethods\n} from \"@tamagui/react-native-web-internals\";\nimport { createElement } from \"./createElement/index\";\nimport { NativeModules } from \"./NativeModules/index\";\nimport { render } from \"./render/index\";\nimport { codegenNativeCommands } from \"./codegenNativeCommands\";\nimport { codegenNativeComponent } from \"./codegenNativeComponent\";\nimport { default as default2 } from \"./vendor/react-native/Animated/Animated\";\nimport { default as default3 } from \"./vendor/react-native/Animated/Easing\";\nimport { default as default4 } from \"./vendor/react-native/EventEmitter/NativeEventEmitter\";\nimport * as TurboModuleRegistry from \"./vendor/react-native/TurboModule/TurboModuleRegistry\";\nimport { AccessibilityInfo } from \"./AccessibilityInfo/index\";\nimport { Alert } from \"./Alert/index\";\nimport { Appearance } from \"./Appearance/index\";\nimport { AppRegistry } from \"./AppRegistry/index\";\nimport { AppState } from \"./AppState/index\";\nimport { BackHandler } from \"./BackHandler/index\";\nimport { Clipboard } from \"./Clipboard/index\";\nimport { DeviceEmitter, DeviceEmitter as DeviceEmitter2 } from \"./DeviceEmitter\";\nimport { DeviceInfo } from \"./DeviceInfo/index\";\nimport { Dimensions } from \"./Dimensions/index\";\nimport { I18nManager } from \"./I18nManager/index\";\nimport { Keyboard } from \"./Keyboard/index\";\nimport { Linking } from \"./Linking/index\";\nimport { PanResponder } from \"./PanResponder/index\";\nimport { PixelRatio } from \"./PixelRatio/index\";\nimport { Share } from \"./Share/index\";\nimport { Vibration } from \"./Vibration/index\";\nimport { FlatList } from \"./FlatList\";\nimport { SectionList } from \"./SectionList\";\nimport { VirtualizedList } from \"./VirtualizedList\";\nimport { TouchableNativeFeedback } from \"./TouchableNativeFeedback\";\nimport {\n UnimplementedView,\n UnimplementedView as UnimplementedView2,\n UnimplementedView as UnimplementedView3\n} from \"./UnimplementedView\";\nimport { TouchableOpacity, TouchableOpacity as TouchableOpacity2 } from \"./TouchableOpacity\";\nimport { TouchableWithoutFeedback } from \"./TouchableWithoutFeedback\";\nimport { ActivityIndicator } from \"./ActivityIndicator/index\";\nimport { Image } from \"./Image/index\";\nimport { ImageBackground } from \"./ImageBackground/index\";\nimport { KeyboardAvoidingView } from \"./KeyboardAvoidingView/index\";\nimport { LogBox } from \"./LogBox/index\";\nimport { Modal } from \"./Modal/index\";\nimport { Pressable } from \"./Pressable/index\";\nimport { RefreshControl } from \"./RefreshControl/index\";\nimport { SafeAreaView } from \"./SafeAreaView/index\";\nimport { ScrollView } from \"./ScrollView/index\";\nimport { StatusBar } from \"./StatusBar/index\";\nimport { Text } from \"./Text/index\";\nimport { TextInput } from \"./TextInput/index\";\nimport { View } from \"./View/index\";\nimport { useColorScheme } from \"./useColorScheme/index\";\nimport { useLocaleContext } from \"./useLocaleContext/index\";\nimport { useWindowDimensions } from \"./useWindowDimensions/index\";\nimport { unstable_batchedUpdates } from \"react-dom\";\nfunction requireNativeComponent(name) {\n return function FakeComponent() {\n return null;\n };\n}\nconst findNodeHandle = (component) => {\n throw new Error(\"not supported - use ref instead\");\n};\nconst RootTagContext = createContext(null);\nexport {\n AccessibilityInfo,\n AccessibilityUtil,\n ActivityIndicator,\n Alert,\n default2 as Animated,\n AppRegistry,\n AppState,\n Appearance,\n BackHandler,\n Clipboard,\n DeviceEmitter,\n DeviceEmitter2 as DeviceEventEmitter,\n DeviceInfo,\n Dimensions,\n UnimplementedView as DrawerLayoutAndroid,\n default3 as Easing,\n FlatList,\n I18nManager,\n Image,\n ImageBackground,\n ImageLoader,\n InteractionManager,\n Keyboard,\n KeyboardAvoidingView,\n Linking,\n LocaleProvider,\n LogBox,\n Modal,\n default4 as NativeEventEmitter,\n NativeModules,\n PanResponder,\n PixelRatio,\n Platform,\n Pressable,\n RefreshControl,\n RootTagContext,\n SafeAreaView,\n ScrollView,\n SectionList,\n Share,\n StatusBar,\n StyleSheet,\n UnimplementedView2 as Switch,\n Text,\n TextAncestorContext,\n TextInput,\n TouchableOpacity as Touchable,\n UnimplementedView3 as TouchableHighlight,\n TouchableNativeFeedback,\n TouchableOpacity2 as TouchableOpacity,\n TouchableWithoutFeedback,\n TurboModuleRegistry,\n UIManager,\n Vibration,\n View,\n VirtualizedList,\n canUseDOM,\n clickProps,\n codegenNativeCommands,\n codegenNativeComponent,\n createDOMProps,\n dismissKeyboard,\n findNodeHandle,\n flattenStyle,\n isWebColor,\n mergeRefs,\n normalizeColor,\n processColor,\n processStyle,\n render,\n requireNativeComponent,\n unstable_batchedUpdates,\n createElement as unstable_createElement,\n useColorScheme,\n useEvent,\n useHover,\n useLayoutEffect,\n useLocaleContext,\n useMergeRefs,\n usePlatformMethods,\n useWindowDimensions\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiFA,SAAS,uBAAuB,MAAM;CACpC,OAAO,SAAS,gBAAgB;EAC9B,OAAO;CACT;AACF;AACA,MAAM,kBAAkB,cAAc;CACpC,MAAM,IAAI,MAAM,iCAAiC;AACnD;AACA,MAAM,iBAAiB,cAAc,IAAI"}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { createContext } from "react";
|
|
2
|
-
import { AccessibilityUtil,
|
|
2
|
+
import { AccessibilityUtil, ImageLoader, InteractionManager, LocaleProvider, Platform, StyleSheet, TextAncestorContext, UIManager, canUseDOM, clickProps, createDOMProps, dismissKeyboard, flattenStyle, isWebColor, mergeRefs, normalizeColor, processColor, processStyle, useEvent, useHover, useLayoutEffect, useMergeRefs, usePlatformMethods } from "@tamagui/react-native-web-internals";
|
|
3
3
|
import { createElement } from "./createElement/index.mjs";
|
|
4
4
|
import { NativeModules } from "./NativeModules/index.mjs";
|
|
5
5
|
import { render } from "./render/index.mjs";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import
|
|
6
|
+
import { codegenNativeCommands } from "./codegenNativeCommands.mjs";
|
|
7
|
+
import { codegenNativeComponent } from "./codegenNativeComponent.mjs";
|
|
8
|
+
import default2 from "./vendor/react-native/Animated/Animated.mjs";
|
|
9
|
+
import default3 from "./vendor/react-native/Animated/Easing.mjs";
|
|
10
|
+
import default4 from "./vendor/react-native/EventEmitter/NativeEventEmitter.mjs";
|
|
11
|
+
import * as TurboModuleRegistry from "./vendor/react-native/TurboModule/TurboModuleRegistry.mjs";
|
|
9
12
|
import { AccessibilityInfo } from "./AccessibilityInfo/index.mjs";
|
|
10
13
|
import { Alert } from "./Alert/index.mjs";
|
|
11
14
|
import { Appearance } from "./Appearance/index.mjs";
|
|
@@ -48,14 +51,16 @@ import { useColorScheme } from "./useColorScheme/index.mjs";
|
|
|
48
51
|
import { useLocaleContext } from "./useLocaleContext/index.mjs";
|
|
49
52
|
import { useWindowDimensions } from "./useWindowDimensions/index.mjs";
|
|
50
53
|
import { unstable_batchedUpdates } from "react-dom";
|
|
54
|
+
|
|
51
55
|
function requireNativeComponent(name) {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
56
|
+
return function FakeComponent() {
|
|
57
|
+
return null;
|
|
58
|
+
};
|
|
55
59
|
}
|
|
56
|
-
const findNodeHandle = component => {
|
|
57
|
-
|
|
60
|
+
const findNodeHandle = (component) => {
|
|
61
|
+
throw new Error("not supported - use ref instead");
|
|
58
62
|
};
|
|
59
63
|
const RootTagContext = createContext(null);
|
|
60
|
-
|
|
64
|
+
|
|
65
|
+
export { AccessibilityInfo, AccessibilityUtil, ActivityIndicator, Alert, default2 as Animated, AppRegistry, AppState, Appearance, BackHandler, Clipboard, DeviceEmitter, DeviceEmitter2 as DeviceEventEmitter, DeviceInfo, Dimensions, UnimplementedView as DrawerLayoutAndroid, default3 as Easing, FlatList, I18nManager, Image, ImageBackground, ImageLoader, InteractionManager, Keyboard, KeyboardAvoidingView, Linking, LocaleProvider, LogBox, Modal, default4 as NativeEventEmitter, NativeModules, PanResponder, PixelRatio, Platform, Pressable, RefreshControl, RootTagContext, SafeAreaView, ScrollView, SectionList, Share, StatusBar, StyleSheet, UnimplementedView2 as Switch, Text, TextAncestorContext, TextInput, TouchableOpacity as Touchable, UnimplementedView3 as TouchableHighlight, TouchableNativeFeedback, TouchableOpacity2 as TouchableOpacity, TouchableWithoutFeedback, TurboModuleRegistry, UIManager, Vibration, View, VirtualizedList, canUseDOM, clickProps, codegenNativeCommands, codegenNativeComponent, createDOMProps, dismissKeyboard, findNodeHandle, flattenStyle, isWebColor, mergeRefs, normalizeColor, processColor, processStyle, render, requireNativeComponent, unstable_batchedUpdates, createElement as unstable_createElement, useColorScheme, useEvent, useHover, useLayoutEffect, useLocaleContext, useMergeRefs, usePlatformMethods, useWindowDimensions };
|
|
61
66
|
//# sourceMappingURL=index.mjs.map
|
package/dist/esm/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["esm/index.js"],"sourcesContent":["import { createContext } from \"react\";\nimport {\n AccessibilityUtil,\n canUseDOM,\n clickProps,\n createDOMProps,\n dismissKeyboard,\n flattenStyle,\n ImageLoader,\n InteractionManager,\n isWebColor,\n LocaleProvider,\n mergeRefs,\n normalizeColor,\n Platform,\n processColor,\n processStyle,\n StyleSheet,\n TextAncestorContext,\n UIManager,\n useEvent,\n useHover,\n useLayoutEffect,\n useMergeRefs,\n usePlatformMethods\n} from \"@tamagui/react-native-web-internals\";\nimport { createElement } from \"./createElement/index\";\nimport { NativeModules } from \"./NativeModules/index\";\nimport { render } from \"./render/index\";\nimport { codegenNativeCommands } from \"./codegenNativeCommands\";\nimport { codegenNativeComponent } from \"./codegenNativeComponent\";\nimport { default as default2 } from \"./vendor/react-native/Animated/Animated\";\nimport { default as default3 } from \"./vendor/react-native/Animated/Easing\";\nimport { default as default4 } from \"./vendor/react-native/EventEmitter/NativeEventEmitter\";\nimport * as TurboModuleRegistry from \"./vendor/react-native/TurboModule/TurboModuleRegistry\";\nimport { AccessibilityInfo } from \"./AccessibilityInfo/index\";\nimport { Alert } from \"./Alert/index\";\nimport { Appearance } from \"./Appearance/index\";\nimport { AppRegistry } from \"./AppRegistry/index\";\nimport { AppState } from \"./AppState/index\";\nimport { BackHandler } from \"./BackHandler/index\";\nimport { Clipboard } from \"./Clipboard/index\";\nimport { DeviceEmitter, DeviceEmitter as DeviceEmitter2 } from \"./DeviceEmitter\";\nimport { DeviceInfo } from \"./DeviceInfo/index\";\nimport { Dimensions } from \"./Dimensions/index\";\nimport { I18nManager } from \"./I18nManager/index\";\nimport { Keyboard } from \"./Keyboard/index\";\nimport { Linking } from \"./Linking/index\";\nimport { PanResponder } from \"./PanResponder/index\";\nimport { PixelRatio } from \"./PixelRatio/index\";\nimport { Share } from \"./Share/index\";\nimport { Vibration } from \"./Vibration/index\";\nimport { FlatList } from \"./FlatList\";\nimport { SectionList } from \"./SectionList\";\nimport { VirtualizedList } from \"./VirtualizedList\";\nimport { TouchableNativeFeedback } from \"./TouchableNativeFeedback\";\nimport {\n UnimplementedView,\n UnimplementedView as UnimplementedView2,\n UnimplementedView as UnimplementedView3\n} from \"./UnimplementedView\";\nimport { TouchableOpacity, TouchableOpacity as TouchableOpacity2 } from \"./TouchableOpacity\";\nimport { TouchableWithoutFeedback } from \"./TouchableWithoutFeedback\";\nimport { ActivityIndicator } from \"./ActivityIndicator/index\";\nimport { Image } from \"./Image/index\";\nimport { ImageBackground } from \"./ImageBackground/index\";\nimport { KeyboardAvoidingView } from \"./KeyboardAvoidingView/index\";\nimport { LogBox } from \"./LogBox/index\";\nimport { Modal } from \"./Modal/index\";\nimport { Pressable } from \"./Pressable/index\";\nimport { RefreshControl } from \"./RefreshControl/index\";\nimport { SafeAreaView } from \"./SafeAreaView/index\";\nimport { ScrollView } from \"./ScrollView/index\";\nimport { StatusBar } from \"./StatusBar/index\";\nimport { Text } from \"./Text/index\";\nimport { TextInput } from \"./TextInput/index\";\nimport { View } from \"./View/index\";\nimport { useColorScheme } from \"./useColorScheme/index\";\nimport { useLocaleContext } from \"./useLocaleContext/index\";\nimport { useWindowDimensions } from \"./useWindowDimensions/index\";\nimport { unstable_batchedUpdates } from \"react-dom\";\nfunction requireNativeComponent(name) {\n return function FakeComponent() {\n return null;\n };\n}\nconst findNodeHandle = (component) => {\n throw new Error(\"not supported - use ref instead\");\n};\nconst RootTagContext = createContext(null);\nexport {\n AccessibilityInfo,\n AccessibilityUtil,\n ActivityIndicator,\n Alert,\n default2 as Animated,\n AppRegistry,\n AppState,\n Appearance,\n BackHandler,\n Clipboard,\n DeviceEmitter,\n DeviceEmitter2 as DeviceEventEmitter,\n DeviceInfo,\n Dimensions,\n UnimplementedView as DrawerLayoutAndroid,\n default3 as Easing,\n FlatList,\n I18nManager,\n Image,\n ImageBackground,\n ImageLoader,\n InteractionManager,\n Keyboard,\n KeyboardAvoidingView,\n Linking,\n LocaleProvider,\n LogBox,\n Modal,\n default4 as NativeEventEmitter,\n NativeModules,\n PanResponder,\n PixelRatio,\n Platform,\n Pressable,\n RefreshControl,\n RootTagContext,\n SafeAreaView,\n ScrollView,\n SectionList,\n Share,\n StatusBar,\n StyleSheet,\n UnimplementedView2 as Switch,\n Text,\n TextAncestorContext,\n TextInput,\n TouchableOpacity as Touchable,\n UnimplementedView3 as TouchableHighlight,\n TouchableNativeFeedback,\n TouchableOpacity2 as TouchableOpacity,\n TouchableWithoutFeedback,\n TurboModuleRegistry,\n UIManager,\n Vibration,\n View,\n VirtualizedList,\n canUseDOM,\n clickProps,\n codegenNativeCommands,\n codegenNativeComponent,\n createDOMProps,\n dismissKeyboard,\n findNodeHandle,\n flattenStyle,\n isWebColor,\n mergeRefs,\n normalizeColor,\n processColor,\n processStyle,\n render,\n requireNativeComponent,\n unstable_batchedUpdates,\n createElement as unstable_createElement,\n useColorScheme,\n useEvent,\n useHover,\n useLayoutEffect,\n useLocaleContext,\n useMergeRefs,\n usePlatformMethods,\n useWindowDimensions\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiFA,SAAS,uBAAuB,MAAM;CACpC,OAAO,SAAS,gBAAgB;EAC9B,OAAO;CACT;AACF;AACA,MAAM,kBAAkB,cAAc;CACpC,MAAM,IAAI,MAAM,iCAAiC;AACnD;AACA,MAAM,iBAAiB,cAAc,IAAI"}
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
const _requestIdleCallback = function
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
const _requestIdleCallback = function(cb, options) {
|
|
2
|
+
return setTimeout(() => {
|
|
3
|
+
const start = Date.now();
|
|
4
|
+
cb({
|
|
5
|
+
didTimeout: false,
|
|
6
|
+
timeRemaining() {
|
|
7
|
+
return Math.max(0, 50 - (Date.now() - start));
|
|
8
|
+
}
|
|
9
|
+
});
|
|
10
|
+
}, 1);
|
|
11
11
|
};
|
|
12
|
-
const _cancelIdleCallback = function
|
|
13
|
-
|
|
12
|
+
const _cancelIdleCallback = function(id) {
|
|
13
|
+
clearTimeout(id);
|
|
14
14
|
};
|
|
15
15
|
const isSupported = typeof window !== "undefined" && typeof window.requestIdleCallback !== "undefined";
|
|
16
16
|
const requestIdleCallback = isSupported ? window.requestIdleCallback : _requestIdleCallback;
|
|
17
17
|
const cancelIdleCallback = isSupported ? window.cancelIdleCallback : _cancelIdleCallback;
|
|
18
|
+
|
|
18
19
|
export { cancelIdleCallback, requestIdleCallback };
|
|
19
20
|
//# sourceMappingURL=requestIdleCallback.mjs.map
|