@office-iss/react-native-win32 0.73.5 → 0.73.6

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
@@ -2,7 +2,28 @@
2
2
  "name": "@office-iss/react-native-win32",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 15 May 2024 20:50:42 GMT",
5
+ "date": "Thu, 23 May 2024 15:39:24 GMT",
6
+ "version": "0.73.6",
7
+ "tag": "@office-iss/react-native-win32_v0.73.6",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "30809111+acoates-ms@users.noreply.github.com",
12
+ "package": "@office-iss/react-native-win32",
13
+ "commit": "0e1b8e1d5fec5a25b43234733ebcf621bde8c04e",
14
+ "comment": "Fix for PaperUIManger"
15
+ },
16
+ {
17
+ "author": "email not defined",
18
+ "package": "@office-iss/react-native-win32",
19
+ "commit": "4c08164bf076cae9c341b048fa4bad145a63be08",
20
+ "comment": "integrate 73.8"
21
+ }
22
+ ]
23
+ }
24
+ },
25
+ {
26
+ "date": "Wed, 15 May 2024 20:50:52 GMT",
6
27
  "version": "0.73.5",
7
28
  "tag": "@office-iss/react-native-win32_v0.73.5",
8
29
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,17 +1,26 @@
1
1
  # Change Log - @office-iss/react-native-win32
2
2
 
3
- This log was last generated on Wed, 15 May 2024 20:50:42 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 23 May 2024 15:39:24 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.73.5
7
+ ## 0.73.6
8
8
 
9
- Wed, 15 May 2024 20:50:42 GMT
9
+ Thu, 23 May 2024 15:39:24 GMT
10
10
 
11
11
  ### Patches
12
12
 
13
- - add support for announceForAccessibilityWithOptions (krsiler@microsoft.com)
13
+ - Fix for PaperUIManger (30809111+acoates-ms@users.noreply.github.com)
14
+ - integrate 73.8 (email not defined)
14
15
 
16
+ ## 0.73.5
17
+
18
+ Wed, 15 May 2024 20:50:52 GMT
19
+
20
+ ### Patches
21
+
22
+ - add support for announceForAccessibilityWithOptions (krsiler@microsoft.com)
23
+
15
24
  ## 0.73.4
16
25
 
17
26
  Mon, 06 May 2024 15:14:45 GMT
@@ -12,6 +12,6 @@
12
12
  exports.version = {
13
13
  major: 0,
14
14
  minor: 73,
15
- patch: 6,
15
+ patch: 8,
16
16
  prerelease: null,
17
17
  };
@@ -86,6 +86,10 @@ for (const propName of Object.getOwnPropertyNames(
86
86
  // $FlowFixMe
87
87
  UIManagerJS[propName] = NativeUIManager[propName];
88
88
  }
89
+ for (const propName of Object.getOwnPropertyNames(NativeUIManager)) {
90
+ // $FlowFixMe
91
+ UIManagerJS[propName] = NativeUIManager[propName];
92
+ }
89
93
  // Windows]
90
94
 
91
95
  /* $FlowFixMe(>=0.123.0 site=react_native_fb) This comment suppresses an error
package/overrides.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "**/__snapshots__/**",
8
8
  "src/rntypes/**"
9
9
  ],
10
- "baseVersion": "0.73.6",
10
+ "baseVersion": "0.73.8",
11
11
  "overrides": [
12
12
  {
13
13
  "type": "derived",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@office-iss/react-native-win32",
3
- "version": "0.73.5",
3
+ "version": "0.73.6",
4
4
  "description": "Implementation of react native on top of Office's Win32 platform.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -85,7 +85,7 @@
85
85
  "just-scripts": "^1.3.3",
86
86
  "prettier": "^2.4.1",
87
87
  "react": "18.2.0",
88
- "react-native": "0.73.6",
88
+ "react-native": "0.73.8",
89
89
  "react-native-platform-override": "^1.9.16",
90
90
  "typescript": "^4.9.5"
91
91
  },