react-native-tvos 0.86.0-2 → 0.86.3-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (394) hide show
  1. package/Libraries/ActionSheetIOS/React-RCTActionSheet.podspec +1 -1
  2. package/Libraries/Animated/components/AnimatedScrollView.js +1 -1
  3. package/Libraries/AppDelegate/React-RCTAppDelegate.podspec +1 -1
  4. package/Libraries/Blob/React-RCTBlob.podspec +1 -1
  5. package/Libraries/Components/Button.js +2 -2
  6. package/Libraries/Components/TV/TVFocusGuideView.js +31 -0
  7. package/Libraries/Components/TV/useFocusEnterLeave.js +112 -0
  8. package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +1 -1
  9. package/Libraries/Components/TextInput/TextInput.flow.js +1 -1
  10. package/Libraries/Components/Touchable/Touchable.d.ts +1 -1
  11. package/Libraries/Components/View/ViewAccessibility.d.ts +1 -1
  12. package/Libraries/Components/View/ViewAccessibility.js +1 -1
  13. package/Libraries/Core/ReactNativeVersion.js +2 -2
  14. package/Libraries/Core/Timers/JSTimers.js +1 -1
  15. package/Libraries/Core/setUpNavigator.js +1 -1
  16. package/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts +1 -1
  17. package/Libraries/FBLazyVector/FBLazyVector.podspec +1 -1
  18. package/Libraries/Image/ImageSource.d.ts +1 -1
  19. package/Libraries/Image/RCTImageLoader.mm +1 -1
  20. package/Libraries/Image/React-RCTImage.podspec +1 -1
  21. package/Libraries/Interaction/PanResponder.js +1 -1
  22. package/Libraries/LinkingIOS/React-RCTLinking.podspec +1 -1
  23. package/Libraries/NativeAnimation/React-RCTAnimation.podspec +1 -1
  24. package/Libraries/Network/React-RCTNetwork.podspec +1 -1
  25. package/Libraries/PushNotificationIOS/React-RCTPushNotification.podspec +1 -1
  26. package/Libraries/Renderer/README.md +2 -2
  27. package/Libraries/Required/RCTRequired.podspec +1 -1
  28. package/Libraries/Settings/React-RCTSettings.podspec +1 -1
  29. package/Libraries/Text/React-RCTText.podspec +1 -1
  30. package/Libraries/TypeSafety/RCTTypeSafety.podspec +1 -1
  31. package/Libraries/Utilities/PolyfillFunctions.js +1 -1
  32. package/Libraries/Vibration/React-RCTVibration.podspec +1 -1
  33. package/README-core.md +6 -6
  34. package/README.md +2 -0
  35. package/React/Base/RCTVersion.m +2 -2
  36. package/React/CoreModules/React-CoreModules.podspec +1 -1
  37. package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm +1 -1
  38. package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputComponentView.mm +1 -1
  39. package/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm +43 -17
  40. package/React/React-RCTFBReactNativeSpec.podspec +1 -1
  41. package/React/React-RCTFabric.podspec +1 -1
  42. package/React/Runtime/React-RCTRuntime.podspec +1 -1
  43. package/React/Views/ScrollView/RCTScrollView.m +1 -1
  44. package/React-Core.podspec +1 -1
  45. package/React.podspec +1 -1
  46. package/ReactAndroid/build.gradle.kts +1 -1
  47. package/ReactAndroid/gradle.properties +1 -1
  48. package/ReactAndroid/publish.gradle +5 -5
  49. package/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java +5 -4
  50. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/CxxInspectorPackagerConnection.kt +1 -1
  51. package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.kt +49 -12
  52. package/ReactAndroid/src/main/java/com/facebook/react/modules/core/JavaTimerManager.kt +2 -2
  53. package/ReactAndroid/src/main/java/com/facebook/react/modules/intent/IntentModule.kt +8 -4
  54. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/NetworkingModule.kt +2 -2
  55. package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +2 -2
  56. package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactInstance.kt +1 -1
  57. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManager.java +1 -1
  58. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactNestedScrollViewManager.kt +1 -1
  59. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewManager.kt +1 -1
  60. package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextView.java +1 -1
  61. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.kt +2 -2
  62. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputManager.kt +2 -2
  63. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextSelectionWatcher.kt +1 -1
  64. package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.kt +4 -4
  65. package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewManager.kt +1 -1
  66. package/ReactApple/Libraries/RCTFoundation/RCTDeprecation/RCTDeprecation.podspec +1 -1
  67. package/ReactApple/RCTSwiftUI/RCTSwiftUI.podspec +1 -1
  68. package/ReactApple/RCTSwiftUIWrapper/RCTSwiftUIWrapper.podspec +1 -1
  69. package/ReactCommon/React-Fabric.podspec +1 -1
  70. package/ReactCommon/React-FabricComponents.podspec +1 -1
  71. package/ReactCommon/React-FabricImage.podspec +1 -1
  72. package/ReactCommon/React-Mapbuffer.podspec +1 -1
  73. package/ReactCommon/ReactCommon.podspec +1 -1
  74. package/ReactCommon/callinvoker/React-callinvoker.podspec +1 -1
  75. package/ReactCommon/cxxreact/React-cxxreact.podspec +1 -1
  76. package/ReactCommon/cxxreact/ReactNativeVersion.h +3 -3
  77. package/ReactCommon/hermes/React-hermes.podspec +1 -1
  78. package/ReactCommon/hermes/executor/React-jsitracing.podspec +1 -1
  79. package/ReactCommon/jserrorhandler/React-jserrorhandler.podspec +1 -1
  80. package/ReactCommon/jsi/React-jsi.podspec +1 -1
  81. package/ReactCommon/jsiexecutor/React-jsiexecutor.podspec +1 -1
  82. package/ReactCommon/jsinspector-modern/React-jsinspector.podspec +1 -1
  83. package/ReactCommon/jsinspector-modern/cdp/React-jsinspectorcdp.podspec +1 -1
  84. package/ReactCommon/jsinspector-modern/network/React-jsinspectornetwork.podspec +1 -1
  85. package/ReactCommon/jsinspector-modern/tracing/React-jsinspectortracing.podspec +1 -1
  86. package/ReactCommon/jsitooling/React-jsitooling.podspec +1 -1
  87. package/ReactCommon/logger/React-logger.podspec +1 -1
  88. package/ReactCommon/oscompat/React-oscompat.podspec +1 -1
  89. package/ReactCommon/react/debug/React-debug.podspec +1 -1
  90. package/ReactCommon/react/debug/redbox/JscSafeUrl.h +1 -1
  91. package/ReactCommon/react/featureflags/React-featureflags.podspec +1 -1
  92. package/ReactCommon/react/nativemodule/core/platform/android/ReactCommon/JavaTurboModule.cpp +1 -1
  93. package/ReactCommon/react/nativemodule/core/platform/ios/React-NativeModulesApple.podspec +1 -1
  94. package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTInteropTurboModule.mm +1 -1
  95. package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.mm +1 -1
  96. package/ReactCommon/react/nativemodule/defaults/React-defaultsnativemodule.podspec +1 -1
  97. package/ReactCommon/react/nativemodule/dom/NativeDOM.cpp +10 -4
  98. package/ReactCommon/react/nativemodule/dom/React-domnativemodule.podspec +1 -1
  99. package/ReactCommon/react/nativemodule/featureflags/React-featureflagsnativemodule.podspec +1 -1
  100. package/ReactCommon/react/nativemodule/idlecallbacks/React-idlecallbacksnativemodule.podspec +1 -1
  101. package/ReactCommon/react/nativemodule/intersectionobserver/React-intersectionobservernativemodule.podspec +1 -1
  102. package/ReactCommon/react/nativemodule/microtasks/React-microtasksnativemodule.podspec +1 -1
  103. package/ReactCommon/react/nativemodule/mutationobserver/React-mutationobservernativemodule.podspec +1 -1
  104. package/ReactCommon/react/nativemodule/samples/ReactCommon-Samples.podspec +1 -1
  105. package/ReactCommon/react/nativemodule/viewtransition/React-viewtransitionnativemodule.podspec +1 -1
  106. package/ReactCommon/react/nativemodule/webperformance/React-webperformancenativemodule.podspec +1 -1
  107. package/ReactCommon/react/networking/React-networking.podspec +1 -1
  108. package/ReactCommon/react/performance/cdpmetrics/React-performancecdpmetrics.podspec +1 -1
  109. package/ReactCommon/react/performance/timeline/React-performancetimeline.podspec +1 -1
  110. package/ReactCommon/react/renderer/animated/internal/primitives.h +1 -1
  111. package/ReactCommon/react/renderer/consistency/React-rendererconsistency.podspec +1 -1
  112. package/ReactCommon/react/renderer/core/EventEmitter.cpp +20 -4
  113. package/ReactCommon/react/renderer/core/ShadowNode.cpp +27 -19
  114. package/ReactCommon/react/renderer/core/ShadowNodeFamily.h +2 -0
  115. package/ReactCommon/react/renderer/css/React-renderercss.podspec +1 -1
  116. package/ReactCommon/react/renderer/debug/React-rendererdebug.podspec +1 -1
  117. package/ReactCommon/react/renderer/graphics/React-graphics.podspec +1 -1
  118. package/ReactCommon/react/renderer/imagemanager/platform/ios/React-ImageManager.podspec +1 -1
  119. package/ReactCommon/react/renderer/mounting/internal/CullingContext.cpp +1 -1
  120. package/ReactCommon/react/renderer/runtimescheduler/React-runtimescheduler.podspec +1 -1
  121. package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTFontUtils.mm +1 -1
  122. package/ReactCommon/react/renderer/uimanager/UIManager.cpp +58 -53
  123. package/ReactCommon/react/renderer/uimanager/tests/FabricUIManagerTest.cpp +144 -3
  124. package/ReactCommon/react/runtime/React-RuntimeCore.podspec +1 -1
  125. package/ReactCommon/react/runtime/React-RuntimeHermes.podspec +1 -1
  126. package/ReactCommon/react/runtime/platform/ios/React-RuntimeApple.podspec +1 -1
  127. package/ReactCommon/react/timing/React-timing.podspec +1 -1
  128. package/ReactCommon/react/utils/React-utils.podspec +1 -1
  129. package/ReactCommon/reactperflogger/React-perflogger.podspec +1 -1
  130. package/ReactCommon/runtimeexecutor/React-runtimeexecutor.podspec +1 -1
  131. package/ReactCommon/yoga/Yoga.podspec +2 -2
  132. package/ReactCommon/yoga/yoga/algorithm/AbsoluteLayout.cpp +2 -1
  133. package/ReactCommon/yoga/yoga/algorithm/CalculateLayout.cpp +11 -7
  134. package/ReactCommon/yoga/yoga/algorithm/CalculateLayout.h +1 -1
  135. package/package.json +11 -11
  136. package/scripts/cocoapods/spm.rb +1 -1
  137. package/scripts/cocoapods/utils.rb +2 -2
  138. package/scripts/codegen/templates/ReactAppDependencyProvider.podspec.template +1 -1
  139. package/scripts/codegen/templates/ReactCodegen.podspec.template +1 -1
  140. package/scripts/ios-configure-glog.sh +1 -1
  141. package/sdks/.hermesv1version +1 -1
  142. package/sdks/hermes-engine/hermes-engine.podspec +7 -2
  143. package/sdks/hermes-engine/version.properties +1 -1
  144. package/src/private/types/HostInstance.js +1 -1
  145. package/src/types/globals.d.ts +2 -2
  146. package/third-party-podspecs/RCT-Folly.podspec +1 -1
  147. package/third-party-podspecs/ReactNativeDependencies.podspec +1 -1
  148. package/third-party-podspecs/glog.podspec +1 -1
  149. package/types/public/ReactNativeTVTypes.d.ts +12 -1
  150. package/types/public/ReactNativeTypes.d.ts +2 -2
  151. package/types_generated/Libraries/ActionSheetIOS/ActionSheetIOS.d.ts +101 -0
  152. package/types_generated/Libraries/Alert/Alert.d.ts +55 -0
  153. package/types_generated/Libraries/Animated/Animated.d.ts +14 -0
  154. package/types_generated/Libraries/Animated/AnimatedEvent.d.ts +30 -0
  155. package/types_generated/Libraries/Animated/AnimatedExports.d.ts +191 -0
  156. package/types_generated/Libraries/Animated/AnimatedImplementation.d.ts +128 -0
  157. package/types_generated/Libraries/Animated/AnimatedPlatformConfig.d.ts +13 -0
  158. package/types_generated/Libraries/Animated/Easing.d.ts +171 -0
  159. package/types_generated/Libraries/Animated/animations/Animation.d.ts +35 -0
  160. package/types_generated/Libraries/Animated/animations/DecayAnimation.d.ts +42 -0
  161. package/types_generated/Libraries/Animated/animations/SpringAnimation.d.ts +130 -0
  162. package/types_generated/Libraries/Animated/animations/TimingAnimation.d.ts +54 -0
  163. package/types_generated/Libraries/Animated/components/AnimatedFlatList.d.ts +22 -0
  164. package/types_generated/Libraries/Animated/components/AnimatedImage.d.ts +18 -0
  165. package/types_generated/Libraries/Animated/components/AnimatedScrollView.d.ts +23 -0
  166. package/types_generated/Libraries/Animated/components/AnimatedSectionList.d.ts +22 -0
  167. package/types_generated/Libraries/Animated/components/AnimatedText.d.ts +18 -0
  168. package/types_generated/Libraries/Animated/components/AnimatedView.d.ts +19 -0
  169. package/types_generated/Libraries/Animated/createAnimatedComponent.d.ts +44 -0
  170. package/types_generated/Libraries/Animated/nodes/AnimatedAddition.d.ts +22 -0
  171. package/types_generated/Libraries/Animated/nodes/AnimatedColor.d.ts +80 -0
  172. package/types_generated/Libraries/Animated/nodes/AnimatedDiffClamp.d.ts +22 -0
  173. package/types_generated/Libraries/Animated/nodes/AnimatedDivision.d.ts +22 -0
  174. package/types_generated/Libraries/Animated/nodes/AnimatedInterpolation.d.ts +38 -0
  175. package/types_generated/Libraries/Animated/nodes/AnimatedModulo.d.ts +22 -0
  176. package/types_generated/Libraries/Animated/nodes/AnimatedMultiplication.d.ts +22 -0
  177. package/types_generated/Libraries/Animated/nodes/AnimatedNode.d.ts +47 -0
  178. package/types_generated/Libraries/Animated/nodes/AnimatedProps.d.ts +30 -0
  179. package/types_generated/Libraries/Animated/nodes/AnimatedStyle.d.ts +32 -0
  180. package/types_generated/Libraries/Animated/nodes/AnimatedSubtraction.d.ts +22 -0
  181. package/types_generated/Libraries/Animated/nodes/AnimatedTracking.d.ts +21 -0
  182. package/types_generated/Libraries/Animated/nodes/AnimatedValue.d.ts +126 -0
  183. package/types_generated/Libraries/Animated/nodes/AnimatedValueXY.d.ts +135 -0
  184. package/types_generated/Libraries/Animated/nodes/AnimatedWithChildren.d.ts +15 -0
  185. package/types_generated/Libraries/Animated/useAnimatedColor.d.ts +16 -0
  186. package/types_generated/Libraries/Animated/useAnimatedValue.d.ts +15 -0
  187. package/types_generated/Libraries/Animated/useAnimatedValueXY.d.ts +18 -0
  188. package/types_generated/Libraries/AppState/AppState.d.ts +63 -0
  189. package/types_generated/Libraries/BatchedBridge/BatchedBridge.d.ts +17 -0
  190. package/types_generated/Libraries/BatchedBridge/MessageQueue.d.ts +39 -0
  191. package/types_generated/Libraries/BatchedBridge/NativeModules.d.ts +20 -0
  192. package/types_generated/Libraries/Blob/Blob.d.ts +80 -0
  193. package/types_generated/Libraries/Blob/BlobTypes.d.ts +27 -0
  194. package/types_generated/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts +232 -0
  195. package/types_generated/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.d.ts +20 -0
  196. package/types_generated/Libraries/Components/ActivityIndicator/ActivityIndicator.d.ts +84 -0
  197. package/types_generated/Libraries/Components/Button.d.ts +247 -0
  198. package/types_generated/Libraries/Components/Clipboard/Clipboard.d.ts +38 -0
  199. package/types_generated/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.d.ts +17 -0
  200. package/types_generated/Libraries/Components/DrawerAndroid/DrawerLayoutAndroidFallback.d.ts +27 -0
  201. package/types_generated/Libraries/Components/DrawerAndroid/DrawerLayoutAndroidTypes.d.ts +176 -0
  202. package/types_generated/Libraries/Components/Keyboard/Keyboard.d.ts +146 -0
  203. package/types_generated/Libraries/Components/Keyboard/KeyboardAvoidingView.d.ts +73 -0
  204. package/types_generated/Libraries/Components/LayoutConformance/LayoutConformance.d.ts +23 -0
  205. package/types_generated/Libraries/Components/Pressable/Pressable.d.ts +146 -0
  206. package/types_generated/Libraries/Components/Pressable/useAndroidRippleForView.d.ts +48 -0
  207. package/types_generated/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.d.ts +32 -0
  208. package/types_generated/Libraries/Components/ProgressBarAndroid/ProgressBarAndroidNativeComponent.d.ts +14 -0
  209. package/types_generated/Libraries/Components/ProgressBarAndroid/ProgressBarAndroidTypes.d.ts +50 -0
  210. package/types_generated/Libraries/Components/RefreshControl/RefreshControl.d.ts +113 -0
  211. package/types_generated/Libraries/Components/SafeAreaView/SafeAreaView.d.ts +33 -0
  212. package/types_generated/Libraries/Components/ScrollView/ScrollView.d.ts +581 -0
  213. package/types_generated/Libraries/Components/ScrollView/ScrollViewContext.d.ts +24 -0
  214. package/types_generated/Libraries/Components/ScrollView/ScrollViewNativeComponent.d.ts +21 -0
  215. package/types_generated/Libraries/Components/ScrollView/ScrollViewNativeComponentType.d.ts +140 -0
  216. package/types_generated/Libraries/Components/ScrollView/ScrollViewStickyHeader.d.ts +36 -0
  217. package/types_generated/Libraries/Components/StatusBar/StatusBar.d.ts +222 -0
  218. package/types_generated/Libraries/Components/Switch/AndroidSwitchNativeComponent.d.ts +14 -0
  219. package/types_generated/Libraries/Components/Switch/Switch.d.ts +138 -0
  220. package/types_generated/Libraries/Components/Switch/SwitchNativeComponent.d.ts +14 -0
  221. package/types_generated/Libraries/Components/TV/TVEventControl.d.ts +23 -0
  222. package/types_generated/Libraries/Components/TV/TVEventHandler.d.ts +21 -0
  223. package/types_generated/Libraries/Components/TV/TVFocusGuideView.d.ts +96 -0
  224. package/types_generated/Libraries/Components/TV/TVTextScrollView.d.ts +97 -0
  225. package/types_generated/Libraries/Components/TV/TVViewPropTypes.d.ts +123 -0
  226. package/types_generated/Libraries/Components/TV/tagForComponentOrHandle.d.ts +24 -0
  227. package/types_generated/Libraries/Components/TV/useTVEventHandler.d.ts +20 -0
  228. package/types_generated/Libraries/Components/TextInput/InputAccessoryView.d.ts +86 -0
  229. package/types_generated/Libraries/Components/TextInput/TextInput.d.ts +47 -0
  230. package/types_generated/Libraries/Components/TextInput/TextInput.flow.d.ts +1005 -0
  231. package/types_generated/Libraries/Components/TextInput/TextInputState.d.ts +54 -0
  232. package/types_generated/Libraries/Components/ToastAndroid/ToastAndroid.d.ts +99 -0
  233. package/types_generated/Libraries/Components/Touchable/Touchable.d.ts +257 -0
  234. package/types_generated/Libraries/Components/Touchable/TouchableHighlight.d.ts +51 -0
  235. package/types_generated/Libraries/Components/Touchable/TouchableNativeFeedback.d.ts +192 -0
  236. package/types_generated/Libraries/Components/Touchable/TouchableOpacity.d.ts +35 -0
  237. package/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback.d.ts +121 -0
  238. package/types_generated/Libraries/Components/View/View.d.ts +30 -0
  239. package/types_generated/Libraries/Components/View/ViewAccessibility.d.ts +415 -0
  240. package/types_generated/Libraries/Components/View/ViewNativeComponent.d.ts +39 -0
  241. package/types_generated/Libraries/Components/View/ViewPropTypes.d.ts +367 -0
  242. package/types_generated/Libraries/Core/Devtools/symbolicateStackTrace.d.ts +27 -0
  243. package/types_generated/Libraries/Core/ExceptionsManager.d.ts +43 -0
  244. package/types_generated/Libraries/Core/ExtendedError.d.ts +26 -0
  245. package/types_generated/Libraries/Core/NativeExceptionsManager.d.ts +17 -0
  246. package/types_generated/Libraries/Core/RawEventEmitter.d.ts +26 -0
  247. package/types_generated/Libraries/Core/ReactFiberErrorDialog.d.ts +27 -0
  248. package/types_generated/Libraries/Core/ReactNativeVersion.d.ts +48 -0
  249. package/types_generated/Libraries/Core/registerCallableModule.d.ts +18 -0
  250. package/types_generated/Libraries/EventEmitter/NativeEventEmitter.d.ts +42 -0
  251. package/types_generated/Libraries/EventEmitter/RCTDeviceEventEmitter.d.ts +19 -0
  252. package/types_generated/Libraries/EventEmitter/RCTEventEmitter.d.ts +18 -0
  253. package/types_generated/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts +21 -0
  254. package/types_generated/Libraries/Image/AssetSourceResolver.d.ts +71 -0
  255. package/types_generated/Libraries/Image/Image.d.ts +18 -0
  256. package/types_generated/Libraries/Image/ImageBackground.d.ts +44 -0
  257. package/types_generated/Libraries/Image/ImageProps.d.ts +512 -0
  258. package/types_generated/Libraries/Image/ImageResizeMode.d.ts +17 -0
  259. package/types_generated/Libraries/Image/ImageSource.d.ts +94 -0
  260. package/types_generated/Libraries/Image/ImageTypes.flow.d.ts +61 -0
  261. package/types_generated/Libraries/Interaction/InteractionManager.d.ts +117 -0
  262. package/types_generated/Libraries/Interaction/PanResponder.d.ts +228 -0
  263. package/types_generated/Libraries/LayoutAnimation/LayoutAnimation.d.ts +76 -0
  264. package/types_generated/Libraries/Linking/Linking.d.ts +68 -0
  265. package/types_generated/Libraries/Lists/FlatList.d.ts +317 -0
  266. package/types_generated/Libraries/Lists/SectionList.d.ts +172 -0
  267. package/types_generated/Libraries/Lists/VirtualizedList.d.ts +19 -0
  268. package/types_generated/Libraries/Lists/VirtualizedSectionList.d.ts +19 -0
  269. package/types_generated/Libraries/LogBox/Data/LogBoxData.d.ts +78 -0
  270. package/types_generated/Libraries/LogBox/Data/LogBoxLog.d.ts +71 -0
  271. package/types_generated/Libraries/LogBox/Data/LogBoxSymbolication.d.ts +17 -0
  272. package/types_generated/Libraries/LogBox/Data/parseLogBoxLog.d.ts +49 -0
  273. package/types_generated/Libraries/LogBox/LogBox.d.ts +29 -0
  274. package/types_generated/Libraries/Modal/Modal.d.ts +110 -0
  275. package/types_generated/Libraries/NativeComponent/NativeComponentRegistry.d.ts +50 -0
  276. package/types_generated/Libraries/NativeModules/specs/NativeDialogManagerAndroid.d.ts +17 -0
  277. package/types_generated/Libraries/Network/FormData.d.ts +56 -0
  278. package/types_generated/Libraries/Network/RCTNetworking.d.ts +25 -0
  279. package/types_generated/Libraries/Network/RCTNetworkingEventDefinitions.flow.d.ts +22 -0
  280. package/types_generated/Libraries/Network/XMLHttpRequest.d.ts +114 -0
  281. package/types_generated/Libraries/Network/convertRequestBody.d.ts +21 -0
  282. package/types_generated/Libraries/Performance/Systrace.d.ts +61 -0
  283. package/types_generated/Libraries/PermissionsAndroid/PermissionsAndroid.d.ts +129 -0
  284. package/types_generated/Libraries/Pressability/Pressability.d.ts +241 -0
  285. package/types_generated/Libraries/Pressability/usePressability.d.ts +27 -0
  286. package/types_generated/Libraries/PushNotificationIOS/PushNotificationIOS.d.ts +323 -0
  287. package/types_generated/Libraries/ReactNative/AppRegistry.d.ts +14 -0
  288. package/types_generated/Libraries/ReactNative/AppRegistry.flow.d.ts +43 -0
  289. package/types_generated/Libraries/ReactNative/AppRegistryImpl.d.ts +73 -0
  290. package/types_generated/Libraries/ReactNative/DisplayMode.d.ts +24 -0
  291. package/types_generated/Libraries/ReactNative/I18nManager.d.ts +23 -0
  292. package/types_generated/Libraries/ReactNative/IPerformanceLogger.flow.d.ts +57 -0
  293. package/types_generated/Libraries/ReactNative/NativeI18nManager.d.ts +17 -0
  294. package/types_generated/Libraries/ReactNative/NativeUIManager.d.ts +17 -0
  295. package/types_generated/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.d.ts +31 -0
  296. package/types_generated/Libraries/ReactNative/ReactFabricPublicInstance/ReactNativeAttributePayload.d.ts +15 -0
  297. package/types_generated/Libraries/ReactNative/RendererImplementation.d.ts +36 -0
  298. package/types_generated/Libraries/ReactNative/RendererProxy.d.ts +13 -0
  299. package/types_generated/Libraries/ReactNative/RootTag.d.ts +22 -0
  300. package/types_generated/Libraries/ReactNative/UIManager.d.ts +17 -0
  301. package/types_generated/Libraries/ReactNative/requireNativeComponent.d.ts +25 -0
  302. package/types_generated/Libraries/ReactPrivate/ReactNativePrivateInterface.d.ts +33 -0
  303. package/types_generated/Libraries/Renderer/shims/ReactFabric.d.ts +17 -0
  304. package/types_generated/Libraries/Renderer/shims/ReactNativeTypes.d.ts +155 -0
  305. package/types_generated/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.d.ts +41 -0
  306. package/types_generated/Libraries/Settings/Settings.d.ts +21 -0
  307. package/types_generated/Libraries/Share/Share.d.ts +85 -0
  308. package/types_generated/Libraries/StyleSheet/EdgeInsetsPropType.d.ts +15 -0
  309. package/types_generated/Libraries/StyleSheet/PlatformColorValueTypes.d.ts +17 -0
  310. package/types_generated/Libraries/StyleSheet/PlatformColorValueTypesIOS.d.ts +27 -0
  311. package/types_generated/Libraries/StyleSheet/PointPropType.d.ts +16 -0
  312. package/types_generated/Libraries/StyleSheet/Rect.d.ts +22 -0
  313. package/types_generated/Libraries/StyleSheet/StyleSheet.d.ts +153 -0
  314. package/types_generated/Libraries/StyleSheet/StyleSheetExports.d.ts +94 -0
  315. package/types_generated/Libraries/StyleSheet/StyleSheetTypes.d.ts +851 -0
  316. package/types_generated/Libraries/StyleSheet/flattenStyle.d.ts +19 -0
  317. package/types_generated/Libraries/StyleSheet/private/_StyleSheetTypesOverrides.d.ts +17 -0
  318. package/types_generated/Libraries/StyleSheet/private/_TransformStyle.d.ts +76 -0
  319. package/types_generated/Libraries/StyleSheet/processColor.d.ts +18 -0
  320. package/types_generated/Libraries/Text/Text.d.ts +30 -0
  321. package/types_generated/Libraries/Text/TextAncestorContext.d.ts +20 -0
  322. package/types_generated/Libraries/Text/TextNativeComponent.d.ts +41 -0
  323. package/types_generated/Libraries/Text/TextProps.d.ts +220 -0
  324. package/types_generated/Libraries/TurboModule/RCTExport.d.ts +35 -0
  325. package/types_generated/Libraries/TurboModule/TurboModuleRegistry.d.ts +15 -0
  326. package/types_generated/Libraries/Types/CodegenTypes.d.ts +24 -0
  327. package/types_generated/Libraries/Types/CodegenTypesNamespace.d.ts +14 -0
  328. package/types_generated/Libraries/Types/CoreEventTypes.d.ts +355 -0
  329. package/types_generated/Libraries/Types/RootTagTypes.d.ts +13 -0
  330. package/types_generated/Libraries/Types/UIManagerJSInterface.d.ts +17 -0
  331. package/types_generated/Libraries/UTFSequence.d.ts +39 -0
  332. package/types_generated/Libraries/Utilities/Appearance.d.ts +31 -0
  333. package/types_generated/Libraries/Utilities/BackHandler.d.ts +27 -0
  334. package/types_generated/Libraries/Utilities/DevSettings.d.ts +34 -0
  335. package/types_generated/Libraries/Utilities/DeviceInfo.d.ts +17 -0
  336. package/types_generated/Libraries/Utilities/Dimensions.d.ts +54 -0
  337. package/types_generated/Libraries/Utilities/NativeAppearance.d.ts +17 -0
  338. package/types_generated/Libraries/Utilities/NativeDeviceInfo.d.ts +14 -0
  339. package/types_generated/Libraries/Utilities/PixelRatio.d.ts +110 -0
  340. package/types_generated/Libraries/Utilities/Platform.d.ts +16 -0
  341. package/types_generated/Libraries/Utilities/PlatformTypes.d.ts +134 -0
  342. package/types_generated/Libraries/Utilities/codegenNativeCommands.d.ts +19 -0
  343. package/types_generated/Libraries/Utilities/codegenNativeComponent.d.ts +24 -0
  344. package/types_generated/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.d.ts +33 -0
  345. package/types_generated/Libraries/Utilities/differ/deepDiffer.d.ts +19 -0
  346. package/types_generated/Libraries/Utilities/useColorScheme.d.ts +15 -0
  347. package/types_generated/Libraries/Utilities/useWindowDimensions.d.ts +15 -0
  348. package/types_generated/Libraries/Vibration/Vibration.d.ts +29 -0
  349. package/types_generated/Libraries/vendor/core/ErrorUtils.d.ts +39 -0
  350. package/types_generated/Libraries/vendor/emitter/EventEmitter.d.ts +67 -0
  351. package/types_generated/index.d.ts +184 -0
  352. package/types_generated/src/private/components/virtualcollection/FlingConstants.d.ts +20 -0
  353. package/types_generated/src/private/components/virtualcollection/Virtual.d.ts +46 -0
  354. package/types_generated/src/private/components/virtualcollection/VirtualCollectionView.d.ts +81 -0
  355. package/types_generated/src/private/components/virtualcollection/column/VirtualColumn.d.ts +23 -0
  356. package/types_generated/src/private/components/virtualcollection/column/VirtualColumnGenerator.d.ts +17 -0
  357. package/types_generated/src/private/components/virtualcollection/dom/getScrollParent.d.ts +21 -0
  358. package/types_generated/src/private/components/virtualcollection/row/VirtualRow.d.ts +23 -0
  359. package/types_generated/src/private/components/virtualview/VirtualView.d.ts +75 -0
  360. package/types_generated/src/private/components/virtualview/VirtualViewExperimentalNativeComponent.d.ts +107 -0
  361. package/types_generated/src/private/components/virtualview/VirtualViewNativeComponent.d.ts +107 -0
  362. package/types_generated/src/private/devsupport/devmenu/DevMenu.d.ts +28 -0
  363. package/types_generated/src/private/specs_DEPRECATED/components/AndroidSwitchNativeComponent.d.ts +53 -0
  364. package/types_generated/src/private/specs_DEPRECATED/components/ProgressBarAndroidNativeComponent.d.ts +36 -0
  365. package/types_generated/src/private/specs_DEPRECATED/components/SwitchNativeComponent.d.ts +51 -0
  366. package/types_generated/src/private/specs_DEPRECATED/modules/NativeAppearance.d.ts +26 -0
  367. package/types_generated/src/private/specs_DEPRECATED/modules/NativeDeviceInfo.d.ts +46 -0
  368. package/types_generated/src/private/specs_DEPRECATED/modules/NativeDialogManagerAndroid.d.ts +37 -0
  369. package/types_generated/src/private/specs_DEPRECATED/modules/NativeExceptionsManager.d.ts +45 -0
  370. package/types_generated/src/private/specs_DEPRECATED/modules/NativeI18nManager.d.ts +27 -0
  371. package/types_generated/src/private/specs_DEPRECATED/modules/NativeUIManager.d.ts +109 -0
  372. package/types_generated/src/private/styles/composeStyles.d.ts +19 -0
  373. package/types_generated/src/private/types/HostComponent.d.ts +19 -0
  374. package/types_generated/src/private/types/HostInstance.d.ts +92 -0
  375. package/types_generated/src/private/webapis/dom/events/CustomEvent.d.ts +27 -0
  376. package/types_generated/src/private/webapis/dom/events/Event.d.ts +50 -0
  377. package/types_generated/src/private/webapis/dom/events/EventTarget.d.ts +36 -0
  378. package/types_generated/src/private/webapis/dom/nodes/ReactNativeDocument.d.ts +33 -0
  379. package/types_generated/src/private/webapis/dom/nodes/ReactNativeElement.d.ts +36 -0
  380. package/types_generated/src/private/webapis/dom/nodes/ReadOnlyCharacterData.d.ts +30 -0
  381. package/types_generated/src/private/webapis/dom/nodes/ReadOnlyElement.d.ts +54 -0
  382. package/types_generated/src/private/webapis/dom/nodes/ReadOnlyNode.d.ts +129 -0
  383. package/types_generated/src/private/webapis/dom/nodes/ReadOnlyText.d.ts +24 -0
  384. package/types_generated/src/private/webapis/dom/nodes/internals/NodeInternals.d.ts +36 -0
  385. package/types_generated/src/private/webapis/dom/nodes/internals/ReactNativeDocumentElementInstanceHandle.d.ts +23 -0
  386. package/types_generated/src/private/webapis/dom/nodes/internals/ReactNativeDocumentInstanceHandle.d.ts +22 -0
  387. package/types_generated/src/private/webapis/dom/nodes/specs/NativeDOM.d.ts +229 -0
  388. package/types_generated/src/private/webapis/dom/oldstylecollections/HTMLCollection.d.ts +22 -0
  389. package/types_generated/src/private/webapis/dom/oldstylecollections/NodeList.d.ts +25 -0
  390. package/types_generated/src/private/webapis/geometry/DOMRect.d.ts +46 -0
  391. package/types_generated/src/private/webapis/geometry/DOMRectReadOnly.d.ts +73 -0
  392. package/types_generated/src/private/webapis/utils/ArrayLikeUtils.d.ts +27 -0
  393. package/types_generated/tsconfig.json +3 -0
  394. package/types_generated/tsconfig.test.json +16 -0
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -31,7 +31,7 @@ import {cloneElement, useMemo} from 'react';
31
31
  type AnimatedScrollViewInstance = React.ElementRef<typeof ScrollView>;
32
32
 
33
33
  /**
34
- * @see https://github.com/facebook/react-native/commit/b8c8562
34
+ * @see https://github.com/react/react-native/commit/b8c8562
35
35
  */
36
36
  const AnimatedScrollView: AnimatedComponentType<
37
37
  ScrollViewProps,
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -127,7 +127,7 @@ export type ButtonProps = Readonly<{
127
127
  accessibilityLabel?: ?string,
128
128
  /**
129
129
  * Alias for accessibilityLabel https://reactnative.dev/docs/view#accessibilitylabel
130
- * https://github.com/facebook/react-native/issues/34424
130
+ * https://github.com/react/react-native/issues/34424
131
131
  */
132
132
  'aria-label'?: ?string,
133
133
  /**
@@ -181,7 +181,7 @@ export type ButtonProps = Readonly<{
181
181
  [button:examples].
182
182
 
183
183
  [button:source]:
184
- https://github.com/facebook/react-native/blob/HEAD/Libraries/Components/Button.js
184
+ https://github.com/react/react-native/blob/HEAD/Libraries/Components/Button.js
185
185
 
186
186
  ```jsx
187
187
  <Button
@@ -8,6 +8,7 @@
8
8
  * @format
9
9
  */
10
10
 
11
+ import type {BlurEvent, FocusEvent} from '../../Types/CoreEventTypes';
11
12
  import type {ViewProps} from '../View/ViewPropTypes';
12
13
  import type {ComponentOrHandleType} from './tagForComponentOrHandle';
13
14
 
@@ -16,6 +17,7 @@ import useMergeRefs from '../../Utilities/useMergeRefs';
16
17
  import View from '../View/View';
17
18
  import {Commands} from '../View/ViewNativeComponent';
18
19
  import tagForComponentOrHandle from './tagForComponentOrHandle';
20
+ import useFocusEnterLeave from './useFocusEnterLeave';
19
21
 
20
22
  const StyleSheet = require('../../StyleSheet/StyleSheet').default;
21
23
  const React = require('react');
@@ -51,6 +53,20 @@ type TVFocusGuideViewProps = $ReadOnly<{
51
53
  * When set to false, this view and all its subviews will be NOT focusable.
52
54
  */
53
55
  focusable?: boolean | void,
56
+
57
+ /**
58
+ * Fires once when focus enters this focus guide's subtree from outside.
59
+ * Unlike `onFocus`, which bubbles and fires for every descendant, this does
60
+ * not fire again when focus moves between descendants. Boundary-crossing
61
+ * only, same idea as `onMouseEnter` vs `onMouseOver`.
62
+ */
63
+ onFocusEnter?: ?(event: FocusEvent) => void,
64
+
65
+ /**
66
+ * Fires once when focus leaves this focus guide's subtree entirely. Does
67
+ * not fire when focus moves between descendants. Pairs with `onFocusEnter`.
68
+ */
69
+ onFocusLeave?: ?(event: BlurEvent) => void,
54
70
  }>;
55
71
 
56
72
  export type TVFocusGuideViewImperativeMethods = $ReadOnly<{
@@ -63,6 +79,10 @@ function TVFocusGuideView({
63
79
  destinations: destinationsProp,
64
80
  autoFocus,
65
81
  focusable,
82
+ onFocusEnter,
83
+ onFocusLeave,
84
+ onFocusCapture,
85
+ onBlurCapture,
66
86
  ref,
67
87
  ...props
68
88
  }: TVFocusGuideViewProps): React.Node {
@@ -103,6 +123,15 @@ function TVFocusGuideView({
103
123
 
104
124
  const mergedRef = useMergeRefs(setLocalRef, ref);
105
125
 
126
+ // Collapse the bubbled per-descendant focus/blur into a single enter when
127
+ // focus crosses into the guide's subtree and a single leave when it exits.
128
+ const {handleFocusCapture, handleBlurCapture} = useFocusEnterLeave(
129
+ onFocusEnter,
130
+ onFocusLeave,
131
+ onFocusCapture,
132
+ onBlurCapture,
133
+ );
134
+
106
135
  React.useEffect(() => {
107
136
  if (focusable === false) {
108
137
  setDestinations([]);
@@ -131,6 +160,8 @@ function TVFocusGuideView({
131
160
  isTVSelectable={tvOSSelectable}
132
161
  // Android TV only prop
133
162
  tvFocusable={focusable}
163
+ onFocusCapture={handleFocusCapture}
164
+ onBlurCapture={handleBlurCapture}
134
165
  />
135
166
  );
136
167
  }
@@ -0,0 +1,112 @@
1
+ /**
2
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ *
7
+ * @flow strict-local
8
+ * @format
9
+ */
10
+
11
+ import type {BlurEvent, FocusEvent} from '../../Types/CoreEventTypes';
12
+
13
+ import * as React from 'react';
14
+
15
+ type FocusEnterLeaveState = {
16
+ entered: boolean,
17
+ pendingLeave: ?TimeoutID,
18
+ };
19
+
20
+ export type FocusEnterLeaveHandlers = {
21
+ handleFocusCapture: ?(event: FocusEvent) => void,
22
+ handleBlurCapture: ?(event: BlurEvent) => void,
23
+ };
24
+
25
+ /**
26
+ * Collapses the per-descendant focus/blur events into a single enter (focus
27
+ * crosses into the subtree) and a single leave (focus fully exits). A
28
+ * child-to-child move fires blur then focus back to back, so the deferred
29
+ * leave gets cancelled by the incoming focus and nothing fires.
30
+ *
31
+ * Hooks the capture phase, not bubble: capture reaches the container before
32
+ * any descendant sees the event, so a descendant calling stopPropagation
33
+ * can't leave us desynced.
34
+ */
35
+ export default function useFocusEnterLeave(
36
+ onFocusEnter: ?(event: FocusEvent) => void,
37
+ onFocusLeave: ?(event: BlurEvent) => void,
38
+ onFocusCapture: ?(event: FocusEvent) => void,
39
+ onBlurCapture: ?(event: BlurEvent) => void,
40
+ ): FocusEnterLeaveHandlers {
41
+ const stateRef = React.useRef<FocusEnterLeaveState>({
42
+ entered: false,
43
+ pendingLeave: null,
44
+ });
45
+
46
+ const activeHandlers =
47
+ onFocusEnter !== undefined || onFocusLeave !== undefined;
48
+
49
+ const handleFocusCapture = React.useCallback(
50
+ (event: FocusEvent) => {
51
+ const state = stateRef.current;
52
+ if (state.pendingLeave != null) {
53
+ clearTimeout(state.pendingLeave);
54
+ state.pendingLeave = null;
55
+ }
56
+ if (!state.entered) {
57
+ state.entered = true;
58
+ onFocusEnter?.(event);
59
+ }
60
+ onFocusCapture?.(event);
61
+ },
62
+ [onFocusEnter, onFocusCapture],
63
+ );
64
+
65
+ const handleBlurCapture = React.useCallback(
66
+ (event: BlurEvent) => {
67
+ const state = stateRef.current;
68
+ if (state.pendingLeave != null) {
69
+ clearTimeout(state.pendingLeave);
70
+ }
71
+ // Defer: if focus lands on another descendant this same tick, the focus
72
+ // handler clears this before it runs.
73
+ state.pendingLeave = setTimeout(() => {
74
+ state.pendingLeave = null;
75
+ if (state.entered) {
76
+ state.entered = false;
77
+ onFocusLeave?.(event);
78
+ }
79
+ }, 0);
80
+ onBlurCapture?.(event);
81
+ },
82
+ [onFocusLeave, onBlurCapture],
83
+ );
84
+
85
+ // Reset on unmount so a remounted instance starts clean and no deferred
86
+ // leave fires after we're gone.
87
+ // If no active handlers, return without doing anything
88
+ React.useEffect(() => {
89
+ if (!activeHandlers) {
90
+ return;
91
+ }
92
+ const state = stateRef.current;
93
+ return () => {
94
+ if (state.pendingLeave != null) {
95
+ clearTimeout(state.pendingLeave);
96
+ state.pendingLeave = null;
97
+ }
98
+ state.entered = false;
99
+ };
100
+ }, [activeHandlers]);
101
+
102
+ // Nothing to track: hand back the caller's own capture handlers untouched.
103
+ // (Kept after the hooks above so the hook count stays stable per render.)
104
+ if (onFocusEnter == null && onFocusLeave == null) {
105
+ return {
106
+ handleFocusCapture: onFocusCapture,
107
+ handleBlurCapture: onBlurCapture,
108
+ };
109
+ }
110
+
111
+ return {handleFocusCapture, handleBlurCapture};
112
+ }
@@ -580,7 +580,7 @@ export type AndroidTextInputNativeProps = Readonly<{
580
580
  * - `borderBottomRightRadius`
581
581
  * - `borderBottomLeftRadius`
582
582
  *
583
- * see [Issue#7070](https://github.com/facebook/react-native/issues/7070)
583
+ * see [Issue#7070](https://github.com/react/react-native/issues/7070)
584
584
  * for more detail.
585
585
  *
586
586
  * [Styles](docs/style.html)
@@ -1033,7 +1033,7 @@ type TextInputBaseProps = Readonly<{
1033
1033
  * - `borderBottomRightRadius`
1034
1034
  * - `borderBottomLeftRadius`
1035
1035
  *
1036
- * see [Issue#7070](https://github.com/facebook/react-native/issues/7070)
1036
+ * see [Issue#7070](https://github.com/react/react-native/issues/7070)
1037
1037
  * for more detail.
1038
1038
  *
1039
1039
  * [Styles](docs/style.html)
@@ -32,7 +32,7 @@ export const Touchable: {
32
32
  };
33
33
 
34
34
  /**
35
- * @see https://github.com/facebook/react-native/blob/0.34-stable\Libraries\Components\Touchable\Touchable.js
35
+ * @see https://github.com/react/react-native/blob/0.34-stable\Libraries\Components\Touchable\Touchable.js
36
36
  */
37
37
  interface TouchableMixin {
38
38
  /**
@@ -34,7 +34,7 @@ export interface AccessibilityProps
34
34
 
35
35
  /**
36
36
  * Alias for accessibilityLabel https://reactnative.dev/docs/view#accessibilitylabel
37
- * https://github.com/facebook/react-native/issues/34424
37
+ * https://github.com/react/react-native/issues/34424
38
38
  */
39
39
  'aria-label'?: string | undefined;
40
40
 
@@ -370,7 +370,7 @@ export type AccessibilityProps = Readonly<{
370
370
 
371
371
  /**
372
372
  * Alias for accessibilityLabel https://reactnative.dev/docs/view#accessibilitylabel
373
- * https://github.com/facebook/react-native/issues/34424
373
+ * https://github.com/react/react-native/issues/34424
374
374
  */
375
375
  'aria-label'?: ?Stringish,
376
376
 
@@ -28,8 +28,8 @@
28
28
  export default class ReactNativeVersion {
29
29
  static major: number = 0;
30
30
  static minor: number = 86;
31
- static patch: number = 0;
32
- static prerelease: string | null = '2';
31
+ static patch: number = 3;
32
+ static prerelease: string | null = '0';
33
33
 
34
34
  static getVersionString(): string {
35
35
  return `${this.major}.${this.minor}.${this.patch}${this.prerelease != null ? `-${this.prerelease}` : ''}`;
@@ -159,7 +159,7 @@ function _callReactNativeMicrotasksPass() {
159
159
  reactNativeMicrotasks = [];
160
160
 
161
161
  // Use for loop rather than forEach as per @vjeux's advice
162
- // https://github.com/facebook/react-native/commit/c8fd9f7588ad02d2293cac7224715f4af7b0f352#commitcomment-14570051
162
+ // https://github.com/react/react-native/commit/c8fd9f7588ad02d2293cac7224715f4af7b0f352#commitcomment-14570051
163
163
  for (let i = 0; i < passReactNativeMicrotasks.length; ++i) {
164
164
  _callTimer(passReactNativeMicrotasks[i], 0);
165
165
  }
@@ -17,6 +17,6 @@ if (navigator === undefined) {
17
17
  // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it.
18
18
  global.navigator = {product: 'ReactNative'};
19
19
  } else {
20
- // see https://github.com/facebook/react-native/issues/10881
20
+ // see https://github.com/react/react-native/issues/10881
21
21
  polyfillObjectProperty(navigator, 'product', () => 'ReactNative');
22
22
  }
@@ -20,7 +20,7 @@ export interface NativeEventSubscription {
20
20
  * Receive events from native-code
21
21
  * Deprecated - subclass NativeEventEmitter to create granular event modules instead of
22
22
  * adding all event listeners directly to RCTNativeAppEventEmitter.
23
- * @see https://github.com/facebook/react-native/blob/0.34-stable\Libraries\EventEmitter\RCTNativeAppEventEmitter.js
23
+ * @see https://github.com/react/react-native/blob/0.34-stable\Libraries\EventEmitter\RCTNativeAppEventEmitter.js
24
24
  * @see https://reactnative.dev/docs/native-modules-ios#sending-events-to-javascript
25
25
  */
26
26
  type RCTNativeAppEventEmitter = DeviceEventEmitterStatic;
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@
8
8
  */
9
9
 
10
10
  /*
11
- * @see https://github.com/facebook/react-native/blob/master/Libraries/Image/ImageSource.js
11
+ * @see https://github.com/react/react-native/blob/master/Libraries/Image/ImageSource.js
12
12
  */
13
13
  export interface ImageURISource {
14
14
  /**
@@ -517,7 +517,7 @@ static RCTImageLoaderCancellationBlock RCTLoadImageURLFromLoader(
517
517
  // Add missing png extension
518
518
  if (request.URL.fileURL && request.URL.pathExtension.length == 0) {
519
519
  // Check if there exists a file with that url on disk already
520
- // This should fix issue https://github.com/facebook/react-native/issues/46870
520
+ // This should fix issue https://github.com/react/react-native/issues/46870
521
521
  if ([[NSFileManager defaultManager] fileExistsAtPath:request.URL.path]) {
522
522
  mutableRequest.URL = request.URL;
523
523
  } else {
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -117,7 +117,7 @@ const currentCentroidY = TouchHistoryMath.currentCentroidY;
117
117
  * ### Working Example
118
118
  *
119
119
  * To see it in action, try the
120
- * [PanResponder example in RNTester](https://github.com/facebook/react-native/blob/HEAD/packages/rn-tester/js/examples/PanResponder/PanResponderExample.js)
120
+ * [PanResponder example in RNTester](https://github.com/react/react-native/blob/HEAD/packages/rn-tester/js/examples/PanResponder/PanResponderExample.js)
121
121
  */
122
122
 
123
123
  export type PanResponderGestureState = {
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -3,7 +3,7 @@
3
3
  This page describes how React and React Native versions interact each other.
4
4
  The version alignment between the two frameworks relies on two synchronization points:
5
5
 
6
- 1. The versions in the `package.json` of the new app template. For example [for React Native 0.68.1](https://github.com/facebook/react-native/blob/0.68-stable/template/package.json#L12-L15) the versions are aligned as follows:
6
+ 1. The versions in the `package.json` of the new app template. For example [for React Native 0.68.1](https://github.com/react/react-native/blob/0.68-stable/template/package.json#L12-L15) the versions are aligned as follows:
7
7
 
8
8
  ```
9
9
  "dependencies": {
@@ -12,7 +12,7 @@ The version alignment between the two frameworks relies on two synchronization p
12
12
  },
13
13
  ```
14
14
 
15
- 1. The React renderers **shipped** with React Native inside this folder, the [./Libraries/Renderer](https://github.com/facebook/react-native/tree/main/Libraries/Renderer) folder, of React Native.
15
+ 1. The React renderers **shipped** with React Native inside this folder, the [./Libraries/Renderer](https://github.com/react/react-native/tree/main/Libraries/Renderer) folder, of React Native.
16
16
 
17
17
  This practically means that you **can't bump** the version of React in your `package.json` to a later version,
18
18
  as you will still be using the older renderer from the folder mentioned above. Bumping the react version in your `package.json` will lead to unexpected behaviors.
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -23,7 +23,7 @@ const defineLazyObjectProperty = require('./defineLazyObjectProperty').default;
23
23
  *
24
24
  * global.XMLHttpRequest = global.originalXMLHttpRequest;
25
25
  *
26
- * @see https://github.com/facebook/react-native/issues/934
26
+ * @see https://github.com/react/react-native/issues/934
27
27
  */
28
28
  export function polyfillObjectProperty<T>(
29
29
  object: {...},
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
package/README-core.md CHANGED
@@ -10,7 +10,7 @@
10
10
  </p>
11
11
 
12
12
  <p align="center">
13
- <a href="https://github.com/facebook/react-native/blob/HEAD/LICENSE">
13
+ <a href="https://github.com/react/react-native/blob/HEAD/LICENSE">
14
14
  <img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="React Native is released under the MIT license." />
15
15
  </a>
16
16
  <a href="https://www.npmjs.org/package/react-native">
@@ -38,7 +38,7 @@
38
38
  <span> · </span>
39
39
  <a href="https://reactnative.dev/help">Community</a>
40
40
  <span> · </span>
41
- <a href="https://github.com/facebook/react-native/blob/HEAD/.github/SUPPORT.md">Support</a>
41
+ <a href="https://github.com/react/react-native/blob/HEAD/.github/SUPPORT.md">Support</a>
42
42
  </h3>
43
43
 
44
44
  React Native brings [**React**'s][r] declarative UI framework to iOS and Android. With React Native, you use native UI controls and have full access to the native platform.
@@ -52,7 +52,7 @@ React Native is developed and supported by many companies and individual core co
52
52
 
53
53
  [r]: https://react.dev/
54
54
  [p]: https://reactnative.dev/docs/out-of-tree-platforms
55
- [e]: https://github.com/facebook/react-native/blob/HEAD/ECOSYSTEM.md
55
+ [e]: https://github.com/react/react-native/blob/HEAD/ECOSYSTEM.md
56
56
 
57
57
  ## Contents
58
58
 
@@ -123,13 +123,13 @@ Read our [**Contributing Guide**][contribute] to learn about our development pro
123
123
 
124
124
  You can learn more about our vision for React Native in the [**Roadmap**][roadmap].
125
125
 
126
- [roadmap]: https://github.com/facebook/react-native/wiki/Roadmap
126
+ [roadmap]: https://github.com/react/react-native/wiki/Roadmap
127
127
 
128
128
  ### Good First Issues
129
129
 
130
130
  We have a list of [good first issues][gfi] that contain bugs which have a relatively limited scope. This is a great place to get started, gain experience, and get familiar with our contribution process.
131
131
 
132
- [gfi]: https://github.com/facebook/react-native/labels/good%20first%20issue
132
+ [gfi]: https://github.com/react/react-native/labels/good%20first%20issue
133
133
 
134
134
  ### Discussions
135
135
 
@@ -141,4 +141,4 @@ Larger discussions and proposals are discussed in [**@react-native-community/dis
141
141
 
142
142
  React Native is MIT licensed, as found in the [LICENSE][l] file.
143
143
 
144
- [l]: https://github.com/facebook/react-native/blob/main/LICENSE
144
+ [l]: https://github.com/react/react-native/blob/main/LICENSE
package/README.md CHANGED
@@ -255,6 +255,8 @@ class Game2048 extends React.Component {
255
255
  | autoFocus | boolean? | If true, `TVFocusGuide` will automatically manage focus for you. It will redirect the focus to the first focusable child on the first visit. It also remembers the last focused child and redirects the focus to it on the subsequent visits. `destinations` prop takes precedence over this prop when used together. |
256
256
  | focusable | boolean? | When set to false, this view and all its subviews will be NOT focusable. |
257
257
  | trapFocus* (Up, Down, Left, Right) | Prevents focus escaping from the container for the given directions. |
258
+ | onFocusEnter | function? | Fires once when focus enters the FocusGuideView's subtree from outside. Unlike `onFocus`, it does not fire again when focus moves between descendants. |
259
+ | onFocusLeave | function? | Fires once when focus leaves the FocusGuideView's subtree entirely. Does not fire when focus moves between descendants. |
258
260
 
259
261
  More information on the focus handling improvements above can be found in [this article](https://medium.com/xite-engineering/revolutionizing-focus-management-in-tv-applications-with-react-native-10ba69bd90).
260
262
 
@@ -23,8 +23,8 @@ NSDictionary* RCTGetReactNativeVersion(void)
23
23
  __rnVersion = @{
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(86),
26
- RCTVersionPatch: @(0),
27
- RCTVersionPrerelease: @"2",
26
+ RCTVersionPatch: @(3),
27
+ RCTVersionPrerelease: @"0",
28
28
  };
29
29
  });
30
30
  return __rnVersion;
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -264,7 +264,7 @@ RCTSendScrollEventForNativeAnimations_DEPRECATED(UIScrollView *scrollView, NSInt
264
264
  if (@available(iOS 14.0, *)) {
265
265
  // On iOS when Prefer Cross-Fade Transitions is enabled, the keyboard position
266
266
  // & height is reported differently (0 instead of Y position value matching height of frame)
267
- // Fixes similar issue we saw with https://github.com/facebook/react-native/pull/34503
267
+ // Fixes similar issue we saw with https://github.com/react/react-native/pull/34503
268
268
  if (UIAccessibilityPrefersCrossFadeTransitions() && keyboardEndFrame.size.height == 0) {
269
269
  newContentOffset.y = 0;
270
270
  newEdgeInsets.bottom = 0;
@@ -812,7 +812,7 @@ static NSSet<NSNumber *> *returnKeyTypesSet;
812
812
  // Ensure that newly typed text will inherit any custom attributes. We follow the logic of RN Android, where attributes
813
813
  // to the left of the cursor are copied into new text, unless we are at the start of the field, in which case we will
814
814
  // copy the attributes from text to the right. This allows consistency between backed input and new AttributedText
815
- // https://github.com/facebook/react-native/blob/3102a58df38d96f3dacef0530e4dbb399037fcd2/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/SetSpanOperation.kt#L30
815
+ // https://github.com/react/react-native/blob/3102a58df38d96f3dacef0530e4dbb399037fcd2/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/SetSpanOperation.kt#L30
816
816
  - (void)_updateTypingAttributes
817
817
  {
818
818
  if (_backedTextInputView.attributedText.length > 0 && _backedTextInputView.selectedTextRange != nil) {