@office-iss/react-native-win32 0.73.0-preview.3 → 0.73.0-preview.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 +16 -1
- package/CHANGELOG.md +12 -4
- package/Libraries/Animated/nodes/AnimatedStyle.js +1 -1
- package/Libraries/Core/ReactNativeVersion.js +1 -1
- package/overrides.json +1 -1
- package/package.json +12 -12
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": "Mon, 20 Nov 2023 16:15:00 GMT",
|
|
6
|
+
"version": "0.73.0-preview.4",
|
|
7
|
+
"tag": "@office-iss/react-native-win32_v0.73.0-preview.4",
|
|
8
|
+
"comments": {
|
|
9
|
+
"prerelease": [
|
|
10
|
+
{
|
|
11
|
+
"author": "tatianakapos@microsoft.com",
|
|
12
|
+
"package": "@office-iss/react-native-win32",
|
|
13
|
+
"commit": "d0ab2676e3a21dca55b46bbb1d4fdb349fae8a55",
|
|
14
|
+
"comment": "integrate rc4"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Tue, 24 Oct 2023 19:43:30 GMT",
|
|
6
21
|
"version": "0.73.0-preview.3",
|
|
7
22
|
"tag": "@office-iss/react-native-win32_v0.73.0-preview.3",
|
|
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 Mon, 20 Nov 2023 16:15:00 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.73.0-preview.
|
|
7
|
+
## 0.73.0-preview.4
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Mon, 20 Nov 2023 16:15:00 GMT
|
|
10
10
|
|
|
11
11
|
### Changes
|
|
12
12
|
|
|
13
|
-
- integrate
|
|
13
|
+
- integrate rc4 (tatianakapos@microsoft.com)
|
|
14
14
|
|
|
15
|
+
## 0.73.0-preview.3
|
|
16
|
+
|
|
17
|
+
Tue, 24 Oct 2023 19:43:30 GMT
|
|
18
|
+
|
|
19
|
+
### Changes
|
|
20
|
+
|
|
21
|
+
- integrate 0.73-rc3 (tatianakapos@microsoft.com)
|
|
22
|
+
|
|
15
23
|
## 0.73.0-preview.1
|
|
16
24
|
|
|
17
25
|
Tue, 17 Oct 2023 22:26:52 GMT
|
|
@@ -30,7 +30,7 @@ function createAnimatedStyle(
|
|
|
30
30
|
const animatedStyles: any = {};
|
|
31
31
|
for (const key in style) {
|
|
32
32
|
const value = style[key];
|
|
33
|
-
if (key === 'transform') {
|
|
33
|
+
if (value != null && key === 'transform') {
|
|
34
34
|
animatedStyles[key] =
|
|
35
35
|
ReactNativeFeatureFlags.shouldUseAnimatedObjectForTransform()
|
|
36
36
|
? new AnimatedObject(value)
|
package/overrides.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@office-iss/react-native-win32",
|
|
3
|
-
"version": "0.73.0-preview.
|
|
3
|
+
"version": "0.73.0-preview.4",
|
|
4
4
|
"description": "Implementation of react native on top of Office's Win32 platform.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,32 +26,32 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@babel/runtime": "^7.0.0",
|
|
28
28
|
"@jest/create-cache-key-function": "^29.6.3",
|
|
29
|
-
"@react-native-community/cli": "12.0.0
|
|
30
|
-
"@react-native-community/cli-platform-android": "12.0.0
|
|
31
|
-
"@react-native-community/cli-platform-ios": "12.0.0
|
|
29
|
+
"@react-native-community/cli": "12.0.0",
|
|
30
|
+
"@react-native-community/cli-platform-android": "12.0.0",
|
|
31
|
+
"@react-native-community/cli-platform-ios": "12.0.0",
|
|
32
32
|
"@react-native/assets": "1.0.0",
|
|
33
33
|
"@react-native/assets-registry": "^0.73.1",
|
|
34
34
|
"@react-native/codegen": "^0.73.1",
|
|
35
|
-
"@react-native/community-cli-plugin": "^0.73.
|
|
36
|
-
"@react-native/gradle-plugin": "^0.73.
|
|
35
|
+
"@react-native/community-cli-plugin": "^0.73.8",
|
|
36
|
+
"@react-native/gradle-plugin": "^0.73.3",
|
|
37
37
|
"@react-native/js-polyfills": "^0.73.1",
|
|
38
38
|
"@react-native/metro-config": "^0.73.0",
|
|
39
39
|
"@react-native/normalize-colors": "^0.73.2",
|
|
40
|
-
"@react-native/virtualized-lists": "^0.73.
|
|
40
|
+
"@react-native/virtualized-lists": "^0.73.3",
|
|
41
41
|
"abort-controller": "^3.0.0",
|
|
42
42
|
"anser": "^1.4.9",
|
|
43
43
|
"ansi-regex": "^5.0.0",
|
|
44
44
|
"art": "^0.10.0",
|
|
45
45
|
"base64-js": "^1.5.1",
|
|
46
|
-
"deprecated-react-native-prop-types": "
|
|
46
|
+
"deprecated-react-native-prop-types": "^5.0.0",
|
|
47
47
|
"event-target-shim": "^5.0.1",
|
|
48
48
|
"flow-enums-runtime": "^0.0.6",
|
|
49
49
|
"invariant": "^2.2.4",
|
|
50
50
|
"jest-environment-node": "^29.6.3",
|
|
51
51
|
"jsc-android": "^250231.0.0",
|
|
52
52
|
"memoize-one": "^5.0.0",
|
|
53
|
-
"metro-runtime": "0.
|
|
54
|
-
"metro-source-map": "0.
|
|
53
|
+
"metro-runtime": "^0.80.0",
|
|
54
|
+
"metro-source-map": "^0.80.0",
|
|
55
55
|
"mkdirp": "^0.5.1",
|
|
56
56
|
"nullthrows": "^1.1.1",
|
|
57
57
|
"pretty-format": "^26.5.2",
|
|
@@ -85,13 +85,13 @@
|
|
|
85
85
|
"just-scripts": "^1.3.3",
|
|
86
86
|
"prettier": "^2.4.1",
|
|
87
87
|
"react": "18.2.0",
|
|
88
|
-
"react-native": "0.73.0-rc.
|
|
88
|
+
"react-native": "0.73.0-rc.4",
|
|
89
89
|
"react-native-platform-override": "^1.9.16",
|
|
90
90
|
"typescript": "^4.9.5"
|
|
91
91
|
},
|
|
92
92
|
"peerDependencies": {
|
|
93
93
|
"react": "18.2.0",
|
|
94
|
-
"react-native": "^0.73.0-rc.
|
|
94
|
+
"react-native": "^0.73.0-rc.4"
|
|
95
95
|
},
|
|
96
96
|
"beachball": {
|
|
97
97
|
"defaultNpmTag": "preview",
|