@tamagui/react-native-web-lite 1.114.4 → 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
|
@@ -0,0 +1,98 @@
|
|
|
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 AccessibilityInfo_exports = {};
|
|
22
|
+
__export(AccessibilityInfo_exports, {
|
|
23
|
+
default: () => AccessibilityInfo_default
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(AccessibilityInfo_exports);
|
|
26
|
+
var import_react_native_web_internals = require("@tamagui/react-native-web-internals");
|
|
27
|
+
function isScreenReaderEnabled() {
|
|
28
|
+
return new Promise((resolve, reject) => {
|
|
29
|
+
resolve(!0);
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
const prefersReducedMotionMedia = import_react_native_web_internals.canUseDOM && typeof window.matchMedia == "function" ? window.matchMedia("(prefers-reduced-motion: reduce)") : null;
|
|
33
|
+
function isReduceMotionEnabled() {
|
|
34
|
+
return new Promise((resolve, reject) => {
|
|
35
|
+
resolve(prefersReducedMotionMedia ? prefersReducedMotionMedia.matches : !0);
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
function addChangeListener(fn) {
|
|
39
|
+
prefersReducedMotionMedia != null && (prefersReducedMotionMedia.addEventListener != null ? prefersReducedMotionMedia.addEventListener("change", fn) : prefersReducedMotionMedia.addListener(fn));
|
|
40
|
+
}
|
|
41
|
+
function removeChangeListener(fn) {
|
|
42
|
+
prefersReducedMotionMedia != null && (prefersReducedMotionMedia.removeEventListener != null ? prefersReducedMotionMedia.removeEventListener("change", fn) : prefersReducedMotionMedia.removeListener(fn));
|
|
43
|
+
}
|
|
44
|
+
const handlers = {},
|
|
45
|
+
AccessibilityInfo = {
|
|
46
|
+
/**
|
|
47
|
+
* Query whether a screen reader is currently enabled.
|
|
48
|
+
*
|
|
49
|
+
* Returns a promise which resolves to a boolean.
|
|
50
|
+
* The result is `true` when a screen reader is enabled and `false` otherwise.
|
|
51
|
+
*/
|
|
52
|
+
isScreenReaderEnabled,
|
|
53
|
+
/**
|
|
54
|
+
* Query whether the user prefers reduced motion.
|
|
55
|
+
*
|
|
56
|
+
* Returns a promise which resolves to a boolean.
|
|
57
|
+
* The result is `true` when a screen reader is enabled and `false` otherwise.
|
|
58
|
+
*/
|
|
59
|
+
isReduceMotionEnabled,
|
|
60
|
+
/**
|
|
61
|
+
* Deprecated
|
|
62
|
+
*/
|
|
63
|
+
fetch: isScreenReaderEnabled,
|
|
64
|
+
/**
|
|
65
|
+
* Add an event handler. Supported events: reduceMotionChanged
|
|
66
|
+
*/
|
|
67
|
+
addEventListener: function (eventName, handler) {
|
|
68
|
+
if (eventName === "reduceMotionChanged") {
|
|
69
|
+
if (!prefersReducedMotionMedia) return;
|
|
70
|
+
const listener = event => {
|
|
71
|
+
handler(event.matches);
|
|
72
|
+
};
|
|
73
|
+
addChangeListener(listener), handlers[handler] = listener;
|
|
74
|
+
}
|
|
75
|
+
return {
|
|
76
|
+
remove: () => AccessibilityInfo.removeEventListener(eventName, handler)
|
|
77
|
+
};
|
|
78
|
+
},
|
|
79
|
+
/**
|
|
80
|
+
* Set accessibility focus to a react component.
|
|
81
|
+
*/
|
|
82
|
+
setAccessibilityFocus: function (reactTag) {},
|
|
83
|
+
/**
|
|
84
|
+
* Post a string to be announced by the screen reader.
|
|
85
|
+
*/
|
|
86
|
+
announceForAccessibility: function (announcement) {},
|
|
87
|
+
/**
|
|
88
|
+
* Remove an event handler.
|
|
89
|
+
*/
|
|
90
|
+
removeEventListener: function (eventName, handler) {
|
|
91
|
+
if (eventName === "reduceMotionChanged") {
|
|
92
|
+
const listener = handlers[handler];
|
|
93
|
+
if (!listener || !prefersReducedMotionMedia) return;
|
|
94
|
+
removeChangeListener(listener);
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
};
|
|
98
|
+
var AccessibilityInfo_default = AccessibilityInfo;
|
|
@@ -0,0 +1,188 @@
|
|
|
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_dom_event_testing_library = require("dom-event-testing-library"),
|
|
25
|
+
import_react2 = __toESM(require("react")),
|
|
26
|
+
import_test_utils = require("react-dom/test-utils"),
|
|
27
|
+
import__ = __toESM(require("../index.cjs")),
|
|
28
|
+
import_jsx_runtime = require("react/jsx-runtime");
|
|
29
|
+
describe("components/ActivityIndicator", () => {
|
|
30
|
+
describe('prop "accessibilityLabel"', () => {
|
|
31
|
+
test("value is set", () => {
|
|
32
|
+
const {
|
|
33
|
+
container
|
|
34
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
35
|
+
accessibilityLabel: "accessibility label"
|
|
36
|
+
}));
|
|
37
|
+
expect(container.firstChild).toMatchSnapshot();
|
|
38
|
+
});
|
|
39
|
+
}), describe('prop "accessibilityLiveRegion"', () => {
|
|
40
|
+
test("value is set", () => {
|
|
41
|
+
const {
|
|
42
|
+
container
|
|
43
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
44
|
+
accessibilityLiveRegion: "polite"
|
|
45
|
+
}));
|
|
46
|
+
expect(container.firstChild).toMatchSnapshot();
|
|
47
|
+
});
|
|
48
|
+
}), describe('prop "animating"', () => {
|
|
49
|
+
test('is "true"', () => {
|
|
50
|
+
const {
|
|
51
|
+
container
|
|
52
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
53
|
+
animating: !0
|
|
54
|
+
}));
|
|
55
|
+
expect(container.firstChild).toMatchSnapshot();
|
|
56
|
+
}), test('is "false"', () => {
|
|
57
|
+
const {
|
|
58
|
+
container
|
|
59
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
60
|
+
animating: !1
|
|
61
|
+
}));
|
|
62
|
+
expect(container.firstChild).toMatchSnapshot();
|
|
63
|
+
});
|
|
64
|
+
}), test('prop "color"', () => {
|
|
65
|
+
const {
|
|
66
|
+
container
|
|
67
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
68
|
+
color: "red"
|
|
69
|
+
})),
|
|
70
|
+
svg = container.firstChild.querySelector("svg");
|
|
71
|
+
expect(svg).toMatchSnapshot();
|
|
72
|
+
}), describe('prop "dataSet"', () => {
|
|
73
|
+
test("value is set", () => {
|
|
74
|
+
const {
|
|
75
|
+
container
|
|
76
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
77
|
+
dataSet: {
|
|
78
|
+
one: "one",
|
|
79
|
+
two: "two"
|
|
80
|
+
}
|
|
81
|
+
}));
|
|
82
|
+
expect(container.firstChild).toMatchSnapshot();
|
|
83
|
+
});
|
|
84
|
+
}), describe('prop "hidesWhenStopped"', () => {
|
|
85
|
+
test('is "true"', () => {
|
|
86
|
+
const {
|
|
87
|
+
container
|
|
88
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
89
|
+
animating: !1,
|
|
90
|
+
hidesWhenStopped: !0
|
|
91
|
+
}));
|
|
92
|
+
expect(container.firstChild).toMatchSnapshot();
|
|
93
|
+
}), test('is "false"', () => {
|
|
94
|
+
const {
|
|
95
|
+
container
|
|
96
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
97
|
+
animating: !1,
|
|
98
|
+
hidesWhenStopped: !1
|
|
99
|
+
}));
|
|
100
|
+
expect(container.firstChild).toMatchSnapshot();
|
|
101
|
+
});
|
|
102
|
+
}), describe('prop "nativeID"', () => {
|
|
103
|
+
test("value is set", () => {
|
|
104
|
+
const {
|
|
105
|
+
container
|
|
106
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
107
|
+
nativeID: "123"
|
|
108
|
+
}));
|
|
109
|
+
expect(container.firstChild).toMatchSnapshot();
|
|
110
|
+
});
|
|
111
|
+
}), describe('prop "onBlur"', () => {
|
|
112
|
+
test("is called", () => {
|
|
113
|
+
const onBlur = jest.fn(),
|
|
114
|
+
ref = import_react2.default.createRef();
|
|
115
|
+
(0, import_test_utils.act)(() => {
|
|
116
|
+
(0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
117
|
+
onBlur,
|
|
118
|
+
ref
|
|
119
|
+
}));
|
|
120
|
+
});
|
|
121
|
+
const target = (0, import_dom_event_testing_library.createEventTarget)(ref.current),
|
|
122
|
+
body = (0, import_dom_event_testing_library.createEventTarget)(document.body);
|
|
123
|
+
(0, import_test_utils.act)(() => {
|
|
124
|
+
target.focus(), body.focus({
|
|
125
|
+
relatedTarget: target.node
|
|
126
|
+
});
|
|
127
|
+
}), expect(onBlur).toBeCalled();
|
|
128
|
+
});
|
|
129
|
+
}), describe('prop "onFocus"', () => {
|
|
130
|
+
test("is called", () => {
|
|
131
|
+
const onFocus = jest.fn(),
|
|
132
|
+
ref = import_react2.default.createRef();
|
|
133
|
+
(0, import_test_utils.act)(() => {
|
|
134
|
+
(0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
135
|
+
onFocus,
|
|
136
|
+
ref
|
|
137
|
+
}));
|
|
138
|
+
});
|
|
139
|
+
const target = (0, import_dom_event_testing_library.createEventTarget)(ref.current);
|
|
140
|
+
(0, import_test_utils.act)(() => {
|
|
141
|
+
target.focus();
|
|
142
|
+
}), expect(onFocus).toBeCalled();
|
|
143
|
+
});
|
|
144
|
+
}), describe('prop "ref"', () => {
|
|
145
|
+
test("value is set", () => {
|
|
146
|
+
const ref = jest.fn();
|
|
147
|
+
(0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
148
|
+
ref
|
|
149
|
+
})), expect(ref).toBeCalled();
|
|
150
|
+
});
|
|
151
|
+
}), describe('prop "size"', () => {
|
|
152
|
+
test('is "large"', () => {
|
|
153
|
+
const {
|
|
154
|
+
container
|
|
155
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
156
|
+
size: "large"
|
|
157
|
+
}));
|
|
158
|
+
expect(container.firstChild).toMatchSnapshot();
|
|
159
|
+
}), test("is a number", () => {
|
|
160
|
+
const {
|
|
161
|
+
container
|
|
162
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
163
|
+
size: 30
|
|
164
|
+
}));
|
|
165
|
+
expect(container.firstChild).toMatchSnapshot();
|
|
166
|
+
});
|
|
167
|
+
}), describe('prop "style"', () => {
|
|
168
|
+
test("value is set", () => {
|
|
169
|
+
const {
|
|
170
|
+
container
|
|
171
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
172
|
+
style: {
|
|
173
|
+
borderWidth: 5
|
|
174
|
+
}
|
|
175
|
+
}));
|
|
176
|
+
expect(container.firstChild).toMatchSnapshot();
|
|
177
|
+
});
|
|
178
|
+
}), describe('prop "testID"', () => {
|
|
179
|
+
test("value is set", () => {
|
|
180
|
+
const {
|
|
181
|
+
container
|
|
182
|
+
} = (0, import_react.render)(/* @__PURE__ */(0, import_jsx_runtime.jsx)(import__.default, {
|
|
183
|
+
testID: "123"
|
|
184
|
+
}));
|
|
185
|
+
expect(container.firstChild).toMatchSnapshot();
|
|
186
|
+
});
|
|
187
|
+
});
|
|
188
|
+
});
|
|
@@ -0,0 +1,127 @@
|
|
|
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 ActivityIndicator_exports = {};
|
|
33
|
+
__export(ActivityIndicator_exports, {
|
|
34
|
+
default: () => ActivityIndicator_default
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(ActivityIndicator_exports);
|
|
37
|
+
var React = __toESM(require("react")),
|
|
38
|
+
import_react_native_web_internals = require("@tamagui/react-native-web-internals"),
|
|
39
|
+
import_View = __toESM(require("../View/index.cjs")),
|
|
40
|
+
import_jsx_runtime = require("react/jsx-runtime");
|
|
41
|
+
const createSvgCircle = style => /* @__PURE__ */(0, import_jsx_runtime.jsx)("circle", {
|
|
42
|
+
cx: "16",
|
|
43
|
+
cy: "16",
|
|
44
|
+
fill: "none",
|
|
45
|
+
r: "14",
|
|
46
|
+
strokeWidth: "4",
|
|
47
|
+
style
|
|
48
|
+
}),
|
|
49
|
+
ActivityIndicator = React.forwardRef((props, forwardedRef) => {
|
|
50
|
+
const {
|
|
51
|
+
animating = !0,
|
|
52
|
+
color = "#1976D2",
|
|
53
|
+
hidesWhenStopped = !0,
|
|
54
|
+
size = "small",
|
|
55
|
+
style,
|
|
56
|
+
...other
|
|
57
|
+
} = props,
|
|
58
|
+
svg = /* @__PURE__ */(0, import_jsx_runtime.jsxs)("svg", {
|
|
59
|
+
height: "100%",
|
|
60
|
+
viewBox: "0 0 32 32",
|
|
61
|
+
width: "100%",
|
|
62
|
+
children: [createSvgCircle({
|
|
63
|
+
stroke: color,
|
|
64
|
+
opacity: 0.2
|
|
65
|
+
}), createSvgCircle({
|
|
66
|
+
stroke: color,
|
|
67
|
+
strokeDasharray: 80,
|
|
68
|
+
strokeDashoffset: 60
|
|
69
|
+
})]
|
|
70
|
+
});
|
|
71
|
+
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_View.default, {
|
|
72
|
+
...other,
|
|
73
|
+
accessibilityRole: "progressbar",
|
|
74
|
+
accessibilityValueMax: 1,
|
|
75
|
+
accessibilityValueMin: 0,
|
|
76
|
+
ref: forwardedRef,
|
|
77
|
+
style: [styles.container, style],
|
|
78
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_View.default, {
|
|
79
|
+
children: svg,
|
|
80
|
+
style: [typeof size == "number" ? {
|
|
81
|
+
height: size,
|
|
82
|
+
width: size
|
|
83
|
+
} : indicatorSizes[size], styles.animation, !animating && styles.animationPause, !animating && hidesWhenStopped && styles.hidesWhenStopped]
|
|
84
|
+
})
|
|
85
|
+
});
|
|
86
|
+
});
|
|
87
|
+
ActivityIndicator.displayName = "ActivityIndicator";
|
|
88
|
+
const styles = import_react_native_web_internals.StyleSheet.create({
|
|
89
|
+
container: {
|
|
90
|
+
alignItems: "center",
|
|
91
|
+
justifyContent: "center"
|
|
92
|
+
},
|
|
93
|
+
hidesWhenStopped: {
|
|
94
|
+
visibility: "hidden"
|
|
95
|
+
},
|
|
96
|
+
animation: {
|
|
97
|
+
animationDuration: "0.75s",
|
|
98
|
+
animationKeyframes: [{
|
|
99
|
+
"0%": {
|
|
100
|
+
transform: [{
|
|
101
|
+
rotate: "0deg"
|
|
102
|
+
}]
|
|
103
|
+
},
|
|
104
|
+
"100%": {
|
|
105
|
+
transform: [{
|
|
106
|
+
rotate: "360deg"
|
|
107
|
+
}]
|
|
108
|
+
}
|
|
109
|
+
}],
|
|
110
|
+
animationTimingFunction: "linear",
|
|
111
|
+
animationIterationCount: "infinite"
|
|
112
|
+
},
|
|
113
|
+
animationPause: {
|
|
114
|
+
animationPlayState: "paused"
|
|
115
|
+
}
|
|
116
|
+
}),
|
|
117
|
+
indicatorSizes = import_react_native_web_internals.StyleSheet.create({
|
|
118
|
+
small: {
|
|
119
|
+
width: 20,
|
|
120
|
+
height: 20
|
|
121
|
+
},
|
|
122
|
+
large: {
|
|
123
|
+
width: 36,
|
|
124
|
+
height: 36
|
|
125
|
+
}
|
|
126
|
+
});
|
|
127
|
+
var ActivityIndicator_default = ActivityIndicator;
|
|
@@ -0,0 +1,29 @@
|
|
|
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 Alert_exports = {};
|
|
22
|
+
__export(Alert_exports, {
|
|
23
|
+
default: () => Alert_default
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(Alert_exports);
|
|
26
|
+
class Alert {
|
|
27
|
+
static alert() {}
|
|
28
|
+
}
|
|
29
|
+
var Alert_default = Alert;
|
|
@@ -0,0 +1,70 @@
|
|
|
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 AppContainer_exports = {};
|
|
33
|
+
__export(AppContainer_exports, {
|
|
34
|
+
default: () => AppContainer_default
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(AppContainer_exports);
|
|
37
|
+
var React = __toESM(require("react")),
|
|
38
|
+
import_react_native_web_internals = require("@tamagui/react-native-web-internals"),
|
|
39
|
+
import_View = __toESM(require("../View/index.cjs")),
|
|
40
|
+
import_jsx_runtime = require("react/jsx-runtime");
|
|
41
|
+
const RootTagContext = React.createContext(null),
|
|
42
|
+
AppContainer = React.forwardRef((props, forwardedRef) => {
|
|
43
|
+
const {
|
|
44
|
+
children,
|
|
45
|
+
WrapperComponent
|
|
46
|
+
} = props;
|
|
47
|
+
let innerView = /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_View.default, {
|
|
48
|
+
pointerEvents: "box-none",
|
|
49
|
+
style: styles.appContainer,
|
|
50
|
+
children
|
|
51
|
+
}, 1);
|
|
52
|
+
return WrapperComponent && (innerView = /* @__PURE__ */(0, import_jsx_runtime.jsx)(WrapperComponent, {
|
|
53
|
+
children: innerView
|
|
54
|
+
})), /* @__PURE__ */(0, import_jsx_runtime.jsx)(RootTagContext.Provider, {
|
|
55
|
+
value: props.rootTag,
|
|
56
|
+
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_View.default, {
|
|
57
|
+
pointerEvents: "box-none",
|
|
58
|
+
ref: forwardedRef,
|
|
59
|
+
style: styles.appContainer,
|
|
60
|
+
children: innerView
|
|
61
|
+
})
|
|
62
|
+
});
|
|
63
|
+
});
|
|
64
|
+
AppContainer.displayName = "AppContainer";
|
|
65
|
+
var AppContainer_default = AppContainer;
|
|
66
|
+
const styles = import_react_native_web_internals.StyleSheet.create({
|
|
67
|
+
appContainer: {
|
|
68
|
+
flex: 1
|
|
69
|
+
}
|
|
70
|
+
});
|
|
@@ -2,22 +2,26 @@ 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_react = __toESM(require("react")),
|
|
24
|
+
import__ = __toESM(require("../index.cjs"));
|
|
21
25
|
const NoopComponent = () => import_react.default.createElement("div");
|
|
22
26
|
describe("AppRegistry", () => {
|
|
23
27
|
describe("runApplication", () => {
|
|
@@ -34,7 +38,10 @@ describe("AppRegistry", () => {
|
|
|
34
38
|
callback
|
|
35
39
|
}), expect(callback).toHaveBeenCalledTimes(1);
|
|
36
40
|
}), test("styles roots in different documents", () => {
|
|
37
|
-
import__.default.registerComponent("App", () => NoopComponent), import__.default.runApplication("App", {
|
|
41
|
+
import__.default.registerComponent("App", () => NoopComponent), import__.default.runApplication("App", {
|
|
42
|
+
initialProps: {},
|
|
43
|
+
rootTag
|
|
44
|
+
});
|
|
38
45
|
const iframe = document.createElement("iframe");
|
|
39
46
|
document.body.appendChild(iframe);
|
|
40
47
|
const iframeRootTag = document.createElement("div");
|
|
@@ -44,7 +51,7 @@ describe("AppRegistry", () => {
|
|
|
44
51
|
});
|
|
45
52
|
const iframedoc = iframeRootTag.ownerDocument;
|
|
46
53
|
expect(iframedoc).toBe(iframe.contentWindow.document), expect(iframedoc).not.toBe(document);
|
|
47
|
-
const cssText = Array.prototype.slice.call(iframedoc.getElementById("react-native-stylesheet").sheet.cssRules).map(
|
|
54
|
+
const cssText = Array.prototype.slice.call(iframedoc.getElementById("react-native-stylesheet").sheet.cssRules).map(cssRule => cssRule.cssText);
|
|
48
55
|
expect(cssText).toMatchInlineSnapshot(`
|
|
49
56
|
[
|
|
50
57
|
"[stylesheet-group=\\"0\\"] {}",
|
|
@@ -73,5 +80,4 @@ describe("AppRegistry", () => {
|
|
|
73
80
|
`);
|
|
74
81
|
});
|
|
75
82
|
});
|
|
76
|
-
});
|
|
77
|
-
//# sourceMappingURL=index-test.js.map
|
|
83
|
+
});
|