react-native-windows 0.67.14 → 0.67.15

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
@@ -1,6 +1,36 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
3
  "entries": [
4
+ {
5
+ "date": "Mon, 19 Sep 2022 15:10:38 GMT",
6
+ "tag": "react-native-windows_v0.67.15",
7
+ "version": "0.67.15",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "ericroz@fb.com",
12
+ "package": "react-native-windows",
13
+ "commit": "8f3065a64a4faaf7f4d005d3275db226bbf9089e",
14
+ "comment": "Fixes bug introduced by pointerEvents change"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Mon, 25 Jul 2022 15:13:10 GMT",
21
+ "tag": "react-native-windows_v0.67.14",
22
+ "version": "0.67.14",
23
+ "comments": {
24
+ "patch": [
25
+ {
26
+ "author": "tatianakapos@microsoft.com",
27
+ "package": "react-native-windows",
28
+ "commit": "not available",
29
+ "comment": "Implement no-hide-accessibility"
30
+ }
31
+ ]
32
+ }
33
+ },
4
34
  {
5
35
  "date": "Mon, 25 Jul 2022 15:12:24 GMT",
6
36
  "tag": "react-native-windows_v0.67.14",
package/CHANGELOG.md CHANGED
@@ -1,17 +1,33 @@
1
1
  # Change Log - react-native-windows
2
2
 
3
- This log was last generated on Mon, 25 Jul 2022 15:12:24 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 19 Sep 2022 15:10:38 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.67.14
7
+ ## 0.67.15
8
8
 
9
- Mon, 25 Jul 2022 15:12:24 GMT
9
+ Mon, 19 Sep 2022 15:10:38 GMT
10
10
 
11
11
  ### Patches
12
12
 
13
- - Implement no-hide-accessibility (tatianakapos@microsoft.com)
13
+ - Fixes bug introduced by pointerEvents change (ericroz@fb.com)
14
14
 
15
+ ## 0.67.14
16
+
17
+ Mon, 25 Jul 2022 15:13:10 GMT
18
+
19
+ ### Patches
20
+
21
+ - Implement no-hide-accessibility (tatianakapos@microsoft.com)
22
+
23
+ ## 0.67.14
24
+
25
+ Mon, 25 Jul 2022 15:12:24 GMT
26
+
27
+ ### Patches
28
+
29
+ - Implement no-hide-accessibility (tatianakapos@microsoft.com)
30
+
15
31
  ## 0.67.13
16
32
 
17
33
  Mon, 11 Jul 2022 15:11:12 GMT
@@ -271,9 +271,11 @@ bool ViewManagerBase::UpdateProperty(
271
271
  const auto iter = pointerEventsMap.find(propertyValue.AsString());
272
272
  if (iter != pointerEventsMap.end()) {
273
273
  nodeToUpdate->m_pointerEvents = iter->second;
274
- if (nodeToUpdate->m_pointerEvents == PointerEventsKind::None) {
275
- if (const auto uiElement = nodeToUpdate->GetView().try_as<xaml::UIElement>()) {
274
+ if (const auto uiElement = nodeToUpdate->GetView().try_as<xaml::UIElement>()) {
275
+ if (nodeToUpdate->m_pointerEvents == PointerEventsKind::None) {
276
276
  uiElement.IsHitTestVisible(false);
277
+ } else {
278
+ uiElement.ClearValue(xaml::UIElement::IsHitTestVisibleProperty());
277
279
  }
278
280
  }
279
281
  } else {
@@ -10,10 +10,10 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.67.14</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.67.15</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>67</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>14</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>15</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
18
  </PropertyGroup>
19
19
  </Project>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.67.14",
3
+ "version": "0.67.15",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",