react-native-windows 0.69.0 → 0.69.3

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.
@@ -139,13 +139,20 @@ bool TryUpdateForeground(
139
139
  const std::string &propertyName,
140
140
  const winrt::Microsoft::ReactNative::JSValue &propertyValue) {
141
141
  if (propertyName == "color") {
142
+ auto uielement = element.try_as<xaml::UIElement>();
142
143
  if (IsValidColorValue(propertyValue)) {
143
144
  const auto brush = BrushFrom(propertyValue);
144
145
  element.Foreground(brush);
145
146
  UpdateControlForegroundResourceBrushes(element, brush);
147
+ if (uielement) {
148
+ uielement.HighContrastAdjustment(xaml::ElementHighContrastAdjustment::None);
149
+ }
146
150
  } else if (propertyValue.IsNull()) {
147
151
  element.ClearValue(T::ForegroundProperty());
148
152
  UpdateControlForegroundResourceBrushes(element, nullptr);
153
+ if (uielement) {
154
+ uielement.HighContrastAdjustment(xaml::ElementHighContrastAdjustment::Application);
155
+ }
149
156
  }
150
157
 
151
158
  return true;
@@ -135,8 +135,31 @@
135
135
  "resolved": "2.2.9",
136
136
  "contentHash": "qF6RRZKaflI+LR1YODNyWYjq5YoX8IJ2wx5y8O+AW2xO+1t/Q6Mm+jQ38zJbWnmXbrcOqUYofn7Y3/KC6lTLBQ=="
137
137
  },
138
- "microsoft.reactnative": {
138
+ "common": {
139
+ "type": "Project"
140
+ },
141
+ "fmt": {
139
142
  "type": "Project"
143
+ },
144
+ "folly": {
145
+ "type": "Project",
146
+ "dependencies": {
147
+ "fmt": "1.0.0"
148
+ }
149
+ },
150
+ "microsoft.reactnative": {
151
+ "type": "Project",
152
+ "dependencies": {
153
+ "Common": "1.0.0",
154
+ "Folly": "1.0.0",
155
+ "ReactCommon": "1.0.0"
156
+ }
157
+ },
158
+ "reactcommon": {
159
+ "type": "Project",
160
+ "dependencies": {
161
+ "Folly": "1.0.0"
162
+ }
140
163
  }
141
164
  },
142
165
  "UAP,Version=v10.0.16299/win10-arm": {
@@ -10,10 +10,10 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.69.0</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.69.3</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>69</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>0</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>3</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
18
  </PropertyGroup>
19
19
  </Project>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.69.0",
3
+ "version": "0.69.3",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,7 +26,7 @@
26
26
  "@react-native-community/cli": "^8.0.0",
27
27
  "@react-native-community/cli-platform-android": "^8.0.0",
28
28
  "@react-native-community/cli-platform-ios": "^8.0.0",
29
- "@react-native-windows/cli": "0.69.0",
29
+ "@react-native-windows/cli": "0.69.1",
30
30
  "@react-native-windows/virtualized-list": "0.69.0",
31
31
  "@react-native/assets": "1.0.0",
32
32
  "@react-native/normalize-color": "2.0.0",