@office-iss/react-native-win32 0.81.2 → 0.82.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 (209) hide show
  1. package/.flowconfig +3 -11
  2. package/CHANGELOG.json +118 -43
  3. package/CHANGELOG.md +45 -27
  4. package/IntegrationTests/IntegrationTestsApp.js +2 -2
  5. package/IntegrationTests/LayoutEventsTest.js +3 -3
  6. package/Libraries/ActionSheetIOS/ActionSheetIOS.js +7 -3
  7. package/Libraries/Alert/RCTAlertManager.android.js +4 -2
  8. package/Libraries/Animated/Animated.d.ts +2 -0
  9. package/Libraries/Animated/AnimatedEvent.js +1 -1
  10. package/Libraries/Animated/AnimatedExports.js.flow +1 -0
  11. package/Libraries/Animated/AnimatedImplementation.js +4 -2
  12. package/Libraries/Animated/AnimatedMock.js +1 -1
  13. package/Libraries/Animated/Easing.js +2 -0
  14. package/Libraries/Animated/NativeAnimatedAllowlist.js +1 -0
  15. package/Libraries/Animated/animations/Animation.js +19 -20
  16. package/Libraries/Animated/animations/TimingAnimation.js +2 -0
  17. package/Libraries/Animated/components/AnimatedScrollView.js +3 -2
  18. package/Libraries/Animated/components/AnimatedSectionList.js +1 -1
  19. package/Libraries/Animated/nodes/AnimatedColor.js +9 -9
  20. package/Libraries/Animated/nodes/AnimatedInterpolation.js +4 -4
  21. package/Libraries/Animated/nodes/AnimatedNode.js +14 -7
  22. package/Libraries/Animated/nodes/AnimatedObject.js +7 -7
  23. package/Libraries/Animated/nodes/AnimatedProps.js +32 -32
  24. package/Libraries/Animated/nodes/AnimatedStyle.js +23 -21
  25. package/Libraries/Animated/nodes/AnimatedTransform.js +6 -6
  26. package/Libraries/Animated/nodes/AnimatedValue.js +18 -26
  27. package/Libraries/AppState/AppState.js +8 -4
  28. package/Libraries/BatchedBridge/BatchedBridge.js +1 -0
  29. package/Libraries/BatchedBridge/MessageQueue.js +5 -0
  30. package/Libraries/BatchedBridge/NativeModules.js +1 -1
  31. package/Libraries/Blob/BlobManager.js +1 -1
  32. package/Libraries/Blob/URLSearchParams.js +2 -0
  33. package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.js +2 -2
  34. package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.win32.js +2 -2
  35. package/Libraries/Components/Button.js +1 -1
  36. package/Libraries/Components/Button.win32.js +1 -1
  37. package/Libraries/Components/Pressable/Pressable.js +10 -1
  38. package/Libraries/Components/Pressable/Pressable.win32.js +9 -0
  39. package/Libraries/Components/Pressable/useAndroidRippleForView.js +2 -2
  40. package/Libraries/Components/ScrollView/ScrollView.js +13 -4
  41. package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +1 -1
  42. package/Libraries/Components/StatusBar/StatusBar.js +2 -2
  43. package/Libraries/Components/Switch/Switch.js +1 -1
  44. package/Libraries/Components/TextInput/TextInput.flow.js +12 -5
  45. package/Libraries/Components/TextInput/TextInput.flow.win32.js +12 -5
  46. package/Libraries/Components/TextInput/TextInput.js +14 -5
  47. package/Libraries/Components/TextInput/TextInput.win32.js +15 -7
  48. package/Libraries/Components/TextInput/TextInputState.js +1 -1
  49. package/Libraries/Components/TextInput/TextInputState.win32.js +1 -1
  50. package/Libraries/Components/TextInput/Win32TextInputNativeComponent.js +2 -3
  51. package/Libraries/Components/Touchable/TouchableBounce.js +1 -1
  52. package/Libraries/Components/Touchable/TouchableHighlight.js +1 -1
  53. package/Libraries/Components/Touchable/TouchableNativeFeedback.js +1 -1
  54. package/Libraries/Components/Touchable/TouchableOpacity.js +1 -1
  55. package/Libraries/Components/Touchable/TouchableWin32.js +1 -1
  56. package/Libraries/Components/Touchable/TouchableWin32.js.map +1 -1
  57. package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +3 -3
  58. package/Libraries/Components/View/View.js +81 -167
  59. package/Libraries/Components/View/View.win32.js +3 -1
  60. package/Libraries/Core/Devtools/loadBundleFromServer.js +1 -1
  61. package/Libraries/Core/Devtools/loadBundleFromServer.win32.js +1 -1
  62. package/Libraries/Core/ExceptionsManager.js +4 -2
  63. package/Libraries/Core/ReactFiberErrorDialog.js +3 -3
  64. package/Libraries/Core/ReactNativeVersion.js +37 -10
  65. package/Libraries/Core/Timers/JSTimers.js +4 -1
  66. package/Libraries/Core/Timers/NativeTiming.js +1 -0
  67. package/Libraries/Core/Timers/immediateShim.js +2 -1
  68. package/Libraries/Core/Timers/queueMicrotask.js +1 -0
  69. package/Libraries/Core/setUpPerformance.js +3 -4
  70. package/Libraries/Debugging/DebuggingOverlayRegistry.js +5 -3
  71. package/Libraries/Image/Image.android.js +327 -111
  72. package/Libraries/Image/Image.ios.js +6 -1
  73. package/Libraries/Image/Image.win32.js +6 -1
  74. package/Libraries/Image/ImageSourceUtils.js +8 -2
  75. package/Libraries/Image/assetPaths.js +1 -1
  76. package/Libraries/Image/resolveAssetSource.js +1 -1
  77. package/Libraries/Image/resolveAssetSource.win32.js +6 -7
  78. package/Libraries/Interaction/InteractionManager.js +118 -167
  79. package/Libraries/Interaction/PanResponder.js +7 -52
  80. package/Libraries/LayoutAnimation/LayoutAnimation.js +2 -0
  81. package/Libraries/Lists/FlatList.js +5 -6
  82. package/Libraries/LogBox/Data/LogBoxData.js +5 -2
  83. package/Libraries/LogBox/Data/parseLogBoxLog.js +1 -1
  84. package/Libraries/LogBox/UI/LogBoxInspectorHeader.win32.js +2 -2
  85. package/Libraries/LogBox/UI/LogBoxInspectorSourceMapStatus.js +1 -1
  86. package/Libraries/LogBox/UI/LogBoxInspectorSourceMapStatus.win32.js +1 -1
  87. package/Libraries/Modal/Modal.js +3 -3
  88. package/Libraries/NativeComponent/NativeComponentRegistry.js +1 -1
  89. package/Libraries/NativeComponent/ViewConfig.js +2 -2
  90. package/Libraries/Network/RCTNetworking.android.js +1 -1
  91. package/Libraries/Network/RCTNetworking.ios.js +1 -1
  92. package/Libraries/Network/RCTNetworking.win32.js +1 -1
  93. package/Libraries/Network/XMLHttpRequest.js +20 -5
  94. package/Libraries/Network/convertRequestBody.js +1 -1
  95. package/Libraries/PermissionsAndroid/PermissionsAndroid.js +10 -9
  96. package/Libraries/Pressability/HoverState.js +2 -0
  97. package/Libraries/Pressability/HoverState.win32.js +2 -0
  98. package/Libraries/Pressability/Pressability.js +1 -1
  99. package/Libraries/Pressability/Pressability.win32.js +1 -1
  100. package/Libraries/PushNotificationIOS/PushNotificationIOS.js +2 -2
  101. package/Libraries/ReactNative/AppRegistryImpl.js +4 -2
  102. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +2 -0
  103. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +3 -3
  104. package/Libraries/ReactNative/RendererImplementation.js +116 -116
  105. package/Libraries/ReactNative/UIManager.js +3 -3
  106. package/Libraries/ReactNative/renderApplication.js +1 -0
  107. package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +1 -1
  108. package/Libraries/Renderer/implementations/ReactFabric-dev.js +38 -35
  109. package/Libraries/Renderer/implementations/ReactFabric-prod.js +51 -22
  110. package/Libraries/Renderer/implementations/ReactFabric-profiling.js +54 -24
  111. package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +36 -33
  112. package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +5 -5
  113. package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +5 -5
  114. package/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +3 -1
  115. package/Libraries/Share/Share.js +4 -0
  116. package/Libraries/StyleSheet/PlatformColorValueTypes.android.js +2 -2
  117. package/Libraries/StyleSheet/PlatformColorValueTypes.ios.js +2 -2
  118. package/Libraries/StyleSheet/PlatformColorValueTypes.win32.js +4 -0
  119. package/Libraries/StyleSheet/StyleSheet.d.ts +7 -22
  120. package/Libraries/StyleSheet/StyleSheetExports.js +2 -8
  121. package/Libraries/StyleSheet/StyleSheetExports.js.flow +11 -18
  122. package/Libraries/StyleSheet/flattenStyle.js +2 -2
  123. package/Libraries/StyleSheet/processAspectRatio.js +2 -0
  124. package/Libraries/StyleSheet/processFilter.js +5 -5
  125. package/Libraries/StyleSheet/splitLayoutProps.js +2 -2
  126. package/Libraries/Text/Text.js +534 -234
  127. package/Libraries/Text/Text.win32.js +647 -274
  128. package/Libraries/Text/TextNativeComponent.js +2 -2
  129. package/Libraries/Text/TextNativeComponent.win32.js +2 -2
  130. package/Libraries/Utilities/Appearance.d.ts +3 -5
  131. package/Libraries/Utilities/Appearance.js +5 -17
  132. package/Libraries/Utilities/HMRClient.js +2 -1
  133. package/Libraries/Utilities/Platform.android.js +3 -3
  134. package/Libraries/Utilities/Platform.d.ts +1 -0
  135. package/Libraries/Utilities/Platform.ios.js +1 -1
  136. package/Libraries/Utilities/Platform.win32.js +3 -3
  137. package/Libraries/Utilities/PlatformTypes.js +1 -1
  138. package/Libraries/Utilities/ReactNativeTestTools.js +12 -0
  139. package/Libraries/Utilities/SceneTracker.js +1 -1
  140. package/Libraries/Utilities/codegenNativeCommands.js +1 -1
  141. package/Libraries/Utilities/codegenNativeComponent.js +1 -1
  142. package/Libraries/Utilities/createPerformanceLogger.js +32 -0
  143. package/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.js +2 -0
  144. package/Libraries/Utilities/differ/pointsDiffer.js +1 -1
  145. package/Libraries/Utilities/useMergeRefs.js +1 -1
  146. package/Libraries/WebSocket/WebSocketInterceptor.js +2 -0
  147. package/Libraries/promiseRejectionTrackingOptions.js +17 -31
  148. package/Libraries/vendor/emitter/EventEmitter.js +1 -1
  149. package/flow/bom.js.flow +223 -1
  150. package/flow/prettier.js.flow +14 -0
  151. package/index.js +14 -2
  152. package/index.win32.js +16 -2
  153. package/jest/local-setup.js +2 -2
  154. package/jest/mock.js +1 -1
  155. package/jest/mockComponent.js +9 -9
  156. package/jest/mockNativeComponent.js +3 -2
  157. package/jest/mocks/Modal.js +1 -1
  158. package/jest/mocks/ScrollView.js +1 -1
  159. package/jest/mocks/ViewNativeComponent.js +1 -1
  160. package/jest/setup.js +23 -12
  161. package/overrides.json +23 -23
  162. package/package.json +28 -27
  163. package/saveAssetPlugin.js +2 -2
  164. package/src/private/animated/NativeAnimatedHelper.js +16 -5
  165. package/src/private/animated/NativeAnimatedHelper.win32.js +16 -5
  166. package/src/private/animated/createAnimatedPropsHook.js +11 -60
  167. package/src/private/animated/createAnimatedPropsMemoHook.js +8 -54
  168. package/src/private/components/virtualview/VirtualView.js +43 -12
  169. package/src/private/components/virtualview/VirtualViewExperimentalNativeComponent.js +93 -0
  170. package/src/private/components/virtualview/VirtualViewNativeComponent.js +6 -0
  171. package/src/private/devsupport/devmenu/elementinspector/Inspector.js +2 -2
  172. package/src/private/devsupport/devmenu/elementinspector/ReactDevToolsOverlay.js +2 -2
  173. package/src/private/featureflags/ReactNativeFeatureFlags.js +85 -52
  174. package/src/private/featureflags/ReactNativeFeatureFlagsBase.js +23 -4
  175. package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +15 -6
  176. package/src/private/renderer/errorhandling/ErrorHandlers.js +3 -3
  177. package/src/private/setup/{setUpPerformanceObserver.js → setUpPerformanceModern.js} +43 -18
  178. package/src/private/specs_DEPRECATED/modules/NativeTiming.js +1 -0
  179. package/src/private/types/HostInstance.js +4 -1
  180. package/src/private/webapis/dom/nodes/ReactNativeDocument.js +22 -2
  181. package/src/private/webapis/dom/nodes/ReactNativeElement.js +1 -1
  182. package/src/private/webapis/dom/nodes/ReadOnlyElement.js +5 -3
  183. package/src/private/webapis/dom/nodes/ReadOnlyNode.js +16 -13
  184. package/src/private/webapis/dom/nodes/internals/NodeInternals.js +45 -22
  185. package/src/private/webapis/dom/nodes/internals/ReactNativeDocumentInstanceHandle.js +1 -1
  186. package/src/private/webapis/dom/nodes/specs/NativeDOM.js +26 -192
  187. package/src/private/webapis/dom/oldstylecollections/HTMLCollection.js +15 -12
  188. package/src/private/webapis/dom/oldstylecollections/NodeList.js +14 -11
  189. package/src/private/webapis/geometry/DOMRectList.js +2 -2
  190. package/src/private/webapis/intersectionobserver/internals/IntersectionObserverManager.js +19 -74
  191. package/src/private/webapis/intersectionobserver/specs/NativeIntersectionObserver.js +0 -4
  192. package/src/private/webapis/mutationobserver/internals/MutationObserverManager.js +1 -1
  193. package/src/private/webapis/performance/EventTiming.js +40 -25
  194. package/src/private/webapis/performance/LongTasks.js +35 -2
  195. package/src/private/webapis/performance/Performance.js +347 -166
  196. package/src/private/webapis/performance/PerformanceEntry.js +40 -23
  197. package/src/private/webapis/performance/PerformanceObserver.js +37 -29
  198. package/src/private/webapis/performance/ReactNativeStartupTiming.js +3 -24
  199. package/src/private/webapis/performance/ResourceTiming.js +29 -18
  200. package/src/private/webapis/performance/UserTiming.js +92 -34
  201. package/src/private/webapis/performance/UserTimingExtensibility.js.flow +38 -0
  202. package/src/private/webapis/performance/internals/RawPerformanceEntry.js +3 -4
  203. package/src/private/webapis/performance/internals/Utilities.js +9 -0
  204. package/src/private/webapis/performance/specs/NativePerformance.js +23 -23
  205. package/src/private/webapis/structuredClone/structuredClone.js +10 -10
  206. package/src-win/Libraries/Components/Touchable/TouchableWin32.tsx +1 -1
  207. package/Libraries/Interaction/InteractionManagerStub.js +0 -184
  208. package/Libraries/Interaction/TaskQueue.js +0 -183
  209. package/Libraries/ReactNative/ReactNativeFeatureFlags.js +0 -31
package/.flowconfig CHANGED
@@ -5,9 +5,6 @@
5
5
  .*/*[.]macos.js
6
6
  .*/*[.]windesktop.js
7
7
 
8
- ; Ignore all flow directory contents in node_modules
9
- .*/flow/.*
10
-
11
8
  ; Ignore fb_internal modules
12
9
  <PROJECT_ROOT>/packages/react-native/src/fb_internal/.*
13
10
 
@@ -53,6 +50,8 @@
53
50
  ; Ignore react-native files in node_modules since they are copied into project root
54
51
  .*/node_modules/react-native/.*
55
52
 
53
+ ; Ignore all flow directory contents in node_modules
54
+ .*/flow/.*
56
55
 
57
56
  ; Ignore react-native-windows' build output. Flow is not compiled with long path support and after running unittests these folders have long paths
58
57
  .*/node_modules/react-native-windows/build/.*
@@ -62,7 +61,6 @@
62
61
 
63
62
  ; These files dont need to be checked and just increase the build time
64
63
  .*/node_modules/e2etest/.*
65
- .*/node_modules/sample-apps/.*
66
64
  .*/node_modules/playground/.*
67
65
 
68
66
  <PROJECT_ROOT>/packages/react-native/sdks/.*
@@ -152,12 +150,6 @@ module.system.haste.module_ref_prefix=m#
152
150
 
153
151
  react.runtime=automatic
154
152
 
155
- suppress_type=$FlowIssue
156
- suppress_type=$FlowFixMe
157
- suppress_type=$FlowFixMeProps
158
- suppress_type=$FlowFixMeState
159
- suppress_type=$FlowFixMeEmpty
160
-
161
153
  ban_spread_key_props=true
162
154
 
163
155
  sharedmemory.hash_table_pow=21
@@ -183,4 +175,4 @@ untyped-import
183
175
  untyped-type-import
184
176
 
185
177
  [version]
186
- ^0.274.2
178
+ ^0.280.0
package/CHANGELOG.json CHANGED
@@ -2,118 +2,193 @@
2
2
  "name": "@office-iss/react-native-win32",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 27 Jan 2026 19:33:24 GMT",
6
- "version": "0.81.2",
7
- "tag": "@office-iss/react-native-win32_v0.81.2",
5
+ "date": "Sat, 24 Jan 2026 16:43:04 GMT",
6
+ "version": "0.82.0-preview.2",
7
+ "tag": "@office-iss/react-native-win32_v0.82.0-preview.2",
8
8
  "comments": {
9
- "patch": [
9
+ "prerelease": [
10
10
  {
11
- "author": "30809111+acoates-ms@users.noreply.github.com",
11
+ "author": "74712637+iamAbhi-916@users.noreply.github.com",
12
12
  "package": "@office-iss/react-native-win32",
13
- "commit": "2c35b82f34d7821ca3d855c0bb51fb44d4d8c1df",
14
- "comment": "Fix TouchableWin32 and LogBox"
13
+ "commit": "9486be369921a08663e2b5227dda13cbc7ad5388",
14
+ "comment": "integrate 0.82.1"
15
15
  }
16
16
  ]
17
17
  }
18
18
  },
19
19
  {
20
- "date": "Wed, 14 Jan 2026 06:05:13 GMT",
21
- "version": "0.81.1",
22
- "tag": "@office-iss/react-native-win32_v0.81.1",
20
+ "date": "Wed, 14 Jan 2026 13:07:17 GMT",
21
+ "version": "0.82.0-preview.1",
22
+ "tag": "@office-iss/react-native-win32_v0.82.0-preview.1",
23
23
  "comments": {
24
- "patch": [
24
+ "prerelease": [
25
25
  {
26
- "author": "30809111+acoates-ms@users.noreply.github.com",
26
+ "author": "74712637+iamAbhi-916@users.noreply.github.com",
27
+ "package": "@office-iss/react-native-win32",
28
+ "commit": "4ade8ccd99bb577a15a1ce46e1fdc7dd43d66dd5",
29
+ "comment": "Promote 0.82 to preview"
30
+ },
31
+ {
32
+ "author": "beachball",
27
33
  "package": "@office-iss/react-native-win32",
28
- "commit": "2589a216e30d0edb9b2be922ba8b5a3fb6ce2591",
29
- "comment": "Fix resolveAssetSource export"
34
+ "comment": "Bump react-native-platform-override to v0.82.0-preview.1",
35
+ "commit": "not available"
30
36
  }
31
37
  ]
32
38
  }
33
39
  },
34
40
  {
35
- "date": "Sat, 20 Dec 2025 12:02:33 GMT",
36
- "version": "0.81.0",
37
- "tag": "@office-iss/react-native-win32_v0.81.0",
41
+ "date": "Tue, 13 Jan 2026 13:00:13 GMT",
42
+ "version": "0.0.0-canary.305",
43
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.305",
38
44
  "comments": {
39
- "patch": [
45
+ "prerelease": [
46
+ {
47
+ "author": "74712637+iamAbhi-916@users.noreply.github.com",
48
+ "package": "@office-iss/react-native-win32",
49
+ "commit": "da1e74cb1c7d7d1749fd963398580069fa62344b",
50
+ "comment": "integrate 0.82.0-nightly-20250902-9731e8ebc\u0002"
51
+ },
52
+ {
53
+ "author": "beachball",
54
+ "package": "@office-iss/react-native-win32",
55
+ "comment": "Bump react-native-platform-override to v0.0.0-canary.1019",
56
+ "commit": "not available"
57
+ }
58
+ ]
59
+ }
60
+ },
61
+ {
62
+ "date": "Tue, 30 Dec 2025 06:39:29 GMT",
63
+ "version": "0.0.0-canary.304",
64
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.304",
65
+ "comments": {
66
+ "prerelease": [
40
67
  {
41
68
  "author": "66076509+vineethkuttan@users.noreply.github.com",
42
69
  "package": "@office-iss/react-native-win32",
43
- "commit": "81863d6ae455c6d92f9ec8db6c9c4fe350a1c5b5",
44
- "comment": "Promote 0.81 to latest"
70
+ "commit": "c0b7f6f5a156b7a4406f96cd6db48589ff1c10d5",
71
+ "comment": "Use experimental WinAppSDK"
45
72
  },
46
73
  {
47
74
  "author": "beachball",
48
75
  "package": "@office-iss/react-native-win32",
49
- "comment": "Bump react-native-platform-override to v0.81.0",
76
+ "comment": "Bump react-native-platform-override to v0.0.0-canary.1018",
50
77
  "commit": "not available"
51
78
  }
52
79
  ]
53
80
  }
54
81
  },
55
82
  {
56
- "date": "Mon, 15 Dec 2025 16:33:06 GMT",
57
- "version": "0.81.0-preview.6",
58
- "tag": "@office-iss/react-native-win32_v0.81.0-preview.6",
83
+ "date": "Thu, 25 Dec 2025 06:39:16 GMT",
84
+ "version": "0.0.0-canary.303",
85
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.303",
59
86
  "comments": {
60
87
  "prerelease": [
61
88
  {
62
89
  "author": "66076509+vineethkuttan@users.noreply.github.com",
63
90
  "package": "@office-iss/react-native-win32",
64
- "commit": "eba0afc668e103f80fbcc4a5408636dde1e0bbd3",
65
- "comment": "Integrate 81.5"
91
+ "commit": "5ef7484667043c898e77f7ab4fdda8d42d833ce5",
92
+ "comment": "Integrate 0.82.0-nightly-20250821-0ef21bf8a"
93
+ },
94
+ {
95
+ "author": "66076509+vineethkuttan@users.noreply.github.com",
96
+ "package": "@office-iss/react-native-win32",
97
+ "commit": "857247f5f8dd3bae2c02ad266dc4ff6f9d6f2579",
98
+ "comment": "Bump Jsi Version to 21"
99
+ },
100
+ {
101
+ "author": "beachball",
102
+ "package": "@office-iss/react-native-win32",
103
+ "comment": "Bump react-native-platform-override to v0.0.0-canary.1017",
104
+ "commit": "not available"
66
105
  }
67
106
  ]
68
107
  }
69
108
  },
70
109
  {
71
- "date": "Wed, 10 Dec 2025 18:44:29 GMT",
72
- "version": "0.81.0-preview.5",
73
- "tag": "@office-iss/react-native-win32_v0.81.0-preview.5",
110
+ "date": "Wed, 03 Dec 2025 06:40:45 GMT",
111
+ "version": "0.0.0-canary.302",
112
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.302",
74
113
  "comments": {
75
114
  "prerelease": [
76
115
  {
77
116
  "author": "vmorozov@microsoft.com",
78
117
  "package": "@office-iss/react-native-win32",
79
- "commit": "f8c11e35831ed3a036757abf53f7d3959c186634",
80
- "comment": "Fix NPM dist tags and make some NPM private"
118
+ "commit": "6099ed486aabbdc654176d4cab27708e24e8ab0c",
119
+ "comment": "Use 0.0.0-canary.1015 version for public NPM packages"
81
120
  },
82
121
  {
83
122
  "author": "beachball",
84
123
  "package": "@office-iss/react-native-win32",
85
- "comment": "Bump react-native-platform-override to v0.81.0-preview.10",
124
+ "comment": "Bump react-native-platform-override to v0.0.0-canary.1016",
86
125
  "commit": "not available"
87
126
  }
88
127
  ]
89
128
  }
90
129
  },
91
130
  {
92
- "date": "Sat, 06 Dec 2025 16:30:52 GMT",
93
- "version": "0.81.0-preview.3",
94
- "tag": "@office-iss/react-native-win32_v0.81.0-preview.3",
131
+ "date": "Mon, 17 Nov 2025 06:42:06 GMT",
132
+ "version": "0.0.0-canary.301",
133
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.301",
95
134
  "comments": {
96
135
  "prerelease": [
97
136
  {
98
- "author": "66076509+vineethkuttan@users.noreply.github.com",
137
+ "author": "beachball",
138
+ "package": "@office-iss/react-native-win32",
139
+ "comment": "Bump @rnw-scripts/just-task to v2.3.58",
140
+ "commit": "not available"
141
+ },
142
+ {
143
+ "author": "beachball",
99
144
  "package": "@office-iss/react-native-win32",
100
- "commit": "160ef08880f3f221982ca7840688f45126450539",
101
- "comment": "removed nightly to use 81 directly"
145
+ "comment": "Bump react-native-platform-override to v1.9.61",
146
+ "commit": "not available"
102
147
  }
103
148
  ]
104
149
  }
105
150
  },
106
151
  {
107
- "date": "Mon, 17 Nov 2025 16:41:29 GMT",
108
- "version": "0.81.0-preview.1",
109
- "tag": "@office-iss/react-native-win32_v0.81.0-preview.1",
152
+ "date": "Wed, 12 Nov 2025 21:00:43 GMT",
153
+ "version": "0.0.0-canary.300",
154
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.300",
110
155
  "comments": {
111
156
  "prerelease": [
157
+ {
158
+ "author": "30809111+acoates-ms@users.noreply.github.com",
159
+ "package": "@office-iss/react-native-win32",
160
+ "commit": "0fe72b72890415cab242d5e253253b819f92d8e3",
161
+ "comment": "Remove paper"
162
+ },
112
163
  {
113
164
  "author": "66076509+vineethkuttan@users.noreply.github.com",
114
165
  "package": "@office-iss/react-native-win32",
115
- "commit": "425ba5cd4e4882d1d3a8a242a943b7aefaccd066",
116
- "comment": "Promote 0.81 to preview"
166
+ "commit": "33e8489afe38fdd8b8170f750bdd5983b4f1dc7e",
167
+ "comment": "Integrate 0.82.0-nightly-20250806-5936f29d6"
168
+ },
169
+ {
170
+ "author": "beachball",
171
+ "package": "@office-iss/react-native-win32",
172
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.38",
173
+ "commit": "not available"
174
+ },
175
+ {
176
+ "author": "beachball",
177
+ "package": "@office-iss/react-native-win32",
178
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.42",
179
+ "commit": "not available"
180
+ },
181
+ {
182
+ "author": "beachball",
183
+ "package": "@office-iss/react-native-win32",
184
+ "comment": "Bump @rnw-scripts/just-task to v2.3.57",
185
+ "commit": "not available"
186
+ },
187
+ {
188
+ "author": "beachball",
189
+ "package": "@office-iss/react-native-win32",
190
+ "comment": "Bump react-native-platform-override to v1.9.60",
191
+ "commit": "not available"
117
192
  }
118
193
  ]
119
194
  }
package/CHANGELOG.md CHANGED
@@ -1,66 +1,84 @@
1
1
  # Change Log - @office-iss/react-native-win32
2
2
 
3
- <!-- This log was last generated on Tue, 27 Jan 2026 19:33:24 GMT and should not be manually modified. -->
3
+ <!-- This log was last generated on Sat, 24 Jan 2026 16:43:04 GMT and should not be manually modified. -->
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.81.2
7
+ ## 0.82.0-preview.2
8
8
 
9
- Tue, 27 Jan 2026 19:33:24 GMT
9
+ Sat, 24 Jan 2026 16:43:04 GMT
10
10
 
11
- ### Patches
11
+ ### Changes
12
12
 
13
- - Fix TouchableWin32 and LogBox (30809111+acoates-ms@users.noreply.github.com)
13
+ - integrate 0.82.1 (74712637+iamAbhi-916@users.noreply.github.com)
14
14
 
15
- ## 0.81.1
15
+ ## 0.82.0-preview.1
16
16
 
17
- Wed, 14 Jan 2026 06:05:13 GMT
17
+ Wed, 14 Jan 2026 13:07:17 GMT
18
18
 
19
- ### Patches
19
+ ### Changes
20
20
 
21
- - Fix resolveAssetSource export (30809111+acoates-ms@users.noreply.github.com)
21
+ - Promote 0.82 to preview (74712637+iamAbhi-916@users.noreply.github.com)
22
+ - Bump react-native-platform-override to v0.82.0-preview.1
22
23
 
23
- ## 0.81.0
24
+ ## 0.0.0-canary.305
24
25
 
25
- Sat, 20 Dec 2025 12:02:33 GMT
26
+ Tue, 13 Jan 2026 13:00:13 GMT
26
27
 
27
- ### Patches
28
+ ### Changes
29
+
30
+ - integrate 0.82.0-nightly-20250902-9731e8ebc (74712637+iamAbhi-916@users.noreply.github.com)
31
+ - Bump react-native-platform-override to v0.0.0-canary.1019
32
+
33
+ ## 0.0.0-canary.304
34
+
35
+ Tue, 30 Dec 2025 06:39:29 GMT
36
+
37
+ ### Changes
28
38
 
29
- - Promote 0.81 to latest (66076509+vineethkuttan@users.noreply.github.com)
30
- - Bump react-native-platform-override to v0.81.0
39
+ - Use experimental WinAppSDK (66076509+vineethkuttan@users.noreply.github.com)
40
+ - Bump react-native-platform-override to v0.0.0-canary.1018
31
41
 
32
- ## 0.81.0-preview.6
42
+ ## 0.0.0-canary.303
33
43
 
34
- Mon, 15 Dec 2025 16:33:06 GMT
44
+ Thu, 25 Dec 2025 06:39:16 GMT
35
45
 
36
46
  ### Changes
37
47
 
38
- - Integrate 81.5 (66076509+vineethkuttan@users.noreply.github.com)
48
+ - Integrate 0.82.0-nightly-20250821-0ef21bf8a (66076509+vineethkuttan@users.noreply.github.com)
49
+ - Bump Jsi Version to 21 (66076509+vineethkuttan@users.noreply.github.com)
50
+ - Bump react-native-platform-override to v0.0.0-canary.1017
39
51
 
40
- ## 0.81.0-preview.5
52
+ ## 0.0.0-canary.302
41
53
 
42
- Wed, 10 Dec 2025 18:44:29 GMT
54
+ Wed, 03 Dec 2025 06:40:45 GMT
43
55
 
44
56
  ### Changes
45
57
 
46
- - Fix NPM dist tags and make some NPM private (vmorozov@microsoft.com)
47
- - Bump react-native-platform-override to v0.81.0-preview.10
58
+ - Use 0.0.0-canary.1015 version for public NPM packages (vmorozov@microsoft.com)
59
+ - Bump react-native-platform-override to v0.0.0-canary.1016
48
60
 
49
- ## 0.81.0-preview.3
61
+ ## 0.0.0-canary.301
50
62
 
51
- Sat, 06 Dec 2025 16:30:52 GMT
63
+ Mon, 17 Nov 2025 06:42:06 GMT
52
64
 
53
65
  ### Changes
54
66
 
55
- - removed nightly to use 81 directly (66076509+vineethkuttan@users.noreply.github.com)
67
+ - Bump @rnw-scripts/just-task to v2.3.58
68
+ - Bump react-native-platform-override to v1.9.61
56
69
 
57
- ## 0.81.0-preview.1
70
+ ## 0.0.0-canary.300
58
71
 
59
- Mon, 17 Nov 2025 16:41:29 GMT
72
+ Wed, 12 Nov 2025 21:00:43 GMT
60
73
 
61
74
  ### Changes
62
75
 
63
- - Promote 0.81 to preview (66076509+vineethkuttan@users.noreply.github.com)
76
+ - Remove paper (30809111+acoates-ms@users.noreply.github.com)
77
+ - Integrate 0.82.0-nightly-20250806-5936f29d6 (66076509+vineethkuttan@users.noreply.github.com)
78
+ - Bump @rnw-scripts/eslint-config to v1.2.38
79
+ - Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.42
80
+ - Bump @rnw-scripts/just-task to v2.3.57
81
+ - Bump react-native-platform-override to v1.9.60
64
82
 
65
83
  ## 0.0.0-canary.299
66
84
 
@@ -36,7 +36,7 @@ const TESTS = [
36
36
  TESTS.forEach(test =>
37
37
  AppRegistry.registerComponent(
38
38
  test.displayName || test.name || '',
39
- /* $FlowFixMe[incompatible-call] (>=0.54.0 site=react_native_fb,react_native_
39
+ /* $FlowFixMe[incompatible-type] (>=0.54.0 site=react_native_fb,react_native_
40
40
  * oss) This comment suppresses an error found when Flow v0.54 was deployed.
41
41
  * To see the error delete this comment and run Flow. */
42
42
  () => test,
@@ -48,7 +48,7 @@ require('./LoggingTestModule');
48
48
 
49
49
  type Test = any;
50
50
 
51
- class IntegrationTestsApp extends React.Component<{...}, $FlowFixMeState> {
51
+ class IntegrationTestsApp extends React.Component<{...}, $FlowFixMe> {
52
52
  state: {test: ?Test} = {
53
53
  test: (null: ?Test),
54
54
  };
@@ -119,19 +119,19 @@ class LayoutEventsTest extends React.Component<Props, State> {
119
119
  }
120
120
 
121
121
  onViewLayout: (e: LayoutChangeEvent) => void = (e: LayoutChangeEvent) => {
122
- // $FlowFixMe[incompatible-call]
122
+ // $FlowFixMe[incompatible-type]
123
123
  debug('received view layout event\n', e.nativeEvent);
124
124
  this.setState({viewLayout: e.nativeEvent.layout}, this.checkLayout);
125
125
  };
126
126
 
127
127
  onTextLayout: (e: LayoutChangeEvent) => void = (e: LayoutChangeEvent) => {
128
- // $FlowFixMe[incompatible-call]
128
+ // $FlowFixMe[incompatible-type]
129
129
  debug('received text layout event\n', e.nativeEvent);
130
130
  this.setState({textLayout: e.nativeEvent.layout}, this.checkLayout);
131
131
  };
132
132
 
133
133
  onImageLayout: (e: LayoutChangeEvent) => void = (e: LayoutChangeEvent) => {
134
- // $FlowFixMe[incompatible-call]
134
+ // $FlowFixMe[incompatible-type]
135
135
  debug('received image layout event\n', e.nativeEvent);
136
136
  this.setState({imageLayout: e.nativeEvent.layout}, this.checkLayout);
137
137
  };
@@ -77,6 +77,8 @@ const ActionSheetIOS = {
77
77
  callback: (buttonIndex: number) => void,
78
78
  ) {
79
79
  invariant(
80
+ /* $FlowFixMe[invalid-compare] Error discovered during Constant Condition
81
+ * roll out. See https://fburl.com/workplace/5whu3i34. */
80
82
  typeof options === 'object' && options !== null,
81
83
  'Options must be a valid object',
82
84
  );
@@ -121,11 +123,11 @@ const ActionSheetIOS = {
121
123
  RCTActionSheetManager.showActionSheetWithOptions(
122
124
  {
123
125
  ...remainingOptions,
124
- // $FlowFixMe[incompatible-call]
126
+ // $FlowFixMe[incompatible-type]
125
127
  tintColor: processedTintColor,
126
- // $FlowFixMe[incompatible-call]
128
+ // $FlowFixMe[incompatible-type]
127
129
  cancelButtonTintColor: processedCancelButtonTintColor,
128
- // $FlowFixMe[incompatible-call]
130
+ // $FlowFixMe[incompatible-type]
129
131
  disabledButtonTintColor: processedDisabledButtonTintColor,
130
132
  destructiveButtonIndices,
131
133
  },
@@ -162,6 +164,8 @@ const ActionSheetIOS = {
162
164
  successCallback: Function | ((success: boolean, method: ?string) => void),
163
165
  ) {
164
166
  invariant(
167
+ /* $FlowFixMe[invalid-compare] Error discovered during Constant Condition
168
+ * roll out. See https://fburl.com/workplace/5whu3i34. */
165
169
  typeof options === 'object' && options !== null,
166
170
  'Options must be a valid object',
167
171
  );
@@ -24,10 +24,12 @@ export function alertWithArgs(
24
24
  }
25
25
 
26
26
  NativeDialogManagerAndroid.showAlert(
27
- // $FlowFixMe[prop-missing] - Mismatched platform interfaces.
27
+ // $FlowFixMe[incompatible-type] - Mismatched platform interfaces.
28
28
  args,
29
29
  emptyCallback,
30
- // $FlowFixMe[incompatible-call] - Mismatched platform interfaces.
30
+ // $FlowFixMe[incompatible-type] - Mismatched platform interfaces.
31
+ /* $FlowFixMe[constant-condition] Error discovered during Constant
32
+ * Condition roll out. See https://fburl.com/workplace/1v97vimq. */
31
33
  callback || emptyCallback,
32
34
  );
33
35
  }
@@ -551,6 +551,7 @@ export namespace Animated {
551
551
  [K in keyof T]: WithAnimatedValue<T[K]>;
552
552
  };
553
553
 
554
+ // prettier-ignore
554
555
  export type WithAnimatedValue<T> = T extends Builtin | Nullable
555
556
  ? T
556
557
  : T extends Primitive
@@ -563,6 +564,7 @@ export namespace Animated {
563
564
 
564
565
  type NonAnimatedProps = 'key' | 'ref';
565
566
 
567
+ // prettier-ignore
566
568
  type TAugmentRef<T> = T extends React.Ref<infer R>
567
569
  ? unknown extends R
568
570
  ? never
@@ -84,7 +84,7 @@ export function attachNativeEventImpl(
84
84
  NativeAnimatedHelper.API.removeAnimatedEventFromView(
85
85
  viewTag,
86
86
  eventName,
87
- // $FlowFixMe[incompatible-call]
87
+ // $FlowFixMe[incompatible-type]
88
88
  mapping.animatedValueTag,
89
89
  );
90
90
  });
@@ -10,6 +10,7 @@
10
10
 
11
11
  import AnimatedImplementation from './AnimatedImplementation';
12
12
 
13
+ export type {CompositeAnimation} from './AnimatedImplementation';
13
14
  export type {DecayAnimationConfig} from './animations/DecayAnimation';
14
15
  export type {SpringAnimationConfig} from './animations/SpringAnimation';
15
16
  export type {TimingAnimationConfig} from './animations/TimingAnimation';
@@ -94,6 +94,8 @@ const _combineCallbacks = function (
94
94
  if (callback && config.onComplete) {
95
95
  return (...args: Array<EndResult>) => {
96
96
  config.onComplete && config.onComplete(...args);
97
+ /* $FlowFixMe[constant-condition] Error discovered during Constant
98
+ * Condition roll out. See https://fburl.com/workplace/1v97vimq. */
97
99
  callback && callback(...args);
98
100
  };
99
101
  } else {
@@ -372,7 +374,7 @@ const parallelImpl = function (
372
374
  const hasEnded: {[number]: boolean} = {};
373
375
  const stopTogether = !(config && config.stopTogether === false);
374
376
 
375
- const result = {
377
+ const result: CompositeAnimation = {
376
378
  start: function (callback?: ?EndCallback, isLooping?: boolean) {
377
379
  if (doneCount === animations.length) {
378
380
  callback && callback({finished: true});
@@ -460,7 +462,7 @@ type LoopAnimationConfig = {
460
462
 
461
463
  const loopImpl = function (
462
464
  animation: CompositeAnimation,
463
- // $FlowFixMe[prop-missing]
465
+ // $FlowFixMe[incompatible-type]
464
466
  {iterations = -1, resetBeforeIteration = true}: LoopAnimationConfig = {},
465
467
  ): CompositeAnimation {
466
468
  let isFinished = false;
@@ -158,7 +158,7 @@ type LoopAnimationConfig = {
158
158
 
159
159
  const loop = function (
160
160
  animation: CompositeAnimation,
161
- // $FlowFixMe[prop-missing]
161
+ // $FlowFixMe[incompatible-type]
162
162
  {iterations = -1}: LoopAnimationConfig = {},
163
163
  ): CompositeAnimation {
164
164
  return emptyAnimation;
@@ -91,6 +91,8 @@ const EasingStatic = {
91
91
  * http://cubic-bezier.com/#.42,0,1,1
92
92
  */
93
93
  ease(t: number): number {
94
+ /* $FlowFixMe[constant-condition] Error discovered during Constant
95
+ * Condition roll out. See https://fburl.com/workplace/1v97vimq. */
94
96
  if (!ease) {
95
97
  ease = EasingStatic.bezier(0.42, 0, 1, 1);
96
98
  }
@@ -48,6 +48,7 @@ const SUPPORTED_STYLES: {[string]: true} = {
48
48
  borderStartStartRadius: true,
49
49
  elevation: true,
50
50
  opacity: true,
51
+ filter: true,
51
52
  transform: true,
52
53
  zIndex: true,
53
54
  /* ios styles */