react-native-windows 0.71.27 → 0.71.29

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.
@@ -25,6 +25,13 @@ void ActivityIndicatorViewManager::GetNativeProps(const winrt::Microsoft::ReactN
25
25
  winrt::Microsoft::ReactNative::WriteProperty(writer, L"color", L"Color");
26
26
  }
27
27
 
28
+ ShadowNode *Microsoft::ReactNative::ActivityIndicatorViewManager::createShadow() const {
29
+ ShadowNode *shadowNode = Super::createShadow();
30
+ ShadowNodeBase *shadowNodeBase = static_cast<ShadowNodeBase *>(shadowNode);
31
+ shadowNodeBase->IsFocusable(false);
32
+ return shadowNode;
33
+ }
34
+
28
35
  XamlView ActivityIndicatorViewManager::CreateViewCore(
29
36
  int64_t /*tag*/,
30
37
  const winrt::Microsoft::ReactNative::JSValueObject &) {
@@ -15,6 +15,7 @@ class ActivityIndicatorViewManager : public ControlViewManager {
15
15
 
16
16
  const wchar_t *GetName() const override;
17
17
  void GetNativeProps(const winrt::Microsoft::ReactNative::IJSValueWriter &writer) const override;
18
+ ShadowNode *createShadow() const override;
18
19
 
19
20
  protected:
20
21
  bool UpdateProperty(
@@ -100,6 +100,8 @@ void ScrollViewShadowNode::dispatchCommand(
100
100
  void ScrollViewShadowNode::createView(const winrt::Microsoft::ReactNative::JSValueObject &props) {
101
101
  Super::createView(props);
102
102
 
103
+ IsFocusable(false);
104
+
103
105
  const auto scrollViewer = GetView().as<winrt::ScrollViewer>();
104
106
  const auto scrollViewUWPImplementation = ScrollViewUWPImplementation(scrollViewer);
105
107
  scrollViewUWPImplementation.ScrollViewerSnapPointManager();
@@ -10,11 +10,11 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.71.27</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.71.29</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>71</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>27</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>29</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
- <ReactNativeWindowsCommitId>5cd9b23f58d5b82abb2ab41a35444ede00afd6da</ReactNativeWindowsCommitId>
18
+ <ReactNativeWindowsCommitId>819530506ec8814c704ca77907c632b75fc9d451</ReactNativeWindowsCommitId>
19
19
  </PropertyGroup>
20
20
  </Project>
@@ -570,17 +570,20 @@ std::vector<std::unique_ptr<NativeModule>> InstanceImpl::GetDefaultNativeModules
570
570
  },
571
571
  nativeQueue));
572
572
 
573
- modules.push_back(std::make_unique<CxxNativeModule>(
574
- m_innerInstance,
575
- Microsoft::React::GetBlobModuleName(),
576
- [transitionalProps]() { return Microsoft::React::CreateBlobModule(transitionalProps); },
577
- nativeQueue));
573
+ // Use in case the host app provides its a non-Blob-compatilbe HTTP module.
574
+ if (!Microsoft::React::GetRuntimeOptionBool("Blob.DisableModule")) {
575
+ modules.push_back(std::make_unique<CxxNativeModule>(
576
+ m_innerInstance,
577
+ Microsoft::React::GetBlobModuleName(),
578
+ [transitionalProps]() { return Microsoft::React::CreateBlobModule(transitionalProps); },
579
+ nativeQueue));
578
580
 
579
- modules.push_back(std::make_unique<CxxNativeModule>(
580
- m_innerInstance,
581
- Microsoft::React::GetFileReaderModuleName(),
582
- [transitionalProps]() { return Microsoft::React::CreateFileReaderModule(transitionalProps); },
583
- nativeQueue));
581
+ modules.push_back(std::make_unique<CxxNativeModule>(
582
+ m_innerInstance,
583
+ Microsoft::React::GetFileReaderModuleName(),
584
+ [transitionalProps]() { return Microsoft::React::CreateFileReaderModule(transitionalProps); },
585
+ nativeQueue));
586
+ }
584
587
 
585
588
  modules.push_back(std::make_unique<CxxNativeModule>(
586
589
  m_innerInstance,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.71.27",
3
+ "version": "0.71.29",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",