react-native-windows 0.71.12 → 0.71.13
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.
|
@@ -85,8 +85,8 @@
|
|
|
85
85
|
},
|
|
86
86
|
"ReactNative.Hermes.Windows": {
|
|
87
87
|
"type": "Transitive",
|
|
88
|
-
"resolved": "0.
|
|
89
|
-
"contentHash": "
|
|
88
|
+
"resolved": "0.71.1",
|
|
89
|
+
"contentHash": "q38h/Gkw8d0pfUqIhRCd1j/XLhpQY4Hm7kSQthZUzetEST34acbR883/Eh+DKt4FVz9a0lh5kiAfP7piO768SA=="
|
|
90
90
|
},
|
|
91
91
|
"runtime.win10-arm.Microsoft.Net.Native.Compiler": {
|
|
92
92
|
"type": "Transitive",
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
"Microsoft.UI.Xaml": "[2.7.0, )",
|
|
177
177
|
"Microsoft.Windows.SDK.BuildTools": "[10.0.22000.194, )",
|
|
178
178
|
"ReactCommon": "[1.0.0, )",
|
|
179
|
-
"ReactNative.Hermes.Windows": "[0.
|
|
179
|
+
"ReactNative.Hermes.Windows": "[0.71.1, )",
|
|
180
180
|
"boost": "[1.76.0, )"
|
|
181
181
|
}
|
|
182
182
|
},
|
|
@@ -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.13</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>71</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>13</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>f54d249fcac7999eefbc155fa2f23b1b33619e8b</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
package/ReactCommon/Yoga.cpp
CHANGED
|
@@ -2540,6 +2540,11 @@ static void YGJustifyMainAxis(
|
|
|
2540
2540
|
const YGNodeRef child = node->getChild(i);
|
|
2541
2541
|
const YGStyle &childStyle = child->getStyle();
|
|
2542
2542
|
const YGLayout childLayout = child->getLayout();
|
|
2543
|
+
const bool isLastChild = i == collectedFlexItemsValues.endOfLineIndex - 1;
|
|
2544
|
+
// remove the gap if it is the last element of the line
|
|
2545
|
+
if (isLastChild) {
|
|
2546
|
+
betweenMainDim -= gap;
|
|
2547
|
+
}
|
|
2543
2548
|
if (childStyle.display() == YGDisplayNone) {
|
|
2544
2549
|
continue;
|
|
2545
2550
|
}
|