@office-iss/react-native-win32 0.73.2 → 0.73.4
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 +31 -1
- package/CHANGELOG.md +21 -5
- package/Libraries/ReactNative/PaperUIManager.win32.js +3 -1
- package/package.json +6 -3
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,37 @@
|
|
|
2
2
|
"name": "@office-iss/react-native-win32",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "Mon,
|
|
5
|
+
"date": "Mon, 06 May 2024 15:14:33 GMT",
|
|
6
|
+
"version": "0.73.4",
|
|
7
|
+
"tag": "@office-iss/react-native-win32_v0.73.4",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "30809111+acoates-ms@users.noreply.github.com",
|
|
12
|
+
"package": "@office-iss/react-native-win32",
|
|
13
|
+
"commit": "9193b07740af1cf670844eb274be91b9cbd634f1",
|
|
14
|
+
"comment": "PaperUIManager running as turbomodule fix"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Fri, 26 Apr 2024 22:42:37 GMT",
|
|
21
|
+
"version": "0.73.3",
|
|
22
|
+
"tag": "@office-iss/react-native-win32_v0.73.3",
|
|
23
|
+
"comments": {
|
|
24
|
+
"patch": [
|
|
25
|
+
{
|
|
26
|
+
"author": "tatianakapos@microsoft.com",
|
|
27
|
+
"package": "@office-iss/react-native-win32",
|
|
28
|
+
"commit": "f8a684071f7e12095dd89543b5217843086ee400",
|
|
29
|
+
"comment": "Promote 0.73 to legacy"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"date": "Mon, 18 Mar 2024 15:15:54 GMT",
|
|
6
36
|
"version": "0.73.2",
|
|
7
37
|
"tag": "@office-iss/react-native-win32_v0.73.2",
|
|
8
38
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,34 @@
|
|
|
1
1
|
# Change Log - @office-iss/react-native-win32
|
|
2
2
|
|
|
3
|
-
This log was last generated on Mon,
|
|
3
|
+
This log was last generated on Mon, 06 May 2024 15:14:33 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.73.
|
|
7
|
+
## 0.73.4
|
|
8
8
|
|
|
9
|
-
Mon,
|
|
9
|
+
Mon, 06 May 2024 15:14:33 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
14
|
-
- Update react-native 0.73.4 -> 0.73.6 (30809111+acoates-ms@users.noreply.github.com)
|
|
13
|
+
- PaperUIManager running as turbomodule fix (30809111+acoates-ms@users.noreply.github.com)
|
|
15
14
|
|
|
15
|
+
## 0.73.3
|
|
16
|
+
|
|
17
|
+
Fri, 26 Apr 2024 22:42:37 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Promote 0.73 to legacy (tatianakapos@microsoft.com)
|
|
22
|
+
|
|
23
|
+
## 0.73.2
|
|
24
|
+
|
|
25
|
+
Mon, 18 Mar 2024 15:15:54 GMT
|
|
26
|
+
|
|
27
|
+
### Patches
|
|
28
|
+
|
|
29
|
+
- TextProps from rn-win32 should include win32 properties (30809111+acoates-ms@users.noreply.github.com)
|
|
30
|
+
- Update react-native 0.73.4 -> 0.73.6 (30809111+acoates-ms@users.noreply.github.com)
|
|
31
|
+
|
|
16
32
|
## 0.73.1
|
|
17
33
|
|
|
18
34
|
Fri, 09 Feb 2024 17:12:46 GMT
|
|
@@ -80,7 +80,9 @@ function getViewManagerConfig(viewManagerName: string): any {
|
|
|
80
80
|
const UIManagerJS = {};
|
|
81
81
|
|
|
82
82
|
// [Windows The spread operator doesn't work on JSI turbomodules, so use this instead
|
|
83
|
-
for (const propName of Object.getOwnPropertyNames(
|
|
83
|
+
for (const propName of Object.getOwnPropertyNames(
|
|
84
|
+
Object.getPrototypeOf(NativeUIManager),
|
|
85
|
+
)) {
|
|
84
86
|
// $FlowFixMe
|
|
85
87
|
UIManagerJS[propName] = NativeUIManager[propName];
|
|
86
88
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@office-iss/react-native-win32",
|
|
3
|
-
"version": "0.73.
|
|
3
|
+
"version": "0.73.4",
|
|
4
4
|
"description": "Implementation of react native on top of Office's Win32 platform.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -94,11 +94,14 @@
|
|
|
94
94
|
"react-native": "^0.73.0"
|
|
95
95
|
},
|
|
96
96
|
"beachball": {
|
|
97
|
-
"defaultNpmTag": "
|
|
97
|
+
"defaultNpmTag": "v0.73-stable",
|
|
98
98
|
"disallowedChangeTypes": [
|
|
99
99
|
"major",
|
|
100
100
|
"minor",
|
|
101
|
-
"prerelease"
|
|
101
|
+
"prerelease",
|
|
102
|
+
"premajor",
|
|
103
|
+
"preminor",
|
|
104
|
+
"prepatch"
|
|
102
105
|
]
|
|
103
106
|
},
|
|
104
107
|
"promoteRelease": true,
|