@office-iss/react-native-win32 0.74.3 → 0.75.0-preview.1

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