@office-iss/react-native-win32 0.81.2 → 0.81.3
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 +16 -1
- package/CHANGELOG.md +12 -4
- package/index.win32.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@office-iss/react-native-win32",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Wed, 11 Feb 2026 16:10:18 GMT",
|
|
6
|
+
"version": "0.81.3",
|
|
7
|
+
"tag": "@office-iss/react-native-win32_v0.81.3",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "30809111+acoates-ms@users.noreply.github.com",
|
|
12
|
+
"package": "@office-iss/react-native-win32",
|
|
13
|
+
"commit": "abadef8978d29431c24dd81d4fadd688550ae5c0",
|
|
14
|
+
"comment": "Fix TextWin32 export"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Tue, 27 Jan 2026 19:33:59 GMT",
|
|
6
21
|
"version": "0.81.2",
|
|
7
22
|
"tag": "@office-iss/react-native-win32_v0.81.2",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +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 Wed, 11 Feb 2026 16:10:18 GMT and should not be manually modified. -->
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.81.
|
|
7
|
+
## 0.81.3
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Wed, 11 Feb 2026 16:10:18 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
- Fix
|
|
13
|
+
- Fix TextWin32 export (30809111+acoates-ms@users.noreply.github.com)
|
|
14
14
|
|
|
15
|
+
## 0.81.2
|
|
16
|
+
|
|
17
|
+
Tue, 27 Jan 2026 19:33:59 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Fix TouchableWin32 and LogBox (30809111+acoates-ms@users.noreply.github.com)
|
|
22
|
+
|
|
15
23
|
## 0.81.1
|
|
16
24
|
|
|
17
25
|
Wed, 14 Jan 2026 06:05:13 GMT
|
package/index.win32.js
CHANGED
|
@@ -438,7 +438,7 @@ module.exports = {
|
|
|
438
438
|
},
|
|
439
439
|
get TextWin32(): any {
|
|
440
440
|
// Legacy export
|
|
441
|
-
return require('./Libraries/Text/Text');
|
|
441
|
+
return require('./Libraries/Text/Text').default;
|
|
442
442
|
},
|
|
443
443
|
get ButtonWin32(): any {
|
|
444
444
|
return require('./Libraries/Components/Button/ButtonWin32').ButtonWin32;
|