react-native-tvos 0.85.3-1 → 0.85.3-2
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 +2 -2
|
@@ -29,7 +29,7 @@ export default class ReactNativeVersion {
|
|
|
29
29
|
static major: number = 0;
|
|
30
30
|
static minor: number = 85;
|
|
31
31
|
static patch: number = 3;
|
|
32
|
-
static prerelease: string | null = '
|
|
32
|
+
static prerelease: string | null = '2';
|
|
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
|
@@ -611,11 +611,10 @@ const CGFloat BACKGROUND_COLOR_ZPOSITION = -1024.0f;
|
|
|
611
611
|
// [self isTVFocusGuide] is false when autofocus and destinations are not used, so we cannot use that.
|
|
612
612
|
// Generally speaking, it would happen for any non-collapsable `View`.
|
|
613
613
|
} else if (context.previouslyFocusedView == self) {
|
|
614
|
-
[self disableDirectionalFocusGuides];
|
|
615
614
|
[coordinator addCoordinatedAnimations:^(void){
|
|
616
615
|
[self removeParallaxMotionEffects];
|
|
617
616
|
if (self->_eventEmitter) self->_eventEmitter->onBlur();
|
|
618
|
-
} completion:^(void){}];
|
|
617
|
+
} completion:^(void){[self disableDirectionalFocusGuides];}];
|
|
619
618
|
[self resignFirstResponder];
|
|
620
619
|
}
|
|
621
620
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-tvos",
|
|
3
|
-
"version": "0.85.3-
|
|
3
|
+
"version": "0.85.3-2",
|
|
4
4
|
"description": "A framework for building native apps using React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -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.85.3-
|
|
201
|
+
"@react-native-tvos/virtualized-lists": "0.85.3-2"
|
|
202
202
|
},
|
|
203
203
|
"codegenConfig": {
|
|
204
204
|
"libraries": [
|