react-native-windows 0.0.0-canary.593 → 0.0.0-canary.595

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.
@@ -41,6 +41,7 @@ void TextPropertyChangedParentVisitor::VisitText(ShadowNodeBase *node) {
41
41
  }
42
42
 
43
43
  TextViewManager::UpdateOptimizedText(node);
44
+ node->GetViewManager()->MarkDirty(node->m_tag);
44
45
  }
45
46
 
46
47
  // Refresh text highlighters
@@ -83,6 +83,7 @@ class TextShadowNode final : public ShadowNodeBase {
83
83
  }
84
84
 
85
85
  RecalculateTextHighlighters();
86
+ GetViewManager()->MarkDirty(m_tag);
86
87
  }
87
88
 
88
89
  void removeAllChildren() override {
@@ -93,6 +94,7 @@ class TextShadowNode final : public ShadowNodeBase {
93
94
  Super::removeAllChildren();
94
95
  }
95
96
  RecalculateTextHighlighters();
97
+ GetViewManager()->MarkDirty(m_tag);
96
98
  }
97
99
 
98
100
  void RemoveChildAt(int64_t indexToRemove) override {
@@ -102,6 +104,7 @@ class TextShadowNode final : public ShadowNodeBase {
102
104
  Super::RemoveChildAt(indexToRemove);
103
105
  }
104
106
  RecalculateTextHighlighters();
107
+ GetViewManager()->MarkDirty(m_tag);
105
108
  }
106
109
 
107
110
  void UpdateOptimizedText() {
@@ -10,7 +10,7 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.0.0-canary.593</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.0.0-canary.595</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>0</ReactNativeWindowsMinor>
16
16
  <ReactNativeWindowsPatch>0</ReactNativeWindowsPatch>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.0.0-canary.593",
3
+ "version": "0.0.0-canary.595",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,7 +26,7 @@
26
26
  "@react-native-community/cli": "10.0.0-alpha.5",
27
27
  "@react-native-community/cli-platform-android": "10.0.0-alpha.4",
28
28
  "@react-native-community/cli-platform-ios": "10.0.0-alpha.3",
29
- "@react-native-windows/cli": "0.0.0-canary.154",
29
+ "@react-native-windows/cli": "0.0.0-canary.155",
30
30
  "@react-native/assets": "1.0.0",
31
31
  "@react-native/normalize-color": "2.1.0",
32
32
  "@react-native/polyfills": "2.0.0",
@@ -60,11 +60,11 @@
60
60
  "ws": "^6.2.2"
61
61
  },
62
62
  "devDependencies": {
63
- "@react-native-windows/codegen": "0.0.0-canary.45",
63
+ "@react-native-windows/codegen": "0.0.0-canary.46",
64
64
  "@rnw-scripts/babel-react-native-config": "0.0.0",
65
- "@rnw-scripts/eslint-config": "1.1.14",
66
- "@rnw-scripts/jest-out-of-tree-snapshot-resolver": "^1.1.0",
67
- "@rnw-scripts/just-task": "2.3.3",
65
+ "@rnw-scripts/eslint-config": "1.1.15",
66
+ "@rnw-scripts/jest-out-of-tree-snapshot-resolver": "^1.1.1",
67
+ "@rnw-scripts/just-task": "2.3.4",
68
68
  "@rnw-scripts/metro-dev-config": "0.0.0",
69
69
  "@rnx-kit/jest-preset": "^0.1.0",
70
70
  "@types/node": "^14.14.22",
@@ -78,7 +78,7 @@
78
78
  "prettier": "^2.4.1",
79
79
  "react": "18.2.0",
80
80
  "react-native": "0.0.0-20221120-2051-81e441ae8",
81
- "react-native-platform-override": "^1.8.4",
81
+ "react-native-platform-override": "^1.8.5",
82
82
  "react-refresh": "^0.4.0",
83
83
  "typescript": "^4.4.4"
84
84
  },