react-native-tvos 0.85.0-0rc1 → 0.85.0-0rc5
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/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.kt +1 -1
- package/ReactApple/RCTAnimatedModuleProvider/RCTAnimatedModuleProvider.mm +1 -4
- package/ReactApple/RCTSwiftUI/RCTSwiftUI.podspec +1 -1
- package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
- package/gradle/libs.versions.toml +1 -1
- package/package.json +9 -9
- package/third-party-podspecs/RCT-Folly.podspec +1 -1
- package/third-party-podspecs/fmt.podspec +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 = 0;
|
|
32
|
-
static prerelease: string | null = '
|
|
32
|
+
static prerelease: string | null = '0rc5';
|
|
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
|
@@ -634,7 +634,7 @@ public open class ReactViewGroup public constructor(context: Context?) :
|
|
|
634
634
|
index++
|
|
635
635
|
}
|
|
636
636
|
|
|
637
|
-
return firstFocusableElement
|
|
637
|
+
return firstFocusableElement
|
|
638
638
|
}
|
|
639
639
|
|
|
640
640
|
private fun moveFocusToFirstFocusable(viewGroup: ReactViewGroup): Boolean {
|
|
@@ -70,10 +70,7 @@
|
|
|
70
70
|
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:(const std::string &)name
|
|
71
71
|
jsInvoker:(std::shared_ptr<facebook::react::CallInvoker>)jsInvoker
|
|
72
72
|
{
|
|
73
|
-
if (facebook::react::ReactNativeFeatureFlags::cxxNativeAnimatedEnabled()
|
|
74
|
-
// initialization is moved to DefaultTurboModules when using shared animated backend
|
|
75
|
-
// TODO: T257053961 deprecate RCTAnimatedModuleProvider.
|
|
76
|
-
!facebook::react::ReactNativeFeatureFlags::useSharedAnimatedBackend()) {
|
|
73
|
+
if (facebook::react::ReactNativeFeatureFlags::cxxNativeAnimatedEnabled()) {
|
|
77
74
|
if (name == facebook::react::AnimatedModule::kModuleName) {
|
|
78
75
|
__weak RCTAnimatedModuleProvider *weakSelf = self;
|
|
79
76
|
auto provider = std::make_shared<facebook::react::NativeAnimatedNodesManagerProvider>(
|
|
@@ -25,7 +25,7 @@ Pod::Spec.new do |s|
|
|
|
25
25
|
s.author = "Meta Platforms, Inc. and its affiliates"
|
|
26
26
|
s.platforms = min_supported_versions
|
|
27
27
|
s.source = source
|
|
28
|
-
s.source_files = "*.{h,m,swift}"
|
|
28
|
+
s.source_files = podspec_sources("*.{h,m,swift}", "")
|
|
29
29
|
s.public_header_files = "*.h"
|
|
30
30
|
s.module_name = "RCTSwiftUI"
|
|
31
31
|
s.header_dir = "RCTSwiftUI"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-tvos",
|
|
3
|
-
"version": "0.85.0-
|
|
3
|
+
"version": "0.85.0-0rc5",
|
|
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.85.0-rc.
|
|
157
|
+
"@react-native/jest-preset": "0.85.0-rc.5",
|
|
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.85.0-rc.
|
|
171
|
-
"@react-native/codegen": "0.85.0-rc.
|
|
172
|
-
"@react-native/community-cli-plugin": "0.85.0-rc.
|
|
173
|
-
"@react-native/gradle-plugin": "0.85.0-rc.
|
|
174
|
-
"@react-native/js-polyfills": "0.85.0-rc.
|
|
175
|
-
"@react-native/normalize-colors": "0.85.0-rc.
|
|
170
|
+
"@react-native/assets-registry": "0.85.0-rc.5",
|
|
171
|
+
"@react-native/codegen": "0.85.0-rc.5",
|
|
172
|
+
"@react-native/community-cli-plugin": "0.85.0-rc.5",
|
|
173
|
+
"@react-native/gradle-plugin": "0.85.0-rc.5",
|
|
174
|
+
"@react-native/js-polyfills": "0.85.0-rc.5",
|
|
175
|
+
"@react-native/normalize-colors": "0.85.0-rc.5",
|
|
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.85.0-
|
|
201
|
+
"@react-native-tvos/virtualized-lists": "0.85.0-0rc5"
|
|
202
202
|
},
|
|
203
203
|
"codegenConfig": {
|
|
204
204
|
"libraries": [
|
|
@@ -25,7 +25,7 @@ Pod::Spec.new do |spec|
|
|
|
25
25
|
spec.dependency "DoubleConversion"
|
|
26
26
|
spec.dependency "glog"
|
|
27
27
|
spec.dependency "fast_float", "8.0.0"
|
|
28
|
-
spec.dependency "fmt", "
|
|
28
|
+
spec.dependency "fmt", "12.1.0"
|
|
29
29
|
spec.compiler_flags = '-Wno-documentation -faligned-new'
|
|
30
30
|
spec.source_files = 'folly/String.cpp',
|
|
31
31
|
'folly/Conv.cpp',
|
|
@@ -8,14 +8,14 @@ fmt_git_url = fmt_config[:git]
|
|
|
8
8
|
|
|
9
9
|
Pod::Spec.new do |spec|
|
|
10
10
|
spec.name = "fmt"
|
|
11
|
-
spec.version = "
|
|
11
|
+
spec.version = "12.1.0"
|
|
12
12
|
spec.license = { :type => "MIT" }
|
|
13
13
|
spec.homepage = "https://github.com/fmtlib/fmt"
|
|
14
14
|
spec.summary = "{fmt} is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams."
|
|
15
15
|
spec.authors = "The fmt contributors"
|
|
16
16
|
spec.source = {
|
|
17
17
|
:git => fmt_git_url,
|
|
18
|
-
:tag => "
|
|
18
|
+
:tag => "12.1.0"
|
|
19
19
|
}
|
|
20
20
|
spec.pod_target_xcconfig = {
|
|
21
21
|
"CLANG_CXX_LANGUAGE_STANDARD" => rct_cxx_language_standard(),
|