react-native-windows 0.72.25 → 0.72.26

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.
@@ -493,7 +493,7 @@ bool FrameworkElementViewManager::UpdateProperty(
493
493
  states[static_cast<int32_t>(winrt::Microsoft::ReactNative::AccessibilityStates::Expanded)] =
494
494
  !innerValue.IsNull() && innerValue.AsBoolean();
495
495
  states[static_cast<int32_t>(winrt::Microsoft::ReactNative::AccessibilityStates::Collapsed)] =
496
- innerValue.IsNull() || !innerValue.AsBoolean();
496
+ innerValue.IsNull() ? false : !innerValue.AsBoolean();
497
497
 
498
498
  const auto prevExpandedState = DynamicAutomationProperties::GetAccessibilityStateExpanded(element);
499
499
 
@@ -10,11 +10,11 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.72.25</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.72.26</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>72</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>25</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>26</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
- <ReactNativeWindowsCommitId>21a119eff71ffc407a118a2f68ed1c7696843328</ReactNativeWindowsCommitId>
18
+ <ReactNativeWindowsCommitId>cdd8a1b06b10e48fdc6ca5a27699c802c12f031b</ReactNativeWindowsCommitId>
19
19
  </PropertyGroup>
20
20
  </Project>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.72.25",
3
+ "version": "0.72.26",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",