react-native-windows 0.68.15 → 0.68.16

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.
@@ -265,9 +265,11 @@ bool ViewManagerBase::UpdateProperty(
265
265
  const auto iter = pointerEventsMap.find(propertyValue.AsString());
266
266
  if (iter != pointerEventsMap.end()) {
267
267
  nodeToUpdate->m_pointerEvents = iter->second;
268
- if (nodeToUpdate->m_pointerEvents == PointerEventsKind::None) {
269
- if (const auto uiElement = nodeToUpdate->GetView().try_as<xaml::UIElement>()) {
268
+ if (const auto uiElement = nodeToUpdate->GetView().try_as<xaml::UIElement>()) {
269
+ if (nodeToUpdate->m_pointerEvents == PointerEventsKind::None) {
270
270
  uiElement.IsHitTestVisible(false);
271
+ } else {
272
+ uiElement.ClearValue(xaml::UIElement::IsHitTestVisibleProperty());
271
273
  }
272
274
  }
273
275
  } else {
@@ -10,10 +10,10 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.68.15</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.68.16</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>68</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>15</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>16</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.68.15",
3
+ "version": "0.68.16",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",