react-native-web-tv 0.21.2-tv.10
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/APACHE-2.0.txt +201 -0
- package/LICENSE +22 -0
- package/README.md +167 -0
- package/THIRD_PARTY_NOTICES.md +15 -0
- package/dist/cjs/exports/AccessibilityInfo/index.js +100 -0
- package/dist/cjs/exports/ActivityIndicator/index.js +109 -0
- package/dist/cjs/exports/Alert/index.js +18 -0
- package/dist/cjs/exports/Animated/index.js +18 -0
- package/dist/cjs/exports/AppRegistry/AppContainer.js +51 -0
- package/dist/cjs/exports/AppRegistry/index.js +95 -0
- package/dist/cjs/exports/AppRegistry/renderApplication.js +58 -0
- package/dist/cjs/exports/AppState/index.js +63 -0
- package/dist/cjs/exports/Appearance/index.js +54 -0
- package/dist/cjs/exports/BackHandler/index.js +67 -0
- package/dist/cjs/exports/Button/index.js +73 -0
- package/dist/cjs/exports/CheckBox/index.js +113 -0
- package/dist/cjs/exports/Clipboard/index.js +61 -0
- package/dist/cjs/exports/DeviceEventEmitter/index.js +8 -0
- package/dist/cjs/exports/Dimensions/index.js +128 -0
- package/dist/cjs/exports/Easing/index.js +16 -0
- package/dist/cjs/exports/FlatList/index.js +19 -0
- package/dist/cjs/exports/I18nManager/index.js +30 -0
- package/dist/cjs/exports/Image/index.js +368 -0
- package/dist/cjs/exports/Image/types.js +1 -0
- package/dist/cjs/exports/ImageBackground/index.js +61 -0
- package/dist/cjs/exports/InputAccessoryView/index.js +8 -0
- package/dist/cjs/exports/InteractionManager/TaskQueue.js +93 -0
- package/dist/cjs/exports/InteractionManager/index.js +130 -0
- package/dist/cjs/exports/Keyboard/index.js +34 -0
- package/dist/cjs/exports/KeyboardAvoidingView/index.js +53 -0
- package/dist/cjs/exports/LayoutAnimation/index.js +17 -0
- package/dist/cjs/exports/Linking/index.js +109 -0
- package/dist/cjs/exports/LogBox/index.js +21 -0
- package/dist/cjs/exports/Modal/ModalAnimation.js +149 -0
- package/dist/cjs/exports/Modal/ModalContent.js +78 -0
- package/dist/cjs/exports/Modal/ModalFocusTrap.js +140 -0
- package/dist/cjs/exports/Modal/ModalPortal.js +43 -0
- package/dist/cjs/exports/Modal/index.js +112 -0
- package/dist/cjs/exports/NativeEventEmitter/index.js +16 -0
- package/dist/cjs/exports/NativeModules/index.js +21 -0
- package/dist/cjs/exports/PanResponder/Alternative.js +273 -0
- package/dist/cjs/exports/PanResponder/index.js +8 -0
- package/dist/cjs/exports/Picker/PickerItem.js +32 -0
- package/dist/cjs/exports/Picker/index.js +73 -0
- package/dist/cjs/exports/PixelRatio/index.js +55 -0
- package/dist/cjs/exports/Platform/index.js +31 -0
- package/dist/cjs/exports/Pressable/index.js +166 -0
- package/dist/cjs/exports/ProgressBar/index.js +83 -0
- package/dist/cjs/exports/RefreshControl/index.js +36 -0
- package/dist/cjs/exports/SafeAreaView/index.js +48 -0
- package/dist/cjs/exports/ScrollView/ScrollViewBase.js +155 -0
- package/dist/cjs/exports/ScrollView/index.js +640 -0
- package/dist/cjs/exports/ScrollView/types.js +1 -0
- package/dist/cjs/exports/SectionList/index.js +18 -0
- package/dist/cjs/exports/Share/index.js +53 -0
- package/dist/cjs/exports/StatusBar/index.js +24 -0
- package/dist/cjs/exports/StyleSheet/compiler/createReactDOMStyle.js +183 -0
- package/dist/cjs/exports/StyleSheet/compiler/hash.js +52 -0
- package/dist/cjs/exports/StyleSheet/compiler/hyphenateStyleName.js +28 -0
- package/dist/cjs/exports/StyleSheet/compiler/index.js +483 -0
- package/dist/cjs/exports/StyleSheet/compiler/normalizeColor.js +36 -0
- package/dist/cjs/exports/StyleSheet/compiler/normalizeValueWithProperty.js +38 -0
- package/dist/cjs/exports/StyleSheet/compiler/resolveShadowValue.js +38 -0
- package/dist/cjs/exports/StyleSheet/compiler/unitlessNumbers.js +80 -0
- package/dist/cjs/exports/StyleSheet/dom/createCSSStyleSheet.js +42 -0
- package/dist/cjs/exports/StyleSheet/dom/createOrderedCSSStyleSheet.js +168 -0
- package/dist/cjs/exports/StyleSheet/dom/index.js +78 -0
- package/dist/cjs/exports/StyleSheet/index.js +190 -0
- package/dist/cjs/exports/StyleSheet/preprocess.js +222 -0
- package/dist/cjs/exports/StyleSheet/validate.js +89 -0
- package/dist/cjs/exports/Switch/index.js +195 -0
- package/dist/cjs/exports/TV/NativeTVNavigationEventEmitter.js +109 -0
- package/dist/cjs/exports/TV/TVEventControl.js +47 -0
- package/dist/cjs/exports/TV/TVEventHandler.js +41 -0
- package/dist/cjs/exports/TV/TVFocusEventHandler.js +36 -0
- package/dist/cjs/exports/TV/TVFocusGuideView.js +108 -0
- package/dist/cjs/exports/TV/TVTextScrollView.js +115 -0
- package/dist/cjs/exports/TV/tagForComponentOrHandle.js +44 -0
- package/dist/cjs/exports/TV/types.js +16 -0
- package/dist/cjs/exports/TV/useTVEventHandler.js +20 -0
- package/dist/cjs/exports/TV/utils.js +26 -0
- package/dist/cjs/exports/Text/TextAncestorContext.js +18 -0
- package/dist/cjs/exports/Text/index.js +199 -0
- package/dist/cjs/exports/Text/types.js +1 -0
- package/dist/cjs/exports/TextInput/index.js +443 -0
- package/dist/cjs/exports/TextInput/types.js +1 -0
- package/dist/cjs/exports/Touchable/BoundingDimensions.js +35 -0
- package/dist/cjs/exports/Touchable/Position.js +27 -0
- package/dist/cjs/exports/Touchable/ensurePositiveDelayProps.js +20 -0
- package/dist/cjs/exports/Touchable/index.js +840 -0
- package/dist/cjs/exports/TouchableHighlight/index.js +155 -0
- package/dist/cjs/exports/TouchableNativeFeedback/index.js +16 -0
- package/dist/cjs/exports/TouchableOpacity/index.js +123 -0
- package/dist/cjs/exports/TouchableWithoutFeedback/index.js +79 -0
- package/dist/cjs/exports/UIManager/index.js +133 -0
- package/dist/cjs/exports/Vibration/index.js +32 -0
- package/dist/cjs/exports/View/index.js +178 -0
- package/dist/cjs/exports/View/types.js +1 -0
- package/dist/cjs/exports/VirtualizedList/index.js +18 -0
- package/dist/cjs/exports/YellowBox/index.js +25 -0
- package/dist/cjs/exports/createElement/index.js +40 -0
- package/dist/cjs/exports/findNodeHandle/index.js +19 -0
- package/dist/cjs/exports/processColor/index.js +31 -0
- package/dist/cjs/exports/render/index.js +27 -0
- package/dist/cjs/exports/unmountComponentAtNode/index.js +18 -0
- package/dist/cjs/exports/useColorScheme/index.js +34 -0
- package/dist/cjs/exports/useLocaleContext/index.js +17 -0
- package/dist/cjs/exports/useWindowDimensions/index.js +41 -0
- package/dist/cjs/index.js +137 -0
- package/dist/cjs/modules/AccessibilityUtil/index.js +24 -0
- package/dist/cjs/modules/AccessibilityUtil/isDisabled.js +16 -0
- package/dist/cjs/modules/AccessibilityUtil/propsToAccessibilityComponent.js +60 -0
- package/dist/cjs/modules/AccessibilityUtil/propsToAriaRole.js +41 -0
- package/dist/cjs/modules/AssetRegistry/index.js +23 -0
- package/dist/cjs/modules/ImageLoader/index.js +149 -0
- package/dist/cjs/modules/SpatialManager/index.js +464 -0
- package/dist/cjs/modules/SpatialManager/mutationObserver.js +112 -0
- package/dist/cjs/modules/SpatialManager/scrollHandler.js +601 -0
- package/dist/cjs/modules/SpatialManager/utils.js +431 -0
- package/dist/cjs/modules/TextInputState/index.js +65 -0
- package/dist/cjs/modules/UnimplementedView/index.js +36 -0
- package/dist/cjs/modules/addEventListener/index.js +75 -0
- package/dist/cjs/modules/canUseDom/index.js +16 -0
- package/dist/cjs/modules/createDOMProps/index.js +896 -0
- package/dist/cjs/modules/dismissKeyboard/index.js +20 -0
- package/dist/cjs/modules/forwardedProps/index.js +188 -0
- package/dist/cjs/modules/getBoundingClientRect/index.js +23 -0
- package/dist/cjs/modules/isSelectionValid/index.js +22 -0
- package/dist/cjs/modules/isWebColor/index.js +16 -0
- package/dist/cjs/modules/mergeRefs/index.js +37 -0
- package/dist/cjs/modules/modality/index.js +196 -0
- package/dist/cjs/modules/multiplyStyleLengthValue/index.js +29 -0
- package/dist/cjs/modules/normalizeColor/index.js +36 -0
- package/dist/cjs/modules/pick/index.js +25 -0
- package/dist/cjs/modules/prefixStyles/index.js +19 -0
- package/dist/cjs/modules/prefixStyles/static.js +74 -0
- package/dist/cjs/modules/requestIdleCallback/index.js +33 -0
- package/dist/cjs/modules/setValueForStyles/dangerousStyleValue.js +49 -0
- package/dist/cjs/modules/setValueForStyles/index.js +45 -0
- package/dist/cjs/modules/unitlessNumbers/index.js +80 -0
- package/dist/cjs/modules/useElementLayout/index.js +91 -0
- package/dist/cjs/modules/useEvent/index.js +54 -0
- package/dist/cjs/modules/useHover/index.js +158 -0
- package/dist/cjs/modules/useLayoutEffect/index.js +22 -0
- package/dist/cjs/modules/useLocale/index.js +43 -0
- package/dist/cjs/modules/useLocale/isLocaleRTL.js +87 -0
- package/dist/cjs/modules/useMergeRefs/index.js +26 -0
- package/dist/cjs/modules/usePlatformMethods/index.js +34 -0
- package/dist/cjs/modules/usePressEvents/PressResponder.js +496 -0
- package/dist/cjs/modules/usePressEvents/index.js +40 -0
- package/dist/cjs/modules/useResponderEvents/ResponderEventTypes.js +51 -0
- package/dist/cjs/modules/useResponderEvents/ResponderSystem.js +598 -0
- package/dist/cjs/modules/useResponderEvents/ResponderTouchHistoryStore.js +175 -0
- package/dist/cjs/modules/useResponderEvents/createResponderEvent.js +152 -0
- package/dist/cjs/modules/useResponderEvents/index.js +79 -0
- package/dist/cjs/modules/useResponderEvents/utils.js +175 -0
- package/dist/cjs/modules/useStable/index.js +25 -0
- package/dist/cjs/modules/warnOnce/index.js +31 -0
- package/dist/cjs/types/index.js +1 -0
- package/dist/cjs/types/styles.js +1 -0
- package/dist/cjs/vendor/hash/index.js +52 -0
- package/dist/cjs/vendor/react-native/Animated/Animated.js +35 -0
- package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.js +167 -0
- package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.js +582 -0
- package/dist/cjs/vendor/react-native/Animated/AnimatedMock.js +140 -0
- package/dist/cjs/vendor/react-native/Animated/AnimatedPlatformConfig.js +11 -0
- package/dist/cjs/vendor/react-native/Animated/Easing.js +253 -0
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.js +480 -0
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedModule.js +19 -0
- package/dist/cjs/vendor/react-native/Animated/NativeAnimatedTurboModule.js +19 -0
- package/dist/cjs/vendor/react-native/Animated/SpringConfig.js +72 -0
- package/dist/cjs/vendor/react-native/Animated/animations/Animation.js +59 -0
- package/dist/cjs/vendor/react-native/Animated/animations/DecayAnimation.js +74 -0
- package/dist/cjs/vendor/react-native/Animated/animations/SpringAnimation.js +226 -0
- package/dist/cjs/vendor/react-native/Animated/animations/TimingAnimation.js +120 -0
- package/dist/cjs/vendor/react-native/Animated/bezier.js +125 -0
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedFlatList.js +31 -0
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.js +20 -0
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.js +31 -0
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedSectionList.js +31 -0
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.js +20 -0
- package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.js +20 -0
- package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.js +53 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedAddition.js +53 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedColor.js +288 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js +57 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDivision.js +70 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedInterpolation.js +269 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedModulo.js +50 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedMultiplication.js +53 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedNode.js +163 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedProps.js +145 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedStyle.js +128 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedSubtraction.js +53 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTracking.js +76 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTransform.js +113 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValue.js +271 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValueXY.js +191 -0
- package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedWithChildren.js +77 -0
- package/dist/cjs/vendor/react-native/Animated/useAnimatedProps.js +158 -0
- package/dist/cjs/vendor/react-native/Batchinator/index.js +82 -0
- package/dist/cjs/vendor/react-native/EventEmitter/NativeEventEmitter.js +85 -0
- package/dist/cjs/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.js +24 -0
- package/dist/cjs/vendor/react-native/FillRateHelper/index.js +196 -0
- package/dist/cjs/vendor/react-native/FlatList/index.js +453 -0
- package/dist/cjs/vendor/react-native/JSEventLoopWatchdog/index.js +90 -0
- package/dist/cjs/vendor/react-native/LayoutAnimation/index.js +112 -0
- package/dist/cjs/vendor/react-native/PanResponder/index.js +420 -0
- package/dist/cjs/vendor/react-native/PooledClass/index.js +64 -0
- package/dist/cjs/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js +23 -0
- package/dist/cjs/vendor/react-native/SectionList/index.js +151 -0
- package/dist/cjs/vendor/react-native/StaticContainer/index.js +43 -0
- package/dist/cjs/vendor/react-native/StaticRenderer/index.js +26 -0
- package/dist/cjs/vendor/react-native/TouchHistoryMath/index.js +105 -0
- package/dist/cjs/vendor/react-native/TurboModule/RCTExport.js +29 -0
- package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.js +25 -0
- package/dist/cjs/vendor/react-native/Types/CoreEventTypes.js +11 -0
- package/dist/cjs/vendor/react-native/Utilities/Platform.js +8 -0
- package/dist/cjs/vendor/react-native/Utilities/clamp.js +25 -0
- package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.js +64 -0
- package/dist/cjs/vendor/react-native/Utilities/useMergeRefs.js +43 -0
- package/dist/cjs/vendor/react-native/Utilities/useRefEffect.js +42 -0
- package/dist/cjs/vendor/react-native/ViewabilityHelper/index.js +210 -0
- package/dist/cjs/vendor/react-native/VirtualizeUtils/index.js +180 -0
- package/dist/cjs/vendor/react-native/VirtualizedList/CellRenderMask.js +112 -0
- package/dist/cjs/vendor/react-native/VirtualizedList/ChildListCollection.js +75 -0
- package/dist/cjs/vendor/react-native/VirtualizedList/StateSafePureComponent.js +77 -0
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.js +164 -0
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListContext.js +77 -0
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListProps.js +6 -0
- package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListRLVAdapter.js +959 -0
- package/dist/cjs/vendor/react-native/VirtualizedList/index.js +1509 -0
- package/dist/cjs/vendor/react-native/VirtualizedSectionList/index.js +390 -0
- package/dist/cjs/vendor/react-native/deepDiffer/index.js +73 -0
- package/dist/cjs/vendor/react-native/infoLog/index.js +22 -0
- package/dist/cjs/vendor/react-native/vendor/emitter/EventEmitter.js +104 -0
- package/dist/exports/AccessibilityInfo/index.js +95 -0
- package/dist/exports/AccessibilityInfo/index.js.flow +77 -0
- package/dist/exports/ActivityIndicator/index.js +103 -0
- package/dist/exports/ActivityIndicator/index.js.flow +88 -0
- package/dist/exports/Alert/index.js +13 -0
- package/dist/exports/Alert/index.js.flow +12 -0
- package/dist/exports/Animated/index.js +13 -0
- package/dist/exports/Animated/index.js.flow +13 -0
- package/dist/exports/AppRegistry/AppContainer.js +44 -0
- package/dist/exports/AppRegistry/AppContainer.js.flow +43 -0
- package/dist/exports/AppRegistry/index.js +88 -0
- package/dist/exports/AppRegistry/index.js.flow +59 -0
- package/dist/exports/AppRegistry/renderApplication.js +51 -0
- package/dist/exports/AppRegistry/renderApplication.js.flow +28 -0
- package/dist/exports/AppState/index.js +58 -0
- package/dist/exports/AppState/index.js.flow +31 -0
- package/dist/exports/Appearance/index.js +49 -0
- package/dist/exports/Appearance/index.js.flow +50 -0
- package/dist/exports/BackHandler/index.js +63 -0
- package/dist/exports/BackHandler/index.js.flow +77 -0
- package/dist/exports/Button/index.js +65 -0
- package/dist/exports/Button/index.js.flow +67 -0
- package/dist/exports/CheckBox/index.js +107 -0
- package/dist/exports/CheckBox/index.js.flow +108 -0
- package/dist/exports/Clipboard/index.js +56 -0
- package/dist/exports/Clipboard/index.js.flow +18 -0
- package/dist/exports/DeviceEventEmitter/index.js +2 -0
- package/dist/exports/Dimensions/index.js +122 -0
- package/dist/exports/Dimensions/index.js.flow +58 -0
- package/dist/exports/Easing/index.js +11 -0
- package/dist/exports/Easing/index.js.flow +11 -0
- package/dist/exports/FlatList/index.js +14 -0
- package/dist/exports/FlatList/index.js.flow +14 -0
- package/dist/exports/I18nManager/index.js +25 -0
- package/dist/exports/I18nManager/index.js.flow +34 -0
- package/dist/exports/Image/index.js +362 -0
- package/dist/exports/Image/index.js.flow +225 -0
- package/dist/exports/Image/types.js +0 -0
- package/dist/exports/Image/types.js.flow +94 -0
- package/dist/exports/ImageBackground/index.js +55 -0
- package/dist/exports/ImageBackground/index.js.flow +57 -0
- package/dist/exports/InputAccessoryView/index.js +2 -0
- package/dist/exports/InteractionManager/TaskQueue.js +87 -0
- package/dist/exports/InteractionManager/TaskQueue.js.flow +40 -0
- package/dist/exports/InteractionManager/index.js +124 -0
- package/dist/exports/InteractionManager/index.js.flow +99 -0
- package/dist/exports/Keyboard/index.js +29 -0
- package/dist/exports/Keyboard/index.js.flow +31 -0
- package/dist/exports/KeyboardAvoidingView/index.js +47 -0
- package/dist/exports/KeyboardAvoidingView/index.js.flow +30 -0
- package/dist/exports/LayoutAnimation/index.js +12 -0
- package/dist/exports/LayoutAnimation/index.js.flow +12 -0
- package/dist/exports/Linking/index.js +103 -0
- package/dist/exports/Linking/index.js.flow +30 -0
- package/dist/exports/LogBox/index.js +16 -0
- package/dist/exports/LogBox/index.js.flow +16 -0
- package/dist/exports/Modal/ModalAnimation.js +142 -0
- package/dist/exports/Modal/ModalAnimation.js.flow +94 -0
- package/dist/exports/Modal/ModalContent.js +72 -0
- package/dist/exports/Modal/ModalContent.js.flow +64 -0
- package/dist/exports/Modal/ModalFocusTrap.js +135 -0
- package/dist/exports/Modal/ModalFocusTrap.js.flow +39 -0
- package/dist/exports/Modal/ModalPortal.js +36 -0
- package/dist/exports/Modal/ModalPortal.js.flow +18 -0
- package/dist/exports/Modal/index.js +106 -0
- package/dist/exports/Modal/index.js.flow +83 -0
- package/dist/exports/NativeEventEmitter/index.js +11 -0
- package/dist/exports/NativeEventEmitter/index.js.flow +11 -0
- package/dist/exports/NativeModules/index.js +16 -0
- package/dist/exports/NativeModules/index.js.flow +16 -0
- package/dist/exports/PanResponder/Alternative.js +269 -0
- package/dist/exports/PanResponder/Alternative.js.flow +335 -0
- package/dist/exports/PanResponder/index.js +2 -0
- package/dist/exports/PanResponder/index.js.flow +4 -0
- package/dist/exports/Picker/PickerItem.js +26 -0
- package/dist/exports/Picker/PickerItem.js.flow +19 -0
- package/dist/exports/Picker/index.js +67 -0
- package/dist/exports/Picker/index.js.flow +74 -0
- package/dist/exports/PixelRatio/index.js +49 -0
- package/dist/exports/PixelRatio/index.js.flow +21 -0
- package/dist/exports/Platform/index.js +26 -0
- package/dist/exports/Platform/index.js.flow +26 -0
- package/dist/exports/Pressable/index.js +160 -0
- package/dist/exports/Pressable/index.js.flow +85 -0
- package/dist/exports/ProgressBar/index.js +77 -0
- package/dist/exports/ProgressBar/index.js.flow +72 -0
- package/dist/exports/RefreshControl/index.js +31 -0
- package/dist/exports/RefreshControl/index.js.flow +30 -0
- package/dist/exports/SafeAreaView/index.js +42 -0
- package/dist/exports/SafeAreaView/index.js.flow +38 -0
- package/dist/exports/ScrollView/ScrollViewBase.js +149 -0
- package/dist/exports/ScrollView/ScrollViewBase.js.flow +77 -0
- package/dist/exports/ScrollView/index.js +635 -0
- package/dist/exports/ScrollView/index.js.flow +127 -0
- package/dist/exports/ScrollView/types.js +0 -0
- package/dist/exports/ScrollView/types.js.flow +25 -0
- package/dist/exports/SectionList/index.js +13 -0
- package/dist/exports/SectionList/index.js.flow +13 -0
- package/dist/exports/Share/index.js +47 -0
- package/dist/exports/Share/index.js.flow +26 -0
- package/dist/exports/StatusBar/index.js +19 -0
- package/dist/exports/StatusBar/index.js.flow +16 -0
- package/dist/exports/StyleSheet/compiler/createReactDOMStyle.js +177 -0
- package/dist/exports/StyleSheet/compiler/createReactDOMStyle.js.flow +84 -0
- package/dist/exports/StyleSheet/compiler/hash.js +47 -0
- package/dist/exports/StyleSheet/compiler/hash.js.flow +18 -0
- package/dist/exports/StyleSheet/compiler/hyphenateStyleName.js +23 -0
- package/dist/exports/StyleSheet/compiler/hyphenateStyleName.js.flow +15 -0
- package/dist/exports/StyleSheet/compiler/index.js +476 -0
- package/dist/exports/StyleSheet/compiler/index.js.flow +180 -0
- package/dist/exports/StyleSheet/compiler/normalizeColor.js +30 -0
- package/dist/exports/StyleSheet/compiler/normalizeColor.js.flow +13 -0
- package/dist/exports/StyleSheet/compiler/normalizeValueWithProperty.js +32 -0
- package/dist/exports/StyleSheet/compiler/normalizeValueWithProperty.js.flow +24 -0
- package/dist/exports/StyleSheet/compiler/resolveShadowValue.js +32 -0
- package/dist/exports/StyleSheet/compiler/resolveShadowValue.js.flow +17 -0
- package/dist/exports/StyleSheet/compiler/unitlessNumbers.js +75 -0
- package/dist/exports/StyleSheet/compiler/unitlessNumbers.js.flow +73 -0
- package/dist/exports/StyleSheet/dom/createCSSStyleSheet.js +36 -0
- package/dist/exports/StyleSheet/dom/createCSSStyleSheet.js.flow +12 -0
- package/dist/exports/StyleSheet/dom/createOrderedCSSStyleSheet.js +163 -0
- package/dist/exports/StyleSheet/dom/createOrderedCSSStyleSheet.js.flow +52 -0
- package/dist/exports/StyleSheet/dom/index.js +73 -0
- package/dist/exports/StyleSheet/dom/index.js.flow +26 -0
- package/dist/exports/StyleSheet/index.js +185 -0
- package/dist/exports/StyleSheet/index.js.flow +97 -0
- package/dist/exports/StyleSheet/preprocess.js +212 -0
- package/dist/exports/StyleSheet/preprocess.js.flow +73 -0
- package/dist/exports/StyleSheet/validate.js +84 -0
- package/dist/exports/StyleSheet/validate.js.flow +46 -0
- package/dist/exports/Switch/index.js +189 -0
- package/dist/exports/Switch/index.js.flow +187 -0
- package/dist/exports/TV/NativeTVNavigationEventEmitter.js +103 -0
- package/dist/exports/TV/NativeTVNavigationEventEmitter.js.flow +89 -0
- package/dist/exports/TV/TVEventControl.js +44 -0
- package/dist/exports/TV/TVEventControl.js.flow +44 -0
- package/dist/exports/TV/TVEventHandler.js +37 -0
- package/dist/exports/TV/TVEventHandler.js.flow +59 -0
- package/dist/exports/TV/TVFocusEventHandler.js +33 -0
- package/dist/exports/TV/TVFocusEventHandler.js.flow +24 -0
- package/dist/exports/TV/TVFocusGuideView.js +100 -0
- package/dist/exports/TV/TVFocusGuideView.js.flow +122 -0
- package/dist/exports/TV/TVTextScrollView.js +108 -0
- package/dist/exports/TV/TVTextScrollView.js.flow +79 -0
- package/dist/exports/TV/tagForComponentOrHandle.js +39 -0
- package/dist/exports/TV/tagForComponentOrHandle.js.flow +16 -0
- package/dist/exports/TV/types.js +16 -0
- package/dist/exports/TV/types.js.flow +133 -0
- package/dist/exports/TV/useTVEventHandler.js +13 -0
- package/dist/exports/TV/useTVEventHandler.js.flow +10 -0
- package/dist/exports/TV/utils.js +23 -0
- package/dist/exports/TV/utils.js.flow +14 -0
- package/dist/exports/Text/TextAncestorContext.js +14 -0
- package/dist/exports/Text/TextAncestorContext.js.flow +15 -0
- package/dist/exports/Text/index.js +194 -0
- package/dist/exports/Text/index.js.flow +198 -0
- package/dist/exports/Text/types.js +0 -0
- package/dist/exports/Text/types.js.flow +65 -0
- package/dist/exports/TextInput/index.js +437 -0
- package/dist/exports/TextInput/index.js.flow +333 -0
- package/dist/exports/TextInput/types.js +0 -0
- package/dist/exports/TextInput/types.js.flow +65 -0
- package/dist/exports/Touchable/BoundingDimensions.js +29 -0
- package/dist/exports/Touchable/BoundingDimensions.js.flow +26 -0
- package/dist/exports/Touchable/Position.js +21 -0
- package/dist/exports/Touchable/Position.js.flow +18 -0
- package/dist/exports/Touchable/ensurePositiveDelayProps.js +14 -0
- package/dist/exports/Touchable/ensurePositiveDelayProps.js.flow +12 -0
- package/dist/exports/Touchable/index.js +836 -0
- package/dist/exports/Touchable/index.js.flow +849 -0
- package/dist/exports/TouchableHighlight/index.js +150 -0
- package/dist/exports/TouchableHighlight/index.js.flow +68 -0
- package/dist/exports/TouchableNativeFeedback/index.js +11 -0
- package/dist/exports/TouchableNativeFeedback/index.js.flow +11 -0
- package/dist/exports/TouchableOpacity/index.js +118 -0
- package/dist/exports/TouchableOpacity/index.js.flow +51 -0
- package/dist/exports/TouchableWithoutFeedback/index.js +73 -0
- package/dist/exports/TouchableWithoutFeedback/index.js.flow +66 -0
- package/dist/exports/UIManager/index.js +127 -0
- package/dist/exports/UIManager/index.js.flow +92 -0
- package/dist/exports/Vibration/index.js +27 -0
- package/dist/exports/Vibration/index.js.flow +21 -0
- package/dist/exports/View/index.js +172 -0
- package/dist/exports/View/index.js.flow +177 -0
- package/dist/exports/View/types.js +0 -0
- package/dist/exports/View/types.js.flow +226 -0
- package/dist/exports/VirtualizedList/index.js +13 -0
- package/dist/exports/VirtualizedList/index.js.flow +13 -0
- package/dist/exports/YellowBox/index.js +19 -0
- package/dist/exports/YellowBox/index.js.flow +16 -0
- package/dist/exports/createElement/index.js +35 -0
- package/dist/exports/createElement/index.js.flow +17 -0
- package/dist/exports/findNodeHandle/index.js +14 -0
- package/dist/exports/findNodeHandle/index.js.flow +11 -0
- package/dist/exports/processColor/index.js +25 -0
- package/dist/exports/processColor/index.js.flow +13 -0
- package/dist/exports/render/index.js +23 -0
- package/dist/exports/render/index.js.flow +15 -0
- package/dist/exports/unmountComponentAtNode/index.js +13 -0
- package/dist/exports/unmountComponentAtNode/index.js.flow +9 -0
- package/dist/exports/useColorScheme/index.js +28 -0
- package/dist/exports/useColorScheme/index.js.flow +16 -0
- package/dist/exports/useLocaleContext/index.js +13 -0
- package/dist/exports/useLocaleContext/index.js.flow +13 -0
- package/dist/exports/useWindowDimensions/index.js +36 -0
- package/dist/exports/useWindowDimensions/index.js.flow +16 -0
- package/dist/index.js +77 -0
- package/dist/index.js.flow +79 -0
- package/dist/modules/AccessibilityUtil/index.js +18 -0
- package/dist/modules/AccessibilityUtil/index.js.flow +18 -0
- package/dist/modules/AccessibilityUtil/isDisabled.js +11 -0
- package/dist/modules/AccessibilityUtil/isDisabled.js.flow +10 -0
- package/dist/modules/AccessibilityUtil/propsToAccessibilityComponent.js +54 -0
- package/dist/modules/AccessibilityUtil/propsToAccessibilityComponent.js.flow +34 -0
- package/dist/modules/AccessibilityUtil/propsToAriaRole.js +36 -0
- package/dist/modules/AccessibilityUtil/propsToAriaRole.js.flow +28 -0
- package/dist/modules/AssetRegistry/index.js +18 -0
- package/dist/modules/AssetRegistry/index.js.flow +23 -0
- package/dist/modules/ImageLoader/index.js +144 -0
- package/dist/modules/ImageLoader/index.js.flow +84 -0
- package/dist/modules/SpatialManager/index.js +460 -0
- package/dist/modules/SpatialManager/index.js.flow +66 -0
- package/dist/modules/SpatialManager/mutationObserver.js +105 -0
- package/dist/modules/SpatialManager/mutationObserver.js.flow +30 -0
- package/dist/modules/SpatialManager/scrollHandler.js +591 -0
- package/dist/modules/SpatialManager/scrollHandler.js.flow +91 -0
- package/dist/modules/SpatialManager/utils.js +418 -0
- package/dist/modules/SpatialManager/utils.js.flow +149 -0
- package/dist/modules/TextInputState/index.js +60 -0
- package/dist/modules/TextInputState/index.js.flow +60 -0
- package/dist/modules/UnimplementedView/index.js +32 -0
- package/dist/modules/UnimplementedView/index.js.flow +23 -0
- package/dist/modules/addEventListener/index.js +72 -0
- package/dist/modules/addEventListener/index.js.flow +34 -0
- package/dist/modules/canUseDom/index.js +11 -0
- package/dist/modules/canUseDom/index.js.flow +11 -0
- package/dist/modules/createDOMProps/index.js +891 -0
- package/dist/modules/createDOMProps/index.js.flow +36 -0
- package/dist/modules/dismissKeyboard/index.js +14 -0
- package/dist/modules/dismissKeyboard/index.js.flow +12 -0
- package/dist/modules/forwardedProps/index.js +184 -0
- package/dist/modules/forwardedProps/index.js.flow +184 -0
- package/dist/modules/getBoundingClientRect/index.js +18 -0
- package/dist/modules/getBoundingClientRect/index.js.flow +10 -0
- package/dist/modules/isSelectionValid/index.js +17 -0
- package/dist/modules/isSelectionValid/index.js.flow +9 -0
- package/dist/modules/isWebColor/index.js +11 -0
- package/dist/modules/isWebColor/index.js.flow +10 -0
- package/dist/modules/mergeRefs/index.js +31 -0
- package/dist/modules/mergeRefs/index.js.flow +11 -0
- package/dist/modules/modality/index.js +188 -0
- package/dist/modules/modality/index.js.flow +79 -0
- package/dist/modules/multiplyStyleLengthValue/index.js +24 -0
- package/dist/modules/multiplyStyleLengthValue/index.js.flow +14 -0
- package/dist/modules/normalizeColor/index.js +30 -0
- package/dist/modules/normalizeColor/index.js.flow +13 -0
- package/dist/modules/pick/index.js +20 -0
- package/dist/modules/pick/index.js.flow +11 -0
- package/dist/modules/prefixStyles/index.js +13 -0
- package/dist/modules/prefixStyles/index.js.flow +14 -0
- package/dist/modules/prefixStyles/static.js +68 -0
- package/dist/modules/requestIdleCallback/index.js +28 -0
- package/dist/modules/requestIdleCallback/index.js.flow +28 -0
- package/dist/modules/setValueForStyles/dangerousStyleValue.js +44 -0
- package/dist/modules/setValueForStyles/dangerousStyleValue.js.flow +25 -0
- package/dist/modules/setValueForStyles/index.js +40 -0
- package/dist/modules/setValueForStyles/index.js.flow +23 -0
- package/dist/modules/unitlessNumbers/index.js +75 -0
- package/dist/modules/unitlessNumbers/index.js.flow +73 -0
- package/dist/modules/useElementLayout/index.js +85 -0
- package/dist/modules/useElementLayout/index.js.flow +19 -0
- package/dist/modules/useEvent/index.js +48 -0
- package/dist/modules/useEvent/index.js.flow +29 -0
- package/dist/modules/useHover/index.js +153 -0
- package/dist/modules/useHover/index.js.flow +46 -0
- package/dist/modules/useLayoutEffect/index.js +16 -0
- package/dist/modules/useLayoutEffect/index.js.flow +16 -0
- package/dist/modules/useLocale/index.js +36 -0
- package/dist/modules/useLocale/index.js.flow +32 -0
- package/dist/modules/useLocale/isLocaleRTL.js +83 -0
- package/dist/modules/useLocale/isLocaleRTL.js.flow +58 -0
- package/dist/modules/useMergeRefs/index.js +19 -0
- package/dist/modules/useMergeRefs/index.js.flow +12 -0
- package/dist/modules/usePlatformMethods/index.js +29 -0
- package/dist/modules/usePlatformMethods/index.js.flow +22 -0
- package/dist/modules/usePressEvents/PressResponder.js +492 -0
- package/dist/modules/usePressEvents/PressResponder.js.flow +216 -0
- package/dist/modules/usePressEvents/index.js +36 -0
- package/dist/modules/usePressEvents/index.js.flow +16 -0
- package/dist/modules/useResponderEvents/ResponderEventTypes.js +41 -0
- package/dist/modules/useResponderEvents/ResponderEventTypes.js.flow +61 -0
- package/dist/modules/useResponderEvents/ResponderSystem.js +590 -0
- package/dist/modules/useResponderEvents/ResponderSystem.js.flow +269 -0
- package/dist/modules/useResponderEvents/ResponderTouchHistoryStore.js +170 -0
- package/dist/modules/useResponderEvents/ResponderTouchHistoryStore.js.flow +56 -0
- package/dist/modules/useResponderEvents/createResponderEvent.js +146 -0
- package/dist/modules/useResponderEvents/createResponderEvent.js.flow +51 -0
- package/dist/modules/useResponderEvents/index.js +73 -0
- package/dist/modules/useResponderEvents/index.js.flow +26 -0
- package/dist/modules/useResponderEvents/utils.js +165 -0
- package/dist/modules/useResponderEvents/utils.js.flow +46 -0
- package/dist/modules/useStable/index.js +19 -0
- package/dist/modules/useStable/index.js.flow +12 -0
- package/dist/modules/warnOnce/index.js +27 -0
- package/dist/modules/warnOnce/index.js.flow +22 -0
- package/dist/types/index.js +0 -0
- package/dist/types/index.js.flow +46 -0
- package/dist/types/styles.js +0 -0
- package/dist/types/styles.js.flow +279 -0
- package/dist/vendor/hash/index.js +47 -0
- package/dist/vendor/hash/index.js.flow +18 -0
- package/dist/vendor/react-native/Animated/Animated.js +29 -0
- package/dist/vendor/react-native/Animated/Animated.js.flow +35 -0
- package/dist/vendor/react-native/Animated/AnimatedEvent.js +162 -0
- package/dist/vendor/react-native/Animated/AnimatedEvent.js.flow +46 -0
- package/dist/vendor/react-native/Animated/AnimatedImplementation.js +579 -0
- package/dist/vendor/react-native/Animated/AnimatedImplementation.js.flow +605 -0
- package/dist/vendor/react-native/Animated/AnimatedMock.js +137 -0
- package/dist/vendor/react-native/Animated/AnimatedMock.js.flow +139 -0
- package/dist/vendor/react-native/Animated/AnimatedPlatformConfig.js +11 -0
- package/dist/vendor/react-native/Animated/AnimatedPlatformConfig.js.flow +13 -0
- package/dist/vendor/react-native/Animated/Easing.js +249 -0
- package/dist/vendor/react-native/Animated/Easing.js.flow +80 -0
- package/dist/vendor/react-native/Animated/NativeAnimatedHelper.js +460 -0
- package/dist/vendor/react-native/Animated/NativeAnimatedHelper.js.flow +396 -0
- package/dist/vendor/react-native/Animated/NativeAnimatedModule.js +16 -0
- package/dist/vendor/react-native/Animated/NativeAnimatedModule.js.flow +56 -0
- package/dist/vendor/react-native/Animated/NativeAnimatedTurboModule.js +16 -0
- package/dist/vendor/react-native/Animated/NativeAnimatedTurboModule.js.flow +53 -0
- package/dist/vendor/react-native/Animated/SpringConfig.js +69 -0
- package/dist/vendor/react-native/Animated/SpringConfig.js.flow +25 -0
- package/dist/vendor/react-native/Animated/animations/Animation.js +55 -0
- package/dist/vendor/react-native/Animated/animations/Animation.js.flow +45 -0
- package/dist/vendor/react-native/Animated/animations/DecayAnimation.js +70 -0
- package/dist/vendor/react-native/Animated/animations/DecayAnimation.js.flow +51 -0
- package/dist/vendor/react-native/Animated/animations/SpringAnimation.js +222 -0
- package/dist/vendor/react-native/Animated/animations/SpringAnimation.js.flow +110 -0
- package/dist/vendor/react-native/Animated/animations/TimingAnimation.js +116 -0
- package/dist/vendor/react-native/Animated/animations/TimingAnimation.js.flow +61 -0
- package/dist/vendor/react-native/Animated/bezier.js +122 -0
- package/dist/vendor/react-native/Animated/bezier.js.flow +35 -0
- package/dist/vendor/react-native/Animated/components/AnimatedFlatList.js +24 -0
- package/dist/vendor/react-native/Animated/components/AnimatedFlatList.js.flow +20 -0
- package/dist/vendor/react-native/Animated/components/AnimatedImage.js +14 -0
- package/dist/vendor/react-native/Animated/components/AnimatedImage.js.flow +15 -0
- package/dist/vendor/react-native/Animated/components/AnimatedScrollView.js +24 -0
- package/dist/vendor/react-native/Animated/components/AnimatedScrollView.js.flow +20 -0
- package/dist/vendor/react-native/Animated/components/AnimatedSectionList.js +24 -0
- package/dist/vendor/react-native/Animated/components/AnimatedSectionList.js.flow +20 -0
- package/dist/vendor/react-native/Animated/components/AnimatedText.js +14 -0
- package/dist/vendor/react-native/Animated/components/AnimatedText.js.flow +15 -0
- package/dist/vendor/react-native/Animated/components/AnimatedView.js +14 -0
- package/dist/vendor/react-native/Animated/components/AnimatedView.js.flow +15 -0
- package/dist/vendor/react-native/Animated/createAnimatedComponent.js +47 -0
- package/dist/vendor/react-native/Animated/createAnimatedComponent.js.flow +27 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedAddition.js +49 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedAddition.js.flow +30 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedColor.js +283 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedColor.js.flow +83 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js +53 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js.flow +32 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedDivision.js +66 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedDivision.js.flow +31 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedInterpolation.js +265 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedInterpolation.js.flow +69 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedModulo.js +46 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedModulo.js.flow +29 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedMultiplication.js +49 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedMultiplication.js.flow +30 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedNode.js +159 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedNode.js.flow +58 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedProps.js +141 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedProps.js.flow +35 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedStyle.js +124 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedStyle.js.flow +33 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedSubtraction.js +49 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedSubtraction.js.flow +30 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedTracking.js +72 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedTracking.js.flow +32 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedTransform.js +109 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedTransform.js.flow +26 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedValue.js +267 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedValue.js.flow +86 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedValueXY.js +187 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedValueXY.js.flow +84 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedWithChildren.js +73 -0
- package/dist/vendor/react-native/Animated/nodes/AnimatedWithChildren.js.flow +25 -0
- package/dist/vendor/react-native/Animated/useAnimatedProps.js +154 -0
- package/dist/vendor/react-native/Animated/useAnimatedProps.js.flow +37 -0
- package/dist/vendor/react-native/Batchinator/index.js +79 -0
- package/dist/vendor/react-native/Batchinator/index.js.flow +51 -0
- package/dist/vendor/react-native/EventEmitter/NativeEventEmitter.js +80 -0
- package/dist/vendor/react-native/EventEmitter/NativeEventEmitter.js.flow +42 -0
- package/dist/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.js +21 -0
- package/dist/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.js.flow +22 -0
- package/dist/vendor/react-native/FillRateHelper/index.js +192 -0
- package/dist/vendor/react-native/FillRateHelper/index.js.flow +80 -0
- package/dist/vendor/react-native/FlatList/index.js +447 -0
- package/dist/vendor/react-native/FlatList/index.js.flow +345 -0
- package/dist/vendor/react-native/JSEventLoopWatchdog/index.js +86 -0
- package/dist/vendor/react-native/JSEventLoopWatchdog/index.js.flow +75 -0
- package/dist/vendor/react-native/LayoutAnimation/index.js +108 -0
- package/dist/vendor/react-native/LayoutAnimation/index.js.flow +105 -0
- package/dist/vendor/react-native/PanResponder/index.js +416 -0
- package/dist/vendor/react-native/PanResponder/index.js.flow +496 -0
- package/dist/vendor/react-native/PooledClass/index.js +58 -0
- package/dist/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js +20 -0
- package/dist/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js.flow +49 -0
- package/dist/vendor/react-native/SectionList/index.js +145 -0
- package/dist/vendor/react-native/SectionList/index.js.flow +165 -0
- package/dist/vendor/react-native/StaticContainer/index.js +40 -0
- package/dist/vendor/react-native/StaticContainer/index.js.flow +45 -0
- package/dist/vendor/react-native/StaticRenderer/index.js +22 -0
- package/dist/vendor/react-native/StaticRenderer/index.js.flow +29 -0
- package/dist/vendor/react-native/TouchHistoryMath/index.js +100 -0
- package/dist/vendor/react-native/TurboModule/RCTExport.js +29 -0
- package/dist/vendor/react-native/TurboModule/RCTExport.js.flow +35 -0
- package/dist/vendor/react-native/TurboModule/TurboModuleRegistry.js +21 -0
- package/dist/vendor/react-native/TurboModule/TurboModuleRegistry.js.flow +16 -0
- package/dist/vendor/react-native/Types/CoreEventTypes.js +11 -0
- package/dist/vendor/react-native/Types/CoreEventTypes.js.flow +264 -0
- package/dist/vendor/react-native/Utilities/Platform.js +2 -0
- package/dist/vendor/react-native/Utilities/clamp.js +22 -0
- package/dist/vendor/react-native/Utilities/clamp.js.flow +14 -0
- package/dist/vendor/react-native/Utilities/setAndForwardRef.js +61 -0
- package/dist/vendor/react-native/Utilities/setAndForwardRef.js.flow +50 -0
- package/dist/vendor/react-native/Utilities/useMergeRefs.js +38 -0
- package/dist/vendor/react-native/Utilities/useMergeRefs.js.flow +28 -0
- package/dist/vendor/react-native/Utilities/useRefEffect.js +37 -0
- package/dist/vendor/react-native/Utilities/useRefEffect.js.flow +28 -0
- package/dist/vendor/react-native/ViewabilityHelper/index.js +206 -0
- package/dist/vendor/react-native/ViewabilityHelper/index.js.flow +111 -0
- package/dist/vendor/react-native/VirtualizeUtils/index.js +175 -0
- package/dist/vendor/react-native/VirtualizeUtils/index.js.flow +64 -0
- package/dist/vendor/react-native/VirtualizedList/CellRenderMask.js +106 -0
- package/dist/vendor/react-native/VirtualizedList/CellRenderMask.js.flow +29 -0
- package/dist/vendor/react-native/VirtualizedList/ChildListCollection.js +68 -0
- package/dist/vendor/react-native/VirtualizedList/ChildListCollection.js.flow +21 -0
- package/dist/vendor/react-native/VirtualizedList/StateSafePureComponent.js +70 -0
- package/dist/vendor/react-native/VirtualizedList/StateSafePureComponent.js.flow +28 -0
- package/dist/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.js +156 -0
- package/dist/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.js.flow +68 -0
- package/dist/vendor/react-native/VirtualizedList/VirtualizedListContext.js +68 -0
- package/dist/vendor/react-native/VirtualizedList/VirtualizedListContext.js.flow +61 -0
- package/dist/vendor/react-native/VirtualizedList/VirtualizedListProps.js +16 -0
- package/dist/vendor/react-native/VirtualizedList/VirtualizedListProps.js.flow +308 -0
- package/dist/vendor/react-native/VirtualizedList/VirtualizedListRLVAdapter.js +954 -0
- package/dist/vendor/react-native/VirtualizedList/VirtualizedListRLVAdapter.js.flow +172 -0
- package/dist/vendor/react-native/VirtualizedList/index.js +1501 -0
- package/dist/vendor/react-native/VirtualizedList/index.js.flow +307 -0
- package/dist/vendor/react-native/VirtualizedSectionList/index.js +384 -0
- package/dist/vendor/react-native/VirtualizedSectionList/index.js.flow +191 -0
- package/dist/vendor/react-native/deepDiffer/index.js +70 -0
- package/dist/vendor/react-native/deepDiffer/index.js.flow +67 -0
- package/dist/vendor/react-native/infoLog/index.js +19 -0
- package/dist/vendor/react-native/infoLog/index.js.flow +17 -0
- package/dist/vendor/react-native/vendor/emitter/EventEmitter.js +98 -0
- package/dist/vendor/react-native/vendor/emitter/EventEmitter.js.flow +54 -0
- package/package.json +60 -0
- package/src/exports/AccessibilityInfo/index.js +119 -0
- package/src/exports/ActivityIndicator/index.js +119 -0
- package/src/exports/Alert/index.js +14 -0
- package/src/exports/Animated/index.js +13 -0
- package/src/exports/AppRegistry/AppContainer.js +55 -0
- package/src/exports/AppRegistry/index.js +153 -0
- package/src/exports/AppRegistry/renderApplication.js +72 -0
- package/src/exports/AppState/index.js +81 -0
- package/src/exports/Appearance/index.js +65 -0
- package/src/exports/BackHandler/index.js +108 -0
- package/src/exports/Button/index.js +90 -0
- package/src/exports/CheckBox/index.js +143 -0
- package/src/exports/Clipboard/index.js +63 -0
- package/src/exports/DeviceEventEmitter/index.js +2 -0
- package/src/exports/Dimensions/index.js +160 -0
- package/src/exports/Easing/index.js +11 -0
- package/src/exports/FlatList/index.js +14 -0
- package/src/exports/I18nManager/index.js +35 -0
- package/src/exports/Image/index.js +443 -0
- package/src/exports/Image/types.js +103 -0
- package/src/exports/ImageBackground/index.js +73 -0
- package/src/exports/InputAccessoryView/index.js +2 -0
- package/src/exports/InteractionManager/TaskQueue.js +115 -0
- package/src/exports/InteractionManager/index.js +142 -0
- package/src/exports/Keyboard/index.js +28 -0
- package/src/exports/KeyboardAvoidingView/index.js +59 -0
- package/src/exports/LayoutAnimation/index.js +12 -0
- package/src/exports/Linking/index.js +124 -0
- package/src/exports/LogBox/index.js +17 -0
- package/src/exports/Modal/ModalAnimation.js +164 -0
- package/src/exports/Modal/ModalContent.js +87 -0
- package/src/exports/Modal/ModalFocusTrap.js +173 -0
- package/src/exports/Modal/ModalPortal.js +48 -0
- package/src/exports/Modal/index.js +151 -0
- package/src/exports/NativeEventEmitter/index.js +11 -0
- package/src/exports/NativeModules/index.js +17 -0
- package/src/exports/PanResponder/Alternative.js +408 -0
- package/src/exports/PanResponder/index.js +4 -0
- package/src/exports/Picker/PickerItem.js +26 -0
- package/src/exports/Picker/index.js +95 -0
- package/src/exports/PixelRatio/index.js +49 -0
- package/src/exports/Platform/index.js +26 -0
- package/src/exports/Pressable/index.js +254 -0
- package/src/exports/ProgressBar/index.js +92 -0
- package/src/exports/RefreshControl/index.js +52 -0
- package/src/exports/SafeAreaView/index.js +49 -0
- package/src/exports/ScrollView/ScrollViewBase.js +187 -0
- package/src/exports/ScrollView/index.js +769 -0
- package/src/exports/ScrollView/types.js +26 -0
- package/src/exports/SectionList/index.js +13 -0
- package/src/exports/Share/index.js +65 -0
- package/src/exports/StatusBar/index.js +22 -0
- package/src/exports/StyleSheet/compiler/createReactDOMStyle.js +214 -0
- package/src/exports/StyleSheet/compiler/hash.js +67 -0
- package/src/exports/StyleSheet/compiler/hyphenateStyleName.js +27 -0
- package/src/exports/StyleSheet/compiler/index.js +518 -0
- package/src/exports/StyleSheet/compiler/normalizeColor.js +34 -0
- package/src/exports/StyleSheet/compiler/normalizeValueWithProperty.js +40 -0
- package/src/exports/StyleSheet/compiler/resolveShadowValue.js +32 -0
- package/src/exports/StyleSheet/compiler/unitlessNumbers.js +76 -0
- package/src/exports/StyleSheet/dom/createCSSStyleSheet.js +40 -0
- package/src/exports/StyleSheet/dom/createOrderedCSSStyleSheet.js +184 -0
- package/src/exports/StyleSheet/dom/index.js +90 -0
- package/src/exports/StyleSheet/index.js +197 -0
- package/src/exports/StyleSheet/preprocess.js +255 -0
- package/src/exports/StyleSheet/validate.js +93 -0
- package/src/exports/Switch/index.js +236 -0
- package/src/exports/TV/NativeTVNavigationEventEmitter.js +141 -0
- package/src/exports/TV/TVEventControl.js +56 -0
- package/src/exports/TV/TVEventHandler.js +58 -0
- package/src/exports/TV/TVFocusEventHandler.js +43 -0
- package/src/exports/TV/TVFocusGuideView.js +163 -0
- package/src/exports/TV/TVParallaxProperties.d.ts +42 -0
- package/src/exports/TV/TVTextScrollView.js +160 -0
- package/src/exports/TV/tagForComponentOrHandle.js +46 -0
- package/src/exports/TV/types.js +153 -0
- package/src/exports/TV/useTVEventHandler.js +24 -0
- package/src/exports/TV/utils.js +24 -0
- package/src/exports/Text/TextAncestorContext.js +17 -0
- package/src/exports/Text/index.js +241 -0
- package/src/exports/Text/types.js +121 -0
- package/src/exports/TextInput/index.js +503 -0
- package/src/exports/TextInput/types.js +97 -0
- package/src/exports/Touchable/BoundingDimensions.js +37 -0
- package/src/exports/Touchable/Position.js +26 -0
- package/src/exports/Touchable/ensurePositiveDelayProps.js +23 -0
- package/src/exports/Touchable/index.js +1026 -0
- package/src/exports/TouchableHighlight/index.js +219 -0
- package/src/exports/TouchableNativeFeedback/index.js +11 -0
- package/src/exports/TouchableOpacity/index.js +173 -0
- package/src/exports/TouchableWithoutFeedback/index.js +136 -0
- package/src/exports/UIManager/index.js +132 -0
- package/src/exports/Vibration/index.js +28 -0
- package/src/exports/View/index.js +219 -0
- package/src/exports/View/types.js +251 -0
- package/src/exports/VirtualizedList/index.js +13 -0
- package/src/exports/YellowBox/index.js +22 -0
- package/src/exports/createElement/index.js +43 -0
- package/src/exports/findNodeHandle/index.js +18 -0
- package/src/exports/processColor/index.js +29 -0
- package/src/exports/render/index.js +29 -0
- package/src/exports/unmountComponentAtNode/index.js +13 -0
- package/src/exports/useColorScheme/index.js +31 -0
- package/src/exports/useLocaleContext/index.js +13 -0
- package/src/exports/useWindowDimensions/index.js +36 -0
- package/src/index.js +79 -0
- package/src/modules/AccessibilityUtil/index.js +20 -0
- package/src/modules/AccessibilityUtil/isDisabled.js +15 -0
- package/src/modules/AccessibilityUtil/propsToAccessibilityComponent.js +58 -0
- package/src/modules/AccessibilityUtil/propsToAriaRole.js +42 -0
- package/src/modules/AssetRegistry/index.js +32 -0
- package/src/modules/ImageLoader/index.js +167 -0
- package/src/modules/SpatialManager/README.md +122 -0
- package/src/modules/SpatialManager/index.js +582 -0
- package/src/modules/SpatialManager/mutationObserver.js +119 -0
- package/src/modules/SpatialManager/scrollHandler.js +966 -0
- package/src/modules/SpatialManager/utils.js +551 -0
- package/src/modules/TextInputState/index.js +64 -0
- package/src/modules/UnimplementedView/index.js +31 -0
- package/src/modules/addEventListener/index.js +89 -0
- package/src/modules/canUseDom/index.js +16 -0
- package/src/modules/createDOMProps/index.js +979 -0
- package/src/modules/dismissKeyboard/index.js +16 -0
- package/src/modules/forwardedProps/index.js +189 -0
- package/src/modules/getBoundingClientRect/index.js +19 -0
- package/src/modules/isSelectionValid/index.js +19 -0
- package/src/modules/isWebColor/index.js +16 -0
- package/src/modules/mergeRefs/index.js +35 -0
- package/src/modules/modality/index.js +215 -0
- package/src/modules/multiplyStyleLengthValue/index.js +28 -0
- package/src/modules/normalizeColor/index.js +34 -0
- package/src/modules/pick/index.js +20 -0
- package/src/modules/prefixStyles/index.js +17 -0
- package/src/modules/prefixStyles/static.js +69 -0
- package/src/modules/requestIdleCallback/index.js +38 -0
- package/src/modules/setValueForStyles/dangerousStyleValue.js +52 -0
- package/src/modules/setValueForStyles/index.js +45 -0
- package/src/modules/unitlessNumbers/index.js +76 -0
- package/src/modules/useElementLayout/index.js +95 -0
- package/src/modules/useEvent/index.js +70 -0
- package/src/modules/useHover/index.js +197 -0
- package/src/modules/useLayoutEffect/index.js +20 -0
- package/src/modules/useLocale/index.js +60 -0
- package/src/modules/useLocale/isLocaleRTL.js +81 -0
- package/src/modules/useMergeRefs/index.js +21 -0
- package/src/modules/usePlatformMethods/index.js +39 -0
- package/src/modules/usePressEvents/PressResponder.js +625 -0
- package/src/modules/usePressEvents/index.js +44 -0
- package/src/modules/useResponderEvents/README.md +209 -0
- package/src/modules/useResponderEvents/ResponderEventTypes.js +83 -0
- package/src/modules/useResponderEvents/ResponderSystem.js +688 -0
- package/src/modules/useResponderEvents/ResponderTouchHistoryStore.js +219 -0
- package/src/modules/useResponderEvents/createResponderEvent.js +206 -0
- package/src/modules/useResponderEvents/index.js +91 -0
- package/src/modules/useResponderEvents/utils.js +179 -0
- package/src/modules/useStable/index.js +24 -0
- package/src/modules/warnOnce/index.js +29 -0
- package/src/types/index.js +76 -0
- package/src/types/styles.js +346 -0
- package/src/vendor/hash/index.js +60 -0
- package/src/vendor/react-native/Animated/Animated.js +41 -0
- package/src/vendor/react-native/Animated/AnimatedEvent.js +232 -0
- package/src/vendor/react-native/Animated/AnimatedImplementation.js +757 -0
- package/src/vendor/react-native/Animated/AnimatedMock.js +197 -0
- package/src/vendor/react-native/Animated/AnimatedPlatformConfig.js +13 -0
- package/src/vendor/react-native/Animated/Easing.js +253 -0
- package/src/vendor/react-native/Animated/NativeAnimatedHelper.js +603 -0
- package/src/vendor/react-native/Animated/NativeAnimatedModule.js +72 -0
- package/src/vendor/react-native/Animated/NativeAnimatedTurboModule.js +70 -0
- package/src/vendor/react-native/Animated/SpringConfig.js +103 -0
- package/src/vendor/react-native/Animated/animations/Animation.js +89 -0
- package/src/vendor/react-native/Animated/animations/DecayAnimation.js +120 -0
- package/src/vendor/react-native/Animated/animations/SpringAnimation.js +376 -0
- package/src/vendor/react-native/Animated/animations/TimingAnimation.js +177 -0
- package/src/vendor/react-native/Animated/bezier.js +153 -0
- package/src/vendor/react-native/Animated/components/AnimatedFlatList.js +30 -0
- package/src/vendor/react-native/Animated/components/AnimatedImage.js +23 -0
- package/src/vendor/react-native/Animated/components/AnimatedScrollView.js +30 -0
- package/src/vendor/react-native/Animated/components/AnimatedSectionList.js +30 -0
- package/src/vendor/react-native/Animated/components/AnimatedText.js +23 -0
- package/src/vendor/react-native/Animated/components/AnimatedView.js +21 -0
- package/src/vendor/react-native/Animated/createAnimatedComponent.js +65 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedAddition.js +67 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedColor.js +359 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js +75 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedDivision.js +82 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedInterpolation.js +375 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedModulo.js +66 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedMultiplication.js +66 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedNode.js +197 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedProps.js +171 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedStyle.js +143 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedSubtraction.js +66 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedTracking.js +102 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedTransform.js +121 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedValue.js +306 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedValueXY.js +226 -0
- package/src/vendor/react-native/Animated/nodes/AnimatedWithChildren.js +90 -0
- package/src/vendor/react-native/Animated/useAnimatedProps.js +188 -0
- package/src/vendor/react-native/Batchinator/index.js +76 -0
- package/src/vendor/react-native/EventEmitter/NativeEventEmitter.js +116 -0
- package/src/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.js +22 -0
- package/src/vendor/react-native/FillRateHelper/index.js +253 -0
- package/src/vendor/react-native/FlatList/index.js +710 -0
- package/src/vendor/react-native/JSEventLoopWatchdog/index.js +87 -0
- package/src/vendor/react-native/LayoutAnimation/index.js +142 -0
- package/src/vendor/react-native/PanResponder/index.js +613 -0
- package/src/vendor/react-native/PooledClass/index.js +63 -0
- package/src/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js +51 -0
- package/src/vendor/react-native/SHA +2 -0
- package/src/vendor/react-native/SectionList/index.js +254 -0
- package/src/vendor/react-native/StaticContainer/index.js +54 -0
- package/src/vendor/react-native/StaticRenderer/index.js +37 -0
- package/src/vendor/react-native/TouchHistoryMath/index.js +153 -0
- package/src/vendor/react-native/TurboModule/RCTExport.js +35 -0
- package/src/vendor/react-native/TurboModule/TurboModuleRegistry.js +28 -0
- package/src/vendor/react-native/Types/CoreEventTypes.js +291 -0
- package/src/vendor/react-native/Utilities/Platform.js +2 -0
- package/src/vendor/react-native/Utilities/clamp.js +23 -0
- package/src/vendor/react-native/Utilities/setAndForwardRef.js +71 -0
- package/src/vendor/react-native/Utilities/useMergeRefs.js +44 -0
- package/src/vendor/react-native/Utilities/useRefEffect.js +45 -0
- package/src/vendor/react-native/ViewabilityHelper/index.js +360 -0
- package/src/vendor/react-native/VirtualizeUtils/index.js +258 -0
- package/src/vendor/react-native/VirtualizedList/CellRenderMask.js +155 -0
- package/src/vendor/react-native/VirtualizedList/ChildListCollection.js +72 -0
- package/src/vendor/react-native/VirtualizedList/RLV_ADAPTER_STATUS.md +257 -0
- package/src/vendor/react-native/VirtualizedList/StateSafePureComponent.js +85 -0
- package/src/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.js +247 -0
- package/src/vendor/react-native/VirtualizedList/VirtualizedListContext.js +118 -0
- package/src/vendor/react-native/VirtualizedList/VirtualizedListProps.js +318 -0
- package/src/vendor/react-native/VirtualizedList/VirtualizedListRLVAdapter.js +1120 -0
- package/src/vendor/react-native/VirtualizedList/index.js +2099 -0
- package/src/vendor/react-native/VirtualizedSectionList/index.js +616 -0
- package/src/vendor/react-native/deepDiffer/index.js +72 -0
- package/src/vendor/react-native/infoLog/index.js +20 -0
- package/src/vendor/react-native/vendor/emitter/EventEmitter.js +146 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Nicolas Gallagher.
|
|
3
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import invariant from 'fbjs/lib/invariant';
|
|
12
|
+
import canUseDOM from '../../modules/canUseDom';
|
|
13
|
+
var initialURL = canUseDOM ? window.location.href : '';
|
|
14
|
+
class Linking {
|
|
15
|
+
constructor() {
|
|
16
|
+
/**
|
|
17
|
+
* An object mapping of event name
|
|
18
|
+
* and all the callbacks subscribing to it
|
|
19
|
+
*/
|
|
20
|
+
this._eventCallbacks = {};
|
|
21
|
+
}
|
|
22
|
+
_dispatchEvent(event) {
|
|
23
|
+
for (var _len = arguments.length, data = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
24
|
+
data[_key - 1] = arguments[_key];
|
|
25
|
+
}
|
|
26
|
+
var listeners = this._eventCallbacks[event];
|
|
27
|
+
if (listeners != null && Array.isArray(listeners)) {
|
|
28
|
+
listeners.map(listener => {
|
|
29
|
+
listener(...data);
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Adds a event listener for the specified event. The callback will be called when the
|
|
36
|
+
* said event is dispatched.
|
|
37
|
+
*/
|
|
38
|
+
addEventListener(eventType, callback) {
|
|
39
|
+
var _this = this;
|
|
40
|
+
if (!_this._eventCallbacks[eventType]) {
|
|
41
|
+
_this._eventCallbacks[eventType] = [callback];
|
|
42
|
+
}
|
|
43
|
+
_this._eventCallbacks[eventType].push(callback);
|
|
44
|
+
return {
|
|
45
|
+
remove() {
|
|
46
|
+
var callbacks = _this._eventCallbacks[eventType];
|
|
47
|
+
var filteredCallbacks = callbacks.filter(c => c.toString() !== callback.toString());
|
|
48
|
+
_this._eventCallbacks[eventType] = filteredCallbacks;
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Removes a previously added event listener for the specified event. The callback must
|
|
55
|
+
* be the same object as the one passed to `addEventListener`.
|
|
56
|
+
*/
|
|
57
|
+
removeEventListener(eventType, callback) {
|
|
58
|
+
console.error("Linking.removeEventListener('" + eventType + "', ...): Method has been " + 'deprecated. Please instead use `remove()` on the subscription ' + 'returned by `Linking.addEventListener`.');
|
|
59
|
+
var callbacks = this._eventCallbacks[eventType];
|
|
60
|
+
var filteredCallbacks = callbacks.filter(c => c.toString() !== callback.toString());
|
|
61
|
+
this._eventCallbacks[eventType] = filteredCallbacks;
|
|
62
|
+
}
|
|
63
|
+
canOpenURL() {
|
|
64
|
+
return Promise.resolve(true);
|
|
65
|
+
}
|
|
66
|
+
getInitialURL() {
|
|
67
|
+
return Promise.resolve(initialURL);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Try to open the given url in a secure fashion. The method returns a Promise object.
|
|
72
|
+
* If a target is passed (including undefined) that target will be used, otherwise '_blank'.
|
|
73
|
+
* If the url opens, the promise is resolved. If not, the promise is rejected.
|
|
74
|
+
* Dispatches the `onOpen` event if `url` is opened successfully.
|
|
75
|
+
*/
|
|
76
|
+
openURL(url, target) {
|
|
77
|
+
if (arguments.length === 1) {
|
|
78
|
+
target = '_blank';
|
|
79
|
+
}
|
|
80
|
+
try {
|
|
81
|
+
open(url, target);
|
|
82
|
+
this._dispatchEvent('onOpen', url);
|
|
83
|
+
return Promise.resolve();
|
|
84
|
+
} catch (e) {
|
|
85
|
+
return Promise.reject(e);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
_validateURL(url) {
|
|
89
|
+
invariant(typeof url === 'string', 'Invalid URL: should be a string. Was: ' + url);
|
|
90
|
+
invariant(url, 'Invalid URL: cannot be empty');
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
var open = (url, target) => {
|
|
94
|
+
if (canUseDOM) {
|
|
95
|
+
var urlToOpen = new URL(url, window.location).toString();
|
|
96
|
+
if (urlToOpen.indexOf('tel:') === 0) {
|
|
97
|
+
window.location = urlToOpen;
|
|
98
|
+
} else {
|
|
99
|
+
window.open(urlToOpen, target, 'noopener');
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
};
|
|
103
|
+
export default new Linking();
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Nicolas Gallagher.
|
|
3
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*
|
|
8
|
+
* @flow
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import invariant from 'fbjs/lib/invariant';
|
|
12
|
+
import canUseDOM from '../../modules/canUseDom';
|
|
13
|
+
const initialURL = canUseDOM ? window.location.href : '';
|
|
14
|
+
type Callback = (...args: any) => void;
|
|
15
|
+
declare class Linking {
|
|
16
|
+
_eventCallbacks: {
|
|
17
|
+
[key: string]: Array<Callback>
|
|
18
|
+
},
|
|
19
|
+
_dispatchEvent(event: string, ...data: any): any,
|
|
20
|
+
addEventListener(eventType: string, callback: Callback): {|
|
|
21
|
+
remove(): void
|
|
22
|
+
|},
|
|
23
|
+
removeEventListener(eventType: string, callback: Callback): void,
|
|
24
|
+
canOpenURL(): Promise<boolean>,
|
|
25
|
+
getInitialURL(): Promise<string>,
|
|
26
|
+
openURL(url: string, target?: string): Promise<Object | void>,
|
|
27
|
+
_validateURL(url: string): any,
|
|
28
|
+
}
|
|
29
|
+
declare var open: (url: any, target: any) => any;
|
|
30
|
+
export default (new Linking(): Linking);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2016-present, Nicolas Gallagher.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
var LogBox = {
|
|
11
|
+
ignoreLogs() {},
|
|
12
|
+
ignoreAllLogs() {},
|
|
13
|
+
uninstall() {},
|
|
14
|
+
install() {}
|
|
15
|
+
};
|
|
16
|
+
export default LogBox;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2016-present, Nicolas Gallagher.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* @flow
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
const LogBox = {
|
|
11
|
+
ignoreLogs() {},
|
|
12
|
+
ignoreAllLogs() {},
|
|
13
|
+
uninstall() {},
|
|
14
|
+
install() {}
|
|
15
|
+
};
|
|
16
|
+
export default LogBox;
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Nicolas Gallagher.
|
|
3
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import * as React from 'react';
|
|
12
|
+
import StyleSheet from '../StyleSheet';
|
|
13
|
+
import createElement from '../createElement';
|
|
14
|
+
var ANIMATION_DURATION = 250;
|
|
15
|
+
function getAnimationStyle(animationType, visible) {
|
|
16
|
+
if (animationType === 'slide') {
|
|
17
|
+
return visible ? animatedSlideInStyles : animatedSlideOutStyles;
|
|
18
|
+
}
|
|
19
|
+
if (animationType === 'fade') {
|
|
20
|
+
return visible ? animatedFadeInStyles : animatedFadeOutStyles;
|
|
21
|
+
}
|
|
22
|
+
return visible ? styles.container : styles.hidden;
|
|
23
|
+
}
|
|
24
|
+
function ModalAnimation(props) {
|
|
25
|
+
var animationType = props.animationType,
|
|
26
|
+
children = props.children,
|
|
27
|
+
onDismiss = props.onDismiss,
|
|
28
|
+
onShow = props.onShow,
|
|
29
|
+
visible = props.visible;
|
|
30
|
+
var _React$useState = React.useState(false),
|
|
31
|
+
isRendering = _React$useState[0],
|
|
32
|
+
setIsRendering = _React$useState[1];
|
|
33
|
+
var wasVisible = React.useRef(false);
|
|
34
|
+
var wasRendering = React.useRef(false);
|
|
35
|
+
var isAnimated = animationType && animationType !== 'none';
|
|
36
|
+
var animationEndCallback = React.useCallback(e => {
|
|
37
|
+
if (e && e.currentTarget !== e.target) {
|
|
38
|
+
// If the event was generated for something NOT this element we
|
|
39
|
+
// should ignore it as it's not relevant to us
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
if (visible) {
|
|
43
|
+
if (onShow) {
|
|
44
|
+
onShow();
|
|
45
|
+
}
|
|
46
|
+
} else {
|
|
47
|
+
setIsRendering(false);
|
|
48
|
+
}
|
|
49
|
+
}, [onShow, visible]);
|
|
50
|
+
React.useEffect(() => {
|
|
51
|
+
if (wasRendering.current && !isRendering && onDismiss) {
|
|
52
|
+
onDismiss();
|
|
53
|
+
}
|
|
54
|
+
wasRendering.current = isRendering;
|
|
55
|
+
}, [isRendering, onDismiss]);
|
|
56
|
+
React.useEffect(() => {
|
|
57
|
+
if (visible) {
|
|
58
|
+
setIsRendering(true);
|
|
59
|
+
}
|
|
60
|
+
if (visible !== wasVisible.current && !isAnimated) {
|
|
61
|
+
// Manually call `animationEndCallback` if no animation is used
|
|
62
|
+
animationEndCallback();
|
|
63
|
+
}
|
|
64
|
+
wasVisible.current = visible;
|
|
65
|
+
}, [isAnimated, visible, animationEndCallback]);
|
|
66
|
+
return isRendering || visible ? createElement('div', {
|
|
67
|
+
style: isRendering ? getAnimationStyle(animationType, visible) : styles.hidden,
|
|
68
|
+
onAnimationEnd: animationEndCallback,
|
|
69
|
+
children
|
|
70
|
+
}) : null;
|
|
71
|
+
}
|
|
72
|
+
var styles = StyleSheet.create({
|
|
73
|
+
container: {
|
|
74
|
+
position: 'fixed',
|
|
75
|
+
top: 0,
|
|
76
|
+
right: 0,
|
|
77
|
+
bottom: 0,
|
|
78
|
+
left: 0,
|
|
79
|
+
zIndex: 9999
|
|
80
|
+
},
|
|
81
|
+
animatedIn: {
|
|
82
|
+
animationDuration: ANIMATION_DURATION + "ms",
|
|
83
|
+
animationTimingFunction: 'cubic-bezier(0.215, 0.61, 0.355, 1)'
|
|
84
|
+
},
|
|
85
|
+
animatedOut: {
|
|
86
|
+
pointerEvents: 'none',
|
|
87
|
+
animationDuration: ANIMATION_DURATION + "ms",
|
|
88
|
+
animationTimingFunction: 'cubic-bezier(0.47, 0, 0.745, 0.715)'
|
|
89
|
+
},
|
|
90
|
+
fadeIn: {
|
|
91
|
+
opacity: 1,
|
|
92
|
+
animationKeyframes: {
|
|
93
|
+
'0%': {
|
|
94
|
+
opacity: 0
|
|
95
|
+
},
|
|
96
|
+
'100%': {
|
|
97
|
+
opacity: 1
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
fadeOut: {
|
|
102
|
+
opacity: 0,
|
|
103
|
+
animationKeyframes: {
|
|
104
|
+
'0%': {
|
|
105
|
+
opacity: 1
|
|
106
|
+
},
|
|
107
|
+
'100%': {
|
|
108
|
+
opacity: 0
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
slideIn: {
|
|
113
|
+
transform: 'translateY(0%)',
|
|
114
|
+
animationKeyframes: {
|
|
115
|
+
'0%': {
|
|
116
|
+
transform: 'translateY(100%)'
|
|
117
|
+
},
|
|
118
|
+
'100%': {
|
|
119
|
+
transform: 'translateY(0%)'
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
slideOut: {
|
|
124
|
+
transform: 'translateY(100%)',
|
|
125
|
+
animationKeyframes: {
|
|
126
|
+
'0%': {
|
|
127
|
+
transform: 'translateY(0%)'
|
|
128
|
+
},
|
|
129
|
+
'100%': {
|
|
130
|
+
transform: 'translateY(100%)'
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
hidden: {
|
|
135
|
+
opacity: 0
|
|
136
|
+
}
|
|
137
|
+
});
|
|
138
|
+
var animatedSlideInStyles = [styles.container, styles.animatedIn, styles.slideIn];
|
|
139
|
+
var animatedSlideOutStyles = [styles.container, styles.animatedOut, styles.slideOut];
|
|
140
|
+
var animatedFadeInStyles = [styles.container, styles.animatedIn, styles.fadeIn];
|
|
141
|
+
var animatedFadeOutStyles = [styles.container, styles.animatedOut, styles.fadeOut];
|
|
142
|
+
export default ModalAnimation;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Nicolas Gallagher.
|
|
3
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*
|
|
8
|
+
* @flow
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import * as React from 'react';
|
|
12
|
+
import StyleSheet from '../StyleSheet';
|
|
13
|
+
import createElement from '../createElement';
|
|
14
|
+
const ANIMATION_DURATION = 250;
|
|
15
|
+
declare function getAnimationStyle(animationType: any, visible: any): any;
|
|
16
|
+
export type ModalAnimationProps = {|
|
|
17
|
+
animationType?: ?('none' | 'slide' | 'fade'),
|
|
18
|
+
children?: any,
|
|
19
|
+
onDismiss?: ?() => void,
|
|
20
|
+
onShow?: ?() => void,
|
|
21
|
+
visible?: ?boolean,
|
|
22
|
+
|};
|
|
23
|
+
declare function ModalAnimation(props: ModalAnimationProps): React.Node;
|
|
24
|
+
const styles = StyleSheet.create({
|
|
25
|
+
container: {
|
|
26
|
+
position: 'fixed',
|
|
27
|
+
top: 0,
|
|
28
|
+
right: 0,
|
|
29
|
+
bottom: 0,
|
|
30
|
+
left: 0,
|
|
31
|
+
zIndex: 9999
|
|
32
|
+
},
|
|
33
|
+
animatedIn: {
|
|
34
|
+
animationDuration: `${ANIMATION_DURATION}ms`,
|
|
35
|
+
animationTimingFunction: 'cubic-bezier(0.215, 0.61, 0.355, 1)'
|
|
36
|
+
},
|
|
37
|
+
animatedOut: {
|
|
38
|
+
pointerEvents: 'none',
|
|
39
|
+
animationDuration: `${ANIMATION_DURATION}ms`,
|
|
40
|
+
animationTimingFunction: 'cubic-bezier(0.47, 0, 0.745, 0.715)'
|
|
41
|
+
},
|
|
42
|
+
fadeIn: {
|
|
43
|
+
opacity: 1,
|
|
44
|
+
animationKeyframes: {
|
|
45
|
+
'0%': {
|
|
46
|
+
opacity: 0
|
|
47
|
+
},
|
|
48
|
+
'100%': {
|
|
49
|
+
opacity: 1
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
fadeOut: {
|
|
54
|
+
opacity: 0,
|
|
55
|
+
animationKeyframes: {
|
|
56
|
+
'0%': {
|
|
57
|
+
opacity: 1
|
|
58
|
+
},
|
|
59
|
+
'100%': {
|
|
60
|
+
opacity: 0
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
slideIn: {
|
|
65
|
+
transform: 'translateY(0%)',
|
|
66
|
+
animationKeyframes: {
|
|
67
|
+
'0%': {
|
|
68
|
+
transform: 'translateY(100%)'
|
|
69
|
+
},
|
|
70
|
+
'100%': {
|
|
71
|
+
transform: 'translateY(0%)'
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
slideOut: {
|
|
76
|
+
transform: 'translateY(100%)',
|
|
77
|
+
animationKeyframes: {
|
|
78
|
+
'0%': {
|
|
79
|
+
transform: 'translateY(0%)'
|
|
80
|
+
},
|
|
81
|
+
'100%': {
|
|
82
|
+
transform: 'translateY(100%)'
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
hidden: {
|
|
87
|
+
opacity: 0
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
const animatedSlideInStyles = [styles.container, styles.animatedIn, styles.slideIn];
|
|
91
|
+
const animatedSlideOutStyles = [styles.container, styles.animatedOut, styles.slideOut];
|
|
92
|
+
const animatedFadeInStyles = [styles.container, styles.animatedIn, styles.fadeIn];
|
|
93
|
+
const animatedFadeOutStyles = [styles.container, styles.animatedOut, styles.fadeOut];
|
|
94
|
+
export default ModalAnimation;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/objectSpread2";
|
|
2
|
+
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/objectWithoutPropertiesLoose";
|
|
3
|
+
var _excluded = ["active", "children", "onRequestClose", "transparent"];
|
|
4
|
+
/**
|
|
5
|
+
* Copyright (c) Nicolas Gallagher.
|
|
6
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
7
|
+
*
|
|
8
|
+
* This source code is licensed under the MIT license found in the
|
|
9
|
+
* LICENSE file in the root directory of this source tree.
|
|
10
|
+
*
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
import * as React from 'react';
|
|
15
|
+
import View from '../View';
|
|
16
|
+
import StyleSheet from '../StyleSheet';
|
|
17
|
+
import canUseDOM from '../../modules/canUseDom';
|
|
18
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
19
|
+
var ModalContent = /*#__PURE__*/React.forwardRef((props, forwardedRef) => {
|
|
20
|
+
var active = props.active,
|
|
21
|
+
children = props.children,
|
|
22
|
+
onRequestClose = props.onRequestClose,
|
|
23
|
+
transparent = props.transparent,
|
|
24
|
+
rest = _objectWithoutPropertiesLoose(props, _excluded);
|
|
25
|
+
React.useEffect(() => {
|
|
26
|
+
if (canUseDOM) {
|
|
27
|
+
var closeOnEscape = e => {
|
|
28
|
+
if (active && e.key === 'Escape') {
|
|
29
|
+
e.stopPropagation();
|
|
30
|
+
if (onRequestClose) {
|
|
31
|
+
onRequestClose();
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
document.addEventListener('keyup', closeOnEscape, false);
|
|
36
|
+
return () => document.removeEventListener('keyup', closeOnEscape, false);
|
|
37
|
+
}
|
|
38
|
+
}, [active, onRequestClose]);
|
|
39
|
+
var style = React.useMemo(() => {
|
|
40
|
+
return [styles.modal, transparent ? styles.modalTransparent : styles.modalOpaque];
|
|
41
|
+
}, [transparent]);
|
|
42
|
+
return /*#__PURE__*/_jsx(View, _objectSpread(_objectSpread({}, rest), {}, {
|
|
43
|
+
"aria-modal": true,
|
|
44
|
+
ref: forwardedRef,
|
|
45
|
+
role: active ? 'dialog' : null,
|
|
46
|
+
style: style,
|
|
47
|
+
children: /*#__PURE__*/_jsx(View, {
|
|
48
|
+
style: styles.container,
|
|
49
|
+
children: children
|
|
50
|
+
})
|
|
51
|
+
}));
|
|
52
|
+
});
|
|
53
|
+
var styles = StyleSheet.create({
|
|
54
|
+
modal: {
|
|
55
|
+
position: 'fixed',
|
|
56
|
+
top: 0,
|
|
57
|
+
right: 0,
|
|
58
|
+
bottom: 0,
|
|
59
|
+
left: 0
|
|
60
|
+
},
|
|
61
|
+
modalTransparent: {
|
|
62
|
+
backgroundColor: 'transparent'
|
|
63
|
+
},
|
|
64
|
+
modalOpaque: {
|
|
65
|
+
backgroundColor: 'white'
|
|
66
|
+
},
|
|
67
|
+
container: {
|
|
68
|
+
top: 0,
|
|
69
|
+
flex: 1
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
export default ModalContent;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Nicolas Gallagher.
|
|
3
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*
|
|
8
|
+
* @flow
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import type { ViewProps } from '../View';
|
|
12
|
+
import * as React from 'react';
|
|
13
|
+
import View from '../View';
|
|
14
|
+
import StyleSheet from '../StyleSheet';
|
|
15
|
+
import canUseDOM from '../../modules/canUseDom';
|
|
16
|
+
export type ModalContentProps = {
|
|
17
|
+
...ViewProps,
|
|
18
|
+
active?: ?(boolean | (() => boolean)),
|
|
19
|
+
children?: any,
|
|
20
|
+
onRequestClose?: ?() => void,
|
|
21
|
+
transparent?: ?boolean,
|
|
22
|
+
};
|
|
23
|
+
const ModalContent: React.AbstractComponent<ModalContentProps, React.ElementRef<typeof View>> = React.forwardRef((props, forwardedRef) => {
|
|
24
|
+
const {
|
|
25
|
+
active,
|
|
26
|
+
children,
|
|
27
|
+
onRequestClose,
|
|
28
|
+
transparent,
|
|
29
|
+
...rest
|
|
30
|
+
} = props;
|
|
31
|
+
React.useEffect(() => {
|
|
32
|
+
if (canUseDOM) {
|
|
33
|
+
declare var closeOnEscape: (e: KeyboardEvent) => any;
|
|
34
|
+
document.addEventListener('keyup', closeOnEscape, false);
|
|
35
|
+
return () => document.removeEventListener('keyup', closeOnEscape, false);
|
|
36
|
+
}
|
|
37
|
+
}, [active, onRequestClose]);
|
|
38
|
+
const style = React.useMemo(() => {
|
|
39
|
+
return [styles.modal, transparent ? styles.modalTransparent : styles.modalOpaque];
|
|
40
|
+
}, [transparent]);
|
|
41
|
+
return <View {...rest} aria-modal={true} ref={forwardedRef} role={active ? 'dialog' : null} style={style}>
|
|
42
|
+
<View style={styles.container}>{children}</View>
|
|
43
|
+
</View>;
|
|
44
|
+
});
|
|
45
|
+
const styles = StyleSheet.create({
|
|
46
|
+
modal: {
|
|
47
|
+
position: 'fixed',
|
|
48
|
+
top: 0,
|
|
49
|
+
right: 0,
|
|
50
|
+
bottom: 0,
|
|
51
|
+
left: 0
|
|
52
|
+
},
|
|
53
|
+
modalTransparent: {
|
|
54
|
+
backgroundColor: 'transparent'
|
|
55
|
+
},
|
|
56
|
+
modalOpaque: {
|
|
57
|
+
backgroundColor: 'white'
|
|
58
|
+
},
|
|
59
|
+
container: {
|
|
60
|
+
top: 0,
|
|
61
|
+
flex: 1
|
|
62
|
+
}
|
|
63
|
+
});
|
|
64
|
+
export default ModalContent;
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Nicolas Gallagher.
|
|
3
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import * as React from 'react';
|
|
12
|
+
import View from '../View';
|
|
13
|
+
import createElement from '../createElement';
|
|
14
|
+
import StyleSheet from '../StyleSheet';
|
|
15
|
+
import UIManager from '../UIManager';
|
|
16
|
+
import canUseDOM from '../../modules/canUseDom';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* This Component is used to "wrap" the modal we're opening
|
|
20
|
+
* so that changing focus via tab will never leave the document.
|
|
21
|
+
*
|
|
22
|
+
* This allows us to properly trap the focus within a modal
|
|
23
|
+
* even if the modal is at the start or end of a document.
|
|
24
|
+
*/
|
|
25
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
26
|
+
var FocusBracket = () => {
|
|
27
|
+
return createElement('div', {
|
|
28
|
+
role: 'none',
|
|
29
|
+
tabIndex: 0,
|
|
30
|
+
style: styles.focusBracket
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
function attemptFocus(element) {
|
|
34
|
+
if (!canUseDOM) {
|
|
35
|
+
return false;
|
|
36
|
+
}
|
|
37
|
+
try {
|
|
38
|
+
element.focus();
|
|
39
|
+
} catch (e) {
|
|
40
|
+
// Do nothing
|
|
41
|
+
}
|
|
42
|
+
return document.activeElement === element;
|
|
43
|
+
}
|
|
44
|
+
function focusFirstDescendant(element) {
|
|
45
|
+
for (var i = 0; i < element.childNodes.length; i++) {
|
|
46
|
+
var child = element.childNodes[i];
|
|
47
|
+
if (attemptFocus(child) || focusFirstDescendant(child)) {
|
|
48
|
+
return true;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
return false;
|
|
52
|
+
}
|
|
53
|
+
function focusLastDescendant(element) {
|
|
54
|
+
for (var i = element.childNodes.length - 1; i >= 0; i--) {
|
|
55
|
+
var child = element.childNodes[i];
|
|
56
|
+
if (attemptFocus(child) || focusLastDescendant(child)) {
|
|
57
|
+
return true;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
return false;
|
|
61
|
+
}
|
|
62
|
+
var ModalFocusTrap = _ref => {
|
|
63
|
+
var active = _ref.active,
|
|
64
|
+
children = _ref.children;
|
|
65
|
+
var trapElementRef = React.useRef();
|
|
66
|
+
var focusRef = React.useRef({
|
|
67
|
+
trapFocusInProgress: false,
|
|
68
|
+
lastFocusedElement: null
|
|
69
|
+
});
|
|
70
|
+
React.useEffect(() => {
|
|
71
|
+
if (canUseDOM) {
|
|
72
|
+
var trapFocus = () => {
|
|
73
|
+
// We should not trap focus if:
|
|
74
|
+
// - The modal hasn't fully initialized with an HTMLElement ref
|
|
75
|
+
// - Focus is already in the process of being trapped (e.g., we're refocusing)
|
|
76
|
+
// - isTrapActive prop being falsey tells us to do nothing
|
|
77
|
+
if (trapElementRef.current == null || focusRef.current.trapFocusInProgress || !active) {
|
|
78
|
+
return;
|
|
79
|
+
}
|
|
80
|
+
try {
|
|
81
|
+
focusRef.current.trapFocusInProgress = true;
|
|
82
|
+
if (document.activeElement instanceof Node && !trapElementRef.current.contains(document.activeElement)) {
|
|
83
|
+
// To handle keyboard focusing we can make an assumption here.
|
|
84
|
+
// If you're tabbing through the focusable elements, the previously
|
|
85
|
+
// active element will either be the first or the last.
|
|
86
|
+
// If the previously selected element is the "first" descendant
|
|
87
|
+
// and we're leaving it - this means that we should be looping
|
|
88
|
+
// around to the other side of the modal.
|
|
89
|
+
var hasFocused = focusFirstDescendant(trapElementRef.current);
|
|
90
|
+
if (focusRef.current.lastFocusedElement === document.activeElement) {
|
|
91
|
+
hasFocused = focusLastDescendant(trapElementRef.current);
|
|
92
|
+
}
|
|
93
|
+
// If we couldn't focus a new element then we need to focus onto the trap target
|
|
94
|
+
if (!hasFocused && trapElementRef.current != null && document.activeElement) {
|
|
95
|
+
UIManager.focus(trapElementRef.current);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
} finally {
|
|
99
|
+
focusRef.current.trapFocusInProgress = false;
|
|
100
|
+
}
|
|
101
|
+
focusRef.current.lastFocusedElement = document.activeElement;
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
// Call the trapFocus callback at least once when this modal has been activated.
|
|
105
|
+
trapFocus();
|
|
106
|
+
document.addEventListener('focus', trapFocus, true);
|
|
107
|
+
return () => document.removeEventListener('focus', trapFocus, true);
|
|
108
|
+
}
|
|
109
|
+
}, [active]);
|
|
110
|
+
|
|
111
|
+
// To be fully compliant with WCAG we need to refocus element that triggered opening modal
|
|
112
|
+
// after closing it
|
|
113
|
+
React.useEffect(function () {
|
|
114
|
+
if (canUseDOM) {
|
|
115
|
+
var lastFocusedElementOutsideTrap = document.activeElement;
|
|
116
|
+
return function () {
|
|
117
|
+
if (lastFocusedElementOutsideTrap && document.contains(lastFocusedElementOutsideTrap)) {
|
|
118
|
+
UIManager.focus(lastFocusedElementOutsideTrap);
|
|
119
|
+
}
|
|
120
|
+
};
|
|
121
|
+
}
|
|
122
|
+
}, []);
|
|
123
|
+
return /*#__PURE__*/_jsxs(_Fragment, {
|
|
124
|
+
children: [/*#__PURE__*/_jsx(FocusBracket, {}), /*#__PURE__*/_jsx(View, {
|
|
125
|
+
ref: trapElementRef,
|
|
126
|
+
children: children
|
|
127
|
+
}), /*#__PURE__*/_jsx(FocusBracket, {})]
|
|
128
|
+
});
|
|
129
|
+
};
|
|
130
|
+
export default ModalFocusTrap;
|
|
131
|
+
var styles = StyleSheet.create({
|
|
132
|
+
focusBracket: {
|
|
133
|
+
outlineStyle: 'none'
|
|
134
|
+
}
|
|
135
|
+
});
|