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.
- package/Microsoft.ReactNative/Views/ActivityIndicatorViewManager.cpp +7 -0
- package/Microsoft.ReactNative/Views/ActivityIndicatorViewManager.h +1 -0
- package/Microsoft.ReactNative/Views/ScrollViewManager.cpp +2 -0
- package/PropertySheets/Generated/PackageVersion.g.props +3 -3
- package/Shared/OInstance.cpp +13 -10
- package/package.json +1 -1
|
@@ -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.
|
|
13
|
+
<ReactNativeWindowsVersion>0.71.29</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>71</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>29</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>819530506ec8814c704ca77907c632b75fc9d451</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
package/Shared/OInstance.cpp
CHANGED
|
@@ -570,17 +570,20 @@ std::vector<std::unique_ptr<NativeModule>> InstanceImpl::GetDefaultNativeModules
|
|
|
570
570
|
},
|
|
571
571
|
nativeQueue));
|
|
572
572
|
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
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
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
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,
|