@tamagui/react-native-web-lite 1.114.3 → 1.115.0
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 +98 -0
- package/dist/cjs/ActivityIndicator/__tests__/index-test.cjs +188 -0
- package/dist/cjs/ActivityIndicator/index.cjs +127 -0
- package/dist/cjs/Alert/index.cjs +29 -0
- package/dist/cjs/AppRegistry/AppContainer.cjs +70 -0
- package/dist/cjs/AppRegistry/__tests__/{index-test.js → index-test.cjs} +22 -16
- package/dist/cjs/AppRegistry/__tests__/{index-test.node.js → index-test.node.cjs} +46 -22
- package/dist/cjs/AppRegistry/index.cjs +99 -0
- package/dist/cjs/AppRegistry/renderApplication.cjs +80 -0
- package/dist/cjs/AppState/__tests__/{index-test.js → index-test.cjs} +17 -16
- package/dist/cjs/AppState/index.cjs +69 -0
- package/dist/cjs/Appearance/index.cjs +54 -0
- package/dist/cjs/BackHandler/index.cjs +36 -0
- package/dist/cjs/Clipboard/{index.js → index.cjs} +17 -13
- package/dist/cjs/{DeviceEmitter.js → DeviceEmitter.cjs} +23 -14
- package/dist/cjs/DeviceInfo/{index.js → index.cjs} +37 -19
- package/dist/cjs/Dimensions/__tests__/{index-test.js → index-test.cjs} +18 -15
- package/dist/cjs/Dimensions/{index.js → index.cjs} +34 -28
- package/dist/cjs/I18nManager/index.cjs +35 -0
- package/dist/cjs/Image/index.cjs +292 -0
- package/dist/cjs/Image/types.cjs +16 -0
- package/dist/cjs/ImageBackground/__tests__/index-test.cjs +68 -0
- package/dist/cjs/ImageBackground/index.cjs +77 -0
- package/dist/cjs/Keyboard/index.cjs +39 -0
- package/dist/cjs/KeyboardAvoidingView/{index.js → index.cjs} +32 -21
- package/dist/cjs/Linking/__tests__/{index-test.js → index-test.cjs} +19 -17
- package/dist/cjs/Linking/{index.js → index.cjs} +18 -15
- package/dist/cjs/LogBox/index.cjs +32 -0
- package/dist/cjs/Modal/ModalAnimation.cjs +148 -0
- package/dist/cjs/Modal/ModalContent.cjs +86 -0
- package/dist/cjs/Modal/ModalFocusTrap.cjs +108 -0
- package/dist/cjs/Modal/ModalPortal.cjs +53 -0
- package/dist/cjs/Modal/index.cjs +97 -0
- package/dist/cjs/NativeModules/index.cjs +30 -0
- package/dist/cjs/PanResponder/Alternative.cjs +198 -0
- package/dist/cjs/PanResponder/Alternative.cjs.map +6 -0
- package/dist/cjs/PanResponder/{index.js → index.cjs} +23 -14
- package/dist/cjs/PixelRatio/{index.js → index.cjs} +23 -15
- package/dist/cjs/Pressable/index.cjs +143 -0
- package/dist/cjs/RefreshControl/{index.js → index.cjs} +27 -16
- package/dist/cjs/SafeAreaView/index.cjs +62 -0
- package/dist/cjs/ScrollView/ScrollViewBase.cjs +137 -0
- package/dist/cjs/ScrollView/{index.js → index.cjs} +123 -108
- package/dist/cjs/Share/index.cjs +49 -0
- package/dist/cjs/StatusBar/{index.js → index.cjs} +17 -13
- package/dist/cjs/Text/index.cjs +170 -0
- package/dist/cjs/Text/types.cjs +16 -0
- package/dist/cjs/TextInput/__tests__/index-test.cjs +709 -0
- package/dist/cjs/TextInput/index.cjs +277 -0
- package/dist/cjs/TextInput/types.cjs +16 -0
- package/dist/cjs/TouchableOpacity.cjs +117 -0
- package/dist/cjs/{TouchableWithoutFeedback.js → TouchableWithoutFeedback.cjs} +60 -58
- package/dist/cjs/UnimplementedView.cjs +47 -0
- package/dist/cjs/Vibration/index.cjs +37 -0
- package/dist/cjs/View/{index.js → index.cjs} +49 -28
- package/dist/cjs/View/types.cjs +16 -0
- package/dist/cjs/createElement/__tests__/index-test.cjs +765 -0
- package/dist/cjs/createElement/index.cjs +54 -0
- package/dist/cjs/createReactDOMStyle.cjs +27 -0
- package/dist/cjs/findNodeHandle.cjs +33 -0
- package/dist/cjs/{index.js → index.cjs} +77 -16
- package/dist/cjs/render/{index.js → index.cjs} +20 -14
- package/dist/cjs/styleTypes.cjs +16 -0
- package/dist/cjs/types.cjs +16 -0
- package/dist/cjs/useColorScheme/{index.js → index.cjs} +27 -16
- package/dist/cjs/useLocaleContext/index.cjs +26 -0
- package/dist/cjs/useWindowDimensions/{index.js → index.cjs} +28 -16
- package/dist/cjs/vendor/react-native/Animated/Animated.cjs +52 -0
- package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.cjs +125 -0
- package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.cjs +514 -0
- package/dist/cjs/vendor/react-native/Animated/AnimatedMock.cjs +149 -0
- package/dist/cjs/vendor/react-native/Animated/AnimatedPlatformConfig.cjs +1 -0
- package/dist/cjs/vendor/react-native/Animated/{Easing.js → Easing.cjs} +31 -22
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.cjs +331 -0
- package/dist/cjs/vendor/react-native/Animated/{NativeAnimatedModule.js → NativeAnimatedModule.cjs} +23 -14
- package/dist/cjs/vendor/react-native/Animated/{NativeAnimatedTurboModule.js → NativeAnimatedTurboModule.cjs} +23 -14
- package/dist/cjs/vendor/react-native/Animated/{SpringConfig.js → SpringConfig.cjs} +20 -12
- package/dist/cjs/vendor/react-native/Animated/animations/{Animation.js → Animation.cjs} +29 -24
- package/dist/cjs/vendor/react-native/Animated/animations/{DecayAnimation.js → DecayAnimation.cjs} +27 -16
- package/dist/cjs/vendor/react-native/Animated/animations/{SpringAnimation.js → SpringAnimation.cjs} +48 -34
- package/dist/cjs/vendor/react-native/Animated/animations/{TimingAnimation.js → TimingAnimation.cjs} +32 -26
- package/dist/cjs/vendor/react-native/Animated/{bezier.js → bezier.cjs} +38 -27
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.cjs +40 -0
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.cjs +45 -0
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.cjs +40 -0
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.cjs +40 -0
- package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.cjs +61 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedAddition.js → AnimatedAddition.cjs} +26 -15
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedColor.js → AnimatedColor.cjs} +57 -40
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedDiffClamp.js → AnimatedDiffClamp.cjs} +27 -16
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedDivision.js → AnimatedDivision.cjs} +29 -16
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedInterpolation.js → AnimatedInterpolation.cjs} +62 -72
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedModulo.js → AnimatedModulo.cjs} +25 -15
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedMultiplication.js → AnimatedMultiplication.cjs} +26 -15
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedNode.js → AnimatedNode.cjs} +39 -39
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedProps.js → AnimatedProps.cjs} +34 -24
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedStyle.js → AnimatedStyle.cjs} +35 -21
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedSubtraction.js → AnimatedSubtraction.cjs} +26 -15
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedTracking.js → AnimatedTracking.cjs} +34 -32
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedTransform.js → AnimatedTransform.cjs} +32 -21
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedValue.js → AnimatedValue.cjs} +43 -50
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedValueXY.js → AnimatedValueXY.cjs} +38 -31
- package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedWithChildren.js → AnimatedWithChildren.cjs} +31 -21
- package/dist/cjs/vendor/react-native/Animated/{useAnimatedProps.js → useAnimatedProps.cjs} +44 -31
- package/dist/cjs/vendor/react-native/{FeatureFlags.js → FeatureFlags.cjs} +16 -11
- package/dist/cjs/vendor/react-native/NativeEventEmitter/{RCTDeviceEventEmitter.js → RCTDeviceEventEmitter.cjs} +23 -14
- package/dist/cjs/vendor/react-native/NativeEventEmitter/{index.js → index.cjs} +29 -25
- package/dist/cjs/vendor/react-native/PanResponder/index.cjs +272 -0
- package/dist/cjs/vendor/react-native/TouchHistoryMath/index.cjs +105 -0
- package/dist/cjs/vendor/react-native/TurboModule/RCTExport.cjs +1 -0
- package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.cjs +34 -0
- package/dist/cjs/vendor/react-native/Types/CoreEventTypes.cjs +18 -0
- package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.cjs +36 -0
- package/dist/cjs/vendor/react-native/emitter/{EventEmitter.js → EventEmitter.cjs} +24 -14
- package/dist/cjs/vendor/react-native/emitter/EventSubscription.cjs +1 -0
- package/dist/cjs/vendor/react-native/emitter/{_EmitterSubscription.js → _EmitterSubscription.cjs} +24 -15
- package/dist/cjs/vendor/react-native/emitter/{_EventEmitter.js → _EventEmitter.cjs} +39 -39
- package/dist/cjs/vendor/react-native/emitter/{_EventSubscription.js → _EventSubscription.cjs} +17 -11
- package/dist/cjs/vendor/react-native/emitter/{_EventSubscriptionVendor.js → _EventSubscriptionVendor.cjs} +21 -16
- package/dist/cjs/vendor/react-native/infoLog/index.cjs +31 -0
- package/dist/cjs/vendor/react-native/useRefEffect.cjs +32 -0
- package/dist/cjs/without-animated.cjs +155 -0
- package/package.json +9 -8
- package/dist/cjs/AccessibilityInfo/index.js +0 -96
- package/dist/cjs/ActivityIndicator/__tests__/index-test.js +0 -116
- package/dist/cjs/ActivityIndicator/index.js +0 -108
- package/dist/cjs/Alert/index.js +0 -25
- package/dist/cjs/AppRegistry/AppContainer.js +0 -41
- package/dist/cjs/AppRegistry/index.js +0 -98
- package/dist/cjs/AppRegistry/renderApplication.js +0 -51
- package/dist/cjs/AppState/index.js +0 -71
- package/dist/cjs/Appearance/index.js +0 -41
- package/dist/cjs/BackHandler/index.js +0 -32
- package/dist/cjs/I18nManager/index.js +0 -30
- package/dist/cjs/Image/index.js +0 -253
- package/dist/cjs/Image/types.js +0 -14
- package/dist/cjs/ImageBackground/__tests__/index-test.js +0 -48
- package/dist/cjs/ImageBackground/index.js +0 -62
- package/dist/cjs/Keyboard/index.js +0 -35
- package/dist/cjs/LogBox/index.js +0 -31
- package/dist/cjs/Modal/ModalAnimation.js +0 -137
- package/dist/cjs/Modal/ModalContent.js +0 -75
- package/dist/cjs/Modal/ModalFocusTrap.js +0 -105
- package/dist/cjs/Modal/ModalPortal.js +0 -43
- package/dist/cjs/Modal/index.js +0 -92
- package/dist/cjs/NativeModules/index.js +0 -25
- package/dist/cjs/Pressable/index.js +0 -140
- package/dist/cjs/SafeAreaView/index.js +0 -43
- package/dist/cjs/ScrollView/ScrollViewBase.js +0 -124
- package/dist/cjs/Share/index.js +0 -56
- package/dist/cjs/Text/index.js +0 -152
- package/dist/cjs/Text/types.js +0 -14
- package/dist/cjs/TextInput/__tests__/index-test.js +0 -422
- package/dist/cjs/TextInput/index.js +0 -260
- package/dist/cjs/TextInput/types.js +0 -14
- package/dist/cjs/TouchableOpacity.js +0 -123
- package/dist/cjs/UnimplementedView.js +0 -36
- package/dist/cjs/Vibration/index.js +0 -31
- package/dist/cjs/View/types.js +0 -14
- package/dist/cjs/createElement/__tests__/index-test.js +0 -536
- package/dist/cjs/createElement/index.js +0 -37
- package/dist/cjs/createReactDOMStyle.js +0 -21
- package/dist/cjs/findNodeHandle.js +0 -29
- package/dist/cjs/styleTypes.js +0 -14
- package/dist/cjs/types.js +0 -14
- package/dist/cjs/useLocaleContext/index.js +0 -21
- package/dist/cjs/vendor/react-native/Animated/Animated.js +0 -35
- package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.js +0 -143
- package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.js +0 -458
- package/dist/cjs/vendor/react-native/Animated/AnimatedMock.js +0 -126
- package/dist/cjs/vendor/react-native/Animated/AnimatedPlatformConfig.js +0 -2
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.js +0 -335
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.js +0 -29
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.js +0 -38
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.js +0 -29
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.js +0 -29
- package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.js +0 -42
- package/dist/cjs/vendor/react-native/PanResponder/index.js +0 -272
- package/dist/cjs/vendor/react-native/TouchHistoryMath/index.js +0 -118
- package/dist/cjs/vendor/react-native/TurboModule/RCTExport.js +0 -2
- package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.js +0 -28
- package/dist/cjs/vendor/react-native/Types/CoreEventTypes.js +0 -15
- package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.js +0 -29
- package/dist/cjs/vendor/react-native/emitter/EventSubscription.js +0 -2
- package/dist/cjs/vendor/react-native/infoLog/index.js +0 -25
- package/dist/cjs/vendor/react-native/useRefEffect.js +0 -30
- package/dist/cjs/without-animated.js +0 -95
- /package/dist/cjs/AccessibilityInfo/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/ActivityIndicator/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
- /package/dist/cjs/ActivityIndicator/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Alert/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/AppRegistry/{AppContainer.js.map → AppContainer.cjs.map} +0 -0
- /package/dist/cjs/AppRegistry/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
- /package/dist/cjs/AppRegistry/__tests__/{index-test.node.js.map → index-test.node.cjs.map} +0 -0
- /package/dist/cjs/AppRegistry/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/AppRegistry/{renderApplication.js.map → renderApplication.cjs.map} +0 -0
- /package/dist/cjs/AppState/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
- /package/dist/cjs/AppState/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Appearance/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/BackHandler/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Clipboard/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/{DeviceEmitter.js.map → DeviceEmitter.cjs.map} +0 -0
- /package/dist/cjs/DeviceInfo/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Dimensions/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
- /package/dist/cjs/Dimensions/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/I18nManager/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Image/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Image/{types.js.map → types.cjs.map} +0 -0
- /package/dist/cjs/ImageBackground/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
- /package/dist/cjs/ImageBackground/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Keyboard/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/KeyboardAvoidingView/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Linking/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
- /package/dist/cjs/Linking/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/LogBox/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Modal/{ModalAnimation.js.map → ModalAnimation.cjs.map} +0 -0
- /package/dist/cjs/Modal/{ModalContent.js.map → ModalContent.cjs.map} +0 -0
- /package/dist/cjs/Modal/{ModalFocusTrap.js.map → ModalFocusTrap.cjs.map} +0 -0
- /package/dist/cjs/Modal/{ModalPortal.js.map → ModalPortal.cjs.map} +0 -0
- /package/dist/cjs/Modal/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/NativeModules/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/PanResponder/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/PixelRatio/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Pressable/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/RefreshControl/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/SafeAreaView/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/ScrollView/{ScrollViewBase.js.map → ScrollViewBase.cjs.map} +0 -0
- /package/dist/cjs/ScrollView/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Share/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/StatusBar/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Text/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/Text/{types.js.map → types.cjs.map} +0 -0
- /package/dist/cjs/TextInput/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
- /package/dist/cjs/TextInput/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/TextInput/{types.js.map → types.cjs.map} +0 -0
- /package/dist/cjs/{TouchableOpacity.js.map → TouchableOpacity.cjs.map} +0 -0
- /package/dist/cjs/{TouchableWithoutFeedback.js.map → TouchableWithoutFeedback.cjs.map} +0 -0
- /package/dist/cjs/{UnimplementedView.js.map → UnimplementedView.cjs.map} +0 -0
- /package/dist/cjs/Vibration/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/View/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/View/{types.js.map → types.cjs.map} +0 -0
- /package/dist/cjs/createElement/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
- /package/dist/cjs/createElement/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/{createReactDOMStyle.js.map → createReactDOMStyle.cjs.map} +0 -0
- /package/dist/cjs/{findNodeHandle.js.map → findNodeHandle.cjs.map} +0 -0
- /package/dist/cjs/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/render/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/{styleTypes.js.map → styleTypes.cjs.map} +0 -0
- /package/dist/cjs/{types.js.map → types.cjs.map} +0 -0
- /package/dist/cjs/useColorScheme/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/useLocaleContext/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/useWindowDimensions/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{Animated.js.map → Animated.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{AnimatedEvent.js.map → AnimatedEvent.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{AnimatedImplementation.js.map → AnimatedImplementation.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{AnimatedMock.js.map → AnimatedMock.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{AnimatedPlatformConfig.js.map → AnimatedPlatformConfig.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{Easing.js.map → Easing.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{NativeAnimatedHelper.js.map → NativeAnimatedHelper.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{NativeAnimatedModule.js.map → NativeAnimatedModule.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{NativeAnimatedTurboModule.js.map → NativeAnimatedTurboModule.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{SpringConfig.js.map → SpringConfig.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/animations/{Animation.js.map → Animation.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/animations/{DecayAnimation.js.map → DecayAnimation.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/animations/{SpringAnimation.js.map → SpringAnimation.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/animations/{TimingAnimation.js.map → TimingAnimation.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{bezier.js.map → bezier.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/components/{AnimatedImage.js.map → AnimatedImage.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/components/{AnimatedScrollView.js.map → AnimatedScrollView.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/components/{AnimatedText.js.map → AnimatedText.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/components/{AnimatedView.js.map → AnimatedView.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{createAnimatedComponent.js.map → createAnimatedComponent.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedAddition.js.map → AnimatedAddition.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedColor.js.map → AnimatedColor.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedDiffClamp.js.map → AnimatedDiffClamp.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedDivision.js.map → AnimatedDivision.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedInterpolation.js.map → AnimatedInterpolation.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedModulo.js.map → AnimatedModulo.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedMultiplication.js.map → AnimatedMultiplication.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedNode.js.map → AnimatedNode.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedProps.js.map → AnimatedProps.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedStyle.js.map → AnimatedStyle.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedSubtraction.js.map → AnimatedSubtraction.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedTracking.js.map → AnimatedTracking.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedTransform.js.map → AnimatedTransform.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedValue.js.map → AnimatedValue.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedValueXY.js.map → AnimatedValueXY.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedWithChildren.js.map → AnimatedWithChildren.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Animated/{useAnimatedProps.js.map → useAnimatedProps.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/{FeatureFlags.js.map → FeatureFlags.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/NativeEventEmitter/{RCTDeviceEventEmitter.js.map → RCTDeviceEventEmitter.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/NativeEventEmitter/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/PanResponder/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/TouchHistoryMath/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/TurboModule/{RCTExport.js.map → RCTExport.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/TurboModule/{TurboModuleRegistry.js.map → TurboModuleRegistry.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Types/{CoreEventTypes.js.map → CoreEventTypes.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/Utilities/{setAndForwardRef.js.map → setAndForwardRef.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/emitter/{EventEmitter.js.map → EventEmitter.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/emitter/{EventSubscription.js.map → EventSubscription.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/emitter/{_EmitterSubscription.js.map → _EmitterSubscription.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/emitter/{_EventEmitter.js.map → _EventEmitter.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/emitter/{_EventSubscription.js.map → _EventSubscription.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/emitter/{_EventSubscriptionVendor.js.map → _EventSubscriptionVendor.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/infoLog/{index.js.map → index.cjs.map} +0 -0
- /package/dist/cjs/vendor/react-native/{useRefEffect.js.map → useRefEffect.cjs.map} +0 -0
- /package/dist/cjs/{without-animated.js.map → without-animated.cjs.map} +0 -0
|
@@ -2,34 +2,49 @@ var __create = Object.create;
|
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __getProtoOf = Object.getPrototypeOf,
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf,
|
|
6
|
+
__hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
7
|
var __export = (target, all) => {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
for (var name in all) __defProp(target, name, {
|
|
9
|
+
get: all[name],
|
|
10
|
+
enumerable: !0
|
|
11
|
+
});
|
|
12
|
+
},
|
|
13
|
+
__copyProps = (to, from, except, desc) => {
|
|
14
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
15
|
+
get: () => from[key],
|
|
16
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
|
+
});
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
15
20
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
16
21
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
17
22
|
// file that has been converted to a CommonJS file using a Babel-
|
|
18
23
|
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
19
24
|
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
20
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
21
|
-
|
|
22
|
-
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
26
|
+
value: mod,
|
|
27
|
+
enumerable: !0
|
|
28
|
+
}) : target, mod)),
|
|
29
|
+
__toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
30
|
+
value: !0
|
|
31
|
+
}), mod);
|
|
23
32
|
var DeviceInfo_exports = {};
|
|
24
33
|
__export(DeviceInfo_exports, {
|
|
25
34
|
default: () => DeviceInfo_default
|
|
26
35
|
});
|
|
27
36
|
module.exports = __toCommonJS(DeviceInfo_exports);
|
|
28
|
-
var import_react_native_web_internals = require("@tamagui/react-native-web-internals"),
|
|
37
|
+
var import_react_native_web_internals = require("@tamagui/react-native-web-internals"),
|
|
38
|
+
import_Dimensions = __toESM(require("../Dimensions/index.cjs"));
|
|
29
39
|
const DeviceInfo = {
|
|
30
40
|
Dimensions: {
|
|
31
41
|
get windowPhysicalPixels() {
|
|
32
|
-
const {
|
|
42
|
+
const {
|
|
43
|
+
width,
|
|
44
|
+
height,
|
|
45
|
+
fontScale,
|
|
46
|
+
scale
|
|
47
|
+
} = import_Dimensions.default.get("window");
|
|
33
48
|
return {
|
|
34
49
|
width: width * scale,
|
|
35
50
|
height: height * scale,
|
|
@@ -38,7 +53,12 @@ const DeviceInfo = {
|
|
|
38
53
|
};
|
|
39
54
|
},
|
|
40
55
|
get screenPhysicalPixels() {
|
|
41
|
-
const {
|
|
56
|
+
const {
|
|
57
|
+
width,
|
|
58
|
+
height,
|
|
59
|
+
fontScale,
|
|
60
|
+
scale
|
|
61
|
+
} = import_Dimensions.default.get("screen");
|
|
42
62
|
return {
|
|
43
63
|
width: width * scale,
|
|
44
64
|
height: height * scale,
|
|
@@ -48,8 +68,7 @@ const DeviceInfo = {
|
|
|
48
68
|
}
|
|
49
69
|
},
|
|
50
70
|
get locale() {
|
|
51
|
-
if (import_react_native_web_internals.canUseDOM)
|
|
52
|
-
return navigator.languages ? navigator.languages[0] : navigator.language;
|
|
71
|
+
if (import_react_native_web_internals.canUseDOM) return navigator.languages ? navigator.languages[0] : navigator.language;
|
|
53
72
|
},
|
|
54
73
|
get totalMemory() {
|
|
55
74
|
return import_react_native_web_internals.canUseDOM ? navigator.deviceMemory : void 0;
|
|
@@ -58,5 +77,4 @@ const DeviceInfo = {
|
|
|
58
77
|
return import_react_native_web_internals.canUseDOM ? navigator.userAgent : "";
|
|
59
78
|
}
|
|
60
79
|
};
|
|
61
|
-
var DeviceInfo_default = DeviceInfo;
|
|
62
|
-
//# sourceMappingURL=index.js.map
|
|
80
|
+
var DeviceInfo_default = DeviceInfo;
|
|
@@ -2,22 +2,25 @@ var __create = Object.create;
|
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __getProtoOf = Object.getPrototypeOf,
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf,
|
|
6
|
+
__hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
7
|
var __copyProps = (to, from, except, desc) => {
|
|
7
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
9
|
+
get: () => from[key],
|
|
10
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
11
|
+
});
|
|
10
12
|
return to;
|
|
11
13
|
};
|
|
12
14
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
mod
|
|
19
|
-
|
|
20
|
-
|
|
15
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
16
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
17
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
18
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
19
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
20
|
+
value: mod,
|
|
21
|
+
enumerable: !0
|
|
22
|
+
}) : target, mod));
|
|
23
|
+
var import__ = __toESM(require("../index.cjs"));
|
|
21
24
|
describe("apis/Dimensions/index.js", () => {
|
|
22
25
|
test("get", () => {
|
|
23
26
|
expect(import__.default.get("screen")).toMatchInlineSnapshot(`
|
|
@@ -38,7 +41,8 @@ describe("apis/Dimensions/index.js", () => {
|
|
|
38
41
|
}), test("set", () => {
|
|
39
42
|
expect(() => import__.default.set({})).toThrow();
|
|
40
43
|
}), test("addEventListener", () => {
|
|
41
|
-
const handler = jest.fn(),
|
|
44
|
+
const handler = jest.fn(),
|
|
45
|
+
subscription = import__.default.addEventListener("change", handler);
|
|
42
46
|
import__.default._update(), expect(handler).toHaveBeenCalledTimes(1), expect(handler).toHaveBeenLastCalledWith({
|
|
43
47
|
window: import__.default.get("window"),
|
|
44
48
|
screen: import__.default.get("screen")
|
|
@@ -47,5 +51,4 @@ describe("apis/Dimensions/index.js", () => {
|
|
|
47
51
|
const handler = jest.fn();
|
|
48
52
|
import__.default.removeEventListener("change", handler), import__.default._update(), expect(handler).toHaveBeenCalledTimes(0);
|
|
49
53
|
});
|
|
50
|
-
});
|
|
51
|
-
//# sourceMappingURL=index-test.js.map
|
|
54
|
+
});
|
|
@@ -3,15 +3,21 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
3
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
5
|
var __export = (target, all) => {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
6
|
+
for (var name in all) __defProp(target, name, {
|
|
7
|
+
get: all[name],
|
|
8
|
+
enumerable: !0
|
|
9
|
+
});
|
|
10
|
+
},
|
|
11
|
+
__copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
13
|
+
get: () => from[key],
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
19
|
+
value: !0
|
|
20
|
+
}), mod);
|
|
15
21
|
var Dimensions_exports = {};
|
|
16
22
|
__export(Dimensions_exports, {
|
|
17
23
|
default: () => Dimensions
|
|
@@ -19,24 +25,25 @@ __export(Dimensions_exports, {
|
|
|
19
25
|
module.exports = __toCommonJS(Dimensions_exports);
|
|
20
26
|
var import_react_native_web_internals = require("@tamagui/react-native-web-internals");
|
|
21
27
|
const dimensions = {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
28
|
+
window: {
|
|
29
|
+
fontScale: 1,
|
|
30
|
+
height: 0,
|
|
31
|
+
scale: 1,
|
|
32
|
+
width: 0
|
|
33
|
+
},
|
|
34
|
+
screen: {
|
|
35
|
+
fontScale: 1,
|
|
36
|
+
height: 0,
|
|
37
|
+
scale: 1,
|
|
38
|
+
width: 0
|
|
39
|
+
}
|
|
27
40
|
},
|
|
28
|
-
|
|
29
|
-
fontScale: 1,
|
|
30
|
-
height: 0,
|
|
31
|
-
scale: 1,
|
|
32
|
-
width: 0
|
|
33
|
-
}
|
|
34
|
-
}, listeners = {};
|
|
41
|
+
listeners = {};
|
|
35
42
|
let shouldInit = import_react_native_web_internals.canUseDOM;
|
|
36
43
|
function update() {
|
|
37
|
-
if (!import_react_native_web_internals.canUseDOM)
|
|
38
|
-
|
|
39
|
-
|
|
44
|
+
if (!import_react_native_web_internals.canUseDOM) return;
|
|
45
|
+
const win = window,
|
|
46
|
+
docEl = win.document.documentElement;
|
|
40
47
|
dimensions.window = {
|
|
41
48
|
fontScale: 1,
|
|
42
49
|
height: docEl.clientHeight,
|
|
@@ -50,7 +57,7 @@ function update() {
|
|
|
50
57
|
};
|
|
51
58
|
}
|
|
52
59
|
function handleResize() {
|
|
53
|
-
update(), Array.isArray(listeners.change) && listeners.change.forEach(
|
|
60
|
+
update(), Array.isArray(listeners.change) && listeners.change.forEach(handler => handler(dimensions));
|
|
54
61
|
}
|
|
55
62
|
class Dimensions {
|
|
56
63
|
static get(dimension) {
|
|
@@ -67,8 +74,7 @@ class Dimensions {
|
|
|
67
74
|
};
|
|
68
75
|
}
|
|
69
76
|
static removeEventListener(type, handler) {
|
|
70
|
-
Array.isArray(listeners[type]) && (listeners[type] = listeners[type].filter(
|
|
77
|
+
Array.isArray(listeners[type]) && (listeners[type] = listeners[type].filter(_handler => _handler !== handler));
|
|
71
78
|
}
|
|
72
79
|
}
|
|
73
|
-
import_react_native_web_internals.canUseDOM && window.addEventListener("resize", handleResize, !1);
|
|
74
|
-
//# sourceMappingURL=index.js.map
|
|
80
|
+
import_react_native_web_internals.canUseDOM && window.addEventListener("resize", handleResize, !1);
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all) __defProp(target, name, {
|
|
7
|
+
get: all[name],
|
|
8
|
+
enumerable: !0
|
|
9
|
+
});
|
|
10
|
+
},
|
|
11
|
+
__copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
13
|
+
get: () => from[key],
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
19
|
+
value: !0
|
|
20
|
+
}), mod);
|
|
21
|
+
var I18nManager_exports = {};
|
|
22
|
+
__export(I18nManager_exports, {
|
|
23
|
+
default: () => I18nManager_default
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(I18nManager_exports);
|
|
26
|
+
const I18nManager = {
|
|
27
|
+
allowRTL() {},
|
|
28
|
+
forceRTL() {},
|
|
29
|
+
getConstants() {
|
|
30
|
+
return {
|
|
31
|
+
isRTL: !1
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
var I18nManager_default = I18nManager;
|
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf,
|
|
6
|
+
__hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all) __defProp(target, name, {
|
|
9
|
+
get: all[name],
|
|
10
|
+
enumerable: !0
|
|
11
|
+
});
|
|
12
|
+
},
|
|
13
|
+
__copyProps = (to, from, except, desc) => {
|
|
14
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
15
|
+
get: () => from[key],
|
|
16
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
|
+
});
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
26
|
+
value: mod,
|
|
27
|
+
enumerable: !0
|
|
28
|
+
}) : target, mod)),
|
|
29
|
+
__toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
30
|
+
value: !0
|
|
31
|
+
}), mod);
|
|
32
|
+
var Image_exports = {};
|
|
33
|
+
__export(Image_exports, {
|
|
34
|
+
default: () => Image_default
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(Image_exports);
|
|
37
|
+
var React = __toESM(require("react")),
|
|
38
|
+
import_react_native_web_internals = require("@tamagui/react-native-web-internals"),
|
|
39
|
+
import_react_native_web_internals2 = require("@tamagui/react-native-web-internals"),
|
|
40
|
+
import_createElement = __toESM(require("../createElement/index.cjs")),
|
|
41
|
+
import_PixelRatio = __toESM(require("../PixelRatio/index.cjs")),
|
|
42
|
+
import_View = __toESM(require("../View/index.cjs")),
|
|
43
|
+
import_jsx_runtime = require("react/jsx-runtime");
|
|
44
|
+
const ERRORED = "ERRORED",
|
|
45
|
+
LOADED = "LOADED",
|
|
46
|
+
LOADING = "LOADING",
|
|
47
|
+
IDLE = "IDLE";
|
|
48
|
+
let _filterId = 0;
|
|
49
|
+
const svgDataUriPattern = /^(data:image\/svg\+xml;utf8,)(.*)/;
|
|
50
|
+
function createTintColorSVG(tintColor, id) {
|
|
51
|
+
return tintColor && id != null ? /* @__PURE__ */(0, import_jsx_runtime.jsx)("svg", {
|
|
52
|
+
style: {
|
|
53
|
+
position: "absolute",
|
|
54
|
+
height: 0,
|
|
55
|
+
visibility: "hidden",
|
|
56
|
+
width: 0
|
|
57
|
+
},
|
|
58
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)("defs", {
|
|
59
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsxs)("filter", {
|
|
60
|
+
id: `tint-${id}`,
|
|
61
|
+
suppressHydrationWarning: !0,
|
|
62
|
+
children: [/* @__PURE__ */(0, import_jsx_runtime.jsx)("feFlood", {
|
|
63
|
+
floodColor: `${tintColor}`
|
|
64
|
+
}, tintColor), /* @__PURE__ */(0, import_jsx_runtime.jsx)("feComposite", {
|
|
65
|
+
in2: "SourceAlpha",
|
|
66
|
+
operator: "atop"
|
|
67
|
+
})]
|
|
68
|
+
})
|
|
69
|
+
})
|
|
70
|
+
}) : null;
|
|
71
|
+
}
|
|
72
|
+
function getFlatStyle(style, blurRadius, filterId) {
|
|
73
|
+
const flatStyle = import_react_native_web_internals.StyleSheet.flatten(style),
|
|
74
|
+
{
|
|
75
|
+
filter,
|
|
76
|
+
resizeMode,
|
|
77
|
+
shadowOffset,
|
|
78
|
+
tintColor
|
|
79
|
+
} = flatStyle,
|
|
80
|
+
filters = [];
|
|
81
|
+
let _filter = null;
|
|
82
|
+
if (filter && filters.push(filter), blurRadius && filters.push(`blur(${blurRadius}px)`), shadowOffset) {
|
|
83
|
+
const shadowString = (0, import_react_native_web_internals.createBoxShadowValue)(flatStyle);
|
|
84
|
+
shadowString && filters.push(`drop-shadow(${shadowString})`);
|
|
85
|
+
}
|
|
86
|
+
return tintColor && filterId != null && filters.push(`url(#tint-${filterId})`), filters.length > 0 && (_filter = filters.join(" ")), delete flatStyle.blurRadius, delete flatStyle.shadowColor, delete flatStyle.shadowOpacity, delete flatStyle.shadowOffset, delete flatStyle.shadowRadius, delete flatStyle.tintColor, delete flatStyle.overlayColor, delete flatStyle.resizeMode, [flatStyle, resizeMode, _filter, tintColor];
|
|
87
|
+
}
|
|
88
|
+
function resolveAssetDimensions(source) {
|
|
89
|
+
if (typeof source == "number") {
|
|
90
|
+
const {
|
|
91
|
+
height,
|
|
92
|
+
width
|
|
93
|
+
} = (0, import_react_native_web_internals2.getAssetByID)(source);
|
|
94
|
+
return {
|
|
95
|
+
height,
|
|
96
|
+
width
|
|
97
|
+
};
|
|
98
|
+
} else if (source != null && !Array.isArray(source) && typeof source == "object") {
|
|
99
|
+
const {
|
|
100
|
+
height,
|
|
101
|
+
width
|
|
102
|
+
} = source;
|
|
103
|
+
return {
|
|
104
|
+
height,
|
|
105
|
+
width
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
function resolveAssetUri(source) {
|
|
110
|
+
let uri = null;
|
|
111
|
+
if (typeof source == "number") {
|
|
112
|
+
const asset = (0, import_react_native_web_internals2.getAssetByID)(source);
|
|
113
|
+
let scale = asset.scales[0];
|
|
114
|
+
if (asset.scales.length > 1) {
|
|
115
|
+
const preferredScale = import_PixelRatio.default.get();
|
|
116
|
+
scale = asset.scales.reduce((prev, curr) => Math.abs(curr - preferredScale) < Math.abs(prev - preferredScale) ? curr : prev);
|
|
117
|
+
}
|
|
118
|
+
const scaleSuffix = scale !== 1 ? `@${scale}x` : "";
|
|
119
|
+
uri = asset ? `${asset.httpServerLocation}/${asset.name}${scaleSuffix}.${asset.type}` : "";
|
|
120
|
+
} else typeof source == "string" ? uri = source : source && typeof source.uri == "string" && (uri = source.uri);
|
|
121
|
+
if (uri) {
|
|
122
|
+
const match = uri.match(svgDataUriPattern);
|
|
123
|
+
if (match) {
|
|
124
|
+
const [, prefix, svg] = match,
|
|
125
|
+
encodedSvg = encodeURIComponent(svg);
|
|
126
|
+
return `${prefix}${encodedSvg}`;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
return uri;
|
|
130
|
+
}
|
|
131
|
+
const Image = React.forwardRef((props, ref) => {
|
|
132
|
+
const {
|
|
133
|
+
accessibilityLabel,
|
|
134
|
+
blurRadius,
|
|
135
|
+
defaultSource,
|
|
136
|
+
draggable,
|
|
137
|
+
onError,
|
|
138
|
+
onLayout,
|
|
139
|
+
onLoad,
|
|
140
|
+
onLoadEnd,
|
|
141
|
+
onLoadStart,
|
|
142
|
+
pointerEvents,
|
|
143
|
+
source,
|
|
144
|
+
style,
|
|
145
|
+
...rest
|
|
146
|
+
} = props;
|
|
147
|
+
if (process.env.NODE_ENV !== "production" && props.children) throw new Error("The <Image> component cannot contain children. If you want to render content on top of the image, consider using the <ImageBackground> component or absolute positioning.");
|
|
148
|
+
const [state, updateState] = React.useState(() => {
|
|
149
|
+
const uri2 = resolveAssetUri(source);
|
|
150
|
+
return uri2 != null && import_react_native_web_internals2.ImageLoader.has(uri2) ? LOADED : IDLE;
|
|
151
|
+
}),
|
|
152
|
+
[layout, updateLayout] = React.useState({}),
|
|
153
|
+
hasTextAncestor = React.useContext(import_react_native_web_internals.TextAncestorContext),
|
|
154
|
+
hiddenImageRef = React.useRef(null),
|
|
155
|
+
filterRef = React.useRef(_filterId++),
|
|
156
|
+
requestRef = React.useRef(null),
|
|
157
|
+
shouldDisplaySource = state === LOADED || state === LOADING && defaultSource == null,
|
|
158
|
+
[flatStyle, _resizeMode, filter, tintColor] = getFlatStyle({}, blurRadius, filterRef.current),
|
|
159
|
+
resizeMode = props.resizeMode || _resizeMode || "cover",
|
|
160
|
+
selectedSource = shouldDisplaySource ? source : defaultSource,
|
|
161
|
+
displayImageUri = resolveAssetUri(selectedSource),
|
|
162
|
+
imageSizeStyle = resolveAssetDimensions(selectedSource),
|
|
163
|
+
backgroundImage = displayImageUri ? `url("${displayImageUri}")` : null,
|
|
164
|
+
backgroundSize = getBackgroundSize(),
|
|
165
|
+
hiddenImage = displayImageUri ? (0, import_createElement.default)("img", {
|
|
166
|
+
alt: accessibilityLabel || "",
|
|
167
|
+
style: styles.accessibilityImage$raw,
|
|
168
|
+
draggable: draggable || !1,
|
|
169
|
+
ref: hiddenImageRef,
|
|
170
|
+
src: displayImageUri
|
|
171
|
+
}) : null;
|
|
172
|
+
function getBackgroundSize() {
|
|
173
|
+
if (hiddenImageRef.current != null && (resizeMode === "center" || resizeMode === "repeat")) {
|
|
174
|
+
const {
|
|
175
|
+
naturalHeight,
|
|
176
|
+
naturalWidth
|
|
177
|
+
} = hiddenImageRef.current,
|
|
178
|
+
{
|
|
179
|
+
height,
|
|
180
|
+
width
|
|
181
|
+
} = layout;
|
|
182
|
+
if (naturalHeight && naturalWidth && height && width) {
|
|
183
|
+
const scaleFactor = Math.min(1, width / naturalWidth, height / naturalHeight),
|
|
184
|
+
x = Math.ceil(scaleFactor * naturalWidth),
|
|
185
|
+
y = Math.ceil(scaleFactor * naturalHeight);
|
|
186
|
+
return `${x}px ${y}px`;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
function handleLayout(e) {
|
|
191
|
+
if (resizeMode === "center" || resizeMode === "repeat" || onLayout) {
|
|
192
|
+
const {
|
|
193
|
+
layout: layout2
|
|
194
|
+
} = e.nativeEvent;
|
|
195
|
+
onLayout && onLayout(e), updateLayout(layout2);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
const uri = resolveAssetUri(source);
|
|
199
|
+
return React.useEffect(() => {
|
|
200
|
+
abortPendingRequest(), uri != null && (updateState(LOADING), onLoadStart && onLoadStart(), requestRef.current = import_react_native_web_internals2.ImageLoader.load(uri, function (e) {
|
|
201
|
+
updateState(LOADED), onLoad && onLoad(e), onLoadEnd && onLoadEnd();
|
|
202
|
+
}, function () {
|
|
203
|
+
updateState(ERRORED), onError && onError({
|
|
204
|
+
nativeEvent: {
|
|
205
|
+
error: `Failed to load resource ${uri} (404)`
|
|
206
|
+
}
|
|
207
|
+
}), onLoadEnd && onLoadEnd();
|
|
208
|
+
}));
|
|
209
|
+
function abortPendingRequest() {
|
|
210
|
+
requestRef.current != null && (import_react_native_web_internals2.ImageLoader.abort(requestRef.current), requestRef.current = null);
|
|
211
|
+
}
|
|
212
|
+
return abortPendingRequest;
|
|
213
|
+
}, [uri, requestRef, updateState, onError, onLoad, onLoadEnd, onLoadStart]), /* @__PURE__ */(0, import_jsx_runtime.jsxs)(import_View.default, {
|
|
214
|
+
...rest,
|
|
215
|
+
accessibilityLabel,
|
|
216
|
+
onLayout: handleLayout,
|
|
217
|
+
pointerEvents,
|
|
218
|
+
ref,
|
|
219
|
+
style: [style, styles.root, hasTextAncestor && styles.inline, imageSizeStyle, flatStyle],
|
|
220
|
+
children: [/* @__PURE__ */(0, import_jsx_runtime.jsx)(import_View.default, {
|
|
221
|
+
style: [...[].concat(styles.image), resizeModeStyles[resizeMode], {
|
|
222
|
+
backgroundImage,
|
|
223
|
+
filter
|
|
224
|
+
}, backgroundSize != null && {
|
|
225
|
+
backgroundSize
|
|
226
|
+
}],
|
|
227
|
+
suppressHydrationWarning: !0
|
|
228
|
+
}), hiddenImage, createTintColorSVG(tintColor, filterRef.current)]
|
|
229
|
+
});
|
|
230
|
+
});
|
|
231
|
+
Image.displayName = "Image";
|
|
232
|
+
const ImageWithStatics = Image;
|
|
233
|
+
ImageWithStatics.getSize = function (uri, success, failure) {
|
|
234
|
+
import_react_native_web_internals2.ImageLoader.getSize(uri, success, failure);
|
|
235
|
+
};
|
|
236
|
+
ImageWithStatics.prefetch = function (uri) {
|
|
237
|
+
return import_react_native_web_internals2.ImageLoader.prefetch(uri);
|
|
238
|
+
};
|
|
239
|
+
ImageWithStatics.queryCache = function (uris) {
|
|
240
|
+
return import_react_native_web_internals2.ImageLoader.queryCache(uris);
|
|
241
|
+
};
|
|
242
|
+
const styles = import_react_native_web_internals.StyleSheet.create({
|
|
243
|
+
root: {
|
|
244
|
+
flexBasis: "auto",
|
|
245
|
+
overflow: "hidden",
|
|
246
|
+
zIndex: 0
|
|
247
|
+
},
|
|
248
|
+
inline: {
|
|
249
|
+
display: "inline-flex"
|
|
250
|
+
},
|
|
251
|
+
image: {
|
|
252
|
+
...import_react_native_web_internals.StyleSheet.absoluteFillObject,
|
|
253
|
+
backgroundColor: "transparent",
|
|
254
|
+
backgroundPosition: "center",
|
|
255
|
+
backgroundRepeat: "no-repeat",
|
|
256
|
+
backgroundSize: "cover",
|
|
257
|
+
height: "100%",
|
|
258
|
+
width: "100%",
|
|
259
|
+
zIndex: -1
|
|
260
|
+
},
|
|
261
|
+
accessibilityImage$raw: {
|
|
262
|
+
...import_react_native_web_internals.StyleSheet.absoluteFillObject,
|
|
263
|
+
height: "100%",
|
|
264
|
+
opacity: 0,
|
|
265
|
+
width: "100%",
|
|
266
|
+
zIndex: -1
|
|
267
|
+
}
|
|
268
|
+
}),
|
|
269
|
+
resizeModeStyles = import_react_native_web_internals.StyleSheet.create({
|
|
270
|
+
center: {
|
|
271
|
+
backgroundSize: "auto"
|
|
272
|
+
},
|
|
273
|
+
contain: {
|
|
274
|
+
backgroundSize: "contain"
|
|
275
|
+
},
|
|
276
|
+
cover: {
|
|
277
|
+
backgroundSize: "cover"
|
|
278
|
+
},
|
|
279
|
+
none: {
|
|
280
|
+
backgroundPosition: "0",
|
|
281
|
+
backgroundSize: "auto"
|
|
282
|
+
},
|
|
283
|
+
repeat: {
|
|
284
|
+
backgroundPosition: "0",
|
|
285
|
+
backgroundRepeat: "repeat",
|
|
286
|
+
backgroundSize: "auto"
|
|
287
|
+
},
|
|
288
|
+
stretch: {
|
|
289
|
+
backgroundSize: "100% 100%"
|
|
290
|
+
}
|
|
291
|
+
});
|
|
292
|
+
var Image_default = ImageWithStatics;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __copyProps = (to, from, except, desc) => {
|
|
6
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
7
|
+
get: () => from[key],
|
|
8
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
9
|
+
});
|
|
10
|
+
return to;
|
|
11
|
+
};
|
|
12
|
+
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
13
|
+
value: !0
|
|
14
|
+
}), mod);
|
|
15
|
+
var types_exports = {};
|
|
16
|
+
module.exports = __toCommonJS(types_exports);
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf,
|
|
6
|
+
__hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __copyProps = (to, from, except, desc) => {
|
|
8
|
+
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
9
|
+
get: () => from[key],
|
|
10
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
11
|
+
});
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
15
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
16
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
17
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
18
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
19
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
20
|
+
value: mod,
|
|
21
|
+
enumerable: !0
|
|
22
|
+
}) : target, mod));
|
|
23
|
+
var import_react = require("@testing-library/react"),
|
|
24
|
+
import_Text = __toESM(require("../../Text/index.cjs")),
|
|
25
|
+
import__ = __toESM(require("../index.cjs")),
|
|
26
|
+
import_jsx_runtime = require("react/jsx-runtime");
|
|
27
|
+
function findImage(container) {
|
|
28
|
+
return container.firstChild.firstChild;
|
|
29
|
+
}
|
|
30
|
+
describe("components/ImageBackground", () => {
|
|
31
|
+
describe('prop "children"', () => {
|
|
32
|
+
test("render child content", () => {
|
|
33
|
+
const {
|
|
34
|
+
getByText
|
|
35
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
36
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_Text.default, {
|
|
37
|
+
children: "Hello World!"
|
|
38
|
+
})
|
|
39
|
+
}));
|
|
40
|
+
expect(getByText("Hello World!")).toBeDefined();
|
|
41
|
+
});
|
|
42
|
+
}), describe('prop "imageStyle"', () => {
|
|
43
|
+
test("sets the style of the underlying Image", () => {
|
|
44
|
+
const imageStyle = {
|
|
45
|
+
width: 40,
|
|
46
|
+
height: 60
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
container
|
|
50
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
51
|
+
imageStyle
|
|
52
|
+
}));
|
|
53
|
+
expect(findImage(container).getAttribute("style").includes("width: 40px; height: 60px;")).toBe(!0);
|
|
54
|
+
});
|
|
55
|
+
}), describe('prop "style"', () => {
|
|
56
|
+
test("sets the style of the container View", () => {
|
|
57
|
+
const style = {
|
|
58
|
+
margin: 40
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
container
|
|
62
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
63
|
+
style
|
|
64
|
+
}));
|
|
65
|
+
expect(container.firstChild.getAttribute("style")).toEqual("margin: 40px 40px 40px 40px;");
|
|
66
|
+
});
|
|
67
|
+
});
|
|
68
|
+
});
|