react-native-tvos 0.78.0-0rc3 → 0.79.0-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1287) hide show
  1. package/Libraries/ActionSheetIOS/ActionSheetIOS.js +39 -18
  2. package/Libraries/ActionSheetIOS/NativeActionSheetManager.js +2 -2
  3. package/Libraries/Alert/Alert.js +33 -10
  4. package/Libraries/Alert/NativeAlertManager.js +2 -2
  5. package/Libraries/Alert/RCTAlertManager.android.js +1 -1
  6. package/Libraries/Alert/RCTAlertManager.ios.js +1 -1
  7. package/Libraries/Alert/RCTAlertManager.js.flow +1 -1
  8. package/Libraries/Animated/Animated.js +8 -37
  9. package/{flow/react.js → Libraries/Animated/Animated.js.flow} +6 -6
  10. package/Libraries/Animated/AnimatedExports.js +47 -0
  11. package/Libraries/Animated/AnimatedExports.js.flow +48 -0
  12. package/Libraries/Animated/AnimatedMock.js +1 -1
  13. package/Libraries/Animated/NativeAnimatedModule.js +2 -2
  14. package/Libraries/Animated/NativeAnimatedTurboModule.js +2 -2
  15. package/Libraries/Animated/animations/Animation.js +1 -4
  16. package/Libraries/Animated/createAnimatedComponent.js +3 -3
  17. package/Libraries/Animated/nodes/AnimatedObject.js +1 -0
  18. package/Libraries/Animated/nodes/AnimatedValue.js +30 -22
  19. package/Libraries/Animated/useAnimatedProps.js +4 -333
  20. package/Libraries/Animated/useAnimatedValue.js +1 -3
  21. package/Libraries/AppDelegate/RCTAppDelegate.h +6 -1
  22. package/Libraries/AppDelegate/RCTAppDelegate.mm +0 -18
  23. package/Libraries/AppDelegate/RCTAppSetupUtils.h +2 -1
  24. package/Libraries/AppDelegate/RCTAppSetupUtils.mm +29 -20
  25. package/Libraries/AppDelegate/RCTArchConfiguratorProtocol.h +4 -0
  26. package/Libraries/AppDelegate/RCTDefaultReactNativeFactoryDelegate.mm +29 -0
  27. package/Libraries/AppDelegate/RCTDependencyProvider.h +3 -0
  28. package/Libraries/AppDelegate/RCTJSRuntimeConfiguratorProtocol.h +22 -0
  29. package/Libraries/AppDelegate/RCTReactNativeFactory.h +13 -2
  30. package/Libraries/AppDelegate/RCTReactNativeFactory.mm +74 -8
  31. package/Libraries/AppDelegate/RCTRootViewFactory.h +21 -0
  32. package/Libraries/AppDelegate/RCTRootViewFactory.mm +27 -10
  33. package/Libraries/AppDelegate/RCTUIConfiguratorProtocol.h +4 -0
  34. package/Libraries/AppDelegate/React-RCTAppDelegate.podspec +6 -8
  35. package/Libraries/AppState/AppState.js +24 -7
  36. package/Libraries/AppState/NativeAppState.js +2 -2
  37. package/Libraries/BatchedBridge/BatchedBridge.js +4 -2
  38. package/Libraries/BatchedBridge/MessageQueue.js +5 -4
  39. package/Libraries/BatchedBridge/NativeModules.js +6 -4
  40. package/Libraries/Blob/Blob.js +5 -5
  41. package/Libraries/Blob/BlobManager.js +3 -2
  42. package/Libraries/Blob/BlobRegistry.js +3 -9
  43. package/Libraries/Blob/File.js +3 -2
  44. package/Libraries/Blob/FileReader.js +8 -174
  45. package/Libraries/Blob/FileReader_new.js +231 -0
  46. package/Libraries/Blob/FileReader_old.js +186 -0
  47. package/Libraries/Blob/NativeBlobModule.js +2 -2
  48. package/Libraries/Blob/NativeFileReaderModule.js +2 -2
  49. package/Libraries/Blob/React-RCTBlob.podspec +1 -1
  50. package/Libraries/Blob/URL.js +1 -1
  51. package/Libraries/Blob/URLSearchParams.js +9 -10
  52. package/Libraries/Blob/URLSearchParams.js.flow +9 -9
  53. package/Libraries/BugReporting/BugReporting.js +2 -2
  54. package/Libraries/BugReporting/NativeBugReporting.js +2 -2
  55. package/Libraries/BugReporting/dumpReactTree.js +2 -2
  56. package/Libraries/BugReporting/getReactData.js +1 -1
  57. package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.js +1 -1
  58. package/Libraries/Components/AccessibilityInfo/NativeAccessibilityInfo.js +2 -2
  59. package/Libraries/Components/AccessibilityInfo/NativeAccessibilityManager.js +2 -2
  60. package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.android.js +1 -1
  61. package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.ios.js +1 -1
  62. package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.js.flow +1 -1
  63. package/Libraries/Components/ActivityIndicator/ActivityIndicator.js +11 -11
  64. package/Libraries/Components/ActivityIndicator/ActivityIndicatorViewNativeComponent.js +2 -2
  65. package/Libraries/Components/Button.js +6 -6
  66. package/Libraries/Components/Clipboard/Clipboard.js +1 -1
  67. package/Libraries/Components/Clipboard/NativeClipboard.js +2 -2
  68. package/Libraries/Components/DrawerAndroid/AndroidDrawerLayoutNativeComponent.js +2 -2
  69. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +14 -100
  70. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.js +64 -3
  71. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroidTypes.js +138 -0
  72. package/Libraries/Components/Keyboard/Keyboard.js +9 -9
  73. package/Libraries/Components/Keyboard/KeyboardAvoidingView.js +24 -25
  74. package/Libraries/Components/Keyboard/NativeKeyboardObserver.js +2 -2
  75. package/Libraries/Components/LayoutConformance/LayoutConformance.js +7 -5
  76. package/Libraries/Components/LayoutConformance/LayoutConformanceNativeComponent.js +1 -1
  77. package/Libraries/Components/Pressable/Pressable.d.ts +1 -1
  78. package/Libraries/Components/Pressable/Pressable.js +36 -82
  79. package/Libraries/Components/Pressable/useAndroidRippleForView.js +17 -17
  80. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.android.js +4 -47
  81. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.js +9 -5
  82. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroidNativeComponent.js +2 -2
  83. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroidTypes.js +54 -0
  84. package/Libraries/Components/RefreshControl/AndroidSwipeRefreshLayoutNativeComponent.js +2 -2
  85. package/Libraries/Components/RefreshControl/PullToRefreshViewNativeComponent.js +2 -2
  86. package/Libraries/Components/RefreshControl/RefreshControl.js +17 -14
  87. package/Libraries/Components/RefreshControl/__mocks__/RefreshControlMock.js +2 -1
  88. package/Libraries/Components/SafeAreaView/RCTSafeAreaViewNativeComponent.js +2 -2
  89. package/Libraries/Components/SafeAreaView/SafeAreaView.js +1 -1
  90. package/Libraries/Components/ScrollView/AndroidHorizontalScrollContentViewNativeComponent.js +2 -2
  91. package/Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js +2 -4
  92. package/Libraries/Components/ScrollView/ScrollContentViewNativeComponent.js +2 -4
  93. package/Libraries/Components/ScrollView/ScrollView.js +140 -136
  94. package/Libraries/Components/ScrollView/ScrollViewCommands.js +3 -3
  95. package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +7 -9
  96. package/Libraries/Components/ScrollView/ScrollViewNativeComponentType.js +5 -2
  97. package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +10 -11
  98. package/Libraries/Components/ScrollView/processDecelerationRate.js +1 -1
  99. package/Libraries/Components/Sound/NativeSoundManager.js +2 -2
  100. package/Libraries/Components/Sound/SoundManager.js +1 -1
  101. package/Libraries/Components/StaticRenderer.js +4 -4
  102. package/Libraries/Components/StatusBar/NativeStatusBarManagerAndroid.js +2 -2
  103. package/Libraries/Components/StatusBar/NativeStatusBarManagerIOS.js +2 -2
  104. package/Libraries/Components/StatusBar/StatusBar.js +57 -31
  105. package/Libraries/Components/Switch/AndroidSwitchNativeComponent.js +2 -2
  106. package/Libraries/Components/Switch/Switch.js +74 -45
  107. package/Libraries/Components/Switch/SwitchNativeComponent.js +2 -2
  108. package/Libraries/Components/TV/TVEventHandler.js +1 -1
  109. package/Libraries/Components/TV/TVFocusGuideView.js +3 -3
  110. package/Libraries/Components/TV/TVTextScrollView.js +2 -2
  111. package/Libraries/Components/TV/useTVEventHandler.js +1 -1
  112. package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +33 -35
  113. package/Libraries/Components/TextInput/InputAccessoryView.js +5 -3
  114. package/Libraries/Components/TextInput/RCTInputAccessoryViewNativeComponent.js +2 -2
  115. package/Libraries/Components/TextInput/RCTMultilineTextInputNativeComponent.js +2 -4
  116. package/Libraries/Components/TextInput/RCTSingelineTextInputNativeComponent.js +2 -4
  117. package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +5 -2
  118. package/Libraries/Components/TextInput/TextInput.flow.js +131 -121
  119. package/Libraries/Components/TextInput/TextInput.js +152 -149
  120. package/Libraries/Components/TextInput/TextInputNativeCommands.js +1 -1
  121. package/Libraries/Components/TextInput/TextInputState.js +6 -20
  122. package/Libraries/Components/ToastAndroid/NativeToastAndroid.js +2 -2
  123. package/Libraries/Components/ToastAndroid/ToastAndroid.android.js +1 -1
  124. package/Libraries/Components/ToastAndroid/ToastAndroid.d.ts +68 -6
  125. package/Libraries/Components/ToastAndroid/ToastAndroid.js +1 -1
  126. package/Libraries/Components/Touchable/BoundingDimensions.js +1 -1
  127. package/Libraries/Components/Touchable/PooledClass.js +1 -1
  128. package/Libraries/Components/Touchable/Position.js +1 -1
  129. package/Libraries/Components/Touchable/Touchable.js +23 -23
  130. package/Libraries/Components/Touchable/TouchableBounce.js +6 -6
  131. package/Libraries/Components/Touchable/TouchableHighlight.js +45 -21
  132. package/Libraries/Components/Touchable/TouchableNativeFeedback.js +103 -55
  133. package/Libraries/Components/Touchable/TouchableOpacity.js +57 -15
  134. package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +116 -62
  135. package/Libraries/Components/UnimplementedViews/UnimplementedNativeViewNativeComponent.js +2 -2
  136. package/Libraries/Components/UnimplementedViews/UnimplementedView.js +11 -3
  137. package/Libraries/Components/View/ReactNativeStyleAttributes.js +17 -3
  138. package/Libraries/Components/View/ReactNativeViewAttributes.js +1 -1
  139. package/Libraries/Components/View/View.js +2 -2
  140. package/Libraries/Components/View/ViewAccessibility.js +245 -5
  141. package/Libraries/Components/View/ViewNativeComponent.js +2 -4
  142. package/Libraries/Components/View/ViewPropTypes.d.ts +14 -14
  143. package/Libraries/Components/View/ViewPropTypes.js +73 -261
  144. package/Libraries/Core/Devtools/getDevServer.js +1 -3
  145. package/Libraries/Core/Devtools/loadBundleFromServer.js +4 -2
  146. package/Libraries/Core/Devtools/openFileInEditor.js +2 -4
  147. package/Libraries/Core/Devtools/openURLInBrowser.js +5 -4
  148. package/Libraries/Core/Devtools/parseErrorStack.js +4 -4
  149. package/Libraries/Core/Devtools/parseHermesStack.js +2 -2
  150. package/Libraries/Core/Devtools/symbolicateStackTrace.js +6 -5
  151. package/Libraries/Core/ExceptionsManager.js +6 -4
  152. package/Libraries/Core/InitializeCore.js +7 -3
  153. package/Libraries/Core/NativeExceptionsManager.js +2 -2
  154. package/Libraries/Core/RawEventEmitter.js +2 -2
  155. package/Libraries/Core/ReactFiberErrorDialog.js +2 -2
  156. package/Libraries/Core/ReactNativeVersion.js +2 -2
  157. package/Libraries/Core/ReactNativeVersionCheck.js +2 -4
  158. package/Libraries/Core/SegmentFetcher/NativeSegmentFetcher.js +2 -2
  159. package/Libraries/Core/Timers/JSTimers.js +10 -8
  160. package/Libraries/Core/Timers/NativeTiming.js +2 -2
  161. package/Libraries/Core/Timers/immediateShim.js +2 -9
  162. package/Libraries/Core/polyfillPromise.js +1 -1
  163. package/Libraries/Core/registerCallableModule.js +1 -1
  164. package/Libraries/Core/setUpAlert.js +1 -1
  165. package/Libraries/Core/setUpBatchedBridge.js +13 -8
  166. package/Libraries/Core/setUpDeveloperTools.js +5 -38
  167. package/Libraries/Core/setUpErrorHandling.js +2 -2
  168. package/Libraries/Core/setUpReactDevTools.js +26 -6
  169. package/Libraries/Core/setUpReactRefresh.js +1 -1
  170. package/Libraries/Core/setUpTimers.js +45 -66
  171. package/Libraries/Core/setUpXHR.js +11 -8
  172. package/Libraries/Debugging/DebuggingOverlayNativeComponent.js +2 -2
  173. package/Libraries/Debugging/DebuggingOverlayRegistry.js +10 -7
  174. package/Libraries/EventEmitter/NativeEventEmitter.js +8 -2
  175. package/Libraries/EventEmitter/RCTDeviceEventEmitter.js +7 -5
  176. package/Libraries/EventEmitter/RCTEventEmitter.js +1 -1
  177. package/Libraries/EventEmitter/RCTNativeAppEventEmitter.js +1 -1
  178. package/Libraries/EventEmitter/__mocks__/NativeEventEmitter.js +3 -2
  179. package/Libraries/Events/CustomEvent.js +3 -3
  180. package/Libraries/Events/EventPolyfill.js +2 -2
  181. package/Libraries/Image/AssetRegistry.js +8 -1
  182. package/Libraries/Image/AssetSourceResolver.js +4 -4
  183. package/Libraries/Image/Image.android.js +4 -2
  184. package/Libraries/Image/Image.ios.js +1 -1
  185. package/Libraries/Image/Image.js.flow +15 -1
  186. package/Libraries/Image/ImageBackground.js +2 -2
  187. package/Libraries/Image/ImageProps.js +109 -39
  188. package/Libraries/Image/ImageTypes.flow.js +16 -6
  189. package/Libraries/Image/ImageViewNativeComponent.js +8 -11
  190. package/Libraries/Image/NativeImageEditor.js +2 -2
  191. package/Libraries/Image/NativeImageLoaderAndroid.js +2 -2
  192. package/Libraries/Image/NativeImageLoaderIOS.js +2 -2
  193. package/Libraries/Image/NativeImageStoreAndroid.js +2 -2
  194. package/Libraries/Image/NativeImageStoreIOS.js +2 -2
  195. package/Libraries/Image/RelativeImageStub.js +3 -1
  196. package/Libraries/Image/TextInlineImageNativeComponent.js +2 -4
  197. package/Libraries/Image/nativeImageSource.js +3 -3
  198. package/Libraries/Image/resolveAssetSource.js +4 -2
  199. package/Libraries/Interaction/FrameRateLogger.js +1 -1
  200. package/Libraries/Interaction/InteractionManager.js +20 -9
  201. package/Libraries/Interaction/InteractionManagerStub.js +10 -2
  202. package/Libraries/Interaction/JSEventLoopWatchdog.js +2 -2
  203. package/Libraries/Interaction/NativeFrameRateLogger.js +2 -2
  204. package/Libraries/Interaction/PanResponder.js +49 -46
  205. package/Libraries/Interaction/TaskQueue.js +4 -4
  206. package/Libraries/Interaction/TouchHistoryMath.js +27 -1
  207. package/Libraries/LayoutAnimation/LayoutAnimation.js +20 -6
  208. package/Libraries/Linking/Linking.d.ts +3 -3
  209. package/Libraries/Linking/Linking.js +10 -9
  210. package/Libraries/Linking/NativeIntentAndroid.js +2 -2
  211. package/Libraries/Linking/NativeLinkingManager.js +2 -2
  212. package/Libraries/Lists/FillRateHelper.js +4 -4
  213. package/Libraries/Lists/FlatList.js +30 -30
  214. package/Libraries/Lists/SectionList.js +10 -10
  215. package/Libraries/Lists/SectionListModern.js +9 -7
  216. package/Libraries/Lists/ViewabilityHelper.js +4 -3
  217. package/Libraries/Lists/VirtualizeUtils.js +3 -5
  218. package/Libraries/Lists/VirtualizedList.js +6 -6
  219. package/Libraries/Lists/VirtualizedListContext.js +5 -5
  220. package/Libraries/Lists/VirtualizedSectionList.js +5 -3
  221. package/Libraries/Lists/__flowtests__/FlatList-flowtest.js +1 -1
  222. package/Libraries/LogBox/Data/LogBoxData.js +15 -15
  223. package/Libraries/LogBox/Data/LogBoxLog.js +51 -29
  224. package/Libraries/LogBox/Data/parseLogBoxLog.js +10 -10
  225. package/Libraries/LogBox/LogBox.js +22 -2
  226. package/Libraries/LogBox/LogBoxInspectorContainer.js +3 -3
  227. package/Libraries/LogBox/LogBoxNotificationContainer.js +3 -3
  228. package/Libraries/LogBox/UI/AnsiHighlight.js +7 -3
  229. package/Libraries/LogBox/UI/LogBoxButton.js +8 -6
  230. package/Libraries/LogBox/UI/LogBoxInspector.js +1 -1
  231. package/Libraries/LogBox/UI/LogBoxInspectorBody.js +8 -2
  232. package/Libraries/LogBox/UI/LogBoxInspectorCodeFrame.js +50 -31
  233. package/Libraries/LogBox/UI/LogBoxInspectorFooter.js +11 -3
  234. package/Libraries/LogBox/UI/LogBoxInspectorFooterButton.js +2 -0
  235. package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +8 -2
  236. package/Libraries/LogBox/UI/LogBoxInspectorHeaderButton.js +2 -0
  237. package/Libraries/LogBox/UI/LogBoxInspectorMessageHeader.js +6 -4
  238. package/Libraries/LogBox/UI/LogBoxInspectorReactFrames.js +5 -3
  239. package/Libraries/LogBox/UI/LogBoxInspectorSection.js +2 -2
  240. package/Libraries/LogBox/UI/LogBoxInspectorSourceMapStatus.js +4 -4
  241. package/Libraries/LogBox/UI/LogBoxInspectorStackFrame.js +5 -3
  242. package/Libraries/LogBox/UI/LogBoxInspectorStackFrames.js +2 -2
  243. package/Libraries/LogBox/UI/LogBoxNotification.js +7 -2
  244. package/Libraries/LogBox/UI/LogBoxNotificationCountBadge.js +3 -1
  245. package/Libraries/LogBox/UI/LogBoxNotificationDismissButton.js +2 -0
  246. package/Libraries/LogBox/UI/LogBoxNotificationMessage.js +4 -1
  247. package/Libraries/Modal/Modal.js +82 -89
  248. package/Libraries/Modal/NativeModalManager.js +2 -2
  249. package/Libraries/Modal/RCTModalHostViewNativeComponent.js +2 -2
  250. package/Libraries/NativeComponent/BaseViewConfig.android.js +16 -6
  251. package/Libraries/NativeComponent/BaseViewConfig.ios.js +19 -9
  252. package/Libraries/NativeComponent/NativeComponentRegistry.js +1 -1
  253. package/Libraries/NativeComponent/StaticViewConfigValidator.js +5 -1
  254. package/Libraries/NativeModules/specs/NativeDevMenu.js +2 -2
  255. package/Libraries/NativeModules/specs/NativeDevSettings.js +2 -2
  256. package/Libraries/NativeModules/specs/NativeDeviceEventManager.js +2 -2
  257. package/Libraries/NativeModules/specs/NativeDialogManagerAndroid.js +2 -2
  258. package/Libraries/NativeModules/specs/NativeLogBox.js +2 -2
  259. package/Libraries/NativeModules/specs/NativeRedBox.js +2 -2
  260. package/Libraries/NativeModules/specs/NativeSourceCode.js +2 -2
  261. package/Libraries/Network/FormData.js +1 -1
  262. package/Libraries/Network/NativeNetworkingAndroid.js +2 -2
  263. package/Libraries/Network/NativeNetworkingIOS.js +2 -2
  264. package/Libraries/Network/RCTDataRequestHandler.mm +17 -3
  265. package/Libraries/Network/RCTFileRequestHandler.mm +17 -3
  266. package/Libraries/Network/RCTNetworking.android.js +1 -1
  267. package/Libraries/Network/RCTNetworking.ios.js +1 -1
  268. package/Libraries/Network/RCTNetworking.js.flow +1 -1
  269. package/Libraries/Network/RCTNetworking.mm +1 -1
  270. package/Libraries/Network/XMLHttpRequest.js +10 -685
  271. package/Libraries/Network/XMLHttpRequest_new.js +794 -0
  272. package/Libraries/Network/XMLHttpRequest_old.js +701 -0
  273. package/Libraries/Network/convertRequestBody.js +7 -4
  274. package/Libraries/Network/fetch.js +4 -3
  275. package/Libraries/PermissionsAndroid/NativePermissionsAndroid.js +2 -2
  276. package/Libraries/PermissionsAndroid/PermissionsAndroid.js +65 -63
  277. package/Libraries/Pressability/HoverState.js +1 -0
  278. package/Libraries/Pressability/Pressability.js +35 -35
  279. package/Libraries/Pressability/PressabilityDebug.js +2 -2
  280. package/Libraries/Pressability/PressabilityPerformanceEventEmitter.js +2 -2
  281. package/Libraries/Promise.js +2 -2
  282. package/Libraries/PushNotificationIOS/NativePushNotificationManagerIOS.js +2 -2
  283. package/Libraries/PushNotificationIOS/PushNotificationIOS.js +119 -16
  284. package/Libraries/ReactNative/AppContainer-dev.js +4 -3
  285. package/Libraries/ReactNative/AppContainer.js +3 -3
  286. package/Libraries/ReactNative/AppRegistry.js +4 -4
  287. package/Libraries/ReactNative/BridgelessUIManager.js +4 -9
  288. package/Libraries/ReactNative/FabricUIManager.js +22 -10
  289. package/Libraries/ReactNative/I18nManager.js +4 -3
  290. package/Libraries/ReactNative/NativeHeadlessJsTaskSupport.js +2 -2
  291. package/Libraries/ReactNative/NativeI18nManager.js +2 -2
  292. package/Libraries/ReactNative/NativeUIManager.js +2 -2
  293. package/Libraries/ReactNative/PaperUIManager.js +6 -6
  294. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +7 -5
  295. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +85 -30
  296. package/Libraries/ReactNative/ReactNativeFeatureFlags.js +3 -3
  297. package/Libraries/ReactNative/ReactNativeRuntimeDiagnostics.js +3 -3
  298. package/Libraries/ReactNative/RendererImplementation.js +12 -5
  299. package/Libraries/ReactNative/RootTag.js +1 -1
  300. package/Libraries/ReactNative/UIManager.d.ts +1 -0
  301. package/Libraries/ReactNative/UIManager.js +3 -3
  302. package/Libraries/ReactNative/UIManagerProperties.js +1 -1
  303. package/Libraries/ReactNative/getNativeComponentAttributes.js +10 -9
  304. package/Libraries/ReactNative/requireNativeComponent.js +3 -2
  305. package/Libraries/ReactNativeDependencies/Package.swift +26 -0
  306. package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +30 -10
  307. package/Libraries/Renderer/shims/ReactNativeTypes.js +40 -89
  308. package/Libraries/Required/RCTRequired.h +1 -1
  309. package/Libraries/Settings/NativeSettingsManager.js +2 -2
  310. package/Libraries/Settings/Settings.ios.js +1 -1
  311. package/Libraries/Settings/Settings.js +3 -3
  312. package/Libraries/Share/NativeShareModule.js +2 -2
  313. package/Libraries/Share/Share.js +11 -4
  314. package/Libraries/StyleSheet/PlatformColorValueTypes.ios.js +1 -1
  315. package/Libraries/StyleSheet/Rect.js +2 -2
  316. package/Libraries/StyleSheet/StyleSheet.js +4 -3
  317. package/Libraries/StyleSheet/StyleSheetTypes.d.ts +1 -1
  318. package/Libraries/StyleSheet/__flowtests__/StyleSheet-flowtest.js +1 -1
  319. package/Libraries/StyleSheet/flattenStyle.js +1 -1
  320. package/Libraries/StyleSheet/normalizeColor.js +1 -1
  321. package/Libraries/StyleSheet/private/_TransformStyle.js +18 -18
  322. package/Libraries/StyleSheet/processAspectRatio.js +1 -1
  323. package/Libraries/StyleSheet/processBackgroundImage.js +138 -136
  324. package/Libraries/StyleSheet/processBoxShadow.js +4 -0
  325. package/Libraries/StyleSheet/processColor.js +2 -2
  326. package/Libraries/StyleSheet/processColorArray.js +1 -1
  327. package/Libraries/StyleSheet/processFilter.js +4 -0
  328. package/Libraries/StyleSheet/processFontVariant.js +1 -1
  329. package/Libraries/StyleSheet/processTransform.js +1 -1
  330. package/Libraries/StyleSheet/setNormalizedColorAlpha.js +1 -1
  331. package/Libraries/Text/Text.d.ts +1 -1
  332. package/Libraries/Text/Text.js +19 -17
  333. package/Libraries/Text/TextAncestor.js +2 -3
  334. package/Libraries/Text/TextInput/Multiline/RCTUITextView.mm +1 -1
  335. package/Libraries/Text/TextInput/RCTBackedTextInputViewProtocol.h +3 -0
  336. package/Libraries/Text/TextInput/Singleline/RCTUITextField.mm +7 -1
  337. package/Libraries/Text/TextNativeComponent.js +3 -3
  338. package/Libraries/Text/TextProps.js +134 -94
  339. package/Libraries/TurboModule/TurboModuleRegistry.js +1 -1
  340. package/Libraries/TurboModule/samples/NativeSampleTurboModule.js +2 -2
  341. package/Libraries/Types/CodegenTypes.js +5 -4
  342. package/Libraries/Types/CoreEventTypes.js +132 -99
  343. package/Libraries/Types/ReactDevToolsTypes.js +4 -8
  344. package/Libraries/UTFSequence.js +4 -3
  345. package/Libraries/Utilities/Appearance.js +0 -8
  346. package/Libraries/Utilities/BackHandler.android.js +3 -3
  347. package/Libraries/Utilities/BackHandler.ios.js +6 -6
  348. package/Libraries/Utilities/BackHandler.js.flow +9 -7
  349. package/Libraries/Utilities/DevLoadingView.js +1 -1
  350. package/Libraries/Utilities/DevSettings.js +15 -1
  351. package/Libraries/Utilities/DeviceInfo.js +1 -1
  352. package/Libraries/Utilities/Dimensions.js +5 -0
  353. package/Libraries/Utilities/FeatureDetection.js +2 -4
  354. package/Libraries/Utilities/GlobalPerformanceLogger.js +1 -1
  355. package/Libraries/Utilities/HMRClient.js +7 -35
  356. package/Libraries/Utilities/HMRClientProdShim.js +1 -2
  357. package/Libraries/Utilities/NativeAppearance.js +2 -2
  358. package/Libraries/Utilities/NativeDevLoadingView.js +2 -2
  359. package/Libraries/Utilities/NativeDeviceInfo.js +2 -2
  360. package/Libraries/Utilities/NativePlatformConstantsAndroid.js +2 -2
  361. package/Libraries/Utilities/NativePlatformConstantsIOS.js +2 -2
  362. package/Libraries/Utilities/Platform.android.js +6 -6
  363. package/Libraries/Utilities/Platform.ios.js +6 -6
  364. package/Libraries/Utilities/Platform.js.flow +2 -2
  365. package/Libraries/Utilities/PlatformTypes.js +181 -0
  366. package/Libraries/Utilities/PolyfillFunctions.js +3 -5
  367. package/Libraries/Utilities/RCTLog.js +1 -1
  368. package/Libraries/Utilities/ReactNativeTestTools.js +6 -6
  369. package/Libraries/Utilities/SceneTracker.js +1 -1
  370. package/Libraries/Utilities/__mocks__/GlobalPerformanceLogger.js +2 -2
  371. package/Libraries/Utilities/binaryToBase64.js +1 -1
  372. package/Libraries/Utilities/codegenNativeCommands.js +2 -2
  373. package/Libraries/Utilities/codegenNativeComponent.js +3 -3
  374. package/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.js +1 -1
  375. package/Libraries/Utilities/defineLazyObjectProperty.js +1 -1
  376. package/Libraries/Utilities/differ/deepDiffer.js +6 -6
  377. package/Libraries/Utilities/differ/insetsDiffer.js +3 -3
  378. package/Libraries/Utilities/differ/matricesDiffer.js +3 -6
  379. package/Libraries/Utilities/differ/pointsDiffer.js +3 -3
  380. package/Libraries/Utilities/differ/sizesDiffer.js +3 -3
  381. package/Libraries/Utilities/dismissKeyboard.js +3 -2
  382. package/Libraries/Utilities/infoLog.js +1 -1
  383. package/Libraries/Utilities/logError.js +1 -1
  384. package/Libraries/Utilities/mapWithSeparator.js +1 -1
  385. package/Libraries/Utilities/stringifySafe.js +2 -2
  386. package/Libraries/Utilities/warnOnce.js +1 -1
  387. package/Libraries/Vibration/NativeVibration.js +2 -2
  388. package/Libraries/Vibration/Vibration.js +5 -4
  389. package/Libraries/WebSocket/NativeWebSocketModule.js +2 -2
  390. package/Libraries/WebSocket/WebSocket.js +8 -285
  391. package/Libraries/WebSocket/WebSocketEvent.js +2 -2
  392. package/Libraries/WebSocket/WebSocketInterceptor.js +39 -11
  393. package/Libraries/WebSocket/WebSocket_new.js +325 -0
  394. package/Libraries/WebSocket/WebSocket_old.js +297 -0
  395. package/Libraries/WebSocket/__mocks__/event-target-shim.js +1 -1
  396. package/Libraries/__flowtests__/ReactNativeTypes-flowtest.js +2 -4
  397. package/Libraries/vendor/core/ErrorUtils.js +1 -1
  398. package/Libraries/vendor/emitter/EventEmitter.js +21 -9
  399. package/README-core.md +0 -3
  400. package/React/Base/RCTAssert.h +1 -1
  401. package/React/Base/RCTBridge.mm +14 -1
  402. package/React/Base/RCTBridgeDelegate.h +0 -9
  403. package/React/Base/RCTDefines.h +8 -4
  404. package/React/Base/RCTKeyCommands.m +1 -1
  405. package/React/Base/RCTModuleData.mm +1 -1
  406. package/React/Base/RCTRootView.h +2 -2
  407. package/React/Base/RCTRootViewInternal.h +1 -1
  408. package/React/Base/RCTUtils.m +1 -1
  409. package/React/Base/RCTVersion.m +2 -2
  410. package/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.mm +5 -0
  411. package/React/Base/UIKitProxies/RCTInitialAccessibilityValuesProxy.h +30 -0
  412. package/React/Base/UIKitProxies/RCTInitialAccessibilityValuesProxy.mm +185 -0
  413. package/React/Base/UIKitProxies/RCTInitializeUIKitProxies.h +10 -0
  414. package/React/Base/UIKitProxies/RCTInitializeUIKitProxies.mm +23 -0
  415. package/React/Base/UIKitProxies/RCTKeyWindowValuesProxy.h +25 -0
  416. package/React/Base/UIKitProxies/RCTKeyWindowValuesProxy.mm +129 -0
  417. package/React/Base/UIKitProxies/RCTTraitCollectionProxy.h +26 -0
  418. package/React/Base/UIKitProxies/RCTTraitCollectionProxy.mm +80 -0
  419. package/React/Base/UIKitProxies/RCTWindowSafeAreaProxy.h +26 -0
  420. package/React/Base/UIKitProxies/RCTWindowSafeAreaProxy.mm +70 -0
  421. package/React/CoreModules/CoreModulesPlugins.h +0 -1
  422. package/React/CoreModules/CoreModulesPlugins.mm +0 -1
  423. package/React/CoreModules/RCTAccessibilityManager.mm +11 -9
  424. package/React/CoreModules/RCTAppearance.mm +4 -7
  425. package/React/CoreModules/RCTDevMenu.mm +0 -18
  426. package/React/CoreModules/RCTDevSettings.h +0 -6
  427. package/React/CoreModules/RCTDevSettings.mm +1 -62
  428. package/React/CoreModules/RCTDeviceInfo.mm +43 -57
  429. package/React/CoreModules/RCTEventDispatcher.mm +1 -0
  430. package/React/CoreModules/RCTKeyboardObserver.mm +6 -0
  431. package/React/CoreModules/RCTPerfMonitor.mm +5 -0
  432. package/React/CoreModules/RCTPlatform.mm +19 -21
  433. package/React/CoreModules/RCTRedBox.mm +1 -1
  434. package/React/CoreModules/RCTStatusBarManager.mm +6 -0
  435. package/React/CoreModules/React-CoreModules.podspec +2 -1
  436. package/React/CxxBridge/RCTCxxBridge.mm +5 -63
  437. package/React/DevSupport/RCTInspectorDevServerHelper.mm +10 -5
  438. package/React/DevSupport/RCTPausedInDebuggerOverlayController.mm +3 -5
  439. package/React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec-generated.mm +0 -14
  440. package/React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec.h +0 -2
  441. package/React/FBReactNativeSpec/FBReactNativeSpecJSI-generated.cpp +201 -178
  442. package/React/FBReactNativeSpec/FBReactNativeSpecJSI.h +535 -421
  443. package/React/Fabric/Mounting/ComponentViews/LegacyViewManagerInterop/RCTLegacyViewManagerInteropComponentView.mm +2 -2
  444. package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm +52 -16
  445. package/React/Fabric/Mounting/ComponentViews/Text/RCTParagraphComponentView.mm +5 -0
  446. package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputComponentView.mm +12 -8
  447. package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputUtils.h +2 -0
  448. package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputUtils.mm +34 -2
  449. package/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm +33 -45
  450. package/React/Fabric/Surface/RCTFabricSurface.mm +1 -0
  451. package/React/Fabric/Utils/RCTBoxShadow.h +1 -1
  452. package/React/Fabric/Utils/RCTBoxShadow.mm +10 -10
  453. package/React/Fabric/Utils/RCTLinearGradient.mm +212 -15
  454. package/React/Fabric/Utils/RCTViewFinder.h +18 -0
  455. package/React/Fabric/Utils/RCTViewFinder.mm +34 -0
  456. package/React/I18n/FBXXHashUtils.h +48 -30
  457. package/React/I18n/strings/nb.lproj/fbt_language_pack.bin +0 -0
  458. package/React/I18n/strings/zh-Hant-HK.lproj/fbt_language_pack.bin +0 -0
  459. package/React/Inspector/RCTCxxInspectorWebSocketAdapter.mm +8 -11
  460. package/React/React-RCTFBReactNativeSpec.podspec +1 -6
  461. package/React/React-RCTFabric.podspec +3 -5
  462. package/React/Runtime/RCTHermesInstanceFactory.h +20 -0
  463. package/React/Runtime/RCTHermesInstanceFactory.mm +20 -0
  464. package/React/Runtime/RCTJscInstanceFactory.h +20 -0
  465. package/React/Runtime/RCTJscInstanceFactory.mm +20 -0
  466. package/React/Runtime/React-RCTRuntime.podspec +85 -0
  467. package/React/Views/ScrollView/RCTScrollView.m +2 -3
  468. package/React-Core.podspec +9 -8
  469. package/ReactAndroid/README.md +1 -1
  470. package/ReactAndroid/api/ReactAndroid.api +147 -568
  471. package/ReactAndroid/build.gradle.kts +64 -53
  472. package/ReactAndroid/external-artifacts/build.gradle.kts +37 -0
  473. package/ReactAndroid/gradle.properties +4 -1
  474. package/ReactAndroid/hermes-engine/build.gradle.kts +13 -12
  475. package/ReactAndroid/publish.gradle +1 -1
  476. package/ReactAndroid/src/main/java/com/facebook/annotationprocessors/common/ProcessorBase.kt +2 -2
  477. package/ReactAndroid/src/main/java/com/facebook/debug/debugoverlay/model/DebugOverlayTag.kt +3 -3
  478. package/ReactAndroid/src/main/java/com/facebook/hermes/instrumentation/HermesMemoryDumper.kt +5 -5
  479. package/ReactAndroid/src/main/java/com/facebook/hermes/reactexecutor/HermesExecutor.kt +55 -0
  480. package/ReactAndroid/src/main/java/com/facebook/hermes/reactexecutor/HermesExecutorFactory.kt +40 -0
  481. package/ReactAndroid/src/main/java/com/facebook/react/HeadlessJsTaskService.kt +185 -0
  482. package/ReactAndroid/src/main/java/com/facebook/react/MemoryPressureRouter.java +3 -1
  483. package/ReactAndroid/src/main/java/com/facebook/react/ReactActivityDelegate.java +9 -0
  484. package/ReactAndroid/src/main/java/com/facebook/react/ReactDelegate.java +8 -0
  485. package/ReactAndroid/src/main/java/com/facebook/react/ReactHost.kt +4 -4
  486. package/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java +0 -20
  487. package/ReactAndroid/src/main/java/com/facebook/react/ReactPackageLogger.kt +3 -4
  488. package/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNode.kt +4 -4
  489. package/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeValueListener.kt +2 -2
  490. package/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeWithUpdateableConfig.kt +2 -2
  491. package/ReactAndroid/src/main/java/com/facebook/react/animated/DecayAnimation.kt +2 -2
  492. package/ReactAndroid/src/main/java/com/facebook/react/animated/InterpolationAnimatedNode.kt +9 -13
  493. package/ReactAndroid/src/main/java/com/facebook/react/animated/ModulusAnimatedNode.kt +2 -2
  494. package/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedModule.java +15 -0
  495. package/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedNodesManager.java +25 -1
  496. package/ReactAndroid/src/main/java/com/facebook/react/animated/PropsAnimatedNode.kt +6 -6
  497. package/ReactAndroid/src/main/java/com/facebook/react/animated/StyleAnimatedNode.kt +1 -1
  498. package/ReactAndroid/src/main/java/com/facebook/react/animated/TrackingAnimatedNode.kt +2 -2
  499. package/ReactAndroid/src/main/java/com/facebook/react/animated/TransformAnimatedNode.kt +3 -3
  500. package/ReactAndroid/src/main/java/com/facebook/react/animated/ValueAnimatedNode.kt +8 -9
  501. package/ReactAndroid/src/main/java/com/facebook/react/bridge/CallbackImpl.java +3 -0
  502. package/ReactAndroid/src/main/java/com/facebook/react/bridge/CatalystInstance.kt +4 -2
  503. package/ReactAndroid/src/main/java/com/facebook/react/bridge/CxxCallbackImpl.kt +21 -0
  504. package/ReactAndroid/src/main/java/com/facebook/react/bridge/{CxxModuleWrapper.java → CxxModuleWrapper.kt} +5 -8
  505. package/ReactAndroid/src/main/java/com/facebook/react/bridge/{DefaultJSExceptionHandler.java → DefaultJSExceptionHandler.kt} +6 -8
  506. package/ReactAndroid/src/main/java/com/facebook/react/bridge/DimensionPropConverter.kt +27 -0
  507. package/ReactAndroid/src/main/java/com/facebook/react/bridge/InvalidIteratorException.kt +3 -3
  508. package/ReactAndroid/src/main/java/com/facebook/react/bridge/JSBundleLoader.java +0 -15
  509. package/ReactAndroid/src/main/java/com/facebook/react/bridge/NativeArgumentsParseException.kt +2 -2
  510. package/ReactAndroid/src/main/java/com/facebook/react/bridge/ObjectAlreadyConsumedException.kt +5 -5
  511. package/ReactAndroid/src/main/java/com/facebook/react/bridge/Promise.kt +1 -1
  512. package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactBridge.kt +48 -0
  513. package/ReactAndroid/src/main/java/com/facebook/react/bridge/{ReactMarkerConstants.java → ReactMarkerConstants.kt} +5 -19
  514. package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactModuleWithSpec.kt +1 -1
  515. package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactSoftExceptionLogger.kt +2 -0
  516. package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableNativeArray.kt +1 -1
  517. package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReadableNativeMap.kt +1 -1
  518. package/ReactAndroid/src/main/java/com/facebook/react/bridge/RuntimeExecutor.kt +14 -0
  519. package/ReactAndroid/src/main/java/com/facebook/react/bridge/RuntimeScheduler.kt +14 -0
  520. package/ReactAndroid/src/main/java/com/facebook/react/bridge/UIManagerProvider.kt +2 -2
  521. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/{MessageQueueThread.java → MessageQueueThread.kt} +24 -31
  522. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadHandler.kt +25 -0
  523. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadImpl.kt +186 -0
  524. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/{MessageQueueThreadPerfStats.java → MessageQueueThreadPerfStats.kt} +3 -3
  525. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadSpec.kt +42 -0
  526. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/{QueueThreadExceptionHandler.java → QueueThreadExceptionHandler.kt} +4 -5
  527. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfiguration.kt +30 -0
  528. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfigurationImpl.kt +51 -0
  529. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfigurationSpec.kt +51 -0
  530. package/ReactAndroid/src/main/java/com/facebook/react/common/ReleaseLevel.kt +18 -0
  531. package/ReactAndroid/src/main/java/com/facebook/react/common/annotations/internal/LegacyArchitecture.kt +24 -0
  532. package/ReactAndroid/src/main/java/com/facebook/react/common/annotations/internal/LegacyArchitectureLogLevel.kt +22 -0
  533. package/ReactAndroid/src/main/java/com/facebook/react/common/build/ReactBuildConfig.kt +10 -0
  534. package/ReactAndroid/src/main/java/com/facebook/react/common/futures/SimpleSettableFuture.kt +5 -5
  535. package/ReactAndroid/src/main/java/com/facebook/react/common/mapbuffer/ReadableMapBuffer.kt +14 -35
  536. package/ReactAndroid/src/main/java/com/facebook/react/common/mapbuffer/WritableMapBuffer.kt +0 -6
  537. package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultNewArchitectureEntryPoint.kt +21 -14
  538. package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultReactHost.kt +135 -8
  539. package/ReactAndroid/src/main/java/com/facebook/react/defaults/DefaultReactNativeHost.kt +24 -10
  540. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/BridgeDevSupportManager.java +9 -73
  541. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/CxxInspectorPackagerConnection.java +13 -0
  542. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DefaultDevSupportManagerFactory.kt +2 -2
  543. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevInternalSettings.kt +0 -7
  544. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevServerHelper.java +0 -35
  545. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSettingsActivity.kt +3 -2
  546. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportManagerBase.java +1 -36
  547. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevSupportSoLoader.kt +1 -1
  548. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/{HMRClient.java → HMRClient.kt} +16 -10
  549. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/IInspectorPackagerConnection.kt +16 -0
  550. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/InspectorFlags.kt +3 -3
  551. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/JSDebuggerWebSocketClient.java +1 -1
  552. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PackagerStatusCheck.kt +96 -0
  553. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PausedInDebuggerOverlayDialogManager.kt +70 -0
  554. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PerftestDevSupportManager.kt +2 -2
  555. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ReactInstanceDevHelper.java +0 -5
  556. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/RedBoxContentView.kt +261 -0
  557. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/RedBoxDialogSurfaceDelegate.kt +159 -0
  558. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ReleaseDevSupportManager.kt +42 -47
  559. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/inspector/InspectorNetworkHelper.kt +88 -0
  560. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/inspector/InspectorNetworkRequestListener.kt +29 -0
  561. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/interfaces/DevSupportManager.kt +0 -3
  562. package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManager.java +25 -16
  563. package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManagerBinding.kt +12 -14
  564. package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManagerProviderImpl.kt +73 -0
  565. package/ReactAndroid/src/main/java/com/facebook/react/fabric/SurfaceHandlerBinding.kt +91 -0
  566. package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/EventBeatManager.kt +1 -1
  567. package/ReactAndroid/src/main/java/com/facebook/react/fabric/events/EventEmitterWrapper.kt +2 -0
  568. package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountingManager.java +17 -10
  569. package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.java +4 -10
  570. package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/DestroyUnmountedViewMountItem.kt +3 -6
  571. package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/DispatchIntCommandMountItem.kt +3 -3
  572. package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/DispatchStringCommandMountItem.kt +3 -3
  573. package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/SendAccessibilityEvent.kt +3 -3
  574. package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/SendAccessibilityEventMountItem.kt +3 -3
  575. package/ReactAndroid/src/main/java/com/facebook/react/internal/AndroidChoreographerProvider.kt +5 -5
  576. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlags.kt +45 -57
  577. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsAccessor.kt +4 -4
  578. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxAccessor.kt +81 -101
  579. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxInterop.kt +17 -21
  580. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsDefaults.kt +17 -21
  581. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsLocalAccessor.kt +91 -113
  582. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsOverrides_RNOSS_Canary_Android.kt +37 -0
  583. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsOverrides_RNOSS_Experimental_Android.kt +27 -0
  584. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsOverrides_RNOSS_Stable_Android.kt +20 -0
  585. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsProvider.kt +17 -21
  586. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeNewArchitectureFeatureFlagsDefaults.kt +0 -7
  587. package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModulePerfLogger.kt +70 -0
  588. package/ReactAndroid/src/main/java/com/facebook/react/module/processing/ReactModuleSpecProcessor.java +1 -1
  589. package/ReactAndroid/src/main/java/com/facebook/react/modules/accessibilityinfo/AccessibilityInfoModule.kt +2 -2
  590. package/ReactAndroid/src/main/java/com/facebook/react/modules/appstate/AppStateModule.kt +12 -12
  591. package/ReactAndroid/src/main/java/com/facebook/react/modules/blob/BlobCollector.kt +31 -0
  592. package/ReactAndroid/src/main/java/com/facebook/react/modules/camera/ImageStoreManager.kt +3 -3
  593. package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/DevMenuModule.kt +0 -4
  594. package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/DevSettingsModule.kt +0 -4
  595. package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/SourceCodeModule.kt +1 -1
  596. package/ReactAndroid/src/main/java/com/facebook/react/modules/debug/interfaces/DeveloperSettings.kt +0 -3
  597. package/ReactAndroid/src/main/java/com/facebook/react/modules/deviceinfo/DeviceInfoModule.kt +1 -1
  598. package/ReactAndroid/src/main/java/com/facebook/react/modules/devloading/DevLoadingModule.kt +6 -6
  599. package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/FrescoModule.kt +1 -4
  600. package/ReactAndroid/src/main/java/com/facebook/react/modules/fresco/SystraceRequestListener.kt +1 -1
  601. package/ReactAndroid/src/main/java/com/facebook/react/modules/i18nmanager/I18nManagerModule.kt +1 -1
  602. package/ReactAndroid/src/main/java/com/facebook/react/modules/image/ImageLoaderModule.kt +12 -20
  603. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/{ProgressListener.java → CustomClientBuilder.kt} +5 -3
  604. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/{HeaderUtil.java → HeaderUtil.kt} +15 -13
  605. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/NetworkInterceptorCreator.kt +18 -0
  606. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/OkHttpClientFactory.kt +14 -0
  607. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/OkHttpClientProvider.kt +79 -0
  608. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/{OkHttpClientFactory.java → ProgressListener.kt} +3 -6
  609. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ProgressRequestBody.kt +80 -0
  610. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ProgressiveStringDecoder.kt +85 -0
  611. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ReactCookieJarContainer.kt +1 -1
  612. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/RequestBodyUtil.kt +179 -0
  613. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ResponseUtil.kt +132 -0
  614. package/ReactAndroid/src/main/java/com/facebook/react/modules/permissions/PermissionsModule.kt +6 -6
  615. package/ReactAndroid/src/main/java/com/facebook/react/modules/share/ShareModule.kt +3 -3
  616. package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +2 -2
  617. package/ReactAndroid/src/main/java/com/facebook/react/modules/toast/ToastModule.kt +4 -4
  618. package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/NotificationOnlyHandler.kt +2 -2
  619. package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/{RequestHandler.java → RequestHandler.kt} +3 -5
  620. package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/RequestOnlyHandler.kt +2 -2
  621. package/ReactAndroid/src/main/java/com/facebook/react/packagerconnection/{Responder.java → Responder.kt} +3 -3
  622. package/ReactAndroid/src/main/java/com/facebook/react/processing/ReactLegacyArchitectureProcessor.kt +48 -0
  623. package/ReactAndroid/src/main/java/com/facebook/react/processing/ReactPropertyProcessor.java +31 -3
  624. package/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessCatalystInstance.kt +10 -10
  625. package/ReactAndroid/src/main/java/com/facebook/react/runtime/JSTimerExecutor.kt +3 -3
  626. package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostImpl.java +13 -50
  627. package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostImplDevHelper.kt +0 -5
  628. package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostInspectorTarget.kt +1 -1
  629. package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactInstance.java +12 -15
  630. package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/Executors.kt +2 -2
  631. package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/TaskCompletionSource.kt +7 -7
  632. package/ReactAndroid/src/main/java/com/facebook/react/runtime/internal/bolts/UnobservedErrorNotifier.kt +1 -1
  633. package/ReactAndroid/src/main/java/com/facebook/react/soloader/OpenSourceMergedSoMapping.kt +2 -2
  634. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BackgroundStyleApplicator.kt +17 -41
  635. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManager.java +2 -2
  636. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManagerDelegate.kt +4 -3
  637. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BlendModeHelper.kt +2 -2
  638. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ComponentNameResolver.kt +1 -1
  639. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ComponentNameResolverBinding.kt +1 -2
  640. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/FilterHelper.kt +18 -35
  641. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/GuardedFrameCallback.kt +1 -1
  642. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/JSPointerDispatcher.java +6 -5
  643. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/JSTouchDispatcher.java +0 -7
  644. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/LayoutDirectionUtil.kt +2 -2
  645. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/LengthPercentage.kt +8 -0
  646. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/NativeKind.kt +1 -1
  647. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactAccessibilityDelegate.java +399 -625
  648. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingViewGroup.kt +52 -0
  649. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactCompoundView.kt +3 -3
  650. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactOverflowView.kt +1 -1
  651. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{ReactOverflowViewWithInset.java → ReactOverflowViewWithInset.kt} +10 -10
  652. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactPointerEventsView.kt +3 -3
  653. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactShadowNodeImpl.java +1 -1
  654. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactStage.kt +36 -0
  655. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactYogaConfigProvider.kt +6 -11
  656. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{ReactZIndexedViewGroup.java → ReactZIndexedViewGroup.kt} +4 -4
  657. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/RootViewManager.kt +4 -4
  658. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/SimpleViewManager.kt +7 -7
  659. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{StateWrapper.java → StateWrapper.kt} +9 -13
  660. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIBlock.kt +1 -1
  661. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIConstantsProviderBinding.kt +7 -7
  662. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/{UIManagerModuleListener.java → UIManagerModuleListener.kt} +4 -7
  663. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManager.java +34 -16
  664. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerDelegate.kt +28 -6
  665. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerPropertyUpdater.kt +189 -0
  666. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerResolver.kt +20 -0
  667. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/common/ViewUtil.kt +2 -2
  668. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/BorderDrawable.kt +1 -1
  669. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/CSSBackgroundDrawable.java +18 -12
  670. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/CompositeBackgroundDrawable.kt +141 -158
  671. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/InsetBoxShadowDrawable.kt +4 -6
  672. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/OutlineDrawable.kt +4 -4
  673. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/drawable/OutsetBoxShadowDrawable.kt +3 -5
  674. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/BlackHoleEventDispatcher.kt +15 -23
  675. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/FabricEventDispatcher.kt +10 -9
  676. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/SynchronousEventReceiver.kt +5 -4
  677. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/events/TouchEvent.kt +2 -1
  678. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/AnimatedPropertyType.kt +1 -1
  679. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/InterpolatorType.kt +6 -3
  680. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/LayoutAnimationController.java +2 -0
  681. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/{LayoutAnimationListener.java → LayoutAnimationListener.kt} +3 -3
  682. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/{LayoutHandlingAnimation.java → LayoutHandlingAnimation.kt} +3 -3
  683. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/LayoutUpdateAnimation.kt +2 -2
  684. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation/SimpleSpringInterpolator.kt +5 -5
  685. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderColors.kt +1 -1
  686. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderInsets.kt +2 -2
  687. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/BorderRadiusStyle.kt +6 -6
  688. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/Gradient.kt +2 -19
  689. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/LinearGradient.kt +231 -5
  690. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/LogicalEdge.kt +1 -1
  691. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/style/Overflow.kt +3 -3
  692. package/ReactAndroid/src/main/java/com/facebook/react/util/ExceptionDataHelper.kt +3 -3
  693. package/ReactAndroid/src/main/java/com/facebook/react/util/RCTLog.kt +2 -2
  694. package/ReactAndroid/src/main/java/com/facebook/react/views/debuggingoverlay/DebuggingOverlay.kt +5 -5
  695. package/ReactAndroid/src/main/java/com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager.kt +9 -9
  696. package/ReactAndroid/src/main/java/com/facebook/react/views/debuggingoverlay/TraceUpdate.kt +1 -1
  697. package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events/DrawerClosedEvent.kt +2 -2
  698. package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events/DrawerOpenedEvent.kt +2 -2
  699. package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events/DrawerSlideEvent.kt +2 -2
  700. package/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events/DrawerStateChangedEvent.kt +2 -2
  701. package/ReactAndroid/src/main/java/com/facebook/react/views/image/MultiPostprocessor.kt +4 -4
  702. package/ReactAndroid/src/main/java/com/facebook/react/views/image/ReactImageManager.kt +1 -1
  703. package/ReactAndroid/src/main/java/com/facebook/react/views/modal/ReactModalHostView.kt +36 -7
  704. package/ReactAndroid/src/main/java/com/facebook/react/views/safeareaview/ReactSafeAreaView.kt +1 -2
  705. package/ReactAndroid/src/main/java/com/facebook/react/views/safeareaview/ReactSafeAreaViewManager.kt +2 -2
  706. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactAccessibleScrollView.kt +19 -0
  707. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollContainerLegacyView.kt +11 -10
  708. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager.kt +3 -3
  709. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactHorizontalScrollView.java +2 -0
  710. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollView.java +3 -1
  711. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewAccessibilityDelegate.kt +6 -10
  712. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewHelper.kt +7 -5
  713. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/VelocityHelper.kt +3 -3
  714. package/ReactAndroid/src/main/java/com/facebook/react/views/swiperefresh/RefreshEvent.kt +2 -2
  715. package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitch.kt +6 -6
  716. package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitchEvent.kt +1 -1
  717. package/ReactAndroid/src/main/java/com/facebook/react/views/switchview/ReactSwitchManager.kt +1 -1
  718. package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactRawTextManager.kt +7 -7
  719. package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextView.java +26 -0
  720. package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextViewAccessibilityDelegate.kt +335 -0
  721. package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextViewManager.java +17 -10
  722. package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactVirtualTextViewManager.kt +5 -5
  723. package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageShadowNode.java +10 -5
  724. package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageSpan.java +20 -19
  725. package/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport/FrescoBasedReactTextInlineImageViewManager.kt +3 -3
  726. package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/ReactTextInlineImageShadowNode.kt +21 -0
  727. package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/ReactClickableSpan.kt +8 -1
  728. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/{ContentSizeWatcher.java → ContentSizeWatcher.kt} +2 -2
  729. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.java +41 -11
  730. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/{ScrollWatcher.java → ScrollWatcher.kt} +2 -2
  731. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/{SelectionWatcher.java → SelectionWatcher.kt} +3 -3
  732. package/ReactAndroid/src/main/java/com/facebook/react/views/unimplementedview/ReactUnimplementedViewManager.kt +5 -6
  733. package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.java +1 -0
  734. package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewManager.kt +16 -1
  735. package/ReactAndroid/src/main/java/com/facebook/react/views/view/ViewGroupClickEvent.kt +3 -3
  736. package/ReactAndroid/src/main/java/com/facebook/react/views/view/WindowUtil.kt +3 -3
  737. package/ReactAndroid/src/main/java/com/facebook/systrace/SystraceMessage.kt +1 -1
  738. package/ReactAndroid/src/main/jni/CMakeLists.txt +61 -54
  739. package/ReactAndroid/src/main/jni/react/devsupport/JCxxInspectorPackagerConnectionWebSocketDelegate.cpp +10 -1
  740. package/ReactAndroid/src/main/jni/react/devsupport/JCxxInspectorPackagerConnectionWebSocketDelegate.h +2 -0
  741. package/ReactAndroid/src/main/jni/react/fabric/CMakeLists.txt +17 -16
  742. package/ReactAndroid/src/main/jni/react/fabric/FabricMountingManager.cpp +1 -7
  743. package/ReactAndroid/src/main/jni/react/fabric/FabricUIManagerBinding.cpp +1 -2
  744. package/ReactAndroid/src/main/jni/react/fabric/SurfaceHandlerBinding.cpp +3 -3
  745. package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.cpp +108 -136
  746. package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.h +23 -29
  747. package/ReactAndroid/src/main/jni/react/jni/CMakeLists.txt +1 -1
  748. package/ReactAndroid/src/main/jni/react/jni/OnLoad.cpp +0 -37
  749. package/ReactAndroid/src/main/jni/react/mapbuffer/CMakeLists.txt +1 -1
  750. package/ReactAndroid/src/main/jni/react/mapbuffer/react/common/mapbuffer/JReadableMapBuffer.cpp +4 -8
  751. package/ReactAndroid/src/main/jni/react/mapbuffer/react/common/mapbuffer/JReadableMapBuffer.h +2 -4
  752. package/ReactAndroid/src/main/jni/react/runtime/hermes/jni/CMakeLists.txt +1 -0
  753. package/ReactAndroid/src/main/jni/react/runtime/jni/CMakeLists.txt +1 -0
  754. package/ReactAndroid/src/main/jni/react/uimanager/CMakeLists.txt +2 -2
  755. package/ReactCommon/React-Fabric.podspec +11 -6
  756. package/ReactCommon/React-FabricComponents.podspec +4 -8
  757. package/ReactCommon/React-FabricImage.podspec +2 -6
  758. package/ReactCommon/ReactCommon.podspec +1 -1
  759. package/ReactCommon/cxxreact/React-cxxreact.podspec +2 -1
  760. package/ReactCommon/cxxreact/ReactNativeVersion.h +2 -2
  761. package/ReactCommon/cxxreact/TraceSection.h +7 -4
  762. package/ReactCommon/hermes/React-hermes.podspec +4 -2
  763. package/ReactCommon/hermes/inspector-modern/chrome/HermesRuntimeSamplingProfileSerializer.cpp +168 -0
  764. package/ReactCommon/hermes/inspector-modern/chrome/HermesRuntimeSamplingProfileSerializer.h +22 -0
  765. package/ReactCommon/hermes/inspector-modern/chrome/HermesRuntimeTargetDelegate.cpp +34 -0
  766. package/ReactCommon/hermes/inspector-modern/chrome/HermesRuntimeTargetDelegate.h +6 -0
  767. package/ReactCommon/jsi/React-jsi.podspec +1 -1
  768. package/ReactCommon/jsi/jsi/decorator.h +16 -0
  769. package/ReactCommon/jsi/jsi/jsi.cpp +58 -0
  770. package/ReactCommon/jsi/jsi/jsi.h +34 -0
  771. package/ReactCommon/jsi/jsi/test/testlib.cpp +58 -8
  772. package/ReactCommon/jsiexecutor/React-jsiexecutor.podspec +2 -2
  773. package/ReactCommon/jsiexecutor/jsireact/JSINativeModules.cpp +5 -5
  774. package/ReactCommon/jsinspector-modern/CMakeLists.txt +2 -1
  775. package/ReactCommon/jsinspector-modern/FallbackRuntimeTargetDelegate.cpp +14 -0
  776. package/ReactCommon/jsinspector-modern/FallbackRuntimeTargetDelegate.h +6 -0
  777. package/ReactCommon/jsinspector-modern/HostAgent.cpp +17 -0
  778. package/ReactCommon/jsinspector-modern/HostTarget.cpp +8 -1
  779. package/ReactCommon/jsinspector-modern/InspectorFlags.cpp +11 -11
  780. package/ReactCommon/jsinspector-modern/InspectorFlags.h +6 -0
  781. package/ReactCommon/jsinspector-modern/InspectorPackagerConnection.cpp +15 -1
  782. package/ReactCommon/jsinspector-modern/InspectorPackagerConnectionImpl.h +2 -0
  783. package/ReactCommon/jsinspector-modern/InstanceAgent.cpp +20 -0
  784. package/ReactCommon/jsinspector-modern/InstanceAgent.h +19 -2
  785. package/ReactCommon/jsinspector-modern/NetworkIOAgent.cpp +14 -3
  786. package/ReactCommon/jsinspector-modern/NetworkIOAgent.h +2 -2
  787. package/ReactCommon/jsinspector-modern/RuntimeAgent.cpp +16 -0
  788. package/ReactCommon/jsinspector-modern/RuntimeAgent.h +23 -0
  789. package/ReactCommon/jsinspector-modern/RuntimeTarget.cpp +36 -0
  790. package/ReactCommon/jsinspector-modern/RuntimeTarget.h +60 -2
  791. package/ReactCommon/jsinspector-modern/TracingAgent.cpp +67 -21
  792. package/ReactCommon/jsinspector-modern/TracingAgent.h +20 -0
  793. package/ReactCommon/jsinspector-modern/WebSocketInterfaces.h +7 -1
  794. package/ReactCommon/jsinspector-modern/tests/HostTargetTest.cpp +2 -0
  795. package/ReactCommon/jsinspector-modern/tests/InspectorMocks.h +7 -0
  796. package/ReactCommon/jsinspector-modern/tests/InspectorPackagerConnectionTest.cpp +8 -4
  797. package/ReactCommon/jsinspector-modern/tests/JsiIntegrationTest.cpp +3 -2
  798. package/ReactCommon/jsinspector-modern/tests/utils/InspectorFlagOverridesGuard.cpp +5 -0
  799. package/ReactCommon/jsinspector-modern/tests/utils/InspectorFlagOverridesGuard.h +1 -0
  800. package/ReactCommon/jsinspector-modern/tracing/CMakeLists.txt +1 -0
  801. package/ReactCommon/jsinspector-modern/tracing/EventLoopTaskReporter.cpp +49 -0
  802. package/ReactCommon/jsinspector-modern/tracing/EventLoopTaskReporter.h +31 -0
  803. package/ReactCommon/jsinspector-modern/tracing/InstanceTracingProfile.h +30 -0
  804. package/ReactCommon/jsinspector-modern/tracing/PerformanceTracer.cpp +229 -79
  805. package/ReactCommon/jsinspector-modern/tracing/PerformanceTracer.h +64 -55
  806. package/ReactCommon/jsinspector-modern/tracing/ProfileTreeNode.h +111 -0
  807. package/ReactCommon/jsinspector-modern/tracing/React-jsinspectortracing.podspec +1 -0
  808. package/ReactCommon/jsinspector-modern/tracing/RuntimeSamplingProfile.h +163 -0
  809. package/ReactCommon/jsinspector-modern/tracing/RuntimeSamplingProfileTraceEventSerializer.cpp +231 -0
  810. package/ReactCommon/jsinspector-modern/tracing/RuntimeSamplingProfileTraceEventSerializer.h +30 -0
  811. package/ReactCommon/jsinspector-modern/tracing/TraceEvent.h +65 -0
  812. package/ReactCommon/jsinspector-modern/tracing/TraceEventProfile.h +157 -0
  813. package/ReactCommon/jsinspector-modern/tracing/tests/ProfileTreeNodeTest.cpp +58 -0
  814. package/ReactCommon/jsitooling/CMakeLists.txt +30 -0
  815. package/ReactCommon/jsitooling/React-jsitooling.podspec +66 -0
  816. package/ReactCommon/{react → jsitooling/react}/runtime/JSRuntimeFactory.h +4 -0
  817. package/ReactCommon/jsitooling/react/runtime/JSRuntimeFactoryCAPI.cpp +15 -0
  818. package/ReactCommon/jsitooling/react/runtime/JSRuntimeFactoryCAPI.h +26 -0
  819. package/ReactCommon/oscompat/CMakeLists.txt +14 -0
  820. package/ReactCommon/oscompat/OSCompat.h +18 -0
  821. package/ReactCommon/oscompat/OSCompatPosix.cpp +63 -0
  822. package/ReactCommon/oscompat/OSCompatWindows.cpp +26 -0
  823. package/ReactCommon/oscompat/React-oscompat.podspec +31 -0
  824. package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.cpp +33 -41
  825. package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.h +39 -49
  826. package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.cpp +152 -188
  827. package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.h +20 -24
  828. package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDefaults.h +30 -38
  829. package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDynamicProvider.h +67 -85
  830. package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsProvider.h +10 -12
  831. package/ReactCommon/react/nativemodule/core/platform/ios/React-NativeModulesApple.podspec +4 -9
  832. package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTInteropTurboModule.mm +22 -4
  833. package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.h +22 -1
  834. package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.mm +55 -23
  835. package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.h +7 -0
  836. package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.mm +86 -31
  837. package/ReactCommon/react/nativemodule/defaults/DefaultTurboModules.cpp +2 -2
  838. package/ReactCommon/react/nativemodule/defaults/React-defaultsnativemodule.podspec +1 -5
  839. package/ReactCommon/react/nativemodule/dom/CMakeLists.txt +2 -2
  840. package/ReactCommon/react/nativemodule/dom/NativeDOM.cpp +214 -107
  841. package/ReactCommon/react/nativemodule/dom/NativeDOM.h +55 -38
  842. package/ReactCommon/react/nativemodule/dom/React-domnativemodule.podspec +3 -5
  843. package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.cpp +39 -49
  844. package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.h +17 -21
  845. package/ReactCommon/react/nativemodule/featureflags/React-featureflagsnativemodule.podspec +3 -5
  846. package/ReactCommon/react/nativemodule/idlecallbacks/CMakeLists.txt +1 -1
  847. package/ReactCommon/react/nativemodule/idlecallbacks/React-idlecallbacksnativemodule.podspec +3 -5
  848. package/ReactCommon/react/nativemodule/intersectionobserver/NativeIntersectionObserver.h +1 -1
  849. package/ReactCommon/react/nativemodule/microtasks/React-microtasksnativemodule.podspec +3 -5
  850. package/ReactCommon/react/nativemodule/mutationobserver/NativeMutationObserver.cpp +1 -2
  851. package/ReactCommon/react/nativemodule/samples/ReactCommon-Samples.podspec +2 -7
  852. package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTSampleTurboCxxModule.h +1 -10
  853. package/ReactCommon/react/nativemodule/samples/platform/ios/ReactCommon/RCTSampleTurboCxxModule.mm +1 -24
  854. package/ReactCommon/react/nativemodule/webperformance/NativePerformance.cpp +2 -61
  855. package/ReactCommon/react/performance/timeline/CMakeLists.txt +1 -0
  856. package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.cpp +95 -11
  857. package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.h +4 -1
  858. package/ReactCommon/react/performance/timeline/React-performancetimeline.podspec +1 -0
  859. package/ReactCommon/react/renderer/animations/CMakeLists.txt +10 -10
  860. package/ReactCommon/react/renderer/animations/utils.h +2 -6
  861. package/ReactCommon/react/renderer/attributedstring/CMakeLists.txt +8 -8
  862. package/ReactCommon/react/renderer/attributedstring/conversions.h +107 -0
  863. package/ReactCommon/react/renderer/attributedstring/primitives.h +21 -1
  864. package/ReactCommon/react/renderer/componentregistry/CMakeLists.txt +6 -6
  865. package/ReactCommon/react/renderer/componentregistry/native/CMakeLists.txt +2 -2
  866. package/ReactCommon/react/renderer/components/image/CMakeLists.txt +5 -5
  867. package/ReactCommon/react/renderer/components/legacyviewmanagerinterop/CMakeLists.txt +1 -1
  868. package/ReactCommon/react/renderer/components/modal/CMakeLists.txt +6 -6
  869. package/ReactCommon/react/renderer/components/progressbar/CMakeLists.txt +5 -5
  870. package/ReactCommon/react/renderer/components/root/CMakeLists.txt +3 -3
  871. package/ReactCommon/react/renderer/components/root/RootShadowNode.cpp +5 -0
  872. package/ReactCommon/react/renderer/components/root/RootShadowNode.h +2 -0
  873. package/ReactCommon/react/renderer/components/safeareaview/CMakeLists.txt +5 -5
  874. package/ReactCommon/react/renderer/components/scrollview/CMakeLists.txt +4 -4
  875. package/ReactCommon/react/renderer/components/scrollview/ScrollEvent.cpp +1 -1
  876. package/ReactCommon/react/renderer/components/scrollview/ScrollEvent.h +1 -0
  877. package/ReactCommon/react/renderer/components/switch/CMakeLists.txt +5 -5
  878. package/ReactCommon/react/renderer/components/text/CMakeLists.txt +7 -7
  879. package/ReactCommon/react/renderer/components/textinput/BaseTextInputShadowNode.h +2 -4
  880. package/ReactCommon/react/renderer/components/textinput/CMakeLists.txt +10 -10
  881. package/ReactCommon/react/renderer/components/textinput/TextInputEventEmitter.cpp +2 -0
  882. package/ReactCommon/react/renderer/components/textinput/platform/android/react/renderer/components/androidtextinput/AndroidTextInputShadowNode.cpp +8 -8
  883. package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/primitives.h +7 -0
  884. package/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/propsConversions.h +7 -0
  885. package/ReactCommon/react/renderer/components/unimplementedview/CMakeLists.txt +3 -3
  886. package/ReactCommon/react/renderer/components/view/BaseViewProps.cpp +3 -1
  887. package/ReactCommon/react/renderer/components/view/BoxShadowPropsConversions.h +276 -0
  888. package/ReactCommon/react/renderer/components/view/CMakeLists.txt +4 -3
  889. package/ReactCommon/react/renderer/components/view/CSSConversions.h +96 -0
  890. package/ReactCommon/react/renderer/components/view/FilterPropsConversions.h +386 -0
  891. package/ReactCommon/react/renderer/components/view/YogaStylableProps.cpp +227 -222
  892. package/ReactCommon/react/renderer/components/view/conversions.h +185 -265
  893. package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewProps.cpp +798 -0
  894. package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewProps.h +6 -0
  895. package/ReactCommon/react/renderer/components/view/tests/ConversionsTest.cpp +239 -0
  896. package/ReactCommon/react/renderer/consistency/CMakeLists.txt +3 -3
  897. package/ReactCommon/react/renderer/core/CMakeLists.txt +8 -8
  898. package/ReactCommon/react/renderer/core/ConcreteComponentDescriptor.h +2 -5
  899. package/ReactCommon/react/renderer/core/ConcreteShadowNode.h +10 -0
  900. package/ReactCommon/react/renderer/core/EventBeat.cpp +8 -0
  901. package/ReactCommon/react/renderer/core/EventBeat.h +10 -0
  902. package/ReactCommon/react/renderer/core/EventDispatcher.cpp +1 -6
  903. package/ReactCommon/react/renderer/core/EventQueue.cpp +8 -1
  904. package/ReactCommon/react/renderer/core/LayoutMetrics.h +16 -0
  905. package/ReactCommon/react/renderer/core/LayoutableShadowNode.cpp +12 -5
  906. package/ReactCommon/react/renderer/core/Props.cpp +9 -0
  907. package/ReactCommon/react/renderer/core/Props.h +13 -0
  908. package/ReactCommon/react/renderer/core/RawProps.cpp +0 -16
  909. package/ReactCommon/react/renderer/core/RawProps.h +6 -5
  910. package/ReactCommon/react/renderer/core/ShadowNode.cpp +1 -2
  911. package/ReactCommon/react/renderer/core/ShadowNodeFamily.cpp +11 -5
  912. package/ReactCommon/react/renderer/core/ShadowNodeFamily.h +4 -7
  913. package/ReactCommon/react/renderer/core/tests/FindNodeAtPointTest.cpp +34 -0
  914. package/ReactCommon/react/renderer/core/tests/LayoutableShadowNodeTest.cpp +282 -1
  915. package/ReactCommon/react/renderer/core/tests/ShadowNodeTest.cpp +12 -44
  916. package/ReactCommon/react/renderer/css/CMakeLists.txt +36 -0
  917. package/ReactCommon/react/renderer/css/CSSAngle.h +42 -0
  918. package/ReactCommon/react/renderer/css/CSSColor.h +59 -0
  919. package/ReactCommon/react/renderer/css/CSSColorFunction.h +446 -0
  920. package/ReactCommon/react/renderer/css/CSSCompoundDataType.h +121 -0
  921. package/ReactCommon/react/renderer/css/CSSDataType.h +81 -0
  922. package/ReactCommon/react/renderer/css/CSSDummy.cpp +14 -0
  923. package/ReactCommon/react/renderer/css/CSSFilter.h +341 -0
  924. package/ReactCommon/react/renderer/css/CSSFontVariant.h +65 -0
  925. package/ReactCommon/react/renderer/css/CSSHexColor.h +104 -0
  926. package/ReactCommon/react/renderer/css/CSSKeyword.h +368 -0
  927. package/ReactCommon/react/renderer/css/CSSLength.h +58 -0
  928. package/ReactCommon/react/renderer/css/CSSLengthPercentage.h +21 -0
  929. package/ReactCommon/react/renderer/css/CSSList.h +77 -0
  930. package/ReactCommon/react/renderer/css/CSSNamedColor.h +328 -0
  931. package/ReactCommon/react/renderer/css/CSSNumber.h +40 -0
  932. package/ReactCommon/react/renderer/css/CSSPercentage.h +40 -0
  933. package/ReactCommon/react/renderer/css/CSSRatio.h +70 -0
  934. package/ReactCommon/react/renderer/css/CSSShadow.h +152 -0
  935. package/ReactCommon/react/renderer/css/CSSSyntaxParser.h +174 -81
  936. package/ReactCommon/react/renderer/css/CSSTokenizer.h +6 -4
  937. package/ReactCommon/react/renderer/css/CSSTransform.h +498 -0
  938. package/ReactCommon/react/renderer/css/CSSTransformOrigin.h +226 -0
  939. package/ReactCommon/react/renderer/css/CSSValueParser.h +151 -234
  940. package/ReactCommon/react/renderer/css/CSSZero.h +41 -0
  941. package/ReactCommon/react/renderer/css/React-renderercss.podspec +50 -0
  942. package/ReactCommon/react/renderer/css/tests/CSSAngleTest.cpp +44 -0
  943. package/ReactCommon/react/renderer/css/tests/CSSColorTest.cpp +493 -0
  944. package/ReactCommon/react/renderer/css/tests/CSSFilterTest.cpp +577 -0
  945. package/ReactCommon/react/renderer/css/tests/CSSFontVariantTest.cpp +75 -0
  946. package/ReactCommon/react/renderer/css/tests/CSSKeywordTest.cpp +52 -0
  947. package/ReactCommon/react/renderer/css/tests/CSSLengthPercentageTest.cpp +37 -0
  948. package/ReactCommon/react/renderer/css/tests/CSSLengthTest.cpp +58 -0
  949. package/ReactCommon/react/renderer/css/tests/CSSListTest.cpp +153 -0
  950. package/ReactCommon/react/renderer/css/tests/CSSNumberLengthTest.cpp +21 -0
  951. package/ReactCommon/react/renderer/css/tests/CSSNumberTest.cpp +30 -0
  952. package/ReactCommon/react/renderer/css/tests/CSSRatioTest.cpp +68 -0
  953. package/ReactCommon/react/renderer/css/tests/CSSShadowTest.cpp +339 -0
  954. package/ReactCommon/react/renderer/css/tests/CSSSyntaxParserTest.cpp +338 -45
  955. package/ReactCommon/react/renderer/css/tests/CSSTokenizerTest.cpp +10 -0
  956. package/ReactCommon/react/renderer/css/tests/CSSTransformOriginTest.cpp +428 -0
  957. package/ReactCommon/react/renderer/css/tests/CSSTransformTest.cpp +701 -0
  958. package/ReactCommon/react/renderer/css/tests/CSSValueParserTest.cpp +39 -392
  959. package/ReactCommon/react/renderer/debug/CMakeLists.txt +4 -4
  960. package/ReactCommon/react/renderer/debug/DebugStringConvertible.h +1 -1
  961. package/ReactCommon/react/renderer/debug/React-rendererdebug.podspec +1 -1
  962. package/ReactCommon/react/renderer/dom/CMakeLists.txt +6 -6
  963. package/ReactCommon/react/renderer/dom/DOM.cpp +8 -6
  964. package/ReactCommon/react/renderer/dom/DOM.h +6 -0
  965. package/ReactCommon/react/renderer/element/CMakeLists.txt +6 -6
  966. package/ReactCommon/react/renderer/graphics/CMakeLists.txt +4 -4
  967. package/ReactCommon/react/renderer/graphics/Filter.h +0 -1
  968. package/ReactCommon/react/renderer/graphics/LinearGradient.h +8 -1
  969. package/ReactCommon/react/renderer/graphics/Point.h +23 -17
  970. package/ReactCommon/react/renderer/graphics/React-graphics.podspec +2 -6
  971. package/ReactCommon/react/renderer/graphics/Transform.h +2 -0
  972. package/ReactCommon/react/renderer/graphics/ValueUnit.h +4 -0
  973. package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/HostPlatformColor.h +9 -5
  974. package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/HostPlatformColor.mm +112 -14
  975. package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/PlatformColorParser.mm +1 -1
  976. package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/RCTPlatformColorUtils.h +7 -1
  977. package/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/RCTPlatformColorUtils.mm +1 -0
  978. package/ReactCommon/react/renderer/graphics/tests/PointTest.cpp +87 -0
  979. package/ReactCommon/react/renderer/imagemanager/CMakeLists.txt +9 -9
  980. package/ReactCommon/react/renderer/leakchecker/CMakeLists.txt +5 -5
  981. package/ReactCommon/react/renderer/mapbuffer/CMakeLists.txt +4 -4
  982. package/ReactCommon/react/renderer/mounting/CMakeLists.txt +10 -9
  983. package/ReactCommon/react/renderer/mounting/Differentiator.cpp +140 -341
  984. package/ReactCommon/react/renderer/mounting/Differentiator.h +0 -77
  985. package/ReactCommon/react/renderer/mounting/ShadowTree.cpp +2 -21
  986. package/ReactCommon/react/renderer/mounting/ShadowTree.h +0 -2
  987. package/ReactCommon/react/renderer/mounting/internal/CullingContext.cpp +48 -0
  988. package/ReactCommon/react/renderer/mounting/internal/CullingContext.h +29 -0
  989. package/ReactCommon/react/renderer/mounting/internal/ShadowViewNodePair.h +62 -0
  990. package/ReactCommon/react/renderer/mounting/internal/TinyMap.h +143 -0
  991. package/ReactCommon/react/renderer/mounting/internal/sliceChildShadowNodeViewPairs.cpp +191 -0
  992. package/ReactCommon/react/renderer/mounting/internal/sliceChildShadowNodeViewPairs.h +53 -0
  993. package/ReactCommon/react/renderer/mounting/stubs/StubView.cpp +2 -0
  994. package/ReactCommon/react/renderer/mounting/stubs/StubView.h +1 -0
  995. package/ReactCommon/react/renderer/mounting/stubs/StubViewTree.cpp +127 -0
  996. package/ReactCommon/react/renderer/mounting/stubs/StubViewTree.h +15 -0
  997. package/ReactCommon/react/renderer/mounting/stubs/stubs.cpp +4 -2
  998. package/ReactCommon/react/renderer/mounting/tests/ShadowTreeLifeCycleTest.cpp +11 -9
  999. package/ReactCommon/react/renderer/observers/events/CMakeLists.txt +7 -7
  1000. package/ReactCommon/react/renderer/runtimescheduler/CMakeLists.txt +8 -7
  1001. package/ReactCommon/react/renderer/runtimescheduler/React-runtimescheduler.podspec +2 -6
  1002. package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler.cpp +1 -2
  1003. package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Modern.cpp +3 -0
  1004. package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Modern.h +1 -1
  1005. package/ReactCommon/react/renderer/scheduler/CMakeLists.txt +12 -12
  1006. package/ReactCommon/react/renderer/scheduler/Scheduler.cpp +8 -13
  1007. package/ReactCommon/react/renderer/scheduler/SurfaceHandler.cpp +3 -3
  1008. package/ReactCommon/react/renderer/scheduler/SurfaceHandler.h +3 -3
  1009. package/ReactCommon/react/renderer/telemetry/CMakeLists.txt +6 -6
  1010. package/ReactCommon/react/renderer/textlayoutmanager/CMakeLists.txt +13 -13
  1011. package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTAttributedTextUtils.h +24 -3
  1012. package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTAttributedTextUtils.mm +1 -43
  1013. package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTFontProperties.h +20 -0
  1014. package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTFontUtils.mm +140 -0
  1015. package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextLayoutManager.mm +16 -5
  1016. package/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextPrimitivesConversions.h +2 -2
  1017. package/ReactCommon/react/renderer/uimanager/CMakeLists.txt +14 -14
  1018. package/ReactCommon/react/renderer/uimanager/UIManager.cpp +4 -3
  1019. package/ReactCommon/react/renderer/uimanager/UIManager.h +3 -3
  1020. package/ReactCommon/react/renderer/uimanager/consistency/CMakeLists.txt +6 -6
  1021. package/ReactCommon/react/renderer/uimanager/primitives.h +3 -0
  1022. package/ReactCommon/react/runtime/CMakeLists.txt +1 -0
  1023. package/ReactCommon/react/runtime/React-RuntimeCore.podspec +2 -6
  1024. package/ReactCommon/react/runtime/React-RuntimeHermes.podspec +5 -8
  1025. package/ReactCommon/react/runtime/ReactInstance.cpp +0 -8
  1026. package/ReactCommon/react/runtime/TimerManager.cpp +0 -58
  1027. package/ReactCommon/react/runtime/hermes/HermesInstance.cpp +1 -2
  1028. package/ReactCommon/react/runtime/platform/ios/React-RuntimeApple.podspec +4 -2
  1029. package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTHost.mm +3 -1
  1030. package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm +33 -0
  1031. package/ReactCommon/react/utils/React-utils.podspec +1 -5
  1032. package/ReactCommon/react/utils/TemplateStringLiteral.h +35 -0
  1033. package/ReactCommon/react/utils/fnv1a.h +3 -4
  1034. package/ReactCommon/react/utils/iequals.h +34 -0
  1035. package/ReactCommon/react/utils/toLower.h +22 -0
  1036. package/ReactCommon/reactperflogger/reactperflogger/ReactPerfettoLogger.cpp +31 -4
  1037. package/ReactCommon/reactperflogger/reactperflogger/ReactPerfettoLogger.h +2 -0
  1038. package/ReactCommon/runtimeexecutor/ReactCommon/RuntimeExecutor.h +22 -0
  1039. package/cli.js +11 -2
  1040. package/flow/jest.js +14 -14
  1041. package/gradle/libs.versions.toml +2 -2
  1042. package/index.js +176 -263
  1043. package/jest/mockScrollView.js +1 -1
  1044. package/jest/setup.js +314 -264
  1045. package/package.json +18 -15
  1046. package/react-native.config.js +24 -23
  1047. package/scripts/cocoapods/codegen.rb +4 -15
  1048. package/scripts/cocoapods/codegen_utils.rb +4 -267
  1049. package/scripts/cocoapods/jsengine.rb +17 -7
  1050. package/scripts/cocoapods/new_architecture.rb +6 -36
  1051. package/scripts/cocoapods/utils.rb +16 -5
  1052. package/scripts/codegen/generate-artifacts-executor.js +165 -29
  1053. package/scripts/codegen/templates/RCTAppDependencyProviderMM.template +9 -29
  1054. package/scripts/codegen/templates/RCTModuleProvidersH.template +16 -0
  1055. package/scripts/codegen/templates/RCTModuleProvidersMM.template +51 -0
  1056. package/scripts/codegen/templates/RCTModulesConformingToProtocolsProviderMM.template +30 -9
  1057. package/scripts/codegen/templates/RCTThirdPartyComponentsProviderMM.template +9 -2
  1058. package/scripts/codegen/templates/ReactCodegen.podspec.template +99 -0
  1059. package/scripts/hermes/hermes-utils.js +1 -1
  1060. package/scripts/react_native_pods.rb +47 -3
  1061. package/sdks/.hermesversion +1 -1
  1062. package/sdks/hermesc/linux64-bin/hermesc +0 -0
  1063. package/sdks/hermesc/osx-bin/hermes +0 -0
  1064. package/sdks/hermesc/osx-bin/hermesc +0 -0
  1065. package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
  1066. package/sdks/hermesc/win64-bin/msvcp140.dll +0 -0
  1067. package/sdks/hermesc/win64-bin/vcruntime140.dll +0 -0
  1068. package/sdks/hermesc/win64-bin/vcruntime140_1.dll +0 -0
  1069. package/src/private/animated/createAnimatedPropsHook.js +360 -0
  1070. package/src/private/animated/{useAnimatedPropsMemo.js → createAnimatedPropsMemoHook.js} +84 -32
  1071. package/src/private/components/HScrollViewNativeComponents.js +2 -2
  1072. package/src/private/components/SafeAreaView_INTERNAL_DO_NOT_USE.js +2 -2
  1073. package/src/private/components/VScrollViewNativeComponents.js +1 -1
  1074. package/src/private/debugging/ReactDevToolsSettingsManager.android.js +1 -1
  1075. package/src/private/devmenu/DevMenu.js +2 -2
  1076. package/src/private/featureflags/ReactNativeFeatureFlags.js +53 -75
  1077. package/src/private/featureflags/ReactNativeFeatureFlagsBase.js +5 -7
  1078. package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +10 -12
  1079. package/{Libraries/Inspector → src/private/inspector}/BorderBox.js +3 -3
  1080. package/{Libraries/Inspector → src/private/inspector}/BoxInspector.js +9 -6
  1081. package/{Libraries/Inspector → src/private/inspector}/ElementBox.js +9 -8
  1082. package/{Libraries/Inspector → src/private/inspector}/ElementProperties.js +20 -15
  1083. package/{Libraries/Inspector → src/private/inspector}/Inspector.js +21 -18
  1084. package/{Libraries/Inspector → src/private/inspector}/InspectorOverlay.js +11 -10
  1085. package/{Libraries/Inspector → src/private/inspector}/InspectorPanel.js +17 -15
  1086. package/{Libraries/Inspector → src/private/inspector}/NetworkOverlay.js +43 -27
  1087. package/{Libraries/Inspector → src/private/inspector}/PerformanceOverlay.js +8 -6
  1088. package/{Libraries/Inspector → src/private/inspector}/ReactDevToolsOverlay.js +11 -10
  1089. package/{Libraries/Inspector → src/private/inspector}/StyleInspector.js +6 -6
  1090. package/{Libraries/Network → src/private/inspector}/XHRInterceptor.js +5 -2
  1091. package/{Libraries/Inspector → src/private/inspector}/getInspectorDataForViewAtPoint.js +6 -6
  1092. package/{Libraries/Inspector → src/private/inspector}/resolveBoxStyle.js +5 -4
  1093. package/src/private/renderer/errorhandling/ErrorHandlers.js +5 -5
  1094. package/src/private/setup/setUpDOM.js +43 -3
  1095. package/src/private/specs_DEPRECATED/README.md +7 -0
  1096. package/src/private/{specs → specs_DEPRECATED}/components/ActivityIndicatorViewNativeComponent.js +3 -3
  1097. package/src/private/{specs → specs_DEPRECATED}/components/AndroidDrawerLayoutNativeComponent.js +7 -7
  1098. package/src/private/{specs → specs_DEPRECATED}/components/AndroidHorizontalScrollContentViewNativeComponent.js +3 -3
  1099. package/src/private/{specs → specs_DEPRECATED}/components/AndroidSwipeRefreshLayoutNativeComponent.js +3 -3
  1100. package/src/private/{specs → specs_DEPRECATED}/components/AndroidSwitchNativeComponent.js +5 -5
  1101. package/src/private/{specs → specs_DEPRECATED}/components/DebuggingOverlayNativeComponent.js +3 -3
  1102. package/src/private/{specs → specs_DEPRECATED}/components/ProgressBarAndroidNativeComponent.js +3 -3
  1103. package/src/private/{specs → specs_DEPRECATED}/components/PullToRefreshViewNativeComponent.js +3 -3
  1104. package/src/private/{specs → specs_DEPRECATED}/components/RCTInputAccessoryViewNativeComponent.js +3 -3
  1105. package/src/private/{specs → specs_DEPRECATED}/components/RCTModalHostViewNativeComponent.js +5 -5
  1106. package/src/private/{specs → specs_DEPRECATED}/components/RCTSafeAreaViewNativeComponent.js +3 -3
  1107. package/src/private/{specs → specs_DEPRECATED}/components/SwitchNativeComponent.js +5 -5
  1108. package/src/private/{specs → specs_DEPRECATED}/components/UnimplementedNativeViewNativeComponent.js +3 -3
  1109. package/src/private/{specs → specs_DEPRECATED}/modules/NativeAccessibilityManager.js +2 -2
  1110. package/src/private/{specs → specs_DEPRECATED}/modules/NativeActionSheetManager.js +7 -7
  1111. package/src/private/{specs → specs_DEPRECATED}/modules/NativeAlertManager.js +2 -2
  1112. package/src/private/{specs → specs_DEPRECATED}/modules/NativeAnimatedModule.js +2 -2
  1113. package/src/private/{specs → specs_DEPRECATED}/modules/NativeAnimatedTurboModule.js +2 -2
  1114. package/src/private/{specs → specs_DEPRECATED}/modules/NativeAppState.js +3 -3
  1115. package/src/private/{specs → specs_DEPRECATED}/modules/NativeBlobModule.js +1 -1
  1116. package/src/private/{specs → specs_DEPRECATED}/modules/NativeClipboard.js +1 -1
  1117. package/src/private/{specs → specs_DEPRECATED}/modules/NativeDevMenu.js +0 -1
  1118. package/src/private/{specs → specs_DEPRECATED}/modules/NativeDevSettings.js +0 -1
  1119. package/src/private/{specs → specs_DEPRECATED}/modules/NativeDeviceInfo.js +8 -8
  1120. package/src/private/{specs → specs_DEPRECATED}/modules/NativeDialogManagerAndroid.js +4 -4
  1121. package/src/private/{specs → specs_DEPRECATED}/modules/NativeExceptionsManager.js +3 -3
  1122. package/src/private/{specs → specs_DEPRECATED}/modules/NativeFrameRateLogger.js +1 -1
  1123. package/src/private/{specs → specs_DEPRECATED}/modules/NativeI18nManager.js +2 -2
  1124. package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageEditor.js +9 -9
  1125. package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageLoaderAndroid.js +1 -1
  1126. package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageLoaderIOS.js +1 -1
  1127. package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageStoreAndroid.js +1 -1
  1128. package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageStoreIOS.js +3 -3
  1129. package/src/private/{specs → specs_DEPRECATED}/modules/NativeNetworkingIOS.js +2 -2
  1130. package/src/private/{specs → specs_DEPRECATED}/modules/NativePermissionsAndroid.js +5 -4
  1131. package/src/private/{specs → specs_DEPRECATED}/modules/NativePlatformConstantsAndroid.js +4 -4
  1132. package/src/private/{specs → specs_DEPRECATED}/modules/NativePlatformConstantsIOS.js +4 -4
  1133. package/src/private/{specs → specs_DEPRECATED}/modules/NativePushNotificationManagerIOS.js +7 -7
  1134. package/src/private/{specs → specs_DEPRECATED}/modules/NativeSampleTurboModule.js +2 -2
  1135. package/src/private/{specs → specs_DEPRECATED}/modules/NativeSettingsManager.js +2 -2
  1136. package/src/private/{specs → specs_DEPRECATED}/modules/NativeShareModule.js +3 -3
  1137. package/src/private/{specs → specs_DEPRECATED}/modules/NativeSourceCode.js +2 -2
  1138. package/src/private/{specs → specs_DEPRECATED}/modules/NativeStatusBarManagerAndroid.js +4 -4
  1139. package/src/private/{specs → specs_DEPRECATED}/modules/NativeStatusBarManagerIOS.js +6 -6
  1140. package/src/private/{specs → specs_DEPRECATED}/modules/NativeToastAndroid.js +2 -2
  1141. package/src/private/specs_DEPRECATED/modules/NativeUIManager.js +184 -0
  1142. package/src/private/{specs → specs_DEPRECATED}/modules/NativeVibration.js +1 -1
  1143. package/src/private/{specs → specs_DEPRECATED}/modules/NativeWebSocketModule.js +1 -1
  1144. package/{flow/Position.js → src/private/types/HostComponent.js} +6 -6
  1145. package/src/private/types/HostInstance.js +50 -0
  1146. package/src/private/webapis/dom/events/CustomEvent.js +38 -0
  1147. package/src/private/webapis/dom/events/Event.js +236 -0
  1148. package/src/private/webapis/dom/events/EventHandlerAttributes.js +130 -0
  1149. package/src/private/webapis/dom/events/EventTarget.js +436 -0
  1150. package/src/private/webapis/dom/events/internals/EventInternals.js +120 -0
  1151. package/src/private/webapis/dom/events/internals/EventTargetInternals.js +52 -0
  1152. package/src/private/webapis/dom/nodes/ReactNativeDocument.js +121 -0
  1153. package/src/private/webapis/dom/nodes/ReactNativeElement.js +82 -51
  1154. package/src/private/webapis/dom/nodes/ReadOnlyCharacterData.js +7 -6
  1155. package/src/private/webapis/dom/nodes/ReadOnlyElement.js +26 -26
  1156. package/src/private/webapis/dom/nodes/ReadOnlyNode.js +56 -78
  1157. package/src/private/webapis/dom/nodes/internals/NodeInternals.js +144 -0
  1158. package/src/private/webapis/dom/nodes/internals/ReactNativeDocumentElementInstanceHandle.js +55 -0
  1159. package/src/private/webapis/dom/nodes/internals/ReactNativeDocumentInstanceHandle.js +44 -0
  1160. package/src/private/webapis/dom/nodes/specs/NativeDOM.js +305 -194
  1161. package/src/private/webapis/dom/oldstylecollections/HTMLCollection.js +2 -2
  1162. package/src/private/webapis/dom/oldstylecollections/HTMLCollection.js.flow +1 -1
  1163. package/src/private/webapis/dom/oldstylecollections/NodeList.js +2 -2
  1164. package/src/private/webapis/dom/oldstylecollections/NodeList.js.flow +1 -1
  1165. package/src/private/webapis/{dom/oldstylecollections → geometry}/DOMRectList.js +3 -3
  1166. package/src/private/webapis/{dom/oldstylecollections → geometry}/DOMRectList.js.flow +2 -2
  1167. package/src/private/webapis/html/events/MessageEvent.js +56 -0
  1168. package/src/private/webapis/intersectionobserver/IntersectionObserver.js +6 -6
  1169. package/src/private/webapis/intersectionobserver/IntersectionObserverEntry.js +1 -1
  1170. package/src/private/webapis/intersectionobserver/{IntersectionObserverManager.js → internals/IntersectionObserverManager.js} +20 -17
  1171. package/src/private/webapis/mutationobserver/MutationObserver.js +11 -11
  1172. package/src/private/webapis/mutationobserver/{MutationObserverManager.js → internals/MutationObserverManager.js} +12 -14
  1173. package/src/private/webapis/performance/EventTiming.js +1 -1
  1174. package/src/private/webapis/performance/Performance.js +3 -3
  1175. package/src/private/webapis/performance/PerformanceObserver.js +8 -8
  1176. package/src/private/webapis/performance/{RawPerformanceEntry.js → internals/RawPerformanceEntry.js} +6 -6
  1177. package/src/private/webapis/performance/{Utilities.js → internals/Utilities.js} +1 -1
  1178. package/src/private/webapis/performance/specs/__mocks__/NativePerformanceMock.js +1 -1
  1179. package/src/private/webapis/websockets/events/CloseEvent.js +52 -0
  1180. package/src/private/webapis/xhr/events/ProgressEvent.js +52 -0
  1181. package/src/types/bom.js.flow +403 -0
  1182. package/src/types/dom.js.flow +6271 -0
  1183. package/src/types/globals.d.ts +628 -0
  1184. package/third-party-podspecs/RCT-Folly.podspec +1 -1
  1185. package/third-party-podspecs/fmt.podspec +3 -2
  1186. package/types/index.d.ts +2 -58
  1187. package/types/public/ReactNativeTVTypes.d.ts +9 -7
  1188. package/Libraries/Animated/AnimatedWeb.js +0 -26
  1189. package/Libraries/JSInspector/InspectorAgent.js +0 -27
  1190. package/Libraries/JSInspector/JSInspector.js +0 -33
  1191. package/Libraries/JSInspector/NetworkAgent.js +0 -295
  1192. package/Libraries/Utilities/DebugEnvironment.js +0 -16
  1193. package/Libraries/Utilities/Platform.flow.js +0 -93
  1194. package/Libraries/YellowBox/YellowBoxDeprecated.d.ts +0 -19
  1195. package/Libraries/YellowBox/YellowBoxDeprecated.js +0 -75
  1196. package/React/CoreModules/RCTWebSocketExecutor.h +0 -19
  1197. package/React/CoreModules/RCTWebSocketExecutor.mm +0 -301
  1198. package/React/UIUtils/RCTUIUtils.h +0 -30
  1199. package/React/UIUtils/RCTUIUtils.m +0 -30
  1200. package/ReactAndroid/src/main/java/com/facebook/hermes/reactexecutor/HermesExecutor.java +0 -50
  1201. package/ReactAndroid/src/main/java/com/facebook/hermes/reactexecutor/HermesExecutorFactory.java +0 -57
  1202. package/ReactAndroid/src/main/java/com/facebook/hermes/reactexecutor/RuntimeConfig.kt +0 -13
  1203. package/ReactAndroid/src/main/java/com/facebook/hermes/unicode/AndroidUnicodeUtils.kt +0 -77
  1204. package/ReactAndroid/src/main/java/com/facebook/react/HeadlessJsTaskService.java +0 -208
  1205. package/ReactAndroid/src/main/java/com/facebook/react/bridge/CxxCallbackImpl.java +0 -28
  1206. package/ReactAndroid/src/main/java/com/facebook/react/bridge/DimensionPropConverter.java +0 -33
  1207. package/ReactAndroid/src/main/java/com/facebook/react/bridge/FallbackJSBundleLoader.java +0 -85
  1208. package/ReactAndroid/src/main/java/com/facebook/react/bridge/JavaJSExecutor.kt +0 -50
  1209. package/ReactAndroid/src/main/java/com/facebook/react/bridge/ProxyJavaScriptExecutor.java +0 -80
  1210. package/ReactAndroid/src/main/java/com/facebook/react/bridge/ReactBridge.java +0 -48
  1211. package/ReactAndroid/src/main/java/com/facebook/react/bridge/RuntimeExecutor.java +0 -21
  1212. package/ReactAndroid/src/main/java/com/facebook/react/bridge/RuntimeScheduler.java +0 -21
  1213. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadHandler.java +0 -32
  1214. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadImpl.java +0 -226
  1215. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/MessageQueueThreadSpec.java +0 -65
  1216. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfiguration.java +0 -27
  1217. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfigurationImpl.java +0 -65
  1218. package/ReactAndroid/src/main/java/com/facebook/react/bridge/queue/ReactQueueConfigurationSpec.java +0 -73
  1219. package/ReactAndroid/src/main/java/com/facebook/react/common/mapbuffer/MapBufferSoLoader.kt +0 -35
  1220. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/IInspectorPackagerConnection.java +0 -16
  1221. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PackagerStatusCheck.java +0 -102
  1222. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/PausedInDebuggerOverlayDialogManager.java +0 -89
  1223. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/RedBoxContentView.java +0 -325
  1224. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/RedBoxDialogSurfaceDelegate.java +0 -191
  1225. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/ViewHierarchyUtil.java +0 -40
  1226. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/WebsocketJavaScriptExecutor.java +0 -183
  1227. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/inspector/InspectorNetworkHelper.java +0 -94
  1228. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/inspector/InspectorNetworkRequestListener.java +0 -34
  1229. package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManagerProviderImpl.java +0 -67
  1230. package/ReactAndroid/src/main/java/com/facebook/react/fabric/SurfaceHandlerBinding.java +0 -87
  1231. package/ReactAndroid/src/main/java/com/facebook/react/internal/turbomodule/core/TurboModulePerfLogger.java +0 -93
  1232. package/ReactAndroid/src/main/java/com/facebook/react/modules/blob/BlobCollector.java +0 -34
  1233. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/CountingOutputStream.java +0 -67
  1234. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/CustomClientBuilder.java +0 -14
  1235. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/NetworkInterceptorCreator.java +0 -18
  1236. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/OkHttpClientProvider.java +0 -83
  1237. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ProgressRequestBody.java +0 -79
  1238. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ProgressiveStringDecoder.java +0 -88
  1239. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/RequestBodyUtil.java +0 -166
  1240. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/ResponseUtil.java +0 -123
  1241. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/TLSSocketFactory.java +0 -78
  1242. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingViewGroup.java +0 -57
  1243. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactStage.java +0 -38
  1244. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerPropertyUpdater.java +0 -172
  1245. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerResolver.java +0 -26
  1246. package/ReactAndroid/src/main/java/com/facebook/react/views/common/ViewUtils.kt +0 -24
  1247. package/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/ReactTextInlineImageShadowNode.java +0 -24
  1248. package/ReactAndroid/src/main/jni/react/jni/ProxyExecutor.cpp +0 -138
  1249. package/ReactAndroid/src/main/jni/react/jni/ProxyExecutor.h +0 -64
  1250. package/ReactAndroid/src/main/jni/react/mapbuffer/react/common/mapbuffer/OnLoad.cpp +0 -16
  1251. package/ReactCommon/react/renderer/css/CSSColorUtils.h +0 -373
  1252. package/ReactCommon/react/renderer/css/CSSDeclaredStyle.h +0 -138
  1253. package/ReactCommon/react/renderer/css/CSSKeywords.h +0 -454
  1254. package/ReactCommon/react/renderer/css/CSSProperties.h +0 -1287
  1255. package/ReactCommon/react/renderer/css/CSSValue.h +0 -92
  1256. package/ReactCommon/react/renderer/css/CSSValueVariant.h +0 -267
  1257. package/ReactCommon/react/renderer/css/tests/CSSDeclaredStyleTest.cpp +0 -164
  1258. package/ReactCommon/react/renderer/mounting/tests/MountingTest.cpp +0 -640
  1259. package/src/private/specs/modules/NativeCPUTime.js +0 -24
  1260. package/src/private/specs/modules/NativeFantom.js +0 -37
  1261. package/src/private/specs/modules/NativeUIManager.js +0 -111
  1262. package/types/modules/globals.d.ts +0 -599
  1263. /package/ReactCommon/{react → jsitooling/react}/runtime/JSRuntimeFactory.cpp +0 -0
  1264. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeAccessibilityInfo.js +0 -0
  1265. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeAppearance.js +0 -0
  1266. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeBugReporting.js +0 -0
  1267. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeDevLoadingView.js +0 -0
  1268. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeDeviceEventManager.js +0 -0
  1269. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeFileReaderModule.js +0 -0
  1270. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeHeadlessJsTaskSupport.js +0 -0
  1271. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeIntentAndroid.js +0 -0
  1272. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeJSCHeapCapture.js +0 -0
  1273. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeKeyboardObserver.js +0 -0
  1274. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeLinkingManager.js +0 -0
  1275. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeLogBox.js +0 -0
  1276. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeModalManager.js +0 -0
  1277. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeNetworkingAndroid.js +0 -0
  1278. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeReactDevToolsSettingsManager.js +0 -0
  1279. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeRedBox.js +0 -0
  1280. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeSegmentFetcher.js +0 -0
  1281. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeSoundManager.js +0 -0
  1282. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeTVNavigationEventEmitter.js +0 -0
  1283. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeTiming.js +0 -0
  1284. /package/src/private/webapis/dom/nodes/{utilities → internals}/Traversal.js +0 -0
  1285. /package/src/private/webapis/{dom/geometry → geometry}/DOMRect.js +0 -0
  1286. /package/src/private/webapis/{dom/geometry → geometry}/DOMRectReadOnly.js +0 -0
  1287. /package/src/private/webapis/{dom/oldstylecollections → utils}/ArrayLikeUtils.js +0 -0
@@ -27,18 +27,23 @@ public class com/facebook/react/DebugCorePackage$$ReactModuleInfoProvider : com/
27
27
  }
28
28
 
29
29
  public abstract class com/facebook/react/HeadlessJsTaskService : android/app/Service, com/facebook/react/jstasks/HeadlessJsTaskEventListener {
30
+ public static final field Companion Lcom/facebook/react/HeadlessJsTaskService$Companion;
30
31
  public fun <init> ()V
31
- public static fun acquireWakeLockNow (Landroid/content/Context;)V
32
- protected fun getReactContext ()Lcom/facebook/react/bridge/ReactContext;
33
- protected fun getReactHost ()Lcom/facebook/react/ReactHost;
34
- protected fun getReactNativeHost ()Lcom/facebook/react/ReactNativeHost;
32
+ public static final fun acquireWakeLockNow (Landroid/content/Context;)V
33
+ protected final fun getReactContext ()Lcom/facebook/react/bridge/ReactContext;
34
+ protected final fun getReactHost ()Lcom/facebook/react/ReactHost;
35
+ protected final fun getReactNativeHost ()Lcom/facebook/react/ReactNativeHost;
35
36
  protected fun getTaskConfig (Landroid/content/Intent;)Lcom/facebook/react/jstasks/HeadlessJsTaskConfig;
36
37
  public fun onBind (Landroid/content/Intent;)Landroid/os/IBinder;
37
38
  public fun onDestroy ()V
38
39
  public fun onHeadlessJsTaskFinish (I)V
39
40
  public fun onHeadlessJsTaskStart (I)V
40
41
  public fun onStartCommand (Landroid/content/Intent;II)I
41
- protected fun startTask (Lcom/facebook/react/jstasks/HeadlessJsTaskConfig;)V
42
+ protected final fun startTask (Lcom/facebook/react/jstasks/HeadlessJsTaskConfig;)V
43
+ }
44
+
45
+ public final class com/facebook/react/HeadlessJsTaskService$Companion {
46
+ public final fun acquireWakeLockNow (Landroid/content/Context;)V
42
47
  }
43
48
 
44
49
  public final class com/facebook/react/JSEngineResolutionAlgorithm : java/lang/Enum {
@@ -136,6 +141,8 @@ public class com/facebook/react/ReactActivityDelegate {
136
141
  public fun onUserLeaveHint ()V
137
142
  public fun onWindowFocusChanged (Z)V
138
143
  public fun requestPermissions ([Ljava/lang/String;ILcom/facebook/react/modules/core/PermissionListener;)V
144
+ public fun setReactRootView (Lcom/facebook/react/ReactRootView;)V
145
+ public fun setReactSurface (Lcom/facebook/react/interfaces/fabric/ReactSurface;)V
139
146
  }
140
147
 
141
148
  public abstract interface class com/facebook/react/ReactApplication {
@@ -167,6 +174,8 @@ public class com/facebook/react/ReactDelegate {
167
174
  public fun onUserLeaveHint ()V
168
175
  public fun onWindowFocusChanged (Z)V
169
176
  public fun reload ()V
177
+ public fun setReactRootView (Lcom/facebook/react/ReactRootView;)V
178
+ public fun setReactSurface (Lcom/facebook/react/interfaces/fabric/ReactSurface;)V
170
179
  public fun shouldShowDevMenuOrReload (ILandroid/view/KeyEvent;)Z
171
180
  public fun unloadApp ()V
172
181
  }
@@ -345,11 +354,6 @@ public abstract interface class com/facebook/react/ReactPackage {
345
354
  public fun getModule (Ljava/lang/String;Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/NativeModule;
346
355
  }
347
356
 
348
- public abstract interface class com/facebook/react/ReactPackageLogger {
349
- public abstract fun endProcessPackage ()V
350
- public abstract fun startProcessPackage ()V
351
- }
352
-
353
357
  public abstract class com/facebook/react/ReactPackageTurboModuleManagerDelegate : com/facebook/react/internal/turbomodule/core/TurboModuleManagerDelegate {
354
358
  protected fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/util/List;)V
355
359
  protected fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/util/List;Lcom/facebook/jni/HybridData;)V
@@ -452,34 +456,6 @@ public abstract class com/facebook/react/animated/AnimatedNode {
452
456
  public final class com/facebook/react/animated/AnimatedNode$Companion {
453
457
  }
454
458
 
455
- public abstract interface class com/facebook/react/animated/AnimatedNodeValueListener {
456
- public abstract fun onValueUpdate (D)V
457
- }
458
-
459
- public abstract interface class com/facebook/react/animated/AnimatedNodeWithUpdateableConfig {
460
- public abstract fun onUpdateConfig (Lcom/facebook/react/bridge/ReadableMap;)V
461
- }
462
-
463
- public final class com/facebook/react/animated/InterpolationAnimatedNode : com/facebook/react/animated/ValueAnimatedNode {
464
- public static final field Companion Lcom/facebook/react/animated/InterpolationAnimatedNode$Companion;
465
- public static final field EXTRAPOLATE_TYPE_CLAMP Ljava/lang/String;
466
- public static final field EXTRAPOLATE_TYPE_EXTEND Ljava/lang/String;
467
- public static final field EXTRAPOLATE_TYPE_IDENTITY Ljava/lang/String;
468
- public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
469
- public fun getAnimatedObject ()Ljava/lang/Object;
470
- public fun onAttachedToNode (Lcom/facebook/react/animated/AnimatedNode;)V
471
- public fun onDetachedFromNode (Lcom/facebook/react/animated/AnimatedNode;)V
472
- public fun prettyPrint ()Ljava/lang/String;
473
- public fun update ()V
474
- }
475
-
476
- public final class com/facebook/react/animated/InterpolationAnimatedNode$Companion {
477
- public final fun interpolate (DDDDDLjava/lang/String;Ljava/lang/String;)D
478
- public final fun interpolate (D[D[DLjava/lang/String;Ljava/lang/String;)D
479
- public final fun interpolateColor (D[D[I)I
480
- public final fun interpolateString (Ljava/lang/String;D[D[[DLjava/lang/String;Ljava/lang/String;)Ljava/lang/String;
481
- }
482
-
483
459
  public class com/facebook/react/animated/NativeAnimatedModule : com/facebook/fbreact/specs/NativeAnimatedModuleSpec, com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/bridge/UIManagerListener {
484
460
  public static final field ANIMATED_MODULE_DEBUG Z
485
461
  public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
@@ -549,19 +525,6 @@ public class com/facebook/react/animated/NativeAnimatedNodesManager : com/facebo
549
525
  public fun updateAnimatedNodeConfig (ILcom/facebook/react/bridge/ReadableMap;)V
550
526
  }
551
527
 
552
- public class com/facebook/react/animated/ValueAnimatedNode : com/facebook/react/animated/AnimatedNode {
553
- public fun <init> ()V
554
- public fun <init> (Lcom/facebook/react/bridge/ReadableMap;)V
555
- public synthetic fun <init> (Lcom/facebook/react/bridge/ReadableMap;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
556
- public final fun extractOffset ()V
557
- public final fun flattenOffset ()V
558
- public fun getAnimatedObject ()Ljava/lang/Object;
559
- public final fun getValue ()D
560
- public final fun onValueUpdate ()V
561
- public fun prettyPrint ()Ljava/lang/String;
562
- public final fun setValueListener (Lcom/facebook/react/animated/AnimatedNodeValueListener;)V
563
- }
564
-
565
528
  public abstract interface class com/facebook/react/bridge/ActivityEventListener {
566
529
  public abstract fun onActivityResult (Landroid/app/Activity;IILandroid/content/Intent;)V
567
530
  public abstract fun onNewIntent (Landroid/content/Intent;)V
@@ -716,7 +679,7 @@ public class com/facebook/react/bridge/ColorPropConverter {
716
679
  public static fun resolveResourcePath (Landroid/content/Context;Ljava/lang/String;)Ljava/lang/Integer;
717
680
  }
718
681
 
719
- public class com/facebook/react/bridge/CxxCallbackImpl : com/facebook/jni/HybridClassBase, com/facebook/react/bridge/Callback {
682
+ public final class com/facebook/react/bridge/CxxCallbackImpl : com/facebook/jni/HybridClassBase, com/facebook/react/bridge/Callback {
720
683
  public fun invoke ([Ljava/lang/Object;)V
721
684
  }
722
685
 
@@ -733,16 +696,11 @@ public class com/facebook/react/bridge/CxxModuleWrapperBase : com/facebook/react
733
696
  protected fun resetModule (Lcom/facebook/jni/HybridData;)V
734
697
  }
735
698
 
736
- public class com/facebook/react/bridge/DefaultJSExceptionHandler : com/facebook/react/bridge/JSExceptionHandler {
699
+ public final class com/facebook/react/bridge/DefaultJSExceptionHandler : com/facebook/react/bridge/JSExceptionHandler {
737
700
  public fun <init> ()V
738
701
  public fun handleException (Ljava/lang/Exception;)V
739
702
  }
740
703
 
741
- public class com/facebook/react/bridge/DimensionPropConverter {
742
- public fun <init> ()V
743
- public static fun getDimension (Ljava/lang/Object;)Lcom/facebook/yoga/YogaValue;
744
- }
745
-
746
704
  public abstract interface class com/facebook/react/bridge/Dynamic {
747
705
  public abstract fun asArray ()Lcom/facebook/react/bridge/ReadableArray;
748
706
  public abstract fun asBoolean ()Z
@@ -768,11 +726,6 @@ public class com/facebook/react/bridge/DynamicFromObject : com/facebook/react/br
768
726
  public fun recycle ()V
769
727
  }
770
728
 
771
- public final class com/facebook/react/bridge/FallbackJSBundleLoader : com/facebook/react/bridge/JSBundleLoader {
772
- public fun <init> (Ljava/util/List;)V
773
- public fun loadScript (Lcom/facebook/react/bridge/JSBundleLoaderDelegate;)Ljava/lang/String;
774
- }
775
-
776
729
  public abstract class com/facebook/react/bridge/GuardedAsyncTask : android/os/AsyncTask {
777
730
  protected fun <init> (Lcom/facebook/react/bridge/JSExceptionHandler;)V
778
731
  protected fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
@@ -831,7 +784,6 @@ public abstract class com/facebook/react/bridge/JSBundleLoader {
831
784
  public static fun createCachedSplitBundleFromNetworkLoader (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
832
785
  public static fun createFileLoader (Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
833
786
  public static fun createFileLoader (Ljava/lang/String;Ljava/lang/String;Z)Lcom/facebook/react/bridge/JSBundleLoader;
834
- public static fun createRemoteDebuggerBundleLoader (Ljava/lang/String;Ljava/lang/String;)Lcom/facebook/react/bridge/JSBundleLoader;
835
787
  public abstract fun loadScript (Lcom/facebook/react/bridge/JSBundleLoaderDelegate;)Ljava/lang/String;
836
788
  }
837
789
 
@@ -858,21 +810,6 @@ public class com/facebook/react/bridge/JSONArguments {
858
810
  public static fun fromJSONObjectString (Ljava/lang/String;)Lcom/facebook/react/bridge/ReadableMap;
859
811
  }
860
812
 
861
- public abstract interface class com/facebook/react/bridge/JavaJSExecutor {
862
- public abstract fun close ()V
863
- public abstract fun executeJSCall (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
864
- public abstract fun loadBundle (Ljava/lang/String;)V
865
- public abstract fun setGlobalVariable (Ljava/lang/String;Ljava/lang/String;)V
866
- }
867
-
868
- public abstract interface class com/facebook/react/bridge/JavaJSExecutor$Factory {
869
- public abstract fun create ()Lcom/facebook/react/bridge/JavaJSExecutor;
870
- }
871
-
872
- public final class com/facebook/react/bridge/JavaJSExecutor$ProxyExecutorException : java/lang/Exception {
873
- public fun <init> (Ljava/lang/Throwable;)V
874
- }
875
-
876
813
  public final class com/facebook/react/bridge/JavaOnlyArray : com/facebook/react/bridge/ReadableArray, com/facebook/react/bridge/WritableArray {
877
814
  public static final field Companion Lcom/facebook/react/bridge/JavaOnlyArray$Companion;
878
815
  public fun <init> ()V
@@ -1107,31 +1044,10 @@ public class com/facebook/react/bridge/PromiseImpl : com/facebook/react/bridge/P
1107
1044
  public fun resolve (Ljava/lang/Object;)V
1108
1045
  }
1109
1046
 
1110
- public class com/facebook/react/bridge/ProxyJavaScriptExecutor : com/facebook/react/bridge/JavaScriptExecutor {
1111
- public fun <init> (Lcom/facebook/react/bridge/JavaJSExecutor;)V
1112
- public fun close ()V
1113
- public fun getName ()Ljava/lang/String;
1114
- }
1115
-
1116
- public class com/facebook/react/bridge/ProxyJavaScriptExecutor$Factory : com/facebook/react/bridge/JavaScriptExecutorFactory {
1117
- public fun <init> (Lcom/facebook/react/bridge/JavaJSExecutor$Factory;)V
1118
- public fun create ()Lcom/facebook/react/bridge/JavaScriptExecutor;
1119
- public fun startSamplingProfiler ()V
1120
- public fun stopSamplingProfiler (Ljava/lang/String;)V
1121
- }
1122
-
1123
1047
  public abstract class com/facebook/react/bridge/ReactApplicationContext : com/facebook/react/bridge/ReactContext {
1124
1048
  public fun <init> (Landroid/content/Context;)V
1125
1049
  }
1126
1050
 
1127
- public class com/facebook/react/bridge/ReactBridge {
1128
- public fun <init> ()V
1129
- public static fun getLoadEndTime ()J
1130
- public static fun getLoadStartTime ()J
1131
- public static fun isInitialized ()Z
1132
- public static fun staticInit ()V
1133
- }
1134
-
1135
1051
  public abstract class com/facebook/react/bridge/ReactContext : android/content/ContextWrapper {
1136
1052
  protected field mInteropModuleRegistry Lcom/facebook/react/bridge/interop/InteropModuleRegistry;
1137
1053
  public fun <init> (Landroid/content/Context;)V
@@ -1338,8 +1254,6 @@ public final class com/facebook/react/bridge/ReactMarkerConstants : java/lang/En
1338
1254
  public static final field JAVASCRIPT_EXECUTOR_FACTORY_INJECT_START Lcom/facebook/react/bridge/ReactMarkerConstants;
1339
1255
  public static final field LOAD_REACT_NATIVE_FABRIC_SO_FILE_END Lcom/facebook/react/bridge/ReactMarkerConstants;
1340
1256
  public static final field LOAD_REACT_NATIVE_FABRIC_SO_FILE_START Lcom/facebook/react/bridge/ReactMarkerConstants;
1341
- public static final field LOAD_REACT_NATIVE_MAPBUFFER_SO_FILE_END Lcom/facebook/react/bridge/ReactMarkerConstants;
1342
- public static final field LOAD_REACT_NATIVE_MAPBUFFER_SO_FILE_START Lcom/facebook/react/bridge/ReactMarkerConstants;
1343
1257
  public static final field LOAD_REACT_NATIVE_SO_FILE_END Lcom/facebook/react/bridge/ReactMarkerConstants;
1344
1258
  public static final field LOAD_REACT_NATIVE_SO_FILE_START Lcom/facebook/react/bridge/ReactMarkerConstants;
1345
1259
  public static final field NATIVE_MODULE_INITIALIZE_END Lcom/facebook/react/bridge/ReactMarkerConstants;
@@ -1391,7 +1305,8 @@ public final class com/facebook/react/bridge/ReactMarkerConstants : java/lang/En
1391
1305
  public static final field VM_INIT Lcom/facebook/react/bridge/ReactMarkerConstants;
1392
1306
  public static final field loadApplicationScript_endStringConvert Lcom/facebook/react/bridge/ReactMarkerConstants;
1393
1307
  public static final field loadApplicationScript_startStringConvert Lcom/facebook/react/bridge/ReactMarkerConstants;
1394
- public fun hasMatchingNameMarker ()Z
1308
+ public static fun getEntries ()Lkotlin/enums/EnumEntries;
1309
+ public final fun hasMatchingNameMarker ()Z
1395
1310
  public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/bridge/ReactMarkerConstants;
1396
1311
  public static fun values ()[Lcom/facebook/react/bridge/ReactMarkerConstants;
1397
1312
  }
@@ -1429,6 +1344,7 @@ public final class com/facebook/react/bridge/ReactSoftExceptionLogger$Categories
1429
1344
  public static final field RVG_IS_VIEW_CLIPPED Ljava/lang/String;
1430
1345
  public static final field RVG_ON_VIEW_REMOVED Ljava/lang/String;
1431
1346
  public static final field SOFT_ASSERTIONS Ljava/lang/String;
1347
+ public static final field SURFACE_MOUNTING_MANAGER_MISSING_VIEWSTATE Ljava/lang/String;
1432
1348
  }
1433
1349
 
1434
1350
  public abstract interface class com/facebook/react/bridge/ReactSoftExceptionLogger$ReactSoftExceptionListener {
@@ -1533,12 +1449,10 @@ public final class com/facebook/react/bridge/RetryableMountingLayerException : j
1533
1449
  public fun <init> (Ljava/lang/Throwable;)V
1534
1450
  }
1535
1451
 
1536
- public class com/facebook/react/bridge/RuntimeExecutor {
1537
- public fun <init> (Lcom/facebook/jni/HybridData;)V
1452
+ public final class com/facebook/react/bridge/RuntimeExecutor : com/facebook/jni/HybridClassBase {
1538
1453
  }
1539
1454
 
1540
- public class com/facebook/react/bridge/RuntimeScheduler {
1541
- public fun <init> (Lcom/facebook/jni/HybridData;)V
1455
+ public final class com/facebook/react/bridge/RuntimeScheduler : com/facebook/jni/HybridClassBase {
1542
1456
  }
1543
1457
 
1544
1458
  public final class com/facebook/react/bridge/SoftAssertions {
@@ -1659,18 +1573,20 @@ public abstract interface class com/facebook/react/bridge/queue/MessageQueueThre
1659
1573
  public abstract fun runOnQueue (Ljava/lang/Runnable;)Z
1660
1574
  }
1661
1575
 
1662
- public class com/facebook/react/bridge/queue/MessageQueueThreadHandler : android/os/Handler {
1576
+ public final class com/facebook/react/bridge/queue/MessageQueueThreadHandler : android/os/Handler {
1663
1577
  public fun <init> (Landroid/os/Looper;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)V
1664
1578
  public fun dispatchMessage (Landroid/os/Message;)V
1665
1579
  }
1666
1580
 
1667
- public class com/facebook/react/bridge/queue/MessageQueueThreadImpl : com/facebook/react/bridge/queue/MessageQueueThread {
1581
+ public final class com/facebook/react/bridge/queue/MessageQueueThreadImpl : com/facebook/react/bridge/queue/MessageQueueThread {
1582
+ public static final field Companion Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl$Companion;
1583
+ public synthetic fun <init> (Ljava/lang/String;Landroid/os/Looper;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;Lcom/facebook/react/bridge/queue/MessageQueueThreadPerfStats;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
1668
1584
  public fun assertIsOnThread ()V
1669
1585
  public fun assertIsOnThread (Ljava/lang/String;)V
1670
1586
  public fun callOnQueue (Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;
1671
- public static fun create (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl;
1672
- public fun getLooper ()Landroid/os/Looper;
1673
- public fun getName ()Ljava/lang/String;
1587
+ public static final fun create (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl;
1588
+ public final fun getLooper ()Landroid/os/Looper;
1589
+ public final fun getName ()Ljava/lang/String;
1674
1590
  public fun getPerfStats ()Lcom/facebook/react/bridge/queue/MessageQueueThreadPerfStats;
1675
1591
  public fun isIdle ()Z
1676
1592
  public fun isOnThread ()Z
@@ -1679,26 +1595,40 @@ public class com/facebook/react/bridge/queue/MessageQueueThreadImpl : com/facebo
1679
1595
  public fun runOnQueue (Ljava/lang/Runnable;)Z
1680
1596
  }
1681
1597
 
1682
- public class com/facebook/react/bridge/queue/MessageQueueThreadPerfStats {
1598
+ public final class com/facebook/react/bridge/queue/MessageQueueThreadImpl$Companion {
1599
+ public final fun create (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl;
1600
+ }
1601
+
1602
+ public final class com/facebook/react/bridge/queue/MessageQueueThreadPerfStats {
1683
1603
  public field cpuTime J
1684
1604
  public field wallTime J
1685
1605
  public fun <init> ()V
1686
1606
  }
1687
1607
 
1688
- public class com/facebook/react/bridge/queue/MessageQueueThreadSpec {
1608
+ public final class com/facebook/react/bridge/queue/MessageQueueThreadSpec {
1609
+ public static final field Companion Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$Companion;
1689
1610
  public static final field DEFAULT_STACK_SIZE_BYTES J
1690
- public fun getName ()Ljava/lang/String;
1691
- public fun getStackSize ()J
1692
- public fun getThreadType ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;
1693
- public static fun mainThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1694
- public static fun newBackgroundThreadSpec (Ljava/lang/String;)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1695
- public static fun newBackgroundThreadSpec (Ljava/lang/String;J)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1696
- public static fun newUIBackgroundTreadSpec (Ljava/lang/String;)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1611
+ public synthetic fun <init> (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;Ljava/lang/String;JLkotlin/jvm/internal/DefaultConstructorMarker;)V
1612
+ public final fun getName ()Ljava/lang/String;
1613
+ public final fun getStackSize ()J
1614
+ public final fun getThreadType ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;
1615
+ public static final fun mainThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1616
+ public static final fun newBackgroundThreadSpec (Ljava/lang/String;)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1617
+ public static final fun newBackgroundThreadSpec (Ljava/lang/String;J)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1618
+ public static final fun newUIBackgroundTreadSpec (Ljava/lang/String;)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1697
1619
  }
1698
1620
 
1699
- protected final class com/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType : java/lang/Enum {
1621
+ public final class com/facebook/react/bridge/queue/MessageQueueThreadSpec$Companion {
1622
+ public final fun mainThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1623
+ public final fun newBackgroundThreadSpec (Ljava/lang/String;)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1624
+ public final fun newBackgroundThreadSpec (Ljava/lang/String;J)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1625
+ public final fun newUIBackgroundTreadSpec (Ljava/lang/String;)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1626
+ }
1627
+
1628
+ public final class com/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType : java/lang/Enum {
1700
1629
  public static final field MAIN_UI Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;
1701
1630
  public static final field NEW_BACKGROUND Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;
1631
+ public static fun getEntries ()Lkotlin/enums/EnumEntries;
1702
1632
  public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;
1703
1633
  public static fun values ()[Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec$ThreadType;
1704
1634
  }
@@ -1714,27 +1644,38 @@ public abstract interface class com/facebook/react/bridge/queue/ReactQueueConfig
1714
1644
  public abstract fun getUIQueueThread ()Lcom/facebook/react/bridge/queue/MessageQueueThread;
1715
1645
  }
1716
1646
 
1717
- public class com/facebook/react/bridge/queue/ReactQueueConfigurationImpl : com/facebook/react/bridge/queue/ReactQueueConfiguration {
1718
- public static fun create (Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationImpl;
1647
+ public final class com/facebook/react/bridge/queue/ReactQueueConfigurationImpl : com/facebook/react/bridge/queue/ReactQueueConfiguration {
1648
+ public static final field Companion Lcom/facebook/react/bridge/queue/ReactQueueConfigurationImpl$Companion;
1649
+ public synthetic fun <init> (Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl;Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl;Lcom/facebook/react/bridge/queue/MessageQueueThreadImpl;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
1650
+ public static final fun create (Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationImpl;
1719
1651
  public fun destroy ()V
1720
1652
  public fun getJSQueueThread ()Lcom/facebook/react/bridge/queue/MessageQueueThread;
1721
1653
  public fun getNativeModulesQueueThread ()Lcom/facebook/react/bridge/queue/MessageQueueThread;
1722
1654
  public fun getUIQueueThread ()Lcom/facebook/react/bridge/queue/MessageQueueThread;
1723
1655
  }
1724
1656
 
1725
- public class com/facebook/react/bridge/queue/ReactQueueConfigurationSpec {
1657
+ public final class com/facebook/react/bridge/queue/ReactQueueConfigurationImpl$Companion {
1658
+ public final fun create (Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;Lcom/facebook/react/bridge/queue/QueueThreadExceptionHandler;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationImpl;
1659
+ }
1660
+
1661
+ public final class com/facebook/react/bridge/queue/ReactQueueConfigurationSpec {
1662
+ public static final field Companion Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Companion;
1726
1663
  public fun <init> (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;)V
1727
- public static fun builder ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder;
1728
- public static fun createDefault ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;
1729
- public fun getJSQueueThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1730
- public fun getNativeModulesQueueThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1664
+ public static final fun createDefault ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;
1665
+ public final fun getJSQueueThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1666
+ public final fun getNativeModulesQueueThreadSpec ()Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;
1731
1667
  }
1732
1668
 
1733
- public class com/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder {
1669
+ public final class com/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder {
1734
1670
  public fun <init> ()V
1735
- public fun build ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;
1736
- public fun setJSQueueThreadSpec (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder;
1737
- public fun setNativeModulesQueueThreadSpec (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder;
1671
+ public final fun build ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;
1672
+ public final fun setJSQueueThreadSpec (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder;
1673
+ public final fun setNativeModulesQueueThreadSpec (Lcom/facebook/react/bridge/queue/MessageQueueThreadSpec;)Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder;
1674
+ }
1675
+
1676
+ public final class com/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Companion {
1677
+ public final fun builder ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec$Builder;
1678
+ public final fun createDefault ()Lcom/facebook/react/bridge/queue/ReactQueueConfigurationSpec;
1738
1679
  }
1739
1680
 
1740
1681
  public final class com/facebook/react/common/ClassFinder {
@@ -1807,6 +1748,15 @@ public final class com/facebook/react/common/ReactConstants {
1807
1748
  public static final field UNSET I
1808
1749
  }
1809
1750
 
1751
+ public final class com/facebook/react/common/ReleaseLevel : java/lang/Enum {
1752
+ public static final field CANARY Lcom/facebook/react/common/ReleaseLevel;
1753
+ public static final field EXPERIMENTAL Lcom/facebook/react/common/ReleaseLevel;
1754
+ public static final field STABLE Lcom/facebook/react/common/ReleaseLevel;
1755
+ public static fun getEntries ()Lkotlin/enums/EnumEntries;
1756
+ public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/common/ReleaseLevel;
1757
+ public static fun values ()[Lcom/facebook/react/common/ReleaseLevel;
1758
+ }
1759
+
1810
1760
  public final class com/facebook/react/common/ShakeDetector : android/hardware/SensorEventListener {
1811
1761
  public fun <init> (Lcom/facebook/react/common/ShakeDetector$ShakeListener;)V
1812
1762
  public fun <init> (Lcom/facebook/react/common/ShakeDetector$ShakeListener;I)V
@@ -1854,22 +1804,6 @@ public final class com/facebook/react/common/SystemClock {
1854
1804
  public static final fun uptimeMillis ()J
1855
1805
  }
1856
1806
 
1857
- public abstract interface annotation class com/facebook/react/common/annotations/DeprecatedInNewArchitecture : java/lang/annotation/Annotation {
1858
- public abstract fun message ()Ljava/lang/String;
1859
- }
1860
-
1861
- public abstract interface annotation class com/facebook/react/common/annotations/FrameworkAPI : java/lang/annotation/Annotation {
1862
- }
1863
-
1864
- public abstract interface annotation class com/facebook/react/common/annotations/StableReactNativeAPI : java/lang/annotation/Annotation {
1865
- }
1866
-
1867
- public abstract interface annotation class com/facebook/react/common/annotations/UnstableReactNativeAPI : java/lang/annotation/Annotation {
1868
- }
1869
-
1870
- public abstract interface annotation class com/facebook/react/common/annotations/VisibleForTesting : java/lang/annotation/Annotation {
1871
- }
1872
-
1873
1807
  public final class com/facebook/react/common/assets/ReactFontManager {
1874
1808
  public static final field Companion Lcom/facebook/react/common/assets/ReactFontManager$Companion;
1875
1809
  public fun <init> ()V
@@ -1904,10 +1838,12 @@ public final class com/facebook/react/common/assets/ReactFontManager$TypefaceSty
1904
1838
 
1905
1839
  public final class com/facebook/react/common/build/ReactBuildConfig {
1906
1840
  public static final field DEBUG Z
1841
+ public static final field ENABLE_PERFETTO Z
1907
1842
  public static final field EXOPACKAGE_FLAGS I
1908
1843
  public static final field INSTANCE Lcom/facebook/react/common/build/ReactBuildConfig;
1909
1844
  public static final field IS_INTERNAL_BUILD Z
1910
1845
  public static final field UNSTABLE_ENABLE_FUSEBOX_RELEASE Z
1846
+ public static final field UNSTABLE_ENABLE_MINIFY_LEGACY_ARCHITECTURE Z
1911
1847
  }
1912
1848
 
1913
1849
  public abstract interface class com/facebook/react/common/mapbuffer/MapBuffer : java/lang/Iterable, kotlin/jvm/internal/markers/KMappedMarker {
@@ -1952,12 +1888,7 @@ public abstract interface class com/facebook/react/common/mapbuffer/MapBuffer$En
1952
1888
  public abstract fun getType ()Lcom/facebook/react/common/mapbuffer/MapBuffer$DataType;
1953
1889
  }
1954
1890
 
1955
- public final class com/facebook/react/common/mapbuffer/MapBufferSoLoader {
1956
- public static final field INSTANCE Lcom/facebook/react/common/mapbuffer/MapBufferSoLoader;
1957
- public static final fun staticInit ()V
1958
- }
1959
-
1960
- public final class com/facebook/react/common/mapbuffer/ReadableMapBuffer : com/facebook/react/common/mapbuffer/MapBuffer {
1891
+ public final class com/facebook/react/common/mapbuffer/ReadableMapBuffer : com/facebook/jni/HybridClassBase, com/facebook/react/common/mapbuffer/MapBuffer {
1961
1892
  public static final field Companion Lcom/facebook/react/common/mapbuffer/ReadableMapBuffer$Companion;
1962
1893
  public fun contains (I)Z
1963
1894
  public fun entryAt (I)Lcom/facebook/react/common/mapbuffer/MapBuffer$Entry;
@@ -2019,12 +1950,14 @@ public final class com/facebook/react/defaults/DefaultNewArchitectureEntryPoint
2019
1950
  public static final fun getBridgelessEnabled ()Z
2020
1951
  public static final fun getConcurrentReactEnabled ()Z
2021
1952
  public static final fun getFabricEnabled ()Z
1953
+ public final fun getReleaseLevel ()Lcom/facebook/react/common/ReleaseLevel;
2022
1954
  public static final fun getTurboModulesEnabled ()Z
2023
1955
  public static final fun load ()V
2024
1956
  public static final fun load (Z)V
2025
1957
  public static final fun load (ZZ)V
2026
1958
  public static final fun load (ZZZ)V
2027
1959
  public static synthetic fun load$default (ZZZILjava/lang/Object;)V
1960
+ public final fun setReleaseLevel (Lcom/facebook/react/common/ReleaseLevel;)V
2028
1961
  }
2029
1962
 
2030
1963
  public class com/facebook/react/defaults/DefaultReactActivityDelegate : com/facebook/react/ReactActivityDelegate {
@@ -2036,15 +1969,21 @@ public class com/facebook/react/defaults/DefaultReactActivityDelegate : com/face
2036
1969
 
2037
1970
  public final class com/facebook/react/defaults/DefaultReactHost {
2038
1971
  public static final field INSTANCE Lcom/facebook/react/defaults/DefaultReactHost;
2039
- public static final fun getDefaultReactHost (Landroid/content/Context;Lcom/facebook/react/ReactNativeHost;)Lcom/facebook/react/ReactHost;
1972
+ public static final fun getDefaultReactHost (Landroid/content/Context;Lcom/facebook/react/ReactNativeHost;Lcom/facebook/react/runtime/JSRuntimeFactory;)Lcom/facebook/react/ReactHost;
1973
+ public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/facebook/react/runtime/JSRuntimeFactory;ZLjava/util/List;)Lcom/facebook/react/ReactHost;
1974
+ public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/facebook/react/runtime/JSRuntimeFactory;ZLjava/util/List;Lkotlin/jvm/functions/Function1;Lcom/facebook/react/runtime/BindingsInstaller;)Lcom/facebook/react/ReactHost;
2040
1975
  public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;)Lcom/facebook/react/ReactHost;
2041
1976
  public static final fun getDefaultReactHost (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;Lkotlin/jvm/functions/Function1;Lcom/facebook/react/runtime/BindingsInstaller;)Lcom/facebook/react/ReactHost;
1977
+ public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Lcom/facebook/react/ReactNativeHost;Lcom/facebook/react/runtime/JSRuntimeFactory;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
1978
+ public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/facebook/react/runtime/JSRuntimeFactory;ZLjava/util/List;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
1979
+ public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/facebook/react/runtime/JSRuntimeFactory;ZLjava/util/List;Lkotlin/jvm/functions/Function1;Lcom/facebook/react/runtime/BindingsInstaller;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
2042
1980
  public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
2043
1981
  public static synthetic fun getDefaultReactHost$default (Landroid/content/Context;Ljava/util/List;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/util/List;Lkotlin/jvm/functions/Function1;Lcom/facebook/react/runtime/BindingsInstaller;ILjava/lang/Object;)Lcom/facebook/react/ReactHost;
2044
1982
  }
2045
1983
 
2046
1984
  public abstract class com/facebook/react/defaults/DefaultReactNativeHost : com/facebook/react/ReactNativeHost {
2047
1985
  protected fun <init> (Landroid/app/Application;)V
1986
+ public fun clear ()V
2048
1987
  protected fun getJSEngineResolutionAlgorithm ()Lcom/facebook/react/JSEngineResolutionAlgorithm;
2049
1988
  protected fun getReactPackageTurboModuleManagerDelegateBuilder ()Lcom/facebook/react/ReactPackageTurboModuleManagerDelegate$Builder;
2050
1989
  protected fun getUIManagerProvider ()Lcom/facebook/react/bridge/UIManagerProvider;
@@ -2097,14 +2036,7 @@ public final class com/facebook/react/devsupport/DefaultDevLoadingViewImplementa
2097
2036
  public final fun setDevLoadingEnabled (Z)V
2098
2037
  }
2099
2038
 
2100
- public final class com/facebook/react/devsupport/DefaultDevSupportManagerFactory : com/facebook/react/devsupport/DevSupportManagerFactory {
2101
- public fun <init> ()V
2102
- public fun create (Landroid/content/Context;Lcom/facebook/react/devsupport/ReactInstanceDevHelper;Ljava/lang/String;ZLcom/facebook/react/devsupport/interfaces/RedBoxHandler;Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;ILjava/util/Map;Lcom/facebook/react/common/SurfaceDelegateFactory;Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;Lcom/facebook/react/devsupport/interfaces/PausedInDebuggerOverlayManager;)Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
2103
- public fun create (Landroid/content/Context;Lcom/facebook/react/devsupport/ReactInstanceDevHelper;Ljava/lang/String;ZLcom/facebook/react/devsupport/interfaces/RedBoxHandler;Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;ILjava/util/Map;Lcom/facebook/react/common/SurfaceDelegateFactory;Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;Lcom/facebook/react/devsupport/interfaces/PausedInDebuggerOverlayManager;Z)Lcom/facebook/react/devsupport/interfaces/DevSupportManager;
2104
- }
2105
-
2106
2039
  public class com/facebook/react/devsupport/DevServerHelper {
2107
- public static final field RELOAD_APP_EXTRA_JS_PROXY Ljava/lang/String;
2108
2040
  public fun <init> (Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;Landroid/content/Context;Lcom/facebook/react/packagerconnection/PackagerConnectionSettings;)V
2109
2041
  public fun closeInspectorConnection ()V
2110
2042
  public fun closePackagerConnection ()V
@@ -2114,12 +2046,10 @@ public class com/facebook/react/devsupport/DevServerHelper {
2114
2046
  public fun downloadBundleResourceFromUrlSync (Ljava/lang/String;Ljava/io/File;)Ljava/io/File;
2115
2047
  public fun getDevServerBundleURL (Ljava/lang/String;)Ljava/lang/String;
2116
2048
  public fun getDevServerSplitBundleURL (Ljava/lang/String;)Ljava/lang/String;
2117
- public fun getJSBundleURLForRemoteDebugging (Ljava/lang/String;)Ljava/lang/String;
2118
2049
  public fun getSourceMapUrl (Ljava/lang/String;)Ljava/lang/String;
2119
2050
  public fun getSourceUrl (Ljava/lang/String;)Ljava/lang/String;
2120
2051
  public fun getWebsocketProxyURL ()Ljava/lang/String;
2121
2052
  public fun isPackagerRunning (Lcom/facebook/react/devsupport/interfaces/PackagerStatusCallback;)V
2122
- public fun launchJSDevtools ()V
2123
2053
  public fun openDebugger (Lcom/facebook/react/bridge/ReactContext;Ljava/lang/String;)V
2124
2054
  public fun openInspectorConnection ()V
2125
2055
  public fun openPackagerConnection (Ljava/lang/String;Lcom/facebook/react/devsupport/DevServerHelper$PackagerCommandListener;)V
@@ -2134,11 +2064,6 @@ public abstract interface class com/facebook/react/devsupport/DevServerHelper$Pa
2134
2064
  public abstract fun onPackagerReloadCommand ()V
2135
2065
  }
2136
2066
 
2137
- public final class com/facebook/react/devsupport/DevSettingsActivity : android/preference/PreferenceActivity {
2138
- public fun <init> ()V
2139
- public fun onCreate (Landroid/os/Bundle;)V
2140
- }
2141
-
2142
2067
  public abstract class com/facebook/react/devsupport/DevSupportManagerBase : com/facebook/react/devsupport/interfaces/DevSupportManager {
2143
2068
  protected final field mReactInstanceDevHelper Lcom/facebook/react/devsupport/ReactInstanceDevHelper;
2144
2069
  public fun <init> (Landroid/content/Context;Lcom/facebook/react/devsupport/ReactInstanceDevHelper;Ljava/lang/String;ZLcom/facebook/react/devsupport/interfaces/RedBoxHandler;Lcom/facebook/react/devsupport/interfaces/DevBundleDownloadListener;ILjava/util/Map;Lcom/facebook/react/common/SurfaceDelegateFactory;Lcom/facebook/react/devsupport/interfaces/DevLoadingViewManager;Lcom/facebook/react/devsupport/interfaces/PausedInDebuggerOverlayManager;)V
@@ -2157,7 +2082,6 @@ public abstract class com/facebook/react/devsupport/DevSupportManagerBase : com/
2157
2082
  public fun getDevSupportEnabled ()Z
2158
2083
  public fun getDownloadedJSBundleFile ()Ljava/lang/String;
2159
2084
  public fun getJSAppBundleName ()Ljava/lang/String;
2160
- public fun getJSBundleURLForRemoteDebugging ()Ljava/lang/String;
2161
2085
  public fun getLastErrorCookie ()I
2162
2086
  public fun getLastErrorStack ()[Lcom/facebook/react/devsupport/interfaces/StackFrame;
2163
2087
  public fun getLastErrorTitle ()Ljava/lang/String;
@@ -2185,7 +2109,6 @@ public abstract class com/facebook/react/devsupport/DevSupportManagerBase : com/
2185
2109
  public fun setFpsDebugEnabled (Z)V
2186
2110
  public fun setHotModuleReplacementEnabled (Z)V
2187
2111
  public fun setPackagerLocationCustomizer (Lcom/facebook/react/devsupport/interfaces/DevSupportManager$PackagerLocationCustomizer;)V
2188
- public fun setRemoteJSDebugEnabled (Z)V
2189
2112
  protected fun showDevLoadingViewForRemoteJSEnabled ()V
2190
2113
  public fun showDevOptionsDialog ()V
2191
2114
  public fun showNewJSError (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;I)V
@@ -2218,30 +2141,6 @@ public abstract interface class com/facebook/react/devsupport/HMRClient : com/fa
2218
2141
  public abstract fun setup (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IZLjava/lang/String;)V
2219
2142
  }
2220
2143
 
2221
- public final class com/facebook/react/devsupport/InspectorFlags {
2222
- public static final field INSTANCE Lcom/facebook/react/devsupport/InspectorFlags;
2223
- public static final fun getFuseboxEnabled ()Z
2224
- public static final fun getIsProfilingBuild ()Z
2225
- }
2226
-
2227
- public class com/facebook/react/devsupport/JSDebuggerWebSocketClient : okhttp3/WebSocketListener {
2228
- public fun <init> ()V
2229
- public fun closeQuietly ()V
2230
- public fun connect (Ljava/lang/String;Lcom/facebook/react/devsupport/JSDebuggerWebSocketClient$JSDebuggerCallback;)V
2231
- public fun executeJSCall (Ljava/lang/String;Ljava/lang/String;Lcom/facebook/react/devsupport/JSDebuggerWebSocketClient$JSDebuggerCallback;)V
2232
- public fun loadBundle (Ljava/lang/String;Ljava/util/HashMap;Lcom/facebook/react/devsupport/JSDebuggerWebSocketClient$JSDebuggerCallback;)V
2233
- public fun onClosed (Lokhttp3/WebSocket;ILjava/lang/String;)V
2234
- public fun onFailure (Lokhttp3/WebSocket;Ljava/lang/Throwable;Lokhttp3/Response;)V
2235
- public fun onMessage (Lokhttp3/WebSocket;Ljava/lang/String;)V
2236
- public fun onOpen (Lokhttp3/WebSocket;Lokhttp3/Response;)V
2237
- public fun prepareJSRuntime (Lcom/facebook/react/devsupport/JSDebuggerWebSocketClient$JSDebuggerCallback;)V
2238
- }
2239
-
2240
- public abstract interface class com/facebook/react/devsupport/JSDebuggerWebSocketClient$JSDebuggerCallback {
2241
- public abstract fun onFailure (Ljava/lang/Throwable;)V
2242
- public abstract fun onSuccess (Ljava/lang/String;)V
2243
- }
2244
-
2245
2144
  public final class com/facebook/react/devsupport/LogBoxModule : com/facebook/fbreact/specs/NativeLogBoxSpec {
2246
2145
  public static final field Companion Lcom/facebook/react/devsupport/LogBoxModule$Companion;
2247
2146
  public static final field NAME Ljava/lang/String;
@@ -2254,19 +2153,6 @@ public final class com/facebook/react/devsupport/LogBoxModule : com/facebook/fbr
2254
2153
  public final class com/facebook/react/devsupport/LogBoxModule$Companion {
2255
2154
  }
2256
2155
 
2257
- public class com/facebook/react/devsupport/PackagerStatusCheck {
2258
- public fun <init> ()V
2259
- public fun <init> (Lokhttp3/OkHttpClient;)V
2260
- public fun run (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/PackagerStatusCallback;)V
2261
- }
2262
-
2263
- public final class com/facebook/react/devsupport/PerftestDevSupportManager : com/facebook/react/devsupport/ReleaseDevSupportManager {
2264
- public fun <init> (Landroid/content/Context;)V
2265
- public fun getDevSettings ()Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;
2266
- public fun startInspector ()V
2267
- public fun stopInspector ()V
2268
- }
2269
-
2270
2156
  public abstract interface class com/facebook/react/devsupport/ReactInstanceDevHelper {
2271
2157
  public abstract fun createRootView (Ljava/lang/String;)Landroid/view/View;
2272
2158
  public abstract fun destroyRootView (Landroid/view/View;)V
@@ -2275,22 +2161,10 @@ public abstract interface class com/facebook/react/devsupport/ReactInstanceDevHe
2275
2161
  public abstract fun getJavaScriptExecutorFactory ()Lcom/facebook/react/bridge/JavaScriptExecutorFactory;
2276
2162
  public abstract fun loadBundle (Lcom/facebook/react/bridge/JSBundleLoader;)Lcom/facebook/react/interfaces/TaskInterface;
2277
2163
  public abstract fun onJSBundleLoadedFromServer ()V
2278
- public abstract fun onReloadWithJSDebugger (Lcom/facebook/react/bridge/JavaJSExecutor$Factory;)V
2279
2164
  public abstract fun reload (Ljava/lang/String;)V
2280
2165
  public abstract fun toggleElementInspector ()V
2281
2166
  }
2282
2167
 
2283
- public class com/facebook/react/devsupport/RedBoxContentView : android/widget/LinearLayout, android/widget/AdapterView$OnItemClickListener {
2284
- public fun <init> (Landroid/content/Context;)V
2285
- public fun init ()V
2286
- public fun onItemClick (Landroid/widget/AdapterView;Landroid/view/View;IJ)V
2287
- public fun refreshContentView ()V
2288
- public fun resetReporting ()V
2289
- public fun setDevSupportManager (Lcom/facebook/react/devsupport/interfaces/DevSupportManager;)Lcom/facebook/react/devsupport/RedBoxContentView;
2290
- public fun setExceptionDetails (Ljava/lang/String;[Lcom/facebook/react/devsupport/interfaces/StackFrame;)V
2291
- public fun setRedBoxHandler (Lcom/facebook/react/devsupport/interfaces/RedBoxHandler;)Lcom/facebook/react/devsupport/RedBoxContentView;
2292
- }
2293
-
2294
2168
  public class com/facebook/react/devsupport/ReleaseDevSupportManager : com/facebook/react/devsupport/interfaces/DevSupportManager {
2295
2169
  public fun <init> ()V
2296
2170
  public fun addCustomDevOption (Ljava/lang/String;Lcom/facebook/react/devsupport/interfaces/DevOptionHandler;)V
@@ -2303,7 +2177,6 @@ public class com/facebook/react/devsupport/ReleaseDevSupportManager : com/facebo
2303
2177
  public fun getDevSettings ()Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;
2304
2178
  public fun getDevSupportEnabled ()Z
2305
2179
  public fun getDownloadedJSBundleFile ()Ljava/lang/String;
2306
- public fun getJSBundleURLForRemoteDebugging ()Ljava/lang/String;
2307
2180
  public fun getLastErrorCookie ()I
2308
2181
  public fun getLastErrorStack ()[Lcom/facebook/react/devsupport/interfaces/StackFrame;
2309
2182
  public fun getLastErrorTitle ()Ljava/lang/String;
@@ -2330,7 +2203,6 @@ public class com/facebook/react/devsupport/ReleaseDevSupportManager : com/facebo
2330
2203
  public fun setFpsDebugEnabled (Z)V
2331
2204
  public fun setHotModuleReplacementEnabled (Z)V
2332
2205
  public fun setPackagerLocationCustomizer (Lcom/facebook/react/devsupport/interfaces/DevSupportManager$PackagerLocationCustomizer;)V
2333
- public fun setRemoteJSDebugEnabled (Z)V
2334
2206
  public fun showDevOptionsDialog ()V
2335
2207
  public fun showNewJSError (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;I)V
2336
2208
  public fun showNewJavaError (Ljava/lang/String;Ljava/lang/Throwable;)V
@@ -2373,36 +2245,6 @@ public class com/facebook/react/devsupport/StackTraceHelper$StackFrameImpl : com
2373
2245
  public fun toJSON ()Lorg/json/JSONObject;
2374
2246
  }
2375
2247
 
2376
- public class com/facebook/react/devsupport/WebsocketJavaScriptExecutor : com/facebook/react/bridge/JavaJSExecutor {
2377
- public fun <init> ()V
2378
- public fun close ()V
2379
- public fun connect (Ljava/lang/String;Lcom/facebook/react/devsupport/WebsocketJavaScriptExecutor$JSExecutorConnectCallback;)V
2380
- public fun executeJSCall (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
2381
- public fun loadBundle (Ljava/lang/String;)V
2382
- public fun setGlobalVariable (Ljava/lang/String;Ljava/lang/String;)V
2383
- }
2384
-
2385
- public abstract interface class com/facebook/react/devsupport/WebsocketJavaScriptExecutor$JSExecutorConnectCallback {
2386
- public abstract fun onFailure (Ljava/lang/Throwable;)V
2387
- public abstract fun onSuccess ()V
2388
- }
2389
-
2390
- public class com/facebook/react/devsupport/WebsocketJavaScriptExecutor$WebsocketExecutorTimeoutException : java/lang/Exception {
2391
- public fun <init> (Ljava/lang/String;)V
2392
- }
2393
-
2394
- public class com/facebook/react/devsupport/inspector/InspectorNetworkHelper {
2395
- public static fun loadNetworkResource (Ljava/lang/String;Lcom/facebook/react/devsupport/inspector/InspectorNetworkRequestListener;)V
2396
- }
2397
-
2398
- public class com/facebook/react/devsupport/inspector/InspectorNetworkRequestListener {
2399
- public fun <init> (Lcom/facebook/jni/HybridData;)V
2400
- public fun onCompletion ()V
2401
- public fun onData (Ljava/lang/String;)V
2402
- public fun onError (Ljava/lang/String;)V
2403
- public fun onHeaders (ILjava/util/Map;)V
2404
- }
2405
-
2406
2248
  public abstract interface class com/facebook/react/devsupport/interfaces/BundleLoadCallback {
2407
2249
  public fun onError (Ljava/lang/Exception;)V
2408
2250
  public abstract fun onSuccess ()V
@@ -2440,7 +2282,6 @@ public abstract interface class com/facebook/react/devsupport/interfaces/DevSupp
2440
2282
  public abstract fun getDevSettings ()Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;
2441
2283
  public abstract fun getDevSupportEnabled ()Z
2442
2284
  public abstract fun getDownloadedJSBundleFile ()Ljava/lang/String;
2443
- public abstract fun getJSBundleURLForRemoteDebugging ()Ljava/lang/String;
2444
2285
  public abstract fun getLastErrorCookie ()I
2445
2286
  public abstract fun getLastErrorStack ()[Lcom/facebook/react/devsupport/interfaces/StackFrame;
2446
2287
  public abstract fun getLastErrorTitle ()Ljava/lang/String;
@@ -2466,7 +2307,6 @@ public abstract interface class com/facebook/react/devsupport/interfaces/DevSupp
2466
2307
  public abstract fun setFpsDebugEnabled (Z)V
2467
2308
  public abstract fun setHotModuleReplacementEnabled (Z)V
2468
2309
  public abstract fun setPackagerLocationCustomizer (Lcom/facebook/react/devsupport/interfaces/DevSupportManager$PackagerLocationCustomizer;)V
2469
- public abstract fun setRemoteJSDebugEnabled (Z)V
2470
2310
  public abstract fun showDevOptionsDialog ()V
2471
2311
  public abstract fun showNewJSError (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;I)V
2472
2312
  public abstract fun showNewJavaError (Ljava/lang/String;Ljava/lang/Throwable;)V
@@ -2611,7 +2451,6 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
2611
2451
  public fun resolveView (I)Landroid/view/View;
2612
2452
  public fun sendAccessibilityEvent (II)V
2613
2453
  public fun sendAccessibilityEventFromJS (IILjava/lang/String;)V
2614
- public fun setBinding (Lcom/facebook/react/fabric/FabricUIManagerBinding;)V
2615
2454
  public fun setJSResponder (IIIZ)V
2616
2455
  public fun startSurface (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;II)I
2617
2456
  public fun startSurface (Lcom/facebook/react/interfaces/fabric/SurfaceHandler;Landroid/content/Context;Landroid/view/View;)V
@@ -2622,7 +2461,7 @@ public class com/facebook/react/fabric/FabricUIManager : com/facebook/react/brid
2622
2461
  public fun updateRootLayoutSpecs (IIIII)V
2623
2462
  }
2624
2463
 
2625
- public class com/facebook/react/fabric/FabricUIManagerProviderImpl : com/facebook/react/bridge/UIManagerProvider {
2464
+ public final class com/facebook/react/fabric/FabricUIManagerProviderImpl : com/facebook/react/bridge/UIManagerProvider {
2626
2465
  public fun <init> (Lcom/facebook/react/fabric/ComponentFactory;Lcom/facebook/react/uimanager/ViewManagerRegistry;)V
2627
2466
  public fun createUIManager (Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/UIManager;
2628
2467
  }
@@ -2636,19 +2475,6 @@ public class com/facebook/react/fabric/StateWrapperImpl : com/facebook/jni/Hybri
2636
2475
  public fun updateStateImpl (Lcom/facebook/react/bridge/NativeMap;)V
2637
2476
  }
2638
2477
 
2639
- public class com/facebook/react/fabric/SurfaceHandlerBinding : com/facebook/jni/HybridClassBase, com/facebook/react/interfaces/fabric/SurfaceHandler {
2640
- public static final field DISPLAY_MODE_HIDDEN I
2641
- public static final field DISPLAY_MODE_SUSPENDED I
2642
- public static final field DISPLAY_MODE_VISIBLE I
2643
- public fun <init> (Ljava/lang/String;)V
2644
- public fun getModuleName ()Ljava/lang/String;
2645
- public fun getSurfaceId ()I
2646
- public fun isRunning ()Z
2647
- public fun setLayoutConstraints (IIIIZZF)V
2648
- public fun setMountable (Z)V
2649
- public fun setProps (Lcom/facebook/react/bridge/NativeMap;)V
2650
- }
2651
-
2652
2478
  public final class com/facebook/react/fabric/events/EventBeatManager : com/facebook/react/uimanager/events/BatchEventDispatchedListener {
2653
2479
  public fun <init> ()V
2654
2480
  public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
@@ -3137,7 +2963,6 @@ public final class com/facebook/react/modules/core/TimingModule$Companion {
3137
2963
 
3138
2964
  public final class com/facebook/react/modules/debug/DevMenuModule : com/facebook/fbreact/specs/NativeDevMenuSpec {
3139
2965
  public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;Lcom/facebook/react/devsupport/interfaces/DevSupportManager;)V
3140
- public fun debugRemotely (Z)V
3141
2966
  public fun reload ()V
3142
2967
  public fun setHotLoadingEnabled (Z)V
3143
2968
  public fun setProfilingEnabled (Z)V
@@ -3154,7 +2979,6 @@ public final class com/facebook/react/modules/debug/DevSettingsModule : com/face
3154
2979
  public fun reloadWithReason (Ljava/lang/String;)V
3155
2980
  public fun removeListeners (D)V
3156
2981
  public fun setHotLoadingEnabled (Z)V
3157
- public fun setIsDebuggingRemotely (Z)V
3158
2982
  public fun setIsShakeToShowDevMenuEnabled (Z)V
3159
2983
  public fun setProfilingEnabled (Z)V
3160
2984
  public fun toggleElementInspector ()V
@@ -3204,7 +3028,6 @@ public abstract interface class com/facebook/react/modules/debug/interfaces/Deve
3204
3028
  public abstract fun isHotModuleReplacementEnabled ()Z
3205
3029
  public abstract fun isJSDevModeEnabled ()Z
3206
3030
  public abstract fun isJSMinifyEnabled ()Z
3207
- public abstract fun isRemoteJSDebugEnabled ()Z
3208
3031
  public abstract fun isStartSamplingProfilerOnInit ()Z
3209
3032
  public abstract fun setAnimationFpsDebugEnabled (Z)V
3210
3033
  public abstract fun setDeviceDebugEnabled (Z)V
@@ -3213,7 +3036,6 @@ public abstract interface class com/facebook/react/modules/debug/interfaces/Deve
3213
3036
  public abstract fun setHotModuleReplacementEnabled (Z)V
3214
3037
  public abstract fun setJSDevModeEnabled (Z)V
3215
3038
  public abstract fun setJSMinifyEnabled (Z)V
3216
- public abstract fun setRemoteJSDebugEnabled (Z)V
3217
3039
  public abstract fun setStartSamplingProfilerOnInit (Z)V
3218
3040
  }
3219
3041
 
@@ -3298,20 +3120,6 @@ public final class com/facebook/react/modules/fresco/ReactNetworkImageRequest$Co
3298
3120
  public static synthetic fun fromBuilderWithHeaders$default (Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest$Companion;Lcom/facebook/imagepipeline/request/ImageRequestBuilder;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/modules/fresco/ImageCacheControl;ILjava/lang/Object;)Lcom/facebook/react/modules/fresco/ReactNetworkImageRequest;
3299
3121
  }
3300
3122
 
3301
- public final class com/facebook/react/modules/fresco/SystraceRequestListener : com/facebook/imagepipeline/listener/BaseRequestListener {
3302
- public fun <init> ()V
3303
- public fun onProducerEvent (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
3304
- public fun onProducerFinishWithCancellation (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)V
3305
- public fun onProducerFinishWithFailure (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;Ljava/util/Map;)V
3306
- public fun onProducerFinishWithSuccess (Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)V
3307
- public fun onProducerStart (Ljava/lang/String;Ljava/lang/String;)V
3308
- public fun onRequestCancellation (Ljava/lang/String;)V
3309
- public fun onRequestFailure (Lcom/facebook/imagepipeline/request/ImageRequest;Ljava/lang/String;Ljava/lang/Throwable;Z)V
3310
- public fun onRequestStart (Lcom/facebook/imagepipeline/request/ImageRequest;Ljava/lang/Object;Ljava/lang/String;Z)V
3311
- public fun onRequestSuccess (Lcom/facebook/imagepipeline/request/ImageRequest;Ljava/lang/String;Z)V
3312
- public fun requiresExtraMap (Ljava/lang/String;)Z
3313
- }
3314
-
3315
3123
  public final class com/facebook/react/modules/i18nmanager/I18nManagerModule : com/facebook/fbreact/specs/NativeI18nManagerSpec {
3316
3124
  public static final field Companion Lcom/facebook/react/modules/i18nmanager/I18nManagerModule$Companion;
3317
3125
  public static final field NAME Ljava/lang/String;
@@ -3441,15 +3249,15 @@ public abstract interface class com/facebook/react/modules/network/OkHttpClientF
3441
3249
  public abstract fun createNewNetworkModuleClient ()Lokhttp3/OkHttpClient;
3442
3250
  }
3443
3251
 
3444
- public class com/facebook/react/modules/network/OkHttpClientProvider {
3445
- public fun <init> ()V
3446
- public static fun createClient ()Lokhttp3/OkHttpClient;
3447
- public static fun createClient (Landroid/content/Context;)Lokhttp3/OkHttpClient;
3448
- public static fun createClientBuilder ()Lokhttp3/OkHttpClient$Builder;
3449
- public static fun createClientBuilder (Landroid/content/Context;)Lokhttp3/OkHttpClient$Builder;
3450
- public static fun createClientBuilder (Landroid/content/Context;I)Lokhttp3/OkHttpClient$Builder;
3451
- public static fun getOkHttpClient ()Lokhttp3/OkHttpClient;
3452
- public static fun setOkHttpClientFactory (Lcom/facebook/react/modules/network/OkHttpClientFactory;)V
3252
+ public final class com/facebook/react/modules/network/OkHttpClientProvider {
3253
+ public static final field INSTANCE Lcom/facebook/react/modules/network/OkHttpClientProvider;
3254
+ public static final fun createClient ()Lokhttp3/OkHttpClient;
3255
+ public static final fun createClient (Landroid/content/Context;)Lokhttp3/OkHttpClient;
3256
+ public static final fun createClientBuilder ()Lokhttp3/OkHttpClient$Builder;
3257
+ public static final fun createClientBuilder (Landroid/content/Context;)Lokhttp3/OkHttpClient$Builder;
3258
+ public static final fun createClientBuilder (Landroid/content/Context;I)Lokhttp3/OkHttpClient$Builder;
3259
+ public static final fun getOkHttpClient ()Lokhttp3/OkHttpClient;
3260
+ public static final fun setOkHttpClientFactory (Lcom/facebook/react/modules/network/OkHttpClientFactory;)V
3453
3261
  }
3454
3262
 
3455
3263
  public class com/facebook/react/modules/network/OkHttpCompat {
@@ -3470,27 +3278,12 @@ public class com/facebook/react/modules/network/ProgressResponseBody : okhttp3/R
3470
3278
  public fun totalBytesRead ()J
3471
3279
  }
3472
3280
 
3473
- public class com/facebook/react/modules/network/ResponseUtil {
3474
- public fun <init> ()V
3475
- public static fun onDataReceived (Lcom/facebook/react/bridge/ReactApplicationContext;ILcom/facebook/react/bridge/WritableMap;)V
3476
- public static fun onDataReceived (Lcom/facebook/react/bridge/ReactApplicationContext;ILjava/lang/String;)V
3477
- public static fun onDataReceivedProgress (Lcom/facebook/react/bridge/ReactApplicationContext;IJJ)V
3478
- public static fun onDataSend (Lcom/facebook/react/bridge/ReactApplicationContext;IJJ)V
3479
- public static fun onIncrementalDataReceived (Lcom/facebook/react/bridge/ReactApplicationContext;ILjava/lang/String;JJ)V
3480
- public static fun onRequestError (Lcom/facebook/react/bridge/ReactApplicationContext;ILjava/lang/String;Ljava/lang/Throwable;)V
3481
- public static fun onRequestSuccess (Lcom/facebook/react/bridge/ReactApplicationContext;I)V
3482
- public static fun onResponseReceived (Lcom/facebook/react/bridge/ReactApplicationContext;IILcom/facebook/react/bridge/WritableMap;Ljava/lang/String;)V
3483
- }
3484
-
3485
- public class com/facebook/react/modules/network/TLSSocketFactory : javax/net/ssl/SSLSocketFactory {
3281
+ public final class com/facebook/react/modules/network/ReactCookieJarContainer : com/facebook/react/modules/network/CookieJarContainer {
3486
3282
  public fun <init> ()V
3487
- public fun createSocket (Ljava/lang/String;I)Ljava/net/Socket;
3488
- public fun createSocket (Ljava/lang/String;ILjava/net/InetAddress;I)Ljava/net/Socket;
3489
- public fun createSocket (Ljava/net/InetAddress;I)Ljava/net/Socket;
3490
- public fun createSocket (Ljava/net/InetAddress;ILjava/net/InetAddress;I)Ljava/net/Socket;
3491
- public fun createSocket (Ljava/net/Socket;Ljava/lang/String;IZ)Ljava/net/Socket;
3492
- public fun getDefaultCipherSuites ()[Ljava/lang/String;
3493
- public fun getSupportedCipherSuites ()[Ljava/lang/String;
3283
+ public fun loadForRequest (Lokhttp3/HttpUrl;)Ljava/util/List;
3284
+ public fun removeCookieJar ()V
3285
+ public fun saveFromResponse (Lokhttp3/HttpUrl;Ljava/util/List;)V
3286
+ public fun setCookieJar (Lokhttp3/CookieJar;)V
3494
3287
  }
3495
3288
 
3496
3289
  public final class com/facebook/react/modules/permissions/PermissionsModule : com/facebook/fbreact/specs/NativePermissionsAndroidSpec, com/facebook/react/modules/core/PermissionListener {
@@ -3804,39 +3597,6 @@ public final class com/facebook/react/runtime/hermes/HermesInstance : com/facebo
3804
3597
  public final class com/facebook/react/runtime/hermes/HermesInstance$Companion {
3805
3598
  }
3806
3599
 
3807
- public class com/facebook/react/runtime/internal/bolts/Task : com/facebook/react/interfaces/TaskInterface {
3808
- public static final field IMMEDIATE_EXECUTOR Ljava/util/concurrent/Executor;
3809
- public static final field UI_THREAD_EXECUTOR Ljava/util/concurrent/Executor;
3810
- public static fun call (Ljava/util/concurrent/Callable;)Lcom/facebook/react/runtime/internal/bolts/Task;
3811
- public static fun call (Ljava/util/concurrent/Callable;Ljava/util/concurrent/Executor;)Lcom/facebook/react/runtime/internal/bolts/Task;
3812
- public static fun cancelled ()Lcom/facebook/react/runtime/internal/bolts/Task;
3813
- public fun continueWith (Lcom/facebook/react/runtime/internal/bolts/Continuation;)Lcom/facebook/react/runtime/internal/bolts/Task;
3814
- public fun continueWith (Lcom/facebook/react/runtime/internal/bolts/Continuation;Ljava/util/concurrent/Executor;)Lcom/facebook/react/runtime/internal/bolts/Task;
3815
- public fun continueWithTask (Lcom/facebook/react/runtime/internal/bolts/Continuation;)Lcom/facebook/react/runtime/internal/bolts/Task;
3816
- public fun continueWithTask (Lcom/facebook/react/runtime/internal/bolts/Continuation;Ljava/util/concurrent/Executor;)Lcom/facebook/react/runtime/internal/bolts/Task;
3817
- public static fun create ()Lcom/facebook/react/runtime/internal/bolts/TaskCompletionSource;
3818
- public static fun forError (Ljava/lang/Exception;)Lcom/facebook/react/runtime/internal/bolts/Task;
3819
- public static fun forResult (Ljava/lang/Object;)Lcom/facebook/react/runtime/internal/bolts/Task;
3820
- public fun getError ()Ljava/lang/Exception;
3821
- public fun getResult ()Ljava/lang/Object;
3822
- public static fun getUnobservedExceptionHandler ()Lcom/facebook/react/runtime/internal/bolts/Task$UnobservedExceptionHandler;
3823
- public fun isCancelled ()Z
3824
- public fun isCompleted ()Z
3825
- public fun isFaulted ()Z
3826
- public fun makeVoid ()Lcom/facebook/react/runtime/internal/bolts/Task;
3827
- public fun onSuccess (Lcom/facebook/react/runtime/internal/bolts/Continuation;)Lcom/facebook/react/runtime/internal/bolts/Task;
3828
- public fun onSuccess (Lcom/facebook/react/runtime/internal/bolts/Continuation;Ljava/util/concurrent/Executor;)Lcom/facebook/react/runtime/internal/bolts/Task;
3829
- public fun onSuccessTask (Lcom/facebook/react/runtime/internal/bolts/Continuation;)Lcom/facebook/react/runtime/internal/bolts/Task;
3830
- public fun onSuccessTask (Lcom/facebook/react/runtime/internal/bolts/Continuation;Ljava/util/concurrent/Executor;)Lcom/facebook/react/runtime/internal/bolts/Task;
3831
- public static fun setUnobservedExceptionHandler (Lcom/facebook/react/runtime/internal/bolts/Task$UnobservedExceptionHandler;)V
3832
- public fun waitForCompletion ()V
3833
- public fun waitForCompletion (JLjava/util/concurrent/TimeUnit;)Z
3834
- }
3835
-
3836
- public abstract interface class com/facebook/react/runtime/internal/bolts/Task$UnobservedExceptionHandler {
3837
- public abstract fun unobservedException (Lcom/facebook/react/runtime/internal/bolts/Task;Lcom/facebook/react/runtime/internal/bolts/UnobservedTaskException;)V
3838
- }
3839
-
3840
3600
  public final class com/facebook/react/shell/MainPackageConfig {
3841
3601
  public fun <init> (Lcom/facebook/imagepipeline/core/ImagePipelineConfig;)V
3842
3602
  public final fun getFrescoConfig ()Lcom/facebook/imagepipeline/core/ImagePipelineConfig;
@@ -4036,11 +3796,14 @@ public abstract class com/facebook/react/uimanager/BaseViewManager : com/faceboo
4036
3796
  public fun setTranslateY (Landroid/view/View;F)V
4037
3797
  public fun setViewState (Landroid/view/View;Lcom/facebook/react/bridge/ReadableMap;)V
4038
3798
  public fun setZIndex (Landroid/view/View;F)V
3799
+ protected fun updateViewAccessibility (Landroid/view/View;)V
4039
3800
  }
4040
3801
 
4041
3802
  public abstract class com/facebook/react/uimanager/BaseViewManagerDelegate : com/facebook/react/uimanager/ViewManagerDelegate {
4042
3803
  protected final field mViewManager Lcom/facebook/react/uimanager/BaseViewManager;
4043
3804
  public fun <init> (Lcom/facebook/react/uimanager/BaseViewManager;)V
3805
+ public synthetic fun kotlinCompat$receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
3806
+ public synthetic fun kotlinCompat$setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
4044
3807
  public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
4045
3808
  public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
4046
3809
  }
@@ -4156,6 +3919,7 @@ public final class com/facebook/react/uimanager/LengthPercentage {
4156
3919
  public fun equals (Ljava/lang/Object;)Z
4157
3920
  public final fun getType ()Lcom/facebook/react/uimanager/LengthPercentageType;
4158
3921
  public fun hashCode ()I
3922
+ public final fun resolve (F)F
4159
3923
  public final fun resolve (FF)Lcom/facebook/react/uimanager/style/CornerRadii;
4160
3924
  public static final fun setFromDynamic (Lcom/facebook/react/bridge/Dynamic;)Lcom/facebook/react/uimanager/LengthPercentage;
4161
3925
  public fun toString ()Ljava/lang/String;
@@ -4218,15 +3982,6 @@ public final class com/facebook/react/uimanager/MeasureSpecAssertions {
4218
3982
  public static final fun assertExplicitMeasureSpec (II)V
4219
3983
  }
4220
3984
 
4221
- public final class com/facebook/react/uimanager/NativeKind : java/lang/Enum {
4222
- public static final field LEAF Lcom/facebook/react/uimanager/NativeKind;
4223
- public static final field NONE Lcom/facebook/react/uimanager/NativeKind;
4224
- public static final field PARENT Lcom/facebook/react/uimanager/NativeKind;
4225
- public static fun getEntries ()Lkotlin/enums/EnumEntries;
4226
- public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/NativeKind;
4227
- public static fun values ()[Lcom/facebook/react/uimanager/NativeKind;
4228
- }
4229
-
4230
3985
  public class com/facebook/react/uimanager/NativeViewHierarchyManager {
4231
3986
  public fun <init> (Lcom/facebook/react/uimanager/ViewManagerRegistry;)V
4232
3987
  public fun <init> (Lcom/facebook/react/uimanager/ViewManagerRegistry;Lcom/facebook/react/uimanager/RootViewManager;)V
@@ -4326,7 +4081,7 @@ public class com/facebook/react/uimanager/ReactAccessibilityDelegate : androidx/
4326
4081
  public fun <init> (Landroid/view/View;ZI)V
4327
4082
  public static fun createNodeInfoFromView (Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;
4328
4083
  public fun getAccessibilityNodeProvider (Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeProviderCompat;
4329
- protected fun getFirstSpan (IILjava/lang/Class;)Ljava/lang/Object;
4084
+ protected fun getHostView ()Landroid/view/View;
4330
4085
  public static fun getTalkbackDescription (Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Ljava/lang/CharSequence;
4331
4086
  protected fun getVirtualViewAt (FF)I
4332
4087
  protected fun getVisibleVirtualViews (Ljava/util/List;)V
@@ -4344,13 +4099,7 @@ public class com/facebook/react/uimanager/ReactAccessibilityDelegate : androidx/
4344
4099
  public static fun resetDelegate (Landroid/view/View;ZI)V
4345
4100
  public static fun setDelegate (Landroid/view/View;ZI)V
4346
4101
  public static fun setRole (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;Landroid/content/Context;)V
4347
- }
4348
-
4349
- public class com/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityLinks {
4350
- public fun <init> ([Landroid/text/style/ClickableSpan;Landroid/text/Spannable;)V
4351
- public fun getLinkById (I)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityLinks$AccessibleLink;
4352
- public fun getLinkBySpanPos (II)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityLinks$AccessibleLink;
4353
- public fun size ()I
4102
+ public fun superGetAccessibilityNodeProvider (Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeProviderCompat;
4354
4103
  }
4355
4104
 
4356
4105
  public final class com/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole : java/lang/Enum {
@@ -4504,11 +4253,6 @@ public abstract interface class com/facebook/react/uimanager/ReactOverflowView {
4504
4253
  public abstract fun getOverflow ()Ljava/lang/String;
4505
4254
  }
4506
4255
 
4507
- public abstract interface class com/facebook/react/uimanager/ReactOverflowViewWithInset : com/facebook/react/uimanager/ReactOverflowView {
4508
- public abstract fun getOverflowInset ()Landroid/graphics/Rect;
4509
- public abstract fun setOverflowInset (IIII)V
4510
- }
4511
-
4512
4256
  public abstract interface class com/facebook/react/uimanager/ReactPointerEventsView {
4513
4257
  public abstract fun getPointerEvents ()Lcom/facebook/react/uimanager/PointerEvents;
4514
4258
  }
@@ -4800,6 +4544,19 @@ public class com/facebook/react/uimanager/ReactShadowNodeImpl : com/facebook/rea
4800
4544
  }
4801
4545
 
4802
4546
  public abstract interface annotation class com/facebook/react/uimanager/ReactStage : java/lang/annotation/Annotation {
4547
+ public static final field BRIDGE_DID_LOAD I
4548
+ public static final field Companion Lcom/facebook/react/uimanager/ReactStage$Companion;
4549
+ public static final field MODULE_DID_LOAD I
4550
+ public static final field ON_ATTACH_TO_INSTANCE I
4551
+ public static final field SURFACE_DID_INITIALIZE I
4552
+ public static final field SURFACE_DID_INITIAL_LAYOUT I
4553
+ public static final field SURFACE_DID_INITIAL_MOUNTING I
4554
+ public static final field SURFACE_DID_INITIAL_RENDERING I
4555
+ public static final field SURFACE_DID_RUN I
4556
+ public static final field SURFACE_DID_STOP I
4557
+ }
4558
+
4559
+ public final class com/facebook/react/uimanager/ReactStage$Companion {
4803
4560
  public static final field BRIDGE_DID_LOAD I
4804
4561
  public static final field MODULE_DID_LOAD I
4805
4562
  public static final field ON_ATTACH_TO_INSTANCE I
@@ -4827,11 +4584,6 @@ public class com/facebook/react/uimanager/ReactStylesDiffMap {
4827
4584
  public fun toString ()Ljava/lang/String;
4828
4585
  }
4829
4586
 
4830
- public final class com/facebook/react/uimanager/ReactYogaConfigProvider {
4831
- public static final field INSTANCE Lcom/facebook/react/uimanager/ReactYogaConfigProvider;
4832
- public static final fun get ()Lcom/facebook/yoga/YogaConfig;
4833
- }
4834
-
4835
4587
  public abstract interface class com/facebook/react/uimanager/ReactZIndexedViewGroup {
4836
4588
  public abstract fun getZIndexMappedChildIndex (I)I
4837
4589
  public abstract fun updateDrawingOrder ()V
@@ -5231,17 +4983,19 @@ public abstract class com/facebook/react/uimanager/ViewManager : com/facebook/re
5231
4983
  }
5232
4984
 
5233
4985
  public abstract interface class com/facebook/react/uimanager/ViewManagerDelegate {
5234
- public abstract fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
5235
- public abstract fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
4986
+ public abstract synthetic fun kotlinCompat$receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
4987
+ public abstract synthetic fun kotlinCompat$setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
4988
+ public fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
4989
+ public fun setProperty (Landroid/view/View;Ljava/lang/String;Ljava/lang/Object;)V
5236
4990
  }
5237
4991
 
5238
- public class com/facebook/react/uimanager/ViewManagerPropertyUpdater {
5239
- public fun <init> ()V
5240
- public static fun clear ()V
5241
- public static fun getNativeProps (Ljava/lang/Class;Ljava/lang/Class;)Ljava/util/Map;
5242
- public static fun updateProps (Lcom/facebook/react/uimanager/ReactShadowNode;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
5243
- public static fun updateProps (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
5244
- public static fun updateProps (Lcom/facebook/react/uimanager/ViewManagerDelegate;Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
4992
+ public final class com/facebook/react/uimanager/ViewManagerPropertyUpdater {
4993
+ public static final field INSTANCE Lcom/facebook/react/uimanager/ViewManagerPropertyUpdater;
4994
+ public static final fun clear ()V
4995
+ public static final fun getNativeProps (Ljava/lang/Class;Ljava/lang/Class;)Ljava/util/Map;
4996
+ public static final fun updateProps (Lcom/facebook/react/uimanager/ReactShadowNode;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
4997
+ public static final fun updateProps (Lcom/facebook/react/uimanager/ViewManager;Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
4998
+ public static final fun updateProps (Lcom/facebook/react/uimanager/ViewManagerDelegate;Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;)V
5245
4999
  }
5246
5000
 
5247
5001
  public abstract interface class com/facebook/react/uimanager/ViewManagerPropertyUpdater$Settable {
@@ -5479,25 +5233,6 @@ public abstract interface class com/facebook/react/uimanager/events/BatchEventDi
5479
5233
  public abstract fun onBatchEventDispatched ()V
5480
5234
  }
5481
5235
 
5482
- public final class com/facebook/react/uimanager/events/BlackHoleEventDispatcher : com/facebook/react/uimanager/events/EventDispatcher {
5483
- public static final field Companion Lcom/facebook/react/uimanager/events/BlackHoleEventDispatcher$Companion;
5484
- public fun addBatchEventDispatchedListener (Lcom/facebook/react/uimanager/events/BatchEventDispatchedListener;)V
5485
- public fun addListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
5486
- public fun dispatchAllEvents ()V
5487
- public fun dispatchEvent (Lcom/facebook/react/uimanager/events/Event;)V
5488
- public static final fun get ()Lcom/facebook/react/uimanager/events/EventDispatcher;
5489
- public fun onCatalystInstanceDestroyed ()V
5490
- public fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTEventEmitter;)V
5491
- public fun registerEventEmitter (ILcom/facebook/react/uimanager/events/RCTModernEventEmitter;)V
5492
- public fun removeBatchEventDispatchedListener (Lcom/facebook/react/uimanager/events/BatchEventDispatchedListener;)V
5493
- public fun removeListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
5494
- public fun unregisterEventEmitter (I)V
5495
- }
5496
-
5497
- public final class com/facebook/react/uimanager/events/BlackHoleEventDispatcher$Companion {
5498
- public final fun get ()Lcom/facebook/react/uimanager/events/EventDispatcher;
5499
- }
5500
-
5501
5236
  public final class com/facebook/react/uimanager/events/ContentSizeChangeEvent : com/facebook/react/uimanager/events/Event {
5502
5237
  public fun <init> (III)V
5503
5238
  public fun <init> (IIII)V
@@ -5697,10 +5432,6 @@ public abstract interface class com/facebook/react/uimanager/events/RCTModernEve
5697
5432
  public abstract fun receiveTouches (Lcom/facebook/react/uimanager/events/TouchEvent;)V
5698
5433
  }
5699
5434
 
5700
- public abstract interface class com/facebook/react/uimanager/events/SynchronousEventReceiver {
5701
- public abstract fun receiveEvent (IILjava/lang/String;ZLcom/facebook/react/bridge/WritableMap;IZ)V
5702
- }
5703
-
5704
5435
  public final class com/facebook/react/uimanager/events/TouchEvent : com/facebook/react/uimanager/events/Event {
5705
5436
  public static final field Companion Lcom/facebook/react/uimanager/events/TouchEvent$Companion;
5706
5437
  public static final field UNSET J
@@ -5757,23 +5488,6 @@ public final class com/facebook/react/uimanager/events/TouchesHelper {
5757
5488
  public static final fun sendTouchesLegacy (Lcom/facebook/react/uimanager/events/RCTEventEmitter;Lcom/facebook/react/uimanager/events/TouchEvent;)V
5758
5489
  }
5759
5490
 
5760
- public final class com/facebook/react/uimanager/layoutanimation/InterpolatorType : java/lang/Enum {
5761
- public static final field Companion Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType$Companion;
5762
- public static final field EASE_IN Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
5763
- public static final field EASE_IN_EASE_OUT Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
5764
- public static final field EASE_OUT Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
5765
- public static final field LINEAR Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
5766
- public static final field SPRING Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
5767
- public static final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
5768
- public static fun getEntries ()Lkotlin/enums/EnumEntries;
5769
- public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
5770
- public static fun values ()[Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
5771
- }
5772
-
5773
- public final class com/facebook/react/uimanager/layoutanimation/InterpolatorType$Companion {
5774
- public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/layoutanimation/InterpolatorType;
5775
- }
5776
-
5777
5491
  public class com/facebook/react/uimanager/layoutanimation/LayoutAnimationController {
5778
5492
  public fun <init> ()V
5779
5493
  public fun applyLayoutUpdate (Landroid/view/View;IIII)V
@@ -5811,61 +5525,6 @@ public final class com/facebook/react/uimanager/style/BorderRadiusProp : java/la
5811
5525
  public static fun values ()[Lcom/facebook/react/uimanager/style/BorderRadiusProp;
5812
5526
  }
5813
5527
 
5814
- public final class com/facebook/react/uimanager/style/BorderRadiusStyle {
5815
- public fun <init> ()V
5816
- public fun <init> (Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;)V
5817
- public synthetic fun <init> (Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
5818
- public fun <init> (Ljava/util/List;)V
5819
- public final fun component1 ()Lcom/facebook/react/uimanager/LengthPercentage;
5820
- public final fun component10 ()Lcom/facebook/react/uimanager/LengthPercentage;
5821
- public final fun component11 ()Lcom/facebook/react/uimanager/LengthPercentage;
5822
- public final fun component12 ()Lcom/facebook/react/uimanager/LengthPercentage;
5823
- public final fun component13 ()Lcom/facebook/react/uimanager/LengthPercentage;
5824
- public final fun component2 ()Lcom/facebook/react/uimanager/LengthPercentage;
5825
- public final fun component3 ()Lcom/facebook/react/uimanager/LengthPercentage;
5826
- public final fun component4 ()Lcom/facebook/react/uimanager/LengthPercentage;
5827
- public final fun component5 ()Lcom/facebook/react/uimanager/LengthPercentage;
5828
- public final fun component6 ()Lcom/facebook/react/uimanager/LengthPercentage;
5829
- public final fun component7 ()Lcom/facebook/react/uimanager/LengthPercentage;
5830
- public final fun component8 ()Lcom/facebook/react/uimanager/LengthPercentage;
5831
- public final fun component9 ()Lcom/facebook/react/uimanager/LengthPercentage;
5832
- public final fun copy (Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;)Lcom/facebook/react/uimanager/style/BorderRadiusStyle;
5833
- public static synthetic fun copy$default (Lcom/facebook/react/uimanager/style/BorderRadiusStyle;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;Lcom/facebook/react/uimanager/LengthPercentage;ILjava/lang/Object;)Lcom/facebook/react/uimanager/style/BorderRadiusStyle;
5834
- public fun equals (Ljava/lang/Object;)Z
5835
- public final fun get (Lcom/facebook/react/uimanager/style/BorderRadiusProp;)Lcom/facebook/react/uimanager/LengthPercentage;
5836
- public final fun getBottomEnd ()Lcom/facebook/react/uimanager/LengthPercentage;
5837
- public final fun getBottomLeft ()Lcom/facebook/react/uimanager/LengthPercentage;
5838
- public final fun getBottomRight ()Lcom/facebook/react/uimanager/LengthPercentage;
5839
- public final fun getBottomStart ()Lcom/facebook/react/uimanager/LengthPercentage;
5840
- public final fun getEndEnd ()Lcom/facebook/react/uimanager/LengthPercentage;
5841
- public final fun getEndStart ()Lcom/facebook/react/uimanager/LengthPercentage;
5842
- public final fun getStartEnd ()Lcom/facebook/react/uimanager/LengthPercentage;
5843
- public final fun getStartStart ()Lcom/facebook/react/uimanager/LengthPercentage;
5844
- public final fun getTopEnd ()Lcom/facebook/react/uimanager/LengthPercentage;
5845
- public final fun getTopLeft ()Lcom/facebook/react/uimanager/LengthPercentage;
5846
- public final fun getTopRight ()Lcom/facebook/react/uimanager/LengthPercentage;
5847
- public final fun getTopStart ()Lcom/facebook/react/uimanager/LengthPercentage;
5848
- public final fun getUniform ()Lcom/facebook/react/uimanager/LengthPercentage;
5849
- public final fun hasRoundedBorders ()Z
5850
- public fun hashCode ()I
5851
- public final fun resolve (ILandroid/content/Context;FF)Lcom/facebook/react/uimanager/style/ComputedBorderRadius;
5852
- public final fun set (Lcom/facebook/react/uimanager/style/BorderRadiusProp;Lcom/facebook/react/uimanager/LengthPercentage;)V
5853
- public final fun setBottomEnd (Lcom/facebook/react/uimanager/LengthPercentage;)V
5854
- public final fun setBottomLeft (Lcom/facebook/react/uimanager/LengthPercentage;)V
5855
- public final fun setBottomRight (Lcom/facebook/react/uimanager/LengthPercentage;)V
5856
- public final fun setBottomStart (Lcom/facebook/react/uimanager/LengthPercentage;)V
5857
- public final fun setEndEnd (Lcom/facebook/react/uimanager/LengthPercentage;)V
5858
- public final fun setEndStart (Lcom/facebook/react/uimanager/LengthPercentage;)V
5859
- public final fun setStartEnd (Lcom/facebook/react/uimanager/LengthPercentage;)V
5860
- public final fun setStartStart (Lcom/facebook/react/uimanager/LengthPercentage;)V
5861
- public final fun setTopEnd (Lcom/facebook/react/uimanager/LengthPercentage;)V
5862
- public final fun setTopLeft (Lcom/facebook/react/uimanager/LengthPercentage;)V
5863
- public final fun setTopRight (Lcom/facebook/react/uimanager/LengthPercentage;)V
5864
- public final fun setTopStart (Lcom/facebook/react/uimanager/LengthPercentage;)V
5865
- public final fun setUniform (Lcom/facebook/react/uimanager/LengthPercentage;)V
5866
- public fun toString ()Ljava/lang/String;
5867
- }
5868
-
5869
5528
  public final class com/facebook/react/uimanager/style/BorderStyle : java/lang/Enum {
5870
5529
  public static final field Companion Lcom/facebook/react/uimanager/style/BorderStyle$Companion;
5871
5530
  public static final field DASHED Lcom/facebook/react/uimanager/style/BorderStyle;
@@ -5997,21 +5656,6 @@ public final class com/facebook/react/uimanager/style/OutlineStyle$Companion {
5997
5656
  public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/OutlineStyle;
5998
5657
  }
5999
5658
 
6000
- public final class com/facebook/react/uimanager/style/Overflow : java/lang/Enum {
6001
- public static final field Companion Lcom/facebook/react/uimanager/style/Overflow$Companion;
6002
- public static final field HIDDEN Lcom/facebook/react/uimanager/style/Overflow;
6003
- public static final field SCROLL Lcom/facebook/react/uimanager/style/Overflow;
6004
- public static final field VISIBLE Lcom/facebook/react/uimanager/style/Overflow;
6005
- public static final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
6006
- public static fun getEntries ()Lkotlin/enums/EnumEntries;
6007
- public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
6008
- public static fun values ()[Lcom/facebook/react/uimanager/style/Overflow;
6009
- }
6010
-
6011
- public final class com/facebook/react/uimanager/style/Overflow$Companion {
6012
- public final fun fromString (Ljava/lang/String;)Lcom/facebook/react/uimanager/style/Overflow;
6013
- }
6014
-
6015
5659
  public final class com/facebook/react/uimanager/util/ReactFindViewUtil {
6016
5660
  public static final field INSTANCE Lcom/facebook/react/uimanager/util/ReactFindViewUtil;
6017
5661
  public static final fun addViewListener (Lcom/facebook/react/uimanager/util/ReactFindViewUtil$OnViewFoundListener;)V
@@ -6032,12 +5676,6 @@ public abstract interface class com/facebook/react/uimanager/util/ReactFindViewU
6032
5676
  public abstract fun onViewFound (Landroid/view/View;)V
6033
5677
  }
6034
5678
 
6035
- public final class com/facebook/react/util/ExceptionDataHelper {
6036
- public static final field EXTRA_DATA_FIELD Ljava/lang/String;
6037
- public static final field INSTANCE Lcom/facebook/react/util/ExceptionDataHelper;
6038
- public static final fun getExtraDataAsJson (Lcom/facebook/react/bridge/ReadableMap;)Ljava/lang/String;
6039
- }
6040
-
6041
5679
  public final class com/facebook/react/util/JSStackTrace {
6042
5680
  public static final field COLUMN_KEY Ljava/lang/String;
6043
5681
  public static final field FILE_KEY Ljava/lang/String;
@@ -6047,10 +5685,6 @@ public final class com/facebook/react/util/JSStackTrace {
6047
5685
  public static final fun format (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)Ljava/lang/String;
6048
5686
  }
6049
5687
 
6050
- public abstract interface class com/facebook/react/util/RCTLog : com/facebook/react/bridge/JavaScriptModule {
6051
- public abstract fun logIfNoNativeHook (Ljava/lang/String;Ljava/lang/String;)V
6052
- }
6053
-
6054
5688
  public final class com/facebook/react/util/RNLog {
6055
5689
  public static final field ADVICE I
6056
5690
  public static final field ERROR I
@@ -6207,47 +5841,6 @@ public final class com/facebook/react/views/common/ContextUtils {
6207
5841
  public static final fun findContextOfType (Landroid/content/Context;Ljava/lang/Class;)Ljava/lang/Object;
6208
5842
  }
6209
5843
 
6210
- public final class com/facebook/react/views/common/ViewUtils {
6211
- public static final field INSTANCE Lcom/facebook/react/views/common/ViewUtils;
6212
- public static final fun getTestId (Landroid/view/View;)Ljava/lang/String;
6213
- }
6214
-
6215
- public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlay : android/view/View {
6216
- public fun <init> (Landroid/content/Context;)V
6217
- public final fun clearElementsHighlights ()V
6218
- public fun onDraw (Landroid/graphics/Canvas;)V
6219
- public final fun setHighlightedElementsRectangles (Ljava/util/List;)V
6220
- public final fun setTraceUpdates (Ljava/util/List;)V
6221
- }
6222
-
6223
- public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager : com/facebook/react/uimanager/SimpleViewManager, com/facebook/react/viewmanagers/DebuggingOverlayManagerInterface {
6224
- public static final field Companion Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlayManager$Companion;
6225
- public static final field REACT_CLASS Ljava/lang/String;
6226
- public fun <init> ()V
6227
- public synthetic fun clearElementsHighlights (Landroid/view/View;)V
6228
- public fun clearElementsHighlights (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;)V
6229
- public synthetic fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Landroid/view/View;
6230
- public fun createViewInstance (Lcom/facebook/react/uimanager/ThemedReactContext;)Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;
6231
- public fun getDelegate ()Lcom/facebook/react/uimanager/ViewManagerDelegate;
6232
- public fun getName ()Ljava/lang/String;
6233
- public synthetic fun highlightElements (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
6234
- public fun highlightElements (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Lcom/facebook/react/bridge/ReadableArray;)V
6235
- public synthetic fun highlightTraceUpdates (Landroid/view/View;Lcom/facebook/react/bridge/ReadableArray;)V
6236
- public fun highlightTraceUpdates (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Lcom/facebook/react/bridge/ReadableArray;)V
6237
- public synthetic fun receiveCommand (Landroid/view/View;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
6238
- public fun receiveCommand (Lcom/facebook/react/views/debuggingoverlay/DebuggingOverlay;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)V
6239
- }
6240
-
6241
- public final class com/facebook/react/views/debuggingoverlay/DebuggingOverlayManager$Companion {
6242
- }
6243
-
6244
- public final class com/facebook/react/views/debuggingoverlay/TraceUpdate {
6245
- public fun <init> (ILandroid/graphics/RectF;I)V
6246
- public final fun getColor ()I
6247
- public final fun getId ()I
6248
- public final fun getRectangle ()Landroid/graphics/RectF;
6249
- }
6250
-
6251
5844
  public final class com/facebook/react/views/drawer/ReactDrawerLayout : androidx/drawerlayout/widget/DrawerLayout {
6252
5845
  public fun <init> (Lcom/facebook/react/bridge/ReactContext;)V
6253
5846
  public fun onInterceptTouchEvent (Landroid/view/MotionEvent;)Z
@@ -6407,19 +6000,6 @@ public final class com/facebook/react/views/image/ImageResizeMode {
6407
6000
  public static final fun toTileMode (Ljava/lang/String;)Landroid/graphics/Shader$TileMode;
6408
6001
  }
6409
6002
 
6410
- public final class com/facebook/react/views/image/MultiPostprocessor : com/facebook/imagepipeline/request/Postprocessor {
6411
- public static final field Companion Lcom/facebook/react/views/image/MultiPostprocessor$Companion;
6412
- public synthetic fun <init> (Ljava/util/List;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
6413
- public static final fun from (Ljava/util/List;)Lcom/facebook/imagepipeline/request/Postprocessor;
6414
- public fun getName ()Ljava/lang/String;
6415
- public fun getPostprocessorCacheKey ()Lcom/facebook/cache/common/CacheKey;
6416
- public fun process (Landroid/graphics/Bitmap;Lcom/facebook/imagepipeline/bitmaps/PlatformBitmapFactory;)Lcom/facebook/common/references/CloseableReference;
6417
- }
6418
-
6419
- public final class com/facebook/react/views/image/MultiPostprocessor$Companion {
6420
- public final fun from (Ljava/util/List;)Lcom/facebook/imagepipeline/request/Postprocessor;
6421
- }
6422
-
6423
6003
  public abstract interface class com/facebook/react/views/image/ReactCallerContextFactory {
6424
6004
  public abstract fun getOrCreateCallerContext (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Object;
6425
6005
  }
@@ -6662,7 +6242,7 @@ public final class com/facebook/react/views/scroll/ReactHorizontalScrollContaine
6662
6242
  public final class com/facebook/react/views/scroll/ReactHorizontalScrollContainerViewManager$Companion {
6663
6243
  }
6664
6244
 
6665
- public class com/facebook/react/views/scroll/ReactHorizontalScrollView : android/widget/HorizontalScrollView, android/view/View$OnLayoutChangeListener, android/view/ViewGroup$OnHierarchyChangeListener, com/facebook/react/uimanager/ReactClippingViewGroup, com/facebook/react/uimanager/ReactOverflowViewWithInset, com/facebook/react/views/scroll/ReactScrollViewHelper$HasFlingAnimator, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollEventThrottle, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollState, com/facebook/react/views/scroll/ReactScrollViewHelper$HasSmoothScroll, com/facebook/react/views/scroll/ReactScrollViewHelper$HasStateWrapper {
6245
+ public class com/facebook/react/views/scroll/ReactHorizontalScrollView : android/widget/HorizontalScrollView, android/view/View$OnLayoutChangeListener, android/view/ViewGroup$OnHierarchyChangeListener, com/facebook/react/uimanager/ReactClippingViewGroup, com/facebook/react/uimanager/ReactOverflowViewWithInset, com/facebook/react/views/scroll/ReactAccessibleScrollView, com/facebook/react/views/scroll/ReactScrollViewHelper$HasFlingAnimator, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollEventThrottle, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollState, com/facebook/react/views/scroll/ReactScrollViewHelper$HasSmoothScroll, com/facebook/react/views/scroll/ReactScrollViewHelper$HasStateWrapper {
6666
6246
  public fun <init> (Landroid/content/Context;)V
6667
6247
  public fun <init> (Landroid/content/Context;Lcom/facebook/react/views/scroll/FpsListener;)V
6668
6248
  public fun abortAnimation ()V
@@ -6787,7 +6367,7 @@ public class com/facebook/react/views/scroll/ReactHorizontalScrollViewManager :
6787
6367
  public fun updateState (Lcom/facebook/react/views/scroll/ReactHorizontalScrollView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
6788
6368
  }
6789
6369
 
6790
- public class com/facebook/react/views/scroll/ReactScrollView : android/widget/ScrollView, android/view/View$OnLayoutChangeListener, android/view/ViewGroup$OnHierarchyChangeListener, com/facebook/react/uimanager/ReactClippingViewGroup, com/facebook/react/uimanager/ReactOverflowViewWithInset, com/facebook/react/views/scroll/ReactScrollViewHelper$HasFlingAnimator, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollEventThrottle, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollState, com/facebook/react/views/scroll/ReactScrollViewHelper$HasSmoothScroll, com/facebook/react/views/scroll/ReactScrollViewHelper$HasStateWrapper {
6370
+ public class com/facebook/react/views/scroll/ReactScrollView : android/widget/ScrollView, android/view/View$OnLayoutChangeListener, android/view/ViewGroup$OnHierarchyChangeListener, com/facebook/react/uimanager/ReactClippingViewGroup, com/facebook/react/uimanager/ReactOverflowViewWithInset, com/facebook/react/views/scroll/ReactAccessibleScrollView, com/facebook/react/views/scroll/ReactScrollViewHelper$HasFlingAnimator, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollEventThrottle, com/facebook/react/views/scroll/ReactScrollViewHelper$HasScrollState, com/facebook/react/views/scroll/ReactScrollViewHelper$HasSmoothScroll, com/facebook/react/views/scroll/ReactScrollViewHelper$HasStateWrapper {
6791
6371
  public fun <init> (Landroid/content/Context;)V
6792
6372
  public fun <init> (Landroid/content/Context;Lcom/facebook/react/views/scroll/FpsListener;)V
6793
6373
  public fun abortAnimation ()V
@@ -6810,6 +6390,7 @@ public class com/facebook/react/views/scroll/ReactScrollView : android/widget/Sc
6810
6390
  public fun getScrollEventThrottle ()I
6811
6391
  public fun getStateWrapper ()Lcom/facebook/react/uimanager/StateWrapper;
6812
6392
  protected fun handleInterceptedTouchEvent (Landroid/view/MotionEvent;)V
6393
+ public fun isPartiallyScrolledInView (Landroid/view/View;)Z
6813
6394
  protected fun onAttachedToWindow ()V
6814
6395
  public fun onChildViewAdded (Landroid/view/View;Landroid/view/View;)V
6815
6396
  public fun onChildViewRemoved (Landroid/view/View;Landroid/view/View;)V
@@ -7249,6 +6830,7 @@ public final class com/facebook/react/views/text/ReactTextUpdate$Companion {
7249
6830
  public class com/facebook/react/views/text/ReactTextView : androidx/appcompat/widget/AppCompatTextView, com/facebook/react/uimanager/ReactCompoundView {
7250
6831
  public fun <init> (Landroid/content/Context;)V
7251
6832
  protected fun dispatchHoverEvent (Landroid/view/MotionEvent;)Z
6833
+ public fun dispatchKeyEvent (Landroid/view/KeyEvent;)Z
7252
6834
  public fun getSpanned ()Landroid/text/Spannable;
7253
6835
  public fun hasOverlappingRendering ()Z
7254
6836
  public fun invalidateDrawable (Landroid/graphics/drawable/Drawable;)V
@@ -7256,6 +6838,7 @@ public class com/facebook/react/views/text/ReactTextView : androidx/appcompat/wi
7256
6838
  public fun onDetachedFromWindow ()V
7257
6839
  protected fun onDraw (Landroid/graphics/Canvas;)V
7258
6840
  public fun onFinishTemporaryDetach ()V
6841
+ public final fun onFocusChanged (ZILandroid/graphics/Rect;)V
7259
6842
  protected fun onLayout (ZIIII)V
7260
6843
  protected fun onMeasure (II)V
7261
6844
  public fun onStartTemporaryDetach ()V
@@ -7310,6 +6893,8 @@ public class com/facebook/react/views/text/ReactTextViewManager : com/facebook/r
7310
6893
  public fun updateExtraData (Lcom/facebook/react/views/text/ReactTextView;Ljava/lang/Object;)V
7311
6894
  public synthetic fun updateState (Landroid/view/View;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
7312
6895
  public fun updateState (Lcom/facebook/react/views/text/ReactTextView;Lcom/facebook/react/uimanager/ReactStylesDiffMap;Lcom/facebook/react/uimanager/StateWrapper;)Ljava/lang/Object;
6896
+ protected synthetic fun updateViewAccessibility (Landroid/view/View;)V
6897
+ protected fun updateViewAccessibility (Lcom/facebook/react/views/text/ReactTextView;)V
7313
6898
  }
7314
6899
 
7315
6900
  public abstract interface class com/facebook/react/views/text/ReactTextViewManagerCallback {
@@ -7820,9 +7405,3 @@ public final class com/facebook/react/views/view/ViewGroupClickEvent : com/faceb
7820
7405
  public fun getEventName ()Ljava/lang/String;
7821
7406
  }
7822
7407
 
7823
- public final class com/facebook/react/views/view/WindowUtilKt {
7824
- public static final fun setStatusBarTranslucency (Landroid/view/Window;Z)V
7825
- public static final fun setStatusBarVisibility (Landroid/view/Window;Z)V
7826
- public static final fun setSystemBarsTranslucency (Landroid/view/Window;Z)V
7827
- }
7828
-