react-native-tvos 0.83.9-0 → 0.83.10-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 (159) 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/ScrollView/ScrollView.d.ts +1 -1
  7. package/Libraries/Components/ScrollView/ScrollView.js +1 -1
  8. package/Libraries/Components/TV/TVViewPropTypes.js +9 -0
  9. package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +1 -1
  10. package/Libraries/Components/TextInput/TextInput.flow.js +1 -1
  11. package/Libraries/Components/Touchable/Touchable.d.ts +1 -1
  12. package/Libraries/Components/View/View.js +7 -3
  13. package/Libraries/Components/View/ViewAccessibility.d.ts +1 -1
  14. package/Libraries/Components/View/ViewAccessibility.js +1 -1
  15. package/Libraries/Core/ReactNativeVersion.js +1 -1
  16. package/Libraries/Core/Timers/JSTimers.js +1 -1
  17. package/Libraries/Core/setUpNavigator.js +1 -1
  18. package/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts +1 -1
  19. package/Libraries/FBLazyVector/FBLazyVector.podspec +1 -1
  20. package/Libraries/Image/ImageSource.d.ts +1 -1
  21. package/Libraries/Image/RCTImageLoader.mm +1 -1
  22. package/Libraries/Image/React-RCTImage.podspec +1 -1
  23. package/Libraries/Interaction/PanResponder.js +1 -1
  24. package/Libraries/LinkingIOS/React-RCTLinking.podspec +1 -1
  25. package/Libraries/NativeAnimation/React-RCTAnimation.podspec +1 -1
  26. package/Libraries/NativeComponent/TVViewConfig.js +1 -0
  27. package/Libraries/Network/React-RCTNetwork.podspec +1 -1
  28. package/Libraries/PushNotificationIOS/React-RCTPushNotification.podspec +1 -1
  29. package/Libraries/Renderer/README.md +2 -2
  30. package/Libraries/Required/RCTRequired.podspec +1 -1
  31. package/Libraries/Settings/React-RCTSettings.podspec +1 -1
  32. package/Libraries/Text/React-RCTText.podspec +1 -1
  33. package/Libraries/TypeSafety/RCTTypeSafety.podspec +1 -1
  34. package/Libraries/Utilities/PolyfillFunctions.js +1 -1
  35. package/Libraries/Vibration/React-RCTVibration.podspec +1 -1
  36. package/README-core.md +6 -6
  37. package/README.md +13 -1
  38. package/React/Base/RCTVersion.m +1 -1
  39. package/React/CoreModules/React-CoreModules.podspec +1 -1
  40. package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm +49 -17
  41. package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputComponentView.mm +12 -1
  42. package/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm +34 -5
  43. package/React/React-RCTFBReactNativeSpec.podspec +1 -1
  44. package/React/React-RCTFabric.podspec +1 -1
  45. package/React/Runtime/React-RCTRuntime.podspec +1 -1
  46. package/React/Tests/Mounting/RCTViewComponentViewTests.mm +145 -0
  47. package/React/Views/ScrollView/RCTScrollView.m +1 -1
  48. package/React-Core.podspec +1 -1
  49. package/React.podspec +1 -1
  50. package/ReactAndroid/build.gradle.kts +1 -1
  51. package/ReactAndroid/gradle.properties +1 -1
  52. package/ReactAndroid/hermes-engine/build.gradle.kts +6 -0
  53. package/ReactAndroid/publish.gradle +5 -5
  54. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/CxxInspectorPackagerConnection.kt +99 -9
  55. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/inspector/InspectorNetworkHelper.kt +1 -1
  56. package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.java +2 -2
  57. package/ReactAndroid/src/main/java/com/facebook/react/modules/core/JavaTimerManager.kt +1 -1
  58. package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ReactAndroidHWInputDeviceHelper.java +1 -0
  59. package/ReactAndroid/src/main/java/com/facebook/react/modules/intent/IntentModule.kt +1 -1
  60. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/NetworkingModule.kt +3 -3
  61. package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +1 -1
  62. package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactInstance.kt +1 -1
  63. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManager.java +1 -1
  64. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollView.java +14 -4
  65. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollView.java +14 -4
  66. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewHelper.kt +46 -6
  67. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewManager.kt +1 -1
  68. package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextView.java +1 -1
  69. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.kt +2 -2
  70. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputManager.kt +2 -2
  71. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextSelectionWatcher.kt +1 -1
  72. package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.kt +1 -0
  73. package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewManager.kt +5 -0
  74. package/ReactAndroid/src/main/jni/react/devsupport/JCxxInspectorPackagerConnectionWebSocket.cpp +29 -2
  75. package/ReactApple/Libraries/RCTFoundation/RCTDeprecation/RCTDeprecation.podspec +1 -1
  76. package/ReactApple/RCTSwiftUI/RCTSwiftUI.podspec +1 -1
  77. package/ReactApple/RCTSwiftUIWrapper/RCTSwiftUIWrapper.podspec +1 -1
  78. package/ReactCommon/React-Fabric.podspec +1 -1
  79. package/ReactCommon/React-FabricComponents.podspec +1 -1
  80. package/ReactCommon/React-FabricImage.podspec +1 -1
  81. package/ReactCommon/React-Mapbuffer.podspec +1 -1
  82. package/ReactCommon/ReactCommon.podspec +1 -1
  83. package/ReactCommon/callinvoker/React-callinvoker.podspec +1 -1
  84. package/ReactCommon/cxxreact/React-cxxreact.podspec +1 -1
  85. package/ReactCommon/cxxreact/ReactNativeVersion.h +2 -2
  86. package/ReactCommon/hermes/React-hermes.podspec +1 -1
  87. package/ReactCommon/hermes/executor/React-jsitracing.podspec +1 -1
  88. package/ReactCommon/jserrorhandler/React-jserrorhandler.podspec +1 -1
  89. package/ReactCommon/jsi/React-jsi.podspec +1 -1
  90. package/ReactCommon/jsiexecutor/React-jsiexecutor.podspec +1 -1
  91. package/ReactCommon/jsinspector-modern/InspectorInterfaces.cpp +7 -3
  92. package/ReactCommon/jsinspector-modern/React-jsinspector.podspec +1 -1
  93. package/ReactCommon/jsinspector-modern/TracingAgent.cpp +1 -5
  94. package/ReactCommon/jsinspector-modern/cdp/React-jsinspectorcdp.podspec +1 -1
  95. package/ReactCommon/jsinspector-modern/network/React-jsinspectornetwork.podspec +1 -1
  96. package/ReactCommon/jsinspector-modern/tracing/React-jsinspectortracing.podspec +1 -1
  97. package/ReactCommon/jsitooling/React-jsitooling.podspec +1 -1
  98. package/ReactCommon/logger/React-logger.podspec +1 -1
  99. package/ReactCommon/oscompat/React-oscompat.podspec +1 -1
  100. package/ReactCommon/react/debug/React-debug.podspec +1 -1
  101. package/ReactCommon/react/debug/redbox/JscSafeUrl.h +1 -1
  102. package/ReactCommon/react/featureflags/React-featureflags.podspec +1 -1
  103. package/ReactCommon/react/nativemodule/core/platform/android/ReactCommon/JavaTurboModule.cpp +1 -1
  104. package/ReactCommon/react/nativemodule/core/platform/ios/React-NativeModulesApple.podspec +1 -1
  105. package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTInteropTurboModule.mm +1 -1
  106. package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.mm +1 -1
  107. package/ReactCommon/react/nativemodule/defaults/React-defaultsnativemodule.podspec +1 -1
  108. package/ReactCommon/react/nativemodule/dom/React-domnativemodule.podspec +1 -1
  109. package/ReactCommon/react/nativemodule/featureflags/React-featureflagsnativemodule.podspec +1 -1
  110. package/ReactCommon/react/nativemodule/idlecallbacks/React-idlecallbacksnativemodule.podspec +1 -1
  111. package/ReactCommon/react/nativemodule/intersectionobserver/React-intersectionobservernativemodule.podspec +1 -1
  112. package/ReactCommon/react/nativemodule/microtasks/React-microtasksnativemodule.podspec +1 -1
  113. package/ReactCommon/react/nativemodule/mutationobserver/React-mutationobservernativemodule.podspec +1 -1
  114. package/ReactCommon/react/nativemodule/samples/ReactCommon-Samples.podspec +1 -1
  115. package/ReactCommon/react/nativemodule/webperformance/React-webperformancenativemodule.podspec +1 -1
  116. package/ReactCommon/react/networking/React-networking.podspec +1 -1
  117. package/ReactCommon/react/performance/cdpmetrics/React-performancecdpmetrics.podspec +1 -1
  118. package/ReactCommon/react/performance/timeline/React-performancetimeline.podspec +1 -1
  119. package/ReactCommon/react/renderer/animated/internal/primitives.h +1 -1
  120. package/ReactCommon/react/renderer/components/view/BaseViewProps.cpp +7 -0
  121. package/ReactCommon/react/renderer/components/view/BaseViewProps.h +1 -0
  122. package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewProps.cpp +18 -0
  123. package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewProps.h +1 -0
  124. package/ReactCommon/react/renderer/consistency/React-rendererconsistency.podspec +1 -1
  125. package/ReactCommon/react/renderer/css/React-renderercss.podspec +1 -1
  126. package/ReactCommon/react/renderer/debug/React-rendererdebug.podspec +1 -1
  127. package/ReactCommon/react/renderer/graphics/React-graphics.podspec +1 -1
  128. package/ReactCommon/react/renderer/imagemanager/platform/ios/React-ImageManager.podspec +1 -1
  129. package/ReactCommon/react/renderer/mounting/internal/CullingContext.cpp +1 -1
  130. package/ReactCommon/react/renderer/runtimescheduler/React-runtimescheduler.podspec +1 -1
  131. package/ReactCommon/react/runtime/React-RuntimeCore.podspec +1 -1
  132. package/ReactCommon/react/runtime/React-RuntimeHermes.podspec +1 -1
  133. package/ReactCommon/react/runtime/platform/ios/React-RuntimeApple.podspec +1 -1
  134. package/ReactCommon/react/timing/React-timing.podspec +1 -1
  135. package/ReactCommon/react/utils/React-utils.podspec +1 -1
  136. package/ReactCommon/reactperflogger/React-perflogger.podspec +1 -1
  137. package/ReactCommon/runtimeexecutor/React-runtimeexecutor.podspec +1 -1
  138. package/ReactCommon/yoga/Yoga.podspec +2 -2
  139. package/ReactCommon/yoga/yoga/algorithm/AbsoluteLayout.cpp +2 -0
  140. package/ReactCommon/yoga/yoga/algorithm/CalculateLayout.cpp +11 -7
  141. package/ReactCommon/yoga/yoga/algorithm/CalculateLayout.h +2 -0
  142. package/ReactCommon/yoga/yoga/node/Node.cpp +6 -1
  143. package/package.json +9 -9
  144. package/scripts/cocoapods/rncore.rb +26 -8
  145. package/scripts/cocoapods/rndependencies.rb +26 -5
  146. package/scripts/cocoapods/spm.rb +1 -1
  147. package/scripts/cocoapods/utils.rb +2 -2
  148. package/scripts/codegen/templates/ReactAppDependencyProvider.podspec.template +1 -1
  149. package/scripts/codegen/templates/ReactCodegen.podspec.template +1 -1
  150. package/scripts/ios-configure-glog.sh +1 -1
  151. package/sdks/hermes-engine/hermes-engine.podspec +6 -1
  152. package/sdks/hermes-engine/hermes-utils.rb +27 -5
  153. package/src/private/types/HostInstance.js +1 -1
  154. package/src/types/globals.d.ts +2 -2
  155. package/third-party-podspecs/RCT-Folly.podspec +1 -1
  156. package/third-party-podspecs/ReactNativeDependencies.podspec +1 -1
  157. package/third-party-podspecs/glog.podspec +1 -1
  158. package/types/public/ReactNativeTVTypes.d.ts +9 -0
  159. package/types/public/ReactNativeTypes.d.ts +2 -2
@@ -243,15 +243,36 @@ class ReactNativeDependenciesUtils
243
243
  return {:http => url}
244
244
  end
245
245
 
246
+ def self.shared_cache_dir()
247
+ return File.join(Dir.home, "Library", "Caches", "ReactNative")
248
+ end
249
+
246
250
  def self.download_rndeps_tarball(react_native_path, tarball_url, version, configuration)
247
- destination_path = configuration == nil ?
248
- "#{artifacts_dir()}/reactnative-dependencies-#{version}.tar.gz" :
249
- "#{artifacts_dir()}/reactnative-dependencies-#{version}-#{configuration}.tar.gz"
251
+ filename = configuration == nil ?
252
+ "reactnative-dependencies-#{version}.tar.gz" :
253
+ "reactnative-dependencies-#{version}-#{configuration}.tar.gz"
254
+ destination_path = "#{artifacts_dir()}/#{filename}"
255
+
256
+ if File.exist?(destination_path)
257
+ rndeps_log("Tarball #{filename} already exists in Pods. Skipping download.")
258
+ return destination_path
259
+ end
250
260
 
251
- unless File.exist?(destination_path)
261
+ `mkdir -p "#{artifacts_dir()}"`
262
+
263
+ cached_path = File.join(shared_cache_dir(), filename)
264
+ if File.exist?(cached_path)
265
+ rndeps_log("Cache hit: copying #{filename} from shared cache (#{shared_cache_dir()})")
266
+ FileUtils.cp(cached_path, destination_path)
267
+ else
268
+ rndeps_log("Cache miss: downloading #{filename} from #{tarball_url}")
252
269
  # Download to a temporary file first so we don't cache incomplete downloads.
253
270
  tmp_file = "#{artifacts_dir()}/reactnative-dependencies.download"
254
- `mkdir -p "#{artifacts_dir()}" && curl "#{tarball_url}" -Lo "#{tmp_file}" && mv "#{tmp_file}" "#{destination_path}"`
271
+ `curl "#{tarball_url}" -Lo "#{tmp_file}" && mv "#{tmp_file}" "#{destination_path}"`
272
+ # Save to shared cache for future use
273
+ `mkdir -p "#{shared_cache_dir()}"`
274
+ FileUtils.cp(destination_path, cached_path)
275
+ rndeps_log("Saved #{filename} to shared cache (#{shared_cache_dir()})")
255
276
  end
256
277
 
257
278
  return destination_path
@@ -45,7 +45,7 @@ class SPMManager
45
45
  log_warning "If you're using Xcode 15 or earlier you might need to close and reopen the Xcode workspace"
46
46
  unless ENV["USE_FRAMEWORKS"] == "dynamic"
47
47
  @dependencies_by_pod.each do |pod_name, dependencies|
48
- log_warning "Pod #{pod_name} is using swift package(s) #{dependencies.map{|i| i[:products]}.flatten.uniq.join(", ")} with static linking, this might cause linker errors. Consider using USE_FRAMEWORKS=dynamic, see https://github.com/facebook/react-native/pull/44627#issuecomment-2123119711 for more information"
48
+ log_warning "Pod #{pod_name} is using swift package(s) #{dependencies.map{|i| i[:products]}.flatten.uniq.join(", ")} with static linking, this might cause linker errors. Consider using USE_FRAMEWORKS=dynamic, see https://github.com/react/react-native/pull/44627#issuecomment-2123119711 for more information"
49
49
  end
50
50
  end
51
51
  end
@@ -69,7 +69,7 @@ class ReactNativePodsUtils
69
69
  end
70
70
 
71
71
  def self.turn_off_resource_bundle_react_core(installer)
72
- # this is needed for Xcode 14, see more details here https://github.com/facebook/react-native/issues/34673
72
+ # this is needed for Xcode 14, see more details here https://github.com/react/react-native/issues/34673
73
73
  # we should be able to remove this once CocoaPods catches up to it, see more details here https://github.com/CocoaPods/CocoaPods/issues/11402
74
74
  installer.target_installation_results.pod_target_installation_results.each do |pod_name, target_installation_result|
75
75
  if target_installation_result.target.root_spec.name == 'React-Core'
@@ -242,7 +242,7 @@ class ReactNativePodsUtils
242
242
  # When installing pods with a yarn alias, yarn creates a fake yarn and node executables
243
243
  # in a temporary folder.
244
244
  # Using `node --print "process.argv[0]";` we are able to retrieve the actual path from which node is running.
245
- # see https://github.com/facebook/react-native/issues/43285 for more info. We've tweaked this slightly.
245
+ # see https://github.com/react/react-native/issues/43285 for more info. We've tweaked this slightly.
246
246
  node_binary = Shellwords.escape(`node --print "process.argv[0]"`.strip)
247
247
  system("echo 'export NODE_BINARY=#{node_binary}' > #{file_path}.local")
248
248
  end
@@ -4,7 +4,7 @@
4
4
  # LICENSE file in the root directory of this source tree.
5
5
 
6
6
  version = "{react-native-version}"
7
- source = { :git => 'https://github.com/facebook/react-native.git' }
7
+ source = { :git => 'https://github.com/react/react-native.git' }
8
8
  if version == '1000.0.0'
9
9
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
10
10
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -4,7 +4,7 @@
4
4
  # LICENSE file in the root directory of this source tree.
5
5
 
6
6
  version = "{react-native-version}"
7
- source = { :git => 'https://github.com/facebook/react-native.git' }
7
+ source = { :git => 'https://github.com/react/react-native.git' }
8
8
  if version == '1000.0.0'
9
9
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
10
10
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -57,7 +57,7 @@ if [ -h "test-driver" ]; then
57
57
  rm test-driver
58
58
  fi
59
59
 
60
- # Manually disable gflags include to fix issue https://github.com/facebook/react-native/issues/28446
60
+ # Manually disable gflags include to fix issue https://github.com/react/react-native/issues/28446
61
61
  sed -i.bak -e 's/\@ac_cv_have_libgflags\@/0/' src/glog/logging.h.in && rm src/glog/logging.h.in.bak
62
62
  sed -i.bak -e 's/HAVE_LIB_GFLAGS/HAVE_LIB_GFLAGS_DISABLED/' src/config.h.in && rm src/config.h.in.bak
63
63
 
@@ -4,6 +4,7 @@
4
4
  # LICENSE file in the root directory of this source tree.
5
5
 
6
6
  require "json"
7
+ require "pathname"
7
8
  require_relative "./hermes-utils.rb"
8
9
 
9
10
  begin
@@ -74,9 +75,13 @@ Pod::Spec.new do |spec|
74
75
  hermes_compiler_path = File.dirname(Pod::Executable.execute_command('node', ['-p',
75
76
  "require.resolve(\"hermes-compiler\", {paths: [\"#{react_native_path}\"]})", __dir__]).strip
76
77
  )
78
+ hermesc_path = File.join(hermes_compiler_path, 'hermesc', 'osx-bin', 'hermesc')
79
+
80
+ pods_root = Pod::Config.instance.sandbox.root
81
+ relative_hermesc = Pathname.new(hermesc_path).relative_path_from(pods_root)
77
82
 
78
83
  spec.user_target_xcconfig = {
79
- 'HERMES_CLI_PATH' => "#{hermes_compiler_path}/hermesc/osx-bin/hermesc"
84
+ 'HERMES_CLI_PATH' => "$(PODS_ROOT)/#{relative_hermesc}"
80
85
  }
81
86
  end
82
87
 
@@ -247,16 +247,38 @@ def download_stable_hermes(react_native_path, version, configuration)
247
247
  download_hermes_tarball(react_native_path, tarball_url, version, configuration)
248
248
  end
249
249
 
250
+ def shared_cache_dir()
251
+ return File.join(Dir.home, "Library", "Caches", "ReactNative")
252
+ end
253
+
250
254
  def download_hermes_tarball(react_native_path, tarball_url, version, configuration)
251
- destination_path = configuration == nil ?
252
- "#{artifacts_dir()}/hermes-ios-#{version}.tar.gz" :
253
- "#{artifacts_dir()}/hermes-ios-#{version}-#{configuration}.tar.gz"
255
+ filename = configuration == nil ?
256
+ "hermes-ios-#{version}.tar.gz" :
257
+ "hermes-ios-#{version}-#{configuration}.tar.gz"
258
+ destination_path = "#{artifacts_dir()}/#{filename}"
259
+
260
+ if File.exist?(destination_path)
261
+ hermes_log("Tarball #{filename} already exists in Pods. Skipping download.", :info)
262
+ return destination_path
263
+ end
254
264
 
255
- unless File.exist?(destination_path)
265
+ `mkdir -p "#{artifacts_dir()}"`
266
+
267
+ cached_path = File.join(shared_cache_dir(), filename)
268
+ if File.exist?(cached_path)
269
+ hermes_log("Cache hit: copying #{filename} from shared cache (#{shared_cache_dir()})", :info)
270
+ FileUtils.cp(cached_path, destination_path)
271
+ else
272
+ hermes_log("Cache miss: downloading #{filename} from #{tarball_url}", :info)
256
273
  # Download to a temporary file first so we don't cache incomplete downloads.
257
274
  tmp_file = "#{artifacts_dir()}/hermes-ios.download"
258
- `mkdir -p "#{artifacts_dir()}" && curl "#{tarball_url}" -Lo "#{tmp_file}" && mv "#{tmp_file}" "#{destination_path}"`
275
+ `curl "#{tarball_url}" -Lo "#{tmp_file}" && mv "#{tmp_file}" "#{destination_path}"`
276
+ # Save to shared cache for future use
277
+ `mkdir -p "#{shared_cache_dir()}"`
278
+ FileUtils.cp(destination_path, cached_path)
279
+ hermes_log("Saved #{filename} to shared cache (#{shared_cache_dir()})", :info)
259
280
  end
281
+
260
282
  return destination_path
261
283
  end
262
284
 
@@ -42,7 +42,7 @@ export type MeasureLayoutOnSuccessCallback = (
42
42
  * Note, however, that they are not available on composite components that aren't directly backed by a
43
43
  * native view. This will generally include most components that you define in your own app.
44
44
  * For more information, see [Direct Manipulation](https://reactnative.dev/docs/the-new-architecture/direct-manipulation-new-architecture).
45
- * @see https://github.com/facebook/react-native/blob/master/Libraries/Renderer/shims/ReactNativeTypes.js#L87
45
+ * @see https://github.com/react/react-native/blob/master/Libraries/Renderer/shims/ReactNativeTypes.js#L87
46
46
  */
47
47
  export interface LegacyHostInstanceMethods {
48
48
  /**
@@ -41,7 +41,7 @@ declare global {
41
41
  *
42
42
  * global.XMLHttpRequest = global.originalXMLHttpRequest;
43
43
  *
44
- * @see https://github.com/facebook/react-native/issues/934
44
+ * @see https://github.com/react/react-native/issues/934
45
45
  */
46
46
  const originalXMLHttpRequest: any;
47
47
 
@@ -237,7 +237,7 @@ declare global {
237
237
  /**
238
238
  * React Native's implementation of fetch allows this syntax for uploading files from
239
239
  * local filesystem.
240
- * See https://github.com/facebook/react-native/blob/master/Libraries/Network/convertRequestBody.js#L22
240
+ * See https://github.com/react/react-native/blob/master/Libraries/Network/convertRequestBody.js#L22
241
241
  */
242
242
  interface _SourceUri {
243
243
  uri: string;
@@ -73,7 +73,7 @@ Pod::Spec.new do |spec|
73
73
  'folly/portability/*.h',
74
74
  'folly/system/*.h',
75
75
 
76
- # workaround for https://github.com/facebook/react-native/issues/14326
76
+ # workaround for https://github.com/react/react-native/issues/14326
77
77
  spec.preserve_paths = 'folly/*.h',
78
78
  'folly/algorithm/simd/*.h',
79
79
  'folly/algorithm/simd/detail/*.h',
@@ -30,7 +30,7 @@ Pod::Spec.new do |spec|
30
30
  spec.version = core_version
31
31
  spec.summary = 'React Native Dependencies'
32
32
  spec.description = 'ReactNativeDependencies is a podspec that contains all the third-party dependencies of React Native.'
33
- spec.homepage = 'https://github.com/facebook/react-native'
33
+ spec.homepage = 'https://github.com/react/react-native'
34
34
  spec.license = package['license']
35
35
  spec.authors = 'meta'
36
36
  spec.platforms = min_supported_versions
@@ -27,7 +27,7 @@ Pod::Spec.new do |spec|
27
27
  'src/symbolize.cc',
28
28
  'src/utilities.cc',
29
29
  'src/vlog_is_on.cc'
30
- # workaround for https://github.com/facebook/react-native/issues/14326
30
+ # workaround for https://github.com/react/react-native/issues/14326
31
31
  spec.preserve_paths = 'src/*.h',
32
32
  'src/base/*.h'
33
33
  spec.exclude_files = "src/windows/**/*"
@@ -30,6 +30,15 @@ declare module 'react-native' {
30
30
  */
31
31
  scrollSnapAlign?: 'start' | 'center' | 'end' | undefined;
32
32
 
33
+ /**
34
+ * Per-item scroll snap offset in dp/pt. When set, the focus engine lands
35
+ * this view's top at viewport y = scrollSnapOffset. Standalone alternative
36
+ * to `scrollSnapAlign`; takes precedence if both are set on the same View.
37
+ *
38
+ * @platform tv
39
+ */
40
+ scrollSnapOffset?: number | undefined;
41
+
33
42
  /**
34
43
  * Android TV only prop
35
44
  */
@@ -40,7 +40,7 @@ export type MeasureLayoutOnSuccessCallback = (
40
40
  * Note, however, that they are not available on composite components that aren't directly backed by a
41
41
  * native view. This will generally include most components that you define in your own app.
42
42
  * For more information, see [Direct Manipulation](https://reactnative.dev/docs/the-new-architecture/direct-manipulation-new-architecture).
43
- * @see https://github.com/facebook/react-native/blob/master/Libraries/Renderer/shims/ReactNativeTypes.js#L87
43
+ * @see https://github.com/react/react-native/blob/master/Libraries/Renderer/shims/ReactNativeTypes.js#L87
44
44
  */
45
45
  export interface NativeMethods {
46
46
  /**
@@ -123,7 +123,7 @@ export type NativeMethodsMixinType = NativeMethods;
123
123
  /**
124
124
  * Represents a native component, such as those returned from `requireNativeComponent`.
125
125
  *
126
- * @see https://github.com/facebook/react-native/blob/v0.62.0-rc.5/Libraries/Renderer/shims/ReactNativeTypes.js
126
+ * @see https://github.com/react/react-native/blob/v0.62.0-rc.5/Libraries/Renderer/shims/ReactNativeTypes.js
127
127
  *
128
128
  * @todo This should eventually be defined as an AbstractComponent, but that
129
129
  * should first be introduced in the React typings.