@office-iss/react-native-win32 0.0.0-canary.27 → 0.0.0-canary.270
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/.eslintignore +5 -2
- package/.eslintrc.js +27 -2
- package/.flowconfig +72 -37
- package/CHANGELOG.json +5573 -1
- package/CHANGELOG.md +2216 -7
- package/IntegrationTests/AccessibilityManagerTest.js +8 -11
- package/IntegrationTests/AppEventsTest.js +3 -3
- package/IntegrationTests/GlobalEvalWithSourceUrlTest.js +12 -5
- package/IntegrationTests/ImageCachePolicyTest.js +5 -5
- package/IntegrationTests/ImageSnapshotTest.js +2 -2
- package/IntegrationTests/IntegrationTestHarnessTest.js +9 -6
- package/IntegrationTests/IntegrationTestsApp.js +16 -21
- package/IntegrationTests/LayoutEventsTest.js +14 -12
- package/IntegrationTests/LoggingTestModule.js +10 -12
- package/IntegrationTests/PromiseTest.js +2 -1
- package/IntegrationTests/SimpleSnapshotTest.js +2 -4
- package/IntegrationTests/SyncMethodTest.js +2 -2
- package/IntegrationTests/TimersTest.js +20 -5
- package/IntegrationTests/WebSocketTest.js +5 -5
- package/IntegrationTests/launchWebSocketServer.sh +12 -0
- package/IntegrationTests/websocket_integration_test_server.js +3 -3
- package/Libraries/ActionSheetIOS/ActionSheetIOS.d.ts +86 -0
- package/Libraries/ActionSheetIOS/ActionSheetIOS.js +38 -11
- package/Libraries/ActionSheetIOS/NativeActionSheetManager.js +5 -43
- package/Libraries/Alert/Alert.d.ts +91 -0
- package/Libraries/Alert/Alert.js +31 -10
- package/Libraries/Alert/Alert.win32.js +6 -4
- package/Libraries/Alert/NativeAlertManager.js +5 -26
- package/Libraries/Alert/RCTAlertManager.android.js +2 -4
- package/Libraries/Alert/RCTAlertManager.ios.js +2 -3
- package/Libraries/Animated/Animated.d.ts +626 -0
- package/Libraries/Animated/Animated.js +48 -0
- package/Libraries/Animated/AnimatedEvent.js +256 -0
- package/Libraries/Animated/AnimatedImplementation.js +754 -0
- package/Libraries/Animated/AnimatedMock.js +195 -0
- package/Libraries/Animated/AnimatedPlatformConfig.js +13 -0
- package/Libraries/Animated/AnimatedWeb.js +26 -0
- package/Libraries/Animated/Easing.d.ts +37 -0
- package/Libraries/Animated/Easing.js +250 -0
- package/Libraries/Animated/NativeAnimatedAllowlist.js +122 -0
- package/Libraries/Animated/NativeAnimatedModule.js +13 -0
- package/Libraries/Animated/NativeAnimatedTurboModule.js +13 -0
- package/Libraries/Animated/SpringConfig.js +98 -0
- package/Libraries/Animated/animations/Animation.js +136 -0
- package/Libraries/Animated/animations/DecayAnimation.js +133 -0
- package/Libraries/Animated/animations/SpringAnimation.js +378 -0
- package/Libraries/Animated/animations/TimingAnimation.js +181 -0
- package/Libraries/Animated/bezier.js +164 -0
- package/Libraries/Animated/components/AnimatedFlatList.js +20 -0
- package/Libraries/Animated/components/AnimatedImage.js +22 -0
- package/Libraries/Animated/components/AnimatedScrollView.js +137 -0
- package/Libraries/Animated/components/AnimatedSectionList.js +20 -0
- package/Libraries/Animated/components/AnimatedText.js +22 -0
- package/Libraries/Animated/components/AnimatedView.js +20 -0
- package/Libraries/Animated/createAnimatedComponent.js +87 -0
- package/Libraries/Animated/nodes/AnimatedAddition.js +64 -0
- package/Libraries/Animated/nodes/AnimatedColor.js +320 -0
- package/Libraries/Animated/nodes/AnimatedDiffClamp.js +72 -0
- package/Libraries/Animated/nodes/AnimatedDivision.js +80 -0
- package/Libraries/Animated/nodes/AnimatedInterpolation.js +416 -0
- package/Libraries/Animated/nodes/AnimatedModulo.js +63 -0
- package/Libraries/Animated/nodes/AnimatedMultiplication.js +63 -0
- package/Libraries/Animated/nodes/AnimatedNode.js +200 -0
- package/Libraries/Animated/nodes/AnimatedObject.js +162 -0
- package/Libraries/Animated/nodes/AnimatedProps.js +267 -0
- package/Libraries/Animated/nodes/AnimatedStyle.js +239 -0
- package/Libraries/Animated/nodes/AnimatedSubtraction.js +64 -0
- package/Libraries/Animated/nodes/AnimatedTracking.js +100 -0
- package/Libraries/Animated/nodes/AnimatedTransform.js +198 -0
- package/Libraries/Animated/nodes/AnimatedValue.js +303 -0
- package/Libraries/Animated/nodes/AnimatedValueXY.js +236 -0
- package/Libraries/Animated/nodes/AnimatedWithChildren.js +85 -0
- package/Libraries/Animated/shouldUseTurboAnimatedModule.js +17 -0
- package/Libraries/Animated/useAnimatedProps.js +401 -0
- package/Libraries/Animated/useAnimatedValue.d.ts +15 -0
- package/Libraries/Animated/useAnimatedValue.js +25 -0
- package/Libraries/AppState/AppState.d.ts +58 -0
- package/Libraries/AppState/AppState.js +91 -144
- package/Libraries/AppState/NativeAppState.js +5 -22
- package/Libraries/BatchedBridge/BatchedBridge.js +2 -2
- package/Libraries/BatchedBridge/MessageQueue.js +136 -114
- package/Libraries/BatchedBridge/NativeModules.d.ts +25 -0
- package/Libraries/BatchedBridge/NativeModules.js +36 -21
- package/Libraries/BatchedBridge/__mocks__/MessageQueueTestConfig.js +1 -1
- package/Libraries/BatchedBridge/__mocks__/MessageQueueTestModule.js +3 -3
- package/Libraries/Blob/Blob.js +20 -3
- package/Libraries/Blob/BlobManager.js +7 -10
- package/Libraries/Blob/BlobRegistry.js +15 -10
- package/Libraries/Blob/BlobTypes.js +1 -1
- package/Libraries/Blob/File.js +3 -4
- package/Libraries/Blob/FileReader.js +36 -16
- package/Libraries/Blob/NativeBlobModule.js +5 -18
- package/Libraries/Blob/NativeFileReaderModule.js +5 -15
- package/Libraries/Blob/URL.js +38 -87
- package/Libraries/Blob/URLSearchParams.js +71 -0
- package/Libraries/Blob/__mocks__/BlobModule.js +1 -1
- package/Libraries/Blob/__mocks__/FileReaderModule.js +1 -1
- package/Libraries/BugReporting/BugReporting.js +8 -9
- package/Libraries/BugReporting/NativeBugReporting.js +5 -12
- package/Libraries/BugReporting/dumpReactTree.js +1 -1
- package/Libraries/BugReporting/getReactData.js +17 -8
- package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts +161 -0
- package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.js +421 -0
- package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.win32.js +390 -97
- package/Libraries/Components/AccessibilityInfo/NativeAccessibilityInfo.js +5 -19
- package/Libraries/Components/AccessibilityInfo/NativeAccessibilityInfoWin32.js +11 -0
- package/Libraries/Components/AccessibilityInfo/NativeAccessibilityManager.js +5 -51
- package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.android.js +36 -0
- package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.ios.js +26 -0
- package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.win32.js +36 -0
- package/Libraries/Components/ActivityIndicator/ActivityIndicator.d.ts +86 -0
- package/Libraries/Components/ActivityIndicator/ActivityIndicator.js +73 -48
- package/Libraries/Components/ActivityIndicator/ActivityIndicatorViewNativeComponent.js +4 -47
- package/Libraries/Components/Button/ButtonWin32.Props.d.ts +36 -36
- package/Libraries/Components/Button/ButtonWin32.Props.js +3 -3
- package/Libraries/Components/Button/ButtonWin32.Props.js.map +1 -0
- package/Libraries/Components/Button/ButtonWin32.d.ts +19 -19
- package/Libraries/Components/Button/ButtonWin32.js +83 -103
- package/Libraries/Components/Button/ButtonWin32.js.map +1 -0
- package/Libraries/Components/Button.d.ts +42 -0
- package/Libraries/Components/Button.js +323 -125
- package/Libraries/Components/Button.win32.js +455 -0
- package/Libraries/Components/Clipboard/Clipboard.d.ts +28 -0
- package/Libraries/Components/Clipboard/Clipboard.js +3 -5
- package/Libraries/Components/Clipboard/NativeClipboard.js +5 -14
- package/Libraries/Components/DrawerAndroid/AndroidDrawerLayoutNativeComponent.js +4 -116
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +44 -35
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.d.ts +141 -0
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.js +4 -2
- package/Libraries/Components/EnterString.win32.d.ts +12 -12
- package/Libraries/Components/EnterString.win32.js +82 -114
- package/Libraries/Components/EnterString.win32.js.map +1 -0
- package/Libraries/Components/Keyboard/Keyboard.d.ts +109 -0
- package/Libraries/Components/Keyboard/Keyboard.js +81 -71
- package/Libraries/Components/Keyboard/KeyboardAvoidingView.d.ts +46 -0
- package/Libraries/Components/Keyboard/KeyboardAvoidingView.js +116 -56
- package/Libraries/Components/Keyboard/NativeKeyboardObserver.js +5 -13
- package/Libraries/Components/Pressable/Pressable.d.ts +167 -0
- package/Libraries/Components/Pressable/Pressable.js +176 -43
- package/Libraries/Components/Pressable/Pressable.win32.js +437 -0
- package/Libraries/Components/Pressable/useAndroidRippleForView.js +38 -23
- package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.android.js +28 -22
- package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.d.ts +83 -0
- package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.js +1 -1
- package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroidNativeComponent.js +5 -27
- package/Libraries/Components/RefreshControl/AndroidSwipeRefreshLayoutNativeComponent.js +4 -77
- package/Libraries/Components/RefreshControl/PullToRefreshViewNativeComponent.js +4 -56
- package/Libraries/Components/RefreshControl/RefreshControl.d.ts +87 -0
- package/Libraries/Components/RefreshControl/RefreshControl.js +16 -38
- package/Libraries/Components/RefreshControl/__mocks__/RefreshControlMock.js +7 -10
- package/Libraries/Components/SafeAreaView/RCTSafeAreaViewNativeComponent.js +4 -20
- package/Libraries/Components/SafeAreaView/SafeAreaView.d.ts +24 -0
- package/Libraries/Components/SafeAreaView/SafeAreaView.js +12 -39
- package/Libraries/Components/SafeAreaView/SafeAreaView.win32.js +12 -41
- package/Libraries/Components/ScrollView/AndroidHorizontalScrollContentViewNativeComponent.js +5 -32
- package/Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js +39 -21
- package/Libraries/Components/ScrollView/ScrollContentViewNativeComponent.js +13 -20
- package/Libraries/Components/ScrollView/ScrollView.d.ts +910 -0
- package/Libraries/Components/ScrollView/ScrollView.js +1153 -434
- package/Libraries/Components/ScrollView/ScrollViewCommands.js +4 -4
- package/Libraries/Components/ScrollView/ScrollViewContext.js +22 -0
- package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +170 -18
- package/Libraries/Components/ScrollView/ScrollViewNativeComponentType.js +11 -17
- package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +207 -62
- package/Libraries/Components/ScrollView/processDecelerationRate.js +2 -4
- package/Libraries/Components/Sound/NativeSoundManager.js +5 -15
- package/Libraries/Components/Sound/SoundManager.js +3 -4
- package/Libraries/Components/StaticRenderer.js +1 -1
- package/Libraries/Components/StatusBar/NativeStatusBarManagerAndroid.js +5 -27
- package/Libraries/Components/StatusBar/NativeStatusBarManagerIOS.js +5 -35
- package/Libraries/Components/StatusBar/StatusBar.d.ts +138 -0
- package/Libraries/Components/StatusBar/StatusBar.js +40 -60
- package/Libraries/Components/Switch/AndroidSwitchNativeComponent.js +5 -56
- package/Libraries/Components/Switch/Switch.d.ts +115 -0
- package/Libraries/Components/Switch/Switch.js +160 -133
- package/Libraries/Components/Switch/SwitchNativeComponent.js +5 -50
- package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +237 -67
- package/Libraries/Components/TextInput/InputAccessoryView.d.ts +34 -0
- package/Libraries/Components/TextInput/InputAccessoryView.js +28 -23
- package/Libraries/Components/TextInput/RCTInputAccessoryViewNativeComponent.js +5 -18
- package/Libraries/Components/TextInput/RCTMultilineTextInputNativeComponent.js +26 -31
- package/Libraries/Components/TextInput/RCTSingelineTextInputNativeComponent.js +18 -38
- package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +167 -0
- package/Libraries/Components/TextInput/Tests/TextInputTest.d.ts +8 -8
- package/Libraries/Components/TextInput/Tests/TextInputTest.js +128 -126
- package/Libraries/Components/TextInput/Tests/TextInputTest.js.map +1 -0
- package/Libraries/Components/TextInput/TextInput.d.ts +1003 -0
- package/Libraries/Components/TextInput/TextInput.flow.js +1108 -0
- package/Libraries/Components/TextInput/TextInput.js +1130 -443
- package/Libraries/Components/TextInput/TextInput.win32.js +2028 -179
- package/Libraries/Components/TextInput/TextInputNativeCommands.js +29 -0
- package/Libraries/Components/TextInput/TextInputState.js +33 -10
- package/Libraries/Components/TextInput/TextInputState.win32.js +45 -17
- package/Libraries/Components/TextInput/Win32TextInputNativeComponent.js +23 -0
- package/Libraries/Components/ToastAndroid/NativeToastAndroid.js +5 -31
- package/Libraries/Components/ToastAndroid/ToastAndroid.android.js +11 -10
- package/Libraries/Components/ToastAndroid/ToastAndroid.d.ts +47 -0
- package/Libraries/Components/ToastAndroid/ToastAndroid.js +45 -0
- package/Libraries/Components/ToastAndroid/ToastAndroid.win32.js +16 -10
- package/Libraries/Components/Touchable/BoundingDimensions.js +13 -6
- package/Libraries/Components/Touchable/PooledClass.js +26 -15
- package/Libraries/Components/Touchable/Position.js +9 -5
- package/Libraries/Components/Touchable/Tests/TouchableWin32Test.d.ts +8 -8
- package/Libraries/Components/Touchable/Tests/TouchableWin32Test.js +344 -381
- package/Libraries/Components/Touchable/Tests/TouchableWin32Test.js.map +1 -0
- package/Libraries/Components/Touchable/Touchable.d.ts +90 -0
- package/Libraries/Components/Touchable/Touchable.js +122 -133
- package/Libraries/Components/Touchable/Touchable.win32.js +978 -0
- package/Libraries/Components/Touchable/TouchableBounce.js +56 -55
- package/Libraries/Components/Touchable/TouchableHighlight.d.ts +62 -0
- package/Libraries/Components/Touchable/TouchableHighlight.js +66 -56
- package/Libraries/Components/Touchable/TouchableNativeFeedback.d.ts +119 -0
- package/Libraries/Components/Touchable/TouchableNativeFeedback.js +86 -67
- package/Libraries/Components/Touchable/TouchableNativeFeedback.win32.js +99 -51
- package/Libraries/Components/Touchable/TouchableOpacity.d.ts +81 -0
- package/Libraries/Components/Touchable/TouchableOpacity.js +94 -58
- package/Libraries/Components/Touchable/TouchableWin32.Props.d.ts +37 -34
- package/Libraries/Components/Touchable/TouchableWin32.Props.js +3 -3
- package/Libraries/Components/Touchable/TouchableWin32.Props.js.map +1 -0
- package/Libraries/Components/Touchable/TouchableWin32.Types.d.ts +114 -114
- package/Libraries/Components/Touchable/TouchableWin32.Types.js +3 -3
- package/Libraries/Components/Touchable/TouchableWin32.Types.js.map +1 -0
- package/Libraries/Components/Touchable/TouchableWin32.d.ts +91 -91
- package/Libraries/Components/Touchable/TouchableWin32.js +507 -529
- package/Libraries/Components/Touchable/TouchableWin32.js.map +1 -0
- package/Libraries/Components/Touchable/TouchableWithoutFeedback.d.ts +151 -0
- package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +149 -107
- package/Libraries/Components/UnimplementedViews/UnimplementedNativeViewNativeComponent.js +4 -19
- package/Libraries/Components/UnimplementedViews/UnimplementedView.js +3 -4
- package/Libraries/Components/View/ReactNativeStyleAttributes.js +199 -69
- package/Libraries/Components/View/ReactNativeViewAttributes.js +7 -3
- package/Libraries/Components/View/ReactNativeViewAttributes.win32.js +37 -13
- package/Libraries/Components/View/View.d.ts +29 -0
- package/Libraries/Components/View/View.js +105 -13
- package/Libraries/Components/View/View.win32.js +276 -0
- package/Libraries/Components/View/ViewAccessibility.d.ts +566 -0
- package/Libraries/Components/View/ViewAccessibility.js +88 -7
- package/Libraries/Components/View/ViewAccessibility.win32.js +180 -0
- package/Libraries/Components/View/ViewNativeComponent.js +95 -57
- package/Libraries/Components/View/ViewPropTypes.d.ts +354 -0
- package/Libraries/Components/View/ViewPropTypes.js +230 -66
- package/Libraries/Components/View/ViewPropTypes.win32.js +743 -0
- package/Libraries/Components/View/ViewWin32.d.ts +30 -12
- package/Libraries/Components/View/ViewWin32.js +129 -80
- package/Libraries/Core/Devtools/getDevServer.js +9 -8
- package/Libraries/Core/Devtools/loadBundleFromServer.js +152 -0
- package/Libraries/Core/Devtools/loadBundleFromServer.win32.js +153 -0
- package/Libraries/Core/Devtools/openFileInEditor.js +6 -2
- package/Libraries/Core/Devtools/openURLInBrowser.js +3 -2
- package/Libraries/Core/Devtools/parseErrorStack.js +14 -23
- package/Libraries/Core/Devtools/parseHermesStack.js +71 -44
- package/Libraries/Core/Devtools/symbolicateStackTrace.js +13 -58
- package/Libraries/Core/ExceptionsManager.js +93 -98
- package/Libraries/Core/ExtendedError.js +33 -0
- package/Libraries/Core/InitializeCore.js +7 -3
- package/Libraries/Core/NativeExceptionsManager.js +5 -100
- package/Libraries/Core/RawEventEmitter.js +39 -0
- package/Libraries/Core/ReactFiberErrorDialog.js +47 -38
- package/Libraries/Core/ReactNativeVersion.js +13 -7
- package/Libraries/Core/ReactNativeVersionCheck.js +11 -8
- package/Libraries/Core/ReactNativeVersionCheck.win32.js +11 -8
- package/Libraries/Core/SegmentFetcher/NativeSegmentFetcher.js +5 -21
- package/Libraries/Core/Timers/JSTimers.js +94 -120
- package/Libraries/Core/Timers/NativeTiming.js +5 -19
- package/Libraries/Core/Timers/immediateShim.js +68 -0
- package/Libraries/Core/Timers/queueMicrotask.js +41 -0
- package/Libraries/Core/__mocks__/ErrorUtils.js +1 -1
- package/Libraries/Core/__mocks__/NativeExceptionsManager.js +20 -0
- package/Libraries/Core/checkNativeVersion.js +1 -1
- package/Libraries/Core/polyfillPromise.js +19 -3
- package/Libraries/Core/registerCallableModule.d.ts +16 -0
- package/Libraries/Core/registerCallableModule.js +42 -0
- package/Libraries/Core/setUpAlert.js +2 -2
- package/Libraries/Core/setUpBatchedBridge.js +24 -11
- package/Libraries/Core/setUpDeveloperTools.js +59 -60
- package/Libraries/Core/setUpErrorHandling.js +9 -3
- package/Libraries/Core/setUpGlobals.js +8 -6
- package/Libraries/Core/setUpNavigator.js +8 -7
- package/Libraries/Core/setUpPerformance.js +31 -0
- package/Libraries/Core/setUpReactDevTools.js +121 -12
- package/Libraries/Core/setUpReactRefresh.js +4 -6
- package/Libraries/Core/setUpRegeneratorRuntime.js +28 -9
- package/Libraries/Core/setUpSegmentFetcher.js +8 -47
- package/Libraries/Core/setUpTimers.js +96 -8
- package/Libraries/Core/setUpXHR.js +5 -5
- package/Libraries/Debugging/DebuggingOverlay.js +111 -0
- package/Libraries/Debugging/DebuggingOverlayNativeComponent.js +13 -0
- package/Libraries/Debugging/DebuggingOverlayRegistry.js +513 -0
- package/Libraries/Debugging/useSubscribeToDebuggingOverlayRegistry.js +32 -0
- package/Libraries/EventEmitter/NativeEventEmitter.d.ts +63 -0
- package/Libraries/EventEmitter/NativeEventEmitter.js +92 -40
- package/Libraries/EventEmitter/RCTDeviceEventEmitter.d.ts +29 -0
- package/Libraries/EventEmitter/RCTDeviceEventEmitter.js +27 -68
- package/Libraries/EventEmitter/RCTEventEmitter.js +6 -2
- package/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts +32 -0
- package/Libraries/EventEmitter/RCTNativeAppEventEmitter.js +2 -4
- package/Libraries/EventEmitter/__mocks__/NativeEventEmitter.js +34 -11
- package/Libraries/Events/CustomEvent.js +32 -0
- package/Libraries/Events/EventPolyfill.js +239 -0
- package/Libraries/HeapCapture/HeapCapture.js +3 -5
- package/Libraries/HeapCapture/NativeJSCHeapCapture.js +5 -12
- package/Libraries/Image/AssetRegistry.js +2 -27
- package/Libraries/Image/AssetSourceResolver.js +65 -39
- package/Libraries/Image/AssetUtils.js +47 -0
- package/Libraries/Image/Image.android.js +208 -271
- package/Libraries/Image/Image.d.ts +382 -0
- package/Libraries/Image/Image.ios.js +147 -104
- package/Libraries/Image/Image.win32.js +152 -93
- package/Libraries/Image/ImageAnalyticsTagContext.js +22 -0
- package/Libraries/Image/ImageBackground.js +31 -12
- package/Libraries/Image/ImageInjection.js +87 -0
- package/Libraries/Image/ImageProps.js +154 -29
- package/Libraries/Image/ImageResizeMode.d.ts +49 -0
- package/Libraries/Image/ImageResizeMode.js +1 -1
- package/Libraries/Image/ImageSource.d.ts +76 -0
- package/Libraries/Image/ImageSource.js +73 -21
- package/Libraries/Image/ImageSourceUtils.js +80 -0
- package/Libraries/Image/ImageTypes.d.ts +25 -25
- package/Libraries/Image/ImageTypes.flow.js +76 -0
- package/Libraries/Image/ImageTypes.js +8 -8
- package/Libraries/Image/ImageTypes.js.map +1 -0
- package/Libraries/Image/ImageUtils.js +22 -0
- package/Libraries/Image/ImageViewNativeComponent.js +145 -29
- package/Libraries/Image/NativeImageEditor.js +13 -0
- package/Libraries/Image/NativeImageLoaderAndroid.js +5 -32
- package/Libraries/Image/NativeImageLoaderIOS.js +5 -24
- package/Libraries/Image/NativeImageLoaderWin32.js +5 -32
- package/Libraries/Image/NativeImageStoreAndroid.js +13 -0
- package/Libraries/Image/NativeImageStoreIOS.js +13 -0
- package/Libraries/Image/RelativeImageStub.js +2 -2
- package/Libraries/Image/Tests/ImageWin32Test.d.ts +8 -8
- package/Libraries/Image/Tests/ImageWin32Test.js +22 -19
- package/Libraries/Image/Tests/ImageWin32Test.js.map +1 -0
- package/Libraries/Image/TextInlineImageNativeComponent.js +38 -7
- package/Libraries/Image/assetPaths.js +36 -0
- package/Libraries/Image/nativeImageSource.js +4 -6
- package/Libraries/Image/resolveAssetSource.js +65 -31
- package/Libraries/Image/resolveAssetSource.win32.js +18 -6
- package/Libraries/Inspector/BorderBox.js +2 -2
- package/Libraries/Inspector/BoxInspector.js +4 -5
- package/Libraries/Inspector/ElementBox.js +15 -10
- package/Libraries/Inspector/ElementProperties.js +35 -62
- package/Libraries/Inspector/Inspector.js +152 -259
- package/Libraries/Inspector/Inspector.win32.js +156 -263
- package/Libraries/Inspector/InspectorOverlay.js +28 -53
- package/Libraries/Inspector/InspectorOverlay.win32.js +31 -54
- package/Libraries/Inspector/InspectorPanel.js +31 -37
- package/Libraries/Inspector/NetworkOverlay.js +28 -18
- package/Libraries/Inspector/PerformanceOverlay.js +5 -5
- package/Libraries/Inspector/ReactDevToolsOverlay.js +166 -0
- package/Libraries/Inspector/StyleInspector.js +3 -3
- package/Libraries/Inspector/getInspectorDataForViewAtPoint.js +83 -0
- package/Libraries/Inspector/resolveBoxStyle.js +1 -1
- package/Libraries/Interaction/FrameRateLogger.js +10 -22
- package/Libraries/Interaction/InteractionManager.d.ts +74 -0
- package/Libraries/Interaction/InteractionManager.js +29 -40
- package/Libraries/Interaction/JSEventLoopWatchdog.js +10 -15
- package/Libraries/Interaction/NativeFrameRateLogger.js +5 -16
- package/Libraries/Interaction/PanResponder.d.ts +202 -0
- package/Libraries/Interaction/PanResponder.js +26 -28
- package/Libraries/Interaction/TaskQueue.js +15 -16
- package/Libraries/Interaction/TouchHistoryMath.js +32 -29
- package/Libraries/JSInspector/InspectorAgent.js +4 -4
- package/Libraries/JSInspector/JSInspector.js +2 -5
- package/Libraries/JSInspector/NetworkAgent.js +11 -16
- package/Libraries/LayoutAnimation/LayoutAnimation.d.ts +84 -0
- package/Libraries/LayoutAnimation/LayoutAnimation.js +86 -37
- package/Libraries/Linking/Linking.d.ts +61 -0
- package/Libraries/Linking/Linking.js +50 -41
- package/Libraries/Linking/NativeIntentAndroid.js +13 -0
- package/Libraries/Linking/NativeLinkingManager.js +13 -0
- package/Libraries/Lists/FillRateHelper.js +6 -232
- package/Libraries/Lists/FlatList.d.ts +245 -0
- package/Libraries/Lists/FlatList.js +194 -127
- package/Libraries/Lists/SectionList.d.ts +267 -0
- package/Libraries/Lists/SectionList.js +38 -33
- package/Libraries/Lists/SectionListModern.js +249 -0
- package/Libraries/Lists/ViewabilityHelper.js +10 -327
- package/Libraries/Lists/VirtualizeUtils.js +6 -235
- package/Libraries/Lists/VirtualizedList.js +10 -2224
- package/Libraries/Lists/VirtualizedListContext.js +18 -0
- package/Libraries/Lists/VirtualizedSectionList.js +9 -565
- package/Libraries/Lists/__flowtests__/FlatList-flowtest.js +2 -1
- package/Libraries/Lists/__flowtests__/SectionList-flowtest.js +8 -8
- package/Libraries/LogBox/Data/LogBoxData.js +104 -73
- package/Libraries/LogBox/Data/LogBoxLog.js +125 -12
- package/Libraries/LogBox/Data/LogBoxSymbolication.js +10 -9
- package/Libraries/LogBox/Data/parseLogBoxLog.js +289 -76
- package/Libraries/LogBox/LogBox.d.ts +28 -0
- package/Libraries/LogBox/LogBox.js +163 -91
- package/Libraries/LogBox/LogBoxInspectorContainer.js +6 -6
- package/Libraries/LogBox/LogBoxNotificationContainer.js +10 -7
- package/Libraries/LogBox/UI/AnsiHighlight.js +17 -8
- package/Libraries/LogBox/UI/LogBoxButton.js +6 -7
- package/Libraries/LogBox/UI/LogBoxImages/alert-triangle.png +0 -0
- package/Libraries/LogBox/UI/LogBoxImages/chevron-left.png +0 -0
- package/Libraries/LogBox/UI/LogBoxImages/chevron-right.png +0 -0
- package/Libraries/LogBox/UI/LogBoxImages/close.png +0 -0
- package/Libraries/LogBox/UI/LogBoxImages/loader.png +0 -0
- package/Libraries/LogBox/UI/LogBoxInspector.js +13 -77
- package/Libraries/LogBox/UI/LogBoxInspectorBody.js +87 -0
- package/Libraries/LogBox/UI/LogBoxInspectorCodeFrame.js +12 -10
- package/Libraries/LogBox/UI/LogBoxInspectorCodeFrame.win32.js +168 -0
- package/Libraries/LogBox/UI/LogBoxInspectorFooter.js +9 -53
- package/Libraries/LogBox/UI/LogBoxInspectorFooterButton.js +58 -0
- package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +19 -79
- package/Libraries/LogBox/UI/LogBoxInspectorHeader.win32.js +113 -0
- package/Libraries/LogBox/UI/LogBoxInspectorHeaderButton.js +76 -0
- package/Libraries/LogBox/UI/LogBoxInspectorMessageHeader.js +6 -7
- package/Libraries/LogBox/UI/LogBoxInspectorReactFrames.js +16 -14
- package/Libraries/LogBox/UI/LogBoxInspectorReactFrames.win32.js +196 -0
- package/Libraries/LogBox/UI/LogBoxInspectorSection.js +3 -5
- package/Libraries/LogBox/UI/LogBoxInspectorSourceMapStatus.js +6 -10
- package/Libraries/LogBox/UI/LogBoxInspectorStackFrame.js +8 -10
- package/Libraries/LogBox/UI/LogBoxInspectorStackFrame.win32.js +118 -0
- package/Libraries/LogBox/UI/LogBoxInspectorStackFrames.js +19 -11
- package/Libraries/LogBox/UI/LogBoxMessage.js +100 -19
- package/Libraries/LogBox/UI/LogBoxNotification.js +20 -158
- package/Libraries/LogBox/UI/LogBoxNotificationCountBadge.js +63 -0
- package/Libraries/LogBox/UI/LogBoxNotificationDismissButton.js +67 -0
- package/Libraries/LogBox/UI/LogBoxNotificationMessage.js +57 -0
- package/Libraries/LogBox/UI/LogBoxStyle.js +1 -3
- package/Libraries/LogBox/UI/LogBoxStyle.win32.js +65 -0
- package/Libraries/Modal/Modal.d.ts +111 -0
- package/Libraries/Modal/Modal.js +147 -72
- package/Libraries/Modal/ModalInjection.js +15 -0
- package/Libraries/Modal/NativeModalManager.js +5 -14
- package/Libraries/Modal/RCTModalHostViewNativeComponent.js +4 -117
- package/Libraries/NativeComponent/BaseViewConfig.android.js +357 -0
- package/Libraries/NativeComponent/BaseViewConfig.ios.js +422 -0
- package/Libraries/NativeComponent/BaseViewConfig.win32.js +414 -0
- package/Libraries/NativeComponent/NativeComponentRegistry.js +164 -0
- package/Libraries/NativeComponent/NativeComponentRegistryUnstable.js +30 -0
- package/Libraries/NativeComponent/PlatformBaseViewConfig.js +25 -0
- package/Libraries/NativeComponent/StaticViewConfigValidator.js +144 -0
- package/Libraries/NativeComponent/ViewConfig.js +52 -0
- package/Libraries/NativeComponent/ViewConfigIgnore.js +51 -0
- package/Libraries/NativeModules/specs/NativeDevMenu.js +5 -16
- package/Libraries/NativeModules/specs/NativeDevSettings.js +5 -26
- package/Libraries/NativeModules/specs/NativeDeviceEventManager.js +5 -12
- package/Libraries/NativeModules/specs/NativeDialogManagerAndroid.js +5 -41
- package/Libraries/NativeModules/specs/NativeLogBox.js +5 -13
- package/Libraries/NativeModules/specs/NativeRedBox.js +5 -13
- package/Libraries/NativeModules/specs/NativeSourceCode.js +5 -14
- package/Libraries/Network/FormData.js +13 -5
- package/Libraries/Network/NativeNetworkingAndroid.js +5 -30
- package/Libraries/Network/NativeNetworkingIOS.js +5 -30
- package/Libraries/Network/RCTNetworking.android.js +16 -12
- package/Libraries/Network/RCTNetworking.ios.js +67 -18
- package/Libraries/Network/RCTNetworking.win32.js +84 -68
- package/Libraries/Network/XHRInterceptor.js +66 -18
- package/Libraries/Network/XMLHttpRequest.js +81 -30
- package/Libraries/Network/convertRequestBody.js +4 -4
- package/Libraries/Network/fetch.js +2 -1
- package/Libraries/NewAppScreen/components/Colors.js +2 -3
- package/Libraries/NewAppScreen/components/DebugInstructions.js +9 -6
- package/Libraries/NewAppScreen/components/Header.js +38 -16
- package/Libraries/NewAppScreen/components/HermesBadge.js +53 -0
- package/Libraries/NewAppScreen/components/LearnMoreLinks.js +52 -27
- package/Libraries/NewAppScreen/components/ReloadInstructions.js +5 -2
- package/Libraries/NewAppScreen/components/logo.png +0 -0
- package/Libraries/NewAppScreen/index.js +12 -6
- package/Libraries/Performance/NativeJSCSamplingProfiler.js +5 -12
- package/Libraries/Performance/SamplingProfiler.js +5 -5
- package/Libraries/Performance/Systrace.d.ts +66 -0
- package/Libraries/Performance/Systrace.js +116 -171
- package/Libraries/PermissionsAndroid/NativePermissionsAndroid.js +5 -52
- package/Libraries/PermissionsAndroid/PermissionsAndroid.d.ts +116 -0
- package/Libraries/PermissionsAndroid/PermissionsAndroid.js +60 -23
- package/Libraries/PersonaCoin/PersonaCoin.d.ts +3 -3
- package/Libraries/PersonaCoin/PersonaCoin.js +15 -22
- package/Libraries/PersonaCoin/PersonaCoin.js.map +1 -0
- package/Libraries/PersonaCoin/PersonaCoinPropTypes.d.ts +2 -2
- package/Libraries/PersonaCoin/PersonaCoinPropTypes.js +20 -20
- package/Libraries/PersonaCoin/PersonaCoinPropTypes.js.map +1 -0
- package/Libraries/PersonaCoin/PersonaCoinTypes.d.ts +33 -33
- package/Libraries/PersonaCoin/PersonaCoinTypes.js +24 -24
- package/Libraries/PersonaCoin/PersonaCoinTypes.js.map +1 -0
- package/Libraries/Pressability/HoverState.js +2 -4
- package/Libraries/Pressability/HoverState.win32.js +60 -0
- package/Libraries/Pressability/Pressability.js +243 -148
- package/Libraries/Pressability/Pressability.win32.js +1094 -0
- package/Libraries/Pressability/PressabilityDebug.js +31 -27
- package/Libraries/Pressability/PressabilityPerformanceEventEmitter.js +49 -0
- package/Libraries/Pressability/PressabilityTypes.js +18 -0
- package/Libraries/Pressability/usePressability.js +25 -11
- package/Libraries/Promise.js +5 -35
- package/Libraries/PushNotificationIOS/NativePushNotificationManagerIOS.js +5 -66
- package/Libraries/PushNotificationIOS/PushNotificationIOS.d.ts +295 -0
- package/Libraries/PushNotificationIOS/PushNotificationIOS.js +134 -83
- package/Libraries/QuirkSettings/CachingNativeQuirkSettings.js +30 -0
- package/Libraries/QuirkSettings/NativeQuirkSettings.js +17 -0
- package/Libraries/QuirkSettings/QuirkSettings.js +34 -0
- package/Libraries/QuirkSettings/Quirks.js +17 -0
- package/Libraries/ReactNative/AppContainer-dev.js +208 -0
- package/Libraries/ReactNative/AppContainer-prod.js +50 -0
- package/Libraries/ReactNative/AppContainer.js +13 -138
- package/Libraries/ReactNative/AppRegistry.d.ts +121 -0
- package/Libraries/ReactNative/AppRegistry.js +133 -78
- package/Libraries/ReactNative/BridgelessUIManager.js +419 -0
- package/Libraries/ReactNative/DisplayMode.js +32 -0
- package/Libraries/ReactNative/FabricUIManager.js +116 -27
- package/Libraries/ReactNative/HeadlessJsTaskError.js +1 -3
- package/Libraries/ReactNative/I18nManager.d.ts +25 -0
- package/Libraries/ReactNative/I18nManager.js +17 -12
- package/Libraries/ReactNative/NativeHeadlessJsTaskSupport.js +5 -13
- package/Libraries/ReactNative/NativeI18nManager.js +5 -18
- package/Libraries/ReactNative/NativeUIManager.js +5 -114
- package/Libraries/ReactNative/PaperUIManager.js +79 -52
- package/Libraries/ReactNative/PaperUIManager.win32.js +210 -0
- package/Libraries/ReactNative/ReactFabricInternals.js +2 -2
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +151 -0
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +100 -0
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstanceUtils.js +38 -0
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactNativeAttributePayload.js +492 -0
- package/Libraries/ReactNative/ReactFabricPublicInstance/warnForStyleProps.js +33 -0
- package/Libraries/ReactNative/ReactNativeFeatureFlags.js +31 -0
- package/Libraries/ReactNative/ReactNativeRuntimeDiagnostics.js +68 -0
- package/Libraries/ReactNative/RendererImplementation.js +163 -0
- package/Libraries/ReactNative/RendererProxy.d.ts +20 -0
- package/Libraries/ReactNative/RendererProxy.js +26 -0
- package/Libraries/ReactNative/RootTag.d.ts +13 -0
- package/Libraries/ReactNative/RootTag.js +27 -0
- package/Libraries/ReactNative/UIManager.d.ts +113 -0
- package/Libraries/ReactNative/UIManager.js +178 -24
- package/Libraries/ReactNative/UIManagerProperties.js +3 -8
- package/Libraries/ReactNative/__mocks__/FabricUIManager.js +334 -0
- package/Libraries/ReactNative/getCachedComponentWithDebugName.js +35 -0
- package/Libraries/ReactNative/getNativeComponentAttributes.js +51 -25
- package/Libraries/ReactNative/renderApplication.js +71 -23
- package/Libraries/ReactNative/requireNativeComponent.d.ts +23 -0
- package/Libraries/ReactNative/requireNativeComponent.js +4 -4
- package/Libraries/ReactPrivate/ReactNativePrivateInitializeCore.js +1 -1
- package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +66 -11
- package/Libraries/Renderer/implementations/ReactFabric-dev.js +16225 -19958
- package/Libraries/Renderer/implementations/ReactFabric-prod.js +8087 -5327
- package/Libraries/Renderer/implementations/ReactFabric-profiling.js +8773 -5583
- package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +16543 -20582
- package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +8148 -5386
- package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +8836 -5645
- package/Libraries/Renderer/shims/ReactFabric.js +9 -8
- package/Libraries/Renderer/shims/ReactFeatureFlags.js +4 -2
- package/Libraries/Renderer/shims/ReactNative.js +4 -3
- package/Libraries/Renderer/shims/ReactNativeTypes.js +238 -77
- package/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +27 -37
- package/Libraries/Renderer/shims/createReactNativeComponentClass.js +7 -6
- package/Libraries/Settings/NativeSettingsManager.js +5 -18
- package/Libraries/Settings/Settings.d.ts +18 -0
- package/Libraries/Settings/Settings.ios.js +7 -7
- package/Libraries/Settings/Settings.js +33 -0
- package/Libraries/Share/NativeShareModule.js +5 -16
- package/Libraries/Share/Share.d.ts +80 -0
- package/Libraries/Share/Share.js +33 -25
- package/Libraries/StyleSheet/EdgeInsetsPropType.js +5 -2
- package/Libraries/StyleSheet/PlatformColorValueTypes.android.js +10 -11
- package/Libraries/StyleSheet/PlatformColorValueTypes.d.ts +18 -0
- package/Libraries/StyleSheet/PlatformColorValueTypes.ios.js +52 -16
- package/Libraries/StyleSheet/PlatformColorValueTypes.win32.js +15 -5
- package/Libraries/StyleSheet/PlatformColorValueTypesIOS.d.ts +25 -0
- package/Libraries/StyleSheet/PlatformColorValueTypesIOS.ios.js +11 -5
- package/Libraries/StyleSheet/PlatformColorValueTypesIOS.js +4 -4
- package/Libraries/StyleSheet/PlatformColorValueTypesWin32.d.ts +2 -4
- package/Libraries/StyleSheet/PlatformColorValueTypesWin32.js +2 -2
- package/Libraries/StyleSheet/PointPropType.js +1 -1
- package/Libraries/StyleSheet/Rect.js +1 -3
- package/Libraries/StyleSheet/StyleSheet.d.ts +150 -0
- package/Libraries/StyleSheet/StyleSheet.js +42 -56
- package/Libraries/StyleSheet/StyleSheet.win32.js +43 -57
- package/Libraries/StyleSheet/StyleSheetTypes.d.ts +566 -0
- package/Libraries/StyleSheet/StyleSheetTypes.js +444 -130
- package/Libraries/StyleSheet/__flowtests__/StyleSheet-flowtest.js +11 -35
- package/Libraries/StyleSheet/flattenStyle.js +14 -9
- package/Libraries/StyleSheet/normalizeColor.js +11 -370
- package/Libraries/StyleSheet/private/_StyleSheetTypesOverrides.js +15 -0
- package/Libraries/StyleSheet/private/_TransformStyle.js +69 -0
- package/Libraries/StyleSheet/processAspectRatio.js +63 -0
- package/Libraries/StyleSheet/processBackgroundImage.js +384 -0
- package/Libraries/StyleSheet/processBoxShadow.js +209 -0
- package/Libraries/StyleSheet/processColor.d.ts +16 -0
- package/Libraries/StyleSheet/processColor.js +6 -8
- package/Libraries/StyleSheet/processColorArray.js +18 -7
- package/Libraries/StyleSheet/processFilter.js +321 -0
- package/Libraries/StyleSheet/processFontVariant.js +30 -0
- package/Libraries/StyleSheet/processTransform.js +156 -111
- package/Libraries/StyleSheet/processTransformOrigin.js +136 -0
- package/Libraries/StyleSheet/setNormalizedColorAlpha.js +1 -1
- package/Libraries/StyleSheet/splitLayoutProps.js +57 -49
- package/Libraries/Text/Text.d.ts +304 -0
- package/Libraries/Text/Text.js +504 -268
- package/Libraries/Text/Text.win32.js +590 -0
- package/Libraries/Text/TextAncestor.js +7 -2
- package/Libraries/Text/TextNativeComponent.js +82 -0
- package/Libraries/Text/TextNativeComponent.win32.js +117 -0
- package/Libraries/Text/TextProps.js +107 -29
- package/Libraries/Text/TextProps.win32.js +281 -0
- package/Libraries/TurboModule/RCTExport.d.ts +12 -0
- package/Libraries/TurboModule/RCTExport.js +3 -1
- package/Libraries/TurboModule/TurboModuleRegistry.d.ts +13 -0
- package/Libraries/TurboModule/TurboModuleRegistry.js +24 -16
- package/Libraries/TurboModule/samples/NativeSampleTurboModule.js +5 -28
- package/Libraries/Types/CodegenTypes.js +9 -2
- package/Libraries/Types/CoreEventTypes.d.ts +266 -0
- package/Libraries/Types/CoreEventTypes.js +143 -6
- package/Libraries/Types/CoreEventTypes.win32.js +342 -0
- package/Libraries/Types/ReactDevToolsTypes.js +58 -0
- package/Libraries/Types/RootTagTypes.js +11 -0
- package/Libraries/Types/UIManagerJSInterface.js +16 -0
- package/Libraries/UTFSequence.js +6 -4
- package/Libraries/Utilities/Appearance.d.ts +53 -0
- package/Libraries/Utilities/Appearance.js +116 -63
- package/Libraries/Utilities/BackHandler.android.js +14 -23
- package/Libraries/Utilities/BackHandler.d.ts +38 -0
- package/Libraries/Utilities/BackHandler.ios.js +14 -96
- package/Libraries/Utilities/BackHandler.win32.js +107 -7
- package/Libraries/Utilities/DebugEnvironment.js +16 -0
- package/Libraries/Utilities/DevLoadingView.js +64 -0
- package/Libraries/Utilities/DevSettings.d.ts +32 -0
- package/Libraries/Utilities/DevSettings.js +55 -48
- package/Libraries/Utilities/DeviceInfo.js +1 -3
- package/Libraries/Utilities/DeviceInfo.win32.js +0 -2
- package/Libraries/Utilities/Dimensions.d.ts +79 -0
- package/Libraries/Utilities/Dimensions.js +30 -49
- package/Libraries/Utilities/Dimensions.win32.js +106 -18
- package/Libraries/Utilities/FeatureDetection.js +31 -0
- package/Libraries/Utilities/FocusManager.win32.d.ts +12 -0
- package/Libraries/Utilities/FocusManager.win32.js +42 -0
- package/Libraries/Utilities/GlobalPerformanceLogger.js +4 -5
- package/Libraries/Utilities/HMRClient.js +102 -39
- package/Libraries/Utilities/HMRClientProdShim.js +2 -1
- package/Libraries/Utilities/IPerformanceLogger.d.ts +48 -0
- package/Libraries/Utilities/IPerformanceLogger.js +49 -0
- package/Libraries/Utilities/NativeAppearance.js +5 -28
- package/Libraries/Utilities/NativeDevLoadingView.js +5 -17
- package/Libraries/Utilities/NativeDeviceInfo.js +4 -40
- package/Libraries/Utilities/NativePlatformConstantsAndroid.js +5 -30
- package/Libraries/Utilities/NativePlatformConstantsIOS.js +5 -26
- package/Libraries/Utilities/NativePlatformConstantsWin.js +4 -21
- package/Libraries/Utilities/PerformanceLoggerContext.js +17 -10
- package/Libraries/Utilities/PixelRatio.d.ts +64 -0
- package/Libraries/Utilities/PixelRatio.js +6 -6
- package/Libraries/Utilities/Platform.android.js +37 -16
- package/Libraries/Utilities/Platform.d.ts +106 -0
- package/Libraries/Utilities/Platform.flow.js +91 -0
- package/Libraries/Utilities/Platform.flow.win32.js +124 -0
- package/Libraries/Utilities/Platform.ios.js +39 -19
- package/Libraries/Utilities/Platform.win32.js +42 -15
- package/Libraries/Utilities/PolyfillFunctions.js +6 -6
- package/Libraries/Utilities/RCTLog.js +6 -5
- package/Libraries/Utilities/ReactNativeTestTools.js +36 -58
- package/Libraries/Utilities/SceneTracker.js +6 -5
- package/Libraries/Utilities/__mocks__/BackHandler.js +6 -6
- package/Libraries/Utilities/__mocks__/GlobalPerformanceLogger.js +1 -1
- package/Libraries/Utilities/__mocks__/PixelRatio.js +2 -2
- package/Libraries/Utilities/binaryToBase64.js +6 -4
- package/Libraries/Utilities/codegenNativeCommands.js +6 -6
- package/Libraries/Utilities/codegenNativeComponent.js +24 -14
- package/Libraries/Utilities/createPerformanceLogger.js +259 -244
- package/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.js +12 -6
- package/Libraries/Utilities/defineLazyObjectProperty.js +3 -3
- package/Libraries/Utilities/differ/deepDiffer.js +3 -3
- package/Libraries/Utilities/differ/insetsDiffer.js +2 -2
- package/Libraries/Utilities/differ/matricesDiffer.js +6 -2
- package/Libraries/Utilities/differ/pointsDiffer.js +2 -2
- package/Libraries/Utilities/differ/sizesDiffer.js +11 -5
- package/Libraries/Utilities/dismissKeyboard.js +1 -1
- package/Libraries/Utilities/infoLog.js +3 -2
- package/Libraries/Utilities/logError.js +2 -2
- package/Libraries/Utilities/mapWithSeparator.js +1 -1
- package/Libraries/Utilities/stringifySafe.js +8 -8
- package/Libraries/Utilities/stringifyViewConfig.js +22 -0
- package/Libraries/Utilities/useColorScheme.js +10 -16
- package/Libraries/Utilities/useMergeRefs.js +40 -0
- package/Libraries/Utilities/useRefEffect.js +45 -0
- package/Libraries/Utilities/useWindowDimensions.js +15 -8
- package/Libraries/Utilities/warnOnce.js +3 -5
- package/Libraries/Vibration/NativeVibration.js +5 -17
- package/Libraries/Vibration/Vibration.d.ts +43 -0
- package/Libraries/Vibration/Vibration.js +16 -14
- package/Libraries/WebSocket/NativeWebSocketModule.js +5 -27
- package/Libraries/WebSocket/WebSocket.js +47 -27
- package/Libraries/WebSocket/WebSocketEvent.js +5 -2
- package/Libraries/WebSocket/WebSocketInterceptor.js +46 -27
- package/Libraries/WebSocket/__mocks__/event-target-shim.js +1 -1
- package/Libraries/YellowBox/YellowBoxDeprecated.d.ts +19 -0
- package/Libraries/YellowBox/YellowBoxDeprecated.js +6 -6
- package/Libraries/__flowtests__/ReactNativeTypes-flowtest.js +2 -3
- package/Libraries/__tests__/ButtonWin32-test.js +17 -0
- package/Libraries/platform-types.d.ts +25 -0
- package/Libraries/promiseRejectionTrackingOptions.js +72 -0
- package/Libraries/vendor/core/ErrorUtils.d.ts +15 -0
- package/Libraries/vendor/core/ErrorUtils.js +2 -2
- package/Libraries/vendor/emitter/EventEmitter.d.ts +164 -0
- package/Libraries/vendor/emitter/EventEmitter.js +123 -193
- package/Libraries/vendor/emitter/__flowtests__/EventEmitter-flowtest.js +81 -0
- package/babel.config.js +3 -0
- package/flow/HermesInternalType.js +114 -0
- package/flow/Position.js +1 -1
- package/flow/Stringish.js +1 -1
- package/flow/console.js +1 -1
- package/flow/global.js +87 -0
- package/flow/jest.js +266 -168
- package/flow/react.js +15 -0
- package/index.js +355 -253
- package/index.win32.js +765 -42
- package/interface.js +9 -9
- package/jest/MockNativeMethods.js +1 -1
- package/jest/__tests__/setup-test.js +18 -0
- package/jest/assetFileTransformer.js +7 -5
- package/jest/local-setup.js +28 -0
- package/jest/mockComponent.js +28 -16
- package/jest/mockModal.js +32 -0
- package/jest/mockNativeComponent.js +40 -0
- package/jest/mockScrollView.js +35 -0
- package/jest/react-native-env.js +16 -0
- package/jest/renderer.js +29 -22
- package/jest/setup.js +158 -88
- package/jest-snapshot-resolver.js +2 -0
- package/jest.config.js +38 -0
- package/just-task.js +11 -53
- package/metro.config.js +5 -20
- package/metroShortPathAssetDataPlugin.js +15 -0
- package/overrides.json +534 -0
- package/package.json +90 -48
- package/react-native.config.js +2 -0
- package/rn-get-polyfills.js +3 -6
- package/saveAssetPlugin.js +45 -0
- package/src/private/animated/NativeAnimatedHelper.js +442 -0
- package/src/private/animated/NativeAnimatedHelper.win32.js +444 -0
- package/src/private/animated/NativeAnimatedValidation.js +64 -0
- package/src/private/animated/useAnimatedPropsMemo.js +349 -0
- package/src/private/components/HScrollViewNativeComponents.js +56 -0
- package/src/private/components/SafeAreaView_INTERNAL_DO_NOT_USE.js +31 -0
- package/src/private/components/VScrollViewNativeComponents.js +48 -0
- package/src/private/components/useSyncOnScroll.js +48 -0
- package/src/private/devmenu/DevMenu.d.ts +20 -0
- package/src/private/devmenu/DevMenu.js +31 -0
- package/src/private/featureflags/ReactNativeFeatureFlags.js +399 -0
- package/src/private/featureflags/ReactNativeFeatureFlagsBase.js +109 -0
- package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +84 -0
- package/src/private/fusebox/FuseboxSessionObserver.js +42 -0
- package/src/private/fusebox/setUpFuseboxReactDevToolsDispatcher.js +108 -0
- package/src/private/reactdevtools/ReactDevToolsSettingsManager.android.js +20 -0
- package/src/private/reactdevtools/ReactDevToolsSettingsManager.ios.js +30 -0
- package/src/private/reactdevtools/ReactDevToolsSettingsManager.win32.js +20 -0
- package/src/private/renderer/errorhandling/ErrorHandlers.js +126 -0
- package/src/private/setup/setUpDOM.js +28 -0
- package/src/private/setup/setUpIntersectionObserver.js +27 -0
- package/src/private/setup/setUpMutationObserver.js +26 -0
- package/src/private/setup/setUpPerformanceObserver.js +64 -0
- package/src/private/specs/components/ActivityIndicatorViewNativeComponent.js +53 -0
- package/src/private/specs/components/AndroidDrawerLayoutNativeComponent.js +124 -0
- package/src/private/specs/components/AndroidHorizontalScrollContentViewNativeComponent.js +27 -0
- package/src/private/specs/components/AndroidSwipeRefreshLayoutNativeComponent.js +74 -0
- package/src/private/specs/components/AndroidSwitchNativeComponent.js +62 -0
- package/src/private/specs/components/DebuggingOverlayNativeComponent.js +61 -0
- package/src/private/specs/components/ProgressBarAndroidNativeComponent.js +36 -0
- package/src/private/specs/components/PullToRefreshViewNativeComponent.js +71 -0
- package/src/private/specs/components/RCTInputAccessoryViewNativeComponent.js +26 -0
- package/src/private/specs/components/RCTModalHostViewNativeComponent.js +139 -0
- package/src/private/specs/components/RCTSafeAreaViewNativeComponent.js +25 -0
- package/src/private/specs/components/SwitchNativeComponent.js +61 -0
- package/src/private/specs/components/UnimplementedNativeViewNativeComponent.js +26 -0
- package/src/private/specs/modules/NativeAccessibilityInfo.js +33 -0
- package/src/private/specs/modules/NativeAccessibilityInfoWin32.js +39 -0
- package/src/private/specs/modules/NativeAccessibilityManager.js +66 -0
- package/src/private/specs/modules/NativeActionSheetManager.js +54 -0
- package/src/private/specs/modules/NativeAlertManager.js +35 -0
- package/src/private/specs/modules/NativeAnimatedModule.js +77 -0
- package/src/private/specs/modules/NativeAnimatedTurboModule.js +78 -0
- package/src/private/specs/modules/NativeAppState.js +33 -0
- package/src/private/specs/modules/NativeAppearance.js +36 -0
- package/src/private/specs/modules/NativeBlobModule.js +61 -0
- package/src/private/specs/modules/NativeBugReporting.js +20 -0
- package/src/private/specs/modules/NativeClipboard.js +21 -0
- package/src/private/specs/modules/NativeDevLoadingView.js +24 -0
- package/src/private/specs/modules/NativeDevMenu.js +23 -0
- package/src/private/specs/modules/NativeDevSettings.js +34 -0
- package/src/private/specs/modules/NativeDeviceEventManager.js +19 -0
- package/src/private/specs/modules/NativeDeviceInfo.js +58 -0
- package/src/private/specs/modules/NativeDialogManagerAndroid.js +48 -0
- package/src/private/specs/modules/NativeExceptionsManager.js +103 -0
- package/src/private/specs/modules/NativeFileReaderModule.js +22 -0
- package/src/private/specs/modules/NativeFrameRateLogger.js +22 -0
- package/src/private/specs/modules/NativeHeadlessJsTaskSupport.js +20 -0
- package/src/private/specs/modules/NativeI18nManager.js +28 -0
- package/src/private/specs/modules/NativeImageEditor.js +52 -0
- package/src/private/specs/modules/NativeImageLoaderAndroid.js +30 -0
- package/src/private/specs/modules/NativeImageLoaderIOS.js +37 -0
- package/src/private/specs/modules/NativeImageLoaderWin32.js +45 -0
- package/src/private/specs/modules/NativeImageStoreAndroid.js +26 -0
- package/src/private/specs/modules/NativeImageStoreIOS.js +33 -0
- package/src/private/specs/modules/NativeIntentAndroid.js +30 -0
- package/src/private/specs/modules/NativeJSCHeapCapture.js +19 -0
- package/src/private/specs/modules/NativeJSCSamplingProfiler.js +19 -0
- package/src/private/specs/modules/NativeKeyboardObserver.js +20 -0
- package/src/private/specs/modules/NativeLinkingManager.js +27 -0
- package/src/private/specs/modules/NativeLogBox.js +20 -0
- package/src/private/specs/modules/NativeModalManager.js +21 -0
- package/src/private/specs/modules/NativeNetworkingAndroid.js +37 -0
- package/src/private/specs/modules/NativeNetworkingIOS.js +37 -0
- package/src/private/specs/modules/NativePermissionsAndroid.js +77 -0
- package/src/private/specs/modules/NativePlatformConstantsAndroid.js +44 -0
- package/src/private/specs/modules/NativePlatformConstantsIOS.js +37 -0
- package/src/private/specs/modules/NativePlatformConstantsWin.js +44 -0
- package/src/private/specs/modules/NativePushNotificationManagerIOS.js +103 -0
- package/src/private/specs/modules/NativeReactDevToolsSettingsManager.js +22 -0
- package/src/private/specs/modules/NativeRedBox.js +20 -0
- package/src/private/specs/modules/NativeSampleTurboModule.js +66 -0
- package/src/private/specs/modules/NativeSegmentFetcher.js +28 -0
- package/src/private/specs/modules/NativeSettingsManager.js +25 -0
- package/src/private/specs/modules/NativeShareModule.js +23 -0
- package/src/private/specs/modules/NativeSoundManager.js +22 -0
- package/src/private/specs/modules/NativeSourceCode.js +36 -0
- package/src/private/specs/modules/NativeStatusBarManagerAndroid.js +68 -0
- package/src/private/specs/modules/NativeStatusBarManagerIOS.js +89 -0
- package/src/private/specs/modules/NativeTiming.js +26 -0
- package/src/private/specs/modules/NativeToastAndroid.js +38 -0
- package/src/private/specs/modules/NativeUIManager.js +111 -0
- package/src/private/specs/modules/NativeVibration.js +24 -0
- package/src/private/specs/modules/NativeWebSocketModule.js +34 -0
- package/src/private/styles/composeStyles.js +27 -0
- package/src/private/webapis/dom/geometry/DOMRect.js +82 -0
- package/src/private/webapis/dom/geometry/DOMRectReadOnly.js +188 -0
- package/src/private/webapis/dom/nodes/ReactNativeElement.js +189 -0
- package/src/private/webapis/dom/nodes/ReadOnlyCharacterData.js +71 -0
- package/src/private/webapis/dom/nodes/ReadOnlyElement.js +247 -0
- package/src/private/webapis/dom/nodes/ReadOnlyNode.js +359 -0
- package/src/private/webapis/dom/nodes/ReadOnlyText.js +30 -0
- package/src/private/webapis/dom/nodes/specs/NativeDOM.js +468 -0
- package/src/private/webapis/dom/nodes/specs/__mocks__/NativeDOMMock.js +413 -0
- package/src/private/webapis/dom/nodes/utilities/Traversal.js +54 -0
- package/src/private/webapis/dom/oldstylecollections/ArrayLikeUtils.js +46 -0
- package/src/private/webapis/dom/oldstylecollections/DOMRectList.js +76 -0
- package/src/private/webapis/dom/oldstylecollections/HTMLCollection.js +82 -0
- package/src/private/webapis/dom/oldstylecollections/NodeList.js +104 -0
- package/src/private/webapis/idlecallbacks/specs/NativeIdleCallbacks.js +34 -0
- package/src/private/webapis/intersectionobserver/IntersectionObserver.js +254 -0
- package/src/private/webapis/intersectionobserver/IntersectionObserverEntry.js +141 -0
- package/src/private/webapis/intersectionobserver/IntersectionObserverManager.js +276 -0
- package/src/private/webapis/intersectionobserver/specs/NativeIntersectionObserver.js +41 -0
- package/src/private/webapis/intersectionobserver/specs/__mocks__/NativeIntersectionObserver.js +172 -0
- package/src/private/webapis/microtasks/specs/NativeMicrotasks.js +21 -0
- package/src/private/webapis/mutationobserver/MutationObserver.js +186 -0
- package/src/private/webapis/mutationobserver/MutationObserverManager.js +227 -0
- package/src/private/webapis/mutationobserver/MutationRecord.js +82 -0
- package/src/private/webapis/mutationobserver/specs/NativeMutationObserver.js +58 -0
- package/src/private/webapis/mutationobserver/specs/__mocks__/NativeMutationObserver.js +327 -0
- package/src/private/webapis/performance/EventTiming.js +140 -0
- package/src/private/webapis/performance/LongTasks.js +39 -0
- package/src/private/webapis/performance/MemoryInfo.js +54 -0
- package/src/private/webapis/performance/Performance.js +288 -0
- package/src/private/webapis/performance/PerformanceEntry.js +71 -0
- package/src/private/webapis/performance/PerformanceObserver.js +244 -0
- package/src/private/webapis/performance/RawPerformanceEntry.js +105 -0
- package/src/private/webapis/performance/ReactNativeStartupTiming.js +91 -0
- package/src/private/webapis/performance/UserTiming.js +68 -0
- package/src/private/webapis/performance/Utilities.js +25 -0
- package/src/private/webapis/performance/specs/NativePerformance.js +34 -0
- package/src/private/webapis/performance/specs/NativePerformanceObserver.js +69 -0
- package/src/private/webapis/performance/specs/__mocks__/NativePerformance.js +69 -0
- package/src/private/webapis/performance/specs/__mocks__/NativePerformanceObserver.js +154 -0
- package/src-win/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts +161 -0
- package/src-win/Libraries/Components/Button/ButtonWin32.Props.ts +45 -0
- package/src-win/Libraries/Components/Button/ButtonWin32.tsx +94 -0
- package/src-win/Libraries/Components/EnterString.win32.tsx +110 -0
- package/src-win/Libraries/Components/TextInput/Tests/TextInputTest.tsx +185 -0
- package/src-win/Libraries/Components/Touchable/Tests/TouchableWin32Test.tsx +502 -0
- package/src-win/Libraries/Components/Touchable/TouchableNativeFeedback.d.ts +119 -0
- package/src-win/Libraries/Components/Touchable/TouchableWin32.Props.tsx +46 -0
- package/src-win/Libraries/Components/Touchable/TouchableWin32.Types.tsx +137 -0
- package/src-win/Libraries/Components/Touchable/TouchableWin32.tsx +624 -0
- package/src-win/Libraries/Components/View/ViewAccessibility.d.ts +566 -0
- package/src-win/Libraries/Components/View/ViewPropTypes.d.ts +354 -0
- package/src-win/Libraries/Components/View/ViewWin32.d.ts +30 -0
- package/src-win/Libraries/Image/ImageTypes.ts +27 -0
- package/src-win/Libraries/Image/Tests/ImageWin32Test.tsx +22 -0
- package/src-win/Libraries/Image/Tests/img/dpitest.png +0 -0
- package/src-win/Libraries/Image/Tests/img/dpitest@1.5x.png +0 -0
- package/src-win/Libraries/Image/Tests/img/dpitest@2x.png +0 -0
- package/src-win/Libraries/Image/Tests/img/dpitest@3x.png +0 -0
- package/src-win/Libraries/Image/Tests/img/en-us/dpitest.png +0 -0
- package/src-win/Libraries/Image/Tests/img/en-us/dpitest@1.5x.png +0 -0
- package/src-win/Libraries/Image/Tests/img/en-us/dpitest@3x.png +0 -0
- package/src-win/Libraries/PersonaCoin/PersonaCoin.tsx +12 -0
- package/src-win/Libraries/PersonaCoin/PersonaCoinPropTypes.ts +17 -0
- package/src-win/Libraries/PersonaCoin/PersonaCoinTypes.ts +36 -0
- package/src-win/Libraries/StyleSheet/PlatformColorValueTypesWin32.d.ts +38 -0
- package/src-win/Libraries/Text/Text.d.ts +304 -0
- package/src-win/Libraries/Utilities/FocusManager.win32.d.ts +12 -0
- package/src-win/Libraries/__tests__/__snapshots__/ButtonWin32-test.js.snap +22 -0
- package/src-win/Libraries/platform-types.d.ts +25 -0
- package/types/experimental.d.ts +59 -0
- package/types/index.d.ts +218 -0
- package/types/modules/BatchedBridge.d.ts +32 -0
- package/types/modules/Codegen.d.ts +80 -0
- package/types/modules/Devtools.d.ts +32 -0
- package/types/modules/LaunchScreen.d.ts +18 -0
- package/types/modules/globals.d.ts +599 -0
- package/types/private/TimerMixin.d.ts +19 -0
- package/types/private/Utilities.d.ts +10 -0
- package/types/public/DeprecatedPropertiesAlias.d.ts +185 -0
- package/types/public/Insets.d.ts +15 -0
- package/types/public/ReactNativeRenderer.d.ts +144 -0
- package/types/public/ReactNativeTypes.d.ts +139 -0
- package/IntegrationTests/AsyncStorageTest.js +0 -217
- package/IntegrationTests/PropertiesUpdateTest.js +0 -29
- package/IntegrationTests/RCTRootViewIntegrationTestApp.js +0 -92
- package/IntegrationTests/ReactContentSizeUpdateTest.js +0 -91
- package/IntegrationTests/SizeFlexibilityUpdateTest.js +0 -108
- package/IntegrationTests/launchWebSocketServer.command +0 -18
- package/Libraries/Animated/examples/demo.html +0 -712
- package/Libraries/Animated/examples/pic1.jpg +0 -0
- package/Libraries/Animated/examples/pic2.jpg +0 -0
- package/Libraries/Animated/examples/pic3.jpg +0 -0
- package/Libraries/Animated/release/gulpfile.js +0 -155
- package/Libraries/Animated/src/Animated.js +0 -49
- package/Libraries/Animated/src/AnimatedEvent.js +0 -233
- package/Libraries/Animated/src/AnimatedImplementation.js +0 -712
- package/Libraries/Animated/src/AnimatedMock.js +0 -156
- package/Libraries/Animated/src/AnimatedWeb.js +0 -23
- package/Libraries/Animated/src/Easing.js +0 -252
- package/Libraries/Animated/src/NativeAnimatedHelper.js +0 -342
- package/Libraries/Animated/src/NativeAnimatedModule.js +0 -66
- package/Libraries/Animated/src/SpringConfig.js +0 -103
- package/Libraries/Animated/src/animations/Animation.js +0 -73
- package/Libraries/Animated/src/animations/DecayAnimation.js +0 -120
- package/Libraries/Animated/src/animations/SpringAnimation.js +0 -359
- package/Libraries/Animated/src/animations/TimingAnimation.js +0 -165
- package/Libraries/Animated/src/bezier.js +0 -153
- package/Libraries/Animated/src/components/AnimatedFlatList.js +0 -32
- package/Libraries/Animated/src/components/AnimatedImage.js +0 -25
- package/Libraries/Animated/src/components/AnimatedScrollView.js +0 -32
- package/Libraries/Animated/src/components/AnimatedSectionList.js +0 -32
- package/Libraries/Animated/src/components/AnimatedText.js +0 -25
- package/Libraries/Animated/src/components/AnimatedView.js +0 -23
- package/Libraries/Animated/src/createAnimatedComponent.js +0 -223
- package/Libraries/Animated/src/nodes/AnimatedAddition.js +0 -63
- package/Libraries/Animated/src/nodes/AnimatedDiffClamp.js +0 -71
- package/Libraries/Animated/src/nodes/AnimatedDivision.js +0 -68
- package/Libraries/Animated/src/nodes/AnimatedInterpolation.js +0 -373
- package/Libraries/Animated/src/nodes/AnimatedModulo.js +0 -62
- package/Libraries/Animated/src/nodes/AnimatedMultiplication.js +0 -63
- package/Libraries/Animated/src/nodes/AnimatedNode.js +0 -184
- package/Libraries/Animated/src/nodes/AnimatedProps.js +0 -176
- package/Libraries/Animated/src/nodes/AnimatedStyle.js +0 -127
- package/Libraries/Animated/src/nodes/AnimatedSubtraction.js +0 -63
- package/Libraries/Animated/src/nodes/AnimatedTracking.js +0 -102
- package/Libraries/Animated/src/nodes/AnimatedTransform.js +0 -121
- package/Libraries/Animated/src/nodes/AnimatedValue.js +0 -265
- package/Libraries/Animated/src/nodes/AnimatedValueXY.js +0 -226
- package/Libraries/Animated/src/nodes/AnimatedWithChildren.js +0 -87
- package/Libraries/Animated/src/polyfills/InteractionManager.js +0 -15
- package/Libraries/Animated/src/polyfills/Set.js +0 -26
- package/Libraries/Animated/src/polyfills/flattenStyle.js +0 -13
- package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.android.js +0 -162
- package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.ios.js +0 -271
- package/Libraries/Components/AccessibilityInfo/NativeAccessibilityInfo.win32.js +0 -33
- package/Libraries/Components/AppleTV/NativeTVNavigationEventEmitter.js +0 -23
- package/Libraries/Components/AppleTV/TVEventHandler.js +0 -52
- package/Libraries/Components/CheckBox/AndroidCheckBoxNativeComponent.js +0 -74
- package/Libraries/Components/CheckBox/CheckBox.android.js +0 -228
- package/Libraries/Components/CheckBox/CheckBox.ios.js +0 -13
- package/Libraries/Components/CheckBox/CheckBox.win32.js +0 -12
- package/Libraries/Components/DatePicker/DatePickerIOS.android.js +0 -46
- package/Libraries/Components/DatePicker/DatePickerIOS.ios.js +0 -189
- package/Libraries/Components/DatePicker/DatePickerIOS.win32.js +0 -46
- package/Libraries/Components/DatePicker/RCTDatePickerNativeComponent.js +0 -60
- package/Libraries/Components/DatePickerAndroid/DatePickerAndroid.android.js +0 -89
- package/Libraries/Components/DatePickerAndroid/DatePickerAndroid.ios.js +0 -30
- package/Libraries/Components/DatePickerAndroid/DatePickerAndroid.win32.js +0 -30
- package/Libraries/Components/DatePickerAndroid/DatePickerAndroidTypes.js +0 -30
- package/Libraries/Components/DatePickerAndroid/NativeDatePickerAndroid.js +0 -22
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.ios.js +0 -12
- package/Libraries/Components/MaskedView/MaskedViewIOS.android.js +0 -13
- package/Libraries/Components/MaskedView/MaskedViewIOS.ios.js +0 -93
- package/Libraries/Components/MaskedView/MaskedViewIOS.win32.js +0 -13
- package/Libraries/Components/MaskedView/RCTMaskedViewNativeComponent.js +0 -21
- package/Libraries/Components/Picker/AndroidDialogPickerNativeComponent.js +0 -68
- package/Libraries/Components/Picker/AndroidDropdownPickerNativeComponent.js +0 -68
- package/Libraries/Components/Picker/Picker.js +0 -159
- package/Libraries/Components/Picker/Picker.win32.d.ts +0 -1
- package/Libraries/Components/Picker/Picker.win32.js +0 -80
- package/Libraries/Components/Picker/PickerAndroid.android.js +0 -146
- package/Libraries/Components/Picker/PickerAndroid.ios.js +0 -12
- package/Libraries/Components/Picker/PickerAndroid.js +0 -12
- package/Libraries/Components/Picker/PickerIOS.android.js +0 -14
- package/Libraries/Components/Picker/PickerIOS.ios.js +0 -164
- package/Libraries/Components/Picker/PickerIOS.js +0 -14
- package/Libraries/Components/Picker/RCTPickerNativeComponent.js +0 -63
- package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.ios.js +0 -12
- package/Libraries/Components/ProgressViewIOS/ProgressViewIOS.android.js +0 -46
- package/Libraries/Components/ProgressViewIOS/ProgressViewIOS.ios.js +0 -77
- package/Libraries/Components/ProgressViewIOS/ProgressViewIOS.win32.js +0 -8
- package/Libraries/Components/ProgressViewIOS/RCTProgressViewNativeComponent.js +0 -35
- package/Libraries/Components/ScrollResponder.js +0 -773
- package/Libraries/Components/ScrollView/ScrollViewViewConfig.js +0 -77
- package/Libraries/Components/ScrollView/__mocks__/ScrollViewMock.js +0 -39
- package/Libraries/Components/SegmentedControlIOS/RCTSegmentedControlNativeComponent.js +0 -46
- package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.android.js +0 -46
- package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.ios.js +0 -123
- package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.js +0 -46
- package/Libraries/Components/Slider/Slider.js +0 -276
- package/Libraries/Components/Slider/SliderNativeComponent.js +0 -60
- package/Libraries/Components/StaticContainer.react.js +0 -51
- package/Libraries/Components/StatusBar/StatusBarIOS.js +0 -22
- package/Libraries/Components/Text/TextWin32.Props.d.ts +0 -26
- package/Libraries/Components/Text/TextWin32.Props.js +0 -3
- package/Libraries/Components/Text/TextWin32.d.ts +0 -6
- package/Libraries/Components/Text/TextWin32.js +0 -41
- package/Libraries/Components/TextInput/AndroidTextInputViewConfig.js +0 -84
- package/Libraries/Components/TextInput/RCTSinglelineTextInputViewConfig.js +0 -134
- package/Libraries/Components/TextInput/TextInput.Types.win32.d.ts +0 -51
- package/Libraries/Components/TextInput/TextInput.Types.win32.js +0 -3
- package/Libraries/Components/TextInput/TextInput.win32.d.ts +0 -68
- package/Libraries/Components/ToastAndroid/ToastAndroid.ios.js +0 -39
- package/Libraries/Components/Touchable/TVTouchable.js +0 -55
- package/Libraries/Components/Touchable/TouchableNativeFeedback.Props.d.ts +0 -7
- package/Libraries/Components/Touchable/TouchableNativeFeedback.Props.js +0 -3
- package/Libraries/Components/Touchable/TouchableNativeFeedback.win32.d.ts +0 -16
- package/Libraries/Components/Touchable/__mocks__/ensureComponentIsNative.js +0 -12
- package/Libraries/Components/Touchable/ensurePositiveDelayProps.js +0 -26
- package/Libraries/Components/View/ReactNativeViewViewConfig.js +0 -347
- package/Libraries/Components/View/ReactNativeViewViewConfig.win32.js +0 -384
- package/Libraries/Components/View/ReactNativeViewViewConfigAndroid.js +0 -74
- package/Libraries/Components/View/Tests/ViewWin32Test.d.ts +0 -8
- package/Libraries/Components/View/Tests/ViewWin32Test.js +0 -235
- package/Libraries/Components/View/ViewWin32.Props.d.ts +0 -149
- package/Libraries/Components/View/ViewWin32.Props.js +0 -11
- package/Libraries/Core/setUpSystrace.js +0 -21
- package/Libraries/DeprecatedPropTypes/DeprecatedColorPropType.js +0 -76
- package/Libraries/DeprecatedPropTypes/DeprecatedEdgeInsetsPropType.js +0 -28
- package/Libraries/DeprecatedPropTypes/DeprecatedImagePropType.js +0 -82
- package/Libraries/DeprecatedPropTypes/DeprecatedImageSourcePropType.js +0 -40
- package/Libraries/DeprecatedPropTypes/DeprecatedImageStylePropTypes.js +0 -76
- package/Libraries/DeprecatedPropTypes/DeprecatedLayoutPropTypes.js +0 -233
- package/Libraries/DeprecatedPropTypes/DeprecatedPointPropType.js +0 -24
- package/Libraries/DeprecatedPropTypes/DeprecatedShadowPropTypesIOS.js +0 -30
- package/Libraries/DeprecatedPropTypes/DeprecatedStyleSheetPropType.js +0 -32
- package/Libraries/DeprecatedPropTypes/DeprecatedTVViewPropTypes.js +0 -23
- package/Libraries/DeprecatedPropTypes/DeprecatedTextInputPropTypes.js +0 -622
- package/Libraries/DeprecatedPropTypes/DeprecatedTextPropTypes.js +0 -158
- package/Libraries/DeprecatedPropTypes/DeprecatedTextStylePropTypes.js +0 -157
- package/Libraries/DeprecatedPropTypes/DeprecatedTransformPropTypes.js +0 -99
- package/Libraries/DeprecatedPropTypes/DeprecatedViewAccessibility.js +0 -44
- package/Libraries/DeprecatedPropTypes/DeprecatedViewPropTypes.js +0 -408
- package/Libraries/DeprecatedPropTypes/DeprecatedViewStylePropTypes.js +0 -68
- package/Libraries/DeprecatedPropTypes/deprecatedCreateStrictShapeTypeChecker.js +0 -86
- package/Libraries/Image/ImagePickerIOS.js +0 -105
- package/Libraries/Image/ImageViewViewConfig.js +0 -68
- package/Libraries/Image/NativeImagePickerIOS.js +0 -40
- package/Libraries/Image/assetPathUtils.js +0 -91
- package/Libraries/Interaction/Batchinator.js +0 -76
- package/Libraries/Interaction/BridgeSpyStallHandler.js +0 -62
- package/Libraries/Interaction/InteractionMixin.js +0 -55
- package/Libraries/Interaction/InteractionStallDebugger.js +0 -23
- package/Libraries/Linking/NativeLinking.js +0 -41
- package/Libraries/NativeModules/specs/NativeAnimationsDebugModule.js +0 -21
- package/Libraries/Performance/PureComponentDebug.js +0 -73
- package/Libraries/Performance/QuickPerformanceLogger.js +0 -101
- package/Libraries/ReactNative/DummyUIManager.js +0 -123
- package/Libraries/ReactNative/RootTagContext.js +0 -15
- package/Libraries/ReactNative/queryLayoutByID.js +0 -58
- package/Libraries/Renderer/implementations/ReactFabric-dev.fb.js +0 -20493
- package/Libraries/Renderer/implementations/ReactFabric-prod.fb.js +0 -7440
- package/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js +0 -7718
- package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js +0 -21091
- package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js +0 -7677
- package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js +0 -7955
- package/Libraries/Renderer/shims/ReactTypes.js +0 -192
- package/Libraries/Settings/Settings.android.js +0 -33
- package/Libraries/Storage/AsyncStorage.js +0 -360
- package/Libraries/Storage/NativeAsyncStorage.js +0 -44
- package/Libraries/StyleSheet/PlatformColorValueTypesAndroid.android.js +0 -18
- package/Libraries/StyleSheet/PlatformColorValueTypesAndroid.js +0 -17
- package/Libraries/StyleSheet/StyleSheetValidation.js +0 -97
- package/Libraries/StyleSheet/StyleSheetValidation.win32.js +0 -102
- package/Libraries/Utilities/BackHandler.win32.d.ts +0 -2
- package/Libraries/Utilities/JSDevSupportModule.js +0 -40
- package/Libraries/Utilities/LoadingView.android.js +0 -29
- package/Libraries/Utilities/LoadingView.ios.js +0 -40
- package/Libraries/Utilities/LoadingView.js +0 -16
- package/Libraries/Utilities/MatrixMath.js +0 -752
- package/Libraries/Utilities/NativeJSDevSupport.js +0 -25
- package/Libraries/Utilities/buildStyleInterpolator.js +0 -211
- package/Libraries/Utilities/clamp.js +0 -23
- package/Libraries/Utilities/deprecatedPropType.js +0 -38
- package/Libraries/Utilities/groupByEveryN.js +0 -51
- package/Libraries/Utilities/mergeIntoFast.js +0 -26
- package/Libraries/Utilities/registerGeneratedViewConfig.js +0 -83
- package/Libraries/Utilities/setAndForwardRef.js +0 -71
- package/Libraries/Utilities/truncate.js +0 -51
- package/Libraries/Utilities/verifyComponentAttributeEquivalence.js +0 -134
- package/Libraries/polyfills/Object.es7.js +0 -58
- package/Libraries/polyfills/console.js +0 -641
- package/Libraries/polyfills/error-guard.js +0 -115
- package/Libraries/promiseRejectionIsError.js +0 -24
- package/Libraries/vendor/emitter/EmitterSubscription.js +0 -59
- package/Libraries/vendor/emitter/EventSubscription.js +0 -40
- package/Libraries/vendor/emitter/EventSubscriptionVendor.js +0 -101
- package/RNTester/APIExamples/AccessibilityExampleWin32.d.ts +0 -8
- package/RNTester/APIExamples/AccessibilityExampleWin32.js +0 -262
- package/RNTester/APIExamples/ThemingModuleAPI.d.ts +0 -8
- package/RNTester/APIExamples/ThemingModuleAPI.js +0 -80
- package/RNTester/js/RNTesterApp.android.js +0 -363
- package/RNTester/js/RNTesterApp.ios.js +0 -272
- package/RNTester/js/RNTesterApp.win32.js +0 -285
- package/RNTester/js/assets/bandaged.png +0 -0
- package/RNTester/js/assets/bunny.png +0 -0
- package/RNTester/js/assets/call.png +0 -0
- package/RNTester/js/assets/dislike.png +0 -0
- package/RNTester/js/assets/fist.png +0 -0
- package/RNTester/js/assets/flowers.png +0 -0
- package/RNTester/js/assets/flux@3x.png +0 -0
- package/RNTester/js/assets/hawk.png +0 -0
- package/RNTester/js/assets/heart.png +0 -0
- package/RNTester/js/assets/helloworld.html +0 -25
- package/RNTester/js/assets/imageMask.png +0 -0
- package/RNTester/js/assets/like.png +0 -0
- package/RNTester/js/assets/liking.png +0 -0
- package/RNTester/js/assets/messagingtest.html +0 -28
- package/RNTester/js/assets/party.png +0 -0
- package/RNTester/js/assets/poke.png +0 -0
- package/RNTester/js/assets/relay@3x.png +0 -0
- package/RNTester/js/assets/slider-left.png +0 -0
- package/RNTester/js/assets/slider-left@2x.png +0 -0
- package/RNTester/js/assets/slider-right.png +0 -0
- package/RNTester/js/assets/slider-right@2x.png +0 -0
- package/RNTester/js/assets/slider.png +0 -0
- package/RNTester/js/assets/slider@2x.png +0 -0
- package/RNTester/js/assets/superlike.png +0 -0
- package/RNTester/js/assets/trees.jpg +0 -0
- package/RNTester/js/assets/tumblr_mfqekpMktw1rn90umo1_500.gif +0 -0
- package/RNTester/js/assets/uie_comment_highlighted@2x.png +0 -0
- package/RNTester/js/assets/uie_comment_normal@2x.png +0 -0
- package/RNTester/js/assets/uie_thumb_big.png +0 -0
- package/RNTester/js/assets/uie_thumb_normal@2x.png +0 -0
- package/RNTester/js/assets/uie_thumb_selected@2x.png +0 -0
- package/RNTester/js/assets/victory.png +0 -0
- package/RNTester/js/components/ListExampleShared.js +0 -377
- package/RNTester/js/components/ListExampleShared.win32.js +0 -384
- package/RNTester/js/components/RNTesterBlock.js +0 -105
- package/RNTester/js/components/RNTesterButton.js +0 -50
- package/RNTester/js/components/RNTesterExampleContainer.js +0 -80
- package/RNTester/js/components/RNTesterExampleFilter.js +0 -120
- package/RNTester/js/components/RNTesterExampleFilter.win32.js +0 -120
- package/RNTester/js/components/RNTesterExampleList.js +0 -254
- package/RNTester/js/components/RNTesterPage.js +0 -76
- package/RNTester/js/components/RNTesterSettingSwitchRow.js +0 -60
- package/RNTester/js/components/RNTesterTheme.js +0 -90
- package/RNTester/js/components/RNTesterTitle.js +0 -58
- package/RNTester/js/components/TextInlineView.js +0 -207
- package/RNTester/js/components/TextLegend.js +0 -248
- package/RNTester/js/components/createExamplePage.js +0 -31
- package/RNTester/js/examples/Accessibility/AccessibilityAndroidExample.android.js +0 -177
- package/RNTester/js/examples/Accessibility/AccessibilityExample.js +0 -792
- package/RNTester/js/examples/Accessibility/AccessibilityIOSExample.js +0 -72
- package/RNTester/js/examples/Accessibility/check.png +0 -0
- package/RNTester/js/examples/Accessibility/mixed.png +0 -0
- package/RNTester/js/examples/Accessibility/uncheck.png +0 -0
- package/RNTester/js/examples/ActionSheetIOS/ActionSheetIOSExample.js +0 -342
- package/RNTester/js/examples/ActivityIndicator/ActivityIndicatorExample.js +0 -162
- package/RNTester/js/examples/Alert/AlertExample.js +0 -158
- package/RNTester/js/examples/Alert/AlertIOSExample.js +0 -204
- package/RNTester/js/examples/Animated/AnimatedExample.js +0 -347
- package/RNTester/js/examples/Animated/AnimatedGratuitousApp/AnExApp.js +0 -407
- package/RNTester/js/examples/Animated/AnimatedGratuitousApp/AnExBobble.js +0 -171
- package/RNTester/js/examples/Animated/AnimatedGratuitousApp/AnExChained.js +0 -120
- package/RNTester/js/examples/Animated/AnimatedGratuitousApp/AnExScroll.js +0 -124
- package/RNTester/js/examples/Animated/AnimatedGratuitousApp/AnExSet.js +0 -149
- package/RNTester/js/examples/Animated/AnimatedGratuitousApp/AnExSlides.md +0 -107
- package/RNTester/js/examples/Animated/AnimatedGratuitousApp/AnExTilt.js +0 -154
- package/RNTester/js/examples/AppState/AppStateExample.js +0 -106
- package/RNTester/js/examples/Appearance/AppearanceExample.js +0 -219
- package/RNTester/js/examples/AsyncStorage/AsyncStorageExample.js +0 -103
- package/RNTester/js/examples/Border/BorderExample.js +0 -301
- package/RNTester/js/examples/BoxShadow/BoxShadowExample.js +0 -100
- package/RNTester/js/examples/Button/ButtonExample.js +0 -127
- package/RNTester/js/examples/CheckBox/CheckBoxExample.js +0 -148
- package/RNTester/js/examples/Clipboard/ClipboardExample.js +0 -68
- package/RNTester/js/examples/ColorGradientWin32Example.js +0 -109
- package/RNTester/js/examples/Crash/CrashExample.js +0 -52
- package/RNTester/js/examples/DatePicker/DatePickerAndroidExample.js +0 -170
- package/RNTester/js/examples/DatePicker/DatePickerIOSExample.js +0 -150
- package/RNTester/js/examples/DevSettings/DevSettingsExample.js +0 -47
- package/RNTester/js/examples/Dimensions/DimensionsExample.js +0 -68
- package/RNTester/js/examples/FlatList/FlatListExample.js +0 -287
- package/RNTester/js/examples/Image/ImageCapInsetsExample.js +0 -68
- package/RNTester/js/examples/Image/ImageExample.js +0 -955
- package/RNTester/js/examples/InputAccessoryView/InputAccessoryViewExample.js +0 -121
- package/RNTester/js/examples/JSResponderHandlerExample/JSResponderHandlerExample.js +0 -77
- package/RNTester/js/examples/KeyboardAvoidingView/KeyboardAvoidingViewExample.js +0 -120
- package/RNTester/js/examples/Layout/LayoutAnimationExample.js +0 -221
- package/RNTester/js/examples/Layout/LayoutEventsExample.js +0 -165
- package/RNTester/js/examples/Layout/LayoutExample.js +0 -206
- package/RNTester/js/examples/Linking/LinkingExample.js +0 -128
- package/RNTester/js/examples/MaskedView/MaskedViewExample.js +0 -236
- package/RNTester/js/examples/Modal/ModalExample.js +0 -283
- package/RNTester/js/examples/MultiColumn/MultiColumnExample.js +0 -189
- package/RNTester/js/examples/NativeAnimation/NativeAnimationsExample.js +0 -702
- package/RNTester/js/examples/NewAppScreen/NewAppScreenExample.js +0 -77
- package/RNTester/js/examples/OrientationChange/OrientationChangeExample.js +0 -66
- package/RNTester/js/examples/PanResponder/PanResponderExample.js +0 -154
- package/RNTester/js/examples/PermissionsAndroid/PermissionsExample.js +0 -130
- package/RNTester/js/examples/Picker/PickerExample.js +0 -220
- package/RNTester/js/examples/Picker/PickerIOSExample.js +0 -190
- package/RNTester/js/examples/PlatformColor/PlatformColorExample.js +0 -355
- package/RNTester/js/examples/PointerEvents/PointerEventsExample.js +0 -240
- package/RNTester/js/examples/Pressable/PressableExample.js +0 -426
- package/RNTester/js/examples/ProgressBarAndroid/ProgressBarAndroidExample.android.js +0 -94
- package/RNTester/js/examples/ProgressViewIOS/ProgressViewIOSExample.js +0 -103
- package/RNTester/js/examples/PushNotificationIOS/PushNotificationIOSExample.js +0 -267
- package/RNTester/js/examples/RCTRootView/RCTRootViewIOSExample.js +0 -95
- package/RNTester/js/examples/RTL/RTLExample.js +0 -747
- package/RNTester/js/examples/RefreshControl/RefreshControlExample.js +0 -127
- package/RNTester/js/examples/RootViewSizeFlexibilityExample/RootViewSizeFlexibilityExampleApp.js +0 -68
- package/RNTester/js/examples/SafeAreaView/SafeAreaViewExample.js +0 -137
- package/RNTester/js/examples/ScrollView/ScrollViewAnimatedExample.js +0 -107
- package/RNTester/js/examples/ScrollView/ScrollViewExample.js +0 -346
- package/RNTester/js/examples/ScrollView/ScrollViewSimpleExample.js +0 -105
- package/RNTester/js/examples/SectionList/SectionListExample.js +0 -301
- package/RNTester/js/examples/SegmentedControlIOS/SegmentedControlIOSExample.js +0 -183
- package/RNTester/js/examples/SetPropertiesExample/SetPropertiesExampleApp.js +0 -34
- package/RNTester/js/examples/Share/ShareExample.js +0 -124
- package/RNTester/js/examples/Slider/SliderExample.js +0 -136
- package/RNTester/js/examples/Snapshot/SnapshotExample.js +0 -69
- package/RNTester/js/examples/Snapshot/SnapshotViewIOS.android.js +0 -12
- package/RNTester/js/examples/Snapshot/SnapshotViewIOS.ios.js +0 -67
- package/RNTester/js/examples/StatusBar/StatusBarExample.js +0 -522
- package/RNTester/js/examples/Switch/SwitchExample.js +0 -239
- package/RNTester/js/examples/TVEventHandler/TVEventHandlerExample.js +0 -88
- package/RNTester/js/examples/Text/TextExample.android.js +0 -864
- package/RNTester/js/examples/Text/TextExample.ios.js +0 -1153
- package/RNTester/js/examples/TextInput/TextInputExample.android.js +0 -424
- package/RNTester/js/examples/TextInput/TextInputExample.ios.js +0 -710
- package/RNTester/js/examples/TextInput/TextInputSharedExamples.js +0 -618
- package/RNTester/js/examples/Timer/TimerExample.js +0 -373
- package/RNTester/js/examples/ToastAndroid/ToastAndroidExample.android.js +0 -136
- package/RNTester/js/examples/Touchable/TouchableExample.js +0 -664
- package/RNTester/js/examples/Transform/TransformExample.js +0 -336
- package/RNTester/js/examples/TransparentHitTest/TransparentHitTestExample.js +0 -50
- package/RNTester/js/examples/TurboModule/SampleTurboModuleExample.js +0 -190
- package/RNTester/js/examples/TurboModule/TurboModuleExample.js +0 -26
- package/RNTester/js/examples/Vibration/VibrationExample.js +0 -127
- package/RNTester/js/examples/View/ViewExample.js +0 -471
- package/RNTester/js/examples/WebSocket/WebSocketExample.js +0 -356
- package/RNTester/js/examples/WebSocket/http_test_server.js +0 -33
- package/RNTester/js/examples/WebSocket/websocket_test_server.js +0 -46
- package/RNTester/js/examples/XHR/XHRExample.js +0 -62
- package/RNTester/js/examples/XHR/XHRExampleAbortController.js +0 -58
- package/RNTester/js/examples/XHR/XHRExampleBinaryUpload.js +0 -149
- package/RNTester/js/examples/XHR/XHRExampleDownload.js +0 -242
- package/RNTester/js/examples/XHR/XHRExampleFetch.js +0 -133
- package/RNTester/js/examples/XHR/XHRExampleHeaders.js +0 -114
- package/RNTester/js/examples/XHR/XHRExampleOnTimeOut.js +0 -99
- package/RNTester/js/types/RNTesterTypes.js +0 -47
- package/RNTester/js/utils/RNTesterActions.js +0 -53
- package/RNTester/js/utils/RNTesterList.android.js +0 -257
- package/RNTester/js/utils/RNTesterList.ios.js +0 -366
- package/RNTester/js/utils/RNTesterList.win32.js +0 -240
- package/RNTester/js/utils/RNTesterNavigationReducer.js +0 -49
- package/RNTester/js/utils/RNTesterStatePersister.js +0 -86
- package/RNTester/js/utils/URIActionMap.js +0 -48
- package/api-extractor.json +0 -25
- package/demo/DocPagePropsList.d.ts +0 -18
- package/demo/DocPagePropsList.js +0 -7
- package/demo/DocPagePropsList.js.map +0 -1
- package/docs/api/index.md +0 -12
- package/docs/api/react-native-win32.accessibilityactionevent.md +0 -13
- package/docs/api/react-native-win32.accessibilityactioninfo.md +0 -14
- package/docs/api/react-native-win32.accessibilityactionname.md +0 -11
- package/docs/api/react-native-win32.accessibilityannotationinfo.md +0 -16
- package/docs/api/react-native-win32.accessibilitystate.md +0 -14
- package/docs/api/react-native-win32.annotationtype.md +0 -11
- package/docs/api/react-native-win32.ariarole.md +0 -11
- package/docs/api/react-native-win32.basepropswin32.md +0 -17
- package/docs/api/react-native-win32.buttonwin32._constructor_.md +0 -20
- package/docs/api/react-native-win32.buttonwin32.md +0 -27
- package/docs/api/react-native-win32.buttonwin32.render.md +0 -15
- package/docs/api/react-native-win32.buttonwin32omitstyles.md +0 -11
- package/docs/api/react-native-win32.colorgradientwin32.md +0 -15
- package/docs/api/react-native-win32.cursor.md +0 -11
- package/docs/api/react-native-win32.eventphase.md +0 -21
- package/docs/api/react-native-win32.gradientcolorstop.md +0 -16
- package/docs/api/react-native-win32.gradientcolorvaluewin32.md +0 -16
- package/docs/api/react-native-win32.ibuttonwin32props.md +0 -25
- package/docs/api/react-native-win32.ibuttonwin32props.onblur.md +0 -13
- package/docs/api/react-native-win32.ibuttonwin32props.onfocus.md +0 -13
- package/docs/api/react-native-win32.ibuttonwin32props.onmouseenter.md +0 -13
- package/docs/api/react-native-win32.ibuttonwin32props.onmouseleave.md +0 -13
- package/docs/api/react-native-win32.ibuttonwin32props.ontouchend.md +0 -13
- package/docs/api/react-native-win32.ibuttonwin32props.ontouchstart.md +0 -13
- package/docs/api/react-native-win32.ibuttonwin32props.style.md +0 -13
- package/docs/api/react-native-win32.ibuttonwin32style.md +0 -13
- package/docs/api/react-native-win32.ichildasfunction.md +0 -13
- package/docs/api/react-native-win32.idimensions.height.md +0 -11
- package/docs/api/react-native-win32.idimensions.md +0 -21
- package/docs/api/react-native-win32.idimensions.width.md +0 -11
- package/docs/api/react-native-win32.ihandledkeyboardevent.md +0 -11
- package/docs/api/react-native-win32.ikeyboardevent.md +0 -11
- package/docs/api/react-native-win32.inativekeyboardevent.altkey.md +0 -11
- package/docs/api/react-native-win32.inativekeyboardevent.ctrlkey.md +0 -11
- package/docs/api/react-native-win32.inativekeyboardevent.eventphase.md +0 -11
- package/docs/api/react-native-win32.inativekeyboardevent.key.md +0 -11
- package/docs/api/react-native-win32.inativekeyboardevent.md +0 -23
- package/docs/api/react-native-win32.inativekeyboardevent.metakey.md +0 -11
- package/docs/api/react-native-win32.inativekeyboardevent.shiftkey.md +0 -11
- package/docs/api/react-native-win32.ipersonacoinprops.brandiconsource.md +0 -11
- package/docs/api/react-native-win32.ipersonacoinprops.color.md +0 -11
- package/docs/api/react-native-win32.ipersonacoinprops.disabled.md +0 -11
- package/docs/api/react-native-win32.ipersonacoinprops.displayname.md +0 -11
- package/docs/api/react-native-win32.ipersonacoinprops.emailaddress.md +0 -11
- package/docs/api/react-native-win32.ipersonacoinprops.initials.md +0 -11
- package/docs/api/react-native-win32.ipersonacoinprops.md +0 -29
- package/docs/api/react-native-win32.ipersonacoinprops.onerror.md +0 -11
- package/docs/api/react-native-win32.ipersonacoinprops.onload.md +0 -11
- package/docs/api/react-native-win32.ipersonacoinprops.presence.md +0 -11
- package/docs/api/react-native-win32.ipersonacoinprops.size.md +0 -11
- package/docs/api/react-native-win32.ipersonacoinprops.source.md +0 -11
- package/docs/api/react-native-win32.iposition.left.md +0 -11
- package/docs/api/react-native-win32.iposition.md +0 -21
- package/docs/api/react-native-win32.iposition.top.md +0 -11
- package/docs/api/react-native-win32.ipressevent.md +0 -24
- package/docs/api/react-native-win32.ipressinlocation.locationx.md +0 -11
- package/docs/api/react-native-win32.ipressinlocation.locationy.md +0 -11
- package/docs/api/react-native-win32.ipressinlocation.md +0 -23
- package/docs/api/react-native-win32.ipressinlocation.pagex.md +0 -11
- package/docs/api/react-native-win32.ipressinlocation.pagey.md +0 -11
- package/docs/api/react-native-win32.irenderchild.md +0 -13
- package/docs/api/react-native-win32.irenderstyle.md +0 -13
- package/docs/api/react-native-win32.irespondersyntheticevent.md +0 -21
- package/docs/api/react-native-win32.irespondersyntheticevent.touchhistory.md +0 -16
- package/docs/api/react-native-win32.isignal.md +0 -13
- package/docs/api/react-native-win32.istate.md +0 -13
- package/docs/api/react-native-win32.istateconditions.md +0 -15
- package/docs/api/react-native-win32.itextwin32props.md +0 -20
- package/docs/api/react-native-win32.itextwin32props.textstyle.md +0 -25
- package/docs/api/react-native-win32.itextwin32props.tooltip.md +0 -13
- package/docs/api/react-native-win32.itouchablewin32props.children.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.disabled.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.filterkeys.md +0 -13
- package/docs/api/react-native-win32.itouchablewin32props.md +0 -36
- package/docs/api/react-native-win32.itouchablewin32props.onlongpress.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.rejectrespondertermination.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.renderstyle.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.touchablegethighlightdelayms.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.touchablegethitslop.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.touchablegetlongpressdelayms.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.touchablegetpressoutdelayms.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.touchablegetpressrectoffset.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.touchablehandleactivepressin.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.touchablehandleactivepressout.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.touchablehandlekeypress.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.touchablehandlekeypressdown.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.touchablehandlelongpress.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.touchablehandlepress.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32props.touchsounddisabled.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32state.isfocused.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32state.ishovered.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32state.ispressed.md +0 -11
- package/docs/api/react-native-win32.itouchablewin32state.md +0 -20
- package/docs/api/react-native-win32.itouchinfo.currentpagex.md +0 -11
- package/docs/api/react-native-win32.itouchinfo.currentpagey.md +0 -11
- package/docs/api/react-native-win32.itouchinfo.currenttimestamp.md +0 -11
- package/docs/api/react-native-win32.itouchinfo.md +0 -29
- package/docs/api/react-native-win32.itouchinfo.previouspagex.md +0 -11
- package/docs/api/react-native-win32.itouchinfo.previouspagey.md +0 -11
- package/docs/api/react-native-win32.itouchinfo.previoustimestamp.md +0 -11
- package/docs/api/react-native-win32.itouchinfo.startpagex.md +0 -11
- package/docs/api/react-native-win32.itouchinfo.startpagey.md +0 -11
- package/docs/api/react-native-win32.itouchinfo.starttimestamp.md +0 -11
- package/docs/api/react-native-win32.itouchinfo.touchactive.md +0 -11
- package/docs/api/react-native-win32.itransitions.md +0 -15
- package/docs/api/react-native-win32.iviewwin32.focus.md +0 -11
- package/docs/api/react-native-win32.iviewwin32.md +0 -18
- package/docs/api/react-native-win32.iviewwin32props.acceptskeyboardfocus.md +0 -16
- package/docs/api/react-native-win32.iviewwin32props.accessibilityactions.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.accessibilityannotation.md +0 -15
- package/docs/api/react-native-win32.iviewwin32props.accessibilitylevel.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.accessibilitypositioninset.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.accessibilitysetsize.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.animationclass.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.children.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.cursor.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.focusable.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.keydownevents.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.keyupevents.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.md +0 -44
- package/docs/api/react-native-win32.iviewwin32props.onblur.md +0 -15
- package/docs/api/react-native-win32.iviewwin32props.onblurcapture.md +0 -15
- package/docs/api/react-native-win32.iviewwin32props.onfocus.md +0 -15
- package/docs/api/react-native-win32.iviewwin32props.onfocuscapture.md +0 -15
- package/docs/api/react-native-win32.iviewwin32props.onkeydown.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.onkeydowncapture.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.onkeyup.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.onkeyupcapture.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.onmouseenter.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.onmouseleave.md +0 -11
- package/docs/api/react-native-win32.iviewwin32props.tooltip.md +0 -13
- package/docs/api/react-native-win32.iviewwin32props.type.md +0 -11
- package/docs/api/react-native-win32.md +0 -85
- package/docs/api/react-native-win32.omittedaccessibilitypropswin32.md +0 -15
- package/docs/api/react-native-win32.personacoin.md +0 -11
- package/docs/api/react-native-win32.personacoinpresence.md +0 -25
- package/docs/api/react-native-win32.personacoinsize.md +0 -23
- package/docs/api/react-native-win32.sharedaccessibilitypropsiosandwin32.md +0 -13
- package/docs/api/react-native-win32.textstyle.md +0 -13
- package/docs/api/react-native-win32.textwin32._constructor_.md +0 -20
- package/docs/api/react-native-win32.textwin32.md +0 -25
- package/docs/api/react-native-win32.textwin32.render.md +0 -15
- package/docs/api/react-native-win32.textwin32omittypes.md +0 -11
- package/docs/api/react-native-win32.touchablewin32._constructor_.md +0 -20
- package/docs/api/react-native-win32.touchablewin32.componentwillunmount.md +0 -15
- package/docs/api/react-native-win32.touchablewin32.focus.md +0 -11
- package/docs/api/react-native-win32.touchablewin32.md +0 -34
- package/docs/api/react-native-win32.touchablewin32.render.md +0 -15
- package/docs/api/react-native-win32.usefrom.md +0 -13
- package/docs/api/react-native-win32.viewwin32.md +0 -11
- package/docs/api/react-native-win32.viewwin32omittypes.md +0 -11
- package/etc/react-native-win32.api.md +0 -481
- package/flow/Promise.js +0 -47
- package/flow/fbjs.js +0 -258
- package/flow/use-subscription.js +0 -19
- package/jest/preprocessor.js +0 -120
- package/typings-index.d.ts +0 -20
- package/typings-index.js +0 -40
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright (c)
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
3
|
*
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -9,136 +9,114 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
'use strict';
|
|
12
|
+
'use client';
|
|
12
13
|
|
|
14
|
+
// APIs
|
|
15
|
+
import typeof ActionSheetIOS from './Libraries/ActionSheetIOS/ActionSheetIOS';
|
|
16
|
+
import typeof Alert from './Libraries/Alert/Alert';
|
|
17
|
+
import typeof Animated from './Libraries/Animated/Animated';
|
|
18
|
+
import typeof * as AnimatedModule from './Libraries/Animated/Animated';
|
|
19
|
+
import typeof Easing from './Libraries/Animated/Easing';
|
|
20
|
+
import typeof useAnimatedValue from './Libraries/Animated/useAnimatedValue';
|
|
21
|
+
import typeof AppState from './Libraries/AppState/AppState';
|
|
22
|
+
import typeof NativeModules from './Libraries/BatchedBridge/NativeModules';
|
|
23
|
+
// Components
|
|
13
24
|
import typeof AccessibilityInfo from './Libraries/Components/AccessibilityInfo/AccessibilityInfo';
|
|
14
25
|
import typeof ActivityIndicator from './Libraries/Components/ActivityIndicator/ActivityIndicator';
|
|
15
26
|
import typeof Button from './Libraries/Components/Button';
|
|
16
|
-
import typeof
|
|
17
|
-
import typeof DatePickerIOS from './Libraries/Components/DatePicker/DatePickerIOS';
|
|
27
|
+
import typeof Clipboard from './Libraries/Components/Clipboard/Clipboard';
|
|
18
28
|
import typeof DrawerLayoutAndroid from './Libraries/Components/DrawerAndroid/DrawerLayoutAndroid';
|
|
19
|
-
import typeof
|
|
20
|
-
import typeof Image from './Libraries/Image/Image';
|
|
21
|
-
import typeof ImageBackground from './Libraries/Image/ImageBackground';
|
|
22
|
-
import typeof InputAccessoryView from './Libraries/Components/TextInput/InputAccessoryView';
|
|
29
|
+
import typeof Keyboard from './Libraries/Components/Keyboard/Keyboard';
|
|
23
30
|
import typeof KeyboardAvoidingView from './Libraries/Components/Keyboard/KeyboardAvoidingView';
|
|
24
|
-
import typeof MaskedViewIOS from './Libraries/Components/MaskedView/MaskedViewIOS';
|
|
25
|
-
import typeof Modal from './Libraries/Modal/Modal';
|
|
26
|
-
import typeof Picker from './Libraries/Components/Picker/Picker';
|
|
27
|
-
import typeof PickerIOS from './Libraries/Components/Picker/PickerIOS';
|
|
28
31
|
import typeof Pressable from './Libraries/Components/Pressable/Pressable';
|
|
29
32
|
import typeof ProgressBarAndroid from './Libraries/Components/ProgressBarAndroid/ProgressBarAndroid';
|
|
30
|
-
import typeof
|
|
33
|
+
import typeof RefreshControl from './Libraries/Components/RefreshControl/RefreshControl';
|
|
31
34
|
import typeof SafeAreaView from './Libraries/Components/SafeAreaView/SafeAreaView';
|
|
32
35
|
import typeof ScrollView from './Libraries/Components/ScrollView/ScrollView';
|
|
33
|
-
import typeof SectionList from './Libraries/Lists/SectionList';
|
|
34
|
-
import typeof SegmentedControlIOS from './Libraries/Components/SegmentedControlIOS/SegmentedControlIOS';
|
|
35
|
-
import typeof Slider from './Libraries/Components/Slider/Slider';
|
|
36
|
-
import typeof Switch from './Libraries/Components/Switch/Switch';
|
|
37
|
-
import typeof RefreshControl from './Libraries/Components/RefreshControl/RefreshControl';
|
|
38
36
|
import typeof StatusBar from './Libraries/Components/StatusBar/StatusBar';
|
|
39
|
-
import typeof
|
|
37
|
+
import typeof Switch from './Libraries/Components/Switch/Switch';
|
|
38
|
+
import typeof InputAccessoryView from './Libraries/Components/TextInput/InputAccessoryView';
|
|
40
39
|
import typeof TextInput from './Libraries/Components/TextInput/TextInput';
|
|
40
|
+
import typeof ToastAndroid from './Libraries/Components/ToastAndroid/ToastAndroid';
|
|
41
41
|
import typeof Touchable from './Libraries/Components/Touchable/Touchable';
|
|
42
42
|
import typeof TouchableHighlight from './Libraries/Components/Touchable/TouchableHighlight';
|
|
43
43
|
import typeof TouchableNativeFeedback from './Libraries/Components/Touchable/TouchableNativeFeedback';
|
|
44
44
|
import typeof TouchableOpacity from './Libraries/Components/Touchable/TouchableOpacity';
|
|
45
45
|
import typeof TouchableWithoutFeedback from './Libraries/Components/Touchable/TouchableWithoutFeedback';
|
|
46
46
|
import typeof View from './Libraries/Components/View/View';
|
|
47
|
-
import typeof
|
|
48
|
-
import typeof
|
|
49
|
-
import typeof
|
|
50
|
-
import typeof
|
|
51
|
-
import typeof
|
|
52
|
-
import typeof
|
|
53
|
-
import typeof AppRegistry from './Libraries/ReactNative/AppRegistry';
|
|
54
|
-
import typeof AppState from './Libraries/AppState/AppState';
|
|
55
|
-
import typeof AsyncStorage from './Libraries/Storage/AsyncStorage';
|
|
56
|
-
import typeof BackHandler from './Libraries/Utilities/BackHandler';
|
|
57
|
-
import typeof Clipboard from './Libraries/Components/Clipboard/Clipboard';
|
|
58
|
-
import typeof DatePickerAndroid from './Libraries/Components/DatePickerAndroid/DatePickerAndroid';
|
|
59
|
-
import typeof DeviceInfo from './Libraries/Utilities/DeviceInfo';
|
|
60
|
-
import typeof DevSettings from './Libraries/Utilities/DevSettings';
|
|
61
|
-
import typeof Dimensions from './Libraries/Utilities/Dimensions';
|
|
62
|
-
import typeof Easing from './Libraries/Animated/src/Easing';
|
|
63
|
-
import typeof ReactNative from './Libraries/Renderer/shims/ReactNative';
|
|
64
|
-
import typeof I18nManager from './Libraries/ReactNative/I18nManager';
|
|
65
|
-
import typeof ImagePickerIOS from './Libraries/Image/ImagePickerIOS';
|
|
47
|
+
import typeof RegisterCallableModule from './Libraries/Core/registerCallableModule';
|
|
48
|
+
import typeof NativeEventEmitter from './Libraries/EventEmitter/NativeEventEmitter';
|
|
49
|
+
import typeof RCTDeviceEventEmitter from './Libraries/EventEmitter/RCTDeviceEventEmitter';
|
|
50
|
+
import typeof RCTNativeAppEventEmitter from './Libraries/EventEmitter/RCTNativeAppEventEmitter';
|
|
51
|
+
import typeof Image from './Libraries/Image/Image';
|
|
52
|
+
import typeof ImageBackground from './Libraries/Image/ImageBackground';
|
|
66
53
|
import typeof InteractionManager from './Libraries/Interaction/InteractionManager';
|
|
67
|
-
import typeof
|
|
54
|
+
import typeof PanResponder from './Libraries/Interaction/PanResponder';
|
|
68
55
|
import typeof LayoutAnimation from './Libraries/LayoutAnimation/LayoutAnimation';
|
|
69
56
|
import typeof Linking from './Libraries/Linking/Linking';
|
|
57
|
+
import typeof FlatList from './Libraries/Lists/FlatList';
|
|
58
|
+
import typeof SectionList from './Libraries/Lists/SectionList';
|
|
59
|
+
import typeof VirtualizedList from './Libraries/Lists/VirtualizedList';
|
|
60
|
+
import typeof VirtualizedSectionList from './Libraries/Lists/VirtualizedSectionList';
|
|
61
|
+
import typeof LogBox from './Libraries/LogBox/LogBox';
|
|
62
|
+
import typeof Modal from './Libraries/Modal/Modal';
|
|
63
|
+
// $FlowFixMe[invalid-exported-annotation]
|
|
70
64
|
import typeof NativeDialogManagerAndroid from './Libraries/NativeModules/specs/NativeDialogManagerAndroid';
|
|
71
|
-
import typeof NativeEventEmitter from './Libraries/EventEmitter/NativeEventEmitter';
|
|
72
65
|
import typeof Networking from './Libraries/Network/RCTNetworking';
|
|
73
|
-
import typeof
|
|
66
|
+
import typeof * as Systrace from './Libraries/Performance/Systrace';
|
|
74
67
|
import typeof PermissionsAndroid from './Libraries/PermissionsAndroid/PermissionsAndroid';
|
|
75
|
-
import typeof PixelRatio from './Libraries/Utilities/PixelRatio';
|
|
76
68
|
import typeof PushNotificationIOS from './Libraries/PushNotificationIOS/PushNotificationIOS';
|
|
69
|
+
import typeof AppRegistry from './Libraries/ReactNative/AppRegistry';
|
|
70
|
+
import typeof I18nManager from './Libraries/ReactNative/I18nManager';
|
|
71
|
+
import typeof {RootTagContext} from './Libraries/ReactNative/RootTag';
|
|
72
|
+
import typeof UIManager from './Libraries/ReactNative/UIManager';
|
|
73
|
+
import typeof ReactNative from './Libraries/Renderer/shims/ReactNative';
|
|
74
|
+
import type {HostComponent as _HostComponentInternal} from './Libraries/Renderer/shims/ReactNativeTypes';
|
|
77
75
|
import typeof Settings from './Libraries/Settings/Settings';
|
|
78
76
|
import typeof Share from './Libraries/Share/Share';
|
|
79
|
-
import typeof
|
|
77
|
+
import typeof {PlatformColor} from './Libraries/StyleSheet/PlatformColorValueTypes';
|
|
78
|
+
// Plugins
|
|
79
|
+
import typeof {DynamicColorIOS} from './Libraries/StyleSheet/PlatformColorValueTypesIOS';
|
|
80
|
+
import typeof processColor from './Libraries/StyleSheet/processColor';
|
|
80
81
|
import typeof StyleSheet from './Libraries/StyleSheet/StyleSheet';
|
|
81
|
-
import typeof
|
|
82
|
-
import typeof ToastAndroid from './Libraries/Components/ToastAndroid/ToastAndroid';
|
|
82
|
+
import typeof Text from './Libraries/Text/Text';
|
|
83
83
|
import typeof * as TurboModuleRegistry from './Libraries/TurboModule/TurboModuleRegistry';
|
|
84
|
-
import typeof
|
|
85
|
-
import typeof
|
|
84
|
+
import typeof UTFSequence from './Libraries/UTFSequence';
|
|
85
|
+
import typeof * as Appearance from './Libraries/Utilities/Appearance';
|
|
86
|
+
import typeof BackHandler from './Libraries/Utilities/BackHandler';
|
|
87
|
+
import typeof DeviceInfo from './Libraries/Utilities/DeviceInfo';
|
|
88
|
+
import typeof DevMenu from './src/private/devmenu/DevMenu';
|
|
89
|
+
import typeof DevSettings from './Libraries/Utilities/DevSettings';
|
|
90
|
+
import typeof Dimensions from './Libraries/Utilities/Dimensions';
|
|
91
|
+
import typeof PixelRatio from './Libraries/Utilities/PixelRatio';
|
|
92
|
+
import typeof Platform from './Libraries/Utilities/Platform';
|
|
86
93
|
import typeof useColorScheme from './Libraries/Utilities/useColorScheme';
|
|
87
94
|
import typeof useWindowDimensions from './Libraries/Utilities/useWindowDimensions';
|
|
88
|
-
import typeof UTFSequence from './Libraries/UTFSequence';
|
|
89
95
|
import typeof Vibration from './Libraries/Vibration/Vibration';
|
|
90
96
|
import typeof YellowBox from './Libraries/YellowBox/YellowBoxDeprecated';
|
|
91
|
-
import typeof LogBox from './Libraries/LogBox/LogBox';
|
|
92
|
-
import typeof RCTDeviceEventEmitter from './Libraries/EventEmitter/RCTDeviceEventEmitter';
|
|
93
|
-
import typeof RCTNativeAppEventEmitter from './Libraries/EventEmitter/RCTNativeAppEventEmitter';
|
|
94
|
-
import typeof NativeModules from './Libraries/BatchedBridge/NativeModules';
|
|
95
|
-
import typeof Platform from './Libraries/Utilities/Platform';
|
|
96
|
-
import typeof processColor from './Libraries/StyleSheet/processColor';
|
|
97
|
-
import typeof {PlatformColor} from './Libraries/StyleSheet/PlatformColorValueTypes';
|
|
98
|
-
import typeof {DynamicColorIOS} from './Libraries/StyleSheet/PlatformColorValueTypesIOS';
|
|
99
|
-
import typeof {ColorAndroid} from './Libraries/StyleSheet/PlatformColorValueTypesAndroid';
|
|
100
|
-
import typeof RootTagContext from './Libraries/ReactNative/RootTagContext';
|
|
101
|
-
import typeof DeprecatedColorPropType from './Libraries/DeprecatedPropTypes/DeprecatedColorPropType';
|
|
102
|
-
import typeof DeprecatedEdgeInsetsPropType from './Libraries/DeprecatedPropTypes/DeprecatedEdgeInsetsPropType';
|
|
103
|
-
import typeof DeprecatedPointPropType from './Libraries/DeprecatedPropTypes/DeprecatedPointPropType';
|
|
104
|
-
import typeof DeprecatedViewPropTypes from './Libraries/DeprecatedPropTypes/DeprecatedViewPropTypes';
|
|
105
97
|
|
|
106
|
-
|
|
98
|
+
const warnOnce = require('./Libraries/Utilities/warnOnce');
|
|
99
|
+
const invariant = require('invariant');
|
|
107
100
|
|
|
108
101
|
export type HostComponent<T> = _HostComponentInternal<T>;
|
|
109
102
|
|
|
110
|
-
const invariant = require('invariant');
|
|
111
|
-
const warnOnce = require('./Libraries/Utilities/warnOnce');
|
|
112
|
-
|
|
113
103
|
module.exports = {
|
|
104
|
+
get registerCallableModule(): RegisterCallableModule {
|
|
105
|
+
return require('./Libraries/Core/registerCallableModule').default;
|
|
106
|
+
},
|
|
114
107
|
// Components
|
|
115
108
|
get AccessibilityInfo(): AccessibilityInfo {
|
|
116
|
-
return require('./Libraries/Components/AccessibilityInfo/AccessibilityInfo')
|
|
109
|
+
return require('./Libraries/Components/AccessibilityInfo/AccessibilityInfo')
|
|
110
|
+
.default;
|
|
117
111
|
},
|
|
118
112
|
get ActivityIndicator(): ActivityIndicator {
|
|
119
|
-
return require('./Libraries/Components/ActivityIndicator/ActivityIndicator')
|
|
113
|
+
return require('./Libraries/Components/ActivityIndicator/ActivityIndicator')
|
|
114
|
+
.default;
|
|
120
115
|
},
|
|
121
116
|
get Button(): Button {
|
|
122
|
-
return require('./Libraries/Components/Button');
|
|
123
|
-
},
|
|
124
|
-
get CheckBox(): CheckBox {
|
|
125
|
-
warnOnce(
|
|
126
|
-
'checkBox-moved',
|
|
127
|
-
'CheckBox has been extracted from react-native core and will be removed in a future release. ' +
|
|
128
|
-
"It can now be installed and imported from '@react-native-community/checkbox' instead of 'react-native'. " +
|
|
129
|
-
'See https://github.com/react-native-community/react-native-checkbox',
|
|
130
|
-
);
|
|
131
|
-
return require('./Libraries/Components/CheckBox/CheckBox');
|
|
132
|
-
},
|
|
133
|
-
get DatePickerIOS(): DatePickerIOS {
|
|
134
|
-
warnOnce(
|
|
135
|
-
'DatePickerIOS-merged',
|
|
136
|
-
'DatePickerIOS has been merged with DatePickerAndroid and will be removed in a future release. ' +
|
|
137
|
-
"It can now be installed and imported from '@react-native-community/datetimepicker' instead of 'react-native'. " +
|
|
138
|
-
'See https://github.com/react-native-community/react-native-datetimepicker',
|
|
139
|
-
);
|
|
140
|
-
return require('./Libraries/Components/DatePicker/DatePickerIOS');
|
|
117
|
+
return require('./Libraries/Components/Button').default;
|
|
141
118
|
},
|
|
119
|
+
// $FlowFixMe[value-as-type]
|
|
142
120
|
get DrawerLayoutAndroid(): DrawerLayoutAndroid {
|
|
143
121
|
return require('./Libraries/Components/DrawerAndroid/DrawerLayoutAndroid');
|
|
144
122
|
},
|
|
@@ -152,98 +130,47 @@ module.exports = {
|
|
|
152
130
|
return require('./Libraries/Image/ImageBackground');
|
|
153
131
|
},
|
|
154
132
|
get InputAccessoryView(): InputAccessoryView {
|
|
155
|
-
return require('./Libraries/Components/TextInput/InputAccessoryView')
|
|
133
|
+
return require('./Libraries/Components/TextInput/InputAccessoryView')
|
|
134
|
+
.default;
|
|
156
135
|
},
|
|
157
136
|
get KeyboardAvoidingView(): KeyboardAvoidingView {
|
|
158
|
-
return require('./Libraries/Components/Keyboard/KeyboardAvoidingView')
|
|
159
|
-
|
|
160
|
-
get MaskedViewIOS(): MaskedViewIOS {
|
|
161
|
-
warnOnce(
|
|
162
|
-
'maskedviewios-moved',
|
|
163
|
-
'MaskedViewIOS has been extracted from react-native core and will be removed in a future release. ' +
|
|
164
|
-
"It can now be installed and imported from '@react-native-community/masked-view' instead of 'react-native'. " +
|
|
165
|
-
'See https://github.com/react-native-community/react-native-masked-view',
|
|
166
|
-
);
|
|
167
|
-
return require('./Libraries/Components/MaskedView/MaskedViewIOS');
|
|
137
|
+
return require('./Libraries/Components/Keyboard/KeyboardAvoidingView')
|
|
138
|
+
.default;
|
|
168
139
|
},
|
|
169
140
|
get Modal(): Modal {
|
|
170
141
|
return require('./Libraries/Modal/Modal');
|
|
171
142
|
},
|
|
172
|
-
get Picker(): Picker {
|
|
173
|
-
warnOnce(
|
|
174
|
-
'picker-moved',
|
|
175
|
-
'Picker has been extracted from react-native core and will be removed in a future release. ' +
|
|
176
|
-
"It can now be installed and imported from '@react-native-community/picker' instead of 'react-native'. " +
|
|
177
|
-
'See https://github.com/react-native-community/react-native-picker',
|
|
178
|
-
);
|
|
179
|
-
return require('./Libraries/Components/Picker/Picker');
|
|
180
|
-
},
|
|
181
|
-
get PickerIOS(): PickerIOS {
|
|
182
|
-
warnOnce(
|
|
183
|
-
'pickerios-moved',
|
|
184
|
-
'PickerIOS has been extracted from react-native core and will be removed in a future release. ' +
|
|
185
|
-
"It can now be installed and imported from '@react-native-community/picker' instead of 'react-native'. " +
|
|
186
|
-
'See https://github.com/react-native-community/react-native-picker',
|
|
187
|
-
);
|
|
188
|
-
return require('./Libraries/Components/Picker/PickerIOS');
|
|
189
|
-
},
|
|
190
143
|
get Pressable(): Pressable {
|
|
191
144
|
return require('./Libraries/Components/Pressable/Pressable').default;
|
|
192
145
|
},
|
|
146
|
+
// $FlowFixMe[value-as-type]
|
|
193
147
|
get ProgressBarAndroid(): ProgressBarAndroid {
|
|
194
148
|
warnOnce(
|
|
195
149
|
'progress-bar-android-moved',
|
|
196
150
|
'ProgressBarAndroid has been extracted from react-native core and will be removed in a future release. ' +
|
|
197
151
|
"It can now be installed and imported from '@react-native-community/progress-bar-android' instead of 'react-native'. " +
|
|
198
|
-
'See https://github.com/react-native-
|
|
152
|
+
'See https://github.com/react-native-progress-view/progress-bar-android',
|
|
199
153
|
);
|
|
200
154
|
return require('./Libraries/Components/ProgressBarAndroid/ProgressBarAndroid');
|
|
201
155
|
},
|
|
202
|
-
get
|
|
203
|
-
|
|
204
|
-
'progress-view-ios-moved',
|
|
205
|
-
'ProgressViewIOS has been extracted from react-native core and will be removed in a future release. ' +
|
|
206
|
-
"It can now be installed and imported from '@react-native-community/progress-view' instead of 'react-native'. " +
|
|
207
|
-
'See https://github.com/react-native-community/react-native-progress-view',
|
|
208
|
-
);
|
|
209
|
-
return require('./Libraries/Components/ProgressViewIOS/ProgressViewIOS');
|
|
156
|
+
get RefreshControl(): RefreshControl {
|
|
157
|
+
return require('./Libraries/Components/RefreshControl/RefreshControl');
|
|
210
158
|
},
|
|
211
159
|
get SafeAreaView(): SafeAreaView {
|
|
212
|
-
return require('./Libraries/Components/SafeAreaView/SafeAreaView');
|
|
160
|
+
return require('./Libraries/Components/SafeAreaView/SafeAreaView').default;
|
|
213
161
|
},
|
|
214
162
|
get ScrollView(): ScrollView {
|
|
215
163
|
return require('./Libraries/Components/ScrollView/ScrollView');
|
|
216
164
|
},
|
|
217
165
|
get SectionList(): SectionList {
|
|
218
|
-
return require('./Libraries/Lists/SectionList');
|
|
219
|
-
},
|
|
220
|
-
get SegmentedControlIOS(): SegmentedControlIOS {
|
|
221
|
-
warnOnce(
|
|
222
|
-
'segmented-control-ios-moved',
|
|
223
|
-
'SegmentedControlIOS has been extracted from react-native core and will be removed in a future release. ' +
|
|
224
|
-
"It can now be installed and imported from '@react-native-community/segmented-control' instead of 'react-native'. " +
|
|
225
|
-
'See https://github.com/react-native-community/react-native-segmented-control',
|
|
226
|
-
);
|
|
227
|
-
return require('./Libraries/Components/SegmentedControlIOS/SegmentedControlIOS');
|
|
228
|
-
},
|
|
229
|
-
get Slider(): Slider {
|
|
230
|
-
warnOnce(
|
|
231
|
-
'slider-moved',
|
|
232
|
-
'Slider has been extracted from react-native core and will be removed in a future release. ' +
|
|
233
|
-
"It can now be installed and imported from '@react-native-community/slider' instead of 'react-native'. " +
|
|
234
|
-
'See https://github.com/react-native-community/react-native-slider',
|
|
235
|
-
);
|
|
236
|
-
return require('./Libraries/Components/Slider/Slider');
|
|
237
|
-
},
|
|
238
|
-
get Switch(): Switch {
|
|
239
|
-
return require('./Libraries/Components/Switch/Switch');
|
|
240
|
-
},
|
|
241
|
-
get RefreshControl(): RefreshControl {
|
|
242
|
-
return require('./Libraries/Components/RefreshControl/RefreshControl');
|
|
166
|
+
return require('./Libraries/Lists/SectionList').default;
|
|
243
167
|
},
|
|
244
168
|
get StatusBar(): StatusBar {
|
|
245
169
|
return require('./Libraries/Components/StatusBar/StatusBar');
|
|
246
170
|
},
|
|
171
|
+
get Switch(): Switch {
|
|
172
|
+
return require('./Libraries/Components/Switch/Switch').default;
|
|
173
|
+
},
|
|
247
174
|
get Text(): Text {
|
|
248
175
|
return require('./Libraries/Text/Text');
|
|
249
176
|
},
|
|
@@ -251,7 +178,7 @@ module.exports = {
|
|
|
251
178
|
return require('./Libraries/Components/TextInput/TextInput');
|
|
252
179
|
},
|
|
253
180
|
get Touchable(): Touchable {
|
|
254
|
-
return require('./Libraries/Components/Touchable/Touchable');
|
|
181
|
+
return require('./Libraries/Components/Touchable/Touchable').default;
|
|
255
182
|
},
|
|
256
183
|
get TouchableHighlight(): TouchableHighlight {
|
|
257
184
|
return require('./Libraries/Components/Touchable/TouchableHighlight');
|
|
@@ -282,8 +209,11 @@ module.exports = {
|
|
|
282
209
|
get Alert(): Alert {
|
|
283
210
|
return require('./Libraries/Alert/Alert');
|
|
284
211
|
},
|
|
285
|
-
|
|
286
|
-
|
|
212
|
+
// Include any types exported in the Animated module together with its default export, so
|
|
213
|
+
// you can references types such as Animated.Numeric
|
|
214
|
+
get Animated(): {...$Diff<AnimatedModule, {default: any}>, ...Animated} {
|
|
215
|
+
// $FlowExpectedError[prop-missing]: we only return the default export, all other exports are types
|
|
216
|
+
return require('./Libraries/Animated/Animated').default;
|
|
287
217
|
},
|
|
288
218
|
get Appearance(): Appearance {
|
|
289
219
|
return require('./Libraries/Utilities/Appearance');
|
|
@@ -294,15 +224,6 @@ module.exports = {
|
|
|
294
224
|
get AppState(): AppState {
|
|
295
225
|
return require('./Libraries/AppState/AppState');
|
|
296
226
|
},
|
|
297
|
-
get AsyncStorage(): AsyncStorage {
|
|
298
|
-
warnOnce(
|
|
299
|
-
'async-storage-moved',
|
|
300
|
-
'AsyncStorage has been extracted from react-native core and will be removed in a future release. ' +
|
|
301
|
-
"It can now be installed and imported from '@react-native-community/async-storage' instead of 'react-native'. " +
|
|
302
|
-
'See https://github.com/react-native-community/react-native-async-storage',
|
|
303
|
-
);
|
|
304
|
-
return require('./Libraries/Storage/AsyncStorage');
|
|
305
|
-
},
|
|
306
227
|
get BackHandler(): BackHandler {
|
|
307
228
|
return require('./Libraries/Utilities/BackHandler');
|
|
308
229
|
},
|
|
@@ -310,48 +231,32 @@ module.exports = {
|
|
|
310
231
|
warnOnce(
|
|
311
232
|
'clipboard-moved',
|
|
312
233
|
'Clipboard has been extracted from react-native core and will be removed in a future release. ' +
|
|
313
|
-
"It can now be installed and imported from '@react-native-
|
|
314
|
-
'See https://github.com/react-native-
|
|
234
|
+
"It can now be installed and imported from '@react-native-clipboard/clipboard' instead of 'react-native'. " +
|
|
235
|
+
'See https://github.com/react-native-clipboard/clipboard',
|
|
315
236
|
);
|
|
316
237
|
return require('./Libraries/Components/Clipboard/Clipboard');
|
|
317
238
|
},
|
|
318
|
-
get DatePickerAndroid(): DatePickerAndroid {
|
|
319
|
-
warnOnce(
|
|
320
|
-
'DatePickerAndroid-merged',
|
|
321
|
-
'DatePickerAndroid has been merged with DatePickerIOS and will be removed in a future release. ' +
|
|
322
|
-
"It can now be installed and imported from '@react-native-community/datetimepicker' instead of 'react-native'. " +
|
|
323
|
-
'See https://github.com/react-native-community/react-native-datetimepicker',
|
|
324
|
-
);
|
|
325
|
-
return require('./Libraries/Components/DatePickerAndroid/DatePickerAndroid');
|
|
326
|
-
},
|
|
327
239
|
get DeviceInfo(): DeviceInfo {
|
|
328
240
|
return require('./Libraries/Utilities/DeviceInfo');
|
|
329
241
|
},
|
|
242
|
+
get DevMenu(): DevMenu {
|
|
243
|
+
return require('./src/private/devmenu/DevMenu');
|
|
244
|
+
},
|
|
330
245
|
get DevSettings(): DevSettings {
|
|
331
246
|
return require('./Libraries/Utilities/DevSettings');
|
|
332
247
|
},
|
|
333
248
|
get Dimensions(): Dimensions {
|
|
334
|
-
return require('./Libraries/Utilities/Dimensions');
|
|
249
|
+
return require('./Libraries/Utilities/Dimensions').default;
|
|
335
250
|
},
|
|
336
251
|
get Easing(): Easing {
|
|
337
|
-
return require('./Libraries/Animated/
|
|
252
|
+
return require('./Libraries/Animated/Easing').default;
|
|
338
253
|
},
|
|
339
254
|
get findNodeHandle(): $PropertyType<ReactNative, 'findNodeHandle'> {
|
|
340
|
-
return require('./Libraries/
|
|
255
|
+
return require('./Libraries/ReactNative/RendererProxy').findNodeHandle;
|
|
341
256
|
},
|
|
342
257
|
get I18nManager(): I18nManager {
|
|
343
258
|
return require('./Libraries/ReactNative/I18nManager');
|
|
344
259
|
},
|
|
345
|
-
get ImagePickerIOS(): ImagePickerIOS {
|
|
346
|
-
warnOnce(
|
|
347
|
-
'imagePickerIOS-moved',
|
|
348
|
-
'ImagePickerIOS has been extracted from react-native core and will be removed in a future release. ' +
|
|
349
|
-
"Please upgrade to use either '@react-native-community/react-native-image-picker' or 'expo-image-picker'. " +
|
|
350
|
-
"If you cannot upgrade to a different library, please install the deprecated '@react-native-community/image-picker-ios' package. " +
|
|
351
|
-
'See https://github.com/react-native-community/react-native-image-picker-ios',
|
|
352
|
-
);
|
|
353
|
-
return require('./Libraries/Image/ImagePickerIOS');
|
|
354
|
-
},
|
|
355
260
|
get InteractionManager(): InteractionManager {
|
|
356
261
|
return require('./Libraries/Interaction/InteractionManager');
|
|
357
262
|
},
|
|
@@ -365,33 +270,33 @@ module.exports = {
|
|
|
365
270
|
return require('./Libraries/Linking/Linking');
|
|
366
271
|
},
|
|
367
272
|
get LogBox(): LogBox {
|
|
368
|
-
return require('./Libraries/LogBox/LogBox');
|
|
273
|
+
return require('./Libraries/LogBox/LogBox').default;
|
|
369
274
|
},
|
|
370
275
|
get NativeDialogManagerAndroid(): NativeDialogManagerAndroid {
|
|
371
276
|
return require('./Libraries/NativeModules/specs/NativeDialogManagerAndroid')
|
|
372
277
|
.default;
|
|
373
278
|
},
|
|
374
279
|
get NativeEventEmitter(): NativeEventEmitter {
|
|
375
|
-
return require('./Libraries/EventEmitter/NativeEventEmitter');
|
|
280
|
+
return require('./Libraries/EventEmitter/NativeEventEmitter').default;
|
|
376
281
|
},
|
|
377
282
|
get Networking(): Networking {
|
|
378
|
-
return require('./Libraries/Network/RCTNetworking');
|
|
283
|
+
return require('./Libraries/Network/RCTNetworking').default;
|
|
379
284
|
},
|
|
380
285
|
get PanResponder(): PanResponder {
|
|
381
|
-
return require('./Libraries/Interaction/PanResponder');
|
|
286
|
+
return require('./Libraries/Interaction/PanResponder').default;
|
|
382
287
|
},
|
|
383
288
|
get PermissionsAndroid(): PermissionsAndroid {
|
|
384
289
|
return require('./Libraries/PermissionsAndroid/PermissionsAndroid');
|
|
385
290
|
},
|
|
386
291
|
get PixelRatio(): PixelRatio {
|
|
387
|
-
return require('./Libraries/Utilities/PixelRatio');
|
|
292
|
+
return require('./Libraries/Utilities/PixelRatio').default;
|
|
388
293
|
},
|
|
389
294
|
get PushNotificationIOS(): PushNotificationIOS {
|
|
390
295
|
warnOnce(
|
|
391
296
|
'pushNotificationIOS-moved',
|
|
392
297
|
'PushNotificationIOS has been extracted from react-native core and will be removed in a future release. ' +
|
|
393
298
|
"It can now be installed and imported from '@react-native-community/push-notification-ios' instead of 'react-native'. " +
|
|
394
|
-
'See https://github.com/react-native-
|
|
299
|
+
'See https://github.com/react-native-push-notification/ios',
|
|
395
300
|
);
|
|
396
301
|
return require('./Libraries/PushNotificationIOS/PushNotificationIOS');
|
|
397
302
|
},
|
|
@@ -401,28 +306,19 @@ module.exports = {
|
|
|
401
306
|
get Share(): Share {
|
|
402
307
|
return require('./Libraries/Share/Share');
|
|
403
308
|
},
|
|
404
|
-
get StatusBarIOS(): StatusBarIOS {
|
|
405
|
-
warnOnce(
|
|
406
|
-
'StatusBarIOS-merged',
|
|
407
|
-
'StatusBarIOS has been merged with StatusBar and will be removed in a future release. Use StatusBar for mutating the status bar',
|
|
408
|
-
);
|
|
409
|
-
return require('./Libraries/Components/StatusBar/StatusBarIOS');
|
|
410
|
-
},
|
|
411
309
|
get StyleSheet(): StyleSheet {
|
|
412
310
|
return require('./Libraries/StyleSheet/StyleSheet');
|
|
413
311
|
},
|
|
414
312
|
get Systrace(): Systrace {
|
|
415
313
|
return require('./Libraries/Performance/Systrace');
|
|
416
314
|
},
|
|
315
|
+
// $FlowFixMe[value-as-type]
|
|
417
316
|
get ToastAndroid(): ToastAndroid {
|
|
418
317
|
return require('./Libraries/Components/ToastAndroid/ToastAndroid');
|
|
419
318
|
},
|
|
420
319
|
get TurboModuleRegistry(): TurboModuleRegistry {
|
|
421
320
|
return require('./Libraries/TurboModule/TurboModuleRegistry');
|
|
422
321
|
},
|
|
423
|
-
get TVEventHandler(): TVEventHandler {
|
|
424
|
-
return require('./Libraries/Components/AppleTV/TVEventHandler');
|
|
425
|
-
},
|
|
426
322
|
get UIManager(): UIManager {
|
|
427
323
|
return require('./Libraries/ReactNative/UIManager');
|
|
428
324
|
},
|
|
@@ -430,9 +326,12 @@ module.exports = {
|
|
|
430
326
|
ReactNative,
|
|
431
327
|
'unstable_batchedUpdates',
|
|
432
328
|
> {
|
|
433
|
-
return require('./Libraries/
|
|
329
|
+
return require('./Libraries/ReactNative/RendererProxy')
|
|
434
330
|
.unstable_batchedUpdates;
|
|
435
331
|
},
|
|
332
|
+
get useAnimatedValue(): useAnimatedValue {
|
|
333
|
+
return require('./Libraries/Animated/useAnimatedValue').default;
|
|
334
|
+
},
|
|
436
335
|
get useColorScheme(): useColorScheme {
|
|
437
336
|
return require('./Libraries/Utilities/useColorScheme').default;
|
|
438
337
|
},
|
|
@@ -440,7 +339,7 @@ module.exports = {
|
|
|
440
339
|
return require('./Libraries/Utilities/useWindowDimensions').default;
|
|
441
340
|
},
|
|
442
341
|
get UTFSequence(): UTFSequence {
|
|
443
|
-
return require('./Libraries/UTFSequence');
|
|
342
|
+
return require('./Libraries/UTFSequence').default;
|
|
444
343
|
},
|
|
445
344
|
get Vibration(): Vibration {
|
|
446
345
|
return require('./Libraries/Vibration/Vibration');
|
|
@@ -451,7 +350,11 @@ module.exports = {
|
|
|
451
350
|
|
|
452
351
|
// Plugins
|
|
453
352
|
get DeviceEventEmitter(): RCTDeviceEventEmitter {
|
|
454
|
-
return require('./Libraries/EventEmitter/RCTDeviceEventEmitter');
|
|
353
|
+
return require('./Libraries/EventEmitter/RCTDeviceEventEmitter').default;
|
|
354
|
+
},
|
|
355
|
+
get DynamicColorIOS(): DynamicColorIOS {
|
|
356
|
+
return require('./Libraries/StyleSheet/PlatformColorValueTypesIOS')
|
|
357
|
+
.DynamicColorIOS;
|
|
455
358
|
},
|
|
456
359
|
get NativeAppEventEmitter(): RCTNativeAppEventEmitter {
|
|
457
360
|
return require('./Libraries/EventEmitter/RCTNativeAppEventEmitter');
|
|
@@ -462,28 +365,20 @@ module.exports = {
|
|
|
462
365
|
get Platform(): Platform {
|
|
463
366
|
return require('./Libraries/Utilities/Platform');
|
|
464
367
|
},
|
|
465
|
-
get processColor(): processColor {
|
|
466
|
-
return require('./Libraries/StyleSheet/processColor');
|
|
467
|
-
},
|
|
468
368
|
get PlatformColor(): PlatformColor {
|
|
469
369
|
return require('./Libraries/StyleSheet/PlatformColorValueTypes')
|
|
470
370
|
.PlatformColor;
|
|
471
371
|
},
|
|
472
|
-
get
|
|
473
|
-
return require('./Libraries/StyleSheet/
|
|
474
|
-
.DynamicColorIOS;
|
|
475
|
-
},
|
|
476
|
-
get ColorAndroid(): ColorAndroid {
|
|
477
|
-
return require('./Libraries/StyleSheet/PlatformColorValueTypesAndroid')
|
|
478
|
-
.ColorAndroid;
|
|
372
|
+
get processColor(): processColor {
|
|
373
|
+
return require('./Libraries/StyleSheet/processColor').default;
|
|
479
374
|
},
|
|
480
375
|
get requireNativeComponent(): <T>(
|
|
481
376
|
uiViewClassName: string,
|
|
482
377
|
) => HostComponent<T> {
|
|
483
|
-
return require('./Libraries/ReactNative/requireNativeComponent');
|
|
378
|
+
return require('./Libraries/ReactNative/requireNativeComponent').default;
|
|
484
379
|
},
|
|
485
|
-
get
|
|
486
|
-
return require('./Libraries/ReactNative/
|
|
380
|
+
get RootTagContext(): RootTagContext {
|
|
381
|
+
return require('./Libraries/ReactNative/RootTag').RootTagContext;
|
|
487
382
|
},
|
|
488
383
|
get unstable_enableLogBox(): () => void {
|
|
489
384
|
return () =>
|
|
@@ -491,36 +386,30 @@ module.exports = {
|
|
|
491
386
|
'LogBox is enabled by default so there is no need to call unstable_enableLogBox() anymore. This is a no op and will be removed in the next version.',
|
|
492
387
|
);
|
|
493
388
|
},
|
|
494
|
-
// Prop Types
|
|
495
|
-
get ColorPropType(): DeprecatedColorPropType {
|
|
496
|
-
return require('./Libraries/DeprecatedPropTypes/DeprecatedColorPropType');
|
|
497
|
-
},
|
|
498
|
-
get EdgeInsetsPropType(): DeprecatedEdgeInsetsPropType {
|
|
499
|
-
return require('./Libraries/DeprecatedPropTypes/DeprecatedEdgeInsetsPropType');
|
|
500
|
-
},
|
|
501
|
-
get PointPropType(): DeprecatedPointPropType {
|
|
502
|
-
return require('./Libraries/DeprecatedPropTypes/DeprecatedPointPropType');
|
|
503
|
-
},
|
|
504
|
-
get ViewPropTypes(): DeprecatedViewPropTypes {
|
|
505
|
-
return require('./Libraries/DeprecatedPropTypes/DeprecatedViewPropTypes');
|
|
506
|
-
},
|
|
507
389
|
};
|
|
508
390
|
|
|
509
391
|
if (__DEV__) {
|
|
510
|
-
|
|
392
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
393
|
+
* attempting to access ART. */
|
|
394
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
395
|
+
* attempting to access ART. */
|
|
511
396
|
Object.defineProperty(module.exports, 'ART', {
|
|
512
397
|
configurable: true,
|
|
513
398
|
get() {
|
|
514
399
|
invariant(
|
|
515
400
|
false,
|
|
516
401
|
'ART has been removed from React Native. ' +
|
|
517
|
-
"
|
|
518
|
-
'
|
|
402
|
+
"Please upgrade to use either 'react-native-svg' or a similar package. " +
|
|
403
|
+
"If you cannot upgrade to a different library, please install the deprecated '@react-native-community/art' package. " +
|
|
404
|
+
'See https://github.com/react-native-art/art',
|
|
519
405
|
);
|
|
520
406
|
},
|
|
521
407
|
});
|
|
522
408
|
|
|
523
|
-
|
|
409
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
410
|
+
* attempting to access ListView. */
|
|
411
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
412
|
+
* attempting to access ListView. */
|
|
524
413
|
Object.defineProperty(module.exports, 'ListView', {
|
|
525
414
|
configurable: true,
|
|
526
415
|
get() {
|
|
@@ -533,7 +422,10 @@ if (__DEV__) {
|
|
|
533
422
|
},
|
|
534
423
|
});
|
|
535
424
|
|
|
536
|
-
|
|
425
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
426
|
+
* attempting to access SwipeableListView. */
|
|
427
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
428
|
+
* attempting to access SwipeableListView. */
|
|
537
429
|
Object.defineProperty(module.exports, 'SwipeableListView', {
|
|
538
430
|
configurable: true,
|
|
539
431
|
get() {
|
|
@@ -546,7 +438,10 @@ if (__DEV__) {
|
|
|
546
438
|
},
|
|
547
439
|
});
|
|
548
440
|
|
|
549
|
-
|
|
441
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
442
|
+
* attempting to access WebView. */
|
|
443
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
444
|
+
* attempting to access WebView. */
|
|
550
445
|
Object.defineProperty(module.exports, 'WebView', {
|
|
551
446
|
configurable: true,
|
|
552
447
|
get() {
|
|
@@ -554,12 +449,15 @@ if (__DEV__) {
|
|
|
554
449
|
false,
|
|
555
450
|
'WebView has been removed from React Native. ' +
|
|
556
451
|
"It can now be installed and imported from 'react-native-webview' instead of 'react-native'. " +
|
|
557
|
-
'See https://github.com/react-native-
|
|
452
|
+
'See https://github.com/react-native-webview/react-native-webview',
|
|
558
453
|
);
|
|
559
454
|
},
|
|
560
455
|
});
|
|
561
456
|
|
|
562
|
-
|
|
457
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
458
|
+
* attempting to access NetInfo. */
|
|
459
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
460
|
+
* attempting to access NetInfo. */
|
|
563
461
|
Object.defineProperty(module.exports, 'NetInfo', {
|
|
564
462
|
configurable: true,
|
|
565
463
|
get() {
|
|
@@ -567,25 +465,31 @@ if (__DEV__) {
|
|
|
567
465
|
false,
|
|
568
466
|
'NetInfo has been removed from React Native. ' +
|
|
569
467
|
"It can now be installed and imported from '@react-native-community/netinfo' instead of 'react-native'. " +
|
|
570
|
-
'See https://github.com/react-native-
|
|
468
|
+
'See https://github.com/react-native-netinfo/react-native-netinfo',
|
|
571
469
|
);
|
|
572
470
|
},
|
|
573
471
|
});
|
|
574
472
|
|
|
575
|
-
|
|
473
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
474
|
+
* attempting to access CameraRoll. */
|
|
475
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
476
|
+
* attempting to access CameraRoll. */
|
|
576
477
|
Object.defineProperty(module.exports, 'CameraRoll', {
|
|
577
478
|
configurable: true,
|
|
578
479
|
get() {
|
|
579
480
|
invariant(
|
|
580
481
|
false,
|
|
581
482
|
'CameraRoll has been removed from React Native. ' +
|
|
582
|
-
"It can now be installed and imported from '@react-native-
|
|
583
|
-
'See https://github.com/react-native-
|
|
483
|
+
"It can now be installed and imported from '@react-native-camera-roll/camera-roll' instead of 'react-native'. " +
|
|
484
|
+
'See https://github.com/react-native-cameraroll/react-native-cameraroll',
|
|
584
485
|
);
|
|
585
486
|
},
|
|
586
487
|
});
|
|
587
488
|
|
|
588
|
-
|
|
489
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
490
|
+
* attempting to access ImageStore. */
|
|
491
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
492
|
+
* attempting to access ImageStore. */
|
|
589
493
|
Object.defineProperty(module.exports, 'ImageStore', {
|
|
590
494
|
configurable: true,
|
|
591
495
|
get() {
|
|
@@ -599,7 +503,10 @@ if (__DEV__) {
|
|
|
599
503
|
},
|
|
600
504
|
});
|
|
601
505
|
|
|
602
|
-
|
|
506
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
507
|
+
* attempting to access ImageEditor. */
|
|
508
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
509
|
+
* attempting to access ImageEditor. */
|
|
603
510
|
Object.defineProperty(module.exports, 'ImageEditor', {
|
|
604
511
|
configurable: true,
|
|
605
512
|
get() {
|
|
@@ -607,12 +514,15 @@ if (__DEV__) {
|
|
|
607
514
|
false,
|
|
608
515
|
'ImageEditor has been removed from React Native. ' +
|
|
609
516
|
"It can now be installed and imported from '@react-native-community/image-editor' instead of 'react-native'. " +
|
|
610
|
-
'See https://github.com/
|
|
517
|
+
'See https://github.com/callstack/react-native-image-editor',
|
|
611
518
|
);
|
|
612
519
|
},
|
|
613
520
|
});
|
|
614
521
|
|
|
615
|
-
|
|
522
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
523
|
+
* attempting to access TimePickerAndroid. */
|
|
524
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
525
|
+
* attempting to access TimePickerAndroid. */
|
|
616
526
|
Object.defineProperty(module.exports, 'TimePickerAndroid', {
|
|
617
527
|
configurable: true,
|
|
618
528
|
get() {
|
|
@@ -620,12 +530,15 @@ if (__DEV__) {
|
|
|
620
530
|
false,
|
|
621
531
|
'TimePickerAndroid has been removed from React Native. ' +
|
|
622
532
|
"It can now be installed and imported from '@react-native-community/datetimepicker' instead of 'react-native'. " +
|
|
623
|
-
'See https://github.com/react-native-
|
|
533
|
+
'See https://github.com/react-native-datetimepicker/datetimepicker',
|
|
624
534
|
);
|
|
625
535
|
},
|
|
626
536
|
});
|
|
627
537
|
|
|
628
|
-
|
|
538
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
539
|
+
* attempting to access ToolbarAndroid. */
|
|
540
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
541
|
+
* attempting to access ToolbarAndroid. */
|
|
629
542
|
Object.defineProperty(module.exports, 'ToolbarAndroid', {
|
|
630
543
|
configurable: true,
|
|
631
544
|
get() {
|
|
@@ -633,20 +546,209 @@ if (__DEV__) {
|
|
|
633
546
|
false,
|
|
634
547
|
'ToolbarAndroid has been removed from React Native. ' +
|
|
635
548
|
"It can now be installed and imported from '@react-native-community/toolbar-android' instead of 'react-native'. " +
|
|
636
|
-
'See https://github.com/react-native-
|
|
549
|
+
'See https://github.com/react-native-toolbar-android/toolbar-android',
|
|
637
550
|
);
|
|
638
551
|
},
|
|
639
552
|
});
|
|
640
553
|
|
|
641
|
-
|
|
554
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
555
|
+
* attempting to access ViewPagerAndroid. */
|
|
556
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
557
|
+
* attempting to access ViewPagerAndroid. */
|
|
642
558
|
Object.defineProperty(module.exports, 'ViewPagerAndroid', {
|
|
643
559
|
configurable: true,
|
|
644
560
|
get() {
|
|
645
561
|
invariant(
|
|
646
562
|
false,
|
|
647
563
|
'ViewPagerAndroid has been removed from React Native. ' +
|
|
648
|
-
"It can now be installed and imported from '
|
|
649
|
-
'See https://github.com/react-native-
|
|
564
|
+
"It can now be installed and imported from 'react-native-pager-view' instead of 'react-native'. " +
|
|
565
|
+
'See https://github.com/callstack/react-native-pager-view',
|
|
566
|
+
);
|
|
567
|
+
},
|
|
568
|
+
});
|
|
569
|
+
|
|
570
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
571
|
+
* attempting to access CheckBox. */
|
|
572
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
573
|
+
* attempting to access CheckBox. */
|
|
574
|
+
Object.defineProperty(module.exports, 'CheckBox', {
|
|
575
|
+
configurable: true,
|
|
576
|
+
get() {
|
|
577
|
+
invariant(
|
|
578
|
+
false,
|
|
579
|
+
'CheckBox has been removed from React Native. ' +
|
|
580
|
+
"It can now be installed and imported from '@react-native-community/checkbox' instead of 'react-native'. " +
|
|
581
|
+
'See https://github.com/react-native-checkbox/react-native-checkbox',
|
|
582
|
+
);
|
|
583
|
+
},
|
|
584
|
+
});
|
|
585
|
+
|
|
586
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
587
|
+
* attempting to access SegmentedControlIOS. */
|
|
588
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
589
|
+
* attempting to access SegmentedControlIOS. */
|
|
590
|
+
Object.defineProperty(module.exports, 'SegmentedControlIOS', {
|
|
591
|
+
configurable: true,
|
|
592
|
+
get() {
|
|
593
|
+
invariant(
|
|
594
|
+
false,
|
|
595
|
+
'SegmentedControlIOS has been removed from React Native. ' +
|
|
596
|
+
"It can now be installed and imported from '@react-native-segmented-control/segmented-control' instead of 'react-native'." +
|
|
597
|
+
'See https://github.com/react-native-segmented-control/segmented-control',
|
|
598
|
+
);
|
|
599
|
+
},
|
|
600
|
+
});
|
|
601
|
+
|
|
602
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
603
|
+
* attempting to access StatusBarIOS. */
|
|
604
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
605
|
+
* attempting to access StatusBarIOS. */
|
|
606
|
+
Object.defineProperty(module.exports, 'StatusBarIOS', {
|
|
607
|
+
configurable: true,
|
|
608
|
+
get() {
|
|
609
|
+
invariant(
|
|
610
|
+
false,
|
|
611
|
+
'StatusBarIOS has been removed from React Native. ' +
|
|
612
|
+
'Has been merged with StatusBar. ' +
|
|
613
|
+
'See https://reactnative.dev/docs/statusbar',
|
|
614
|
+
);
|
|
615
|
+
},
|
|
616
|
+
});
|
|
617
|
+
|
|
618
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
619
|
+
* attempting to access PickerIOS. */
|
|
620
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
621
|
+
* attempting to access PickerIOS. */
|
|
622
|
+
Object.defineProperty(module.exports, 'PickerIOS', {
|
|
623
|
+
configurable: true,
|
|
624
|
+
get() {
|
|
625
|
+
invariant(
|
|
626
|
+
false,
|
|
627
|
+
'PickerIOS has been removed from React Native. ' +
|
|
628
|
+
"It can now be installed and imported from '@react-native-picker/picker' instead of 'react-native'. " +
|
|
629
|
+
'See https://github.com/react-native-picker/picker',
|
|
630
|
+
);
|
|
631
|
+
},
|
|
632
|
+
});
|
|
633
|
+
|
|
634
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
635
|
+
* attempting to access Picker. */
|
|
636
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
637
|
+
* attempting to access Picker. */
|
|
638
|
+
Object.defineProperty(module.exports, 'Picker', {
|
|
639
|
+
configurable: true,
|
|
640
|
+
get() {
|
|
641
|
+
invariant(
|
|
642
|
+
false,
|
|
643
|
+
'Picker has been removed from React Native. ' +
|
|
644
|
+
"It can now be installed and imported from '@react-native-picker/picker' instead of 'react-native'. " +
|
|
645
|
+
'See https://github.com/react-native-picker/picker',
|
|
646
|
+
);
|
|
647
|
+
},
|
|
648
|
+
});
|
|
649
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
650
|
+
* attempting to access DatePickerAndroid. */
|
|
651
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
652
|
+
* attempting to access DatePickerAndroid. */
|
|
653
|
+
Object.defineProperty(module.exports, 'DatePickerAndroid', {
|
|
654
|
+
configurable: true,
|
|
655
|
+
get() {
|
|
656
|
+
invariant(
|
|
657
|
+
false,
|
|
658
|
+
'DatePickerAndroid has been removed from React Native. ' +
|
|
659
|
+
"It can now be installed and imported from '@react-native-community/datetimepicker' instead of 'react-native'. " +
|
|
660
|
+
'See https://github.com/react-native-datetimepicker/datetimepicker',
|
|
661
|
+
);
|
|
662
|
+
},
|
|
663
|
+
});
|
|
664
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
665
|
+
* attempting to access MaskedViewIOS. */
|
|
666
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
667
|
+
* attempting to access MaskedViewIOS. */
|
|
668
|
+
Object.defineProperty(module.exports, 'MaskedViewIOS', {
|
|
669
|
+
configurable: true,
|
|
670
|
+
get() {
|
|
671
|
+
invariant(
|
|
672
|
+
false,
|
|
673
|
+
'MaskedViewIOS has been removed from React Native. ' +
|
|
674
|
+
"It can now be installed and imported from '@react-native-masked-view/masked-view' instead of 'react-native'. " +
|
|
675
|
+
'See https://github.com/react-native-masked-view/masked-view',
|
|
676
|
+
);
|
|
677
|
+
},
|
|
678
|
+
});
|
|
679
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
680
|
+
* attempting to access AsyncStorage. */
|
|
681
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
682
|
+
* attempting to access AsyncStorage. */
|
|
683
|
+
Object.defineProperty(module.exports, 'AsyncStorage', {
|
|
684
|
+
configurable: true,
|
|
685
|
+
get() {
|
|
686
|
+
invariant(
|
|
687
|
+
false,
|
|
688
|
+
'AsyncStorage has been removed from react-native core. ' +
|
|
689
|
+
"It can now be installed and imported from '@react-native-async-storage/async-storage' instead of 'react-native'. " +
|
|
690
|
+
'See https://github.com/react-native-async-storage/async-storage',
|
|
691
|
+
);
|
|
692
|
+
},
|
|
693
|
+
});
|
|
694
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
695
|
+
* attempting to access ImagePickerIOS. */
|
|
696
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
697
|
+
* attempting to access ImagePickerIOS. */
|
|
698
|
+
Object.defineProperty(module.exports, 'ImagePickerIOS', {
|
|
699
|
+
configurable: true,
|
|
700
|
+
get() {
|
|
701
|
+
invariant(
|
|
702
|
+
false,
|
|
703
|
+
'ImagePickerIOS has been removed from React Native. ' +
|
|
704
|
+
"Please upgrade to use either 'react-native-image-picker' or 'expo-image-picker'. " +
|
|
705
|
+
"If you cannot upgrade to a different library, please install the deprecated '@react-native-community/image-picker-ios' package. " +
|
|
706
|
+
'See https://github.com/rnc-archive/react-native-image-picker-ios',
|
|
707
|
+
);
|
|
708
|
+
},
|
|
709
|
+
});
|
|
710
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
711
|
+
* attempting to access ProgressViewIOS. */
|
|
712
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
713
|
+
* attempting to access ProgressViewIOS. */
|
|
714
|
+
Object.defineProperty(module.exports, 'ProgressViewIOS', {
|
|
715
|
+
configurable: true,
|
|
716
|
+
get() {
|
|
717
|
+
invariant(
|
|
718
|
+
false,
|
|
719
|
+
'ProgressViewIOS has been removed from react-native core. ' +
|
|
720
|
+
"It can now be installed and imported from '@react-native-community/progress-view' instead of 'react-native'. " +
|
|
721
|
+
'See https://github.com/react-native-progress-view/progress-view',
|
|
722
|
+
);
|
|
723
|
+
},
|
|
724
|
+
});
|
|
725
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
726
|
+
* attempting to access DatePickerIOS. */
|
|
727
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
728
|
+
* attempting to access DatePickerIOS. */
|
|
729
|
+
Object.defineProperty(module.exports, 'DatePickerIOS', {
|
|
730
|
+
configurable: true,
|
|
731
|
+
get() {
|
|
732
|
+
invariant(
|
|
733
|
+
false,
|
|
734
|
+
'DatePickerIOS has been removed from react-native core. ' +
|
|
735
|
+
"It can now be installed and imported from '@react-native-community/datetimepicker' instead of 'react-native'. " +
|
|
736
|
+
'See https://github.com/react-native-datetimepicker/datetimepicker',
|
|
737
|
+
);
|
|
738
|
+
},
|
|
739
|
+
});
|
|
740
|
+
/* $FlowFixMe[prop-missing] This is intentional: Flow will error when
|
|
741
|
+
* attempting to access Slider. */
|
|
742
|
+
/* $FlowFixMe[invalid-export] This is intentional: Flow will error when
|
|
743
|
+
* attempting to access Slider. */
|
|
744
|
+
Object.defineProperty(module.exports, 'Slider', {
|
|
745
|
+
configurable: true,
|
|
746
|
+
get() {
|
|
747
|
+
invariant(
|
|
748
|
+
false,
|
|
749
|
+
'Slider has been removed from react-native core. ' +
|
|
750
|
+
"It can now be installed and imported from '@react-native-community/slider' instead of 'react-native'. " +
|
|
751
|
+
'See https://github.com/callstack/react-native-slider',
|
|
650
752
|
);
|
|
651
753
|
},
|
|
652
754
|
});
|