react-native-tvos 0.86.0-0rc3 → 0.86.0-1
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.
- package/Libraries/Core/ReactNativeVersion.js +1 -1
- package/React/Base/RCTVersion.m +1 -1
- package/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm +1 -2
- package/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +1 -1
- package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
- package/package.json +9 -9
|
@@ -29,7 +29,7 @@ export default class ReactNativeVersion {
|
|
|
29
29
|
static major: number = 0;
|
|
30
30
|
static minor: number = 86;
|
|
31
31
|
static patch: number = 0;
|
|
32
|
-
static prerelease: string | null = '
|
|
32
|
+
static prerelease: string | null = '1';
|
|
33
33
|
|
|
34
34
|
static getVersionString(): string {
|
|
35
35
|
return `${this.major}.${this.minor}.${this.patch}${this.prerelease != null ? `-${this.prerelease}` : ''}`;
|
package/React/Base/RCTVersion.m
CHANGED
|
@@ -630,11 +630,10 @@ static BOOL RCTLayerTransformCollapsesAxis(CALayer *layer)
|
|
|
630
630
|
// [self isTVFocusGuide] is false when autofocus and destinations are not used, so we cannot use that.
|
|
631
631
|
// Generally speaking, it would happen for any non-collapsable `View`.
|
|
632
632
|
} else if (context.previouslyFocusedView == self) {
|
|
633
|
-
[self disableDirectionalFocusGuides];
|
|
634
633
|
[coordinator addCoordinatedAnimations:^(void){
|
|
635
634
|
[self removeParallaxMotionEffects];
|
|
636
635
|
if (self->_eventEmitter) self->_eventEmitter->onBlur();
|
|
637
|
-
} completion:^(void){}];
|
|
636
|
+
} completion:^(void){[self disableDirectionalFocusGuides];}];
|
|
638
637
|
[self resignFirstResponder];
|
|
639
638
|
}
|
|
640
639
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-tvos",
|
|
3
|
-
"version": "0.86.0-
|
|
3
|
+
"version": "0.86.0-1",
|
|
4
4
|
"description": "A framework for building native apps using React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
"featureflags-check": "node ./scripts/featureflags/index.js --verify-unchanged"
|
|
155
155
|
},
|
|
156
156
|
"peerDependencies": {
|
|
157
|
-
"@react-native/jest-preset": "0.86.0
|
|
157
|
+
"@react-native/jest-preset": "0.86.0",
|
|
158
158
|
"@types/react": "^19.1.1",
|
|
159
159
|
"react": "^19.2.3"
|
|
160
160
|
},
|
|
@@ -167,12 +167,12 @@
|
|
|
167
167
|
}
|
|
168
168
|
},
|
|
169
169
|
"dependencies": {
|
|
170
|
-
"@react-native/assets-registry": "0.86.0
|
|
171
|
-
"@react-native/codegen": "0.86.0
|
|
172
|
-
"@react-native/community-cli-plugin": "0.86.0
|
|
173
|
-
"@react-native/gradle-plugin": "0.86.0
|
|
174
|
-
"@react-native/js-polyfills": "0.86.0
|
|
175
|
-
"@react-native/normalize-colors": "0.86.0
|
|
170
|
+
"@react-native/assets-registry": "0.86.0",
|
|
171
|
+
"@react-native/codegen": "0.86.0",
|
|
172
|
+
"@react-native/community-cli-plugin": "0.86.0",
|
|
173
|
+
"@react-native/gradle-plugin": "0.86.0",
|
|
174
|
+
"@react-native/js-polyfills": "0.86.0",
|
|
175
|
+
"@react-native/normalize-colors": "0.86.0",
|
|
176
176
|
"abort-controller": "^3.0.0",
|
|
177
177
|
"anser": "^1.4.9",
|
|
178
178
|
"ansi-regex": "^5.0.0",
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
"whatwg-fetch": "^3.0.0",
|
|
199
199
|
"ws": "^7.5.10",
|
|
200
200
|
"yargs": "^17.6.2",
|
|
201
|
-
"@react-native-tvos/virtualized-lists": "0.86.0-
|
|
201
|
+
"@react-native-tvos/virtualized-lists": "0.86.0-1"
|
|
202
202
|
},
|
|
203
203
|
"codegenConfig": {
|
|
204
204
|
"libraries": [
|