@office-iss/react-native-win32 0.74.4 → 0.75.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 (214) hide show
  1. package/.flowconfig +9 -4
  2. package/CHANGELOG.json +569 -51
  3. package/CHANGELOG.md +173 -30
  4. package/Libraries/Animated/AnimatedImplementation.js +2 -0
  5. package/Libraries/Animated/NativeAnimatedHelper.js +4 -0
  6. package/Libraries/Animated/NativeAnimatedHelper.win32.js +4 -0
  7. package/Libraries/Animated/createAnimatedComponent.js +10 -4
  8. package/Libraries/Animated/useAnimatedProps.js +56 -28
  9. package/Libraries/BatchedBridge/MessageQueue.js +1 -0
  10. package/Libraries/Components/Button.js +10 -5
  11. package/Libraries/Components/Button.win32.js +1 -0
  12. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +11 -2
  13. package/Libraries/Components/Pressable/Pressable.js +13 -6
  14. package/Libraries/Components/Pressable/Pressable.win32.js +13 -6
  15. package/Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js +4 -0
  16. package/Libraries/Components/ScrollView/ScrollView.js +109 -29
  17. package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +6 -0
  18. package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +13 -1
  19. package/Libraries/Components/StatusBar/StatusBar.js +1 -21
  20. package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +0 -15
  21. package/Libraries/Components/TextInput/InputAccessoryView.js +10 -1
  22. package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +0 -12
  23. package/Libraries/Components/TextInput/TextInput.d.ts +0 -19
  24. package/Libraries/Components/TextInput/TextInput.js +14 -70
  25. package/Libraries/Components/TextInput/TextInput.win32.js +15 -72
  26. package/Libraries/Components/Touchable/Touchable.js +2 -2
  27. package/Libraries/Components/Touchable/TouchableHighlight.d.ts +4 -10
  28. package/Libraries/Components/Touchable/TouchableHighlight.js +3 -1
  29. package/Libraries/Components/Touchable/TouchableOpacity.d.ts +4 -32
  30. package/Libraries/Components/Touchable/TouchableOpacity.js +3 -1
  31. package/Libraries/Components/Touchable/TouchableWithoutFeedback.d.ts +8 -0
  32. package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +117 -111
  33. package/Libraries/Components/View/ReactNativeStyleAttributes.js +6 -0
  34. package/Libraries/Components/View/ReactNativeViewAttributes.js +1 -0
  35. package/Libraries/Components/View/ReactNativeViewAttributes.win32.js +1 -0
  36. package/Libraries/Components/View/View.js +0 -11
  37. package/Libraries/Components/View/View.win32.js +0 -11
  38. package/Libraries/Components/View/ViewAccessibility.js +4 -4
  39. package/Libraries/Components/View/ViewAccessibility.win32.js +6 -6
  40. package/Libraries/Components/View/ViewPropTypes.d.ts +7 -49
  41. package/Libraries/Components/View/ViewPropTypes.js +7 -0
  42. package/Libraries/Components/View/ViewPropTypes.win32.js +7 -0
  43. package/Libraries/Core/Devtools/loadBundleFromServer.js +3 -3
  44. package/Libraries/Core/Devtools/loadBundleFromServer.win32.js +153 -0
  45. package/Libraries/Core/Devtools/parseErrorStack.js +5 -5
  46. package/Libraries/Core/Devtools/parseHermesStack.js +22 -16
  47. package/Libraries/Core/ErrorHandlers.js +116 -0
  48. package/Libraries/Core/ExceptionsManager.js +2 -2
  49. package/Libraries/Core/ReactNativeVersion.js +3 -3
  50. package/Libraries/Core/setUpDeveloperTools.js +3 -1
  51. package/Libraries/Core/setUpPerformance.js +6 -4
  52. package/Libraries/Core/setUpReactDevTools.js +70 -10
  53. package/Libraries/Core/setUpTimers.js +50 -31
  54. package/Libraries/Debugging/DebuggingOverlayRegistry.js +1 -1
  55. package/Libraries/Image/Image.android.js +23 -13
  56. package/Libraries/Image/Image.d.ts +14 -15
  57. package/Libraries/Image/Image.ios.js +21 -11
  58. package/Libraries/Image/Image.win32.js +5 -3
  59. package/Libraries/Image/ImageProps.js +16 -5
  60. package/Libraries/Image/ImageTypes.flow.js +7 -2
  61. package/Libraries/Image/ImageUtils.js +1 -0
  62. package/Libraries/Image/ImageViewNativeComponent.js +2 -1
  63. package/Libraries/Inspector/ElementBox.js +6 -3
  64. package/Libraries/Inspector/ElementProperties.js +1 -1
  65. package/Libraries/Interaction/TouchHistoryMath.js +4 -4
  66. package/Libraries/IntersectionObserver/IntersectionObserverManager.js +6 -26
  67. package/Libraries/JSInspector/NetworkAgent.js +1 -1
  68. package/Libraries/LogBox/Data/LogBoxData.js +39 -29
  69. package/Libraries/LogBox/Data/LogBoxLog.js +114 -2
  70. package/Libraries/LogBox/Data/parseLogBoxLog.js +168 -53
  71. package/Libraries/LogBox/LogBox.js +29 -12
  72. package/Libraries/LogBox/LogBoxNotificationContainer.js +4 -0
  73. package/Libraries/LogBox/UI/LogBoxInspector.js +8 -70
  74. package/Libraries/LogBox/UI/LogBoxInspectorBody.js +87 -0
  75. package/Libraries/LogBox/UI/LogBoxInspectorFooter.js +6 -42
  76. package/Libraries/LogBox/UI/LogBoxInspectorFooterButton.js +58 -0
  77. package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +5 -66
  78. package/Libraries/LogBox/UI/LogBoxInspectorHeader.win32.js +8 -52
  79. package/Libraries/LogBox/UI/LogBoxInspectorHeaderButton.js +76 -0
  80. package/Libraries/LogBox/UI/LogBoxInspectorReactFrames.js +8 -5
  81. package/Libraries/LogBox/UI/LogBoxInspectorReactFrames.win32.js +8 -5
  82. package/Libraries/LogBox/UI/LogBoxNotification.js +13 -152
  83. package/Libraries/LogBox/UI/LogBoxNotificationCountBadge.js +63 -0
  84. package/Libraries/LogBox/UI/LogBoxNotificationDismissButton.js +67 -0
  85. package/Libraries/LogBox/UI/LogBoxNotificationMessage.js +57 -0
  86. package/Libraries/NativeComponent/BaseViewConfig.android.js +5 -0
  87. package/Libraries/NativeComponent/BaseViewConfig.ios.js +5 -0
  88. package/Libraries/NativeComponent/BaseViewConfig.win32.js +5 -0
  89. package/Libraries/NativeComponent/NativeComponentRegistry.js +12 -5
  90. package/Libraries/NativeComponent/StaticViewConfigValidator.js +3 -0
  91. package/Libraries/Network/XMLHttpRequest.js +5 -1
  92. package/Libraries/NewAppScreen/components/LearnMoreLinks.js +3 -3
  93. package/Libraries/Pressability/Pressability.js +3 -51
  94. package/Libraries/Pressability/Pressability.win32.js +3 -51
  95. package/Libraries/ReactNative/AppContainer-dev.js +3 -2
  96. package/Libraries/ReactNative/AppContainer-prod.js +2 -1
  97. package/Libraries/ReactNative/AppContainer.js +2 -0
  98. package/Libraries/ReactNative/AppRegistry.d.ts +7 -0
  99. package/Libraries/ReactNative/AppRegistry.js +10 -4
  100. package/Libraries/ReactNative/BridgelessUIManager.js +1 -21
  101. package/Libraries/ReactNative/FabricUIManager.js +0 -51
  102. package/Libraries/ReactNative/ReactFabricPublicInstance/warnForStyleProps.js +1 -0
  103. package/Libraries/ReactNative/RendererImplementation.js +20 -2
  104. package/Libraries/ReactNative/UIManager.d.ts +0 -21
  105. package/Libraries/ReactNative/UIManagerProperties.js +0 -3
  106. package/Libraries/ReactNative/__mocks__/FabricUIManager.js +5 -341
  107. package/Libraries/ReactNative/getNativeComponentAttributes.js +8 -8
  108. package/Libraries/ReactNative/renderApplication.js +3 -0
  109. package/Libraries/Renderer/implementations/ReactFabric-dev.js +15682 -27088
  110. package/Libraries/Renderer/implementations/ReactFabric-prod.js +5082 -4381
  111. package/Libraries/Renderer/implementations/ReactFabric-profiling.js +3480 -2571
  112. package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +15943 -27543
  113. package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +5303 -4606
  114. package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +3450 -2572
  115. package/Libraries/Renderer/shims/ReactFabric.js +2 -2
  116. package/Libraries/Renderer/shims/ReactFeatureFlags.js +2 -2
  117. package/Libraries/Renderer/shims/ReactNative.js +2 -3
  118. package/Libraries/Renderer/shims/ReactNativeTypes.js +24 -3
  119. package/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +2 -2
  120. package/Libraries/Renderer/shims/createReactNativeComponentClass.js +2 -2
  121. package/Libraries/Share/Share.d.ts +16 -10
  122. package/Libraries/Share/Share.js +14 -15
  123. package/Libraries/StyleSheet/StyleSheet.d.ts +1 -1
  124. package/Libraries/StyleSheet/StyleSheet.js +3 -10
  125. package/Libraries/StyleSheet/StyleSheet.win32.js +3 -10
  126. package/Libraries/StyleSheet/StyleSheetTypes.d.ts +21 -21
  127. package/Libraries/StyleSheet/StyleSheetTypes.js +24 -18
  128. package/Libraries/StyleSheet/flattenStyle.js +1 -0
  129. package/Libraries/StyleSheet/processFilter.js +132 -0
  130. package/Libraries/StyleSheet/processTransform.js +18 -3
  131. package/Libraries/Text/Text.js +151 -128
  132. package/Libraries/Text/Text.win32.js +163 -138
  133. package/Libraries/Text/TextNativeComponent.js +5 -4
  134. package/Libraries/Text/TextNativeComponent.win32.js +5 -4
  135. package/Libraries/Text/TextProps.js +6 -6
  136. package/Libraries/Text/TextProps.win32.js +6 -6
  137. package/Libraries/TurboModule/TurboModuleRegistry.js +2 -1
  138. package/Libraries/Types/CodegenTypes.js +3 -0
  139. package/Libraries/Utilities/{LoadingView.android.js → DevLoadingView.js} +33 -11
  140. package/Libraries/Utilities/Dimensions.js +1 -0
  141. package/Libraries/Utilities/Dimensions.win32.js +1 -0
  142. package/Libraries/Utilities/HMRClient.js +36 -8
  143. package/Libraries/Utilities/HMRClientProdShim.js +1 -0
  144. package/Libraries/Utilities/Platform.android.js +5 -5
  145. package/Libraries/Utilities/Platform.d.ts +1 -1
  146. package/Libraries/Utilities/Platform.flow.js +2 -2
  147. package/Libraries/Utilities/Platform.flow.win32.js +3 -3
  148. package/Libraries/Utilities/Platform.ios.js +1 -1
  149. package/Libraries/Utilities/Platform.win32.js +1 -1
  150. package/Libraries/Utilities/RCTLog.js +1 -0
  151. package/Libraries/Utilities/ReactNativeTestTools.js +12 -24
  152. package/Libraries/Utilities/verifyComponentAttributeEquivalence.js +11 -6
  153. package/Libraries/__tests__/ButtonWin32-test.js +7 -6
  154. package/Libraries/promiseRejectionTrackingOptions.js +1 -0
  155. package/jest/mockComponent.js +7 -0
  156. package/jest/renderer.js +25 -14
  157. package/jest/setup.js +19 -13
  158. package/jest.config.js +2 -1
  159. package/overrides.json +32 -31
  160. package/package.json +27 -25
  161. package/rn-get-polyfills.js +1 -0
  162. package/src/private/core/composeStyles.js +27 -0
  163. package/src/private/featureflags/ReactNativeFeatureFlags.js +93 -33
  164. package/src/private/featureflags/ReactNativeFeatureFlagsBase.js +23 -4
  165. package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +56 -0
  166. package/src/private/fusebox/setUpFuseboxReactDevToolsDispatcher.js +108 -0
  167. package/src/private/specs/modules/NativeBlobModule.js +4 -2
  168. package/src/private/specs/modules/NativeDevSettings.js +1 -0
  169. package/src/private/specs/modules/NativePlatformConstantsAndroid.js +1 -1
  170. package/src/private/specs/modules/NativePlatformConstantsIOS.js +1 -1
  171. package/src/private/specs/modules/NativePlatformConstantsWin.js +1 -1
  172. package/src/private/specs/modules/NativePushNotificationManagerIOS.js +0 -4
  173. package/src/private/specs/modules/NativeUIManager.js +0 -7
  174. package/src/private/webapis/dom/geometry/DOMRectReadOnly.js +24 -24
  175. package/src/private/webapis/dom/nodes/ReactNativeElement.js +11 -14
  176. package/src/private/webapis/dom/nodes/ReadOnlyCharacterData.js +2 -3
  177. package/src/private/webapis/dom/nodes/ReadOnlyElement.js +24 -54
  178. package/src/private/webapis/dom/nodes/ReadOnlyNode.js +5 -13
  179. package/src/private/webapis/dom/nodes/specs/NativeDOM.js +468 -0
  180. package/src/private/webapis/dom/nodes/specs/__mocks__/NativeDOMMock.js +413 -0
  181. package/src/private/webapis/dom/oldstylecollections/DOMRectList.js +4 -4
  182. package/src/private/webapis/dom/oldstylecollections/HTMLCollection.js +4 -4
  183. package/src/private/webapis/dom/oldstylecollections/NodeList.js +5 -5
  184. package/src/private/webapis/idlecallbacks/specs/NativeIdleCallbacks.js +34 -0
  185. package/src/private/webapis/microtasks/specs/NativeMicrotasks.js +21 -0
  186. package/src/private/webapis/performance/EventCounts.js +1 -1
  187. package/src/private/webapis/performance/MemoryInfo.js +9 -9
  188. package/src/private/webapis/performance/Performance.js +10 -56
  189. package/src/private/webapis/performance/PerformanceObserver.js +30 -22
  190. package/src/private/webapis/performance/RawPerformanceEntry.js +2 -7
  191. package/src/private/webapis/performance/ReactNativeStartupTiming.js +18 -18
  192. package/src/private/webapis/performance/UserTiming.js +63 -0
  193. package/src/private/webapis/performance/{NativePerformance.js → specs/NativePerformance.js} +3 -2
  194. package/src/private/webapis/performance/{NativePerformanceObserver.js → specs/NativePerformanceObserver.js} +2 -2
  195. package/src/private/webapis/performance/{__mocks__ → specs/__mocks__}/NativePerformance.js +1 -1
  196. package/src/private/webapis/performance/{__mocks__ → specs/__mocks__}/NativePerformanceObserver.js +3 -4
  197. package/src-win/Libraries/Components/View/ViewPropTypes.d.ts +7 -49
  198. package/types/modules/globals.d.ts +4 -0
  199. package/Libraries/Components/ScrollView/ScrollView.win32.js +0 -1915
  200. package/Libraries/NativeModules/specs/NativeAnimationsDebugModule.js +0 -13
  201. package/Libraries/Utilities/LoadingView.ios.js +0 -50
  202. package/Libraries/Utilities/LoadingView.js +0 -16
  203. package/jest/ReactNativeInternalFeatureFlagsMock.js +0 -13
  204. package/src/private/featureflags/NativeReactNativeFeatureFlags.js +0 -44
  205. package/src/private/featureflags/__tests__/ReactNativeFeatureFlags-test.js +0 -92
  206. package/src/private/specs/modules/NativeAnimationsDebugModule.js +0 -20
  207. package/src/private/webapis/dom/oldstylecollections/__tests__/DOMRectList-test.js +0 -85
  208. package/src/private/webapis/dom/oldstylecollections/__tests__/HTMLCollection-test.js +0 -80
  209. package/src/private/webapis/dom/oldstylecollections/__tests__/NodeList-test.js +0 -161
  210. package/src/private/webapis/performance/__tests__/EventCounts-test.js +0 -116
  211. package/src/private/webapis/performance/__tests__/NativePerformanceMock-test.js +0 -82
  212. package/src/private/webapis/performance/__tests__/NativePerformanceObserverMock-test.js +0 -108
  213. package/src/private/webapis/performance/__tests__/Performance-test.js +0 -117
  214. package/src/private/webapis/performance/__tests__/PerformanceObserver-test.js +0 -208
package/CHANGELOG.json CHANGED
@@ -2,127 +2,645 @@
2
2
  "name": "@office-iss/react-native-win32",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 10 Jul 2024 21:00:05 GMT",
6
- "version": "0.74.4",
7
- "tag": "@office-iss/react-native-win32_v0.74.4",
5
+ "date": "Mon, 29 Jul 2024 15:20:10 GMT",
6
+ "version": "0.75.0-preview.2",
7
+ "tag": "@office-iss/react-native-win32_v0.75.0-preview.2",
8
8
  "comments": {
9
- "patch": [
9
+ "prerelease": [
10
+ {
11
+ "author": "tatianakapos@microsoft.com",
12
+ "package": "@office-iss/react-native-win32",
13
+ "commit": "d5feb184a8555cfc8169dd1c15d4630fff567ffc",
14
+ "comment": "integrate RN 0.75.0-rc.5"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Mon, 15 Jul 2024 16:52:20 GMT",
21
+ "version": "0.75.0-preview.1",
22
+ "tag": "@office-iss/react-native-win32_v0.75.0-preview.1",
23
+ "comments": {
24
+ "prerelease": [
25
+ {
26
+ "author": "tatianakapos@microsoft.com",
27
+ "package": "@office-iss/react-native-win32",
28
+ "commit": "cc2575a9ff19cc9109f48ea93f5b6694c92a7c1f",
29
+ "comment": "Promote 0.75 to preview"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Fri, 21 Jun 2024 05:17:50 GMT",
36
+ "version": "0.0.0-canary.255",
37
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.255",
38
+ "comments": {
39
+ "prerelease": [
40
+ {
41
+ "author": "beachball",
42
+ "package": "@office-iss/react-native-win32",
43
+ "comment": "Bump react-native-platform-override to v1.9.42",
44
+ "commit": "not available"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Wed, 12 Jun 2024 05:16:24 GMT",
51
+ "version": "0.0.0-canary.254",
52
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.254",
53
+ "comments": {
54
+ "prerelease": [
55
+ {
56
+ "author": "yajurgrover24@gmail.com",
57
+ "package": "@office-iss/react-native-win32",
58
+ "commit": "e2cced2ede4941e8ebcdb49feb9ded55a3ff5237",
59
+ "comment": "Integrate 6/10"
60
+ },
61
+ {
62
+ "author": "beachball",
63
+ "package": "@office-iss/react-native-win32",
64
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.23",
65
+ "commit": "not available"
66
+ },
67
+ {
68
+ "author": "beachball",
69
+ "package": "@office-iss/react-native-win32",
70
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.27",
71
+ "commit": "not available"
72
+ },
73
+ {
74
+ "author": "beachball",
75
+ "package": "@office-iss/react-native-win32",
76
+ "comment": "Bump @rnw-scripts/just-task to v2.3.40",
77
+ "commit": "not available"
78
+ },
79
+ {
80
+ "author": "beachball",
81
+ "package": "@office-iss/react-native-win32",
82
+ "comment": "Bump react-native-platform-override to v1.9.41",
83
+ "commit": "not available"
84
+ }
85
+ ]
86
+ }
87
+ },
88
+ {
89
+ "date": "Sat, 08 Jun 2024 05:17:56 GMT",
90
+ "version": "0.0.0-canary.253",
91
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.253",
92
+ "comments": {
93
+ "prerelease": [
94
+ {
95
+ "author": "34109996+chiaramooney@users.noreply.github.com",
96
+ "package": "@office-iss/react-native-win32",
97
+ "commit": "d42a78eeeb8b25ea0b4c054c48ee0891bc16d8b8",
98
+ "comment": "Integrate 5/31"
99
+ },
100
+ {
101
+ "author": "beachball",
102
+ "package": "@office-iss/react-native-win32",
103
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.22",
104
+ "commit": "not available"
105
+ },
106
+ {
107
+ "author": "beachball",
108
+ "package": "@office-iss/react-native-win32",
109
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.26",
110
+ "commit": "not available"
111
+ },
112
+ {
113
+ "author": "beachball",
114
+ "package": "@office-iss/react-native-win32",
115
+ "comment": "Bump @rnw-scripts/just-task to v2.3.39",
116
+ "commit": "not available"
117
+ },
118
+ {
119
+ "author": "beachball",
120
+ "package": "@office-iss/react-native-win32",
121
+ "comment": "Bump react-native-platform-override to v1.9.40",
122
+ "commit": "not available"
123
+ }
124
+ ]
125
+ }
126
+ },
127
+ {
128
+ "date": "Wed, 05 Jun 2024 05:18:09 GMT",
129
+ "version": "0.0.0-canary.252",
130
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.252",
131
+ "comments": {
132
+ "prerelease": [
133
+ {
134
+ "author": "email not defined",
135
+ "package": "@office-iss/react-native-win32",
136
+ "commit": "ee76145dbcf05a84555c99cc693b564d11503ba3",
137
+ "comment": "Use prettier-plugin-hermes-parser to match upstream settings"
138
+ },
139
+ {
140
+ "author": "beachball",
141
+ "package": "@office-iss/react-native-win32",
142
+ "comment": "Bump @rnw-scripts/just-task to v2.3.38",
143
+ "commit": "not available"
144
+ },
145
+ {
146
+ "author": "beachball",
147
+ "package": "@office-iss/react-native-win32",
148
+ "comment": "Bump react-native-platform-override to v1.9.39",
149
+ "commit": "not available"
150
+ }
151
+ ]
152
+ }
153
+ },
154
+ {
155
+ "date": "Tue, 04 Jun 2024 05:18:34 GMT",
156
+ "version": "0.0.0-canary.251",
157
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.251",
158
+ "comments": {
159
+ "prerelease": [
160
+ {
161
+ "author": "34109996+chiaramooney@users.noreply.github.com",
162
+ "package": "@office-iss/react-native-win32",
163
+ "commit": "1d9616305b90f5165ab84bfb04072add2bd30b34",
164
+ "comment": "Integrate 5/25"
165
+ },
166
+ {
167
+ "author": "beachball",
168
+ "package": "@office-iss/react-native-win32",
169
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.21",
170
+ "commit": "not available"
171
+ },
172
+ {
173
+ "author": "beachball",
174
+ "package": "@office-iss/react-native-win32",
175
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.25",
176
+ "commit": "not available"
177
+ },
178
+ {
179
+ "author": "beachball",
180
+ "package": "@office-iss/react-native-win32",
181
+ "comment": "Bump @rnw-scripts/just-task to v2.3.37",
182
+ "commit": "not available"
183
+ },
184
+ {
185
+ "author": "beachball",
186
+ "package": "@office-iss/react-native-win32",
187
+ "comment": "Bump react-native-platform-override to v1.9.38",
188
+ "commit": "not available"
189
+ }
190
+ ]
191
+ }
192
+ },
193
+ {
194
+ "date": "Sat, 01 Jun 2024 05:21:30 GMT",
195
+ "version": "0.0.0-canary.250",
196
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.250",
197
+ "comments": {
198
+ "prerelease": [
199
+ {
200
+ "author": "34109996+chiaramooney@users.noreply.github.com",
201
+ "package": "@office-iss/react-native-win32",
202
+ "commit": "c0976782a5e566800ad95b4d90e76cef7d3ff044",
203
+ "comment": "Integrate 5/14"
204
+ },
205
+ {
206
+ "author": "beachball",
207
+ "package": "@office-iss/react-native-win32",
208
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.20",
209
+ "commit": "not available"
210
+ },
211
+ {
212
+ "author": "beachball",
213
+ "package": "@office-iss/react-native-win32",
214
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.24",
215
+ "commit": "not available"
216
+ },
217
+ {
218
+ "author": "beachball",
219
+ "package": "@office-iss/react-native-win32",
220
+ "comment": "Bump @rnw-scripts/just-task to v2.3.36",
221
+ "commit": "not available"
222
+ },
223
+ {
224
+ "author": "beachball",
225
+ "package": "@office-iss/react-native-win32",
226
+ "comment": "Bump react-native-platform-override to v1.9.37",
227
+ "commit": "not available"
228
+ }
229
+ ]
230
+ }
231
+ },
232
+ {
233
+ "date": "Thu, 30 May 2024 05:18:25 GMT",
234
+ "version": "0.0.0-canary.249",
235
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.249",
236
+ "comments": {
237
+ "prerelease": [
10
238
  {
11
239
  "author": "1422161+marlenecota@users.noreply.github.com",
12
240
  "package": "@office-iss/react-native-win32",
13
- "commit": "d3c8e762a7b2be2c699d7a2c14e4da06501c352f",
14
- "comment": "Integrate 0.74.3"
241
+ "commit": "1304e2f0aa0f074550f4a10de439188749590547",
242
+ "comment": "RN Integration 05/11"
243
+ },
244
+ {
245
+ "author": "beachball",
246
+ "package": "@office-iss/react-native-win32",
247
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.19",
248
+ "commit": "not available"
249
+ },
250
+ {
251
+ "author": "beachball",
252
+ "package": "@office-iss/react-native-win32",
253
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.23",
254
+ "commit": "not available"
255
+ },
256
+ {
257
+ "author": "beachball",
258
+ "package": "@office-iss/react-native-win32",
259
+ "comment": "Bump @rnw-scripts/just-task to v2.3.35",
260
+ "commit": "not available"
261
+ },
262
+ {
263
+ "author": "beachball",
264
+ "package": "@office-iss/react-native-win32",
265
+ "comment": "Bump react-native-platform-override to v1.9.36",
266
+ "commit": "not available"
267
+ }
268
+ ],
269
+ "none": [
270
+ {
271
+ "author": "1422161+marlenecota@users.noreply.github.com",
272
+ "package": "@office-iss/react-native-win32",
273
+ "commit": "b06795ef7c683825358c8150adb2107a816d98ac",
274
+ "comment": "CodeQL patch"
15
275
  }
16
276
  ]
17
277
  }
18
278
  },
19
279
  {
20
- "date": "Mon, 20 May 2024 15:16:05 GMT",
21
- "version": "0.74.3",
22
- "tag": "@office-iss/react-native-win32_v0.74.3",
280
+ "date": "Thu, 23 May 2024 05:17:48 GMT",
281
+ "version": "0.0.0-canary.248",
282
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.248",
23
283
  "comments": {
24
- "patch": [
284
+ "prerelease": [
25
285
  {
26
- "author": "nate@bracy.dev",
286
+ "author": "1422161+marlenecota@users.noreply.github.com",
27
287
  "package": "@office-iss/react-native-win32",
28
- "commit": "481f89da064d5a33f4b5b79088dc760bd49f6dd2",
29
- "comment": "fix(TextInput/isFocused): correctly handle null focused input"
288
+ "commit": "3d221a9e154753fce6c1d22bdf6f2e17d6bc41b5",
289
+ "comment": "RN Integration 04/27"
290
+ },
291
+ {
292
+ "author": "1422161+marlenecota@users.noreply.github.com",
293
+ "package": "@office-iss/react-native-win32",
294
+ "commit": "9a5ddf602612fcbe088fafbaa80993d7b9f9aace",
295
+ "comment": "RN Integration 05/02"
296
+ },
297
+ {
298
+ "author": "beachball",
299
+ "package": "@office-iss/react-native-win32",
300
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.18",
301
+ "commit": "not available"
302
+ },
303
+ {
304
+ "author": "beachball",
305
+ "package": "@office-iss/react-native-win32",
306
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.22",
307
+ "commit": "not available"
308
+ },
309
+ {
310
+ "author": "beachball",
311
+ "package": "@office-iss/react-native-win32",
312
+ "comment": "Bump @rnw-scripts/just-task to v2.3.34",
313
+ "commit": "not available"
314
+ },
315
+ {
316
+ "author": "beachball",
317
+ "package": "@office-iss/react-native-win32",
318
+ "comment": "Bump react-native-platform-override to v1.9.35",
319
+ "commit": "not available"
30
320
  }
31
321
  ]
32
322
  }
33
323
  },
34
324
  {
35
- "date": "Mon, 06 May 2024 15:17:11 GMT",
36
- "version": "0.74.2",
37
- "tag": "@office-iss/react-native-win32_v0.74.2",
325
+ "date": "Wed, 22 May 2024 05:18:16 GMT",
326
+ "version": "0.0.0-canary.247",
327
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.247",
38
328
  "comments": {
39
- "patch": [
329
+ "prerelease": [
330
+ {
331
+ "author": "1422161+marlenecota@users.noreply.github.com",
332
+ "package": "@office-iss/react-native-win32",
333
+ "commit": "ef55e6fc47b9adc83afc6ddcae92d7461013512b",
334
+ "comment": "RN Integration 04/20"
335
+ },
336
+ {
337
+ "author": "beachball",
338
+ "package": "@office-iss/react-native-win32",
339
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.17",
340
+ "commit": "not available"
341
+ },
342
+ {
343
+ "author": "beachball",
344
+ "package": "@office-iss/react-native-win32",
345
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.21",
346
+ "commit": "not available"
347
+ },
348
+ {
349
+ "author": "beachball",
350
+ "package": "@office-iss/react-native-win32",
351
+ "comment": "Bump @rnw-scripts/just-task to v2.3.33",
352
+ "commit": "not available"
353
+ },
354
+ {
355
+ "author": "beachball",
356
+ "package": "@office-iss/react-native-win32",
357
+ "comment": "Bump react-native-platform-override to v1.9.34",
358
+ "commit": "not available"
359
+ }
360
+ ]
361
+ }
362
+ },
363
+ {
364
+ "date": "Wed, 15 May 2024 05:14:52 GMT",
365
+ "version": "0.0.0-canary.246",
366
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.246",
367
+ "comments": {
368
+ "prerelease": [
40
369
  {
41
370
  "author": "30809111+acoates-ms@users.noreply.github.com",
42
371
  "package": "@office-iss/react-native-win32",
43
- "commit": "64ae33cd632a5818a03e3d86b0268f801431d85c",
44
- "comment": "Integrate 0.74.1"
372
+ "commit": "5f46361c713a6cd19c07d21163af6ae6a056c545",
373
+ "comment": "Remove unneeded scrollview.win32.js override"
374
+ },
375
+ {
376
+ "author": "email not defined",
377
+ "package": "@office-iss/react-native-win32",
378
+ "commit": "1db259b0c8b028fef09bf42351be8917759ecc17",
379
+ "comment": "0413 integration"
380
+ },
381
+ {
382
+ "author": "beachball",
383
+ "package": "@office-iss/react-native-win32",
384
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.16",
385
+ "commit": "not available"
386
+ },
387
+ {
388
+ "author": "beachball",
389
+ "package": "@office-iss/react-native-win32",
390
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.20",
391
+ "commit": "not available"
392
+ },
393
+ {
394
+ "author": "beachball",
395
+ "package": "@office-iss/react-native-win32",
396
+ "comment": "Bump @rnw-scripts/just-task to v2.3.32",
397
+ "commit": "not available"
398
+ },
399
+ {
400
+ "author": "beachball",
401
+ "package": "@office-iss/react-native-win32",
402
+ "comment": "Bump react-native-platform-override to v1.9.33",
403
+ "commit": "not available"
45
404
  }
46
405
  ]
47
406
  }
48
407
  },
49
408
  {
50
- "date": "Wed, 01 May 2024 20:37:36 GMT",
51
- "version": "0.74.1",
52
- "tag": "@office-iss/react-native-win32_v0.74.1",
409
+ "date": "Tue, 14 May 2024 05:17:51 GMT",
410
+ "version": "0.0.0-canary.245",
411
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.245",
53
412
  "comments": {
54
- "patch": [
413
+ "none": [
55
414
  {
56
- "author": "tatianakapos@microsoft.com",
415
+ "author": "nate@bracy.dev",
57
416
  "package": "@office-iss/react-native-win32",
58
- "commit": "19493123db48b16af9ae6ecc6229cea694e00c2f",
59
- "comment": "target 0.73 and add carets to versions"
417
+ "commit": "e2a0c87c3bdaea7cc7065a0aa9de4f899ad11e82",
418
+ "comment": "fix(TextInput/isFocused): correctly handle null focused input"
60
419
  }
61
420
  ]
62
421
  }
63
422
  },
64
423
  {
65
- "date": "Sat, 27 Apr 2024 21:16:05 GMT",
66
- "version": "0.74.0",
67
- "tag": "@office-iss/react-native-win32_v0.74.0",
424
+ "date": "Sat, 11 May 2024 05:18:28 GMT",
425
+ "version": "0.0.0-canary.245",
426
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.245",
68
427
  "comments": {
69
- "patch": [
428
+ "prerelease": [
429
+ {
430
+ "author": "email not defined",
431
+ "package": "@office-iss/react-native-win32",
432
+ "commit": "81fbb8ad349a47f89257fe0f7a775f00cfefdd86",
433
+ "comment": "integrate rn nightly 4/5/2024"
434
+ },
435
+ {
436
+ "author": "beachball",
437
+ "package": "@office-iss/react-native-win32",
438
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.15",
439
+ "commit": "not available"
440
+ },
441
+ {
442
+ "author": "beachball",
443
+ "package": "@office-iss/react-native-win32",
444
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.19",
445
+ "commit": "not available"
446
+ },
447
+ {
448
+ "author": "beachball",
449
+ "package": "@office-iss/react-native-win32",
450
+ "comment": "Bump @rnw-scripts/just-task to v2.3.31",
451
+ "commit": "not available"
452
+ },
453
+ {
454
+ "author": "beachball",
455
+ "package": "@office-iss/react-native-win32",
456
+ "comment": "Bump react-native-platform-override to v1.9.32",
457
+ "commit": "not available"
458
+ }
459
+ ]
460
+ }
461
+ },
462
+ {
463
+ "date": "Thu, 09 May 2024 05:18:43 GMT",
464
+ "version": "0.0.0-canary.244",
465
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.244",
466
+ "comments": {
467
+ "prerelease": [
70
468
  {
71
469
  "author": "tatianakapos@microsoft.com",
72
470
  "package": "@office-iss/react-native-win32",
73
- "commit": "b332d7b05a4fdb862bde456f7e668fde4e6e5b04",
74
- "comment": "Promote 0.74 to latest"
471
+ "commit": "b85780ba8a1c0dc0aa82344eddd1a8daeb08e15a",
472
+ "comment": "integrate react-native-3-21"
473
+ },
474
+ {
475
+ "author": "beachball",
476
+ "package": "@office-iss/react-native-win32",
477
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.14",
478
+ "commit": "not available"
75
479
  },
480
+ {
481
+ "author": "beachball",
482
+ "package": "@office-iss/react-native-win32",
483
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.18",
484
+ "commit": "not available"
485
+ },
486
+ {
487
+ "author": "beachball",
488
+ "package": "@office-iss/react-native-win32",
489
+ "comment": "Bump @rnw-scripts/just-task to v2.3.30",
490
+ "commit": "not available"
491
+ },
492
+ {
493
+ "author": "beachball",
494
+ "package": "@office-iss/react-native-win32",
495
+ "comment": "Bump react-native-platform-override to v1.9.31",
496
+ "commit": "not available"
497
+ }
498
+ ]
499
+ }
500
+ },
501
+ {
502
+ "date": "Sat, 27 Apr 2024 05:16:25 GMT",
503
+ "version": "0.0.0-canary.243",
504
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.243",
505
+ "comments": {
506
+ "prerelease": [
76
507
  {
77
508
  "author": "30809111+acoates-ms@users.noreply.github.com",
78
509
  "package": "@office-iss/react-native-win32",
79
- "commit": "64098613bcff397b400baa4b1870f0311cc073a7",
510
+ "commit": "a4f55e5165e6e75a2a4f080cc528652610c0f29f",
80
511
  "comment": "Fix PaperUIManager (port from windows)"
81
512
  }
82
513
  ]
83
514
  }
84
515
  },
85
516
  {
86
- "date": "Mon, 22 Apr 2024 15:16:53 GMT",
87
- "version": "0.74.0-preview.3",
88
- "tag": "@office-iss/react-native-win32_v0.74.0-preview.3",
517
+ "date": "Fri, 26 Apr 2024 05:16:49 GMT",
518
+ "version": "0.0.0-canary.242",
519
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.242",
89
520
  "comments": {
90
521
  "prerelease": [
91
522
  {
92
- "author": "tatianakapos@microsoft.com",
523
+ "author": "beachball",
93
524
  "package": "@office-iss/react-native-win32",
94
- "commit": "c13ef9da244498a96f2750b9407c7007251d246d",
95
- "comment": "integrate rc9"
525
+ "comment": "Bump react-native-platform-override to v1.9.30",
526
+ "commit": "not available"
96
527
  }
97
528
  ]
98
529
  }
99
530
  },
100
531
  {
101
- "date": "Thu, 11 Apr 2024 16:29:48 GMT",
102
- "version": "0.74.0-preview.2",
103
- "tag": "@office-iss/react-native-win32_v0.74.0-preview.2",
532
+ "date": "Thu, 25 Apr 2024 20:12:41 GMT",
533
+ "version": "0.0.0-canary.241",
534
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.241",
104
535
  "comments": {
105
536
  "prerelease": [
106
537
  {
107
- "author": "email not defined",
538
+ "author": "yajurgrover24@gmail.com",
539
+ "package": "@office-iss/react-native-win32",
540
+ "commit": "2b8821b81ab7ec1e8cc483dcbd9573455b4d5d24",
541
+ "comment": "Integrate 3/7"
542
+ },
543
+ {
544
+ "author": "beachball",
545
+ "package": "@office-iss/react-native-win32",
546
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.13",
547
+ "commit": "not available"
548
+ },
549
+ {
550
+ "author": "beachball",
551
+ "package": "@office-iss/react-native-win32",
552
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.17",
553
+ "commit": "not available"
554
+ },
555
+ {
556
+ "author": "beachball",
557
+ "package": "@office-iss/react-native-win32",
558
+ "comment": "Bump @rnw-scripts/just-task to v2.3.29",
559
+ "commit": "not available"
560
+ },
561
+ {
562
+ "author": "beachball",
108
563
  "package": "@office-iss/react-native-win32",
109
- "commit": "5f10e604924b47b0baa64825d8770be4e3a074b1",
110
- "comment": "integrate react-native 0.74-rc6"
564
+ "comment": "Bump react-native-platform-override to v1.9.29",
565
+ "commit": "not available"
111
566
  }
112
567
  ]
113
568
  }
114
569
  },
115
570
  {
116
- "date": "Mon, 08 Apr 2024 15:16:48 GMT",
117
- "version": "0.74.0-preview.1",
118
- "tag": "@office-iss/react-native-win32_v0.74.0-preview.1",
571
+ "date": "Wed, 10 Apr 2024 05:18:18 GMT",
572
+ "version": "0.0.0-canary.240",
573
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.240",
119
574
  "comments": {
120
575
  "prerelease": [
121
576
  {
122
- "author": "tatianakapos@microsoft.com",
577
+ "author": "yajurgrover24@gmail.com",
578
+ "package": "@office-iss/react-native-win32",
579
+ "commit": "d5a93ec84d0466502bc430b8ff818ef3ddee7f7d",
580
+ "comment": "integrate 2/29"
581
+ },
582
+ {
583
+ "author": "beachball",
123
584
  "package": "@office-iss/react-native-win32",
124
- "commit": "001f5fe72f13f7583f27e585962860fe4fdf229a",
125
- "comment": "Promote 0.74 to preview"
585
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.11",
586
+ "commit": "not available"
587
+ },
588
+ {
589
+ "author": "beachball",
590
+ "package": "@office-iss/react-native-win32",
591
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.15",
592
+ "commit": "not available"
593
+ },
594
+ {
595
+ "author": "beachball",
596
+ "package": "@office-iss/react-native-win32",
597
+ "comment": "Bump @rnw-scripts/just-task to v2.3.27",
598
+ "commit": "not available"
599
+ },
600
+ {
601
+ "author": "beachball",
602
+ "package": "@office-iss/react-native-win32",
603
+ "comment": "Bump react-native-platform-override to v1.9.27",
604
+ "commit": "not available"
605
+ }
606
+ ]
607
+ }
608
+ },
609
+ {
610
+ "date": "Sat, 30 Mar 2024 05:18:03 GMT",
611
+ "version": "0.0.0-canary.239",
612
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.239",
613
+ "comments": {
614
+ "prerelease": [
615
+ {
616
+ "author": "yajurgrover24@gmail.com",
617
+ "package": "@office-iss/react-native-win32",
618
+ "commit": "8cf7376aed600ae9d5a1c83ae60c7c37ff3aa6ba",
619
+ "comment": "initial 2/21 integrate"
620
+ },
621
+ {
622
+ "author": "beachball",
623
+ "package": "@office-iss/react-native-win32",
624
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.10",
625
+ "commit": "not available"
626
+ },
627
+ {
628
+ "author": "beachball",
629
+ "package": "@office-iss/react-native-win32",
630
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.14",
631
+ "commit": "not available"
632
+ },
633
+ {
634
+ "author": "beachball",
635
+ "package": "@office-iss/react-native-win32",
636
+ "comment": "Bump @rnw-scripts/just-task to v2.3.26",
637
+ "commit": "not available"
638
+ },
639
+ {
640
+ "author": "beachball",
641
+ "package": "@office-iss/react-native-win32",
642
+ "comment": "Bump react-native-platform-override to v1.9.26",
643
+ "commit": "not available"
126
644
  }
127
645
  ]
128
646
  }