@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
|
@@ -1,116 +0,0 @@
|
|
|
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, __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __copyProps = (to, from, except, desc) => {
|
|
7
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
8
|
-
for (let key of __getOwnPropNames(from))
|
|
9
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
10
|
-
return to;
|
|
11
|
-
};
|
|
12
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
13
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
14
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
15
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
16
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
17
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
|
|
18
|
-
mod
|
|
19
|
-
));
|
|
20
|
-
var import_react = require("@testing-library/react"), import_dom_event_testing_library = require("dom-event-testing-library"), import_react2 = __toESM(require("react")), import_test_utils = require("react-dom/test-utils"), import__ = __toESM(require("..")), import_jsx_runtime = require("react/jsx-runtime");
|
|
21
|
-
describe("components/ActivityIndicator", () => {
|
|
22
|
-
describe('prop "accessibilityLabel"', () => {
|
|
23
|
-
test("value is set", () => {
|
|
24
|
-
const { container } = (0, import_react.render)(
|
|
25
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { accessibilityLabel: "accessibility label" })
|
|
26
|
-
);
|
|
27
|
-
expect(container.firstChild).toMatchSnapshot();
|
|
28
|
-
});
|
|
29
|
-
}), describe('prop "accessibilityLiveRegion"', () => {
|
|
30
|
-
test("value is set", () => {
|
|
31
|
-
const { container } = (0, import_react.render)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { accessibilityLiveRegion: "polite" }));
|
|
32
|
-
expect(container.firstChild).toMatchSnapshot();
|
|
33
|
-
});
|
|
34
|
-
}), describe('prop "animating"', () => {
|
|
35
|
-
test('is "true"', () => {
|
|
36
|
-
const { container } = (0, import_react.render)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { animating: !0 }));
|
|
37
|
-
expect(container.firstChild).toMatchSnapshot();
|
|
38
|
-
}), test('is "false"', () => {
|
|
39
|
-
const { container } = (0, import_react.render)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { animating: !1 }));
|
|
40
|
-
expect(container.firstChild).toMatchSnapshot();
|
|
41
|
-
});
|
|
42
|
-
}), test('prop "color"', () => {
|
|
43
|
-
const { container } = (0, import_react.render)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { color: "red" })), svg = container.firstChild.querySelector("svg");
|
|
44
|
-
expect(svg).toMatchSnapshot();
|
|
45
|
-
}), describe('prop "dataSet"', () => {
|
|
46
|
-
test("value is set", () => {
|
|
47
|
-
const { container } = (0, import_react.render)(
|
|
48
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { dataSet: { one: "one", two: "two" } })
|
|
49
|
-
);
|
|
50
|
-
expect(container.firstChild).toMatchSnapshot();
|
|
51
|
-
});
|
|
52
|
-
}), describe('prop "hidesWhenStopped"', () => {
|
|
53
|
-
test('is "true"', () => {
|
|
54
|
-
const { container } = (0, import_react.render)(
|
|
55
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { animating: !1, hidesWhenStopped: !0 })
|
|
56
|
-
);
|
|
57
|
-
expect(container.firstChild).toMatchSnapshot();
|
|
58
|
-
}), test('is "false"', () => {
|
|
59
|
-
const { container } = (0, import_react.render)(
|
|
60
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { animating: !1, hidesWhenStopped: !1 })
|
|
61
|
-
);
|
|
62
|
-
expect(container.firstChild).toMatchSnapshot();
|
|
63
|
-
});
|
|
64
|
-
}), describe('prop "nativeID"', () => {
|
|
65
|
-
test("value is set", () => {
|
|
66
|
-
const { container } = (0, import_react.render)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { nativeID: "123" }));
|
|
67
|
-
expect(container.firstChild).toMatchSnapshot();
|
|
68
|
-
});
|
|
69
|
-
}), describe('prop "onBlur"', () => {
|
|
70
|
-
test("is called", () => {
|
|
71
|
-
const onBlur = jest.fn(), ref = import_react2.default.createRef();
|
|
72
|
-
(0, import_test_utils.act)(() => {
|
|
73
|
-
(0, import_react.render)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { onBlur, ref }));
|
|
74
|
-
});
|
|
75
|
-
const target = (0, import_dom_event_testing_library.createEventTarget)(ref.current), body = (0, import_dom_event_testing_library.createEventTarget)(document.body);
|
|
76
|
-
(0, import_test_utils.act)(() => {
|
|
77
|
-
target.focus(), body.focus({ relatedTarget: target.node });
|
|
78
|
-
}), expect(onBlur).toBeCalled();
|
|
79
|
-
});
|
|
80
|
-
}), describe('prop "onFocus"', () => {
|
|
81
|
-
test("is called", () => {
|
|
82
|
-
const onFocus = jest.fn(), ref = import_react2.default.createRef();
|
|
83
|
-
(0, import_test_utils.act)(() => {
|
|
84
|
-
(0, import_react.render)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { onFocus, ref }));
|
|
85
|
-
});
|
|
86
|
-
const target = (0, import_dom_event_testing_library.createEventTarget)(ref.current);
|
|
87
|
-
(0, import_test_utils.act)(() => {
|
|
88
|
-
target.focus();
|
|
89
|
-
}), expect(onFocus).toBeCalled();
|
|
90
|
-
});
|
|
91
|
-
}), describe('prop "ref"', () => {
|
|
92
|
-
test("value is set", () => {
|
|
93
|
-
const ref = jest.fn();
|
|
94
|
-
(0, import_react.render)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { ref })), expect(ref).toBeCalled();
|
|
95
|
-
});
|
|
96
|
-
}), describe('prop "size"', () => {
|
|
97
|
-
test('is "large"', () => {
|
|
98
|
-
const { container } = (0, import_react.render)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { size: "large" }));
|
|
99
|
-
expect(container.firstChild).toMatchSnapshot();
|
|
100
|
-
}), test("is a number", () => {
|
|
101
|
-
const { container } = (0, import_react.render)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { size: 30 }));
|
|
102
|
-
expect(container.firstChild).toMatchSnapshot();
|
|
103
|
-
});
|
|
104
|
-
}), describe('prop "style"', () => {
|
|
105
|
-
test("value is set", () => {
|
|
106
|
-
const { container } = (0, import_react.render)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { style: { borderWidth: 5 } }));
|
|
107
|
-
expect(container.firstChild).toMatchSnapshot();
|
|
108
|
-
});
|
|
109
|
-
}), describe('prop "testID"', () => {
|
|
110
|
-
test("value is set", () => {
|
|
111
|
-
const { container } = (0, import_react.render)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.default, { testID: "123" }));
|
|
112
|
-
expect(container.firstChild).toMatchSnapshot();
|
|
113
|
-
});
|
|
114
|
-
});
|
|
115
|
-
});
|
|
116
|
-
//# sourceMappingURL=index-test.js.map
|
|
@@ -1,108 +0,0 @@
|
|
|
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, __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
9
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
11
|
-
for (let key of __getOwnPropNames(from))
|
|
12
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
-
return to;
|
|
14
|
-
};
|
|
15
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
16
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
17
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
18
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
19
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
20
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
|
|
21
|
-
mod
|
|
22
|
-
)), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
23
|
-
var ActivityIndicator_exports = {};
|
|
24
|
-
__export(ActivityIndicator_exports, {
|
|
25
|
-
default: () => ActivityIndicator_default
|
|
26
|
-
});
|
|
27
|
-
module.exports = __toCommonJS(ActivityIndicator_exports);
|
|
28
|
-
var React = __toESM(require("react")), import_react_native_web_internals = require("@tamagui/react-native-web-internals"), import_View = __toESM(require("../View/index")), import_jsx_runtime = require("react/jsx-runtime");
|
|
29
|
-
const createSvgCircle = (style) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "16", cy: "16", fill: "none", r: "14", strokeWidth: "4", style }), ActivityIndicator = React.forwardRef(
|
|
30
|
-
(props, forwardedRef) => {
|
|
31
|
-
const {
|
|
32
|
-
animating = !0,
|
|
33
|
-
color = "#1976D2",
|
|
34
|
-
hidesWhenStopped = !0,
|
|
35
|
-
size = "small",
|
|
36
|
-
style,
|
|
37
|
-
...other
|
|
38
|
-
} = props, svg = /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", { height: "100%", viewBox: "0 0 32 32", width: "100%", children: [
|
|
39
|
-
createSvgCircle({
|
|
40
|
-
stroke: color,
|
|
41
|
-
opacity: 0.2
|
|
42
|
-
}),
|
|
43
|
-
createSvgCircle({
|
|
44
|
-
stroke: color,
|
|
45
|
-
strokeDasharray: 80,
|
|
46
|
-
strokeDashoffset: 60
|
|
47
|
-
})
|
|
48
|
-
] });
|
|
49
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
50
|
-
import_View.default,
|
|
51
|
-
{
|
|
52
|
-
...other,
|
|
53
|
-
accessibilityRole: "progressbar",
|
|
54
|
-
accessibilityValueMax: 1,
|
|
55
|
-
accessibilityValueMin: 0,
|
|
56
|
-
ref: forwardedRef,
|
|
57
|
-
style: [styles.container, style],
|
|
58
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
59
|
-
import_View.default,
|
|
60
|
-
{
|
|
61
|
-
children: svg,
|
|
62
|
-
style: [
|
|
63
|
-
typeof size == "number" ? { height: size, width: size } : indicatorSizes[size],
|
|
64
|
-
styles.animation,
|
|
65
|
-
!animating && styles.animationPause,
|
|
66
|
-
!animating && hidesWhenStopped && styles.hidesWhenStopped
|
|
67
|
-
]
|
|
68
|
-
}
|
|
69
|
-
)
|
|
70
|
-
}
|
|
71
|
-
);
|
|
72
|
-
}
|
|
73
|
-
);
|
|
74
|
-
ActivityIndicator.displayName = "ActivityIndicator";
|
|
75
|
-
const styles = import_react_native_web_internals.StyleSheet.create({
|
|
76
|
-
container: {
|
|
77
|
-
alignItems: "center",
|
|
78
|
-
justifyContent: "center"
|
|
79
|
-
},
|
|
80
|
-
hidesWhenStopped: {
|
|
81
|
-
visibility: "hidden"
|
|
82
|
-
},
|
|
83
|
-
animation: {
|
|
84
|
-
animationDuration: "0.75s",
|
|
85
|
-
animationKeyframes: [
|
|
86
|
-
{
|
|
87
|
-
"0%": { transform: [{ rotate: "0deg" }] },
|
|
88
|
-
"100%": { transform: [{ rotate: "360deg" }] }
|
|
89
|
-
}
|
|
90
|
-
],
|
|
91
|
-
animationTimingFunction: "linear",
|
|
92
|
-
animationIterationCount: "infinite"
|
|
93
|
-
},
|
|
94
|
-
animationPause: {
|
|
95
|
-
animationPlayState: "paused"
|
|
96
|
-
}
|
|
97
|
-
}), indicatorSizes = import_react_native_web_internals.StyleSheet.create({
|
|
98
|
-
small: {
|
|
99
|
-
width: 20,
|
|
100
|
-
height: 20
|
|
101
|
-
},
|
|
102
|
-
large: {
|
|
103
|
-
width: 36,
|
|
104
|
-
height: 36
|
|
105
|
-
}
|
|
106
|
-
});
|
|
107
|
-
var ActivityIndicator_default = ActivityIndicator;
|
|
108
|
-
//# sourceMappingURL=index.js.map
|
package/dist/cjs/Alert/index.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
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)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
8
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
9
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
10
|
-
for (let key of __getOwnPropNames(from))
|
|
11
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
-
return to;
|
|
13
|
-
};
|
|
14
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
15
|
-
var Alert_exports = {};
|
|
16
|
-
__export(Alert_exports, {
|
|
17
|
-
default: () => Alert_default
|
|
18
|
-
});
|
|
19
|
-
module.exports = __toCommonJS(Alert_exports);
|
|
20
|
-
class Alert {
|
|
21
|
-
static alert() {
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
var Alert_default = Alert;
|
|
25
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,41 +0,0 @@
|
|
|
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, __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
9
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
11
|
-
for (let key of __getOwnPropNames(from))
|
|
12
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
-
return to;
|
|
14
|
-
};
|
|
15
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
16
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
17
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
18
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
19
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
20
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
|
|
21
|
-
mod
|
|
22
|
-
)), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
23
|
-
var AppContainer_exports = {};
|
|
24
|
-
__export(AppContainer_exports, {
|
|
25
|
-
default: () => AppContainer_default
|
|
26
|
-
});
|
|
27
|
-
module.exports = __toCommonJS(AppContainer_exports);
|
|
28
|
-
var React = __toESM(require("react")), import_react_native_web_internals = require("@tamagui/react-native-web-internals"), import_View = __toESM(require("../View/index")), import_jsx_runtime = require("react/jsx-runtime");
|
|
29
|
-
const RootTagContext = React.createContext(null), AppContainer = React.forwardRef((props, forwardedRef) => {
|
|
30
|
-
const { children, WrapperComponent } = props;
|
|
31
|
-
let innerView = /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_View.default, { pointerEvents: "box-none", style: styles.appContainer, children }, 1);
|
|
32
|
-
return WrapperComponent && (innerView = /* @__PURE__ */ (0, import_jsx_runtime.jsx)(WrapperComponent, { children: innerView })), /* @__PURE__ */ (0, import_jsx_runtime.jsx)(RootTagContext.Provider, { value: props.rootTag, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_View.default, { pointerEvents: "box-none", ref: forwardedRef, style: styles.appContainer, children: innerView }) });
|
|
33
|
-
});
|
|
34
|
-
AppContainer.displayName = "AppContainer";
|
|
35
|
-
var AppContainer_default = AppContainer;
|
|
36
|
-
const styles = import_react_native_web_internals.StyleSheet.create({
|
|
37
|
-
appContainer: {
|
|
38
|
-
flex: 1
|
|
39
|
-
}
|
|
40
|
-
});
|
|
41
|
-
//# sourceMappingURL=AppContainer.js.map
|
|
@@ -1,98 +0,0 @@
|
|
|
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, __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
9
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
11
|
-
for (let key of __getOwnPropNames(from))
|
|
12
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
-
return to;
|
|
14
|
-
};
|
|
15
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
16
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
17
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
18
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
19
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
20
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
|
|
21
|
-
mod
|
|
22
|
-
)), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
23
|
-
var AppRegistry_exports = {};
|
|
24
|
-
__export(AppRegistry_exports, {
|
|
25
|
-
default: () => AppRegistry
|
|
26
|
-
});
|
|
27
|
-
module.exports = __toCommonJS(AppRegistry_exports);
|
|
28
|
-
var import_react_dom = require("react-dom"), import_react_native_web_internals = require("@tamagui/react-native-web-internals"), import_renderApplication = __toESM(require("./renderApplication"));
|
|
29
|
-
const emptyObject = {}, runnables = {};
|
|
30
|
-
let componentProviderInstrumentationHook = (component) => component(), wrapperComponentProvider;
|
|
31
|
-
class AppRegistry {
|
|
32
|
-
static getAppKeys() {
|
|
33
|
-
return Object.keys(runnables);
|
|
34
|
-
}
|
|
35
|
-
static getApplication(appKey, appParameters) {
|
|
36
|
-
return (0, import_react_native_web_internals.invariant)(
|
|
37
|
-
runnables[appKey] && runnables[appKey].getApplication,
|
|
38
|
-
`Application ${appKey} has not been registered. This is either due to an import error during initialization or failure to call AppRegistry.registerComponent.`
|
|
39
|
-
), runnables[appKey]?.getApplication?.(appParameters);
|
|
40
|
-
}
|
|
41
|
-
static registerComponent(appKey, componentProvider) {
|
|
42
|
-
return runnables[appKey] = {
|
|
43
|
-
getApplication: (appParameters) => (0, import_renderApplication.getApplication)(
|
|
44
|
-
componentProviderInstrumentationHook(componentProvider),
|
|
45
|
-
appParameters ? appParameters.initialProps : emptyObject,
|
|
46
|
-
wrapperComponentProvider && wrapperComponentProvider(appParameters)
|
|
47
|
-
),
|
|
48
|
-
run: (appParameters) => (0, import_renderApplication.default)(
|
|
49
|
-
componentProviderInstrumentationHook(componentProvider),
|
|
50
|
-
wrapperComponentProvider && wrapperComponentProvider(appParameters),
|
|
51
|
-
appParameters.callback,
|
|
52
|
-
{
|
|
53
|
-
hydrate: appParameters.hydrate || !1,
|
|
54
|
-
initialProps: appParameters.initialProps || emptyObject,
|
|
55
|
-
mode: appParameters.mode || "legacy",
|
|
56
|
-
rootTag: appParameters.rootTag
|
|
57
|
-
}
|
|
58
|
-
)
|
|
59
|
-
}, appKey;
|
|
60
|
-
}
|
|
61
|
-
static registerConfig(config) {
|
|
62
|
-
config.forEach(({ appKey, component, run }) => {
|
|
63
|
-
run ? AppRegistry.registerRunnable(appKey, run) : ((0, import_react_native_web_internals.invariant)(component, "No component provider passed in"), AppRegistry.registerComponent(appKey, component));
|
|
64
|
-
});
|
|
65
|
-
}
|
|
66
|
-
// TODO: fix style sheet creation when using this method
|
|
67
|
-
static registerRunnable(appKey, run) {
|
|
68
|
-
return runnables[appKey] = { run }, appKey;
|
|
69
|
-
}
|
|
70
|
-
static runApplication(appKey, appParameters) {
|
|
71
|
-
const isDevelopment = process.env.NODE_ENV !== "production" && process.env.NODE_ENV !== "test";
|
|
72
|
-
if (isDevelopment) {
|
|
73
|
-
const params = { ...appParameters };
|
|
74
|
-
params.rootTag = `#${params.rootTag.id}`, console.log(
|
|
75
|
-
`Running application "${appKey}" with appParams:
|
|
76
|
-
`,
|
|
77
|
-
params,
|
|
78
|
-
`
|
|
79
|
-
Development-level warnings: ${isDevelopment ? "ON" : "OFF"}.
|
|
80
|
-
Performance optimizations: ${isDevelopment ? "OFF" : "ON"}.`
|
|
81
|
-
);
|
|
82
|
-
}
|
|
83
|
-
return (0, import_react_native_web_internals.invariant)(
|
|
84
|
-
runnables[appKey] && runnables[appKey].run,
|
|
85
|
-
`Application "${appKey}" has not been registered. This is either due to an import error during initialization or failure to call AppRegistry.registerComponent.`
|
|
86
|
-
), runnables[appKey].run(appParameters);
|
|
87
|
-
}
|
|
88
|
-
static setComponentProviderInstrumentationHook(hook) {
|
|
89
|
-
componentProviderInstrumentationHook = hook;
|
|
90
|
-
}
|
|
91
|
-
static setWrapperComponentProvider(provider) {
|
|
92
|
-
wrapperComponentProvider = provider;
|
|
93
|
-
}
|
|
94
|
-
static unmountApplicationComponentAtRootTag(rootTag) {
|
|
95
|
-
(0, import_react_dom.unmountComponentAtNode)(rootTag);
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,51 +0,0 @@
|
|
|
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, __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
9
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
11
|
-
for (let key of __getOwnPropNames(from))
|
|
12
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
-
return to;
|
|
14
|
-
};
|
|
15
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
16
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
17
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
18
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
19
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
20
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
|
|
21
|
-
mod
|
|
22
|
-
)), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
23
|
-
var renderApplication_exports = {};
|
|
24
|
-
__export(renderApplication_exports, {
|
|
25
|
-
default: () => renderApplication,
|
|
26
|
-
getApplication: () => getApplication
|
|
27
|
-
});
|
|
28
|
-
module.exports = __toCommonJS(renderApplication_exports);
|
|
29
|
-
var import_react_native_web_internals = require("@tamagui/react-native-web-internals"), import_react_native_web_internals2 = require("@tamagui/react-native-web-internals"), import_render = __toESM(require("../render/index")), import_AppContainer = __toESM(require("./AppContainer")), import_jsx_runtime = require("react/jsx-runtime");
|
|
30
|
-
function renderApplication(RootComponent, WrapperComponent = null, callback = () => {
|
|
31
|
-
}, options) {
|
|
32
|
-
const { hydrate: shouldHydrate, initialProps, mode, rootTag } = options, renderFn = shouldHydrate ? mode === "concurrent" ? import_render.hydrate : import_render.hydrateLegacy : mode === "concurrent" ? import_render.render : import_render.default;
|
|
33
|
-
return (0, import_react_native_web_internals2.invariant)(rootTag, "Expect to have a valid rootTag, instead got ", rootTag), renderFn(
|
|
34
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_AppContainer.default, { WrapperComponent, ref: callback, rootTag, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(RootComponent, { ...initialProps }) }),
|
|
35
|
-
rootTag
|
|
36
|
-
);
|
|
37
|
-
}
|
|
38
|
-
function getApplication(RootComponent, initialProps, WrapperComponent) {
|
|
39
|
-
return { element: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_AppContainer.default, { WrapperComponent, rootTag: {}, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(RootComponent, { ...initialProps }) }), getStyleElement: (props) => {
|
|
40
|
-
const sheet = import_react_native_web_internals.StyleSheet.getSheet();
|
|
41
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
42
|
-
"style",
|
|
43
|
-
{
|
|
44
|
-
...props,
|
|
45
|
-
dangerouslySetInnerHTML: { __html: sheet.textContent },
|
|
46
|
-
id: sheet.id
|
|
47
|
-
}
|
|
48
|
-
);
|
|
49
|
-
} };
|
|
50
|
-
}
|
|
51
|
-
//# sourceMappingURL=renderApplication.js.map
|
|
@@ -1,71 +0,0 @@
|
|
|
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)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
8
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
9
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
10
|
-
for (let key of __getOwnPropNames(from))
|
|
11
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
-
return to;
|
|
13
|
-
};
|
|
14
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
15
|
-
var AppState_exports = {};
|
|
16
|
-
__export(AppState_exports, {
|
|
17
|
-
default: () => AppState
|
|
18
|
-
});
|
|
19
|
-
module.exports = __toCommonJS(AppState_exports);
|
|
20
|
-
var import_react_native_web_internals = require("@tamagui/react-native-web-internals");
|
|
21
|
-
const isPrefixed = (
|
|
22
|
-
// eslint-disable-next-line no-prototype-builtins
|
|
23
|
-
import_react_native_web_internals.canUseDOM && !document.hasOwnProperty("hidden") && document.hasOwnProperty("webkitHidden")
|
|
24
|
-
), EVENT_TYPES = ["change", "memoryWarning"], VISIBILITY_CHANGE_EVENT = isPrefixed ? "webkitvisibilitychange" : "visibilitychange", VISIBILITY_STATE_PROPERTY = isPrefixed ? "webkitVisibilityState" : "visibilityState", AppStates = {
|
|
25
|
-
BACKGROUND: "background",
|
|
26
|
-
ACTIVE: "active"
|
|
27
|
-
};
|
|
28
|
-
class EventEmitter {
|
|
29
|
-
listeners = {};
|
|
30
|
-
addListener(type, handler) {
|
|
31
|
-
this.listeners[type] ??= /* @__PURE__ */ new Set(), this.listeners[type].add(handler);
|
|
32
|
-
}
|
|
33
|
-
emit(type, state) {
|
|
34
|
-
this.listeners[type]?.forEach((cb) => cb(state));
|
|
35
|
-
}
|
|
36
|
-
removeListener(type, handler) {
|
|
37
|
-
this.listeners[type]?.delete(handler);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
let hasBoundVisibilityChangeEvent = !1;
|
|
41
|
-
const changeEmitter = new EventEmitter();
|
|
42
|
-
class AppState {
|
|
43
|
-
static isAvailable = import_react_native_web_internals.canUseDOM && document[VISIBILITY_STATE_PROPERTY];
|
|
44
|
-
static get currentState() {
|
|
45
|
-
if (!AppState.isAvailable)
|
|
46
|
-
return AppStates.ACTIVE;
|
|
47
|
-
switch (document[VISIBILITY_STATE_PROPERTY]) {
|
|
48
|
-
case "hidden":
|
|
49
|
-
case "prerender":
|
|
50
|
-
case "unloaded":
|
|
51
|
-
return AppStates.BACKGROUND;
|
|
52
|
-
default:
|
|
53
|
-
return AppStates.ACTIVE;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
static addEventListener(type, handler) {
|
|
57
|
-
if (AppState.isAvailable && ((0, import_react_native_web_internals.invariant)(
|
|
58
|
-
EVENT_TYPES.indexOf(type) !== -1,
|
|
59
|
-
'Trying to subscribe to unknown event: "%s"',
|
|
60
|
-
type
|
|
61
|
-
), type === "change"))
|
|
62
|
-
return hasBoundVisibilityChangeEvent || (hasBoundVisibilityChangeEvent = !0, document.addEventListener(
|
|
63
|
-
VISIBILITY_CHANGE_EVENT,
|
|
64
|
-
() => {
|
|
65
|
-
changeEmitter && changeEmitter.emit("change", AppState.currentState);
|
|
66
|
-
},
|
|
67
|
-
!1
|
|
68
|
-
)), changeEmitter.addListener(type, handler);
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,41 +0,0 @@
|
|
|
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)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
8
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
9
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
10
|
-
for (let key of __getOwnPropNames(from))
|
|
11
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
-
return to;
|
|
13
|
-
};
|
|
14
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
15
|
-
var Appearance_exports = {};
|
|
16
|
-
__export(Appearance_exports, {
|
|
17
|
-
default: () => Appearance_default
|
|
18
|
-
});
|
|
19
|
-
module.exports = __toCommonJS(Appearance_exports);
|
|
20
|
-
var import_react_native_web_internals = require("@tamagui/react-native-web-internals");
|
|
21
|
-
function getQuery() {
|
|
22
|
-
return import_react_native_web_internals.canUseDOM && window.matchMedia != null ? window.matchMedia("(prefers-color-scheme: dark)") : null;
|
|
23
|
-
}
|
|
24
|
-
const query = getQuery(), listenerMapping = /* @__PURE__ */ new WeakMap(), Appearance = {
|
|
25
|
-
getColorScheme() {
|
|
26
|
-
return query && query.matches ? "dark" : "light";
|
|
27
|
-
},
|
|
28
|
-
addChangeListener(listener) {
|
|
29
|
-
let mappedListener = listenerMapping.get(listener);
|
|
30
|
-
mappedListener || (mappedListener = ({ matches }) => {
|
|
31
|
-
listener({ colorScheme: matches ? "dark" : "light" });
|
|
32
|
-
}, listenerMapping.set(listener, mappedListener)), query && query.addListener(mappedListener);
|
|
33
|
-
function remove() {
|
|
34
|
-
const mappedListener2 = listenerMapping.get(listener);
|
|
35
|
-
query && mappedListener2 && query.removeListener(mappedListener2), listenerMapping.delete(listener);
|
|
36
|
-
}
|
|
37
|
-
return { remove };
|
|
38
|
-
}
|
|
39
|
-
};
|
|
40
|
-
var Appearance_default = Appearance;
|
|
41
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,32 +0,0 @@
|
|
|
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)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
8
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
9
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
10
|
-
for (let key of __getOwnPropNames(from))
|
|
11
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
-
return to;
|
|
13
|
-
};
|
|
14
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
15
|
-
var BackHandler_exports = {};
|
|
16
|
-
__export(BackHandler_exports, {
|
|
17
|
-
default: () => BackHandler_default
|
|
18
|
-
});
|
|
19
|
-
module.exports = __toCommonJS(BackHandler_exports);
|
|
20
|
-
function emptyFunction() {
|
|
21
|
-
}
|
|
22
|
-
const BackHandler = {
|
|
23
|
-
exitApp: emptyFunction,
|
|
24
|
-
addEventListener() {
|
|
25
|
-
return {
|
|
26
|
-
remove: emptyFunction
|
|
27
|
-
};
|
|
28
|
-
},
|
|
29
|
-
removeEventListener: emptyFunction
|
|
30
|
-
};
|
|
31
|
-
var BackHandler_default = BackHandler;
|
|
32
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,30 +0,0 @@
|
|
|
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)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
8
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
9
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
10
|
-
for (let key of __getOwnPropNames(from))
|
|
11
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
-
return to;
|
|
13
|
-
};
|
|
14
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
15
|
-
var I18nManager_exports = {};
|
|
16
|
-
__export(I18nManager_exports, {
|
|
17
|
-
default: () => I18nManager_default
|
|
18
|
-
});
|
|
19
|
-
module.exports = __toCommonJS(I18nManager_exports);
|
|
20
|
-
const I18nManager = {
|
|
21
|
-
allowRTL() {
|
|
22
|
-
},
|
|
23
|
-
forceRTL() {
|
|
24
|
-
},
|
|
25
|
-
getConstants() {
|
|
26
|
-
return { isRTL: !1 };
|
|
27
|
-
}
|
|
28
|
-
};
|
|
29
|
-
var I18nManager_default = I18nManager;
|
|
30
|
-
//# sourceMappingURL=index.js.map
|