react-native-windows 0.73.20 → 0.73.21

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.
@@ -356,6 +356,21 @@ struct MethodSignatureMatchResult {
356
356
  bool IsSucceeded;
357
357
  };
358
358
 
359
+ template <class TInputArg, class TOtherInputArg>
360
+ constexpr bool MatchInputArg() noexcept {
361
+ return std::is_same_v<TInputArg, TOtherInputArg>;
362
+ }
363
+
364
+ template <>
365
+ constexpr bool MatchInputArg<std::wstring, std::string>() noexcept {
366
+ return true;
367
+ }
368
+
369
+ template <>
370
+ constexpr bool MatchInputArg<std::string, std::wstring>() noexcept {
371
+ return true;
372
+ }
373
+
359
374
  template <class TResult, class TInputArgs, class TOutputCallbacks, class TOutputPromises>
360
375
  struct MethodSignature {
361
376
  using Result = TResult;
@@ -375,21 +390,6 @@ struct MethodSignature {
375
390
  }
376
391
  }
377
392
 
378
- template <class TInputArg, class TOtherInputArg>
379
- static constexpr bool MatchInputArg() noexcept {
380
- return std::is_same_v<TInputArg, TOtherInputArg>;
381
- }
382
-
383
- template <>
384
- static constexpr bool MatchInputArg<std::wstring, std::string>() noexcept {
385
- return true;
386
- }
387
-
388
- template <>
389
- static constexpr bool MatchInputArg<std::string, std::wstring>() noexcept {
390
- return true;
391
- }
392
-
393
393
  template <class TOtherInputArgs, size_t... I>
394
394
  static constexpr bool MatchInputArgs(std::index_sequence<I...>) noexcept {
395
395
  return (MatchInputArg<std::tuple_element_t<I, InputArgs>, std::tuple_element_t<I, TOtherInputArgs>>() && ...);
@@ -10,11 +10,11 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.73.20</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.73.21</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>73</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>20</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>21</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
- <ReactNativeWindowsCommitId>d0adfc66ff62628fb1dcb0d10d49d1bc4112485d</ReactNativeWindowsCommitId>
18
+ <ReactNativeWindowsCommitId>38be74aa26770ed745fbbae5a999c6a1fea34ef1</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.73.20",
3
+ "version": "0.73.21",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",