@react-native-oh/react-native-harmony 0.77.18 → 0.77.22

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 (1013) hide show
  1. package/Libraries/ActionSheetIOS/ActionSheetIOS.d.ts +87 -0
  2. package/Libraries/ActionSheetIOS/ActionSheetIOS.js +175 -0
  3. package/Libraries/ActionSheetIOS/NativeActionSheetManager.js +13 -0
  4. package/Libraries/ActionSheetIOS/React-RCTActionSheet.podspec +34 -0
  5. package/Libraries/Alert/Alert.d.ts +91 -0
  6. package/Libraries/Alert/Alert.js +181 -0
  7. package/Libraries/Alert/NativeAlertManager.js +13 -0
  8. package/Libraries/Alert/RCTAlertManager.android.js +27 -0
  9. package/Libraries/Alert/RCTAlertManager.ios.js +25 -0
  10. package/Libraries/Alert/RCTAlertManager.js.flow +18 -0
  11. package/Libraries/Alert/delegates/AlertDelegate.ts +33 -0
  12. package/Libraries/Alert/delegates/BaseAlertDelegate.ts +37 -0
  13. package/Libraries/Animated/Animated.d.ts +626 -0
  14. package/Libraries/Animated/Animated.js +48 -0
  15. package/Libraries/Animated/AnimatedEvent.js +256 -0
  16. package/Libraries/Animated/AnimatedImplementation.js +754 -0
  17. package/Libraries/Animated/AnimatedMock.js +195 -0
  18. package/Libraries/Animated/AnimatedPlatformConfig.js +13 -0
  19. package/Libraries/Animated/AnimatedWeb.js +26 -0
  20. package/Libraries/Animated/Easing.d.ts +37 -0
  21. package/Libraries/Animated/Easing.js +250 -0
  22. package/Libraries/Animated/NativeAnimatedAllowlist.js +122 -0
  23. package/Libraries/Animated/NativeAnimatedModule.js +13 -0
  24. package/Libraries/Animated/NativeAnimatedTurboModule.js +13 -0
  25. package/Libraries/Animated/SpringConfig.js +98 -0
  26. package/Libraries/Animated/animations/Animation.js +171 -0
  27. package/Libraries/Animated/animations/DecayAnimation.js +121 -0
  28. package/Libraries/Animated/animations/SpringAnimation.js +372 -0
  29. package/Libraries/Animated/animations/TimingAnimation.js +173 -0
  30. package/Libraries/Animated/bezier.js +164 -0
  31. package/Libraries/Animated/components/AnimatedFlatList.js +20 -0
  32. package/Libraries/Animated/components/AnimatedImage.js +22 -0
  33. package/Libraries/Animated/components/AnimatedScrollView.js +137 -0
  34. package/Libraries/Animated/components/AnimatedSectionList.js +22 -0
  35. package/Libraries/Animated/components/AnimatedText.js +22 -0
  36. package/Libraries/Animated/components/AnimatedView.js +20 -0
  37. package/Libraries/Animated/createAnimatedComponent.js +102 -0
  38. package/Libraries/Animated/delegates/createAnimatedComponentDelegate.js +3 -0
  39. package/Libraries/Animated/nodes/AnimatedAddition.js +64 -0
  40. package/Libraries/Animated/nodes/AnimatedColor.js +320 -0
  41. package/Libraries/Animated/nodes/AnimatedDiffClamp.js +72 -0
  42. package/Libraries/Animated/nodes/AnimatedDivision.js +80 -0
  43. package/Libraries/Animated/nodes/AnimatedInterpolation.js +416 -0
  44. package/Libraries/Animated/nodes/AnimatedModulo.js +63 -0
  45. package/Libraries/Animated/nodes/AnimatedMultiplication.js +63 -0
  46. package/Libraries/Animated/nodes/AnimatedNode.js +200 -0
  47. package/Libraries/Animated/nodes/AnimatedObject.js +162 -0
  48. package/Libraries/Animated/nodes/AnimatedProps.js +281 -0
  49. package/Libraries/Animated/nodes/AnimatedStyle.js +251 -0
  50. package/Libraries/Animated/nodes/AnimatedSubtraction.js +64 -0
  51. package/Libraries/Animated/nodes/AnimatedTracking.js +100 -0
  52. package/Libraries/Animated/nodes/AnimatedTransform.js +198 -0
  53. package/Libraries/Animated/nodes/AnimatedValue.js +303 -0
  54. package/Libraries/Animated/nodes/AnimatedValueXY.js +236 -0
  55. package/Libraries/Animated/nodes/AnimatedWithChildren.js +85 -0
  56. package/Libraries/Animated/shouldUseTurboAnimatedModule.js +17 -0
  57. package/Libraries/Animated/useAnimatedProps.js +389 -0
  58. package/Libraries/Animated/useAnimatedValue.d.ts +15 -0
  59. package/Libraries/Animated/useAnimatedValue.js +25 -0
  60. package/Libraries/AppDelegate/RCTAppDelegate+Protected.h +16 -0
  61. package/Libraries/AppDelegate/RCTAppDelegate.h +122 -0
  62. package/Libraries/AppDelegate/RCTAppDelegate.mm +330 -0
  63. package/Libraries/AppDelegate/RCTAppSetupUtils.h +59 -0
  64. package/Libraries/AppDelegate/RCTAppSetupUtils.mm +167 -0
  65. package/Libraries/AppDelegate/RCTArchConfiguratorProtocol.h +32 -0
  66. package/Libraries/AppDelegate/RCTDependencyProvider.h +26 -0
  67. package/Libraries/AppDelegate/RCTRootViewFactory.h +198 -0
  68. package/Libraries/AppDelegate/RCTRootViewFactory.mm +310 -0
  69. package/Libraries/AppDelegate/RCTUIConfiguratorProtocol.h +56 -0
  70. package/Libraries/AppDelegate/React-RCTAppDelegate.podspec +99 -0
  71. package/Libraries/AppState/AppState.d.ts +58 -0
  72. package/Libraries/AppState/AppState.js +128 -0
  73. package/Libraries/AppState/NativeAppState.js +13 -0
  74. package/Libraries/BatchedBridge/BatchedBridge.js +28 -0
  75. package/Libraries/BatchedBridge/MessageQueue.js +492 -0
  76. package/Libraries/BatchedBridge/NativeModules.d.ts +25 -0
  77. package/Libraries/BatchedBridge/NativeModules.js +212 -0
  78. package/Libraries/BatchedBridge/__mocks__/MessageQueueTestConfig.js +38 -0
  79. package/Libraries/BatchedBridge/__mocks__/MessageQueueTestModule.js +22 -0
  80. package/Libraries/Blob/Blob.js +158 -0
  81. package/Libraries/Blob/BlobManager.js +179 -0
  82. package/Libraries/Blob/BlobRegistry.js +43 -0
  83. package/Libraries/Blob/BlobTypes.js +30 -0
  84. package/Libraries/Blob/File.js +55 -0
  85. package/Libraries/Blob/FileReader.js +186 -0
  86. package/Libraries/Blob/NativeBlobModule.js +13 -0
  87. package/Libraries/Blob/NativeFileReaderModule.js +13 -0
  88. package/Libraries/Blob/RCTBlobCollector.h +26 -0
  89. package/Libraries/Blob/RCTBlobCollector.mm +57 -0
  90. package/Libraries/Blob/RCTBlobManager.h +35 -0
  91. package/Libraries/Blob/RCTBlobManager.mm +358 -0
  92. package/Libraries/Blob/RCTBlobPlugins.h +41 -0
  93. package/Libraries/Blob/RCTBlobPlugins.mm +34 -0
  94. package/Libraries/Blob/RCTFileReaderModule.h +12 -0
  95. package/Libraries/Blob/RCTFileReaderModule.mm +96 -0
  96. package/Libraries/Blob/React-RCTBlob.podspec +68 -0
  97. package/Libraries/Blob/URL.js +173 -0
  98. package/Libraries/Blob/URLSearchParams.js +71 -0
  99. package/Libraries/Blob/URLSearchParams.js.flow +23 -0
  100. package/Libraries/Blob/__mocks__/BlobModule.js +16 -0
  101. package/Libraries/Blob/__mocks__/FileReaderModule.js +20 -0
  102. package/Libraries/BugReporting/BugReporting.js +140 -0
  103. package/Libraries/BugReporting/NativeBugReporting.js +13 -0
  104. package/Libraries/BugReporting/dumpReactTree.js +151 -0
  105. package/Libraries/BugReporting/getReactData.js +187 -0
  106. package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts +173 -0
  107. package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.js +514 -0
  108. package/Libraries/Components/AccessibilityInfo/NativeAccessibilityInfo.js +13 -0
  109. package/Libraries/Components/AccessibilityInfo/NativeAccessibilityManager.js +13 -0
  110. package/Libraries/Components/AccessibilityInfo/delegates/AccessibilityInfoDelegate.ts +28 -0
  111. package/Libraries/Components/AccessibilityInfo/delegates/BaseAccessibilityInfoDelegate.ts +69 -0
  112. package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.android.js +36 -0
  113. package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.ios.js +26 -0
  114. package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.js.flow +20 -0
  115. package/Libraries/Components/ActivityIndicator/ActivityIndicator.d.ts +86 -0
  116. package/Libraries/Components/ActivityIndicator/ActivityIndicator.js +177 -0
  117. package/Libraries/Components/ActivityIndicator/ActivityIndicatorViewNativeComponent.js +13 -0
  118. package/Libraries/Components/Button.d.ts +42 -0
  119. package/Libraries/Components/Button.js +450 -0
  120. package/Libraries/Components/Clipboard/Clipboard.d.ts +28 -0
  121. package/Libraries/Components/Clipboard/Clipboard.js +40 -0
  122. package/Libraries/Components/Clipboard/NativeClipboard.js +13 -0
  123. package/Libraries/Components/DrawerAndroid/AndroidDrawerLayoutNativeComponent.js +13 -0
  124. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +394 -0
  125. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.d.ts +141 -0
  126. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.js +14 -0
  127. package/Libraries/Components/Keyboard/Keyboard.d.ts +109 -0
  128. package/Libraries/Components/Keyboard/Keyboard.js +205 -0
  129. package/Libraries/Components/Keyboard/KeyboardAvoidingView.d.ts +46 -0
  130. package/Libraries/Components/Keyboard/KeyboardAvoidingView.js +305 -0
  131. package/Libraries/Components/Keyboard/NativeKeyboardObserver.js +13 -0
  132. package/Libraries/Components/Keyboard/delegates/BaseKeyboardAvoidingViewDelegate.ts +28 -0
  133. package/Libraries/Components/Keyboard/delegates/KeyboardAvoidingViewDelegate.ts +6 -0
  134. package/Libraries/Components/Pressable/Pressable.d.ts +167 -0
  135. package/Libraries/Components/Pressable/Pressable.js +369 -0
  136. package/Libraries/Components/Pressable/useAndroidRippleForView.js +109 -0
  137. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.android.js +113 -0
  138. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.d.ts +83 -0
  139. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.js +20 -0
  140. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroidNativeComponent.js +13 -0
  141. package/Libraries/Components/RefreshControl/AndroidSwipeRefreshLayoutNativeComponent.js +13 -0
  142. package/Libraries/Components/RefreshControl/PullToRefreshViewNativeComponent.js +13 -0
  143. package/Libraries/Components/RefreshControl/RefreshControl.d.ts +87 -0
  144. package/Libraries/Components/RefreshControl/RefreshControl.js +219 -0
  145. package/Libraries/Components/RefreshControl/__mocks__/RefreshControlMock.js +31 -0
  146. package/Libraries/Components/RefreshControl/delegates/BaseRefreshControlDelegate.ts +31 -0
  147. package/Libraries/Components/RefreshControl/delegates/RefreshControlDelegate.ts +21 -0
  148. package/Libraries/Components/SafeAreaView/RCTSafeAreaViewNativeComponent.js +13 -0
  149. package/Libraries/Components/SafeAreaView/SafeAreaView.d.ts +24 -0
  150. package/Libraries/Components/SafeAreaView/SafeAreaView.js +34 -0
  151. package/Libraries/Components/ScrollView/AndroidHorizontalScrollContentViewNativeComponent.js +13 -0
  152. package/Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js +73 -0
  153. package/Libraries/Components/ScrollView/ScrollContentViewNativeComponent.js +32 -0
  154. package/Libraries/Components/ScrollView/ScrollView.d.ts +910 -0
  155. package/Libraries/Components/ScrollView/ScrollView.js +1936 -0
  156. package/Libraries/Components/ScrollView/ScrollViewCommands.js +52 -0
  157. package/Libraries/Components/ScrollView/ScrollViewContext.js +24 -0
  158. package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +31 -0
  159. package/Libraries/Components/ScrollView/ScrollViewNativeComponentType.js +81 -0
  160. package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +310 -0
  161. package/Libraries/Components/ScrollView/delegates/BaseScrollViewDelegate.ts +36 -0
  162. package/Libraries/Components/ScrollView/delegates/BaseScrollViewNativeComponentDelegate.ts +12 -0
  163. package/Libraries/Components/ScrollView/delegates/ScrollViewDelegate.ts +23 -0
  164. package/Libraries/Components/ScrollView/delegates/ScrollViewNativeComponentDelegate.ts +14 -0
  165. package/Libraries/Components/ScrollView/delegates/types.ts +1 -0
  166. package/Libraries/Components/ScrollView/processDecelerationRate.js +30 -0
  167. package/Libraries/Components/Sound/NativeSoundManager.js +13 -0
  168. package/Libraries/Components/Sound/SoundManager.js +21 -0
  169. package/Libraries/Components/StaticRenderer.js +37 -0
  170. package/Libraries/Components/StatusBar/NativeStatusBarManagerAndroid.js +13 -0
  171. package/Libraries/Components/StatusBar/NativeStatusBarManagerIOS.js +13 -0
  172. package/Libraries/Components/StatusBar/StatusBar.d.ts +138 -0
  173. package/Libraries/Components/StatusBar/StatusBar.js +480 -0
  174. package/Libraries/Components/StatusBar/delegates/BaseStatusBarDelegate.ts +25 -0
  175. package/Libraries/Components/StatusBar/delegates/StatusBarDelegate.ts +44 -0
  176. package/Libraries/Components/Switch/AndroidSwitchNativeComponent.js +13 -0
  177. package/Libraries/Components/Switch/Switch.d.ts +115 -0
  178. package/Libraries/Components/Switch/Switch.js +257 -0
  179. package/Libraries/Components/Switch/SwitchNativeComponent.js +13 -0
  180. package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +751 -0
  181. package/Libraries/Components/TextInput/InputAccessoryView.d.ts +34 -0
  182. package/Libraries/Components/TextInput/InputAccessoryView.js +123 -0
  183. package/Libraries/Components/TextInput/RCTInputAccessoryViewNativeComponent.js +13 -0
  184. package/Libraries/Components/TextInput/RCTMultilineTextInputNativeComponent.js +45 -0
  185. package/Libraries/Components/TextInput/RCTSingelineTextInputNativeComponent.js +43 -0
  186. package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +168 -0
  187. package/Libraries/Components/TextInput/TextInput.d.ts +1007 -0
  188. package/Libraries/Components/TextInput/TextInput.flow.js +1109 -0
  189. package/Libraries/Components/TextInput/TextInput.js +1948 -0
  190. package/Libraries/Components/TextInput/TextInputNativeCommands.js +29 -0
  191. package/Libraries/Components/TextInput/TextInputState.js +216 -0
  192. package/Libraries/Components/TextInput/delegates/BaseTextInputDelegate.ts +39 -0
  193. package/Libraries/Components/TextInput/delegates/BaseTextInputStateDelegate.ts +12 -0
  194. package/Libraries/Components/TextInput/delegates/TextInputDelegate.ts +40 -0
  195. package/Libraries/Components/TextInput/delegates/TextInputStateDelegate.ts +15 -0
  196. package/Libraries/Components/ToastAndroid/NativeToastAndroid.js +13 -0
  197. package/Libraries/Components/ToastAndroid/ToastAndroid.android.js +74 -0
  198. package/Libraries/Components/ToastAndroid/ToastAndroid.d.ts +47 -0
  199. package/Libraries/Components/ToastAndroid/ToastAndroid.js +45 -0
  200. package/Libraries/Components/Touchable/BoundingDimensions.js +53 -0
  201. package/Libraries/Components/Touchable/PooledClass.js +133 -0
  202. package/Libraries/Components/Touchable/Position.js +40 -0
  203. package/Libraries/Components/Touchable/Touchable.d.ts +90 -0
  204. package/Libraries/Components/Touchable/Touchable.js +973 -0
  205. package/Libraries/Components/Touchable/TouchableBounce.js +222 -0
  206. package/Libraries/Components/Touchable/TouchableHighlight.d.ts +62 -0
  207. package/Libraries/Components/Touchable/TouchableHighlight.js +398 -0
  208. package/Libraries/Components/Touchable/TouchableNativeFeedback.d.ts +114 -0
  209. package/Libraries/Components/Touchable/TouchableNativeFeedback.js +370 -0
  210. package/Libraries/Components/Touchable/TouchableOpacity.d.ts +81 -0
  211. package/Libraries/Components/Touchable/TouchableOpacity.js +339 -0
  212. package/Libraries/Components/Touchable/TouchableWithoutFeedback.d.ts +151 -0
  213. package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +238 -0
  214. package/Libraries/Components/Touchable/delegates/BaseTouchableHighlightDelegate.ts +13 -0
  215. package/Libraries/Components/Touchable/delegates/BaseTouchableNativeFeedbackDelegate.ts +13 -0
  216. package/Libraries/Components/Touchable/delegates/BaseTouchableWithoutFeedbackDelegate.ts +13 -0
  217. package/Libraries/Components/Touchable/delegates/TouchableHighlightDelegate.ts +6 -0
  218. package/Libraries/Components/Touchable/delegates/TouchableNativeFeedbackDelegate.ts +6 -0
  219. package/Libraries/Components/Touchable/delegates/TouchableWithoutFeedbackDelegate.ts +6 -0
  220. package/Libraries/Components/UnimplementedViews/UnimplementedNativeViewNativeComponent.js +13 -0
  221. package/Libraries/Components/UnimplementedViews/UnimplementedView.js +41 -0
  222. package/Libraries/Components/View/ReactNativeStyleAttributes.js +218 -0
  223. package/Libraries/Components/View/ReactNativeViewAttributes.js +60 -0
  224. package/Libraries/Components/View/View.d.ts +29 -0
  225. package/Libraries/Components/View/View.js +140 -0
  226. package/Libraries/Components/View/ViewAccessibility.d.ts +404 -0
  227. package/Libraries/Components/View/ViewAccessibility.js +167 -0
  228. package/Libraries/Components/View/ViewNativeComponent.js +36 -0
  229. package/Libraries/Components/View/ViewPropTypes.d.ts +221 -0
  230. package/Libraries/Components/View/ViewPropTypes.js +656 -0
  231. package/Libraries/Components/View/delegates/ViewDelegate.js +3 -0
  232. package/Libraries/Components/delegates/BaseButtonDelegate.ts +15 -0
  233. package/Libraries/Components/delegates/ButtonDelegate.ts +27 -0
  234. package/Libraries/Core/Devtools/getDevServer.js +43 -0
  235. package/Libraries/Core/Devtools/loadBundleFromServer.js +152 -0
  236. package/Libraries/Core/Devtools/openFileInEditor.js +26 -0
  237. package/Libraries/Core/Devtools/openURLInBrowser.js +23 -0
  238. package/Libraries/Core/Devtools/parseErrorStack.js +59 -0
  239. package/Libraries/Core/Devtools/parseHermesStack.js +147 -0
  240. package/Libraries/Core/Devtools/symbolicateStackTrace.js +50 -0
  241. package/Libraries/Core/ExceptionsManager.js +282 -0
  242. package/Libraries/Core/ExtendedError.js +33 -0
  243. package/Libraries/Core/InitializeCore.js +60 -0
  244. package/Libraries/Core/NativeExceptionsManager.js +13 -0
  245. package/Libraries/Core/RawEventEmitter.js +39 -0
  246. package/Libraries/Core/ReactFiberErrorDialog.js +65 -0
  247. package/Libraries/Core/ReactNativeVersion.js +23 -0
  248. package/Libraries/Core/ReactNativeVersionCheck.js +52 -0
  249. package/Libraries/Core/SegmentFetcher/NativeSegmentFetcher.js +13 -0
  250. package/Libraries/Core/Timers/JSTimers.js +487 -0
  251. package/Libraries/Core/Timers/NativeTiming.js +13 -0
  252. package/Libraries/Core/Timers/immediateShim.js +68 -0
  253. package/Libraries/Core/Timers/queueMicrotask.js +41 -0
  254. package/Libraries/Core/__mocks__/ErrorUtils.js +33 -0
  255. package/Libraries/Core/__mocks__/NativeExceptionsManager.js +19 -0
  256. package/Libraries/Core/checkNativeVersion.js +18 -0
  257. package/Libraries/Core/polyfillPromise.js +38 -0
  258. package/Libraries/Core/registerCallableModule.d.ts +16 -0
  259. package/Libraries/Core/registerCallableModule.js +42 -0
  260. package/Libraries/Core/setUpAlert.js +23 -0
  261. package/Libraries/Core/setUpBatchedBridge.js +50 -0
  262. package/Libraries/Core/setUpDeveloperTools.js +82 -0
  263. package/Libraries/Core/setUpErrorHandling.js +35 -0
  264. package/Libraries/Core/setUpGlobals.js +36 -0
  265. package/Libraries/Core/setUpNavigator.js +22 -0
  266. package/Libraries/Core/setUpPerformance.js +31 -0
  267. package/Libraries/Core/setUpPlatform.js +1 -0
  268. package/Libraries/Core/setUpReactDevTools.js +252 -0
  269. package/Libraries/Core/setUpReactRefresh.js +47 -0
  270. package/Libraries/Core/setUpRegeneratorRuntime.js +46 -0
  271. package/Libraries/Core/setUpSegmentFetcher.js +53 -0
  272. package/Libraries/Core/setUpTimers.js +125 -0
  273. package/Libraries/Core/setUpXHR.js +41 -0
  274. package/Libraries/Debugging/DebuggingOverlay.js +110 -0
  275. package/Libraries/Debugging/DebuggingOverlayNativeComponent.js +13 -0
  276. package/Libraries/Debugging/DebuggingOverlayRegistry.js +513 -0
  277. package/Libraries/Debugging/useSubscribeToDebuggingOverlayRegistry.js +32 -0
  278. package/Libraries/EventEmitter/NativeEventEmitter.d.ts +63 -0
  279. package/Libraries/EventEmitter/NativeEventEmitter.js +122 -0
  280. package/Libraries/EventEmitter/RCTDeviceEventEmitter.d.ts +29 -0
  281. package/Libraries/EventEmitter/RCTDeviceEventEmitter.js +43 -0
  282. package/Libraries/EventEmitter/RCTEventEmitter.js +25 -0
  283. package/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts +32 -0
  284. package/Libraries/EventEmitter/RCTNativeAppEventEmitter.js +18 -0
  285. package/Libraries/EventEmitter/__mocks__/NativeEventEmitter.js +48 -0
  286. package/Libraries/Events/CustomEvent.js +32 -0
  287. package/Libraries/Events/EventPolyfill.js +239 -0
  288. package/Libraries/FBLazyVector/FBLazyVector/FBLazyIterator.h +127 -0
  289. package/Libraries/FBLazyVector/FBLazyVector/FBLazyVector.h +102 -0
  290. package/Libraries/FBLazyVector/FBLazyVector.podspec +31 -0
  291. package/Libraries/HeapCapture/HeapCapture.js +29 -0
  292. package/Libraries/HeapCapture/NativeJSCHeapCapture.js +13 -0
  293. package/Libraries/Image/AssetRegistry.js +13 -0
  294. package/Libraries/Image/AssetSourceResolver.js +202 -0
  295. package/Libraries/Image/AssetUtils.js +47 -0
  296. package/Libraries/Image/Image.android.js +322 -0
  297. package/Libraries/Image/Image.d.ts +373 -0
  298. package/Libraries/Image/Image.ios.js +252 -0
  299. package/Libraries/Image/Image.js.flow +13 -0
  300. package/Libraries/Image/ImageAnalyticsTagContext.js +22 -0
  301. package/Libraries/Image/ImageBackground.js +106 -0
  302. package/Libraries/Image/ImageInjection.js +87 -0
  303. package/Libraries/Image/ImageProps.js +296 -0
  304. package/Libraries/Image/ImageResizeMode.d.ts +56 -0
  305. package/Libraries/Image/ImageResizeMode.js +39 -0
  306. package/Libraries/Image/ImageSource.d.ts +74 -0
  307. package/Libraries/Image/ImageSource.js +135 -0
  308. package/Libraries/Image/ImageSourceUtils.js +80 -0
  309. package/Libraries/Image/ImageTypes.flow.js +78 -0
  310. package/Libraries/Image/ImageUtils.js +25 -0
  311. package/Libraries/Image/ImageViewNativeComponent.js +175 -0
  312. package/Libraries/Image/NativeImageEditor.js +13 -0
  313. package/Libraries/Image/NativeImageLoaderAndroid.js +13 -0
  314. package/Libraries/Image/NativeImageLoaderIOS.js +13 -0
  315. package/Libraries/Image/NativeImageStoreAndroid.js +13 -0
  316. package/Libraries/Image/NativeImageStoreIOS.js +13 -0
  317. package/Libraries/Image/RCTAnimatedImage.h +21 -0
  318. package/Libraries/Image/RCTAnimatedImage.mm +175 -0
  319. package/Libraries/Image/RCTBundleAssetImageLoader.h +12 -0
  320. package/Libraries/Image/RCTBundleAssetImageLoader.mm +83 -0
  321. package/Libraries/Image/RCTDisplayWeakRefreshable.h +23 -0
  322. package/Libraries/Image/RCTDisplayWeakRefreshable.mm +31 -0
  323. package/Libraries/Image/RCTGIFImageDecoder.h +12 -0
  324. package/Libraries/Image/RCTGIFImageDecoder.mm +63 -0
  325. package/Libraries/Image/RCTImageBlurUtils.h +13 -0
  326. package/Libraries/Image/RCTImageBlurUtils.mm +100 -0
  327. package/Libraries/Image/RCTImageCache.h +45 -0
  328. package/Libraries/Image/RCTImageCache.mm +164 -0
  329. package/Libraries/Image/RCTImageDataDecoder.h +53 -0
  330. package/Libraries/Image/RCTImageEditingManager.h +12 -0
  331. package/Libraries/Image/RCTImageEditingManager.mm +113 -0
  332. package/Libraries/Image/RCTImageLoader.h +43 -0
  333. package/Libraries/Image/RCTImageLoader.mm +1302 -0
  334. package/Libraries/Image/RCTImageLoaderLoggable.h +32 -0
  335. package/Libraries/Image/RCTImageLoaderProtocol.h +135 -0
  336. package/Libraries/Image/RCTImageLoaderWithAttributionProtocol.h +48 -0
  337. package/Libraries/Image/RCTImagePlugins.h +44 -0
  338. package/Libraries/Image/RCTImagePlugins.mm +37 -0
  339. package/Libraries/Image/RCTImageShadowView.h +12 -0
  340. package/Libraries/Image/RCTImageShadowView.mm +24 -0
  341. package/Libraries/Image/RCTImageStoreManager.h +55 -0
  342. package/Libraries/Image/RCTImageStoreManager.mm +296 -0
  343. package/Libraries/Image/RCTImageURLLoader.h +83 -0
  344. package/Libraries/Image/RCTImageURLLoaderWithAttribution.h +78 -0
  345. package/Libraries/Image/RCTImageURLLoaderWithAttribution.mm +32 -0
  346. package/Libraries/Image/RCTImageUtils.h +94 -0
  347. package/Libraries/Image/RCTImageUtils.mm +389 -0
  348. package/Libraries/Image/RCTImageView.h +27 -0
  349. package/Libraries/Image/RCTImageView.mm +504 -0
  350. package/Libraries/Image/RCTImageViewManager.h +12 -0
  351. package/Libraries/Image/RCTImageViewManager.mm +116 -0
  352. package/Libraries/Image/RCTLocalAssetImageLoader.h +13 -0
  353. package/Libraries/Image/RCTLocalAssetImageLoader.mm +83 -0
  354. package/Libraries/Image/RCTResizeMode.h +53 -0
  355. package/Libraries/Image/RCTResizeMode.mm +25 -0
  356. package/Libraries/Image/RCTUIImageViewAnimated.h +13 -0
  357. package/Libraries/Image/RCTUIImageViewAnimated.mm +346 -0
  358. package/Libraries/Image/React-RCTImage.podspec +60 -0
  359. package/Libraries/Image/RelativeImageStub.js +28 -0
  360. package/Libraries/Image/TextInlineImageNativeComponent.js +51 -0
  361. package/Libraries/Image/nativeImageSource.js +64 -0
  362. package/Libraries/Image/resolveAssetSource.js +143 -0
  363. package/Libraries/Inspector/BorderBox.js +32 -0
  364. package/Libraries/Inspector/BoxInspector.js +109 -0
  365. package/Libraries/Inspector/ElementBox.js +143 -0
  366. package/Libraries/Inspector/ElementProperties.js +120 -0
  367. package/Libraries/Inspector/Inspector.js +206 -0
  368. package/Libraries/Inspector/InspectorOverlay.js +65 -0
  369. package/Libraries/Inspector/InspectorPanel.js +164 -0
  370. package/Libraries/Inspector/NetworkOverlay.js +611 -0
  371. package/Libraries/Inspector/PerformanceOverlay.js +63 -0
  372. package/Libraries/Inspector/ReactDevToolsOverlay.js +165 -0
  373. package/Libraries/Inspector/StyleInspector.js +70 -0
  374. package/Libraries/Inspector/getInspectorDataForViewAtPoint.js +81 -0
  375. package/Libraries/Inspector/resolveBoxStyle.js +114 -0
  376. package/Libraries/Interaction/FrameRateLogger.js +72 -0
  377. package/Libraries/Interaction/InteractionManager.d.ts +74 -0
  378. package/Libraries/Interaction/InteractionManager.js +216 -0
  379. package/Libraries/Interaction/InteractionManagerStub.js +176 -0
  380. package/Libraries/Interaction/JSEventLoopWatchdog.js +88 -0
  381. package/Libraries/Interaction/NativeFrameRateLogger.js +13 -0
  382. package/Libraries/Interaction/PanResponder.d.ts +202 -0
  383. package/Libraries/Interaction/PanResponder.js +579 -0
  384. package/Libraries/Interaction/TaskQueue.js +183 -0
  385. package/Libraries/Interaction/TouchHistoryMath.js +156 -0
  386. package/Libraries/JSInspector/InspectorAgent.js +27 -0
  387. package/Libraries/JSInspector/JSInspector.js +33 -0
  388. package/Libraries/JSInspector/NetworkAgent.js +295 -0
  389. package/Libraries/LayoutAnimation/LayoutAnimation.d.ts +84 -0
  390. package/Libraries/LayoutAnimation/LayoutAnimation.js +200 -0
  391. package/Libraries/Linking/Linking.d.ts +61 -0
  392. package/Libraries/Linking/Linking.js +133 -0
  393. package/Libraries/Linking/NativeIntentAndroid.js +13 -0
  394. package/Libraries/Linking/NativeLinkingManager.js +13 -0
  395. package/Libraries/LinkingIOS/RCTLinkingManager.h +27 -0
  396. package/Libraries/LinkingIOS/RCTLinkingManager.mm +204 -0
  397. package/Libraries/LinkingIOS/RCTLinkingPlugins.h +40 -0
  398. package/Libraries/LinkingIOS/RCTLinkingPlugins.mm +33 -0
  399. package/Libraries/LinkingIOS/React-RCTLinking.podspec +56 -0
  400. package/Libraries/Lists/FillRateHelper.js +19 -0
  401. package/Libraries/Lists/FlatList.d.ts +244 -0
  402. package/Libraries/Lists/FlatList.js +717 -0
  403. package/Libraries/Lists/SectionList.d.ts +267 -0
  404. package/Libraries/Lists/SectionList.js +269 -0
  405. package/Libraries/Lists/SectionListModern.js +249 -0
  406. package/Libraries/Lists/ViewabilityHelper.js +24 -0
  407. package/Libraries/Lists/VirtualizeUtils.js +18 -0
  408. package/Libraries/Lists/VirtualizedList.js +23 -0
  409. package/Libraries/Lists/VirtualizedListContext.js +18 -0
  410. package/Libraries/Lists/VirtualizedSectionList.js +22 -0
  411. package/Libraries/Lists/__flowtests__/FlatList-flowtest.js +118 -0
  412. package/Libraries/Lists/__flowtests__/SectionList-flowtest.js +134 -0
  413. package/Libraries/LogBox/Data/LogBoxData.js +511 -0
  414. package/Libraries/LogBox/Data/LogBoxLog.js +257 -0
  415. package/Libraries/LogBox/Data/LogBoxSymbolication.js +65 -0
  416. package/Libraries/LogBox/Data/parseLogBoxLog.js +514 -0
  417. package/Libraries/LogBox/LogBox.d.ts +28 -0
  418. package/Libraries/LogBox/LogBox.js +291 -0
  419. package/Libraries/LogBox/LogBoxInspectorContainer.js +68 -0
  420. package/Libraries/LogBox/LogBoxNotificationContainer.js +105 -0
  421. package/Libraries/LogBox/UI/AnsiHighlight.js +121 -0
  422. package/Libraries/LogBox/UI/LogBoxButton.js +70 -0
  423. package/Libraries/LogBox/UI/LogBoxImages/alert-triangle.png +0 -0
  424. package/Libraries/LogBox/UI/LogBoxImages/chevron-left.png +0 -0
  425. package/Libraries/LogBox/UI/LogBoxImages/chevron-right.png +0 -0
  426. package/Libraries/LogBox/UI/LogBoxImages/close.png +0 -0
  427. package/Libraries/LogBox/UI/LogBoxImages/loader.png +0 -0
  428. package/Libraries/LogBox/UI/LogBoxInspector.js +89 -0
  429. package/Libraries/LogBox/UI/LogBoxInspectorBody.js +87 -0
  430. package/Libraries/LogBox/UI/LogBoxInspectorCodeFrame.js +164 -0
  431. package/Libraries/LogBox/UI/LogBoxInspectorFooter.js +70 -0
  432. package/Libraries/LogBox/UI/LogBoxInspectorFooterButton.js +58 -0
  433. package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +108 -0
  434. package/Libraries/LogBox/UI/LogBoxInspectorHeaderButton.js +76 -0
  435. package/Libraries/LogBox/UI/LogBoxInspectorMessageHeader.js +125 -0
  436. package/Libraries/LogBox/UI/LogBoxInspectorReactFrames.js +188 -0
  437. package/Libraries/LogBox/UI/LogBoxInspectorSection.js +58 -0
  438. package/Libraries/LogBox/UI/LogBoxInspectorSourceMapStatus.js +133 -0
  439. package/Libraries/LogBox/UI/LogBoxInspectorStackFrame.js +114 -0
  440. package/Libraries/LogBox/UI/LogBoxInspectorStackFrames.js +221 -0
  441. package/Libraries/LogBox/UI/LogBoxMessage.js +169 -0
  442. package/Libraries/LogBox/UI/LogBoxNotification.js +83 -0
  443. package/Libraries/LogBox/UI/LogBoxNotificationCountBadge.js +63 -0
  444. package/Libraries/LogBox/UI/LogBoxNotificationDismissButton.js +67 -0
  445. package/Libraries/LogBox/UI/LogBoxNotificationMessage.js +57 -0
  446. package/Libraries/LogBox/UI/LogBoxStyle.js +65 -0
  447. package/Libraries/Modal/Modal.d.ts +116 -0
  448. package/Libraries/Modal/Modal.js +365 -0
  449. package/Libraries/Modal/ModalInjection.js +15 -0
  450. package/Libraries/Modal/NativeModalManager.js +13 -0
  451. package/Libraries/Modal/RCTModalHostViewNativeComponent.js +13 -0
  452. package/Libraries/NativeAnimation/Drivers/RCTAnimationDriver.h +38 -0
  453. package/Libraries/NativeAnimation/Drivers/RCTDecayAnimation.h +12 -0
  454. package/Libraries/NativeAnimation/Drivers/RCTDecayAnimation.mm +125 -0
  455. package/Libraries/NativeAnimation/Drivers/RCTEventAnimation.h +20 -0
  456. package/Libraries/NativeAnimation/Drivers/RCTEventAnimation.mm +36 -0
  457. package/Libraries/NativeAnimation/Drivers/RCTFrameAnimation.h +12 -0
  458. package/Libraries/NativeAnimation/Drivers/RCTFrameAnimation.mm +151 -0
  459. package/Libraries/NativeAnimation/Drivers/RCTSpringAnimation.h +12 -0
  460. package/Libraries/NativeAnimation/Drivers/RCTSpringAnimation.mm +200 -0
  461. package/Libraries/NativeAnimation/Nodes/RCTAdditionAnimatedNode.h +12 -0
  462. package/Libraries/NativeAnimation/Nodes/RCTAdditionAnimatedNode.mm +25 -0
  463. package/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.h +50 -0
  464. package/Libraries/NativeAnimation/Nodes/RCTAnimatedNode.mm +126 -0
  465. package/Libraries/NativeAnimation/Nodes/RCTColorAnimatedNode.h +14 -0
  466. package/Libraries/NativeAnimation/Nodes/RCTColorAnimatedNode.mm +29 -0
  467. package/Libraries/NativeAnimation/Nodes/RCTDiffClampAnimatedNode.h +12 -0
  468. package/Libraries/NativeAnimation/Nodes/RCTDiffClampAnimatedNode.mm +64 -0
  469. package/Libraries/NativeAnimation/Nodes/RCTDivisionAnimatedNode.h +12 -0
  470. package/Libraries/NativeAnimation/Nodes/RCTDivisionAnimatedNode.mm +32 -0
  471. package/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.h +26 -0
  472. package/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.mm +169 -0
  473. package/Libraries/NativeAnimation/Nodes/RCTModuloAnimatedNode.h +12 -0
  474. package/Libraries/NativeAnimation/Nodes/RCTModuloAnimatedNode.mm +22 -0
  475. package/Libraries/NativeAnimation/Nodes/RCTMultiplicationAnimatedNode.h +12 -0
  476. package/Libraries/NativeAnimation/Nodes/RCTMultiplicationAnimatedNode.mm +26 -0
  477. package/Libraries/NativeAnimation/Nodes/RCTObjectAnimatedNode.h +14 -0
  478. package/Libraries/NativeAnimation/Nodes/RCTObjectAnimatedNode.mm +66 -0
  479. package/Libraries/NativeAnimation/Nodes/RCTPropsAnimatedNode.h +26 -0
  480. package/Libraries/NativeAnimation/Nodes/RCTPropsAnimatedNode.mm +146 -0
  481. package/Libraries/NativeAnimation/Nodes/RCTStyleAnimatedNode.h +14 -0
  482. package/Libraries/NativeAnimation/Nodes/RCTStyleAnimatedNode.mm +62 -0
  483. package/Libraries/NativeAnimation/Nodes/RCTSubtractionAnimatedNode.h +12 -0
  484. package/Libraries/NativeAnimation/Nodes/RCTSubtractionAnimatedNode.mm +25 -0
  485. package/Libraries/NativeAnimation/Nodes/RCTTrackingAnimatedNode.h +12 -0
  486. package/Libraries/NativeAnimation/Nodes/RCTTrackingAnimatedNode.mm +47 -0
  487. package/Libraries/NativeAnimation/Nodes/RCTTransformAnimatedNode.h +14 -0
  488. package/Libraries/NativeAnimation/Nodes/RCTTransformAnimatedNode.mm +55 -0
  489. package/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.h +30 -0
  490. package/Libraries/NativeAnimation/Nodes/RCTValueAnimatedNode.mm +60 -0
  491. package/Libraries/NativeAnimation/RCTAnimationPlugins.h +41 -0
  492. package/Libraries/NativeAnimation/RCTAnimationPlugins.mm +34 -0
  493. package/Libraries/NativeAnimation/RCTAnimationUtils.h +46 -0
  494. package/Libraries/NativeAnimation/RCTAnimationUtils.mm +129 -0
  495. package/Libraries/NativeAnimation/RCTNativeAnimatedModule.h +28 -0
  496. package/Libraries/NativeAnimation/RCTNativeAnimatedModule.mm +395 -0
  497. package/Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h +94 -0
  498. package/Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.mm +511 -0
  499. package/Libraries/NativeAnimation/RCTNativeAnimatedTurboModule.h +25 -0
  500. package/Libraries/NativeAnimation/RCTNativeAnimatedTurboModule.mm +411 -0
  501. package/Libraries/NativeAnimation/React-RCTAnimation.podspec +56 -0
  502. package/Libraries/NativeComponent/BaseViewConfig.android.js +423 -0
  503. package/Libraries/NativeComponent/BaseViewConfig.ios.js +423 -0
  504. package/Libraries/NativeComponent/BaseViewConfig.js.flow +14 -0
  505. package/Libraries/NativeComponent/NativeComponentRegistry.js +164 -0
  506. package/Libraries/NativeComponent/NativeComponentRegistryUnstable.js +30 -0
  507. package/Libraries/NativeComponent/PlatformBaseViewConfig.js +25 -0
  508. package/Libraries/NativeComponent/StaticViewConfigValidator.js +144 -0
  509. package/Libraries/NativeComponent/ViewConfig.js +52 -0
  510. package/Libraries/NativeComponent/ViewConfigIgnore.js +55 -0
  511. package/Libraries/NativeComponent/delegates/BaseViewConfigIgnoreDelegate.ts +10 -0
  512. package/Libraries/NativeComponent/delegates/ViewConfigIgnoreDelegate.ts +10 -0
  513. package/Libraries/NativeModules/specs/NativeDevMenu.js +13 -0
  514. package/Libraries/NativeModules/specs/NativeDevSettings.js +13 -0
  515. package/Libraries/NativeModules/specs/NativeDeviceEventManager.js +13 -0
  516. package/Libraries/NativeModules/specs/NativeDialogManagerAndroid.js +13 -0
  517. package/Libraries/NativeModules/specs/NativeLogBox.js +13 -0
  518. package/Libraries/NativeModules/specs/NativeRedBox.js +13 -0
  519. package/Libraries/NativeModules/specs/NativeSourceCode.js +13 -0
  520. package/Libraries/Network/FormData.js +108 -0
  521. package/Libraries/Network/NativeNetworkingAndroid.js +13 -0
  522. package/Libraries/Network/NativeNetworkingIOS.js +13 -0
  523. package/Libraries/Network/RCTDataRequestHandler.h +16 -0
  524. package/Libraries/Network/RCTDataRequestHandler.mm +86 -0
  525. package/Libraries/Network/RCTFileRequestHandler.h +16 -0
  526. package/Libraries/Network/RCTFileRequestHandler.mm +100 -0
  527. package/Libraries/Network/RCTHTTPRequestHandler.h +22 -0
  528. package/Libraries/Network/RCTHTTPRequestHandler.mm +195 -0
  529. package/Libraries/Network/RCTNetworkPlugins.h +43 -0
  530. package/Libraries/Network/RCTNetworkPlugins.mm +36 -0
  531. package/Libraries/Network/RCTNetworkTask.h +47 -0
  532. package/Libraries/Network/RCTNetworkTask.mm +228 -0
  533. package/Libraries/Network/RCTNetworking.android.js +95 -0
  534. package/Libraries/Network/RCTNetworking.h +86 -0
  535. package/Libraries/Network/RCTNetworking.ios.js +112 -0
  536. package/Libraries/Network/RCTNetworking.js.flow +89 -0
  537. package/Libraries/Network/RCTNetworking.mm +823 -0
  538. package/Libraries/Network/React-RCTNetwork.podspec +56 -0
  539. package/Libraries/Network/XHRInterceptor.js +214 -0
  540. package/Libraries/Network/XMLHttpRequest.js +698 -0
  541. package/Libraries/Network/convertRequestBody.js +43 -0
  542. package/Libraries/Network/fetch.js +19 -0
  543. package/Libraries/NewAppScreen/components/Colors.js +19 -0
  544. package/Libraries/NewAppScreen/components/DebugInstructions.js +41 -0
  545. package/Libraries/NewAppScreen/components/Header.js +77 -0
  546. package/Libraries/NewAppScreen/components/HermesBadge.js +53 -0
  547. package/Libraries/NewAppScreen/components/LearnMoreLinks.js +148 -0
  548. package/Libraries/NewAppScreen/components/ReloadInstructions.js +39 -0
  549. package/Libraries/NewAppScreen/components/logo.png +0 -0
  550. package/Libraries/NewAppScreen/index.js +25 -0
  551. package/Libraries/Performance/NativeJSCSamplingProfiler.js +13 -0
  552. package/Libraries/Performance/SamplingProfiler.js +39 -0
  553. package/Libraries/Performance/Systrace.d.ts +66 -0
  554. package/Libraries/Performance/Systrace.js +139 -0
  555. package/Libraries/PermissionsAndroid/NativePermissionsAndroid.js +13 -0
  556. package/Libraries/PermissionsAndroid/PermissionsAndroid.d.ts +163 -0
  557. package/Libraries/PermissionsAndroid/PermissionsAndroid.js +299 -0
  558. package/Libraries/Pressability/HoverState.js +58 -0
  559. package/Libraries/Pressability/Pressability.js +954 -0
  560. package/Libraries/Pressability/PressabilityDebug.js +85 -0
  561. package/Libraries/Pressability/PressabilityPerformanceEventEmitter.js +49 -0
  562. package/Libraries/Pressability/PressabilityTypes.js +18 -0
  563. package/Libraries/Pressability/usePressability.js +60 -0
  564. package/Libraries/Promise.js +23 -0
  565. package/Libraries/PushNotificationIOS/NativePushNotificationManagerIOS.js +13 -0
  566. package/Libraries/PushNotificationIOS/PushNotificationIOS.d.ts +295 -0
  567. package/Libraries/PushNotificationIOS/PushNotificationIOS.js +569 -0
  568. package/Libraries/PushNotificationIOS/RCTPushNotificationManager.h +48 -0
  569. package/Libraries/PushNotificationIOS/RCTPushNotificationManager.mm +590 -0
  570. package/Libraries/PushNotificationIOS/RCTPushNotificationPlugins.h +40 -0
  571. package/Libraries/PushNotificationIOS/RCTPushNotificationPlugins.mm +33 -0
  572. package/Libraries/PushNotificationIOS/React-RCTPushNotification.podspec +56 -0
  573. package/Libraries/ReactNative/AppContainer-dev.js +208 -0
  574. package/Libraries/ReactNative/AppContainer-prod.js +50 -0
  575. package/Libraries/ReactNative/AppContainer.js +31 -0
  576. package/Libraries/ReactNative/AppRegistry.d.ts +121 -0
  577. package/Libraries/ReactNative/AppRegistry.js +360 -0
  578. package/Libraries/ReactNative/BridgelessUIManager.js +430 -0
  579. package/Libraries/ReactNative/DisplayMode.js +32 -0
  580. package/Libraries/ReactNative/FabricUIManager.js +145 -0
  581. package/Libraries/ReactNative/HeadlessJsTaskError.js +11 -0
  582. package/Libraries/ReactNative/I18nManager.d.ts +25 -0
  583. package/Libraries/ReactNative/I18nManager.js +64 -0
  584. package/Libraries/ReactNative/NativeHeadlessJsTaskSupport.js +13 -0
  585. package/Libraries/ReactNative/NativeI18nManager.js +13 -0
  586. package/Libraries/ReactNative/NativeUIManager.js +13 -0
  587. package/Libraries/ReactNative/PaperUIManager.js +191 -0
  588. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +150 -0
  589. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +100 -0
  590. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstanceUtils.js +38 -0
  591. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactNativeAttributePayload.js +492 -0
  592. package/Libraries/ReactNative/ReactFabricPublicInstance/warnForStyleProps.js +33 -0
  593. package/Libraries/ReactNative/ReactNativeFeatureFlags.js +31 -0
  594. package/Libraries/ReactNative/ReactNativeRuntimeDiagnostics.js +68 -0
  595. package/Libraries/ReactNative/RendererImplementation.js +164 -0
  596. package/Libraries/ReactNative/RendererProxy.d.ts +20 -0
  597. package/Libraries/ReactNative/RendererProxy.js +26 -0
  598. package/Libraries/ReactNative/RootTag.d.ts +13 -0
  599. package/Libraries/ReactNative/RootTag.js +27 -0
  600. package/Libraries/ReactNative/UIManager.d.ts +113 -0
  601. package/Libraries/ReactNative/UIManager.js +193 -0
  602. package/Libraries/ReactNative/UIManagerProperties.js +61 -0
  603. package/Libraries/ReactNative/__mocks__/FabricUIManager.js +334 -0
  604. package/Libraries/ReactNative/delegates/BaseBridgelessUIManagerDelegate.ts +14 -0
  605. package/Libraries/ReactNative/delegates/BaseI18nManagerDelegate.ts +18 -0
  606. package/Libraries/ReactNative/delegates/BridgelessUIManagerDelegate.ts +11 -0
  607. package/Libraries/ReactNative/delegates/I18nManagerDelegate.ts +24 -0
  608. package/Libraries/ReactNative/getCachedComponentWithDebugName.js +33 -0
  609. package/Libraries/ReactNative/getNativeComponentAttributes.js +212 -0
  610. package/Libraries/ReactNative/renderApplication.js +108 -0
  611. package/Libraries/ReactNative/requireNativeComponent.d.ts +23 -0
  612. package/Libraries/ReactNative/requireNativeComponent.js +35 -0
  613. package/Libraries/ReactPrivate/README +1 -0
  614. package/Libraries/ReactPrivate/ReactNativePrivateInitializeCore.js +11 -0
  615. package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +116 -0
  616. package/Libraries/Renderer/README.md +22 -0
  617. package/Libraries/Renderer/implementations/ReactFabric-dev.js +27376 -0
  618. package/Libraries/Renderer/implementations/ReactFabric-prod.js +9152 -0
  619. package/Libraries/Renderer/implementations/ReactFabric-profiling.js +9642 -0
  620. package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +27830 -0
  621. package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +9379 -0
  622. package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +9896 -0
  623. package/Libraries/Renderer/shims/ReactFabric.js +33 -0
  624. package/Libraries/Renderer/shims/ReactFeatureFlags.js +19 -0
  625. package/Libraries/Renderer/shims/ReactNative.js +24 -0
  626. package/Libraries/Renderer/shims/ReactNativeTypes.js +320 -0
  627. package/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +123 -0
  628. package/Libraries/Renderer/shims/createReactNativeComponentClass.js +35 -0
  629. package/Libraries/Required/RCTRequired.h +90 -0
  630. package/Libraries/Required/RCTRequired.podspec +30 -0
  631. package/Libraries/Settings/NativeSettingsManager.js +13 -0
  632. package/Libraries/Settings/RCTSettingsManager.h +16 -0
  633. package/Libraries/Settings/RCTSettingsManager.mm +123 -0
  634. package/Libraries/Settings/RCTSettingsPlugins.h +40 -0
  635. package/Libraries/Settings/RCTSettingsPlugins.mm +33 -0
  636. package/Libraries/Settings/React-RCTSettings.podspec +56 -0
  637. package/Libraries/Settings/Settings.d.ts +18 -0
  638. package/Libraries/Settings/Settings.ios.js +81 -0
  639. package/Libraries/Settings/Settings.js +33 -0
  640. package/Libraries/Share/NativeShareModule.js +13 -0
  641. package/Libraries/Share/Share.d.ts +80 -0
  642. package/Libraries/Share/Share.js +176 -0
  643. package/Libraries/Share/delegates/BaseShareDelegate.ts +21 -0
  644. package/Libraries/Share/delegates/ShareDelegate.ts +20 -0
  645. package/Libraries/StyleSheet/EdgeInsetsPropType.js +18 -0
  646. package/Libraries/StyleSheet/PlatformColorValueTypes.android.js +40 -0
  647. package/Libraries/StyleSheet/PlatformColorValueTypes.d.ts +18 -0
  648. package/Libraries/StyleSheet/PlatformColorValueTypes.ios.js +113 -0
  649. package/Libraries/StyleSheet/PlatformColorValueTypes.js.flow +22 -0
  650. package/Libraries/StyleSheet/PlatformColorValueTypesIOS.d.ts +25 -0
  651. package/Libraries/StyleSheet/PlatformColorValueTypesIOS.ios.js +29 -0
  652. package/Libraries/StyleSheet/PlatformColorValueTypesIOS.js +22 -0
  653. package/Libraries/StyleSheet/PointPropType.js +17 -0
  654. package/Libraries/StyleSheet/Rect.js +26 -0
  655. package/Libraries/StyleSheet/StyleSheet.d.ts +150 -0
  656. package/Libraries/StyleSheet/StyleSheet.js +356 -0
  657. package/Libraries/StyleSheet/StyleSheetTypes.d.ts +573 -0
  658. package/Libraries/StyleSheet/StyleSheetTypes.js +1004 -0
  659. package/Libraries/StyleSheet/__flowtests__/StyleSheet-flowtest.js +58 -0
  660. package/Libraries/StyleSheet/flattenStyle.js +46 -0
  661. package/Libraries/StyleSheet/normalizeColor.js +34 -0
  662. package/Libraries/StyleSheet/private/_StyleSheetTypesOverrides.js +15 -0
  663. package/Libraries/StyleSheet/private/_TransformStyle.js +69 -0
  664. package/Libraries/StyleSheet/processAspectRatio.js +63 -0
  665. package/Libraries/StyleSheet/processBackgroundImage.js +361 -0
  666. package/Libraries/StyleSheet/processBoxShadow.js +209 -0
  667. package/Libraries/StyleSheet/processColor.d.ts +16 -0
  668. package/Libraries/StyleSheet/processColor.js +59 -0
  669. package/Libraries/StyleSheet/processColorArray.js +35 -0
  670. package/Libraries/StyleSheet/processFilter.js +321 -0
  671. package/Libraries/StyleSheet/processFontVariant.js +30 -0
  672. package/Libraries/StyleSheet/processTransform.js +263 -0
  673. package/Libraries/StyleSheet/processTransformOrigin.js +136 -0
  674. package/Libraries/StyleSheet/setNormalizedColorAlpha.js +31 -0
  675. package/Libraries/StyleSheet/splitLayoutProps.js +72 -0
  676. package/Libraries/Text/BaseText/RCTBaseTextShadowView.h +29 -0
  677. package/Libraries/Text/BaseText/RCTBaseTextShadowView.mm +158 -0
  678. package/Libraries/Text/BaseText/RCTBaseTextViewManager.h +16 -0
  679. package/Libraries/Text/BaseText/RCTBaseTextViewManager.mm +60 -0
  680. package/Libraries/Text/RCTConvert+Text.h +23 -0
  681. package/Libraries/Text/RCTConvert+Text.mm +44 -0
  682. package/Libraries/Text/RCTTextAttributes.h +100 -0
  683. package/Libraries/Text/RCTTextAttributes.mm +354 -0
  684. package/Libraries/Text/RCTTextTransform.h +16 -0
  685. package/Libraries/Text/RawText/RCTRawTextShadowView.h +18 -0
  686. package/Libraries/Text/RawText/RCTRawTextShadowView.mm +34 -0
  687. package/Libraries/Text/RawText/RCTRawTextViewManager.h +16 -0
  688. package/Libraries/Text/RawText/RCTRawTextViewManager.mm +28 -0
  689. package/Libraries/Text/React-RCTText.podspec +37 -0
  690. package/Libraries/Text/Text/NSTextStorage+FontScaling.h +20 -0
  691. package/Libraries/Text/Text/NSTextStorage+FontScaling.m +122 -0
  692. package/Libraries/Text/Text/RCTDynamicTypeRamp.h +37 -0
  693. package/Libraries/Text/Text/RCTDynamicTypeRamp.mm +82 -0
  694. package/Libraries/Text/Text/RCTTextShadowView.h +28 -0
  695. package/Libraries/Text/Text/RCTTextShadowView.mm +466 -0
  696. package/Libraries/Text/Text/RCTTextView.h +29 -0
  697. package/Libraries/Text/Text/RCTTextView.mm +294 -0
  698. package/Libraries/Text/Text/RCTTextViewManager.h +14 -0
  699. package/Libraries/Text/Text/RCTTextViewManager.mm +93 -0
  700. package/Libraries/Text/Text.d.ts +219 -0
  701. package/Libraries/Text/Text.js +537 -0
  702. package/Libraries/Text/TextAncestor.js +23 -0
  703. package/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputView.h +16 -0
  704. package/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputView.mm +63 -0
  705. package/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputViewManager.h +16 -0
  706. package/Libraries/Text/TextInput/Multiline/RCTMultilineTextInputViewManager.mm +24 -0
  707. package/Libraries/Text/TextInput/Multiline/RCTUITextView.h +44 -0
  708. package/Libraries/Text/TextInput/Multiline/RCTUITextView.mm +338 -0
  709. package/Libraries/Text/TextInput/RCTBackedTextInputDelegate.h +46 -0
  710. package/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.h +36 -0
  711. package/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.mm +307 -0
  712. package/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h +57 -0
  713. package/Libraries/Text/TextInput/RCTBaseTextInputShadowView.h +25 -0
  714. package/Libraries/Text/TextInput/RCTBaseTextInputShadowView.mm +364 -0
  715. package/Libraries/Text/TextInput/RCTBaseTextInputView.h +63 -0
  716. package/Libraries/Text/TextInput/RCTBaseTextInputView.mm +817 -0
  717. package/Libraries/Text/TextInput/RCTBaseTextInputViewManager.h +12 -0
  718. package/Libraries/Text/TextInput/RCTBaseTextInputViewManager.mm +178 -0
  719. package/Libraries/Text/TextInput/RCTInputAccessoryShadowView.h +12 -0
  720. package/Libraries/Text/TextInput/RCTInputAccessoryShadowView.mm +20 -0
  721. package/Libraries/Text/TextInput/RCTInputAccessoryView.h +17 -0
  722. package/Libraries/Text/TextInput/RCTInputAccessoryView.mm +78 -0
  723. package/Libraries/Text/TextInput/RCTInputAccessoryViewContent.h +12 -0
  724. package/Libraries/Text/TextInput/RCTInputAccessoryViewContent.mm +74 -0
  725. package/Libraries/Text/TextInput/RCTInputAccessoryViewManager.h +12 -0
  726. package/Libraries/Text/TextInput/RCTInputAccessoryViewManager.mm +29 -0
  727. package/Libraries/Text/TextInput/RCTTextSelection.h +26 -0
  728. package/Libraries/Text/TextInput/RCTTextSelection.mm +36 -0
  729. package/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputView.h +16 -0
  730. package/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputView.mm +39 -0
  731. package/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputViewManager.h +16 -0
  732. package/Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputViewManager.mm +31 -0
  733. package/Libraries/Text/TextInput/Singleline/RCTUITextField.h +40 -0
  734. package/Libraries/Text/TextInput/Singleline/RCTUITextField.mm +255 -0
  735. package/Libraries/Text/TextNativeComponent.js +82 -0
  736. package/Libraries/Text/TextProps.js +268 -0
  737. package/Libraries/Text/VirtualText/RCTVirtualTextShadowView.h +12 -0
  738. package/Libraries/Text/VirtualText/RCTVirtualTextShadowView.mm +38 -0
  739. package/Libraries/Text/VirtualText/RCTVirtualTextView.h +23 -0
  740. package/Libraries/Text/VirtualText/RCTVirtualTextView.mm +12 -0
  741. package/Libraries/Text/VirtualText/RCTVirtualTextViewManager.h +12 -0
  742. package/Libraries/Text/VirtualText/RCTVirtualTextViewManager.mm +26 -0
  743. package/Libraries/TurboModule/RCTExport.d.ts +12 -0
  744. package/Libraries/TurboModule/RCTExport.js +38 -0
  745. package/Libraries/TurboModule/TurboModuleRegistry.d.ts +13 -0
  746. package/Libraries/TurboModule/TurboModuleRegistry.js +53 -0
  747. package/Libraries/TurboModule/samples/NativeSampleTurboModule.js +13 -0
  748. package/Libraries/TypeSafety/RCTConvertHelpers.h +83 -0
  749. package/Libraries/TypeSafety/RCTConvertHelpers.mm +51 -0
  750. package/Libraries/TypeSafety/RCTTypeSafety.podspec +39 -0
  751. package/Libraries/TypeSafety/RCTTypedModuleConstants.h +47 -0
  752. package/Libraries/TypeSafety/RCTTypedModuleConstants.mm +50 -0
  753. package/Libraries/Types/CodegenTypes.js +47 -0
  754. package/Libraries/Types/CoreEventTypes.d.ts +259 -0
  755. package/Libraries/Types/CoreEventTypes.js +291 -0
  756. package/Libraries/Types/ReactDevToolsTypes.js +58 -0
  757. package/Libraries/Types/RootTagTypes.js +11 -0
  758. package/Libraries/Types/UIManagerJSInterface.js +16 -0
  759. package/Libraries/UTFSequence.js +56 -0
  760. package/Libraries/Utilities/Appearance.d.ts +53 -0
  761. package/Libraries/Utilities/Appearance.js +133 -0
  762. package/Libraries/Utilities/BackHandler.android.js +95 -0
  763. package/Libraries/Utilities/BackHandler.d.ts +34 -0
  764. package/Libraries/Utilities/BackHandler.ios.js +34 -0
  765. package/Libraries/Utilities/BackHandler.js.flow +23 -0
  766. package/Libraries/Utilities/DebugEnvironment.js +16 -0
  767. package/Libraries/Utilities/DevLoadingView.js +64 -0
  768. package/Libraries/Utilities/DevSettings.d.ts +32 -0
  769. package/Libraries/Utilities/DevSettings.js +72 -0
  770. package/Libraries/Utilities/DeviceInfo.js +13 -0
  771. package/Libraries/Utilities/Dimensions.d.ts +79 -0
  772. package/Libraries/Utilities/Dimensions.js +123 -0
  773. package/Libraries/Utilities/FeatureDetection.js +31 -0
  774. package/Libraries/Utilities/GlobalPerformanceLogger.js +24 -0
  775. package/Libraries/Utilities/HMRClient.js +362 -0
  776. package/Libraries/Utilities/HMRClientProdShim.js +30 -0
  777. package/Libraries/Utilities/IPerformanceLogger.d.ts +48 -0
  778. package/Libraries/Utilities/IPerformanceLogger.js +49 -0
  779. package/Libraries/Utilities/NativeAppearance.js +13 -0
  780. package/Libraries/Utilities/NativeDevLoadingView.js +13 -0
  781. package/Libraries/Utilities/NativeDeviceInfo.js +13 -0
  782. package/Libraries/Utilities/NativePlatformConstantsAndroid.js +13 -0
  783. package/Libraries/Utilities/NativePlatformConstantsIOS.js +13 -0
  784. package/Libraries/Utilities/PerformanceLoggerContext.js +33 -0
  785. package/Libraries/Utilities/PixelRatio.d.ts +64 -0
  786. package/Libraries/Utilities/PixelRatio.js +127 -0
  787. package/Libraries/Utilities/Platform.android.js +87 -0
  788. package/Libraries/Utilities/Platform.d.ts +127 -0
  789. package/Libraries/Utilities/Platform.flow.js +91 -0
  790. package/Libraries/Utilities/Platform.ios.js +88 -0
  791. package/Libraries/Utilities/Platform.js.flow +13 -0
  792. package/Libraries/Utilities/PolyfillFunctions.js +56 -0
  793. package/Libraries/Utilities/RCTLog.js +56 -0
  794. package/Libraries/Utilities/ReactNativeTestTools.js +225 -0
  795. package/Libraries/Utilities/SceneTracker.js +42 -0
  796. package/Libraries/Utilities/__mocks__/BackHandler.js +45 -0
  797. package/Libraries/Utilities/__mocks__/GlobalPerformanceLogger.js +16 -0
  798. package/Libraries/Utilities/__mocks__/PixelRatio.js +25 -0
  799. package/Libraries/Utilities/binaryToBase64.js +31 -0
  800. package/Libraries/Utilities/codegenNativeCommands.js +31 -0
  801. package/Libraries/Utilities/codegenNativeComponent.js +73 -0
  802. package/Libraries/Utilities/createPerformanceLogger.js +290 -0
  803. package/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.js +90 -0
  804. package/Libraries/Utilities/defineLazyObjectProperty.js +66 -0
  805. package/Libraries/Utilities/differ/deepDiffer.js +101 -0
  806. package/Libraries/Utilities/differ/insetsDiffer.js +40 -0
  807. package/Libraries/Utilities/differ/matricesDiffer.js +51 -0
  808. package/Libraries/Utilities/differ/pointsDiffer.js +27 -0
  809. package/Libraries/Utilities/differ/sizesDiffer.js +26 -0
  810. package/Libraries/Utilities/dismissKeyboard.js +21 -0
  811. package/Libraries/Utilities/infoLog.js +20 -0
  812. package/Libraries/Utilities/logError.js +27 -0
  813. package/Libraries/Utilities/mapWithSeparator.js +28 -0
  814. package/Libraries/Utilities/stringifySafe.js +121 -0
  815. package/Libraries/Utilities/stringifyViewConfig.js +22 -0
  816. package/Libraries/Utilities/useColorScheme.js +25 -0
  817. package/Libraries/Utilities/useMergeRefs.js +59 -0
  818. package/Libraries/Utilities/useRefEffect.js +45 -0
  819. package/Libraries/Utilities/useWindowDimensions.js +47 -0
  820. package/Libraries/Utilities/warnOnce.js +32 -0
  821. package/Libraries/Vibration/NativeVibration.js +13 -0
  822. package/Libraries/Vibration/RCTVibration.h +12 -0
  823. package/Libraries/Vibration/RCTVibration.mm +54 -0
  824. package/Libraries/Vibration/RCTVibrationPlugins.h +40 -0
  825. package/Libraries/Vibration/RCTVibrationPlugins.mm +33 -0
  826. package/Libraries/Vibration/React-RCTVibration.podspec +56 -0
  827. package/Libraries/Vibration/Vibration.d.ts +43 -0
  828. package/Libraries/Vibration/Vibration.js +115 -0
  829. package/Libraries/Vibration/delegates/BaseVibrationDelegate.ts +11 -0
  830. package/Libraries/Vibration/delegates/VibrationDelegate.ts +11 -0
  831. package/Libraries/WebSocket/NativeWebSocketModule.js +13 -0
  832. package/Libraries/WebSocket/RCTReconnectingWebSocket.h +37 -0
  833. package/Libraries/WebSocket/RCTReconnectingWebSocket.m +109 -0
  834. package/Libraries/WebSocket/WebSocket.js +297 -0
  835. package/Libraries/WebSocket/WebSocketEvent.js +30 -0
  836. package/Libraries/WebSocket/WebSocketInterceptor.js +247 -0
  837. package/Libraries/WebSocket/__mocks__/event-target-shim.js +27 -0
  838. package/Libraries/Wrapper/Example/RCTWrapperExampleView.h +16 -0
  839. package/Libraries/Wrapper/Example/RCTWrapperExampleView.m +53 -0
  840. package/Libraries/Wrapper/Example/RCTWrapperExampleViewController.h +16 -0
  841. package/Libraries/Wrapper/Example/RCTWrapperExampleViewController.m +23 -0
  842. package/Libraries/Wrapper/Example/RCTWrapperReactRootViewController.h +20 -0
  843. package/Libraries/Wrapper/Example/RCTWrapperReactRootViewController.m +46 -0
  844. package/Libraries/Wrapper/Example/RCTWrapperReactRootViewManager.h +18 -0
  845. package/Libraries/Wrapper/Example/RCTWrapperReactRootViewManager.m +31 -0
  846. package/Libraries/Wrapper/RCTWrapper.h +68 -0
  847. package/Libraries/Wrapper/RCTWrapperShadowView.h +22 -0
  848. package/Libraries/Wrapper/RCTWrapperShadowView.m +134 -0
  849. package/Libraries/Wrapper/RCTWrapperView.h +36 -0
  850. package/Libraries/Wrapper/RCTWrapperView.m +95 -0
  851. package/Libraries/Wrapper/RCTWrapperViewControllerHostingView.h +25 -0
  852. package/Libraries/Wrapper/RCTWrapperViewControllerHostingView.m +133 -0
  853. package/Libraries/Wrapper/RCTWrapperViewManager.h +20 -0
  854. package/Libraries/Wrapper/RCTWrapperViewManager.m +27 -0
  855. package/Libraries/YellowBox/YellowBoxDeprecated.d.ts +19 -0
  856. package/Libraries/YellowBox/YellowBoxDeprecated.js +75 -0
  857. package/Libraries/__flowtests__/ReactNativeTypes-flowtest.js +32 -0
  858. package/Libraries/promiseRejectionTrackingOptions.js +72 -0
  859. package/Libraries/vendor/core/ErrorUtils.d.ts +15 -0
  860. package/Libraries/vendor/core/ErrorUtils.js +25 -0
  861. package/Libraries/vendor/emitter/EventEmitter.d.ts +164 -0
  862. package/Libraries/vendor/emitter/EventEmitter.js +158 -0
  863. package/Libraries/vendor/emitter/__flowtests__/EventEmitter-flowtest.js +81 -0
  864. package/delegates/DelegateError.ts +10 -0
  865. package/metro.config.js +4 -0
  866. package/package.json +1 -1
  867. package/react_native_openharmony.har +0 -0
  868. package/src/private/animated/NativeAnimatedHelper.js +440 -0
  869. package/src/private/animated/NativeAnimatedValidation.js +64 -0
  870. package/src/private/animated/useAnimatedPropsMemo.js +356 -0
  871. package/src/private/components/HScrollViewNativeComponents.js +30 -0
  872. package/src/private/components/SafeAreaView_INTERNAL_DO_NOT_USE.js +32 -0
  873. package/src/private/components/VScrollViewNativeComponents.js +25 -0
  874. package/src/private/debugging/FuseboxSessionObserver.js +42 -0
  875. package/src/private/debugging/ReactDevToolsSettingsManager.android.js +20 -0
  876. package/src/private/debugging/ReactDevToolsSettingsManager.ios.js +30 -0
  877. package/src/private/debugging/ReactDevToolsSettingsManager.js.flow +16 -0
  878. package/src/private/debugging/setUpFuseboxReactDevToolsDispatcher.js +114 -0
  879. package/src/private/devmenu/DevMenu.d.ts +20 -0
  880. package/src/private/devmenu/DevMenu.js +31 -0
  881. package/src/private/featureflags/ReactNativeFeatureFlags.js +369 -0
  882. package/src/private/featureflags/ReactNativeFeatureFlagsBase.js +109 -0
  883. package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +78 -0
  884. package/src/private/fusebox/specs/NativeReactDevToolsRuntimeSettingsModule.js +34 -0
  885. package/src/private/renderer/errorhandling/ErrorHandlers.js +126 -0
  886. package/src/private/setup/setUpDOM.js +36 -0
  887. package/src/private/setup/setUpIntersectionObserver.js +27 -0
  888. package/src/private/setup/setUpMutationObserver.js +31 -0
  889. package/src/private/setup/setUpPerformanceObserver.js +64 -0
  890. package/src/private/specs/components/ActivityIndicatorViewNativeComponent.js +53 -0
  891. package/src/private/specs/components/AndroidDrawerLayoutNativeComponent.js +124 -0
  892. package/src/private/specs/components/AndroidHorizontalScrollContentViewNativeComponent.js +27 -0
  893. package/src/private/specs/components/AndroidSwipeRefreshLayoutNativeComponent.js +74 -0
  894. package/src/private/specs/components/AndroidSwitchNativeComponent.js +62 -0
  895. package/src/private/specs/components/DebuggingOverlayNativeComponent.js +61 -0
  896. package/src/private/specs/components/ProgressBarAndroidNativeComponent.js +36 -0
  897. package/src/private/specs/components/PullToRefreshViewNativeComponent.js +71 -0
  898. package/src/private/specs/components/RCTInputAccessoryViewNativeComponent.js +26 -0
  899. package/src/private/specs/components/RCTModalHostViewNativeComponent.js +147 -0
  900. package/src/private/specs/components/RCTSafeAreaViewNativeComponent.js +25 -0
  901. package/src/private/specs/components/SwitchNativeComponent.js +61 -0
  902. package/src/private/specs/components/UnimplementedNativeViewNativeComponent.js +26 -0
  903. package/src/private/specs/modules/NativeAccessibilityInfo.js +42 -0
  904. package/src/private/specs/modules/NativeAccessibilityManager.js +70 -0
  905. package/src/private/specs/modules/NativeActionSheetManager.js +56 -0
  906. package/src/private/specs/modules/NativeAlertManager.js +35 -0
  907. package/src/private/specs/modules/NativeAnimatedModule.js +77 -0
  908. package/src/private/specs/modules/NativeAnimatedTurboModule.js +78 -0
  909. package/src/private/specs/modules/NativeAppState.js +33 -0
  910. package/src/private/specs/modules/NativeAppearance.js +30 -0
  911. package/src/private/specs/modules/NativeBlobModule.js +61 -0
  912. package/src/private/specs/modules/NativeBugReporting.js +20 -0
  913. package/src/private/specs/modules/NativeClipboard.js +21 -0
  914. package/src/private/specs/modules/NativeDevLoadingView.js +24 -0
  915. package/src/private/specs/modules/NativeDevMenu.js +23 -0
  916. package/src/private/specs/modules/NativeDevSettings.js +34 -0
  917. package/src/private/specs/modules/NativeDeviceEventManager.js +19 -0
  918. package/src/private/specs/modules/NativeDeviceInfo.js +58 -0
  919. package/src/private/specs/modules/NativeDialogManagerAndroid.js +48 -0
  920. package/src/private/specs/modules/NativeExceptionsManager.js +91 -0
  921. package/src/private/specs/modules/NativeFileReaderModule.js +22 -0
  922. package/src/private/specs/modules/NativeFrameRateLogger.js +22 -0
  923. package/src/private/specs/modules/NativeHeadlessJsTaskSupport.js +20 -0
  924. package/src/private/specs/modules/NativeI18nManager.js +28 -0
  925. package/src/private/specs/modules/NativeImageEditor.js +52 -0
  926. package/src/private/specs/modules/NativeImageLoaderAndroid.js +30 -0
  927. package/src/private/specs/modules/NativeImageLoaderIOS.js +37 -0
  928. package/src/private/specs/modules/NativeImageStoreAndroid.js +26 -0
  929. package/src/private/specs/modules/NativeImageStoreIOS.js +33 -0
  930. package/src/private/specs/modules/NativeIntentAndroid.js +30 -0
  931. package/src/private/specs/modules/NativeJSCHeapCapture.js +19 -0
  932. package/src/private/specs/modules/NativeJSCSamplingProfiler.js +19 -0
  933. package/src/private/specs/modules/NativeKeyboardObserver.js +20 -0
  934. package/src/private/specs/modules/NativeLinkingManager.js +27 -0
  935. package/src/private/specs/modules/NativeLogBox.js +20 -0
  936. package/src/private/specs/modules/NativeModalManager.js +21 -0
  937. package/src/private/specs/modules/NativeNetworkingAndroid.js +37 -0
  938. package/src/private/specs/modules/NativeNetworkingIOS.js +37 -0
  939. package/src/private/specs/modules/NativePermissionsAndroid.js +77 -0
  940. package/src/private/specs/modules/NativePlatformConstantsAndroid.js +44 -0
  941. package/src/private/specs/modules/NativePlatformConstantsIOS.js +37 -0
  942. package/src/private/specs/modules/NativePushNotificationManagerIOS.js +103 -0
  943. package/src/private/specs/modules/NativeReactDevToolsSettingsManager.js +22 -0
  944. package/src/private/specs/modules/NativeRedBox.js +20 -0
  945. package/src/private/specs/modules/NativeSampleTurboModule.js +66 -0
  946. package/src/private/specs/modules/NativeSegmentFetcher.js +28 -0
  947. package/src/private/specs/modules/NativeSettingsManager.js +25 -0
  948. package/src/private/specs/modules/NativeShareModule.js +23 -0
  949. package/src/private/specs/modules/NativeSoundManager.js +22 -0
  950. package/src/private/specs/modules/NativeSourceCode.js +36 -0
  951. package/src/private/specs/modules/NativeStatusBarManagerAndroid.js +68 -0
  952. package/src/private/specs/modules/NativeStatusBarManagerIOS.js +89 -0
  953. package/src/private/specs/modules/NativeTiming.js +26 -0
  954. package/src/private/specs/modules/NativeToastAndroid.js +38 -0
  955. package/src/private/specs/modules/NativeUIManager.js +111 -0
  956. package/src/private/specs/modules/NativeVibration.js +24 -0
  957. package/src/private/specs/modules/NativeWebSocketModule.js +34 -0
  958. package/src/private/styles/composeStyles.js +27 -0
  959. package/src/private/webapis/dom/geometry/DOMRect.js +82 -0
  960. package/src/private/webapis/dom/geometry/DOMRectReadOnly.js +188 -0
  961. package/src/private/webapis/dom/nodes/ReactNativeElement.js +188 -0
  962. package/src/private/webapis/dom/nodes/ReadOnlyCharacterData.js +71 -0
  963. package/src/private/webapis/dom/nodes/ReadOnlyElement.js +247 -0
  964. package/src/private/webapis/dom/nodes/ReadOnlyNode.js +359 -0
  965. package/src/private/webapis/dom/nodes/ReadOnlyText.js +30 -0
  966. package/src/private/webapis/dom/nodes/specs/NativeDOM.js +468 -0
  967. package/src/private/webapis/dom/nodes/specs/__mocks__/NativeDOMMock.js +413 -0
  968. package/src/private/webapis/dom/nodes/utilities/Traversal.js +54 -0
  969. package/src/private/webapis/dom/oldstylecollections/ArrayLikeUtils.js +46 -0
  970. package/src/private/webapis/dom/oldstylecollections/DOMRectList.js +76 -0
  971. package/src/private/webapis/dom/oldstylecollections/DOMRectList.js.flow +27 -0
  972. package/src/private/webapis/dom/oldstylecollections/HTMLCollection.js +82 -0
  973. package/src/private/webapis/dom/oldstylecollections/HTMLCollection.js.flow +27 -0
  974. package/src/private/webapis/dom/oldstylecollections/NodeList.js +104 -0
  975. package/src/private/webapis/dom/oldstylecollections/NodeList.js.flow +31 -0
  976. package/src/private/webapis/idlecallbacks/specs/NativeIdleCallbacks.js +34 -0
  977. package/src/private/webapis/intersectionobserver/IntersectionObserver.js +345 -0
  978. package/src/private/webapis/intersectionobserver/IntersectionObserverEntry.js +167 -0
  979. package/src/private/webapis/intersectionobserver/IntersectionObserverManager.js +277 -0
  980. package/src/private/webapis/intersectionobserver/specs/NativeIntersectionObserver.js +42 -0
  981. package/src/private/webapis/intersectionobserver/specs/__mocks__/NativeIntersectionObserver.js +181 -0
  982. package/src/private/webapis/microtasks/specs/NativeMicrotasks.js +21 -0
  983. package/src/private/webapis/mutationobserver/MutationObserver.js +186 -0
  984. package/src/private/webapis/mutationobserver/MutationObserverManager.js +227 -0
  985. package/src/private/webapis/mutationobserver/MutationRecord.js +82 -0
  986. package/src/private/webapis/mutationobserver/specs/NativeMutationObserver.js +58 -0
  987. package/src/private/webapis/mutationobserver/specs/__mocks__/NativeMutationObserver.js +327 -0
  988. package/src/private/webapis/performance/EventTiming.js +145 -0
  989. package/src/private/webapis/performance/LongTasks.js +39 -0
  990. package/src/private/webapis/performance/MemoryInfo.js +54 -0
  991. package/src/private/webapis/performance/Performance.js +299 -0
  992. package/src/private/webapis/performance/PerformanceEntry.js +68 -0
  993. package/src/private/webapis/performance/PerformanceObserver.js +232 -0
  994. package/src/private/webapis/performance/RawPerformanceEntry.js +105 -0
  995. package/src/private/webapis/performance/ReactNativeStartupTiming.js +91 -0
  996. package/src/private/webapis/performance/UserTiming.js +72 -0
  997. package/src/private/webapis/performance/Utilities.js +18 -0
  998. package/src/private/webapis/performance/specs/NativePerformance.js +103 -0
  999. package/src/private/webapis/performance/specs/__mocks__/NativePerformanceMock.js +267 -0
  1000. package/types/index.d.ts +215 -0
  1001. package/types/modules/BatchedBridge.d.ts +32 -0
  1002. package/types/modules/Codegen.d.ts +80 -0
  1003. package/types/modules/Devtools.d.ts +32 -0
  1004. package/types/modules/LaunchScreen.d.ts +18 -0
  1005. package/types/modules/globals.d.ts +599 -0
  1006. package/types/private/TimerMixin.d.ts +19 -0
  1007. package/types/private/Utilities.d.ts +10 -0
  1008. package/types/public/DeprecatedPropertiesAlias.d.ts +185 -0
  1009. package/types/public/Insets.d.ts +15 -0
  1010. package/types/public/ReactNativeRenderer.d.ts +144 -0
  1011. package/types/public/ReactNativeTypes.d.ts +139 -0
  1012. package/types/tsconfig.json +15 -0
  1013. package/types/tslint.json +24 -0
@@ -0,0 +1,322 @@
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 {ImageStyleProp} from '../StyleSheet/StyleSheet';
12
+ import type {RootTag} from '../Types/RootTagTypes';
13
+ import type {AbstractImageAndroid, ImageAndroid} from './ImageTypes.flow';
14
+
15
+ import flattenStyle from '../StyleSheet/flattenStyle';
16
+ import StyleSheet from '../StyleSheet/StyleSheet';
17
+ import TextAncestor from '../Text/TextAncestor';
18
+ import ImageAnalyticsTagContext from './ImageAnalyticsTagContext';
19
+ import {
20
+ unstable_getImageComponentDecorator,
21
+ useWrapRefWithImageAttachedCallbacks,
22
+ } from './ImageInjection';
23
+ import {getImageSourcesFromImageProps} from './ImageSourceUtils';
24
+ import {convertObjectFitToResizeMode} from './ImageUtils';
25
+ import ImageViewNativeComponent from './ImageViewNativeComponent';
26
+ import NativeImageLoaderAndroid, {
27
+ type ImageSize,
28
+ } from './NativeImageLoaderAndroid';
29
+ import resolveAssetSource from './resolveAssetSource';
30
+ import TextInlineImageNativeComponent from './TextInlineImageNativeComponent';
31
+ import * as React from 'react';
32
+
33
+ let _requestId = 1;
34
+ function generateRequestId() {
35
+ return _requestId++;
36
+ }
37
+
38
+ /**
39
+ * Retrieve the width and height (in pixels) of an image prior to displaying it
40
+ *
41
+ * See https://reactnative.dev/docs/image#getsize
42
+ */
43
+ function getSize(
44
+ url: string,
45
+ success?: (width: number, height: number) => void,
46
+ failure?: (error: mixed) => void,
47
+ ): void | Promise<ImageSize> {
48
+ const promise = NativeImageLoaderAndroid.getSize(url);
49
+ if (typeof success !== 'function') {
50
+ return promise;
51
+ }
52
+ promise
53
+ .then(sizes => success(sizes.width, sizes.height))
54
+ .catch(
55
+ failure ||
56
+ function () {
57
+ console.warn('Failed to get size for image: ' + url);
58
+ },
59
+ );
60
+ }
61
+
62
+ /**
63
+ * Retrieve the width and height (in pixels) of an image prior to displaying it
64
+ * with the ability to provide the headers for the request
65
+ *
66
+ * See https://reactnative.dev/docs/image#getsizewithheaders
67
+ */
68
+ function getSizeWithHeaders(
69
+ url: string,
70
+ headers: {[string]: string, ...},
71
+ success?: (width: number, height: number) => void,
72
+ failure?: (error: mixed) => void,
73
+ ): void | Promise<ImageSize> {
74
+ const promise = NativeImageLoaderAndroid.getSizeWithHeaders(url, headers);
75
+ if (typeof success !== 'function') {
76
+ return promise;
77
+ }
78
+ promise
79
+ .then(sizes => success(sizes.width, sizes.height))
80
+ .catch(
81
+ failure ||
82
+ function () {
83
+ console.warn('Failed to get size for image: ' + url);
84
+ },
85
+ );
86
+ }
87
+
88
+ function prefetchWithMetadata(
89
+ url: string,
90
+ queryRootName: string,
91
+ rootTag?: ?RootTag,
92
+ callback: ?(requestId: number) => void,
93
+ ): Promise<boolean> {
94
+ // TODO: T79192300 Log queryRootName and rootTag
95
+ return prefetch(url, callback);
96
+ }
97
+
98
+ function prefetch(
99
+ url: string,
100
+ callback: ?(requestId: number) => void,
101
+ ): Promise<boolean> {
102
+ const requestId = generateRequestId();
103
+ callback && callback(requestId);
104
+ return NativeImageLoaderAndroid.prefetchImage(url, requestId);
105
+ }
106
+
107
+ function abortPrefetch(requestId: number): void {
108
+ NativeImageLoaderAndroid.abortRequest(requestId);
109
+ }
110
+
111
+ /**
112
+ * Perform cache interrogation.
113
+ *
114
+ * See https://reactnative.dev/docs/image#querycache
115
+ */
116
+ async function queryCache(
117
+ urls: Array<string>,
118
+ ): Promise<{[string]: 'memory' | 'disk' | 'disk/memory', ...}> {
119
+ return NativeImageLoaderAndroid.queryCache(urls);
120
+ }
121
+
122
+ /**
123
+ * A React component for displaying different types of images,
124
+ * including network images, static resources, temporary local images, and
125
+ * images from local disk, such as the camera roll.
126
+ *
127
+ * See https://reactnative.dev/docs/image
128
+ */
129
+ let BaseImage: AbstractImageAndroid = React.forwardRef(
130
+ (props, forwardedRef) => {
131
+ let source = getImageSourcesFromImageProps(props) || {
132
+ uri: undefined,
133
+ width: undefined,
134
+ height: undefined,
135
+ };
136
+ const loadingIndicatorSource = resolveAssetSource(
137
+ props.loadingIndicatorSource,
138
+ );
139
+
140
+ if (props.children) {
141
+ throw new Error(
142
+ 'The <Image> component cannot contain children. If you want to render content on top of the image, consider using the <ImageBackground> component or absolute positioning.',
143
+ );
144
+ }
145
+
146
+ if (props.defaultSource != null && props.loadingIndicatorSource != null) {
147
+ throw new Error(
148
+ 'The <Image> component cannot have defaultSource and loadingIndicatorSource at the same time. Please use either defaultSource or loadingIndicatorSource.',
149
+ );
150
+ }
151
+
152
+ let style: ImageStyleProp;
153
+ let sources;
154
+ if (Array.isArray(source)) {
155
+ style = [styles.base, props.style];
156
+ sources = source;
157
+ } else {
158
+ const {uri} = source;
159
+ if (uri === '') {
160
+ console.warn('source.uri should not be an empty string');
161
+ }
162
+ const width = source.width ?? props.width;
163
+ const height = source.height ?? props.height;
164
+ style = [{width, height}, styles.base, props.style];
165
+ sources = [source];
166
+ }
167
+
168
+ const {onLoadStart, onLoad, onLoadEnd, onError} = props;
169
+ const nativeProps = {
170
+ ...props,
171
+ style,
172
+ shouldNotifyLoadEvents: !!(onLoadStart || onLoad || onLoadEnd || onError),
173
+ // Both iOS and C++ sides expect to have "source" prop, whereas on Android it's "src"
174
+ // (for historical reasons). So in the latter case we populate both "src" and "source",
175
+ // in order to have a better alignment between platforms in the future.
176
+ src: sources,
177
+ source: sources,
178
+ /* $FlowFixMe(>=0.78.0 site=react_native_android_fb) This issue was found
179
+ * when making Flow check .android.js files. */
180
+ headers: (source?.[0]?.headers || source?.headers: ?{[string]: string}),
181
+ loadingIndicatorSrc: loadingIndicatorSource
182
+ ? loadingIndicatorSource.uri
183
+ : null,
184
+ accessibilityLabel:
185
+ props['aria-label'] ?? props.accessibilityLabel ?? props.alt,
186
+ accessibilityLabelledBy:
187
+ props?.['aria-labelledby'] ?? props?.accessibilityLabelledBy,
188
+ accessible: props.alt !== undefined ? true : props.accessible,
189
+ accessibilityState: {
190
+ busy: props['aria-busy'] ?? props.accessibilityState?.busy,
191
+ checked: props['aria-checked'] ?? props.accessibilityState?.checked,
192
+ disabled: props['aria-disabled'] ?? props.accessibilityState?.disabled,
193
+ expanded: props['aria-expanded'] ?? props.accessibilityState?.expanded,
194
+ selected: props['aria-selected'] ?? props.accessibilityState?.selected,
195
+ },
196
+ };
197
+
198
+ const flattenedStyle = flattenStyle<ImageStyleProp>(style);
199
+ const objectFit = convertObjectFitToResizeMode(flattenedStyle?.objectFit);
200
+ const resizeMode =
201
+ objectFit || props.resizeMode || flattenedStyle?.resizeMode || 'cover';
202
+
203
+ const actualRef = useWrapRefWithImageAttachedCallbacks(forwardedRef);
204
+
205
+ return (
206
+ <ImageAnalyticsTagContext.Consumer>
207
+ {analyticTag => {
208
+ const nativePropsWithAnalytics =
209
+ analyticTag !== null
210
+ ? {
211
+ ...nativeProps,
212
+ internal_analyticTag: analyticTag,
213
+ }
214
+ : nativeProps;
215
+ return (
216
+ <TextAncestor.Consumer>
217
+ {hasTextAncestor => {
218
+ if (hasTextAncestor) {
219
+ return (
220
+ <TextInlineImageNativeComponent
221
+ // $FlowFixMe[incompatible-type]
222
+ style={style}
223
+ resizeMode={resizeMode}
224
+ headers={nativeProps.headers}
225
+ src={sources}
226
+ ref={actualRef}
227
+ />
228
+ );
229
+ }
230
+
231
+ return (
232
+ <ImageViewNativeComponent
233
+ {...nativePropsWithAnalytics}
234
+ resizeMode={resizeMode}
235
+ ref={actualRef}
236
+ />
237
+ );
238
+ }}
239
+ </TextAncestor.Consumer>
240
+ );
241
+ }}
242
+ </ImageAnalyticsTagContext.Consumer>
243
+ );
244
+ },
245
+ );
246
+
247
+ const imageComponentDecorator = unstable_getImageComponentDecorator();
248
+ if (imageComponentDecorator != null) {
249
+ BaseImage = imageComponentDecorator(BaseImage);
250
+ }
251
+
252
+ // $FlowExpectedError[incompatible-type] Eventually we need to move these functions from statics of the component to exports in the module.
253
+ const Image: ImageAndroid = BaseImage;
254
+
255
+ Image.displayName = 'Image';
256
+
257
+ /**
258
+ * Retrieve the width and height (in pixels) of an image prior to displaying it
259
+ *
260
+ * See https://reactnative.dev/docs/image#getsize
261
+ */
262
+ // $FlowFixMe[incompatible-use] This property isn't writable but we're actually defining it here for the first time.
263
+ Image.getSize = getSize;
264
+
265
+ /**
266
+ * Retrieve the width and height (in pixels) of an image prior to displaying it
267
+ * with the ability to provide the headers for the request
268
+ *
269
+ * See https://reactnative.dev/docs/image#getsizewithheaders
270
+ */
271
+ // $FlowFixMe[incompatible-use] This property isn't writable but we're actually defining it here for the first time.
272
+ Image.getSizeWithHeaders = getSizeWithHeaders;
273
+
274
+ /**
275
+ * Prefetches a remote image for later use by downloading it to the disk
276
+ * cache
277
+ *
278
+ * See https://reactnative.dev/docs/image#prefetch
279
+ */
280
+ // $FlowFixMe[incompatible-use] This property isn't writable but we're actually defining it here for the first time.
281
+ Image.prefetch = prefetch;
282
+
283
+ /**
284
+ * Prefetches a remote image for later use by downloading it to the disk
285
+ * cache, and adds metadata for queryRootName and rootTag.
286
+ *
287
+ * See https://reactnative.dev/docs/image#prefetch
288
+ */
289
+ // $FlowFixMe[incompatible-use] This property isn't writable but we're actually defining it here for the first time.
290
+ Image.prefetchWithMetadata = prefetchWithMetadata;
291
+
292
+ /**
293
+ * Abort prefetch request.
294
+ *
295
+ * See https://reactnative.dev/docs/image#abortprefetch
296
+ */
297
+ // $FlowFixMe[incompatible-use] This property isn't writable but we're actually defining it here for the first time.
298
+ Image.abortPrefetch = abortPrefetch;
299
+
300
+ /**
301
+ * Perform cache interrogation.
302
+ *
303
+ * See https://reactnative.dev/docs/image#querycache
304
+ */
305
+ // $FlowFixMe[incompatible-use] This property isn't writable but we're actually defining it here for the first time.
306
+ Image.queryCache = queryCache;
307
+
308
+ /**
309
+ * Resolves an asset reference into an object.
310
+ *
311
+ * See https://reactnative.dev/docs/image#resolveassetsource
312
+ */
313
+ // $FlowFixMe[incompatible-use] This property isn't writable but we're actually defining it here for the first time.
314
+ Image.resolveAssetSource = resolveAssetSource;
315
+
316
+ const styles = StyleSheet.create({
317
+ base: {
318
+ overflow: 'hidden',
319
+ },
320
+ });
321
+
322
+ module.exports = Image;
@@ -0,0 +1,373 @@
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
+ * @format
8
+ */
9
+
10
+ import * as React from 'react';
11
+ import {Constructor} from '../../types/private/Utilities';
12
+ import {AccessibilityProps} from '../Components/View/ViewAccessibility';
13
+ import {Insets} from '../../types/public/Insets';
14
+ import {NativeMethods} from '../../types/public/ReactNativeTypes';
15
+ import {ColorValue, StyleProp} from '../StyleSheet/StyleSheet';
16
+ import {ImageStyle, ViewStyle} from '../StyleSheet/StyleSheetTypes';
17
+ import {LayoutChangeEvent, NativeSyntheticEvent} from '../Types/CoreEventTypes';
18
+ import {ImageResizeMode} from './ImageResizeMode';
19
+ import {ImageRequireSource, ImageURISource} from './ImageSource';
20
+
21
+ /**
22
+ * @see ImagePropsIOS.onProgress
23
+ */
24
+ export interface ImageProgressEventDataIOS {
25
+ loaded: number;
26
+ total: number;
27
+ }
28
+
29
+ export interface ImagePropsIOS {
30
+ /**
31
+ * blurRadius: the blur radius of the blur filter added to the image
32
+ * @platform ios
33
+ */
34
+ blurRadius?: number | undefined;
35
+
36
+ /**
37
+ * When the image is resized, the corners of the size specified by capInsets will stay a fixed size,
38
+ * but the center content and borders of the image will be stretched.
39
+ * This is useful for creating resizable rounded buttons, shadows, and other resizable assets.
40
+ * More info on Apple documentation
41
+ */
42
+ capInsets?: Insets | undefined;
43
+
44
+ /**
45
+ * Invoked on download progress with {nativeEvent: {loaded, total}}
46
+ */
47
+ onProgress?:
48
+ | ((event: NativeSyntheticEvent<ImageProgressEventDataIOS>) => void)
49
+ | undefined;
50
+
51
+ /**
52
+ * Invoked when a partial load of the image is complete. The definition of
53
+ * what constitutes a "partial load" is loader specific though this is meant
54
+ * for progressive JPEG loads.
55
+ * @platform ios
56
+ */
57
+ onPartialLoad?: (() => void) | undefined;
58
+ }
59
+
60
+ interface ImagePropsAndroid {
61
+ /**
62
+ * The mechanism that should be used to resize the image when the image's dimensions
63
+ * differ from the image view's dimensions. Defaults to `auto`.
64
+ *
65
+ * - `auto`: Use heuristics to pick between `resize` and `scale`.
66
+ *
67
+ * - `resize`: A software operation which changes the encoded image in memory before it
68
+ * gets decoded. This should be used instead of `scale` when the image is much larger
69
+ * than the view.
70
+ *
71
+ * - `scale`: The image gets drawn downscaled or upscaled. Compared to `resize`, `scale` is
72
+ * faster (usually hardware accelerated) and produces higher quality images. This
73
+ * should be used if the image is smaller than the view. It should also be used if the
74
+ * image is slightly bigger than the view.
75
+ *
76
+ * - `none`: No sampling is performed and the image is displayed in its full resolution. This
77
+ * should only be used in rare circumstances because it is considered unsafe as Android will
78
+ * throw a runtime exception when trying to render images that consume too much memory.
79
+ *
80
+ * More details about `resize` and `scale` can be found at http://frescolib.org/docs/resizing-rotating.html.
81
+ *
82
+ * @platform android
83
+ */
84
+ resizeMethod?: 'auto' | 'resize' | 'scale' | 'none' | undefined;
85
+
86
+ /**
87
+ * Duration of fade in animation in ms. Defaults to 300
88
+ *
89
+ * @platform android
90
+ */
91
+ fadeDuration?: number | undefined;
92
+ }
93
+
94
+ /**
95
+ * @see https://reactnative.dev/docs/image#source
96
+ */
97
+ export type ImageSourcePropType =
98
+ | ImageURISource
99
+ | ImageURISource[]
100
+ | ImageRequireSource;
101
+
102
+ export interface ImageLoadEventData {
103
+ source: {
104
+ height: number;
105
+ width: number;
106
+ uri: string;
107
+ };
108
+ }
109
+
110
+ export interface ImageErrorEventData {
111
+ error: any;
112
+ }
113
+
114
+ /**
115
+ * @see https://reactnative.dev/docs/image#resolveassetsource
116
+ */
117
+ export interface ImageResolvedAssetSource {
118
+ height: number;
119
+ width: number;
120
+ scale: number;
121
+ uri: string;
122
+ }
123
+
124
+ /**
125
+ * @see https://reactnative.dev/docs/image
126
+ */
127
+ export interface ImagePropsBase
128
+ extends ImagePropsIOS,
129
+ ImagePropsAndroid,
130
+ AccessibilityProps {
131
+ /**
132
+ * Used to reference react managed images from native code.
133
+ */
134
+ id?: string | undefined;
135
+
136
+ /**
137
+ * onLayout function
138
+ *
139
+ * Invoked on mount and layout changes with
140
+ *
141
+ * {nativeEvent: { layout: {x, y, width, height} }}.
142
+ */
143
+ onLayout?: ((event: LayoutChangeEvent) => void) | undefined;
144
+
145
+ /**
146
+ * Invoked on load error with {nativeEvent: {error}}
147
+ */
148
+ onError?:
149
+ | ((error: NativeSyntheticEvent<ImageErrorEventData>) => void)
150
+ | undefined;
151
+
152
+ /**
153
+ * Invoked when load completes successfully
154
+ * { source: { uri, height, width } }.
155
+ */
156
+ onLoad?:
157
+ | ((event: NativeSyntheticEvent<ImageLoadEventData>) => void)
158
+ | undefined;
159
+
160
+ /**
161
+ * Invoked when load either succeeds or fails
162
+ */
163
+ onLoadEnd?: (() => void) | undefined;
164
+
165
+ /**
166
+ * Invoked on load start
167
+ */
168
+ onLoadStart?: (() => void) | undefined;
169
+
170
+ progressiveRenderingEnabled?: boolean | undefined;
171
+
172
+ borderRadius?: number | undefined;
173
+
174
+ borderTopLeftRadius?: number | undefined;
175
+
176
+ borderTopRightRadius?: number | undefined;
177
+
178
+ borderBottomLeftRadius?: number | undefined;
179
+
180
+ borderBottomRightRadius?: number | undefined;
181
+
182
+ /**
183
+ * Determines how to resize the image when the frame doesn't match the raw
184
+ * image dimensions.
185
+ *
186
+ * 'cover': Scale the image uniformly (maintain the image's aspect ratio)
187
+ * so that both dimensions (width and height) of the image will be equal
188
+ * to or larger than the corresponding dimension of the view (minus padding).
189
+ *
190
+ * 'contain': Scale the image uniformly (maintain the image's aspect ratio)
191
+ * so that both dimensions (width and height) of the image will be equal to
192
+ * or less than the corresponding dimension of the view (minus padding).
193
+ *
194
+ * 'stretch': Scale width and height independently, This may change the
195
+ * aspect ratio of the src.
196
+ *
197
+ * 'repeat': Repeat the image to cover the frame of the view.
198
+ * The image will keep it's size and aspect ratio. (iOS only)
199
+ *
200
+ * 'center': Scale the image down so that it is completely visible,
201
+ * if bigger than the area of the view.
202
+ * The image will not be scaled up.
203
+ *
204
+ * 'none': Do not resize the image. The image will be displayed at its intrinsic size.
205
+ */
206
+ resizeMode?: ImageResizeMode | undefined;
207
+
208
+ /**
209
+ * The image source (either a remote URL or a local file resource).
210
+ *
211
+ * This prop can also contain several remote URLs, specified together with their width and height and potentially with scale/other URI arguments.
212
+ * The native side will then choose the best uri to display based on the measured size of the image container.
213
+ * A cache property can be added to control how networked request interacts with the local cache.
214
+ *
215
+ * The currently supported formats are png, jpg, jpeg, bmp, gif, webp (Android only), psd (iOS only).
216
+ */
217
+ source?: ImageSourcePropType | undefined;
218
+
219
+ /**
220
+ * A string representing the resource identifier for the image. Similar to
221
+ * src from HTML.
222
+ *
223
+ * See https://reactnative.dev/docs/image#src
224
+ */
225
+ src?: string | undefined;
226
+
227
+ /**
228
+ * Similar to srcset from HTML.
229
+ *
230
+ * See https://reactnative.dev/docs/image#srcset
231
+ */
232
+ srcSet?: string | undefined;
233
+
234
+ /**
235
+ * similarly to `source`, this property represents the resource used to render
236
+ * the loading indicator for the image, displayed until image is ready to be
237
+ * displayed, typically after when it got downloaded from network.
238
+ */
239
+ loadingIndicatorSource?: ImageURISource | undefined;
240
+
241
+ /**
242
+ * A unique identifier for this element to be used in UI Automation testing scripts.
243
+ */
244
+ testID?: string | undefined;
245
+
246
+ /**
247
+ * Used to reference react managed images from native code.
248
+ */
249
+ nativeID?: string | undefined;
250
+
251
+ /**
252
+ * A static image to display while downloading the final image off the network.
253
+ */
254
+ defaultSource?: ImageURISource | ImageRequireSource | undefined;
255
+
256
+ /**
257
+ * The text that's read by the screen reader when the user interacts with
258
+ * the image.
259
+ *
260
+ * See https://reactnative.dev/docs/image#alt
261
+ */
262
+ alt?: string | undefined;
263
+
264
+ /**
265
+ * Height of the image component.
266
+ *
267
+ * See https://reactnative.dev/docs/image#height
268
+ */
269
+ height?: number | undefined;
270
+
271
+ /**
272
+ * Width of the image component.
273
+ *
274
+ * See https://reactnative.dev/docs/image#width
275
+ */
276
+ width?: number | undefined;
277
+
278
+ /**
279
+ * Adds the CORS related header to the request.
280
+ * Similar to crossorigin from HTML.
281
+ *
282
+ * See https://reactnative.dev/docs/image#crossorigin
283
+ */
284
+ crossOrigin?: 'anonymous' | 'use-credentials' | undefined;
285
+
286
+ /**
287
+ * Changes the color of all the non-transparent pixels to the tintColor.
288
+ *
289
+ * See https://reactnative.dev/docs/image#tintcolor
290
+ */
291
+ tintColor?: ColorValue | undefined;
292
+
293
+ /**
294
+ * A string indicating which referrer to use when fetching the resource.
295
+ * Similar to referrerpolicy from HTML.
296
+ *
297
+ * See https://reactnative.dev/docs/image#referrerpolicy
298
+ */
299
+ referrerPolicy?:
300
+ | 'no-referrer'
301
+ | 'no-referrer-when-downgrade'
302
+ | 'origin'
303
+ | 'origin-when-cross-origin'
304
+ | 'same-origin'
305
+ | 'strict-origin'
306
+ | 'strict-origin-when-cross-origin'
307
+ | 'unsafe-url'
308
+ | undefined;
309
+ }
310
+
311
+ export interface ImageProps extends ImagePropsBase {
312
+ /**
313
+ *
314
+ * Style
315
+ */
316
+ style?: StyleProp<ImageStyle> | undefined;
317
+ }
318
+
319
+ export interface ImageSize {
320
+ width: number;
321
+ height: number;
322
+ }
323
+
324
+ declare class ImageComponent extends React.Component<ImageProps> {}
325
+ declare const ImageBase: Constructor<NativeMethods> & typeof ImageComponent;
326
+ export class Image extends ImageBase {
327
+ static getSize(uri: string): Promise<ImageSize>;
328
+ static getSize(
329
+ uri: string,
330
+ success: (width: number, height: number) => void,
331
+ failure?: (error: any) => void,
332
+ ): void;
333
+
334
+ static getSizeWithHeaders(
335
+ uri: string,
336
+ headers: {[index: string]: string},
337
+ ): Promise<ImageSize>;
338
+ static getSizeWithHeaders(
339
+ uri: string,
340
+ headers: {[index: string]: string},
341
+ success: (width: number, height: number) => void,
342
+ failure?: (error: any) => void,
343
+ ): void;
344
+ static prefetch(url: string): Promise<boolean>;
345
+ static prefetchWithMetadata(
346
+ url: string,
347
+ queryRootName: string,
348
+ rootTag?: number,
349
+ ): Promise<boolean>;
350
+ static abortPrefetch?(requestId: number): void;
351
+ static queryCache?(
352
+ urls: string[],
353
+ ): Promise<{[url: string]: 'memory' | 'disk' | 'disk/memory'}>;
354
+
355
+ /**
356
+ * @see https://reactnative.dev/docs/image#resolveassetsource
357
+ */
358
+ static resolveAssetSource(
359
+ source: ImageSourcePropType,
360
+ ): ImageResolvedAssetSource;
361
+ }
362
+
363
+ export interface ImageBackgroundProps extends ImagePropsBase {
364
+ children?: React.ReactNode | undefined;
365
+ imageStyle?: StyleProp<ImageStyle> | undefined;
366
+ style?: StyleProp<ViewStyle> | undefined;
367
+ imageRef?(image: Image): void;
368
+ }
369
+
370
+ declare class ImageBackgroundComponent extends React.Component<ImageBackgroundProps> {}
371
+ declare const ImageBackgroundBase: Constructor<NativeMethods> &
372
+ typeof ImageBackgroundComponent;
373
+ export class ImageBackground extends ImageBackgroundBase {}