@office-iss/react-native-win32 0.81.7 → 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,21 @@
|
|
|
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
|
+
},
|
|
4
19
|
{
|
|
5
20
|
"date": "Mon, 16 Mar 2026 19:38:05 GMT",
|
|
6
21
|
"version": "0.81.7",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
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
|
+
|
|
7
15
|
## 0.81.7
|
|
8
16
|
|
|
9
17
|
Mon, 16 Mar 2026 19:38:05 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;
|