react-native-windows 0.75.6 → 0.75.8

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.
@@ -55,21 +55,21 @@ const EventNames: Map<
55
55
  ['accessibilityServiceChanged', 'accessibilityServiceDidChange'],
56
56
  ])
57
57
  : Platform.OS === 'windows'
58
- ? new Map([
59
- ['change', 'TOUCH_EXPLORATION_EVENT'],
60
- ['reduceMotionChanged', 'REDUCE_MOTION_EVENT'],
61
- ['screenReaderChanged', 'TOUCH_EXPLORATION_EVENT'],
62
- ])
63
- : new Map([
64
- ['announcementFinished', 'announcementFinished'],
65
- ['boldTextChanged', 'boldTextChanged'],
66
- ['change', 'screenReaderChanged'],
67
- ['grayscaleChanged', 'grayscaleChanged'],
68
- ['invertColorsChanged', 'invertColorsChanged'],
69
- ['reduceMotionChanged', 'reduceMotionChanged'],
70
- ['reduceTransparencyChanged', 'reduceTransparencyChanged'],
71
- ['screenReaderChanged', 'screenReaderChanged'],
72
- ]);
58
+ ? new Map([
59
+ ['change', 'TOUCH_EXPLORATION_EVENT'],
60
+ ['reduceMotionChanged', 'REDUCE_MOTION_EVENT'],
61
+ ['screenReaderChanged', 'TOUCH_EXPLORATION_EVENT'],
62
+ ])
63
+ : new Map([
64
+ ['announcementFinished', 'announcementFinished'],
65
+ ['boldTextChanged', 'boldTextChanged'],
66
+ ['change', 'screenReaderChanged'],
67
+ ['grayscaleChanged', 'grayscaleChanged'],
68
+ ['invertColorsChanged', 'invertColorsChanged'],
69
+ ['reduceMotionChanged', 'reduceMotionChanged'],
70
+ ['reduceTransparencyChanged', 'reduceTransparencyChanged'],
71
+ ['screenReaderChanged', 'screenReaderChanged'],
72
+ ]);
73
73
 
74
74
  /**
75
75
  * Sometimes it's useful to know whether or not the device has a screen reader
@@ -407,10 +407,10 @@ const Button: React.AbstractComponent<
407
407
  color
408
408
  ? {borderRadius: 3}
409
409
  : pressed
410
- ? [buttonStyles, styles.buttonPressed]
411
- : hover
412
- ? [buttonStyles, styles.buttonHover]
413
- : buttonStyles
410
+ ? [buttonStyles, styles.buttonPressed]
411
+ : hover
412
+ ? [buttonStyles, styles.buttonHover]
413
+ : buttonStyles
414
414
  }
415
415
  onMouseEnter={() => {
416
416
  if (!disabled) setHover(true);
@@ -445,20 +445,20 @@ const Button: React.AbstractComponent<
445
445
  color
446
446
  ? textStyles
447
447
  : pressed
448
- ? [
449
- textStyles,
450
- {
451
- color: PlatformColor('ButtonForegroundPressed'),
452
- },
453
- ]
454
- : hover
455
- ? [
456
- textStyles,
457
- {
458
- color: PlatformColor('ButtonForegroundPointerOver'),
459
- },
460
- ]
461
- : textStyles
448
+ ? [
449
+ textStyles,
450
+ {
451
+ color: PlatformColor('ButtonForegroundPressed'),
452
+ },
453
+ ]
454
+ : hover
455
+ ? [
456
+ textStyles,
457
+ {
458
+ color: PlatformColor('ButtonForegroundPointerOver'),
459
+ },
460
+ ]
461
+ : textStyles
462
462
  }
463
463
  disabled={disabled}>
464
464
  {formattedTitle}
@@ -7,7 +7,11 @@
7
7
 
8
8
  import type {ViewProps} from 'react-native/Libraries/Components/View/ViewPropTypes';
9
9
  import type {HostComponent} from 'react-native/Libraries/Renderer/shims/ReactNativeTypes';
10
- import type {DirectEventHandler, Double, Int32} from 'react-native/Libraries/Types/CodegenTypes';
10
+ import type {
11
+ DirectEventHandler,
12
+ Double,
13
+ Int32,
14
+ } from 'react-native/Libraries/Types/CodegenTypes';
11
15
 
12
16
  import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
13
17
 
@@ -1207,8 +1207,8 @@ function InternalTextInput(props: Props): React.Node {
1207
1207
  typeof props.value === 'string'
1208
1208
  ? props.value
1209
1209
  : typeof props.defaultValue === 'string'
1210
- ? props.defaultValue
1211
- : '';
1210
+ ? props.defaultValue
1211
+ : '';
1212
1212
 
1213
1213
  // This is necessary in case native updates the text and JS decides
1214
1214
  // that the update should be ignored and we should stick with the value
@@ -1313,8 +1313,12 @@ function InternalTextInput(props: Props): React.Node {
1313
1313
  }
1314
1314
  },
1315
1315
  isFocused(): boolean {
1316
- const currentlyFocusedInput = TextInputState.currentlyFocusedInput();
1317
- return currentlyFocusedInput !== null && currentlyFocusedInput === inputRef.current;
1316
+ const currentlyFocusedInput =
1317
+ TextInputState.currentlyFocusedInput();
1318
+ return (
1319
+ currentlyFocusedInput !== null &&
1320
+ currentlyFocusedInput === inputRef.current
1321
+ );
1318
1322
  },
1319
1323
  getNativeRef(): ?React.ElementRef<HostComponent<mixed>> {
1320
1324
  return inputRef.current;
@@ -1872,12 +1876,12 @@ const ExportedForwardRef: React.AbstractComponent<
1872
1876
  textContentType != null
1873
1877
  ? textContentType
1874
1878
  : Platform.OS === 'ios' &&
1875
- autoComplete &&
1876
- autoComplete in autoCompleteWebToTextContentTypeMap
1877
- ? // $FlowFixMe[invalid-computed-prop]
1878
- // $FlowFixMe[prop-missing]
1879
- autoCompleteWebToTextContentTypeMap[autoComplete]
1880
- : textContentType
1879
+ autoComplete &&
1880
+ autoComplete in autoCompleteWebToTextContentTypeMap
1881
+ ? // $FlowFixMe[invalid-computed-prop]
1882
+ // $FlowFixMe[prop-missing]
1883
+ autoCompleteWebToTextContentTypeMap[autoComplete]
1884
+ : textContentType
1881
1885
  }
1882
1886
  {...restProps}
1883
1887
  forwardedRef={forwardedRef}
@@ -45,8 +45,8 @@ const extractSingleTouch = (nativeEvent: {
45
45
  return !hasTouches && hasChangedTouches
46
46
  ? changedTouches[0]
47
47
  : hasTouches
48
- ? touches[0]
49
- : nativeEvent;
48
+ ? touches[0]
49
+ : nativeEvent;
50
50
  };
51
51
 
52
52
  /**
@@ -131,7 +131,10 @@ const PASSTHROUGH_PROPS = [
131
131
  const TouchableWithoutFeedback: React.AbstractComponent<
132
132
  Props,
133
133
  React.ElementRef<typeof Animated.View>,
134
- > = React.forwardRef(function TouchableWithoutFeedback(props: Props, ref): React.Node {
134
+ > = React.forwardRef(function TouchableWithoutFeedback(
135
+ props: Props,
136
+ ref,
137
+ ): React.Node {
135
138
  const {
136
139
  disabled,
137
140
  rejectResponderTermination,
@@ -153,7 +156,6 @@ const TouchableWithoutFeedback: React.AbstractComponent<
153
156
  onMouseLeave, // [Windows]
154
157
  } = props;
155
158
 
156
-
157
159
  const pressabilityConfig = useMemo(
158
160
  () => ({
159
161
  cancelable: !rejectResponderTermination,
@@ -262,4 +264,4 @@ const TouchableWithoutFeedback: React.AbstractComponent<
262
264
  return React.cloneElement(element, {...elementProps, ref}, ...children);
263
265
  });
264
266
 
265
- module.exports = TouchableWithoutFeedback;
267
+ module.exports = TouchableWithoutFeedback;
@@ -294,7 +294,7 @@ const Text: React.AbstractComponent<
294
294
  style={processedStyle}
295
295
  />
296
296
  );
297
- // [Windows] Following else statement forked due to PR #5740
297
+ // [Windows] Following else statement forked due to PR #5740
298
298
  } else {
299
299
  let styleProps: ViewStyleProp = (style: any);
300
300
  if (
@@ -441,4 +441,4 @@ const verticalAlignToTextAlignVerticalMap = {
441
441
  middle: 'center',
442
442
  };
443
443
 
444
- module.exports = Text;
444
+ module.exports = Text;
@@ -70,10 +70,10 @@ const Platform: PlatformType = {
70
70
  ? // $FlowFixMe[incompatible-return]
71
71
  spec.windows
72
72
  : 'native' in spec
73
- ? // $FlowFixMe[incompatible-return]
74
- spec.native
75
- : // $FlowFixMe[incompatible-return]
76
- spec.default,
73
+ ? // $FlowFixMe[incompatible-return]
74
+ spec.native
75
+ : // $FlowFixMe[incompatible-return]
76
+ spec.default,
77
77
  };
78
78
 
79
79
  module.exports = Platform;
@@ -1,19 +1,18 @@
1
-
2
1
  {
3
2
  "version": 1,
4
3
  "dependencies": {
5
4
  "native,Version=v0.0": {
6
5
  "boost": {
7
6
  "type": "Direct",
8
- "requested": "[1.76.0, )",
9
- "resolved": "1.76.0",
10
- "contentHash": "p+w3YvNdXL8Cu9Fzrmexssu0tZbWxuf6ywsQqHjDlKFE5ojXHof1HIyMC3zDLfLnh80dIeFcEUAuR2Asg/XHRA=="
7
+ "requested": "[1.83.0, )",
8
+ "resolved": "1.83.0",
9
+ "contentHash": "cy53VNMzysEMvhBixDe8ujPk67Fcj3v6FPHQnH91NYJNLHpc6jxa2xq9ruCaaJjE4M3YrGSHDi4uUSTGBWw6EQ=="
11
10
  },
12
11
  "Microsoft.JavaScript.Hermes": {
13
12
  "type": "Direct",
14
- "requested": "[0.1.21, )",
15
- "resolved": "0.1.21",
16
- "contentHash": "5njCh+3eXTLOv7+8nOnp6nJ5C0r6it5ze54c0nuWleeDptuK8t3dEDB79XTU4D5DKNvAPlqJpgXRDOak5nYIug=="
13
+ "requested": "[0.1.23, )",
14
+ "resolved": "0.1.23",
15
+ "contentHash": "cA9t1GjY4Yo0JD1AfA//e1lOwk48hLANfuX6GXrikmEBNZVr2TIX5ONJt5tqCnpZyLz6xGiPDgTfFNKbSfb21g=="
17
16
  },
18
17
  "Microsoft.SourceLink.GitHub": {
19
18
  "type": "Direct",
@@ -40,24 +39,25 @@
40
39
  "resolved": "2.0.230706.1",
41
40
  "contentHash": "l0D7oCw/5X+xIKHqZTi62TtV+1qeSz7KVluNFdrJ9hXsst4ghvqQ/Yhura7JqRdZWBXAuDS0G0KwALptdoxweQ=="
42
41
  },
43
- "Microsoft.WindowsAppSDK": {
44
- "type": "Direct",
45
- "requested": "[1.5.240227000, )",
46
- "resolved": "1.5.240227000",
47
- "contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
48
- "dependencies": {
49
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
50
- }
42
+ "Microsoft.Build.Tasks.Git": {
43
+ "type": "Transitive",
44
+ "resolved": "1.1.1",
45
+ "contentHash": "AT3HlgTjsqHnWpBHSNeR0KxbLZD7bztlZVj7I8vgeYG9SYqbeFGh0TM/KVtC6fg53nrWHl3VfZFvb5BiQFcY6Q=="
51
46
  },
52
- "Microsoft.Windows.SDK.BuildTools": {
47
+ "Microsoft.SourceLink.Common": {
53
48
  "type": "Transitive",
54
- "resolved": "10.0.22621.756",
55
- "contentHash": "7ZL2sFSioYm1Ry067Kw1hg0SCcW5kuVezC2SwjGbcPE61Nn+gTbH86T73G3LcEOVj0S3IZzNuE/29gZvOLS7VA=="
49
+ "resolved": "1.1.1",
50
+ "contentHash": "WMcGpWKrmJmzrNeuaEb23bEMnbtR/vLmvZtkAP5qWu7vQsY59GqfRJd65sFpBszbd2k/bQ8cs8eWawQKAabkVg=="
51
+ },
52
+ "Microsoft.Web.WebView2": {
53
+ "type": "Transitive",
54
+ "resolved": "1.0.1264.42",
55
+ "contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
56
56
  },
57
57
  "common": {
58
58
  "type": "Project",
59
59
  "dependencies": {
60
- "boost": "[1.76.0, )"
60
+ "boost": "[1.83.0, )"
61
61
  }
62
62
  },
63
63
  "fmt": {
@@ -66,94 +66,66 @@
66
66
  "folly": {
67
67
  "type": "Project",
68
68
  "dependencies": {
69
- "Fmt": "[1.0.0, )",
70
- "boost": "[1.76.0, )"
69
+ "boost": "[1.83.0, )",
70
+ "fmt": "[1.0.0, )"
71
71
  }
72
72
  },
73
73
  "reactcommon": {
74
74
  "type": "Project",
75
75
  "dependencies": {
76
76
  "Folly": "[1.0.0, )",
77
- "boost": "[1.76.0, )"
77
+ "boost": "[1.83.0, )"
78
78
  }
79
79
  }
80
80
  },
81
81
  "native,Version=v0.0/win10-arm": {
82
- "Microsoft.WindowsAppSDK": {
83
- "type": "Direct",
84
- "requested": "[1.5.240227000, )",
85
- "resolved": "1.5.240227000",
86
- "contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
87
- "dependencies": {
88
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
89
- }
82
+ "Microsoft.Web.WebView2": {
83
+ "type": "Transitive",
84
+ "resolved": "1.0.1264.42",
85
+ "contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
90
86
  }
91
87
  },
92
88
  "native,Version=v0.0/win10-arm-aot": {
93
- "Microsoft.WindowsAppSDK": {
94
- "type": "Direct",
95
- "requested": "[1.5.240227000, )",
96
- "resolved": "1.5.240227000",
97
- "contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
98
- "dependencies": {
99
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
100
- }
89
+ "Microsoft.Web.WebView2": {
90
+ "type": "Transitive",
91
+ "resolved": "1.0.1264.42",
92
+ "contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
101
93
  }
102
94
  },
103
95
  "native,Version=v0.0/win10-arm64-aot": {
104
- "Microsoft.WindowsAppSDK": {
105
- "type": "Direct",
106
- "requested": "[1.5.240227000, )",
107
- "resolved": "1.5.240227000",
108
- "contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
109
- "dependencies": {
110
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
111
- }
96
+ "Microsoft.Web.WebView2": {
97
+ "type": "Transitive",
98
+ "resolved": "1.0.1264.42",
99
+ "contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
112
100
  }
113
101
  },
114
102
  "native,Version=v0.0/win10-x64": {
115
- "Microsoft.WindowsAppSDK": {
116
- "type": "Direct",
117
- "requested": "[1.5.240227000, )",
118
- "resolved": "1.5.240227000",
119
- "contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
120
- "dependencies": {
121
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
122
- }
103
+ "Microsoft.Web.WebView2": {
104
+ "type": "Transitive",
105
+ "resolved": "1.0.1264.42",
106
+ "contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
123
107
  }
124
108
  },
125
109
  "native,Version=v0.0/win10-x64-aot": {
126
- "Microsoft.WindowsAppSDK": {
127
- "type": "Direct",
128
- "requested": "[1.5.240227000, )",
129
- "resolved": "1.5.240227000",
130
- "contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
131
- "dependencies": {
132
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
133
- }
110
+ "Microsoft.Web.WebView2": {
111
+ "type": "Transitive",
112
+ "resolved": "1.0.1264.42",
113
+ "contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
134
114
  }
135
115
  },
136
116
  "native,Version=v0.0/win10-x86": {
137
- "Microsoft.WindowsAppSDK": {
138
- "type": "Direct",
139
- "requested": "[1.5.240227000, )",
140
- "resolved": "1.5.240227000",
141
- "contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
142
- "dependencies": {
143
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
144
- }
117
+ "Microsoft.Web.WebView2": {
118
+ "type": "Transitive",
119
+ "resolved": "1.0.1264.42",
120
+ "contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
145
121
  }
146
122
  },
147
123
  "native,Version=v0.0/win10-x86-aot": {
148
- "Microsoft.WindowsAppSDK": {
149
- "type": "Direct",
150
- "requested": "[1.5.240227000, )",
151
- "resolved": "1.5.240227000",
152
- "contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
153
- "dependencies": {
154
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
155
- }
124
+ "Microsoft.Web.WebView2": {
125
+ "type": "Transitive",
126
+ "resolved": "1.0.1264.42",
127
+ "contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
156
128
  }
157
129
  }
158
130
  }
159
- }
131
+ }
@@ -4,13 +4,13 @@
4
4
  "UAP,Version=v10.0.17763": {
5
5
  "Microsoft.NETCore.UniversalWindowsPlatform": {
6
6
  "type": "Direct",
7
- "requested": "[6.2.9, )",
8
- "resolved": "6.2.9",
9
- "contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
7
+ "requested": "[6.2.14, )",
8
+ "resolved": "6.2.14",
9
+ "contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
10
10
  "dependencies": {
11
11
  "Microsoft.NETCore.Platforms": "2.1.0",
12
- "Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
13
- "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
12
+ "Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
13
+ "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
14
14
  "NETStandard.Library": "2.0.3"
15
15
  }
16
16
  },
@@ -26,8 +26,8 @@
26
26
  },
27
27
  "boost": {
28
28
  "type": "Transitive",
29
- "resolved": "1.76.0",
30
- "contentHash": "p+w3YvNdXL8Cu9Fzrmexssu0tZbWxuf6ywsQqHjDlKFE5ojXHof1HIyMC3zDLfLnh80dIeFcEUAuR2Asg/XHRA=="
29
+ "resolved": "1.83.0",
30
+ "contentHash": "cy53VNMzysEMvhBixDe8ujPk67Fcj3v6FPHQnH91NYJNLHpc6jxa2xq9ruCaaJjE4M3YrGSHDi4uUSTGBWw6EQ=="
31
31
  },
32
32
  "Microsoft.Build.Tasks.Git": {
33
33
  "type": "Transitive",
@@ -36,28 +36,28 @@
36
36
  },
37
37
  "Microsoft.JavaScript.Hermes": {
38
38
  "type": "Transitive",
39
- "resolved": "0.1.21",
40
- "contentHash": "5njCh+3eXTLOv7+8nOnp6nJ5C0r6it5ze54c0nuWleeDptuK8t3dEDB79XTU4D5DKNvAPlqJpgXRDOak5nYIug=="
39
+ "resolved": "0.1.23",
40
+ "contentHash": "cA9t1GjY4Yo0JD1AfA//e1lOwk48hLANfuX6GXrikmEBNZVr2TIX5ONJt5tqCnpZyLz6xGiPDgTfFNKbSfb21g=="
41
41
  },
42
42
  "Microsoft.Net.Native.Compiler": {
43
43
  "type": "Transitive",
44
- "resolved": "2.2.7-rel-27913-00",
45
- "contentHash": "EtGDVRBaNWEqQDJTfkeHOLiiKUOzlr4UVK2KciIt3zYOZeLEnhsshTR6D+1ADetJRKluYR7s0HruAtw1kbc0Xg==",
44
+ "resolved": "2.2.12-rel-31116-00",
45
+ "contentHash": "DuANSYEBO7qcIeqzI1mShJMweuQVBycbCRUW6mIb1QxorSiWLSWEJZNv/X7TdW3dcjfZdZFVsEWDCnJUolIPrQ==",
46
46
  "dependencies": {
47
- "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
48
- "runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
49
- "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
50
- "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00"
47
+ "runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
48
+ "runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
49
+ "runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
50
+ "runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00"
51
51
  }
52
52
  },
53
53
  "Microsoft.Net.UWPCoreRuntimeSdk": {
54
54
  "type": "Transitive",
55
- "resolved": "2.2.9",
56
- "contentHash": "4N6mDdolISwxqM9yT0qptgCoxq+C4Z8CdQD/dpp0bb5egIda5LZ36Pg3nGKmBtU28PVYEljGsUCjRcWYBBXh2Q==",
55
+ "resolved": "2.2.14",
56
+ "contentHash": "THMsLyB29wqd9ZI9c05hoMb788QQ5ClsXwLjpt7omTk/OvtUERWgwD6q85s5aSMdze50uhPZDRF/+uju8Lqhgw==",
57
57
  "dependencies": {
58
- "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
59
- "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
60
- "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9"
58
+ "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
59
+ "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
60
+ "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14"
61
61
  }
62
62
  },
63
63
  "Microsoft.NETCore.Platforms": {
@@ -93,75 +93,75 @@
93
93
  },
94
94
  "runtime.win10-arm.Microsoft.Net.Native.Compiler": {
95
95
  "type": "Transitive",
96
- "resolved": "2.2.7-rel-27913-00",
97
- "contentHash": "7MmoGge/BtJAHCnnV1LqjT2Yvnxlsm/8+4C2ASK819zq+pGSloeNwJtVxyM3okA9T4/1jKr+JpQsfis4F/KSKg==",
96
+ "resolved": "2.2.12-rel-31116-00",
97
+ "contentHash": "JAieAWjpAsAKq2OLgJpKHafrk1gxHTq0nSie1sEKAYjnlBhVIx17ypAX1NLhjMJZ3TkqhktOGm/2r0qTXBAqWg==",
98
98
  "dependencies": {
99
- "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.7-rel-27913-00"
99
+ "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-31116-00"
100
100
  }
101
101
  },
102
102
  "runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": {
103
103
  "type": "Transitive",
104
- "resolved": "2.2.7-rel-27913-00",
105
- "contentHash": "ifk8FQ8srunhdyo0QQe8H+36as9/wiQKXq1aXJ+6YeGyx0UjrTSyNx/zq6eThJfjRz9VyoomR+LZVhuXK+QKYw=="
104
+ "resolved": "2.2.8-rel-31116-00",
105
+ "contentHash": "bdNrkqMK7TUyqJjMJj9sXFpTtJg5+cKmGTPERymWldQ7/OxzoA1VGV4nFFRS4ciycxIqoA9amP0sr5SdTaSjDg=="
106
106
  },
107
107
  "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": {
108
108
  "type": "Transitive",
109
- "resolved": "2.2.9",
110
- "contentHash": "viBS+DhSzl2JZYC/88uhlWi4DutSIFy32ocoRsdi5RsPLG50XTqq6w0traHQuuqLLJ4gwswlNXO9AD4J0+zvIQ=="
109
+ "resolved": "2.2.14",
110
+ "contentHash": "eEtdvL57LKF3/AKuSqk9bJeUaPm0rPMCs36halkQwyTsaykEwzaV634jxpsg9Oneru4DvFW1vlRISdiW2929jA=="
111
111
  },
112
112
  "runtime.win10-arm64.Microsoft.Net.Native.Compiler": {
113
113
  "type": "Transitive",
114
- "resolved": "2.2.7-rel-27913-00",
115
- "contentHash": "5Pt/M1mMmvYQUGWEn33V9SnZtTDUeLvfKPsd71GwedZOh7MDSRuLZqSPG7P3ElOforh4nXlG6x8lcaE9Kauebg==",
114
+ "resolved": "2.2.12-rel-31116-00",
115
+ "contentHash": "Rs9fywhVdnJTqegZnSXJ2v0w7oX3xyZ5P1+v9wNlm7mkSb+dEcxgXwrkqTJe9shmLUOOFz8Dm37LbtIPHNzR1A==",
116
116
  "dependencies": {
117
- "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.7-rel-27913-00"
117
+ "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-31116-00"
118
118
  }
119
119
  },
120
120
  "runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": {
121
121
  "type": "Transitive",
122
- "resolved": "2.2.7-rel-27913-00",
123
- "contentHash": "Bl0tXHiEko11FYLmumjPRQQl/w3wlGEXvYDpdvWSuC9Ty4YCGNHOUXzPaTMP2dv2GikTv8RYy4m1m5lbUNDa3g=="
122
+ "resolved": "2.2.8-rel-31116-00",
123
+ "contentHash": "mNZPhhxOKUQSgYuBDezHPYFMwP9LYDmVEEHl7bTVAPbfcnxPHdSv6WwJglYlwQRQh+3NSgYRW4WcTxpETkD0AA=="
124
124
  },
125
125
  "runtime.win10-x64.Microsoft.Net.Native.Compiler": {
126
126
  "type": "Transitive",
127
- "resolved": "2.2.7-rel-27913-00",
128
- "contentHash": "aF94Kjb29+SkvySs07Ztq0cVZObv4Totcek8vCL+Xn1D6GN34PrKR2P+A17yAEbey3q4K3U8XZDybsJwoSbWFA==",
127
+ "resolved": "2.2.12-rel-31116-00",
128
+ "contentHash": "dAJj40m9Tm6AQ/P7iQxuEN8sVvj6v9TDyulcP7ayvp+FkpR8VyGZWJMSxaMEjr1qVeMRuMCv1JV5DLMCWZvisg==",
129
129
  "dependencies": {
130
- "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.7-rel-27913-00"
130
+ "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-31116-00"
131
131
  }
132
132
  },
133
133
  "runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": {
134
134
  "type": "Transitive",
135
- "resolved": "2.2.7-rel-27913-00",
136
- "contentHash": "Hr1dSHwWQ78yFMqZuh3J0brY886r4pPBblIy6JcgAFZUFM4FaDr9T1KPSYavlPBtHMPBzrHUfsQ3Bh3STzhMLA=="
135
+ "resolved": "2.2.8-rel-31116-00",
136
+ "contentHash": "kXqhwE+XmgRn9Z1QWkGfIcDKg/pCLJcbRL5w8NWT6jliAx81sjHzquDut3ljPwOC856AUI2WMnBopu0Bf/m4BQ=="
137
137
  },
138
138
  "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": {
139
139
  "type": "Transitive",
140
- "resolved": "2.2.9",
141
- "contentHash": "QNZQ79gG3rIpaIoYbnIQCsh8Be8CzwnqDZCUZ/UGr+CfUrypGUthAxJzwitATopzonqCqPxgEnsV0ZiH8XGn8w=="
140
+ "resolved": "2.2.14",
141
+ "contentHash": "a/ONxs2DxZcBnlDo7LDtH4t6imrEuSbf9KxWWBUCP+yCquVFyqtWAt2Z4hiT++yOIz2OMZT9Hmv1VzrgecpQkQ=="
142
142
  },
143
143
  "runtime.win10-x86.Microsoft.Net.Native.Compiler": {
144
144
  "type": "Transitive",
145
- "resolved": "2.2.7-rel-27913-00",
146
- "contentHash": "jxyZhYtJS9AmOvsNghtxeN6RYxHN73LnzBX3ir0cBQ5LlsNUsf6GgiJvZoeYPJLt/9fsPONhBciHpwLXWFkJkw==",
145
+ "resolved": "2.2.12-rel-31116-00",
146
+ "contentHash": "9T8n/l5Ny4rOlL4yGs81wy4AzypMhUgrrtPBqlv46QbKWhHf44EpFKfI6JU+MkJbSh7mZYywBEfmivT0v6gnNA==",
147
147
  "dependencies": {
148
- "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.7-rel-27913-00"
148
+ "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.8-rel-31116-00"
149
149
  }
150
150
  },
151
151
  "runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": {
152
152
  "type": "Transitive",
153
- "resolved": "2.2.7-rel-27913-00",
154
- "contentHash": "LL5bMKQkVUlY5rbupMC+MJ4tCOz3hb4HVKGTmyb18Jwziv5h9QbJgRVPjiAZf9W2YroZaG+VYr1iI1Ig2bco2w=="
153
+ "resolved": "2.2.8-rel-31116-00",
154
+ "contentHash": "5RGA27cl3z0lf9zsctLBjW2GQoGYeBrg8pesqWLQnb1Ch8q8IZ6pyOwWFUsnXGuYW59OyCfoQGzHFq5Q/73EiQ=="
155
155
  },
156
156
  "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": {
157
157
  "type": "Transitive",
158
- "resolved": "2.2.9",
159
- "contentHash": "qF6RRZKaflI+LR1YODNyWYjq5YoX8IJ2wx5y8O+AW2xO+1t/Q6Mm+jQ38zJbWnmXbrcOqUYofn7Y3/KC6lTLBQ=="
158
+ "resolved": "2.2.14",
159
+ "contentHash": "V/hZioMMAwoKZFmfq/SuMA/mfoNFu4+Aedwdld/tpL8ZheehFab0RlAR3pgsPgOWOU+GjyePNIgyUXM5J/Y3Ig=="
160
160
  },
161
161
  "common": {
162
162
  "type": "Project",
163
163
  "dependencies": {
164
- "boost": "[1.76.0, )"
164
+ "boost": "[1.83.0, )"
165
165
  }
166
166
  },
167
167
  "fmt": {
@@ -170,7 +170,7 @@
170
170
  "folly": {
171
171
  "type": "Project",
172
172
  "dependencies": {
173
- "boost": "[1.76.0, )",
173
+ "boost": "[1.83.0, )",
174
174
  "fmt": "[1.0.0, )"
175
175
  }
176
176
  },
@@ -179,33 +179,33 @@
179
179
  "dependencies": {
180
180
  "Common": "[1.0.0, )",
181
181
  "Folly": "[1.0.0, )",
182
- "Microsoft.JavaScript.Hermes": "[0.1.21, )",
182
+ "Microsoft.JavaScript.Hermes": "[0.1.23, )",
183
183
  "Microsoft.SourceLink.GitHub": "[1.1.1, )",
184
184
  "Microsoft.UI.Xaml": "[2.8.0, )",
185
185
  "ReactCommon": "[1.0.0, )",
186
- "boost": "[1.76.0, )"
186
+ "boost": "[1.83.0, )"
187
187
  }
188
188
  },
189
189
  "reactcommon": {
190
190
  "type": "Project",
191
191
  "dependencies": {
192
192
  "Folly": "[1.0.0, )",
193
- "boost": "[1.76.0, )"
193
+ "boost": "[1.83.0, )"
194
194
  }
195
195
  }
196
196
  },
197
197
  "UAP,Version=v10.0.17763/win10-arm": {
198
198
  "Microsoft.NETCore.UniversalWindowsPlatform": {
199
199
  "type": "Direct",
200
- "requested": "[6.2.9, )",
201
- "resolved": "6.2.9",
202
- "contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
200
+ "requested": "[6.2.14, )",
201
+ "resolved": "6.2.14",
202
+ "contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
203
203
  "dependencies": {
204
204
  "Microsoft.NETCore.Platforms": "2.1.0",
205
- "Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
206
- "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
205
+ "Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
206
+ "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
207
207
  "NETStandard.Library": "2.0.3",
208
- "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
208
+ "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
209
209
  }
210
210
  },
211
211
  "Microsoft.Web.WebView2": {
@@ -215,22 +215,22 @@
215
215
  },
216
216
  "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform": {
217
217
  "type": "Transitive",
218
- "resolved": "6.2.9",
219
- "contentHash": "/q9U+SqJTVrocU7CHFd1D4ac2jqPc4U8kPy8F147Li3XGf0Ce9v6UKJqf7nskR+XgVi3IVfUJUcjWLVskG5ZKw=="
218
+ "resolved": "6.2.14",
219
+ "contentHash": "TKCMvB+6izAQSl7kWimKU2W9iN7gXSMc1Lah3dpY+/PuUjAfSNvfv2HW/mK3TdmjW631/4S9wWYmplLh6ao91w=="
220
220
  }
221
221
  },
222
222
  "UAP,Version=v10.0.17763/win10-arm-aot": {
223
223
  "Microsoft.NETCore.UniversalWindowsPlatform": {
224
224
  "type": "Direct",
225
- "requested": "[6.2.9, )",
226
- "resolved": "6.2.9",
227
- "contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
225
+ "requested": "[6.2.14, )",
226
+ "resolved": "6.2.14",
227
+ "contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
228
228
  "dependencies": {
229
229
  "Microsoft.NETCore.Platforms": "2.1.0",
230
- "Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
231
- "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
230
+ "Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
231
+ "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
232
232
  "NETStandard.Library": "2.0.3",
233
- "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
233
+ "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
234
234
  }
235
235
  },
236
236
  "Microsoft.Web.WebView2": {
@@ -240,22 +240,22 @@
240
240
  },
241
241
  "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform": {
242
242
  "type": "Transitive",
243
- "resolved": "6.2.9",
244
- "contentHash": "tN7AmnRPUuu29nh9ulL/UGMdzayAe/AQNhM7+fQNKuT4jUlxc61Ilf2djKNJ5MvK8wY69KH0Iz9Yy5+95rB+DQ=="
243
+ "resolved": "6.2.14",
244
+ "contentHash": "4/GjCV7KtJz7is13eUXxIj4AHn8WTqmQ1u6wx7J4piJYkwViMVz0sGvzwXDt5oSSTvVdsDpa/EQUUBtFyGnmbg=="
245
245
  }
246
246
  },
247
247
  "UAP,Version=v10.0.17763/win10-arm64-aot": {
248
248
  "Microsoft.NETCore.UniversalWindowsPlatform": {
249
249
  "type": "Direct",
250
- "requested": "[6.2.9, )",
251
- "resolved": "6.2.9",
252
- "contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
250
+ "requested": "[6.2.14, )",
251
+ "resolved": "6.2.14",
252
+ "contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
253
253
  "dependencies": {
254
254
  "Microsoft.NETCore.Platforms": "2.1.0",
255
- "Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
256
- "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
255
+ "Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
256
+ "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
257
257
  "NETStandard.Library": "2.0.3",
258
- "runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
258
+ "runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
259
259
  }
260
260
  },
261
261
  "Microsoft.Web.WebView2": {
@@ -265,22 +265,22 @@
265
265
  },
266
266
  "runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform": {
267
267
  "type": "Transitive",
268
- "resolved": "6.2.9",
269
- "contentHash": "gupfeyxXmaOyqLps1gGLh4Lzh5Wee6iuKpgZ70l2nmoHtzqCdk9aK4i+03259M6X2r7BXoIjJJml0paXBQY1kw=="
268
+ "resolved": "6.2.14",
269
+ "contentHash": "8QVHVgSh8G9BgNUPaMllx5f8iEM45a52eCooJAQH1Xq+MfnvVXcmpOVmMRLxwY2dRU77ZoiGRCyeAKwqFcnEYQ=="
270
270
  }
271
271
  },
272
272
  "UAP,Version=v10.0.17763/win10-x64": {
273
273
  "Microsoft.NETCore.UniversalWindowsPlatform": {
274
274
  "type": "Direct",
275
- "requested": "[6.2.9, )",
276
- "resolved": "6.2.9",
277
- "contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
275
+ "requested": "[6.2.14, )",
276
+ "resolved": "6.2.14",
277
+ "contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
278
278
  "dependencies": {
279
279
  "Microsoft.NETCore.Platforms": "2.1.0",
280
- "Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
281
- "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
280
+ "Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
281
+ "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
282
282
  "NETStandard.Library": "2.0.3",
283
- "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
283
+ "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
284
284
  }
285
285
  },
286
286
  "Microsoft.Web.WebView2": {
@@ -290,22 +290,22 @@
290
290
  },
291
291
  "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform": {
292
292
  "type": "Transitive",
293
- "resolved": "6.2.9",
294
- "contentHash": "JjnUToWq2LQfNKtiqld4YYkgUcC3tCQ0RvRKiut0B7AgS+Eo/HnI/viFiH4FoNG7pFvcWoKimLctj06IgJoiyA=="
293
+ "resolved": "6.2.14",
294
+ "contentHash": "SPmQotZQ5ty+UkHMm76k/0DJpZ663qwXvLjVw/LrNmaIQHa+g+6TjKNAyR0ondKnwqu5oT79RJ2Tk8A0JQqBPQ=="
295
295
  }
296
296
  },
297
297
  "UAP,Version=v10.0.17763/win10-x64-aot": {
298
298
  "Microsoft.NETCore.UniversalWindowsPlatform": {
299
299
  "type": "Direct",
300
- "requested": "[6.2.9, )",
301
- "resolved": "6.2.9",
302
- "contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
300
+ "requested": "[6.2.14, )",
301
+ "resolved": "6.2.14",
302
+ "contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
303
303
  "dependencies": {
304
304
  "Microsoft.NETCore.Platforms": "2.1.0",
305
- "Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
306
- "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
305
+ "Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
306
+ "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
307
307
  "NETStandard.Library": "2.0.3",
308
- "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
308
+ "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
309
309
  }
310
310
  },
311
311
  "Microsoft.Web.WebView2": {
@@ -315,22 +315,22 @@
315
315
  },
316
316
  "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform": {
317
317
  "type": "Transitive",
318
- "resolved": "6.2.9",
319
- "contentHash": "XTmgQZIB3JbzwVE0h+GN//VniFM4MmSWjxjtK7g5zypTwtpuj68oulxWqN5R3F19GaUzT+EFdfKXKEWI73/qwQ=="
318
+ "resolved": "6.2.14",
319
+ "contentHash": "2SPw1ay04TYxrnMs2hxP86j3daB59cnQ8aNPXUcKyon+RA1MN99mWg8V93WDxD82ZDR+citKcM3dxS4oEtDI4g=="
320
320
  }
321
321
  },
322
322
  "UAP,Version=v10.0.17763/win10-x86": {
323
323
  "Microsoft.NETCore.UniversalWindowsPlatform": {
324
324
  "type": "Direct",
325
- "requested": "[6.2.9, )",
326
- "resolved": "6.2.9",
327
- "contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
325
+ "requested": "[6.2.14, )",
326
+ "resolved": "6.2.14",
327
+ "contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
328
328
  "dependencies": {
329
329
  "Microsoft.NETCore.Platforms": "2.1.0",
330
- "Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
331
- "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
330
+ "Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
331
+ "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
332
332
  "NETStandard.Library": "2.0.3",
333
- "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
333
+ "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
334
334
  }
335
335
  },
336
336
  "Microsoft.Web.WebView2": {
@@ -340,22 +340,22 @@
340
340
  },
341
341
  "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform": {
342
342
  "type": "Transitive",
343
- "resolved": "6.2.9",
344
- "contentHash": "BckZHjaqBTSEtvzj0aliq3DQvLOT7C4ei4L8pCgcD3k/MZpECBg8kUsixDanwYtRot+jNXxc6LF5J87cyigGfA=="
343
+ "resolved": "6.2.14",
344
+ "contentHash": "twbdvWFcy0wRd/jiZWeiS6Edui76XwmRLHXLJ3uFpBsimu7XOTLJBMycG11MxdcAjFMa3LnPUkTgiI63wM1b+w=="
345
345
  }
346
346
  },
347
347
  "UAP,Version=v10.0.17763/win10-x86-aot": {
348
348
  "Microsoft.NETCore.UniversalWindowsPlatform": {
349
349
  "type": "Direct",
350
- "requested": "[6.2.9, )",
351
- "resolved": "6.2.9",
352
- "contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
350
+ "requested": "[6.2.14, )",
351
+ "resolved": "6.2.14",
352
+ "contentHash": "7Mi4cS8JQ7gqm+W+SRCq13c2Rr0yZTuczC9EbV6gRigE2ZhQalnLHyat0ZshT5HDMSkFDxTyjwZymUgFuv3+eg==",
353
353
  "dependencies": {
354
354
  "Microsoft.NETCore.Platforms": "2.1.0",
355
- "Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
356
- "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
355
+ "Microsoft.Net.Native.Compiler": "2.2.12-rel-31116-00",
356
+ "Microsoft.Net.UWPCoreRuntimeSdk": "2.2.14",
357
357
  "NETStandard.Library": "2.0.3",
358
- "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
358
+ "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.14"
359
359
  }
360
360
  },
361
361
  "Microsoft.Web.WebView2": {
@@ -365,8 +365,8 @@
365
365
  },
366
366
  "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform": {
367
367
  "type": "Transitive",
368
- "resolved": "6.2.9",
369
- "contentHash": "/FxhZW8KuY7aiRcC1Opk5+48Meg1PYj36LcLVuX6Ty+n4HpMf7xxvNvp0EzSLzW/Ibzqt+iaRWqfOZqiTFZG5g=="
368
+ "resolved": "6.2.14",
369
+ "contentHash": "3nklK7zt8pQ4/okXv4jA/HlUx/xmnyS/YRKJh19BzXKKhYk/EnRT1zoNcvQDJjhyUZXquffbcxHyBbjd2V2GNQ=="
370
370
  }
371
371
  }
372
372
  }
@@ -20,6 +20,7 @@
20
20
  <DotNetNativeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\Microsoft.Net.Native.Compiler\2.2.10-rel-29722-00\build\Microsoft.Net.Native.Compiler.props')">2.2.10-rel-29722-00</DotNetNativeVersion>
21
21
  <DotNetNativeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\Microsoft.Net.Native.Compiler\2.2.11-rel-30601-02\build\Microsoft.Net.Native.Compiler.props')">2.2.11-rel-30601-02</DotNetNativeVersion>
22
22
  <DotNetNativeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\Microsoft.Net.Native.Compiler\2.2.12-rel-31116-00\build\Microsoft.Net.Native.Compiler.props')">2.2.12-rel-31116-00</DotNetNativeVersion>
23
+ <DotNetNativeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\Microsoft.Net.Native.Compiler\2.2.12-rel-33220-00\build\Microsoft.Net.Native.Compiler.props')">2.2.12-rel-33220-00</DotNetNativeVersion>
23
24
 
24
25
  <DotNetNativeRuntimeVersion>DOTNET_NATIVE_RUNTIME_VERSION_NOT_SET</DotNetNativeRuntimeVersion>
25
26
  <DotNetNativeRuntimeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary\2.2.7-rel-27913-00\build\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props')">2.2.7-rel-27913-00</DotNetNativeRuntimeVersion>
@@ -28,6 +29,7 @@
28
29
  <DotNetNativeRuntimeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary\2.2.8-rel-29722-00\build\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props')">2.2.8-rel-29722-00</DotNetNativeRuntimeVersion>
29
30
  <DotNetNativeRuntimeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary\2.2.8-rel-30601-02\build\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props')">2.2.8-rel-30601-02</DotNetNativeRuntimeVersion>
30
31
  <DotNetNativeRuntimeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary\2.2.8-rel-31116-00\build\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props')">2.2.8-rel-31116-00</DotNetNativeRuntimeVersion>
32
+ <DotNetNativeRuntimeVersion Condition="Exists('$(MSBuildProgramFiles32)\Microsoft SDKs\UWPNuGetPackages\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary\2.2.8-rel-33220-00\build\runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.props')">2.2.8-rel-33220-00</DotNetNativeRuntimeVersion>
31
33
 
32
34
  <!-- The name 'DotNetNativeVersion' is critical for restoring the right .NET framework libraries -->
33
35
  <UWPCoreRuntimeSdkVersion>UWP_CORE_RUNTIME_SDK_VERSION_NOT_SET</UWPCoreRuntimeSdkVersion>
@@ -11,7 +11,7 @@
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
 
13
13
  <PropertyGroup Label="NetCoreUniversalWindowsPlatform">
14
- <NETCoreUWPVersion Condition="'$(NETCoreUWPVersion)' == '' Or $([MSBuild]::VersionLessThan('$(NETCoreUWPVersion)', '6.2.9'))">6.2.9</NETCoreUWPVersion>
14
+ <NETCoreUWPVersion Condition="'$(NETCoreUWPVersion)' == '' Or $([MSBuild]::VersionLessThan('$(NETCoreUWPVersion)', '6.2.14'))">6.2.14</NETCoreUWPVersion>
15
15
  </PropertyGroup>
16
16
 
17
17
  </Project>
@@ -10,11 +10,11 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.75.6</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.75.8</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>75</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>6</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>8</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
- <ReactNativeWindowsCommitId>499b89b7e5c209d97efd981342b953b75854c903</ReactNativeWindowsCommitId>
18
+ <ReactNativeWindowsCommitId>e0a3912fde85cadd1379e394ceec51bee68c9f74</ReactNativeWindowsCommitId>
19
19
  </PropertyGroup>
20
20
  </Project>
@@ -14,8 +14,8 @@
14
14
  "folly": {
15
15
  "type": "Project",
16
16
  "dependencies": {
17
- "Fmt": "[1.0.0, )",
18
- "boost": "[1.83.0, )"
17
+ "boost": "[1.83.0, )",
18
+ "fmt": "[1.0.0, )"
19
19
  }
20
20
  }
21
21
  },
package/just-task.js CHANGED
@@ -70,4 +70,4 @@ task(
70
70
 
71
71
  task('clean', series('cleanRNLibraries'));
72
72
 
73
- task('lint', series('eslint', 'codegen:check', 'flow-check'));
73
+ task('lint', series('prettier', 'eslint', 'codegen:check', 'flow-check'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.75.6",
3
+ "version": "0.75.8",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,7 +26,7 @@
26
26
  "@react-native-community/cli": "14.1.0",
27
27
  "@react-native-community/cli-platform-android": "14.1.0",
28
28
  "@react-native-community/cli-platform-ios": "14.1.0",
29
- "@react-native-windows/cli": "0.75.4",
29
+ "@react-native-windows/cli": "0.75.5",
30
30
  "@react-native/assets": "1.0.0",
31
31
  "@react-native/assets-registry": "0.75.3",
32
32
  "@react-native/codegen": "0.75.3",
@@ -67,7 +67,7 @@
67
67
  "yargs": "^17.6.2"
68
68
  },
69
69
  "devDependencies": {
70
- "@react-native-windows/codegen": "0.75.2",
70
+ "@react-native-windows/codegen": "0.75.3",
71
71
  "@react-native/metro-config": "0.75.3",
72
72
  "@rnw-scripts/babel-react-native-config": "0.0.0",
73
73
  "@rnw-scripts/eslint-config": "1.2.23",
@@ -78,7 +78,6 @@
78
78
  "@types/node": "^18.0.0",
79
79
  "@types/react": "^18.2.6",
80
80
  "eslint": "^8.19.0",
81
- "eslint-plugin-prettier": "^4.2.1",
82
81
  "flow-bin": "^0.217.2",
83
82
  "jscodeshift": "^0.14.0",
84
83
  "just-scripts": "^1.3.3",
@@ -21,7 +21,10 @@ async function preInstall(config = {}, options = {}) {}
21
21
 
22
22
  async function getFileMappings(config = {}, options = {}) {
23
23
  const projectRoot = config?.root ?? process.cwd();
24
- const {rnwPath, rnwVersion, devMode, isCanary} = templateUtils.getRnwInfo(config, options);
24
+ const {rnwPath, rnwVersion, devMode, isCanary} = templateUtils.getRnwInfo(
25
+ config,
26
+ options,
27
+ );
25
28
 
26
29
  const projectName =
27
30
  config?.project?.windows?.project?.projectName ?? options?.name ?? 'MyApp';
@@ -49,7 +52,9 @@ async function getFileMappings(config = {}, options = {}) {
49
52
  namespaceCpp: namespaceCpp,
50
53
 
51
54
  rnwVersion: rnwVersion,
52
- rnwPathFromProjectRoot: path.relative(projectRoot, rnwPath).replace(/\//g, '\\'),
55
+ rnwPathFromProjectRoot: path
56
+ .relative(projectRoot, rnwPath)
57
+ .replace(/\//g, '\\'),
53
58
 
54
59
  mainComponentName,
55
60
 
@@ -67,7 +72,7 @@ async function getFileMappings(config = {}, options = {}) {
67
72
  devMode,
68
73
 
69
74
  useNuGets: !devMode, // default is to use published NuGets except in devMode, change to true here if you want to test devMode and nugets simultaneously
70
- addReactNativePublicAdoFeed: isCanary,
75
+ addReactNativePublicAdoFeed: true || isCanary, // Temporary true for all new projects until code-signing is restored, see issue #14030
71
76
 
72
77
  cppNugetPackages,
73
78
  };
@@ -76,7 +76,10 @@ async function getFileMappings(config = {}, options = {}) {
76
76
  );
77
77
 
78
78
  const projectRoot = libConfig.root ?? process.cwd();
79
- const {rnwPath, rnwVersion, devMode, isCanary} = templateUtils.getRnwInfo(libConfig, libOptions);
79
+ const {rnwPath, rnwVersion, devMode, isCanary} = templateUtils.getRnwInfo(
80
+ libConfig,
81
+ libOptions,
82
+ );
80
83
 
81
84
  const projectName =
82
85
  libConfig?.project?.windows?.projects[0]?.projectName ??
@@ -102,7 +105,9 @@ async function getFileMappings(config = {}, options = {}) {
102
105
  namespaceCpp: namespaceCpp,
103
106
 
104
107
  rnwVersion: rnwVersion,
105
- rnwPathFromProjectRoot: path.relative(projectRoot, rnwPath).replace(/\//g, '\\'),
108
+ rnwPathFromProjectRoot: path
109
+ .relative(projectRoot, rnwPath)
110
+ .replace(/\//g, '\\'),
106
111
 
107
112
  // Visual Studio is very picky about the casing of the guids for projects, project references and the solution
108
113
  // https://www.bing.com/search?q=visual+studio+project+guid+casing&cvid=311a5ad7f9fc41089507b24600d23ee7&FORM=ANAB01&PC=U531
@@ -115,7 +120,7 @@ async function getFileMappings(config = {}, options = {}) {
115
120
  devMode,
116
121
 
117
122
  useNuGets: !devMode, // default is to use published NuGets except in devMode, change to true here if you want to test devMode and nugets simultaneously
118
- addReactNativePublicAdoFeed: isCanary,
123
+ addReactNativePublicAdoFeed: true || isCanary, // Temporary true for all new projects until code-signing is restored, see issue #14030
119
124
 
120
125
  cppNugetPackages,
121
126
  };
@@ -112,9 +112,8 @@ async function runNpmInstall(config = {}, options = {}) {
112
112
 
113
113
  async function updateProjectPackageJson(config = {}, options = {}, props = {}) {
114
114
  const projectRoot = config?.root ?? process.cwd();
115
- const projectPackage = await pkgUtils.WritableNpmPackage.fromPath(
116
- projectRoot,
117
- );
115
+ const projectPackage =
116
+ await pkgUtils.WritableNpmPackage.fromPath(projectRoot);
118
117
 
119
118
  if (!projectPackage) {
120
119
  throw new Error(