@office-iss/react-native-win32 0.81.6 → 0.81.8
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/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@office-iss/react-native-win32",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"date": "Tue, 19 May 2026 23:38:50 GMT",
|
|
6
|
+
"version": "0.81.8",
|
|
7
|
+
"tag": "@office-iss/react-native-win32_v0.81.8",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "30809111+acoates-ms@users.noreply.github.com",
|
|
12
|
+
"package": "@office-iss/react-native-win32",
|
|
13
|
+
"commit": "aaa05f5c3491ec4f2d62cb630b7ae51cd6a0f750",
|
|
14
|
+
"comment": "asset path shortener not running by default"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Mon, 16 Mar 2026 19:38:05 GMT",
|
|
21
|
+
"version": "0.81.7",
|
|
22
|
+
"tag": "@office-iss/react-native-win32_v0.81.7",
|
|
23
|
+
"comments": {
|
|
24
|
+
"patch": [
|
|
25
|
+
{
|
|
26
|
+
"author": "30809111+acoates-ms@users.noreply.github.com",
|
|
27
|
+
"package": "@office-iss/react-native-win32",
|
|
28
|
+
"commit": "ec233c34b76b99dc425cd9d377265f493bff4bff",
|
|
29
|
+
"comment": "Fix invariant throwing on usage on animated"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
4
34
|
{
|
|
5
35
|
"date": "Thu, 12 Mar 2026 08:48:51 GMT",
|
|
6
36
|
"version": "0.81.6",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,25 @@
|
|
|
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 Tue, 19 May 2026 23:38:50 GMT and should not be manually modified. -->
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.81.8
|
|
8
|
+
|
|
9
|
+
Tue, 19 May 2026 23:38:50 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- asset path shortener not running by default (30809111+acoates-ms@users.noreply.github.com)
|
|
14
|
+
|
|
15
|
+
## 0.81.7
|
|
16
|
+
|
|
17
|
+
Mon, 16 Mar 2026 19:38:05 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Fix invariant throwing on usage on animated (30809111+acoates-ms@users.noreply.github.com)
|
|
22
|
+
|
|
7
23
|
## 0.81.6
|
|
8
24
|
|
|
9
25
|
Thu, 12 Mar 2026 08:48:51 GMT
|
|
@@ -123,10 +123,9 @@ class AssetResolverLateScaleResolution {
|
|
|
123
123
|
|
|
124
124
|
// We should leave the resource scale out of the URI, and do that lookup on the native side.
|
|
125
125
|
// That way we can handle dynamic dpi changes and multimon scenarios better
|
|
126
|
-
|
|
126
|
+
resolveAssetSource.setCustomSourceTransformer(resolver => {
|
|
127
127
|
const lsrResolver = new AssetResolverLateScaleResolution(resolver);
|
|
128
128
|
return lsrResolver.defaultAsset();
|
|
129
|
-
}
|
|
129
|
+
});
|
|
130
130
|
|
|
131
|
-
resolveAssetSource.setCustomSourceTransformer = setCustomSourceTransformer;
|
|
132
131
|
export default resolveAssetSource;
|
package/package.json
CHANGED
|
@@ -218,10 +218,13 @@ const API = {
|
|
|
218
218
|
singleOpQueue.length = 0;
|
|
219
219
|
}
|
|
220
220
|
: (): void => {
|
|
221
|
+
/* [Windows #11041
|
|
222
|
+
// TODO: (T136971132)
|
|
221
223
|
invariant(
|
|
222
224
|
NativeAnimatedModule,
|
|
223
225
|
'Native animated module is not available',
|
|
224
226
|
);
|
|
227
|
+
Windows] */
|
|
225
228
|
flushQueueImmediate = null;
|
|
226
229
|
|
|
227
230
|
if (queue.length === 0) {
|