@office-iss/react-native-win32 0.71.4 → 0.71.5
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 +13 -5
- package/Libraries/Components/View/ViewWin32.js +3 -3
- 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": "Thu,
|
|
5
|
+
"date": "Thu, 27 Apr 2023 19:11:40 GMT",
|
|
6
|
+
"tag": "@office-iss/react-native-win32_v0.71.5",
|
|
7
|
+
"version": "0.71.5",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "30809111+acoates-ms@users.noreply.github.com",
|
|
12
|
+
"package": "@office-iss/react-native-win32",
|
|
13
|
+
"commit": "e748385ceaa8d5c642fbf3cc6b008a53c088ba55",
|
|
14
|
+
"comment": "Fix ref's on ViewWin32 (enables ViewWin32.focus() calls to work again)"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Thu, 13 Apr 2023 20:50:33 GMT",
|
|
6
21
|
"tag": "@office-iss/react-native-win32_v0.71.4",
|
|
7
22
|
"version": "0.71.4",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,26 @@
|
|
|
1
1
|
# Change Log - @office-iss/react-native-win32
|
|
2
2
|
|
|
3
|
-
This log was last generated on Thu,
|
|
3
|
+
This log was last generated on Thu, 27 Apr 2023 19:11:40 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.71.
|
|
7
|
+
## 0.71.5
|
|
8
8
|
|
|
9
|
-
Thu,
|
|
9
|
+
Thu, 27 Apr 2023 19:11:40 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
14
|
-
- Sync dependencies with react-native 0.71.6 (4123478+tido64@users.noreply.github.com)
|
|
13
|
+
- Fix ref's on ViewWin32 (enables ViewWin32.focus() calls to work again) (30809111+acoates-ms@users.noreply.github.com)
|
|
15
14
|
|
|
15
|
+
## 0.71.4
|
|
16
|
+
|
|
17
|
+
Thu, 13 Apr 2023 20:50:33 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Update TextInput.win32 to align with core (30809111+acoates-ms@users.noreply.github.com)
|
|
22
|
+
- Sync dependencies with react-native 0.71.6 (4123478+tido64@users.noreply.github.com)
|
|
23
|
+
|
|
16
24
|
## 0.71.3
|
|
17
25
|
|
|
18
26
|
Tue, 21 Mar 2023 20:58:57 GMT
|
|
@@ -14,8 +14,8 @@ import type {ViewProps} from './ViewPropTypes';
|
|
|
14
14
|
import View from './View';
|
|
15
15
|
import {findNodeHandle} from '../../ReactNative/RendererProxy';
|
|
16
16
|
import UIManager from '../../ReactNative/UIManager';
|
|
17
|
-
import useMergeRefs from '../../Utilities/useMergeRefs';
|
|
18
17
|
import warnOnce from '../../Utilities/warnOnce';
|
|
18
|
+
import setAndForwardRef from '../../Utilities/setAndForwardRef';
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* Basic View component with additional Win32 specific functionality
|
|
@@ -126,9 +126,9 @@ const ViewWin32: React.AbstractComponent<
|
|
|
126
126
|
);
|
|
127
127
|
|
|
128
128
|
// $FlowFixMe
|
|
129
|
-
const setNativeRef =
|
|
129
|
+
const setNativeRef = setAndForwardRef<typeof View | null>({
|
|
130
|
+
getForwardedRef: () => forwardedRef,
|
|
130
131
|
setLocalRef,
|
|
131
|
-
forwardedRef,
|
|
132
132
|
});
|
|
133
133
|
|
|
134
134
|
return (
|