@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.
- package/.flowconfig +3 -11
- package/CHANGELOG.json +118 -43
- package/CHANGELOG.md +45 -27
- package/IntegrationTests/IntegrationTestsApp.js +2 -2
- package/IntegrationTests/LayoutEventsTest.js +3 -3
- package/Libraries/ActionSheetIOS/ActionSheetIOS.js +7 -3
- package/Libraries/Alert/RCTAlertManager.android.js +4 -2
- package/Libraries/Animated/Animated.d.ts +2 -0
- package/Libraries/Animated/AnimatedEvent.js +1 -1
- package/Libraries/Animated/AnimatedExports.js.flow +1 -0
- package/Libraries/Animated/AnimatedImplementation.js +4 -2
- package/Libraries/Animated/AnimatedMock.js +1 -1
- package/Libraries/Animated/Easing.js +2 -0
- package/Libraries/Animated/NativeAnimatedAllowlist.js +1 -0
- package/Libraries/Animated/animations/Animation.js +19 -20
- package/Libraries/Animated/animations/TimingAnimation.js +2 -0
- package/Libraries/Animated/components/AnimatedScrollView.js +3 -2
- package/Libraries/Animated/components/AnimatedSectionList.js +1 -1
- package/Libraries/Animated/nodes/AnimatedColor.js +9 -9
- package/Libraries/Animated/nodes/AnimatedInterpolation.js +4 -4
- package/Libraries/Animated/nodes/AnimatedNode.js +14 -7
- package/Libraries/Animated/nodes/AnimatedObject.js +7 -7
- package/Libraries/Animated/nodes/AnimatedProps.js +32 -32
- package/Libraries/Animated/nodes/AnimatedStyle.js +23 -21
- package/Libraries/Animated/nodes/AnimatedTransform.js +6 -6
- package/Libraries/Animated/nodes/AnimatedValue.js +18 -26
- package/Libraries/AppState/AppState.js +8 -4
- package/Libraries/BatchedBridge/BatchedBridge.js +1 -0
- package/Libraries/BatchedBridge/MessageQueue.js +5 -0
- package/Libraries/BatchedBridge/NativeModules.js +1 -1
- package/Libraries/Blob/BlobManager.js +1 -1
- package/Libraries/Blob/URLSearchParams.js +2 -0
- package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.js +2 -2
- package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.win32.js +2 -2
- package/Libraries/Components/Button.js +1 -1
- package/Libraries/Components/Button.win32.js +1 -1
- package/Libraries/Components/Pressable/Pressable.js +10 -1
- package/Libraries/Components/Pressable/Pressable.win32.js +9 -0
- package/Libraries/Components/Pressable/useAndroidRippleForView.js +2 -2
- package/Libraries/Components/ScrollView/ScrollView.js +13 -4
- package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +1 -1
- package/Libraries/Components/StatusBar/StatusBar.js +2 -2
- package/Libraries/Components/Switch/Switch.js +1 -1
- package/Libraries/Components/TextInput/TextInput.flow.js +12 -5
- package/Libraries/Components/TextInput/TextInput.flow.win32.js +12 -5
- package/Libraries/Components/TextInput/TextInput.js +14 -5
- package/Libraries/Components/TextInput/TextInput.win32.js +15 -7
- package/Libraries/Components/TextInput/TextInputState.js +1 -1
- package/Libraries/Components/TextInput/TextInputState.win32.js +1 -1
- package/Libraries/Components/TextInput/Win32TextInputNativeComponent.js +2 -3
- package/Libraries/Components/Touchable/TouchableBounce.js +1 -1
- package/Libraries/Components/Touchable/TouchableHighlight.js +1 -1
- package/Libraries/Components/Touchable/TouchableNativeFeedback.js +1 -1
- package/Libraries/Components/Touchable/TouchableOpacity.js +1 -1
- package/Libraries/Components/Touchable/TouchableWin32.js +1 -1
- package/Libraries/Components/Touchable/TouchableWin32.js.map +1 -1
- package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +3 -3
- package/Libraries/Components/View/View.js +81 -167
- package/Libraries/Components/View/View.win32.js +3 -1
- package/Libraries/Core/Devtools/loadBundleFromServer.js +1 -1
- package/Libraries/Core/Devtools/loadBundleFromServer.win32.js +1 -1
- package/Libraries/Core/ExceptionsManager.js +4 -2
- package/Libraries/Core/ReactFiberErrorDialog.js +3 -3
- package/Libraries/Core/ReactNativeVersion.js +37 -10
- package/Libraries/Core/Timers/JSTimers.js +4 -1
- package/Libraries/Core/Timers/NativeTiming.js +1 -0
- package/Libraries/Core/Timers/immediateShim.js +2 -1
- package/Libraries/Core/Timers/queueMicrotask.js +1 -0
- package/Libraries/Core/setUpPerformance.js +3 -4
- package/Libraries/Debugging/DebuggingOverlayRegistry.js +5 -3
- package/Libraries/Image/Image.android.js +327 -111
- package/Libraries/Image/Image.ios.js +6 -1
- package/Libraries/Image/Image.win32.js +6 -1
- package/Libraries/Image/ImageSourceUtils.js +8 -2
- package/Libraries/Image/assetPaths.js +1 -1
- package/Libraries/Image/resolveAssetSource.js +1 -1
- package/Libraries/Image/resolveAssetSource.win32.js +6 -7
- package/Libraries/Interaction/InteractionManager.js +118 -167
- package/Libraries/Interaction/PanResponder.js +7 -52
- package/Libraries/LayoutAnimation/LayoutAnimation.js +2 -0
- package/Libraries/Lists/FlatList.js +5 -6
- package/Libraries/LogBox/Data/LogBoxData.js +5 -2
- package/Libraries/LogBox/Data/parseLogBoxLog.js +1 -1
- package/Libraries/LogBox/UI/LogBoxInspectorHeader.win32.js +2 -2
- package/Libraries/LogBox/UI/LogBoxInspectorSourceMapStatus.js +1 -1
- package/Libraries/LogBox/UI/LogBoxInspectorSourceMapStatus.win32.js +1 -1
- package/Libraries/Modal/Modal.js +3 -3
- package/Libraries/NativeComponent/NativeComponentRegistry.js +1 -1
- package/Libraries/NativeComponent/ViewConfig.js +2 -2
- package/Libraries/Network/RCTNetworking.android.js +1 -1
- package/Libraries/Network/RCTNetworking.ios.js +1 -1
- package/Libraries/Network/RCTNetworking.win32.js +1 -1
- package/Libraries/Network/XMLHttpRequest.js +20 -5
- package/Libraries/Network/convertRequestBody.js +1 -1
- package/Libraries/PermissionsAndroid/PermissionsAndroid.js +10 -9
- package/Libraries/Pressability/HoverState.js +2 -0
- package/Libraries/Pressability/HoverState.win32.js +2 -0
- package/Libraries/Pressability/Pressability.js +1 -1
- package/Libraries/Pressability/Pressability.win32.js +1 -1
- package/Libraries/PushNotificationIOS/PushNotificationIOS.js +2 -2
- package/Libraries/ReactNative/AppRegistryImpl.js +4 -2
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +2 -0
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +3 -3
- package/Libraries/ReactNative/RendererImplementation.js +116 -116
- package/Libraries/ReactNative/UIManager.js +3 -3
- package/Libraries/ReactNative/renderApplication.js +1 -0
- package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +1 -1
- package/Libraries/Renderer/implementations/ReactFabric-dev.js +38 -35
- package/Libraries/Renderer/implementations/ReactFabric-prod.js +51 -22
- package/Libraries/Renderer/implementations/ReactFabric-profiling.js +54 -24
- package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +36 -33
- package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +5 -5
- package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +5 -5
- package/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +3 -1
- package/Libraries/Share/Share.js +4 -0
- package/Libraries/StyleSheet/PlatformColorValueTypes.android.js +2 -2
- package/Libraries/StyleSheet/PlatformColorValueTypes.ios.js +2 -2
- package/Libraries/StyleSheet/PlatformColorValueTypes.win32.js +4 -0
- package/Libraries/StyleSheet/StyleSheet.d.ts +7 -22
- package/Libraries/StyleSheet/StyleSheetExports.js +2 -8
- package/Libraries/StyleSheet/StyleSheetExports.js.flow +11 -18
- package/Libraries/StyleSheet/flattenStyle.js +2 -2
- package/Libraries/StyleSheet/processAspectRatio.js +2 -0
- package/Libraries/StyleSheet/processFilter.js +5 -5
- package/Libraries/StyleSheet/splitLayoutProps.js +2 -2
- package/Libraries/Text/Text.js +534 -234
- package/Libraries/Text/Text.win32.js +647 -274
- package/Libraries/Text/TextNativeComponent.js +2 -2
- package/Libraries/Text/TextNativeComponent.win32.js +2 -2
- package/Libraries/Utilities/Appearance.d.ts +3 -5
- package/Libraries/Utilities/Appearance.js +5 -17
- package/Libraries/Utilities/HMRClient.js +2 -1
- package/Libraries/Utilities/Platform.android.js +3 -3
- package/Libraries/Utilities/Platform.d.ts +1 -0
- package/Libraries/Utilities/Platform.ios.js +1 -1
- package/Libraries/Utilities/Platform.win32.js +3 -3
- package/Libraries/Utilities/PlatformTypes.js +1 -1
- package/Libraries/Utilities/ReactNativeTestTools.js +12 -0
- package/Libraries/Utilities/SceneTracker.js +1 -1
- package/Libraries/Utilities/codegenNativeCommands.js +1 -1
- package/Libraries/Utilities/codegenNativeComponent.js +1 -1
- package/Libraries/Utilities/createPerformanceLogger.js +32 -0
- package/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.js +2 -0
- package/Libraries/Utilities/differ/pointsDiffer.js +1 -1
- package/Libraries/Utilities/useMergeRefs.js +1 -1
- package/Libraries/WebSocket/WebSocketInterceptor.js +2 -0
- package/Libraries/promiseRejectionTrackingOptions.js +17 -31
- package/Libraries/vendor/emitter/EventEmitter.js +1 -1
- package/flow/bom.js.flow +223 -1
- package/flow/prettier.js.flow +14 -0
- package/index.js +14 -2
- package/index.win32.js +16 -2
- package/jest/local-setup.js +2 -2
- package/jest/mock.js +1 -1
- package/jest/mockComponent.js +9 -9
- package/jest/mockNativeComponent.js +3 -2
- package/jest/mocks/Modal.js +1 -1
- package/jest/mocks/ScrollView.js +1 -1
- package/jest/mocks/ViewNativeComponent.js +1 -1
- package/jest/setup.js +23 -12
- package/overrides.json +23 -23
- package/package.json +28 -27
- package/saveAssetPlugin.js +2 -2
- package/src/private/animated/NativeAnimatedHelper.js +16 -5
- package/src/private/animated/NativeAnimatedHelper.win32.js +16 -5
- package/src/private/animated/createAnimatedPropsHook.js +11 -60
- package/src/private/animated/createAnimatedPropsMemoHook.js +8 -54
- package/src/private/components/virtualview/VirtualView.js +43 -12
- package/src/private/components/virtualview/VirtualViewExperimentalNativeComponent.js +93 -0
- package/src/private/components/virtualview/VirtualViewNativeComponent.js +6 -0
- package/src/private/devsupport/devmenu/elementinspector/Inspector.js +2 -2
- package/src/private/devsupport/devmenu/elementinspector/ReactDevToolsOverlay.js +2 -2
- package/src/private/featureflags/ReactNativeFeatureFlags.js +85 -52
- package/src/private/featureflags/ReactNativeFeatureFlagsBase.js +23 -4
- package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +15 -6
- package/src/private/renderer/errorhandling/ErrorHandlers.js +3 -3
- package/src/private/setup/{setUpPerformanceObserver.js → setUpPerformanceModern.js} +43 -18
- package/src/private/specs_DEPRECATED/modules/NativeTiming.js +1 -0
- package/src/private/types/HostInstance.js +4 -1
- package/src/private/webapis/dom/nodes/ReactNativeDocument.js +22 -2
- package/src/private/webapis/dom/nodes/ReactNativeElement.js +1 -1
- package/src/private/webapis/dom/nodes/ReadOnlyElement.js +5 -3
- package/src/private/webapis/dom/nodes/ReadOnlyNode.js +16 -13
- package/src/private/webapis/dom/nodes/internals/NodeInternals.js +45 -22
- package/src/private/webapis/dom/nodes/internals/ReactNativeDocumentInstanceHandle.js +1 -1
- package/src/private/webapis/dom/nodes/specs/NativeDOM.js +26 -192
- package/src/private/webapis/dom/oldstylecollections/HTMLCollection.js +15 -12
- package/src/private/webapis/dom/oldstylecollections/NodeList.js +14 -11
- package/src/private/webapis/geometry/DOMRectList.js +2 -2
- package/src/private/webapis/intersectionobserver/internals/IntersectionObserverManager.js +19 -74
- package/src/private/webapis/intersectionobserver/specs/NativeIntersectionObserver.js +0 -4
- package/src/private/webapis/mutationobserver/internals/MutationObserverManager.js +1 -1
- package/src/private/webapis/performance/EventTiming.js +40 -25
- package/src/private/webapis/performance/LongTasks.js +35 -2
- package/src/private/webapis/performance/Performance.js +347 -166
- package/src/private/webapis/performance/PerformanceEntry.js +40 -23
- package/src/private/webapis/performance/PerformanceObserver.js +37 -29
- package/src/private/webapis/performance/ReactNativeStartupTiming.js +3 -24
- package/src/private/webapis/performance/ResourceTiming.js +29 -18
- package/src/private/webapis/performance/UserTiming.js +92 -34
- package/src/private/webapis/performance/UserTimingExtensibility.js.flow +38 -0
- package/src/private/webapis/performance/internals/RawPerformanceEntry.js +3 -4
- package/src/private/webapis/performance/internals/Utilities.js +9 -0
- package/src/private/webapis/performance/specs/NativePerformance.js +23 -23
- package/src/private/webapis/structuredClone/structuredClone.js +10 -10
- package/src-win/Libraries/Components/Touchable/TouchableWin32.tsx +1 -1
- package/Libraries/Interaction/InteractionManagerStub.js +0 -184
- package/Libraries/Interaction/TaskQueue.js +0 -183
- 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.
|
|
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": "
|
|
6
|
-
"version": "0.
|
|
7
|
-
"tag": "@office-iss/react-native-win32_v0.
|
|
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
|
-
"
|
|
9
|
+
"prerelease": [
|
|
10
10
|
{
|
|
11
|
-
"author": "
|
|
11
|
+
"author": "74712637+iamAbhi-916@users.noreply.github.com",
|
|
12
12
|
"package": "@office-iss/react-native-win32",
|
|
13
|
-
"commit": "
|
|
14
|
-
"comment": "
|
|
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
|
|
21
|
-
"version": "0.
|
|
22
|
-
"tag": "@office-iss/react-native-win32_v0.
|
|
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
|
-
"
|
|
24
|
+
"prerelease": [
|
|
25
25
|
{
|
|
26
|
-
"author": "
|
|
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
|
-
"
|
|
29
|
-
"
|
|
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": "
|
|
36
|
-
"version": "0.
|
|
37
|
-
"tag": "@office-iss/react-native-win32_v0.
|
|
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
|
-
"
|
|
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": "
|
|
44
|
-
"comment": "
|
|
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.
|
|
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": "
|
|
57
|
-
"version": "0.
|
|
58
|
-
"tag": "@office-iss/react-native-win32_v0.
|
|
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": "
|
|
65
|
-
"comment": "Integrate
|
|
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,
|
|
72
|
-
"version": "0.
|
|
73
|
-
"tag": "@office-iss/react-native-win32_v0.
|
|
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": "
|
|
80
|
-
"comment": "
|
|
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.
|
|
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": "
|
|
93
|
-
"version": "0.
|
|
94
|
-
"tag": "@office-iss/react-native-win32_v0.
|
|
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": "
|
|
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
|
-
"
|
|
101
|
-
"
|
|
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": "
|
|
108
|
-
"version": "0.
|
|
109
|
-
"tag": "@office-iss/react-native-win32_v0.
|
|
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": "
|
|
116
|
-
"comment": "
|
|
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
|
|
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.
|
|
7
|
+
## 0.82.0-preview.2
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Sat, 24 Jan 2026 16:43:04 GMT
|
|
10
10
|
|
|
11
|
-
###
|
|
11
|
+
### Changes
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- integrate 0.82.1 (74712637+iamAbhi-916@users.noreply.github.com)
|
|
14
14
|
|
|
15
|
-
## 0.
|
|
15
|
+
## 0.82.0-preview.1
|
|
16
16
|
|
|
17
|
-
Wed, 14 Jan 2026
|
|
17
|
+
Wed, 14 Jan 2026 13:07:17 GMT
|
|
18
18
|
|
|
19
|
-
###
|
|
19
|
+
### Changes
|
|
20
20
|
|
|
21
|
-
-
|
|
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.
|
|
24
|
+
## 0.0.0-canary.305
|
|
24
25
|
|
|
25
|
-
|
|
26
|
+
Tue, 13 Jan 2026 13:00:13 GMT
|
|
26
27
|
|
|
27
|
-
###
|
|
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
|
-
-
|
|
30
|
-
- Bump react-native-platform-override to v0.
|
|
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.
|
|
42
|
+
## 0.0.0-canary.303
|
|
33
43
|
|
|
34
|
-
|
|
44
|
+
Thu, 25 Dec 2025 06:39:16 GMT
|
|
35
45
|
|
|
36
46
|
### Changes
|
|
37
47
|
|
|
38
|
-
- Integrate
|
|
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.
|
|
52
|
+
## 0.0.0-canary.302
|
|
41
53
|
|
|
42
|
-
Wed,
|
|
54
|
+
Wed, 03 Dec 2025 06:40:45 GMT
|
|
43
55
|
|
|
44
56
|
### Changes
|
|
45
57
|
|
|
46
|
-
-
|
|
47
|
-
- Bump react-native-platform-override to v0.
|
|
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.
|
|
61
|
+
## 0.0.0-canary.301
|
|
50
62
|
|
|
51
|
-
|
|
63
|
+
Mon, 17 Nov 2025 06:42:06 GMT
|
|
52
64
|
|
|
53
65
|
### Changes
|
|
54
66
|
|
|
55
|
-
-
|
|
67
|
+
- Bump @rnw-scripts/just-task to v2.3.58
|
|
68
|
+
- Bump react-native-platform-override to v1.9.61
|
|
56
69
|
|
|
57
|
-
## 0.
|
|
70
|
+
## 0.0.0-canary.300
|
|
58
71
|
|
|
59
|
-
|
|
72
|
+
Wed, 12 Nov 2025 21:00:43 GMT
|
|
60
73
|
|
|
61
74
|
### Changes
|
|
62
75
|
|
|
63
|
-
-
|
|
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-
|
|
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<{...}, $
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
126
|
+
// $FlowFixMe[incompatible-type]
|
|
125
127
|
tintColor: processedTintColor,
|
|
126
|
-
// $FlowFixMe[incompatible-
|
|
128
|
+
// $FlowFixMe[incompatible-type]
|
|
127
129
|
cancelButtonTintColor: processedCancelButtonTintColor,
|
|
128
|
-
// $FlowFixMe[incompatible-
|
|
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[
|
|
27
|
+
// $FlowFixMe[incompatible-type] - Mismatched platform interfaces.
|
|
28
28
|
args,
|
|
29
29
|
emptyCallback,
|
|
30
|
-
// $FlowFixMe[incompatible-
|
|
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
|
|
@@ -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[
|
|
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[
|
|
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
|
}
|