react-native-windows 0.78.9 → 0.79.0-preview.2

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 (673) hide show
  1. package/.flowconfig +3 -1
  2. package/Common/Common.vcxproj +1 -1
  3. package/Folly/Folly.vcxproj +1 -1
  4. package/Libraries/ActionSheetIOS/ActionSheetIOS.js +39 -18
  5. package/Libraries/ActionSheetIOS/NativeActionSheetManager.js +2 -2
  6. package/Libraries/Alert/Alert.js +33 -10
  7. package/Libraries/Alert/Alert.windows.js +34 -12
  8. package/Libraries/Alert/NativeAlertManager.js +2 -2
  9. package/Libraries/Alert/RCTAlertManager.android.js +1 -1
  10. package/Libraries/Alert/RCTAlertManager.ios.js +1 -1
  11. package/Libraries/Alert/RCTAlertManager.js.flow +18 -0
  12. package/Libraries/Animated/Animated.js +8 -37
  13. package/Libraries/Animated/Animated.js.flow +15 -0
  14. package/Libraries/Animated/AnimatedExports.js +47 -0
  15. package/Libraries/Animated/AnimatedExports.js.flow +48 -0
  16. package/Libraries/Animated/AnimatedMock.js +1 -1
  17. package/Libraries/Animated/NativeAnimatedModule.js +2 -2
  18. package/Libraries/Animated/NativeAnimatedTurboModule.js +2 -2
  19. package/Libraries/Animated/animations/Animation.js +1 -4
  20. package/Libraries/Animated/createAnimatedComponent.js +3 -3
  21. package/Libraries/Animated/nodes/AnimatedObject.js +1 -0
  22. package/Libraries/Animated/nodes/AnimatedValue.js +30 -22
  23. package/Libraries/Animated/useAnimatedProps.js +4 -333
  24. package/Libraries/Animated/useAnimatedValue.js +1 -3
  25. package/Libraries/AppState/AppState.js +24 -7
  26. package/Libraries/AppState/NativeAppState.js +2 -2
  27. package/Libraries/AppTheme/NativeAppTheme.js +2 -2
  28. package/Libraries/BatchedBridge/BatchedBridge.js +4 -2
  29. package/Libraries/BatchedBridge/MessageQueue.js +5 -4
  30. package/Libraries/BatchedBridge/NativeModules.js +6 -4
  31. package/Libraries/Blob/Blob.js +5 -5
  32. package/Libraries/Blob/BlobManager.js +3 -2
  33. package/Libraries/Blob/BlobRegistry.js +3 -9
  34. package/Libraries/Blob/File.js +3 -2
  35. package/Libraries/Blob/FileReader.js +8 -174
  36. package/Libraries/Blob/FileReader_new.js +231 -0
  37. package/Libraries/Blob/FileReader_old.js +186 -0
  38. package/Libraries/Blob/NativeBlobModule.js +2 -2
  39. package/Libraries/Blob/NativeFileReaderModule.js +2 -2
  40. package/Libraries/Blob/URL.js +1 -1
  41. package/Libraries/Blob/URLSearchParams.js +9 -10
  42. package/Libraries/Blob/URLSearchParams.js.flow +23 -0
  43. package/Libraries/BugReporting/BugReporting.js +2 -2
  44. package/Libraries/BugReporting/NativeBugReporting.js +2 -2
  45. package/Libraries/BugReporting/dumpReactTree.js +2 -2
  46. package/Libraries/BugReporting/getReactData.js +1 -1
  47. package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.js +1 -1
  48. package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.windows.js +1 -1
  49. package/Libraries/Components/AccessibilityInfo/NativeAccessibilityInfo.js +2 -2
  50. package/Libraries/Components/AccessibilityInfo/NativeAccessibilityManager.js +2 -2
  51. package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.android.js +1 -1
  52. package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.ios.js +1 -1
  53. package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.js.flow +20 -0
  54. package/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.windows.js +1 -1
  55. package/Libraries/Components/ActivityIndicator/ActivityIndicator.js +11 -11
  56. package/Libraries/Components/ActivityIndicator/ActivityIndicatorViewNativeComponent.js +2 -2
  57. package/Libraries/Components/Button.js +6 -6
  58. package/Libraries/Components/Button.windows.js +9 -6
  59. package/Libraries/Components/Clipboard/Clipboard.js +1 -1
  60. package/Libraries/Components/Clipboard/NativeClipboard.js +2 -2
  61. package/Libraries/Components/DrawerAndroid/AndroidDrawerLayoutNativeComponent.js +2 -2
  62. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +14 -100
  63. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.js +64 -3
  64. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroidTypes.js +138 -0
  65. package/Libraries/Components/Flyout/FlyoutNativeComponent.js +1 -1
  66. package/Libraries/Components/Glyph/GlyphNativeComponent.js +1 -1
  67. package/Libraries/Components/Keyboard/Keyboard.js +9 -9
  68. package/Libraries/Components/Keyboard/KeyboardAvoidingView.js +24 -25
  69. package/Libraries/Components/Keyboard/KeyboardExt.js.map +1 -1
  70. package/Libraries/Components/Keyboard/NativeKeyboardObserver.js +2 -2
  71. package/Libraries/Components/LayoutConformance/LayoutConformance.js +7 -5
  72. package/Libraries/Components/LayoutConformance/LayoutConformanceNativeComponent.js +1 -1
  73. package/Libraries/Components/Popup/PopupNativeComponent.js +1 -1
  74. package/Libraries/Components/Pressable/Pressable.js +28 -73
  75. package/Libraries/Components/Pressable/Pressable.windows.js +29 -77
  76. package/Libraries/Components/Pressable/useAndroidRippleForView.js +17 -17
  77. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.android.js +4 -47
  78. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.js +9 -5
  79. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroidNativeComponent.js +2 -2
  80. package/Libraries/Components/ProgressBarAndroid/ProgressBarAndroidTypes.js +54 -0
  81. package/Libraries/Components/RefreshControl/AndroidSwipeRefreshLayoutNativeComponent.js +2 -2
  82. package/Libraries/Components/RefreshControl/PullToRefreshViewNativeComponent.js +2 -2
  83. package/Libraries/Components/RefreshControl/RefreshControl.js +17 -14
  84. package/Libraries/Components/RefreshControl/RefreshControl.windows.js +17 -14
  85. package/Libraries/Components/RefreshControl/__mocks__/RefreshControlMock.js +2 -1
  86. package/Libraries/Components/SafeAreaView/RCTSafeAreaViewNativeComponent.js +2 -2
  87. package/Libraries/Components/SafeAreaView/SafeAreaView.js +1 -1
  88. package/Libraries/Components/ScrollView/AndroidHorizontalScrollContentViewNativeComponent.js +2 -2
  89. package/Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js +2 -4
  90. package/Libraries/Components/ScrollView/ScrollContentViewNativeComponent.js +2 -4
  91. package/Libraries/Components/ScrollView/ScrollView.js +139 -134
  92. package/Libraries/Components/ScrollView/ScrollView.windows.js +139 -134
  93. package/Libraries/Components/ScrollView/ScrollViewCommands.js +3 -3
  94. package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +7 -9
  95. package/Libraries/Components/ScrollView/ScrollViewNativeComponent.windows.js +9 -8
  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/Switch.windows.js +74 -45
  108. package/Libraries/Components/Switch/SwitchNativeComponent.js +2 -2
  109. package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +33 -35
  110. package/Libraries/Components/TextInput/InputAccessoryView.js +5 -3
  111. package/Libraries/Components/TextInput/RCTInputAccessoryViewNativeComponent.js +2 -2
  112. package/Libraries/Components/TextInput/RCTMultilineTextInputNativeComponent.js +2 -4
  113. package/Libraries/Components/TextInput/RCTSingelineTextInputNativeComponent.js +2 -4
  114. package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +5 -2
  115. package/Libraries/Components/TextInput/TextInput.flow.js +131 -121
  116. package/Libraries/Components/TextInput/TextInput.js +149 -146
  117. package/Libraries/Components/TextInput/TextInput.windows.js +151 -148
  118. package/Libraries/Components/TextInput/TextInputNativeCommands.js +1 -1
  119. package/Libraries/Components/TextInput/TextInputState.js +6 -20
  120. package/Libraries/Components/TextInput/TextInputState.windows.js +6 -20
  121. package/Libraries/Components/TextInput/WindowsTextInputNativeComponent.js +33 -35
  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/Touchable.windows.js +23 -23
  131. package/Libraries/Components/Touchable/TouchableBounce.js +6 -6
  132. package/Libraries/Components/Touchable/TouchableBounce.windows.js +9 -9
  133. package/Libraries/Components/Touchable/TouchableHighlight.js +44 -23
  134. package/Libraries/Components/Touchable/TouchableHighlight.windows.js +53 -22
  135. package/Libraries/Components/Touchable/TouchableNativeFeedback.js +102 -54
  136. package/Libraries/Components/Touchable/TouchableNativeFeedback.windows.js +102 -54
  137. package/Libraries/Components/Touchable/TouchableOpacity.js +57 -15
  138. package/Libraries/Components/Touchable/TouchableOpacity.windows.js +57 -15
  139. package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +114 -61
  140. package/Libraries/Components/Touchable/TouchableWithoutFeedback.windows.js +129 -74
  141. package/Libraries/Components/UnimplementedViews/UnimplementedNativeViewNativeComponent.js +2 -2
  142. package/Libraries/Components/UnimplementedViews/UnimplementedView.js +11 -3
  143. package/Libraries/Components/View/ReactNativeStyleAttributes.js +17 -3
  144. package/Libraries/Components/View/ReactNativeViewAttributes.js +1 -1
  145. package/Libraries/Components/View/ReactNativeViewAttributes.windows.js +1 -1
  146. package/Libraries/Components/View/View.js +2 -2
  147. package/Libraries/Components/View/View.windows.js +4 -4
  148. package/Libraries/Components/View/ViewAccessibility.js +245 -5
  149. package/Libraries/Components/View/ViewAccessibility.windows.js +254 -5
  150. package/Libraries/Components/View/ViewNativeComponent.js +2 -4
  151. package/Libraries/Components/View/ViewPropTypes.d.ts +14 -14
  152. package/Libraries/Components/View/ViewPropTypes.js +65 -253
  153. package/Libraries/Components/View/ViewPropTypes.windows.js +72 -258
  154. package/Libraries/Core/Devtools/getDevServer.js +1 -3
  155. package/Libraries/Core/Devtools/loadBundleFromServer.js +4 -2
  156. package/Libraries/Core/Devtools/loadBundleFromServer.windows.js +4 -2
  157. package/Libraries/Core/Devtools/openFileInEditor.js +2 -4
  158. package/Libraries/Core/Devtools/openURLInBrowser.js +5 -4
  159. package/Libraries/Core/Devtools/parseErrorStack.js +4 -4
  160. package/Libraries/Core/Devtools/parseHermesStack.js +2 -2
  161. package/Libraries/Core/Devtools/symbolicateStackTrace.js +6 -5
  162. package/Libraries/Core/ExceptionsManager.js +6 -4
  163. package/Libraries/Core/InitializeCore.js +7 -3
  164. package/Libraries/Core/NativeExceptionsManager.js +2 -2
  165. package/Libraries/Core/RawEventEmitter.js +2 -2
  166. package/Libraries/Core/ReactFiberErrorDialog.js +2 -2
  167. package/Libraries/Core/ReactNativeVersion.js +4 -6
  168. package/Libraries/Core/ReactNativeVersionCheck.js +2 -4
  169. package/Libraries/Core/SegmentFetcher/NativeSegmentFetcher.js +2 -2
  170. package/Libraries/Core/Timers/JSTimers.js +10 -8
  171. package/Libraries/Core/Timers/NativeTiming.js +2 -2
  172. package/Libraries/Core/Timers/immediateShim.js +2 -9
  173. package/Libraries/Core/polyfillPromise.js +1 -1
  174. package/Libraries/Core/registerCallableModule.js +1 -1
  175. package/Libraries/Core/setUpAlert.js +1 -1
  176. package/Libraries/Core/setUpBatchedBridge.js +13 -8
  177. package/Libraries/Core/setUpDeveloperTools.js +3 -35
  178. package/Libraries/Core/setUpErrorHandling.js +2 -2
  179. package/Libraries/Core/setUpReactDevTools.js +26 -6
  180. package/Libraries/Core/setUpReactRefresh.js +1 -1
  181. package/Libraries/Core/setUpTimers.js +45 -66
  182. package/Libraries/Core/setUpXHR.js +11 -8
  183. package/Libraries/Debugging/DebuggingOverlayNativeComponent.js +2 -2
  184. package/Libraries/Debugging/DebuggingOverlayRegistry.js +10 -7
  185. package/Libraries/EventEmitter/NativeEventEmitter.js +8 -2
  186. package/Libraries/EventEmitter/RCTDeviceEventEmitter.js +7 -5
  187. package/Libraries/EventEmitter/RCTEventEmitter.js +1 -1
  188. package/Libraries/EventEmitter/RCTNativeAppEventEmitter.js +1 -1
  189. package/Libraries/EventEmitter/__mocks__/NativeEventEmitter.js +3 -2
  190. package/Libraries/Events/CustomEvent.js +3 -3
  191. package/Libraries/Events/EventPolyfill.js +2 -2
  192. package/Libraries/Image/AssetRegistry.js +8 -1
  193. package/Libraries/Image/AssetSourceResolver.js +4 -4
  194. package/Libraries/Image/AssetSourceResolver.windows.js +4 -4
  195. package/Libraries/Image/Image.android.js +2 -2
  196. package/Libraries/Image/Image.ios.js +1 -1
  197. package/Libraries/Image/Image.js.flow +27 -0
  198. package/Libraries/Image/Image.windows.js +1 -2
  199. package/Libraries/Image/ImageBackground.js +2 -2
  200. package/Libraries/Image/ImageProps.js +109 -39
  201. package/Libraries/Image/ImageTypes.flow.js +16 -6
  202. package/Libraries/Image/ImageViewNativeComponent.js +5 -7
  203. package/Libraries/Image/NativeImageEditor.js +2 -2
  204. package/Libraries/Image/NativeImageLoaderAndroid.js +2 -2
  205. package/Libraries/Image/NativeImageLoaderIOS.js +2 -2
  206. package/Libraries/Image/NativeImageStoreAndroid.js +2 -2
  207. package/Libraries/Image/NativeImageStoreIOS.js +2 -2
  208. package/Libraries/Image/RelativeImageStub.js +3 -1
  209. package/Libraries/Image/TextInlineImageNativeComponent.js +2 -4
  210. package/Libraries/Image/assetPaths.js +2 -0
  211. package/Libraries/Image/nativeImageSource.js +3 -3
  212. package/Libraries/Image/resolveAssetSource.js +4 -2
  213. package/Libraries/Image/resolveAssetSource.windows.js +5 -3
  214. package/Libraries/Interaction/FrameRateLogger.js +1 -1
  215. package/Libraries/Interaction/InteractionManager.js +20 -9
  216. package/Libraries/Interaction/InteractionManagerStub.js +10 -2
  217. package/Libraries/Interaction/JSEventLoopWatchdog.js +2 -2
  218. package/Libraries/Interaction/NativeFrameRateLogger.js +2 -2
  219. package/Libraries/Interaction/PanResponder.js +49 -46
  220. package/Libraries/Interaction/TaskQueue.js +4 -4
  221. package/Libraries/Interaction/TouchHistoryMath.js +27 -1
  222. package/Libraries/LayoutAnimation/LayoutAnimation.js +20 -6
  223. package/Libraries/Linking/Linking.d.ts +3 -3
  224. package/Libraries/Linking/Linking.js +10 -9
  225. package/Libraries/Linking/NativeIntentAndroid.js +2 -2
  226. package/Libraries/Linking/NativeLinkingManager.js +2 -2
  227. package/Libraries/Lists/FillRateHelper.js +4 -4
  228. package/Libraries/Lists/FlatList.js +30 -30
  229. package/Libraries/Lists/SectionList.js +10 -10
  230. package/Libraries/Lists/SectionListModern.js +9 -7
  231. package/Libraries/Lists/ViewabilityHelper.js +4 -3
  232. package/Libraries/Lists/VirtualizeUtils.js +3 -5
  233. package/Libraries/Lists/VirtualizedList.js +6 -6
  234. package/Libraries/Lists/VirtualizedListContext.js +5 -5
  235. package/Libraries/Lists/VirtualizedSectionList.js +5 -3
  236. package/Libraries/Lists/__flowtests__/FlatList-flowtest.js +1 -1
  237. package/Libraries/LogBox/Data/LogBoxData.js +15 -15
  238. package/Libraries/LogBox/Data/LogBoxLog.js +51 -29
  239. package/Libraries/LogBox/Data/parseLogBoxLog.js +10 -10
  240. package/Libraries/LogBox/LogBox.js +22 -2
  241. package/Libraries/LogBox/LogBoxInspectorContainer.js +3 -3
  242. package/Libraries/LogBox/LogBoxNotificationContainer.js +3 -3
  243. package/Libraries/LogBox/UI/AnsiHighlight.js +7 -3
  244. package/Libraries/LogBox/UI/LogBoxButton.js +8 -6
  245. package/Libraries/LogBox/UI/LogBoxInspector.js +1 -1
  246. package/Libraries/LogBox/UI/LogBoxInspectorBody.js +8 -2
  247. package/Libraries/LogBox/UI/LogBoxInspectorCodeFrame.js +50 -31
  248. package/Libraries/LogBox/UI/LogBoxInspectorCodeFrame.windows.js +50 -31
  249. package/Libraries/LogBox/UI/LogBoxInspectorFooter.js +11 -3
  250. package/Libraries/LogBox/UI/LogBoxInspectorFooterButton.js +2 -0
  251. package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +8 -2
  252. package/Libraries/LogBox/UI/LogBoxInspectorHeader.windows.js +8 -2
  253. package/Libraries/LogBox/UI/LogBoxInspectorHeaderButton.js +2 -0
  254. package/Libraries/LogBox/UI/LogBoxInspectorMessageHeader.js +6 -4
  255. package/Libraries/LogBox/UI/LogBoxInspectorReactFrames.js +5 -3
  256. package/Libraries/LogBox/UI/LogBoxInspectorReactFrames.windows.js +5 -3
  257. package/Libraries/LogBox/UI/LogBoxInspectorSection.js +2 -2
  258. package/Libraries/LogBox/UI/LogBoxInspectorSourceMapStatus.js +4 -4
  259. package/Libraries/LogBox/UI/LogBoxInspectorStackFrame.js +5 -3
  260. package/Libraries/LogBox/UI/LogBoxInspectorStackFrame.windows.js +5 -3
  261. package/Libraries/LogBox/UI/LogBoxInspectorStackFrames.js +2 -2
  262. package/Libraries/LogBox/UI/LogBoxNotification.js +6 -2
  263. package/Libraries/LogBox/UI/LogBoxNotificationCountBadge.js +3 -1
  264. package/Libraries/LogBox/UI/LogBoxNotificationDismissButton.js +2 -0
  265. package/Libraries/LogBox/UI/LogBoxNotificationMessage.js +4 -1
  266. package/Libraries/Modal/Modal.js +82 -89
  267. package/Libraries/Modal/Modal.windows.js +85 -89
  268. package/Libraries/Modal/NativeModalManager.js +2 -2
  269. package/Libraries/Modal/RCTModalHostViewNativeComponent.js +2 -2
  270. package/Libraries/NativeComponent/BaseViewConfig.android.js +16 -6
  271. package/Libraries/NativeComponent/BaseViewConfig.ios.js +19 -9
  272. package/Libraries/NativeComponent/BaseViewConfig.js.flow +14 -0
  273. package/Libraries/NativeComponent/BaseViewConfig.windows.js +19 -9
  274. package/Libraries/NativeComponent/NativeComponentRegistry.js +1 -1
  275. package/Libraries/NativeComponent/StaticViewConfigValidator.js +5 -1
  276. package/Libraries/NativeModules/specs/NativeDevMenu.js +2 -2
  277. package/Libraries/NativeModules/specs/NativeDevSettings.js +2 -2
  278. package/Libraries/NativeModules/specs/NativeDeviceEventManager.js +2 -2
  279. package/Libraries/NativeModules/specs/NativeDialogManagerAndroid.js +2 -2
  280. package/Libraries/NativeModules/specs/NativeDialogManagerWindows.js +2 -2
  281. package/Libraries/NativeModules/specs/NativeLogBox.js +2 -2
  282. package/Libraries/NativeModules/specs/NativeRedBox.js +2 -2
  283. package/Libraries/NativeModules/specs/NativeSourceCode.js +2 -2
  284. package/Libraries/Network/FormData.js +1 -1
  285. package/Libraries/Network/NativeNetworkingAndroid.js +2 -2
  286. package/Libraries/Network/NativeNetworkingIOS.js +2 -2
  287. package/Libraries/Network/RCTNetworking.android.js +1 -1
  288. package/Libraries/Network/RCTNetworking.ios.js +1 -1
  289. package/Libraries/Network/RCTNetworking.js.flow +44 -0
  290. package/Libraries/Network/RCTNetworking.windows.js +1 -1
  291. package/Libraries/Network/XMLHttpRequest.js +10 -685
  292. package/Libraries/Network/XMLHttpRequest_new.js +794 -0
  293. package/Libraries/Network/XMLHttpRequest_old.js +701 -0
  294. package/Libraries/Network/convertRequestBody.js +7 -4
  295. package/Libraries/Network/fetch.js +4 -3
  296. package/Libraries/PermissionsAndroid/NativePermissionsAndroid.js +2 -2
  297. package/Libraries/PermissionsAndroid/PermissionsAndroid.js +65 -63
  298. package/Libraries/Pressability/HoverState.js +1 -0
  299. package/Libraries/Pressability/Pressability.js +34 -34
  300. package/Libraries/Pressability/Pressability.windows.js +34 -34
  301. package/Libraries/Pressability/PressabilityDebug.js +2 -2
  302. package/Libraries/Pressability/PressabilityPerformanceEventEmitter.js +2 -2
  303. package/Libraries/Promise.js +2 -2
  304. package/Libraries/PushNotificationIOS/NativePushNotificationManagerIOS.js +2 -2
  305. package/Libraries/PushNotificationIOS/PushNotificationIOS.js +119 -16
  306. package/Libraries/ReactNative/AppContainer-dev.js +4 -3
  307. package/Libraries/ReactNative/AppContainer.js +3 -3
  308. package/Libraries/ReactNative/AppRegistry.js +4 -4
  309. package/Libraries/ReactNative/BridgelessUIManager.js +4 -9
  310. package/Libraries/ReactNative/FabricUIManager.js +22 -10
  311. package/Libraries/ReactNative/I18nManager.js +4 -3
  312. package/Libraries/ReactNative/NativeHeadlessJsTaskSupport.js +2 -2
  313. package/Libraries/ReactNative/NativeI18nManager.js +2 -2
  314. package/Libraries/ReactNative/NativeUIManager.js +2 -2
  315. package/Libraries/ReactNative/PaperUIManager.js +6 -6
  316. package/Libraries/ReactNative/PaperUIManager.windows.js +6 -6
  317. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +7 -5
  318. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +85 -30
  319. package/Libraries/ReactNative/ReactNativeFeatureFlags.js +3 -3
  320. package/Libraries/ReactNative/ReactNativeRuntimeDiagnostics.js +3 -3
  321. package/Libraries/ReactNative/RendererImplementation.js +12 -5
  322. package/Libraries/ReactNative/RootTag.js +1 -1
  323. package/Libraries/ReactNative/UIManager.d.ts +1 -0
  324. package/Libraries/ReactNative/UIManager.js +3 -3
  325. package/Libraries/ReactNative/UIManagerProperties.js +1 -1
  326. package/Libraries/ReactNative/getNativeComponentAttributes.js +10 -9
  327. package/Libraries/ReactNative/requireNativeComponent.js +3 -2
  328. package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +30 -10
  329. package/Libraries/Renderer/shims/ReactNativeTypes.js +40 -89
  330. package/Libraries/Settings/NativeSettingsManager.js +2 -2
  331. package/Libraries/Settings/Settings.ios.js +1 -1
  332. package/Libraries/Settings/Settings.js +3 -3
  333. package/Libraries/Share/NativeShareModule.js +2 -2
  334. package/Libraries/Share/Share.js +11 -4
  335. package/Libraries/StyleSheet/PlatformColorValueTypes.ios.js +1 -1
  336. package/Libraries/StyleSheet/PlatformColorValueTypes.js.flow +22 -0
  337. package/Libraries/StyleSheet/Rect.js +2 -2
  338. package/Libraries/StyleSheet/StyleSheet.js +4 -3
  339. package/Libraries/StyleSheet/StyleSheetTypes.d.ts +1 -1
  340. package/Libraries/StyleSheet/__flowtests__/StyleSheet-flowtest.js +1 -1
  341. package/Libraries/StyleSheet/flattenStyle.js +1 -1
  342. package/Libraries/StyleSheet/normalizeColor.js +1 -1
  343. package/Libraries/StyleSheet/private/_TransformStyle.js +18 -18
  344. package/Libraries/StyleSheet/processAspectRatio.js +1 -1
  345. package/Libraries/StyleSheet/processBackgroundImage.js +138 -136
  346. package/Libraries/StyleSheet/processBoxShadow.js +4 -0
  347. package/Libraries/StyleSheet/processColor.js +2 -2
  348. package/Libraries/StyleSheet/processColorArray.js +1 -1
  349. package/Libraries/StyleSheet/processFilter.js +4 -0
  350. package/Libraries/StyleSheet/processFontVariant.js +1 -1
  351. package/Libraries/StyleSheet/processTransform.js +1 -1
  352. package/Libraries/StyleSheet/setNormalizedColorAlpha.js +1 -1
  353. package/Libraries/Text/Text.d.ts +1 -1
  354. package/Libraries/Text/Text.js +19 -17
  355. package/Libraries/Text/Text.windows.js +20 -18
  356. package/Libraries/Text/TextAncestor.js +2 -3
  357. package/Libraries/Text/TextNativeComponent.js +3 -3
  358. package/Libraries/Text/TextProps.js +134 -94
  359. package/Libraries/Text/TextProps.windows.js +134 -94
  360. package/Libraries/TurboModule/TurboModuleRegistry.js +1 -1
  361. package/Libraries/TurboModule/samples/NativeSampleTurboModule.js +2 -2
  362. package/Libraries/Types/CodegenTypes.js +5 -4
  363. package/Libraries/Types/CoreEventTypes.js +119 -86
  364. package/Libraries/Types/CoreEventTypes.windows.js +127 -95
  365. package/Libraries/Types/ReactDevToolsTypes.js +4 -8
  366. package/Libraries/UTFSequence.js +4 -3
  367. package/Libraries/Utilities/Appearance.js +0 -8
  368. package/Libraries/Utilities/BackHandler.android.js +3 -3
  369. package/Libraries/Utilities/BackHandler.ios.js +7 -7
  370. package/Libraries/Utilities/BackHandler.js.flow +25 -0
  371. package/Libraries/Utilities/BackHandler.windows.js +3 -3
  372. package/Libraries/Utilities/DevLoadingView.js +1 -1
  373. package/Libraries/Utilities/DevSettings.js +15 -1
  374. package/Libraries/Utilities/DeviceInfo.js +1 -1
  375. package/Libraries/Utilities/Dimensions.js +5 -0
  376. package/Libraries/Utilities/FeatureDetection.js +2 -4
  377. package/Libraries/Utilities/GlobalPerformanceLogger.js +1 -1
  378. package/Libraries/Utilities/HMRClient.js +7 -7
  379. package/Libraries/Utilities/HMRClientProdShim.js +1 -1
  380. package/Libraries/Utilities/NativeAppearance.js +2 -2
  381. package/Libraries/Utilities/NativeDevLoadingView.js +2 -2
  382. package/Libraries/Utilities/NativeDeviceInfo.js +2 -2
  383. package/Libraries/Utilities/NativePlatformConstantsAndroid.js +2 -2
  384. package/Libraries/Utilities/NativePlatformConstantsIOS.js +2 -2
  385. package/Libraries/Utilities/NativePlatformConstantsWin.js +2 -2
  386. package/Libraries/Utilities/Platform.android.js +6 -6
  387. package/Libraries/Utilities/Platform.ios.js +6 -6
  388. package/Libraries/Utilities/{DebugEnvironment.js → Platform.js.flow} +3 -6
  389. package/Libraries/Utilities/Platform.windows.js +8 -8
  390. package/Libraries/Utilities/{Platform.flow.windows.js → PlatformTypes.js} +79 -22
  391. package/Libraries/Utilities/PolyfillFunctions.js +3 -5
  392. package/Libraries/Utilities/RCTLog.js +1 -1
  393. package/Libraries/Utilities/ReactNativeTestTools.js +6 -6
  394. package/Libraries/Utilities/SceneTracker.js +1 -1
  395. package/Libraries/Utilities/__mocks__/GlobalPerformanceLogger.js +2 -2
  396. package/Libraries/Utilities/binaryToBase64.js +1 -1
  397. package/Libraries/Utilities/codegenNativeCommands.js +2 -2
  398. package/Libraries/Utilities/codegenNativeComponent.js +3 -3
  399. package/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.js +1 -1
  400. package/Libraries/Utilities/defineLazyObjectProperty.js +1 -1
  401. package/Libraries/Utilities/differ/deepDiffer.js +6 -6
  402. package/Libraries/Utilities/differ/insetsDiffer.js +3 -3
  403. package/Libraries/Utilities/differ/matricesDiffer.js +3 -6
  404. package/Libraries/Utilities/differ/pointsDiffer.js +3 -3
  405. package/Libraries/Utilities/differ/sizesDiffer.js +3 -3
  406. package/Libraries/Utilities/dismissKeyboard.js +3 -2
  407. package/Libraries/Utilities/infoLog.js +1 -1
  408. package/Libraries/Utilities/logError.js +1 -1
  409. package/Libraries/Utilities/mapWithSeparator.js +1 -1
  410. package/Libraries/Utilities/stringifySafe.js +2 -2
  411. package/Libraries/Utilities/warnOnce.js +1 -1
  412. package/Libraries/Vibration/NativeVibration.js +2 -2
  413. package/Libraries/Vibration/Vibration.js +4 -4
  414. package/Libraries/WebSocket/NativeWebSocketModule.js +2 -2
  415. package/Libraries/WebSocket/WebSocket.js +8 -285
  416. package/Libraries/WebSocket/WebSocketEvent.js +2 -2
  417. package/Libraries/WebSocket/WebSocketInterceptor.js +39 -11
  418. package/Libraries/WebSocket/WebSocket_new.js +325 -0
  419. package/Libraries/WebSocket/WebSocket_old.js +297 -0
  420. package/Libraries/WebSocket/__mocks__/event-target-shim.js +1 -1
  421. package/Libraries/__flowtests__/ReactNativeTypes-flowtest.js +2 -4
  422. package/Libraries/__tests__/ViewWindows-test.js +1 -1
  423. package/Libraries/vendor/core/ErrorUtils.js +1 -1
  424. package/Libraries/vendor/emitter/EventEmitter.js +21 -9
  425. package/Microsoft.ReactNative/Fabric/AbiShadowNode.cpp +4 -4
  426. package/Microsoft.ReactNative/Fabric/AbiShadowNode.h +5 -5
  427. package/Microsoft.ReactNative/Fabric/ComponentView.h +6 -5
  428. package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.h +1 -0
  429. package/Microsoft.ReactNative/Fabric/Composition/ContentIslandComponentView.h +1 -1
  430. package/Microsoft.ReactNative/Fabric/Composition/ParagraphComponentView.cpp +3 -1
  431. package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.cpp +3 -2
  432. package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.h +1 -1
  433. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentDescriptor.h +2 -1
  434. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp +3 -2
  435. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputEventEmitter.cpp +1 -1
  436. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputEventEmitter.h +2 -2
  437. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputShadowNode.cpp +5 -12
  438. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputShadowNode.h +2 -2
  439. package/Microsoft.ReactNative/Fabric/Composition/TooltipService.cpp +3 -2
  440. package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.h +7 -3
  441. package/Microsoft.ReactNative/Fabric/FabricUIManagerModule.cpp +10 -1
  442. package/Microsoft.ReactNative/Fabric/WindowsComponentDescriptorRegistry.h +2 -0
  443. package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformViewEventEmitter.cpp +1 -1
  444. package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformViewEventEmitter.h +2 -2
  445. package/Microsoft.ReactNative/Fabric/platform/react/renderer/graphics/HostPlatformColor.h +0 -1
  446. package/Microsoft.ReactNative/Fabric/platform/react/renderer/graphics/PlatformColorUtils.h +1 -1
  447. package/Microsoft.ReactNative/Fabric/platform/react/renderer/textlayoutmanager/{TextLayoutManager.cpp → WindowsTextLayoutManager.cpp} +21 -36
  448. package/Microsoft.ReactNative/Fabric/platform/react/renderer/textlayoutmanager/WindowsTextLayoutManager.h +68 -0
  449. package/Microsoft.ReactNative/IReactPackageBuilderFabric.idl +2 -3
  450. package/Microsoft.ReactNative/Microsoft.ReactNative.vcxproj +10 -11
  451. package/Microsoft.ReactNative/ReactHost/ReactHost.cpp +0 -4
  452. package/Microsoft.ReactNative/ReactHost/ReactInstanceWin.cpp +1 -1
  453. package/Microsoft.ReactNative.Cxx/ReactCommon/react/bridging/Bridging.h +3 -3
  454. package/PropertySheets/External/Microsoft.ReactNative.Composition.Package.props +4 -0
  455. package/PropertySheets/External/Microsoft.ReactNative.Composition.Package.targets +4 -0
  456. package/PropertySheets/External/Microsoft.ReactNative.Cpp.PackageReferences.props +4 -14
  457. package/PropertySheets/External/Microsoft.ReactNative.WindowsSdk.Default.props +1 -1
  458. package/PropertySheets/Generated/PackageVersion.g.props +4 -4
  459. package/PropertySheets/NuGet.LockFile.props +9 -1
  460. package/PropertySheets/React.Cpp.props +11 -3
  461. package/ReactCommon/ReactCommon.vcxproj +20 -5
  462. package/ReactCommon/ReactCommon.vcxproj.filters +12 -0
  463. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/JSExecutor.cpp +14 -0
  464. package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/JSExecutor.h +16 -0
  465. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsi/jsi/test/testlib.cpp +58 -8
  466. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsinspector-modern/NetworkIOAgent.cpp +15 -4
  467. package/ReactCommon/TEMP_UntilReactCommonUpdate/jsinspector-modern/NetworkIOAgent.h +2 -2
  468. package/ReactCommon/TEMP_UntilReactCommonUpdate/{react → jsitooling/react}/runtime/JSRuntimeFactory.h +4 -0
  469. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/Bridging.h +3 -3
  470. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/nativemodule/dom/NativeDOM.cpp +214 -110
  471. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/nativemodule/dom/NativeDOM.h +129 -0
  472. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/view/conversions.h +1404 -0
  473. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/css/CSSHexColor.h +104 -0
  474. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/css/CSSTokenizer.h +277 -0
  475. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/mounting/internal/CullingContext.cpp +49 -0
  476. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/mounting/internal/sliceChildShadowNodeViewPairs.cpp +191 -0
  477. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/runtime/ReactInstance.cpp +0 -8
  478. package/ReactCommon/TEMP_UntilReactCommonUpdate/reactperflogger/reactperflogger/ReactPerfettoLogger.cpp +96 -0
  479. package/Scripts/Microsoft.ReactNative.Managed.CodeGen.nuspec +1 -1
  480. package/Scripts/Microsoft.ReactNative.Managed.nuspec +23 -23
  481. package/Scripts/Microsoft.ReactNative.VersionCheck.targets +0 -2
  482. package/Scripts/Microsoft.ReactNative.nuspec +34 -29
  483. package/Scripts/Microsoft.ReactNative.targets +8 -5
  484. package/Scripts/NuGetRestoreForceEvaluateAllSolutions.ps1 +22 -7
  485. package/Scripts/OfficeReact.Win32.nuspec +16 -16
  486. package/Scripts/creaternwapp.cmd +177 -0
  487. package/Scripts/creaternwlib.cmd +176 -0
  488. package/Shared/HermesRuntimeHolder.cpp +15 -3
  489. package/Shared/HermesRuntimeHolder.h +16 -1
  490. package/Shared/Shared.vcxitems +8 -5
  491. package/Shared/Shared.vcxitems.filters +3 -3
  492. package/codegen/NativeDOMSpec.g.h +67 -61
  493. package/codegen/NativeDevMenuSpec.g.h +3 -9
  494. package/codegen/NativeDevSettingsSpec.g.h +13 -19
  495. package/codegen/NativePlatformConstantsWindowsSpec.g.h +7 -7
  496. package/codegen/NativeReactNativeFeatureFlagsSpec.g.h +108 -120
  497. package/codegen/NativeUIManagerSpec.g.h +3 -3
  498. package/codegen/rnwcoreJSI-generated.cpp +90 -179
  499. package/codegen/rnwcoreJSI.h +226 -400
  500. package/index.js +153 -237
  501. package/index.windows.js +61 -57
  502. package/jest/mockScrollView.js +1 -1
  503. package/jest/setup.js +314 -264
  504. package/package.json +29 -30
  505. package/src/private/animated/createAnimatedPropsHook.js +360 -0
  506. package/src/private/animated/{useAnimatedPropsMemo.js → createAnimatedPropsMemoHook.js} +84 -32
  507. package/src/private/components/HScrollViewNativeComponents.js +2 -2
  508. package/src/private/components/SafeAreaView_INTERNAL_DO_NOT_USE.js +2 -2
  509. package/src/private/components/VScrollViewNativeComponents.js +1 -1
  510. package/src/private/debugging/ReactDevToolsSettingsManager.android.js +1 -1
  511. package/src/private/debugging/ReactDevToolsSettingsManager.windows.js +1 -1
  512. package/src/private/devmenu/DevMenu.js +2 -2
  513. package/src/private/featureflags/ReactNativeFeatureFlags.js +53 -75
  514. package/src/private/featureflags/ReactNativeFeatureFlagsBase.js +5 -7
  515. package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +10 -12
  516. package/{Libraries/Inspector → src/private/inspector}/BorderBox.js +3 -3
  517. package/{Libraries/Inspector → src/private/inspector}/BoxInspector.js +9 -6
  518. package/{Libraries/Inspector → src/private/inspector}/ElementBox.js +9 -8
  519. package/{Libraries/Inspector → src/private/inspector}/ElementProperties.js +20 -15
  520. package/{Libraries/Inspector → src/private/inspector}/Inspector.js +21 -18
  521. package/{Libraries/Inspector → src/private/inspector}/InspectorOverlay.js +11 -10
  522. package/{Libraries/Inspector → src/private/inspector}/InspectorPanel.js +17 -15
  523. package/{Libraries/Inspector → src/private/inspector}/NetworkOverlay.js +43 -27
  524. package/{Libraries/Inspector → src/private/inspector}/PerformanceOverlay.js +8 -6
  525. package/{Libraries/Inspector → src/private/inspector}/ReactDevToolsOverlay.js +11 -10
  526. package/{Libraries/Inspector → src/private/inspector}/StyleInspector.js +6 -6
  527. package/{Libraries/Network → src/private/inspector}/XHRInterceptor.js +5 -2
  528. package/{Libraries/Inspector → src/private/inspector}/getInspectorDataForViewAtPoint.js +6 -6
  529. package/{Libraries/Inspector → src/private/inspector}/resolveBoxStyle.js +5 -4
  530. package/src/private/renderer/errorhandling/ErrorHandlers.js +5 -5
  531. package/src/private/setup/setUpDOM.js +43 -3
  532. package/src/private/{specs → specs_DEPRECATED}/components/ActivityIndicatorViewNativeComponent.js +3 -3
  533. package/src/private/{specs → specs_DEPRECATED}/components/AndroidDrawerLayoutNativeComponent.js +7 -7
  534. package/src/private/{specs → specs_DEPRECATED}/components/AndroidHorizontalScrollContentViewNativeComponent.js +3 -3
  535. package/src/private/{specs → specs_DEPRECATED}/components/AndroidSwipeRefreshLayoutNativeComponent.js +3 -3
  536. package/src/private/{specs → specs_DEPRECATED}/components/AndroidSwitchNativeComponent.js +5 -5
  537. package/src/private/{specs → specs_DEPRECATED}/components/DebuggingOverlayNativeComponent.js +3 -3
  538. package/src/private/{specs → specs_DEPRECATED}/components/ProgressBarAndroidNativeComponent.js +3 -3
  539. package/src/private/{specs → specs_DEPRECATED}/components/PullToRefreshViewNativeComponent.js +3 -3
  540. package/src/private/{specs → specs_DEPRECATED}/components/RCTInputAccessoryViewNativeComponent.js +3 -3
  541. package/src/private/{specs → specs_DEPRECATED}/components/RCTModalHostViewNativeComponent.js +1 -1
  542. package/src/private/{specs → specs_DEPRECATED}/components/RCTSafeAreaViewNativeComponent.js +3 -3
  543. package/src/private/{specs → specs_DEPRECATED}/components/SwitchNativeComponent.js +5 -5
  544. package/src/private/{specs → specs_DEPRECATED}/components/UnimplementedNativeViewNativeComponent.js +3 -3
  545. package/src/private/{specs → specs_DEPRECATED}/modules/NativeAccessibilityManager.js +2 -2
  546. package/src/private/{specs → specs_DEPRECATED}/modules/NativeActionSheetManager.js +7 -7
  547. package/src/private/{specs → specs_DEPRECATED}/modules/NativeAlertManager.js +2 -2
  548. package/src/private/{specs → specs_DEPRECATED}/modules/NativeAnimatedModule.js +2 -2
  549. package/src/private/{specs → specs_DEPRECATED}/modules/NativeAnimatedTurboModule.js +2 -2
  550. package/src/private/{specs → specs_DEPRECATED}/modules/NativeAppState.js +3 -3
  551. package/src/private/{specs → specs_DEPRECATED}/modules/NativeBlobModule.js +1 -1
  552. package/src/private/{specs → specs_DEPRECATED}/modules/NativeClipboard.js +1 -1
  553. package/src/private/{specs → specs_DEPRECATED}/modules/NativeDevMenu.js +0 -1
  554. package/src/private/{specs → specs_DEPRECATED}/modules/NativeDevSettings.js +0 -1
  555. package/src/private/{specs → specs_DEPRECATED}/modules/NativeDeviceInfo.js +8 -8
  556. package/src/private/{specs → specs_DEPRECATED}/modules/NativeDialogManagerAndroid.js +4 -4
  557. package/src/private/{specs → specs_DEPRECATED}/modules/NativeDialogManagerWindows.js +4 -4
  558. package/src/private/{specs → specs_DEPRECATED}/modules/NativeExceptionsManager.js +3 -3
  559. package/src/private/{specs → specs_DEPRECATED}/modules/NativeFrameRateLogger.js +1 -1
  560. package/src/private/{specs → specs_DEPRECATED}/modules/NativeI18nManager.js +2 -2
  561. package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageEditor.js +9 -9
  562. package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageLoaderAndroid.js +1 -1
  563. package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageLoaderIOS.js +1 -1
  564. package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageStoreAndroid.js +1 -1
  565. package/src/private/{specs → specs_DEPRECATED}/modules/NativeImageStoreIOS.js +3 -3
  566. package/src/private/{specs → specs_DEPRECATED}/modules/NativeNetworkingIOS.js +2 -2
  567. package/src/private/{specs → specs_DEPRECATED}/modules/NativePermissionsAndroid.js +5 -4
  568. package/src/private/{specs → specs_DEPRECATED}/modules/NativePlatformConstantsAndroid.js +4 -4
  569. package/src/private/{specs → specs_DEPRECATED}/modules/NativePlatformConstantsIOS.js +4 -4
  570. package/src/private/{specs → specs_DEPRECATED}/modules/NativePlatformConstantsWindows.js +3 -8
  571. package/src/private/{specs → specs_DEPRECATED}/modules/NativePushNotificationManagerIOS.js +7 -7
  572. package/src/private/{specs → specs_DEPRECATED}/modules/NativeSampleTurboModule.js +2 -2
  573. package/src/private/{specs → specs_DEPRECATED}/modules/NativeSettingsManager.js +2 -2
  574. package/src/private/{specs → specs_DEPRECATED}/modules/NativeShareModule.js +3 -3
  575. package/src/private/{specs → specs_DEPRECATED}/modules/NativeSourceCode.js +2 -2
  576. package/src/private/{specs → specs_DEPRECATED}/modules/NativeStatusBarManagerAndroid.js +4 -4
  577. package/src/private/{specs → specs_DEPRECATED}/modules/NativeStatusBarManagerIOS.js +6 -6
  578. package/src/private/{specs → specs_DEPRECATED}/modules/NativeToastAndroid.js +2 -2
  579. package/src/private/specs_DEPRECATED/modules/NativeUIManager.js +184 -0
  580. package/src/private/{specs → specs_DEPRECATED}/modules/NativeVibration.js +1 -1
  581. package/src/private/{specs → specs_DEPRECATED}/modules/NativeWebSocketModule.js +1 -1
  582. package/src/private/types/HostComponent.js +16 -0
  583. package/src/private/types/HostInstance.js +50 -0
  584. package/src/private/webapis/dom/events/CustomEvent.js +38 -0
  585. package/src/private/webapis/dom/events/Event.js +236 -0
  586. package/src/private/webapis/dom/events/EventHandlerAttributes.js +130 -0
  587. package/src/private/webapis/dom/events/EventTarget.js +436 -0
  588. package/src/private/webapis/dom/events/internals/EventInternals.js +120 -0
  589. package/src/private/webapis/dom/events/internals/EventTargetInternals.js +52 -0
  590. package/src/private/webapis/dom/nodes/ReactNativeDocument.js +121 -0
  591. package/src/private/webapis/dom/nodes/ReactNativeElement.js +82 -51
  592. package/src/private/webapis/dom/nodes/ReadOnlyCharacterData.js +7 -6
  593. package/src/private/webapis/dom/nodes/ReadOnlyElement.js +26 -26
  594. package/src/private/webapis/dom/nodes/ReadOnlyNode.js +56 -78
  595. package/src/private/webapis/dom/nodes/internals/NodeInternals.js +144 -0
  596. package/src/private/webapis/dom/nodes/internals/ReactNativeDocumentElementInstanceHandle.js +55 -0
  597. package/src/private/webapis/dom/nodes/internals/ReactNativeDocumentInstanceHandle.js +44 -0
  598. package/src/private/webapis/dom/nodes/specs/NativeDOM.js +305 -194
  599. package/src/private/webapis/dom/oldstylecollections/HTMLCollection.js +2 -2
  600. package/src/private/webapis/dom/oldstylecollections/NodeList.js +2 -2
  601. package/src/private/webapis/{dom/oldstylecollections → geometry}/DOMRectList.js +3 -3
  602. package/src/private/webapis/html/events/MessageEvent.js +56 -0
  603. package/src/private/webapis/intersectionobserver/IntersectionObserver.js +6 -6
  604. package/src/private/webapis/intersectionobserver/IntersectionObserverEntry.js +1 -1
  605. package/src/private/webapis/intersectionobserver/{IntersectionObserverManager.js → internals/IntersectionObserverManager.js} +20 -17
  606. package/src/private/webapis/mutationobserver/MutationObserver.js +11 -11
  607. package/src/private/webapis/mutationobserver/{MutationObserverManager.js → internals/MutationObserverManager.js} +12 -14
  608. package/src/private/webapis/performance/EventTiming.js +1 -1
  609. package/src/private/webapis/performance/Performance.js +3 -3
  610. package/src/private/webapis/performance/PerformanceObserver.js +8 -8
  611. package/src/private/webapis/performance/{RawPerformanceEntry.js → internals/RawPerformanceEntry.js} +6 -6
  612. package/src/private/webapis/performance/{Utilities.js → internals/Utilities.js} +1 -1
  613. package/src/private/webapis/performance/specs/__mocks__/NativePerformanceMock.js +1 -1
  614. package/src/private/webapis/websockets/events/CloseEvent.js +52 -0
  615. package/src/private/webapis/xhr/events/ProgressEvent.js +52 -0
  616. package/src/types/globals.d.ts +628 -0
  617. package/templates/cpp-app/template.config.js +2 -2
  618. package/templates/cpp-app/windows/_gitignore +5 -0
  619. package/templates/cpp-lib/template.config.js +2 -2
  620. package/templates/cpp-lib/windows/MyLib/MyLib.cpp +1 -1
  621. package/templates/cpp-lib/windows/MyLib/MyLib.h +2 -0
  622. package/templates/cpp-lib/windows/_gitignore +5 -0
  623. package/templates/old/generateWrapper.js +8 -22
  624. package/templates/old/uwp-cpp-app/template.config.js +1 -1
  625. package/templates/old/uwp-cs-app/template.config.js +1 -1
  626. package/types/index.d.ts +2 -58
  627. package/Libraries/Animated/AnimatedWeb.js +0 -26
  628. package/Libraries/JSInspector/InspectorAgent.js +0 -27
  629. package/Libraries/JSInspector/JSInspector.js +0 -33
  630. package/Libraries/JSInspector/NetworkAgent.js +0 -295
  631. package/Libraries/Utilities/Platform.flow.js +0 -91
  632. package/Libraries/YellowBox/YellowBoxDeprecated.d.ts +0 -19
  633. package/Libraries/YellowBox/YellowBoxDeprecated.js +0 -75
  634. package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformTouch.h +0 -10
  635. package/Microsoft.ReactNative/Fabric/platform/react/renderer/graphics/Float.h +0 -20
  636. package/Microsoft.ReactNative/Fabric/platform/react/renderer/textlayoutmanager/TextLayoutManager.h +0 -117
  637. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/textinput/TextInputState.h +0 -73
  638. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/imagemanager/ImageRequestParams.h +0 -30
  639. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/runtimescheduler/SchedulerPriorityUtils.h +0 -60
  640. package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/uimanager/primitives.h +0 -179
  641. package/codegen/NativeCPUTimeSpec.g.h +0 -41
  642. package/codegen/NativeFantomSpec.g.h +0 -78
  643. package/src/private/specs/modules/NativeCPUTime.js +0 -24
  644. package/src/private/specs/modules/NativeFantom.js +0 -37
  645. package/src/private/specs/modules/NativeUIManager.js +0 -111
  646. package/templates/old/uwp-cpp-lib/template.config.js +0 -15
  647. package/templates/old/uwp-cs-lib/template.config.js +0 -15
  648. package/types/modules/globals.d.ts +0 -599
  649. /package/ReactCommon/TEMP_UntilReactCommonUpdate/{react → jsitooling/react}/runtime/JSRuntimeFactory.cpp +0 -0
  650. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeAccessibilityInfo.js +0 -0
  651. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeAppTheme.js +0 -0
  652. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeAppearance.js +0 -0
  653. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeBugReporting.js +0 -0
  654. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeDevLoadingView.js +0 -0
  655. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeDeviceEventManager.js +0 -0
  656. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeFileReaderModule.js +0 -0
  657. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeHeadlessJsTaskSupport.js +0 -0
  658. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeIntentAndroid.js +0 -0
  659. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeJSCHeapCapture.js +0 -0
  660. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeKeyboardObserver.js +0 -0
  661. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeLinkingManager.js +0 -0
  662. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeLogBox.js +0 -0
  663. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeModalManager.js +0 -0
  664. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeNetworkingAndroid.js +0 -0
  665. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeReactDevToolsSettingsManager.js +0 -0
  666. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeRedBox.js +0 -0
  667. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeSegmentFetcher.js +0 -0
  668. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeSoundManager.js +0 -0
  669. /package/src/private/{specs → specs_DEPRECATED}/modules/NativeTiming.js +0 -0
  670. /package/src/private/webapis/dom/nodes/{utilities → internals}/Traversal.js +0 -0
  671. /package/src/private/webapis/{dom/geometry → geometry}/DOMRect.js +0 -0
  672. /package/src/private/webapis/{dom/geometry → geometry}/DOMRectReadOnly.js +0 -0
  673. /package/src/private/webapis/{dom/oldstylecollections → utils}/ArrayLikeUtils.js +0 -0
@@ -11,9 +11,9 @@
11
11
  // Small subset from whatwg-url: https://github.com/jsdom/whatwg-url/tree/master/src
12
12
  // The reference code bloat comes from Unicode issues with URLs, so those won't work here.
13
13
  export class URLSearchParams {
14
- _searchParams: Array<Array<string>> = [];
14
+ _searchParams: Array<[string, string]> = [];
15
15
 
16
- constructor(params: any) {
16
+ constructor(params?: Record<string, string>) {
17
17
  if (typeof params === 'object') {
18
18
  Object.keys(params).forEach(key => this.append(key, params[key]));
19
19
  }
@@ -23,33 +23,32 @@ export class URLSearchParams {
23
23
  this._searchParams.push([key, value]);
24
24
  }
25
25
 
26
- delete(name: string): void {
26
+ delete(name: string): empty {
27
27
  throw new Error('URLSearchParams.delete is not implemented');
28
28
  }
29
29
 
30
- get(name: string): void {
30
+ get(name: string): empty {
31
31
  throw new Error('URLSearchParams.get is not implemented');
32
32
  }
33
33
 
34
- getAll(name: string): void {
34
+ getAll(name: string): empty {
35
35
  throw new Error('URLSearchParams.getAll is not implemented');
36
36
  }
37
37
 
38
- has(name: string): void {
38
+ has(name: string): empty {
39
39
  throw new Error('URLSearchParams.has is not implemented');
40
40
  }
41
41
 
42
- set(name: string, value: string): void {
42
+ set(name: string, value: string): empty {
43
43
  throw new Error('URLSearchParams.set is not implemented');
44
44
  }
45
45
 
46
- sort(): void {
46
+ sort(): empty {
47
47
  throw new Error('URLSearchParams.sort is not implemented');
48
48
  }
49
49
 
50
50
  // $FlowFixMe[unsupported-syntax]
51
- // $FlowFixMe[missing-local-annot]
52
- [Symbol.iterator]() {
51
+ [Symbol.iterator](): Iterator<[string, string]> {
53
52
  return this._searchParams[Symbol.iterator]();
54
53
  }
55
54
 
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ *
7
+ * @format
8
+ * @flow
9
+ */
10
+
11
+ declare export class URLSearchParams {
12
+ _searchParams: Array<[string, string]>;
13
+ constructor(params?: Record<string, string>): void;
14
+ append(key: string, value: string): void;
15
+ delete(name: string): empty;
16
+ get(name: string): empty;
17
+ getAll(name: string): empty;
18
+ has(name: string): empty;
19
+ set(name: string, value: string): empty;
20
+ sort(): empty;
21
+ @@iterator(): Iterator<[string, string]>;
22
+ toString(): string;
23
+ }
@@ -23,7 +23,7 @@ type DebugData = {
23
23
 
24
24
  function defaultExtras() {
25
25
  BugReporting.addFileSource('react_hierarchy.txt', () =>
26
- require('./dumpReactTree')(),
26
+ require('./dumpReactTree').default(),
27
27
  );
28
28
  }
29
29
 
@@ -137,4 +137,4 @@ class BugReporting {
137
137
  }
138
138
  }
139
139
 
140
- module.exports = BugReporting;
140
+ export default BugReporting;
@@ -8,6 +8,6 @@
8
8
  * @format
9
9
  */
10
10
 
11
- export * from '../../src/private/specs/modules/NativeBugReporting';
12
- import NativeBugReporting from '../../src/private/specs/modules/NativeBugReporting';
11
+ export * from '../../src/private/specs_DEPRECATED/modules/NativeBugReporting';
12
+ import NativeBugReporting from '../../src/private/specs_DEPRECATED/modules/NativeBugReporting';
13
13
  export default NativeBugReporting;
@@ -11,7 +11,7 @@
11
11
  'use strict';
12
12
 
13
13
  /*
14
- const getReactData = require('getReactData');
14
+ const getReactData = require('getReactData').default;
15
15
 
16
16
  const INDENTATION_SIZE = 2;
17
17
  const MAX_DEPTH = 2;
@@ -148,4 +148,4 @@ function indent(size: number) {
148
148
  }
149
149
  */
150
150
 
151
- module.exports = dumpReactTree;
151
+ export default dumpReactTree;
@@ -184,4 +184,4 @@ function copyWithSet(
184
184
  return copyWithSetImpl(obj, path, 0, value);
185
185
  }
186
186
 
187
- module.exports = getData;
187
+ export default getData;
@@ -8,7 +8,7 @@
8
8
  * @format
9
9
  */
10
10
 
11
- import type {HostInstance} from '../../Renderer/shims/ReactNativeTypes';
11
+ import type {HostInstance} from '../../../src/private/types/HostInstance';
12
12
  import type {EventSubscription} from '../../vendor/emitter/EventEmitter';
13
13
 
14
14
  import RCTDeviceEventEmitter from '../../EventEmitter/RCTDeviceEventEmitter';
@@ -8,7 +8,7 @@
8
8
  * @format
9
9
  */
10
10
 
11
- import type {HostInstance} from '../../Renderer/shims/ReactNativeTypes';
11
+ import type {HostInstance} from '../../../src/private/types/HostInstance';
12
12
  import type {EventSubscription} from '../../vendor/emitter/EventEmitter';
13
13
 
14
14
  import RCTDeviceEventEmitter from '../../EventEmitter/RCTDeviceEventEmitter';
@@ -8,6 +8,6 @@
8
8
  * @format
9
9
  */
10
10
 
11
- export * from '../../../src/private/specs/modules/NativeAccessibilityInfo';
12
- import NativeAccessibilityInfo from '../../../src/private/specs/modules/NativeAccessibilityInfo';
11
+ export * from '../../../src/private/specs_DEPRECATED/modules/NativeAccessibilityInfo';
12
+ import NativeAccessibilityInfo from '../../../src/private/specs_DEPRECATED/modules/NativeAccessibilityInfo';
13
13
  export default NativeAccessibilityInfo;
@@ -8,6 +8,6 @@
8
8
  * @format
9
9
  */
10
10
 
11
- export * from '../../../src/private/specs/modules/NativeAccessibilityManager';
12
- import NativeAccessibilityManager from '../../../src/private/specs/modules/NativeAccessibilityManager';
11
+ export * from '../../../src/private/specs_DEPRECATED/modules/NativeAccessibilityManager';
12
+ import NativeAccessibilityManager from '../../../src/private/specs_DEPRECATED/modules/NativeAccessibilityManager';
13
13
  export default NativeAccessibilityManager;
@@ -33,4 +33,4 @@ function legacySendAccessibilityEvent(
33
33
  }
34
34
  }
35
35
 
36
- module.exports = legacySendAccessibilityEvent;
36
+ export default legacySendAccessibilityEvent;
@@ -23,4 +23,4 @@ function legacySendAccessibilityEvent(
23
23
  }
24
24
  }
25
25
 
26
- module.exports = legacySendAccessibilityEvent;
26
+ export default legacySendAccessibilityEvent;
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ *
7
+ * @format
8
+ * @flow strict-local
9
+ */
10
+
11
+ /**
12
+ * This is a function exposed to the React Renderer that can be used by the
13
+ * pre-Fabric renderer to emit accessibility events to pre-Fabric nodes.
14
+ */
15
+ declare function legacySendAccessibilityEvent(
16
+ reactTag: number,
17
+ eventType: string,
18
+ ): void;
19
+
20
+ export default legacySendAccessibilityEvent;
@@ -33,4 +33,4 @@ function legacySendAccessibilityEvent(
33
33
  }
34
34
  }
35
35
 
36
- module.exports = legacySendAccessibilityEvent;
36
+ export default legacySendAccessibilityEvent;
@@ -9,7 +9,7 @@
9
9
  */
10
10
 
11
11
  'use strict';
12
- import type {HostComponent} from '../../Renderer/shims/ReactNativeTypes';
12
+ import type {HostComponent} from '../../../src/private/types/HostComponent';
13
13
  import type {ViewProps} from '../View/ViewPropTypes';
14
14
 
15
15
  import StyleSheet, {type ColorValue} from '../../StyleSheet/StyleSheet';
@@ -19,24 +19,24 @@ import * as React from 'react';
19
19
 
20
20
  const PlatformActivityIndicator =
21
21
  Platform.OS === 'android'
22
- ? require('../ProgressBarAndroid/ProgressBarAndroid')
22
+ ? require('../ProgressBarAndroid/ProgressBarAndroid').default
23
23
  : require('./ActivityIndicatorViewNativeComponent').default;
24
24
 
25
25
  const GRAY = '#999999';
26
26
 
27
27
  type IndicatorSize = number | 'small' | 'large';
28
28
 
29
- type IOSProps = $ReadOnly<{|
29
+ type ActivityIndicatorIOSProps = $ReadOnly<{
30
30
  /**
31
31
  Whether the indicator should hide when not animating.
32
32
 
33
33
  @platform ios
34
34
  */
35
35
  hidesWhenStopped?: ?boolean,
36
- |}>;
37
- type Props = $ReadOnly<{|
36
+ }>;
37
+ export type ActivityIndicatorProps = $ReadOnly<{
38
38
  ...ViewProps,
39
- ...IOSProps,
39
+ ...ActivityIndicatorIOSProps,
40
40
 
41
41
  /**
42
42
  Whether to show the indicator (`true`) or hide it (`false`).
@@ -58,7 +58,7 @@ type Props = $ReadOnly<{|
58
58
  @type {@platform android} number
59
59
  */
60
60
  size?: ?IndicatorSize,
61
- |}>;
61
+ }>;
62
62
 
63
63
  const ActivityIndicator = (
64
64
  {
@@ -69,7 +69,7 @@ const ActivityIndicator = (
69
69
  size = 'small',
70
70
  style,
71
71
  ...restProps
72
- }: Props,
72
+ }: ActivityIndicatorProps,
73
73
  forwardedRef?: any,
74
74
  ) => {
75
75
  let sizeStyle;
@@ -112,7 +112,7 @@ const ActivityIndicator = (
112
112
  // $FlowFixMe[prop-missing] Flow doesn't know when this is the android component
113
113
  <PlatformActivityIndicator {...nativeProps} {...androidProps} />
114
114
  ) : (
115
- /* $FlowFixMe[prop-missing] (>=0.106.0 site=react_native_android_fb) This comment
115
+ /* $FlowFixMe[incompatible-type] (>=0.106.0 site=react_native_android_fb) This comment
116
116
  * suppresses an error found when Flow v0.106 was deployed. To see the
117
117
  * error, delete this comment and run Flow. */
118
118
  <PlatformActivityIndicator {...nativeProps} />
@@ -154,8 +154,8 @@ const ActivityIndicator = (
154
154
  */
155
155
 
156
156
  const ActivityIndicatorWithRef: component(
157
- ref: React.RefSetter<HostComponent<empty>>,
158
- ...props: Props
157
+ ref?: React.RefSetter<HostComponent<empty>>,
158
+ ...props: ActivityIndicatorProps
159
159
  ) = React.forwardRef(ActivityIndicator);
160
160
  ActivityIndicatorWithRef.displayName = 'ActivityIndicator';
161
161
 
@@ -8,6 +8,6 @@
8
8
  * @flow strict-local
9
9
  */
10
10
 
11
- export * from '../../../src/private/specs/components/ActivityIndicatorViewNativeComponent';
12
- import ActivityIndicatorViewNativeComponent from '../../../src/private/specs/components/ActivityIndicatorViewNativeComponent';
11
+ export * from '../../../src/private/specs_DEPRECATED/components/ActivityIndicatorViewNativeComponent';
12
+ import ActivityIndicatorViewNativeComponent from '../../../src/private/specs_DEPRECATED/components/ActivityIndicatorViewNativeComponent';
13
13
  export default ActivityIndicatorViewNativeComponent;
@@ -11,7 +11,7 @@
11
11
  'use strict';
12
12
 
13
13
  import type {TextStyleProp, ViewStyleProp} from '../StyleSheet/StyleSheet';
14
- import type {PressEvent} from '../Types/CoreEventTypes';
14
+ import type {GestureResponderEvent} from '../Types/CoreEventTypes';
15
15
  import type {
16
16
  AccessibilityActionEvent,
17
17
  AccessibilityActionInfo,
@@ -27,7 +27,7 @@ import View from './View/View';
27
27
  import invariant from 'invariant';
28
28
  import * as React from 'react';
29
29
 
30
- type ButtonProps = $ReadOnly<{|
30
+ export type ButtonProps = $ReadOnly<{
31
31
  /**
32
32
  Text to display inside the button. On Android the given title will be
33
33
  converted to the uppercased form.
@@ -36,9 +36,9 @@ type ButtonProps = $ReadOnly<{|
36
36
 
37
37
  /**
38
38
  Handler to be called when the user taps the button. The first function
39
- argument is an event in form of [PressEvent](pressevent).
39
+ argument is an event in form of [GestureResponderEvent](pressevent).
40
40
  */
41
- onPress: (event?: PressEvent) => mixed,
41
+ onPress: (event?: GestureResponderEvent) => mixed,
42
42
 
43
43
  /**
44
44
  If `true`, doesn't play system sound on touch.
@@ -167,7 +167,7 @@ type ButtonProps = $ReadOnly<{|
167
167
  importantForAccessibility?: ?('auto' | 'yes' | 'no' | 'no-hide-descendants'),
168
168
  accessibilityHint?: ?string,
169
169
  accessibilityLanguage?: ?Stringish,
170
- |}>;
170
+ }>;
171
171
 
172
172
  /**
173
173
  A basic button component that should render nicely on any platform. Supports a
@@ -286,7 +286,7 @@ const Touchable: typeof TouchableNativeFeedback | typeof TouchableOpacity =
286
286
  type ButtonRef = React.ElementRef<typeof Touchable>;
287
287
 
288
288
  const Button: component(
289
- ref: React.RefSetter<ButtonRef>,
289
+ ref?: React.RefSetter<ButtonRef>,
290
290
  ...props: ButtonProps
291
291
  ) = React.forwardRef((props: ButtonProps, ref: React.RefSetter<ButtonRef>) => {
292
292
  const {
@@ -11,7 +11,7 @@
11
11
  'use strict';
12
12
 
13
13
  import type {TextStyleProp, ViewStyleProp} from '../StyleSheet/StyleSheet';
14
- import type {PressEvent} from '../Types/CoreEventTypes';
14
+ import type {GestureResponderEvent} from '../Types/CoreEventTypes';
15
15
  import type {
16
16
  AccessibilityActionEvent,
17
17
  AccessibilityActionInfo,
@@ -31,7 +31,7 @@ import View from './View/View';
31
31
  import invariant from 'invariant';
32
32
  import * as React from 'react';
33
33
 
34
- type ButtonProps = $ReadOnly<{|
34
+ export type ButtonProps = $ReadOnly<{
35
35
  /**
36
36
  Text to display inside the button. On Android the given title will be
37
37
  converted to the uppercased form.
@@ -40,9 +40,9 @@ type ButtonProps = $ReadOnly<{|
40
40
 
41
41
  /**
42
42
  Handler to be called when the user taps the button. The first function
43
- argument is an event in form of [PressEvent](pressevent).
43
+ argument is an event in form of [GestureResponderEvent](pressevent).
44
44
  */
45
- onPress: (event?: PressEvent) => mixed,
45
+ onPress: (event?: GestureResponderEvent) => mixed,
46
46
 
47
47
  /**
48
48
  If `true`, doesn't play system sound on touch.
@@ -152,6 +152,7 @@ type ButtonProps = $ReadOnly<{|
152
152
  accessible?: ?boolean,
153
153
  accessibilityActions?: ?$ReadOnlyArray<AccessibilityActionInfo>,
154
154
  onAccessibilityAction?: ?(event: AccessibilityActionEvent) => mixed,
155
+ onAccessibilityTap?: ?() => void, // Windows
155
156
  accessibilityState?: ?AccessibilityState,
156
157
 
157
158
  /**
@@ -180,7 +181,7 @@ type ButtonProps = $ReadOnly<{|
180
181
  */
181
182
  tabIndex?: ?number,
182
183
  // Windows]
183
- |}>;
184
+ }>;
184
185
 
185
186
  /**
186
187
  A basic button component that should render nicely on any platform. Supports a
@@ -296,7 +297,7 @@ type ButtonProps = $ReadOnly<{|
296
297
  type ButtonRef = React.ElementRef<typeof TouchableHighlight>;
297
298
 
298
299
  const Button: component(
299
- ref: React.RefSetter<ButtonRef>,
300
+ ref?: React.RefSetter<ButtonRef>,
300
301
  ...props: ButtonProps
301
302
  ) = React.forwardRef((props: ButtonProps, ref: React.RefSetter<ButtonRef>) => {
302
303
  // Windows
@@ -333,6 +334,7 @@ const Button: component(
333
334
  accessibilityHint,
334
335
  accessibilityLanguage,
335
336
  onAccessibilityAction,
337
+ onAccessibilityTap, // Windows
336
338
  tabIndex,
337
339
  } = props;
338
340
  const buttonStyles: Array<ViewStyleProp> = [styles.button];
@@ -391,6 +393,7 @@ const Button: component(
391
393
  accessibilityLanguage={accessibilityLanguage}
392
394
  accessibilityRole="button"
393
395
  accessibilityState={_accessibilityState}
396
+ onAccessibilityTap={onAccessibilityTap} // Windows
394
397
  importantForAccessibility={_importantForAccessibility}
395
398
  hasTVPreferredFocus={hasTVPreferredFocus}
396
399
  nextFocusDown={nextFocusDown}
@@ -13,7 +13,7 @@ import NativeClipboard from './NativeClipboard';
13
13
  /**
14
14
  * `Clipboard` gives you an interface for setting and getting content from Clipboard on both iOS and Android
15
15
  */
16
- module.exports = {
16
+ export default {
17
17
  /**
18
18
  * Get content of string type, this method returns a `Promise`, so you can use following code to get clipboard content
19
19
  * ```javascript
@@ -8,6 +8,6 @@
8
8
  * @format
9
9
  */
10
10
 
11
- export * from '../../../src/private/specs/modules/NativeClipboard';
12
- import NativeClipboard from '../../../src/private/specs/modules/NativeClipboard';
11
+ export * from '../../../src/private/specs_DEPRECATED/modules/NativeClipboard';
12
+ import NativeClipboard from '../../../src/private/specs_DEPRECATED/modules/NativeClipboard';
13
13
  export default NativeClipboard;
@@ -8,6 +8,6 @@
8
8
  * @flow strict-local
9
9
  */
10
10
 
11
- export * from '../../../src/private/specs/components/AndroidDrawerLayoutNativeComponent';
12
- import AndroidDrawerLayoutNativeComponent from '../../../src/private/specs/components/AndroidDrawerLayoutNativeComponent';
11
+ export * from '../../../src/private/specs_DEPRECATED/components/AndroidDrawerLayoutNativeComponent';
12
+ import AndroidDrawerLayoutNativeComponent from '../../../src/private/specs_DEPRECATED/components/AndroidDrawerLayoutNativeComponent';
13
13
  export default AndroidDrawerLayoutNativeComponent;
@@ -8,14 +8,18 @@
8
8
  * @format
9
9
  */
10
10
 
11
- import type {AccessibilityRole} from '../../Components/View/ViewAccessibility';
12
11
  import type {
13
12
  MeasureInWindowOnSuccessCallback,
14
13
  MeasureLayoutOnSuccessCallback,
15
14
  MeasureOnSuccessCallback,
16
- } from '../../Renderer/shims/ReactNativeTypes';
17
- import type {ColorValue, ViewStyleProp} from '../../StyleSheet/StyleSheet';
18
- import type {DirectEventHandler} from '../../Types/CodegenTypes';
15
+ } from '../../../src/private/types/HostInstance';
16
+ import type {AccessibilityRole} from '../../Components/View/ViewAccessibility';
17
+ import typeof DrawerLayoutAndroidCommon from './DrawerLayoutAndroid.js';
18
+ import type {
19
+ DrawerLayoutAndroidMethods,
20
+ DrawerLayoutAndroidProps,
21
+ DrawerLayoutAndroidState,
22
+ } from './DrawerLayoutAndroidTypes';
19
23
 
20
24
  import StyleSheet from '../../StyleSheet/StyleSheet';
21
25
  import dismissKeyboard from '../../Utilities/dismissKeyboard';
@@ -29,99 +33,6 @@ import * as React from 'react';
29
33
 
30
34
  const DRAWER_STATES = ['Idle', 'Dragging', 'Settling'];
31
35
 
32
- type DrawerStates = 'Idle' | 'Dragging' | 'Settling';
33
-
34
- type DrawerSlideEvent = $ReadOnly<{|
35
- offset: number,
36
- |}>;
37
-
38
- type Props = $ReadOnly<{|
39
- accessibilityRole?: ?AccessibilityRole,
40
-
41
- /**
42
- * Determines whether the keyboard gets dismissed in response to a drag.
43
- * - 'none' (the default), drags do not dismiss the keyboard.
44
- * - 'on-drag', the keyboard is dismissed when a drag begins.
45
- */
46
- keyboardDismissMode?: ?('none' | 'on-drag'),
47
-
48
- /**
49
- * Specifies the background color of the drawer. The default value is white.
50
- * If you want to set the opacity of the drawer, use rgba. Example:
51
- *
52
- * ```
53
- * return (
54
- * <DrawerLayoutAndroid drawerBackgroundColor="rgba(0,0,0,0.5)">
55
- * </DrawerLayoutAndroid>
56
- * );
57
- * ```
58
- */
59
- drawerBackgroundColor?: ?ColorValue,
60
-
61
- /**
62
- * Specifies the side of the screen from which the drawer will slide in.
63
- */
64
- drawerPosition: ?('left' | 'right'),
65
-
66
- /**
67
- * Specifies the width of the drawer, more precisely the width of the view that be pulled in
68
- * from the edge of the window.
69
- */
70
- drawerWidth?: ?number,
71
-
72
- /**
73
- * Specifies the lock mode of the drawer. The drawer can be locked in 3 states:
74
- * - unlocked (default), meaning that the drawer will respond (open/close) to touch gestures.
75
- * - locked-closed, meaning that the drawer will stay closed and not respond to gestures.
76
- * - locked-open, meaning that the drawer will stay opened and not respond to gestures.
77
- * The drawer may still be opened and closed programmatically (`openDrawer`/`closeDrawer`).
78
- */
79
- drawerLockMode?: ?('unlocked' | 'locked-closed' | 'locked-open'),
80
-
81
- /**
82
- * Function called whenever there is an interaction with the navigation view.
83
- */
84
- onDrawerSlide?: ?DirectEventHandler<DrawerSlideEvent>,
85
-
86
- /**
87
- * Function called when the drawer state has changed. The drawer can be in 3 states:
88
- * - Idle, meaning there is no interaction with the navigation view happening at the time
89
- * - Dragging, meaning there is currently an interaction with the navigation view
90
- * - Settling, meaning that there was an interaction with the navigation view, and the
91
- * navigation view is now finishing its closing or opening animation
92
- */
93
- onDrawerStateChanged?: ?(state: DrawerStates) => mixed,
94
-
95
- /**
96
- * Function called whenever the navigation view has been opened.
97
- */
98
- onDrawerOpen?: ?() => mixed,
99
-
100
- /**
101
- * Function called whenever the navigation view has been closed.
102
- */
103
- onDrawerClose?: ?() => mixed,
104
-
105
- /**
106
- * The navigation view that will be rendered to the side of the screen and can be pulled in.
107
- */
108
- renderNavigationView: () => React.MixedElement,
109
-
110
- /**
111
- * Make the drawer take the entire screen and draw the background of the
112
- * status bar to allow it to open over the status bar. It will only have an
113
- * effect on API 21+.
114
- */
115
- statusBarBackgroundColor?: ?ColorValue,
116
-
117
- children?: React.Node,
118
- style?: ?ViewStyleProp,
119
- |}>;
120
-
121
- type State = {|
122
- drawerOpened: boolean,
123
- |};
124
-
125
36
  /**
126
37
  * React component that wraps the platform `DrawerLayout` (Android only). The
127
38
  * Drawer (typically used for navigation) is rendered with `renderNavigationView`
@@ -153,7 +64,10 @@ type State = {|
153
64
  * },
154
65
  * ```
155
66
  */
156
- class DrawerLayoutAndroid extends React.Component<Props, State> {
67
+ class DrawerLayoutAndroid
68
+ extends React.Component<DrawerLayoutAndroidProps, DrawerLayoutAndroidState>
69
+ implements DrawerLayoutAndroidMethods
70
+ {
157
71
  static get positions(): mixed {
158
72
  console.warn(
159
73
  'Setting DrawerLayoutAndroid drawerPosition using `DrawerLayoutAndroid.positions` is deprecated. Instead pass the string value "left" or "right"',
@@ -168,7 +82,7 @@ class DrawerLayoutAndroid extends React.Component<Props, State> {
168
82
  React.ElementRef<typeof AndroidDrawerLayoutNativeComponent>,
169
83
  >();
170
84
 
171
- state: State = {
85
+ state: DrawerLayoutAndroidState = {
172
86
  drawerOpened: false,
173
87
  };
174
88
 
@@ -391,4 +305,4 @@ const styles = StyleSheet.create({
391
305
  },
392
306
  });
393
307
 
394
- module.exports = DrawerLayoutAndroid;
308
+ export default DrawerLayoutAndroid as $FlowFixMe as DrawerLayoutAndroidCommon;
@@ -10,7 +10,68 @@
10
10
 
11
11
  'use strict';
12
12
 
13
- import typeof DrawerLayoutAndroid from './DrawerLayoutAndroid.android';
13
+ // import typeof DrawerLayoutAndroid from './DrawerLayoutAndroid.android';
14
+ import type {
15
+ MeasureInWindowOnSuccessCallback,
16
+ MeasureLayoutOnSuccessCallback,
17
+ MeasureOnSuccessCallback,
18
+ } from '../../../src/private/types/HostInstance';
19
+ import type {
20
+ DrawerLayoutAndroidMethods,
21
+ DrawerLayoutAndroidProps,
22
+ DrawerLayoutAndroidState,
23
+ } from './DrawerLayoutAndroidTypes';
14
24
 
15
- module.exports =
16
- require('../UnimplementedViews/UnimplementedView') as $FlowFixMe as DrawerLayoutAndroid;
25
+ import UnimplementedView from '../UnimplementedViews/UnimplementedView';
26
+ import * as React from 'react';
27
+
28
+ export type {
29
+ DrawerLayoutAndroidProps,
30
+ DrawerSlideEvent,
31
+ } from './DrawerLayoutAndroidTypes';
32
+
33
+ export default class DrawerLayoutAndroid
34
+ extends React.Component<DrawerLayoutAndroidProps, DrawerLayoutAndroidState>
35
+ implements DrawerLayoutAndroidMethods
36
+ {
37
+ render(): React.Node {
38
+ return <UnimplementedView {...this.props} />;
39
+ }
40
+
41
+ openDrawer(): void {
42
+ throw new Error('DrawerLayoutAndroid is only available on Android');
43
+ }
44
+
45
+ closeDrawer(): void {
46
+ throw new Error('DrawerLayoutAndroid is only available on Android');
47
+ }
48
+
49
+ blur(): void {
50
+ throw new Error('DrawerLayoutAndroid is only available on Android');
51
+ }
52
+
53
+ focus(): void {
54
+ throw new Error('DrawerLayoutAndroid is only available on Android');
55
+ }
56
+
57
+ measure(callback: MeasureOnSuccessCallback): void {
58
+ throw new Error('DrawerLayoutAndroid is only available on Android');
59
+ }
60
+
61
+ measureInWindow(callback: MeasureInWindowOnSuccessCallback): void {
62
+ throw new Error('DrawerLayoutAndroid is only available on Android');
63
+ }
64
+
65
+ measureLayout(
66
+ relativeToNativeNode: number,
67
+ onSuccess: MeasureLayoutOnSuccessCallback,
68
+ onFail?: () => void,
69
+ ): void {
70
+ throw new Error('DrawerLayoutAndroid is only available on Android');
71
+ }
72
+
73
+ // $FlowFixMe[unclear-type]
74
+ setNativeProps(nativeProps: Object): void {
75
+ throw new Error('DrawerLayoutAndroid is only available on Android');
76
+ }
77
+ }