From 4ed93f5c046ea998c228d4cfd29db62a9b6e65c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hampus=20Sj=C3=B6berg?= Date: Wed, 9 Oct 2024 14:59:05 +0400 Subject: [PATCH] Fix macOS and Android --- android/app/build.gradle | 5 +- .../java/com/blixtwallet/MainApplication.kt | 1 - .../com/blixtwallet/RealTimeBlurManager.java | 50 -- .../com/blixtwallet/RealTimeBlurPackage.java | 35 - android/build.gradle | 6 +- macos/BlixtWallet.xcodeproj/project.pbxproj | 63 +- .../BlixtWallet-macOS.entitlements | 2 + macos/Podfile | 2 +- macos/Podfile.lock | 826 +++++++++++------- package.json | 2 + src/components/Pincode.tsx | 30 +- src/state/index.ts | 2 +- yarn.lock | 783 ++++++++++++++++- 13 files changed, 1328 insertions(+), 479 deletions(-) delete mode 100644 android/app/src/main/java/com/blixtwallet/RealTimeBlurManager.java delete mode 100644 android/app/src/main/java/com/blixtwallet/RealTimeBlurPackage.java diff --git a/android/app/build.gradle b/android/app/build.gradle index e45432c68..2b574b0a1 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -207,9 +207,8 @@ dependencies { implementation "io.grpc:grpc-stub:1.30.0" implementation "io.grpc:grpc-protobuf-lite:1.30.0" - implementation "com.hypertrack:hyperlog:0.0.10" - - implementation "com.github.mmin18:realtimeblurview:1.2.1" + implementation 'com.android.volley:volley:1.2.1' + implementation 'com.solusguard.hyperlog:hyperlog:0.0.10' implementation "com.jakewharton:process-phoenix:2.0.0" implementation 'org.brotli:dec:0.1.2' diff --git a/android/app/src/main/java/com/blixtwallet/MainApplication.kt b/android/app/src/main/java/com/blixtwallet/MainApplication.kt index 23484acd9..641c92acb 100644 --- a/android/app/src/main/java/com/blixtwallet/MainApplication.kt +++ b/android/app/src/main/java/com/blixtwallet/MainApplication.kt @@ -30,7 +30,6 @@ class MainApplication : Application(), ReactApplication { packages.add(LndMobileToolsPackage()) packages.add(LndMobileScheduledSyncPackage()) packages.add(BlixtTorPackage()) - packages.add(RealTimeBlurPackage()) return packages; // return PackageList(this).packages diff --git a/android/app/src/main/java/com/blixtwallet/RealTimeBlurManager.java b/android/app/src/main/java/com/blixtwallet/RealTimeBlurManager.java deleted file mode 100644 index 6d4830d6c..000000000 --- a/android/app/src/main/java/com/blixtwallet/RealTimeBlurManager.java +++ /dev/null @@ -1,50 +0,0 @@ -package com.blixtwallet; - -import androidx.annotation.Nullable; - -import com.facebook.react.bridge.ReactApplicationContext; -import com.facebook.react.uimanager.ThemedReactContext; -import com.facebook.react.uimanager.SimpleViewManager; -import com.facebook.react.uimanager.annotations.ReactProp; - -import com.github.mmin18.widget.RealtimeBlurView; - -public class RealTimeBlurManager extends SimpleViewManager { - - public static final String REACT_CLASS = "RCTRealTimeBlur"; - ReactApplicationContext mCallerContext; - - public RealTimeBlurManager(ReactApplicationContext reactContext) { - mCallerContext = reactContext; - } - - @Override - public String getName() { - return REACT_CLASS; - } - - @Override - public RealtimeBlurView createViewInstance(ThemedReactContext context) { - return new RealtimeBlurView(context, null); - } - - @ReactProp(name = "overlayColor") - public void setOverlayColor(RealtimeBlurView view, @Nullable String overlayColor) { - if (overlayColor == null) { - overlayColor = "#aaffffff"; - } - view.setOverlayColor(android.graphics.Color.parseColor(overlayColor)); - } - - @ReactProp(name = "blurRadius", defaultFloat = 10f) - public void setBlurRadius(RealtimeBlurView view, float blurRadius) { - view.setBlurRadius(blurRadius); - } - - @ReactProp(name = "downsampleFactor", defaultFloat = 4f) - public void setDownsampleFactor(RealtimeBlurView view, float downsampleFactor) { - view.setDownsampleFactor(downsampleFactor); - } - -} - diff --git a/android/app/src/main/java/com/blixtwallet/RealTimeBlurPackage.java b/android/app/src/main/java/com/blixtwallet/RealTimeBlurPackage.java deleted file mode 100644 index 125378e42..000000000 --- a/android/app/src/main/java/com/blixtwallet/RealTimeBlurPackage.java +++ /dev/null @@ -1,35 +0,0 @@ -package com.blixtwallet; - -import com.facebook.react.ReactPackage; -import com.facebook.react.bridge.JavaScriptModule; -import com.facebook.react.bridge.NativeModule; -import com.facebook.react.bridge.ReactApplicationContext; -import com.facebook.react.uimanager.ViewManager; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collections; -import java.util.List; - -import javax.annotation.Nonnull; - -public class RealTimeBlurPackage implements ReactPackage { - @Override - @Nonnull - public List createNativeModules(@Nonnull ReactApplicationContext reactApplicationContext) { - return new ArrayList<>(); - } - - @SuppressWarnings("unused") - public List> createJSModules() { - return Collections.emptyList(); - } - - @Override - public List createViewManagers( - ReactApplicationContext reactContext) { - return Arrays.asList( - new RealTimeBlurManager(reactContext) - ); - } -} diff --git a/android/build.gradle b/android/build.gradle index e4e1343fc..af7e34475 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -18,9 +18,6 @@ buildscript { repositories { google() mavenCentral() - - // Blixt: - jcenter() } dependencies { classpath("com.android.tools.build:gradle") @@ -39,8 +36,7 @@ buildscript { allprojects { repositories { - // mavenCentral() - jcenter() + mavenCentral() flatDir { dirs("lndmobile") } diff --git a/macos/BlixtWallet.xcodeproj/project.pbxproj b/macos/BlixtWallet.xcodeproj/project.pbxproj index 7b8e590f8..5952172ab 100644 --- a/macos/BlixtWallet.xcodeproj/project.pbxproj +++ b/macos/BlixtWallet.xcodeproj/project.pbxproj @@ -13,6 +13,8 @@ 514201552437B4B40078DB4F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 514201532437B4B40078DB4F /* Main.storyboard */; }; 514201582437B4B40078DB4F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 514201572437B4B40078DB4F /* main.m */; }; CC3585152A5F1AB5006924C2 /* Fonts in Resources */ = {isa = PBXBuildFile; fileRef = CC3585142A5F1AB5006924C2 /* Fonts */; }; + CC855CF12CB68B7B00C74CC4 /* liblnd.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CC855CF02CB68B7B00C74CC4 /* liblnd.a */; }; + CC855CF72CB68FD000C74CC4 /* LndMobileToolsTurbo.mm in Sources */ = {isa = PBXBuildFile; fileRef = CC855CF62CB68FD000C74CC4 /* LndMobileToolsTurbo.mm */; }; CC9860B52A5F2E9100047BB1 /* Lndmobile.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC9860B42A5F2E9100047BB1 /* Lndmobile.xcframework */; }; CC9860EE2A5F393500047BB1 /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = CC9860ED2A5F391D00047BB1 /* libresolv.tbd */; }; CC9860FA2A5F3A3A00047BB1 /* LndMobileScheduledSync.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC9860F02A5F3A3A00047BB1 /* LndMobileScheduledSync.swift */; }; @@ -45,6 +47,9 @@ C53D295F96A418C41F3EFC19 /* Pods-BlixtWallet-macOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BlixtWallet-macOS.debug.xcconfig"; path = "Target Support Files/Pods-BlixtWallet-macOS/Pods-BlixtWallet-macOS.debug.xcconfig"; sourceTree = ""; }; CC26772C2A50A80E005E96BE /* BlixtWallet-macOS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "BlixtWallet-macOS.entitlements"; sourceTree = ""; }; CC3585142A5F1AB5006924C2 /* Fonts */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Fonts; path = ../assets/fonts; sourceTree = ""; }; + CC855CF02CB68B7B00C74CC4 /* liblnd.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = liblnd.a; sourceTree = ""; }; + CC855CF52CB68FD000C74CC4 /* LndMobileToolsTurbo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = LndMobileToolsTurbo.h; path = ../ios/LndMobile/LndMobileToolsTurbo.h; sourceTree = SOURCE_ROOT; }; + CC855CF62CB68FD000C74CC4 /* LndMobileToolsTurbo.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = LndMobileToolsTurbo.mm; path = ../ios/LndMobile/LndMobileToolsTurbo.mm; sourceTree = SOURCE_ROOT; }; CC9860B42A5F2E9100047BB1 /* Lndmobile.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Lndmobile.xcframework; path = ../ios/Lndmobile.xcframework; sourceTree = ""; }; CC9860ED2A5F391D00047BB1 /* libresolv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libresolv.tbd; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/lib/libresolv.tbd; sourceTree = DEVELOPER_DIR; }; CC9860F02A5F3A3A00047BB1 /* LndMobileScheduledSync.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = LndMobileScheduledSync.swift; path = ../ios/LndMobile/LndMobileScheduledSync.swift; sourceTree = ""; }; @@ -66,6 +71,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + CC855CF12CB68B7B00C74CC4 /* liblnd.a in Frameworks */, CC9860B52A5F2E9100047BB1 /* Lndmobile.xcframework in Frameworks */, 4601BE89385A6489AED7ED72 /* libPods-BlixtWallet.a in Frameworks */, CC9860EE2A5F393500047BB1 /* libresolv.tbd in Frameworks */, @@ -112,6 +118,7 @@ 83CBB9F61A601CBA00E9B192 = { isa = PBXGroup; children = ( + CC855CF02CB68B7B00C74CC4 /* liblnd.a */, CC9861032A5F3A9000047BB1 /* BlixtWallet-Bridging-Header.h */, CC9860EF2A5F3A2400047BB1 /* LndMobile */, CC3585142A5F1AB5006924C2 /* Fonts */, @@ -137,6 +144,8 @@ CC9860EF2A5F3A2400047BB1 /* LndMobile */ = { isa = PBXGroup; children = ( + CC855CF52CB68FD000C74CC4 /* LndMobileToolsTurbo.h */, + CC855CF62CB68FD000C74CC4 /* LndMobileToolsTurbo.mm */, CC9860F42A5F3A3A00047BB1 /* lightning.pb.swift */, CC9860F82A5F3A3A00047BB1 /* Lnd.swift */, CC9860F22A5F3A3A00047BB1 /* LndMobile.m */, @@ -177,6 +186,7 @@ 514201472437B4B30078DB4F /* Resources */, 381D8A6E24576A4E00465D17 /* Bundle React Native code and images */, 20931586476EB512D27ACFDE /* [CP] Copy Pods Resources */, + 665AEB7FD4C7CFDC18702C26 /* [CP] Embed Pods Frameworks */, ); buildRules = ( ); @@ -321,6 +331,24 @@ shellPath = /bin/sh; shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native-macos/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native-macos/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n"; }; + 665AEB7FD4C7CFDC18702C26 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-BlixtWallet/Pods-BlixtWallet-frameworks.sh", + "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/macosx/hermes.framework", + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-BlixtWallet/Pods-BlixtWallet-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ @@ -329,6 +357,7 @@ buildActionMask = 2147483647; files = ( 514201582437B4B40078DB4F /* main.m in Sources */, + CC855CF72CB68FD000C74CC4 /* LndMobileToolsTurbo.mm in Sources */, CC9861002A5F3A3A00047BB1 /* walletunlocker.pb.swift in Sources */, CC9861012A5F3A3A00047BB1 /* Lnd.swift in Sources */, CC9861022A5F3A3A00047BB1 /* LndMobileTools.m in Sources */, @@ -366,7 +395,7 @@ CODE_SIGN_ENTITLEMENTS = "BlixtWallet/BlixtWallet-macOS.entitlements"; "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development"; CURRENT_PROJECT_VERSION = 41; - DEAD_CODE_STRIPPING = NO; + DEAD_CODE_STRIPPING = YES; DEBUG = true; DEVELOPMENT_TEAM = AT26Z24V2Q; FLAVOR = ""; @@ -375,6 +404,11 @@ "$(inherited)", "@executable_path/Frameworks", ); + LIBRARY_SEARCH_PATHS = ( + "$(SDKROOT)/usr/lib/swift", + "$(inherited)", + "$(PROJECT_DIR)", + ); MACOSX_DEPLOYMENT_TARGET = 11.0; MARKETING_VERSION = 0.7.0; OTHER_LDFLAGS = ( @@ -401,6 +435,7 @@ CODE_SIGN_ENTITLEMENTS = "BlixtWallet/BlixtWallet-macOS.entitlements"; "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development"; CURRENT_PROJECT_VERSION = 41; + DEAD_CODE_STRIPPING = YES; DEBUG = false; DEVELOPMENT_TEAM = AT26Z24V2Q; FLAVOR = ""; @@ -409,6 +444,11 @@ "$(inherited)", "@executable_path/Frameworks", ); + LIBRARY_SEARCH_PATHS = ( + "$(SDKROOT)/usr/lib/swift", + "$(inherited)", + "$(PROJECT_DIR)", + ); MACOSX_DEPLOYMENT_TARGET = 11.0; MARKETING_VERSION = 0.7.0; OTHER_LDFLAGS = ( @@ -491,7 +531,7 @@ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG"; - USE_HERMES = false; + USE_HERMES = true; }; name = Debug; }; @@ -556,7 +596,7 @@ OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; - USE_HERMES = false; + USE_HERMES = true; VALIDATE_PRODUCT = YES; }; name = Release; @@ -627,7 +667,7 @@ OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; - USE_HERMES = false; + USE_HERMES = true; }; name = "Debug Regtest"; }; @@ -641,7 +681,7 @@ CODE_SIGN_ENTITLEMENTS = "BlixtWallet/BlixtWallet-macOS.entitlements"; "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development"; CURRENT_PROJECT_VERSION = 41; - DEAD_CODE_STRIPPING = NO; + DEAD_CODE_STRIPPING = YES; DEBUG = true; DEVELOPMENT_TEAM = AT26Z24V2Q; FLAVOR = ""; @@ -650,6 +690,11 @@ "$(inherited)", "@executable_path/Frameworks", ); + LIBRARY_SEARCH_PATHS = ( + "$(SDKROOT)/usr/lib/swift", + "$(inherited)", + "$(PROJECT_DIR)", + ); MACOSX_DEPLOYMENT_TARGET = 11.0; MARKETING_VERSION = 0.7.0; OTHER_LDFLAGS = ( @@ -727,7 +772,7 @@ OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; - USE_HERMES = false; + USE_HERMES = true; VALIDATE_PRODUCT = YES; }; name = "Release Regtest"; @@ -742,6 +787,7 @@ CODE_SIGN_ENTITLEMENTS = "BlixtWallet/BlixtWallet-macOS.entitlements"; "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development"; CURRENT_PROJECT_VERSION = 41; + DEAD_CODE_STRIPPING = YES; DEBUG = false; DEVELOPMENT_TEAM = AT26Z24V2Q; FLAVOR = ""; @@ -750,6 +796,11 @@ "$(inherited)", "@executable_path/Frameworks", ); + LIBRARY_SEARCH_PATHS = ( + "$(SDKROOT)/usr/lib/swift", + "$(inherited)", + "$(PROJECT_DIR)", + ); MACOSX_DEPLOYMENT_TARGET = 11.0; MARKETING_VERSION = 0.7.0; OTHER_LDFLAGS = ( diff --git a/macos/BlixtWallet/BlixtWallet-macOS.entitlements b/macos/BlixtWallet/BlixtWallet-macOS.entitlements index 8918ea67a..ccf36bc59 100644 --- a/macos/BlixtWallet/BlixtWallet-macOS.entitlements +++ b/macos/BlixtWallet/BlixtWallet-macOS.entitlements @@ -8,6 +8,8 @@ com.apple.security.network.client + com.apple.security.network.server + com.apple.security.personal-information.location keychain-access-groups diff --git a/macos/Podfile b/macos/Podfile index ba8d8ccb3..7f2c779d3 100644 --- a/macos/Podfile +++ b/macos/Podfile @@ -24,7 +24,7 @@ target 'BlixtWallet' do use_react_native!( :path => '../node_modules/react-native-macos', - :hermes_enabled => false, + :hermes_enabled => true, :fabric_enabled => ENV['RCT_NEW_ARCH_ENABLED'] == '1', # An absolute path to your application root. :app_path => "#{Pod::Config.instance.installation_root}/.." diff --git a/macos/Podfile.lock b/macos/Podfile.lock index b1473dff9..350bae40b 100644 --- a/macos/Podfile.lock +++ b/macos/Podfile.lock @@ -1,9 +1,12 @@ PODS: - boost (1.84.0) - DoubleConversion (1.1.6) - - FBLazyVector (0.75.2) + - FBLazyVector (0.75.7) - fmt (9.1.0) - glog (0.3.5) + - hermes-engine (0.75.4): + - hermes-engine/Pre-built (= 0.75.4) + - hermes-engine/Pre-built (0.75.4) - RCT-Folly (2024.01.01.00): - boost - DoubleConversion @@ -20,34 +23,35 @@ PODS: - DoubleConversion - fmt (= 9.1.0) - glog - - RCTDeprecation (0.75.2) - - RCTRequired (0.75.2) - - RCTTypeSafety (0.75.2): - - FBLazyVector (= 0.75.2) - - RCTRequired (= 0.75.2) - - React-Core (= 0.75.2) - - React (0.75.2): - - React-Core (= 0.75.2) - - React-Core/DevSupport (= 0.75.2) - - React-Core/RCTWebSocket (= 0.75.2) - - React-RCTActionSheet (= 0.75.2) - - React-RCTAnimation (= 0.75.2) - - React-RCTBlob (= 0.75.2) - - React-RCTImage (= 0.75.2) - - React-RCTLinking (= 0.75.2) - - React-RCTNetwork (= 0.75.2) - - React-RCTSettings (= 0.75.2) - - React-RCTText (= 0.75.2) - - React-RCTVibration (= 0.75.2) - - React-callinvoker (0.75.2) - - React-Core (0.75.2): - - glog + - RCTDeprecation (0.75.7) + - RCTRequired (0.75.7) + - RCTTypeSafety (0.75.7): + - FBLazyVector (= 0.75.7) + - RCTRequired (= 0.75.7) + - React-Core (= 0.75.7) + - React (0.75.7): + - React-Core (= 0.75.7) + - React-Core/DevSupport (= 0.75.7) + - React-Core/RCTWebSocket (= 0.75.7) + - React-RCTActionSheet (= 0.75.7) + - React-RCTAnimation (= 0.75.7) + - React-RCTBlob (= 0.75.7) + - React-RCTImage (= 0.75.7) + - React-RCTLinking (= 0.75.7) + - React-RCTNetwork (= 0.75.7) + - React-RCTSettings (= 0.75.7) + - React-RCTText (= 0.75.7) + - React-RCTVibration (= 0.75.7) + - React-callinvoker (0.75.7) + - React-Core (0.75.7): + - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.75.2) + - React-Core/Default (= 0.75.7) - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -56,14 +60,15 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/CoreModulesHeaders (0.75.2): + - React-Core/CoreModulesHeaders (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - React-Core/Default - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -72,13 +77,14 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/Default (0.75.2): + - React-Core/Default (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -87,15 +93,16 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/DevSupport (0.75.2): + - React-Core/DevSupport (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.75.2) - - React-Core/RCTWebSocket (= 0.75.2) + - React-Core/Default (= 0.75.7) + - React-Core/RCTWebSocket (= 0.75.7) - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -104,14 +111,15 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTActionSheetHeaders (0.75.2): + - React-Core/RCTActionSheetHeaders (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - React-Core/Default - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -120,14 +128,15 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTAnimationHeaders (0.75.2): + - React-Core/RCTAnimationHeaders (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - React-Core/Default - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -136,14 +145,15 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTBlobHeaders (0.75.2): + - React-Core/RCTBlobHeaders (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - React-Core/Default - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -152,14 +162,15 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTImageHeaders (0.75.2): + - React-Core/RCTImageHeaders (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - React-Core/Default - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -168,14 +179,15 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTLinkingHeaders (0.75.2): + - React-Core/RCTLinkingHeaders (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - React-Core/Default - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -184,14 +196,15 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTNetworkHeaders (0.75.2): + - React-Core/RCTNetworkHeaders (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - React-Core/Default - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -200,14 +213,15 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTSettingsHeaders (0.75.2): + - React-Core/RCTSettingsHeaders (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - React-Core/Default - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -216,14 +230,15 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTTextHeaders (0.75.2): + - React-Core/RCTTextHeaders (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - React-Core/Default - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -232,14 +247,15 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTVibrationHeaders (0.75.2): + - React-Core/RCTVibrationHeaders (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - React-Core/Default - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -248,14 +264,15 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTWebSocket (0.75.2): + - React-Core/RCTWebSocket (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.75.2) + - React-Core/Default (= 0.75.7) - React-cxxreact - React-featureflags - - React-jsc + - React-hermes - React-jsi - React-jsiexecutor - React-jsinspector @@ -264,37 +281,39 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-CoreModules (0.75.2): + - React-CoreModules (0.75.7): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - - RCTTypeSafety (= 0.75.2) - - React-Core/CoreModulesHeaders (= 0.75.2) - - React-jsi (= 0.75.2) + - RCTTypeSafety (= 0.75.7) + - React-Core/CoreModulesHeaders (= 0.75.7) + - React-jsi (= 0.75.7) - React-jsinspector - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.75.2) + - React-RCTImage (= 0.75.7) - ReactCodegen - ReactCommon - SocketRocket (= 0.7.0) - - React-cxxreact (0.75.2): + - React-cxxreact (0.75.7): - boost - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.2) - - React-debug (= 0.75.2) - - React-jsi (= 0.75.2) + - React-callinvoker (= 0.75.7) + - React-debug (= 0.75.7) + - React-jsi (= 0.75.7) - React-jsinspector - - React-logger (= 0.75.2) - - React-perflogger (= 0.75.2) - - React-runtimeexecutor (= 0.75.2) - - React-debug (0.75.2) - - React-defaultsnativemodule (0.75.2): + - React-logger (= 0.75.7) + - React-perflogger (= 0.75.7) + - React-runtimeexecutor (= 0.75.7) + - React-debug (0.75.7) + - React-defaultsnativemodule (0.75.7): - DoubleConversion - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -307,7 +326,6 @@ PODS: - React-graphics - React-idlecallbacksnativemodule - React-ImageManager - - React-jsi - React-microtasksnativemodule - React-NativeModulesApple - React-RCTFabric @@ -317,9 +335,10 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-domnativemodule (0.75.2): + - React-domnativemodule (0.75.7): - DoubleConversion - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -330,7 +349,6 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -339,34 +357,34 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-Fabric (0.75.2): + - React-Fabric (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.75.2) - - React-Fabric/attributedstring (= 0.75.2) - - React-Fabric/componentregistry (= 0.75.2) - - React-Fabric/componentregistrynative (= 0.75.2) - - React-Fabric/components (= 0.75.2) - - React-Fabric/core (= 0.75.2) - - React-Fabric/dom (= 0.75.2) - - React-Fabric/imagemanager (= 0.75.2) - - React-Fabric/leakchecker (= 0.75.2) - - React-Fabric/mounting (= 0.75.2) - - React-Fabric/observers (= 0.75.2) - - React-Fabric/scheduler (= 0.75.2) - - React-Fabric/telemetry (= 0.75.2) - - React-Fabric/templateprocessor (= 0.75.2) - - React-Fabric/uimanager (= 0.75.2) + - React-Fabric/animations (= 0.75.7) + - React-Fabric/attributedstring (= 0.75.7) + - React-Fabric/componentregistry (= 0.75.7) + - React-Fabric/componentregistrynative (= 0.75.7) + - React-Fabric/components (= 0.75.7) + - React-Fabric/core (= 0.75.7) + - React-Fabric/dom (= 0.75.7) + - React-Fabric/imagemanager (= 0.75.7) + - React-Fabric/leakchecker (= 0.75.7) + - React-Fabric/mounting (= 0.75.7) + - React-Fabric/observers (= 0.75.7) + - React-Fabric/scheduler (= 0.75.7) + - React-Fabric/telemetry (= 0.75.7) + - React-Fabric/templateprocessor (= 0.75.7) + - React-Fabric/uimanager (= 0.75.7) - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -374,10 +392,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.75.2): + - React-Fabric/animations (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -386,7 +405,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -394,10 +412,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.75.2): + - React-Fabric/attributedstring (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -406,7 +425,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -414,10 +432,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.75.2): + - React-Fabric/componentregistry (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -426,7 +445,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -434,10 +452,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.75.2): + - React-Fabric/componentregistrynative (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -446,7 +465,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -454,22 +472,22 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.75.2): + - React-Fabric/components (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.75.2) - - React-Fabric/components/root (= 0.75.2) - - React-Fabric/components/view (= 0.75.2) + - React-Fabric/components/legacyviewmanagerinterop (= 0.75.7) + - React-Fabric/components/root (= 0.75.7) + - React-Fabric/components/view (= 0.75.7) - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -477,10 +495,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.75.2): + - React-Fabric/components/legacyviewmanagerinterop (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -489,7 +508,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -497,10 +515,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.75.2): + - React-Fabric/components/root (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -509,7 +528,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -517,10 +535,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.75.2): + - React-Fabric/components/view (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -529,7 +548,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -538,10 +556,11 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.75.2): + - React-Fabric/core (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -550,7 +569,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -558,10 +576,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/dom (0.75.2): + - React-Fabric/dom (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -570,7 +589,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -578,10 +596,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.75.2): + - React-Fabric/imagemanager (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -590,7 +609,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -598,10 +616,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.75.2): + - React-Fabric/leakchecker (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -610,7 +629,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -618,10 +636,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.75.2): + - React-Fabric/mounting (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -630,7 +649,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -638,20 +656,20 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers (0.75.2): + - React-Fabric/observers (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.75.2) + - React-Fabric/observers/events (= 0.75.7) - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -659,10 +677,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers/events (0.75.2): + - React-Fabric/observers/events (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -671,7 +690,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -679,10 +697,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.75.2): + - React-Fabric/scheduler (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -692,7 +711,6 @@ PODS: - React-Fabric/observers/events - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -701,10 +719,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.75.2): + - React-Fabric/telemetry (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -713,7 +732,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -721,10 +739,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.75.2): + - React-Fabric/templateprocessor (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -733,7 +752,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -741,20 +759,20 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.75.2): + - React-Fabric/uimanager (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.75.2) + - React-Fabric/uimanager/consistency (= 0.75.7) - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -763,10 +781,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager/consistency (0.75.2): + - React-Fabric/uimanager/consistency (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -775,7 +794,6 @@ PODS: - React-debug - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -784,10 +802,11 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricComponents (0.75.2): + - React-FabricComponents (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -795,11 +814,10 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.75.2) - - React-FabricComponents/textlayoutmanager (= 0.75.2) + - React-FabricComponents/components (= 0.75.7) + - React-FabricComponents/textlayoutmanager (= 0.75.7) - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -809,10 +827,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components (0.75.2): + - React-FabricComponents/components (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -820,18 +839,17 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.75.2) - - React-FabricComponents/components/iostextinput (= 0.75.2) - - React-FabricComponents/components/modal (= 0.75.2) - - React-FabricComponents/components/rncore (= 0.75.2) - - React-FabricComponents/components/safeareaview (= 0.75.2) - - React-FabricComponents/components/scrollview (= 0.75.2) - - React-FabricComponents/components/text (= 0.75.2) - - React-FabricComponents/components/textinput (= 0.75.2) - - React-FabricComponents/components/unimplementedview (= 0.75.2) + - React-FabricComponents/components/inputaccessory (= 0.75.7) + - React-FabricComponents/components/iostextinput (= 0.75.7) + - React-FabricComponents/components/modal (= 0.75.7) + - React-FabricComponents/components/rncore (= 0.75.7) + - React-FabricComponents/components/safeareaview (= 0.75.7) + - React-FabricComponents/components/scrollview (= 0.75.7) + - React-FabricComponents/components/text (= 0.75.7) + - React-FabricComponents/components/textinput (= 0.75.7) + - React-FabricComponents/components/unimplementedview (= 0.75.7) - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -841,10 +859,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/inputaccessory (0.75.2): + - React-FabricComponents/components/inputaccessory (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -854,7 +873,6 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -864,10 +882,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/iostextinput (0.75.2): + - React-FabricComponents/components/iostextinput (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -877,7 +896,6 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -887,10 +905,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/modal (0.75.2): + - React-FabricComponents/components/modal (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -900,7 +919,6 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -910,10 +928,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/rncore (0.75.2): + - React-FabricComponents/components/rncore (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -923,7 +942,6 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -933,10 +951,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/safeareaview (0.75.2): + - React-FabricComponents/components/safeareaview (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -946,7 +965,6 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -956,10 +974,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/scrollview (0.75.2): + - React-FabricComponents/components/scrollview (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -969,7 +988,6 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -979,10 +997,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/text (0.75.2): + - React-FabricComponents/components/text (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -992,7 +1011,6 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -1002,10 +1020,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/textinput (0.75.2): + - React-FabricComponents/components/textinput (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1015,7 +1034,6 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -1025,10 +1043,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/unimplementedview (0.75.2): + - React-FabricComponents/components/unimplementedview (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1038,7 +1057,6 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -1048,10 +1066,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/textlayoutmanager (0.75.2): + - React-FabricComponents/textlayoutmanager (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1061,7 +1080,6 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -1071,28 +1089,29 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricImage (0.75.2): + - React-FabricImage (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - - RCTRequired (= 0.75.2) - - RCTTypeSafety (= 0.75.2) + - RCTRequired (= 0.75.7) + - RCTTypeSafety (= 0.75.7) - React-Fabric - React-graphics - React-ImageManager - - React-jsc - React-jsi - - React-jsiexecutor (= 0.75.2) + - React-jsiexecutor (= 0.75.7) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-featureflags (0.75.2) - - React-featureflagsnativemodule (0.75.2): + - React-featureflags (0.75.7) + - React-featureflagsnativemodule (0.75.7): - DoubleConversion - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1102,7 +1121,6 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -1111,7 +1129,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-graphics (0.75.2): + - React-graphics (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1120,9 +1138,22 @@ PODS: - React-jsi - React-jsiexecutor - React-utils - - React-idlecallbacksnativemodule (0.75.2): + - React-hermes (0.75.7): - DoubleConversion + - fmt (= 9.1.0) - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact (= 0.75.7) + - React-jsi + - React-jsiexecutor (= 0.75.7) + - React-jsinspector + - React-perflogger (= 0.75.7) + - React-runtimeexecutor + - React-idlecallbacksnativemodule (0.75.7): + - DoubleConversion + - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1132,7 +1163,6 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -1142,7 +1172,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-ImageManager (0.75.2): + - React-ImageManager (0.75.7): - glog - RCT-Folly/Fabric - React-Core/Default @@ -1151,47 +1181,46 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jsc (0.75.2): - - React-jsc/Fabric (= 0.75.2) - - React-jsi (= 0.75.2) - - React-jsc/Fabric (0.75.2): - - React-jsi (= 0.75.2) - - React-jserrorhandler (0.75.2): + - React-jserrorhandler (0.75.7): - RCT-Folly/Fabric (= 2024.01.01.00) - React-debug - React-jsi - - React-jsi (0.75.2): + - React-jsi (0.75.7): - boost - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-jsiexecutor (0.75.2): + - React-jsiexecutor (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.75.2) - - React-jsi (= 0.75.2) + - React-cxxreact (= 0.75.7) + - React-jsi (= 0.75.7) - React-jsinspector - - React-perflogger (= 0.75.2) - - React-jsinspector (0.75.2): + - React-perflogger (= 0.75.7) + - React-jsinspector (0.75.7): - DoubleConversion - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-featureflags - React-jsi - - React-runtimeexecutor (= 0.75.2) - - React-jsitracing (0.75.2): + - React-runtimeexecutor (= 0.75.7) + - React-jsitracing (0.75.7): - React-jsi - - React-logger (0.75.2): + - React-logger (0.75.7): - glog - - React-Mapbuffer (0.75.2): + - React-Mapbuffer (0.75.7): - glog - React-debug - - React-microtasksnativemodule (0.75.2): + - React-microtasksnativemodule (0.75.7): - DoubleConversion - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1201,7 +1230,6 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -1216,9 +1244,31 @@ PODS: - React-Core - react-native-sqlite-storage (6.0.1): - React-Core + - react-native-turbo-lnd (0.1.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - react-native-webview (13.12.1): - DoubleConversion - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1228,7 +1278,6 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -1237,25 +1286,25 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-nativeconfig (0.75.2) - - React-NativeModulesApple (0.75.2): + - React-nativeconfig (0.75.7) + - React-NativeModulesApple (0.75.7): - glog + - hermes-engine - React-callinvoker - React-Core - React-cxxreact - - React-jsc - React-jsi - React-jsinspector - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.75.2) - - React-performancetimeline (0.75.2): + - React-perflogger (0.75.7) + - React-performancetimeline (0.75.7): - RCT-Folly (= 2024.01.01.00) - React-cxxreact - - React-RCTActionSheet (0.75.2): - - React-Core/RCTActionSheetHeaders (= 0.75.2) - - React-RCTAnimation (0.75.2): + - React-RCTActionSheet (0.75.7): + - React-Core/RCTActionSheetHeaders (= 0.75.7) + - React-RCTAnimation (0.75.7): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTAnimationHeaders @@ -1263,7 +1312,7 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTAppDelegate (0.75.2): + - React-RCTAppDelegate (0.75.7): - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1274,7 +1323,7 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-jsc + - React-hermes - React-nativeconfig - React-NativeModulesApple - React-RCTFabric @@ -1283,13 +1332,15 @@ PODS: - React-rendererdebug - React-RuntimeApple - React-RuntimeCore + - React-RuntimeHermes - React-runtimescheduler - React-utils - ReactCodegen - ReactCommon - - React-RCTBlob (0.75.2): + - React-RCTBlob (0.75.7): - DoubleConversion - fmt (= 9.1.0) + - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-Core/RCTBlobHeaders - React-Core/RCTWebSocket @@ -1299,8 +1350,9 @@ PODS: - React-RCTNetwork - ReactCodegen - ReactCommon - - React-RCTFabric (0.75.2): + - React-RCTFabric (0.75.7): - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-Core - React-debug @@ -1310,7 +1362,6 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - React-jsc - React-jsi - React-jsinspector - React-nativeconfig @@ -1322,7 +1373,7 @@ PODS: - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.75.2): + - React-RCTImage (0.75.7): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTImageHeaders @@ -1331,14 +1382,14 @@ PODS: - React-RCTNetwork - ReactCodegen - ReactCommon - - React-RCTLinking (0.75.2): - - React-Core/RCTLinkingHeaders (= 0.75.2) - - React-jsi (= 0.75.2) + - React-RCTLinking (0.75.7): + - React-Core/RCTLinkingHeaders (= 0.75.7) + - React-jsi (= 0.75.7) - React-NativeModulesApple - ReactCodegen - ReactCommon - - ReactCommon/turbomodule/core (= 0.75.2) - - React-RCTNetwork (0.75.2): + - ReactCommon/turbomodule/core (= 0.75.7) + - React-RCTNetwork (0.75.7): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTNetworkHeaders @@ -1346,7 +1397,7 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTSettings (0.75.2): + - React-RCTSettings (0.75.7): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTSettingsHeaders @@ -1354,30 +1405,30 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTText (0.75.2): - - React-Core/RCTTextHeaders (= 0.75.2) + - React-RCTText (0.75.7): + - React-Core/RCTTextHeaders (= 0.75.7) - Yoga - - React-RCTVibration (0.75.2): + - React-RCTVibration (0.75.7): - RCT-Folly (= 2024.01.01.00) - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-rendererconsistency (0.75.2) - - React-rendererdebug (0.75.2): + - React-rendererconsistency (0.75.7) + - React-rendererdebug (0.75.7): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - React-debug - - React-rncore (0.75.2) - - React-RuntimeApple (0.75.2): + - React-rncore (0.75.7) + - React-RuntimeApple (0.75.7): + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-callinvoker - React-Core/Default - React-CoreModules - React-cxxreact - - React-jsc - React-jserrorhandler - React-jsi - React-jsiexecutor @@ -1387,14 +1438,15 @@ PODS: - React-RCTFabric - React-RuntimeCore - React-runtimeexecutor + - React-RuntimeHermes - React-runtimescheduler - React-utils - - React-RuntimeCore (0.75.2): + - React-RuntimeCore (0.75.7): - glog + - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-cxxreact - React-featureflags - - React-jsc - React-jserrorhandler - React-jsi - React-jsiexecutor @@ -1402,30 +1454,42 @@ PODS: - React-runtimeexecutor - React-runtimescheduler - React-utils - - React-runtimeexecutor (0.75.2): - - React-jsi (= 0.75.2) - - React-runtimescheduler (0.75.2): + - React-runtimeexecutor (0.75.7): + - React-jsi (= 0.75.7) + - React-RuntimeHermes (0.75.7): + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-featureflags + - React-hermes + - React-jsi + - React-jsinspector + - React-jsitracing + - React-nativeconfig + - React-RuntimeCore + - React-utils + - React-runtimescheduler (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-callinvoker - React-cxxreact - React-debug - React-featureflags - - React-jsc - React-jsi - React-rendererconsistency - React-rendererdebug - React-runtimeexecutor - React-utils - - React-utils (0.75.2): + - React-utils (0.75.7): - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-debug - - React-jsc - - React-jsi (= 0.75.2) - - ReactCodegen (0.75.2): + - React-jsi (= 0.75.7) + - ReactCodegen (0.75.7): - DoubleConversion - glog + - hermes-engine - RCT-Folly - RCTRequired - RCTTypeSafety @@ -1435,7 +1499,6 @@ PODS: - React-FabricImage - React-featureflags - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-NativeModulesApple @@ -1443,52 +1506,94 @@ PODS: - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - ReactCommon (0.75.2): - - ReactCommon/turbomodule (= 0.75.2) - - ReactCommon/turbomodule (0.75.2): + - ReactCommon (0.75.7): + - ReactCommon/turbomodule (= 0.75.7) + - ReactCommon/turbomodule (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.2) - - React-cxxreact (= 0.75.2) - - React-jsi (= 0.75.2) - - React-logger (= 0.75.2) - - React-perflogger (= 0.75.2) - - ReactCommon/turbomodule/bridging (= 0.75.2) - - ReactCommon/turbomodule/core (= 0.75.2) - - ReactCommon/turbomodule/bridging (0.75.2): + - React-callinvoker (= 0.75.7) + - React-cxxreact (= 0.75.7) + - React-jsi (= 0.75.7) + - React-logger (= 0.75.7) + - React-perflogger (= 0.75.7) + - ReactCommon/turbomodule/bridging (= 0.75.7) + - ReactCommon/turbomodule/core (= 0.75.7) + - ReactCommon/turbomodule/bridging (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.2) - - React-cxxreact (= 0.75.2) - - React-jsi (= 0.75.2) - - React-logger (= 0.75.2) - - React-perflogger (= 0.75.2) - - ReactCommon/turbomodule/core (0.75.2): + - React-callinvoker (= 0.75.7) + - React-cxxreact (= 0.75.7) + - React-jsi (= 0.75.7) + - React-logger (= 0.75.7) + - React-perflogger (= 0.75.7) + - ReactCommon/turbomodule/core (0.75.7): - DoubleConversion - fmt (= 9.1.0) - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.75.2) - - React-cxxreact (= 0.75.2) - - React-debug (= 0.75.2) - - React-featureflags (= 0.75.2) - - React-jsi (= 0.75.2) - - React-logger (= 0.75.2) - - React-perflogger (= 0.75.2) - - React-utils (= 0.75.2) + - React-callinvoker (= 0.75.7) + - React-cxxreact (= 0.75.7) + - React-debug (= 0.75.7) + - React-featureflags (= 0.75.7) + - React-jsi (= 0.75.7) + - React-logger (= 0.75.7) + - React-perflogger (= 0.75.7) + - React-utils (= 0.75.7) - RNCAsyncStorage (2.0.0): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety - React-Core - - RNCClipboard (1.14.1): + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - RNCClipboard (1.14.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - RNFS (2.20.0): - React-Core - - RNGestureHandler (2.19.0): + - RNGestureHandler (2.20.0): - DoubleConversion - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1498,7 +1603,6 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -1512,6 +1616,7 @@ PODS: - RNReanimated (3.15.1): - DoubleConversion - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1521,7 +1626,6 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -1535,6 +1639,7 @@ PODS: - RNReanimated/reanimated (3.15.1): - DoubleConversion - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1544,7 +1649,6 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -1556,6 +1660,7 @@ PODS: - RNReanimated/worklets (3.15.1): - DoubleConversion - glog + - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1565,7 +1670,6 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -1577,7 +1681,48 @@ PODS: - RNSecureRandom (1.0.1): - React - RNSVG (15.6.0): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - RNSVG/common (= 15.6.0) + - Yoga + - RNSVG/common (15.6.0): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - SocketRocket (0.7.0) - SwiftProtobuf (1.22.1) - Yoga (0.0.0) @@ -1588,6 +1733,7 @@ DEPENDENCIES: - FBLazyVector (from `../node_modules/react-native-macos/Libraries/FBLazyVector`) - fmt (from `../node_modules/react-native-macos/third-party-podspecs/fmt.podspec`) - glog (from `../node_modules/react-native-macos/third-party-podspecs/glog.podspec`) + - hermes-engine (from `../node_modules/react-native-macos/sdks/hermes-engine/hermes-engine.podspec`) - RCT-Folly (from `../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec`) - RCT-Folly/Fabric (from `../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec`) - RCTDeprecation (from `../node_modules/react-native-macos/ReactApple/Libraries/RCTFoundation/RCTDeprecation`) @@ -1608,9 +1754,9 @@ DEPENDENCIES: - React-featureflags (from `../node_modules/react-native-macos/ReactCommon/react/featureflags`) - React-featureflagsnativemodule (from `../node_modules/react-native-macos/ReactCommon/react/nativemodule/featureflags`) - React-graphics (from `../node_modules/react-native-macos/ReactCommon/react/renderer/graphics`) + - React-hermes (from `../node_modules/react-native-macos/ReactCommon/hermes`) - React-idlecallbacksnativemodule (from `../node_modules/react-native-macos/ReactCommon/react/nativemodule/idlecallbacks`) - React-ImageManager (from `../node_modules/react-native-macos/ReactCommon/react/renderer/imagemanager/platform/ios`) - - React-jsc (from `../node_modules/react-native-macos/ReactCommon/jsc`) - React-jserrorhandler (from `../node_modules/react-native-macos/ReactCommon/jserrorhandler`) - React-jsi (from `../node_modules/react-native-macos/ReactCommon/jsi`) - React-jsiexecutor (from `../node_modules/react-native-macos/ReactCommon/jsiexecutor`) @@ -1622,6 +1768,7 @@ DEPENDENCIES: - react-native-build-config (from `../node_modules/react-native-build-config`) - "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)" - react-native-sqlite-storage (from `../node_modules/react-native-sqlite-storage`) + - react-native-turbo-lnd (from `../node_modules/react-native-turbo-lnd`) - react-native-webview (from `../node_modules/react-native-webview`) - React-nativeconfig (from `../node_modules/react-native-macos/ReactCommon`) - React-NativeModulesApple (from `../node_modules/react-native-macos/ReactCommon/react/nativemodule/core/platform/ios`) @@ -1644,6 +1791,7 @@ DEPENDENCIES: - React-RuntimeApple (from `../node_modules/react-native-macos/ReactCommon/react/runtime/platform/ios`) - React-RuntimeCore (from `../node_modules/react-native-macos/ReactCommon/react/runtime`) - React-runtimeexecutor (from `../node_modules/react-native-macos/ReactCommon/runtimeexecutor`) + - React-RuntimeHermes (from `../node_modules/react-native-macos/ReactCommon/react/runtime`) - React-runtimescheduler (from `../node_modules/react-native-macos/ReactCommon/react/renderer/runtimescheduler`) - React-utils (from `../node_modules/react-native-macos/ReactCommon/react/utils`) - ReactCodegen (from `build/generated/ios`) @@ -1675,6 +1823,9 @@ EXTERNAL SOURCES: :podspec: "../node_modules/react-native-macos/third-party-podspecs/fmt.podspec" glog: :podspec: "../node_modules/react-native-macos/third-party-podspecs/glog.podspec" + hermes-engine: + :podspec: "../node_modules/react-native-macos/sdks/hermes-engine/hermes-engine.podspec" + :tag: hermes-2024-08-15-RNv0.75.1-4b3bf912cc0f705b51b71ce1a5b8bd79b93a451b RCT-Folly: :podspec: "../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec" RCTDeprecation: @@ -1711,12 +1862,12 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-macos/ReactCommon/react/nativemodule/featureflags" React-graphics: :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/graphics" + React-hermes: + :path: "../node_modules/react-native-macos/ReactCommon/hermes" React-idlecallbacksnativemodule: :path: "../node_modules/react-native-macos/ReactCommon/react/nativemodule/idlecallbacks" React-ImageManager: :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/imagemanager/platform/ios" - React-jsc: - :path: "../node_modules/react-native-macos/ReactCommon/jsc" React-jserrorhandler: :path: "../node_modules/react-native-macos/ReactCommon/jserrorhandler" React-jsi: @@ -1739,6 +1890,8 @@ EXTERNAL SOURCES: :path: "../node_modules/@react-native-community/netinfo" react-native-sqlite-storage: :path: "../node_modules/react-native-sqlite-storage" + react-native-turbo-lnd: + :path: "../node_modules/react-native-turbo-lnd" react-native-webview: :path: "../node_modules/react-native-webview" React-nativeconfig: @@ -1783,6 +1936,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-macos/ReactCommon/react/runtime" React-runtimeexecutor: :path: "../node_modules/react-native-macos/ReactCommon/runtimeexecutor" + React-RuntimeHermes: + :path: "../node_modules/react-native-macos/ReactCommon/react/runtime" React-runtimescheduler: :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/runtimescheduler" React-utils: @@ -1815,79 +1970,82 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: boost: 78c06792d4bc8e05ba232b20737af9883a947a51 DoubleConversion: e9fd6969c78f190642ac8adbd3a5ac37995620dc - FBLazyVector: fbb708cf72e32fd5fab46ef3dd357d2169ae8b11 + FBLazyVector: 46e5a1c41e07d8aa942600f4c3e531c331ce2ad4 fmt: c32f09ca7679bf28db6ba79e474dab38daa634a1 glog: f12b70f4104265bf944bf5800b4f85034eba0ea7 + hermes-engine: ea92f60f37dba025e293cbe4b4a548fd26b610a0 RCT-Folly: 693a1865d476549c2b4a788ec924ce59dd7cb8cb - RCTDeprecation: 34cbf122b623037ea9facad2e92e53434c5c7422 - RCTRequired: 1bce8ffb05578b8081857f590f873cc7f11ab197 - RCTTypeSafety: e6479df9e74eb6d27e9488b48fadea68400979ff - React: 07aba0e111060add1285342d146a7e1809af14b2 - React-callinvoker: db83af46d2966e7990ae455eff7379246d831710 - React-Core: e7c3ef0eefdf1e936e15ebc83d44d676728b1e1c - React-CoreModules: b2060de3ea7d6c646cd6cb87ad20b837baae3a47 - React-cxxreact: c0f535cdfdcd8de7361a241200d933c4528ef89f - React-debug: f09850d67cc039c96849e6ed3cc0d2d7a6aba499 - React-defaultsnativemodule: 1225f65e8c4d0ce1b5ebc5a418f37c75ec10f11c - React-domnativemodule: 0d48769b2374297a0df249c4a9da2514c4ac08a8 - React-Fabric: 761850c7fa13519451b3ad4ada07a85776912e08 - React-FabricComponents: e44d9c317775dabd8d8d735a7d7700c2b08cd87b - React-FabricImage: 85712e461059c982ebf4600b5818440c0a1469ee - React-featureflags: f02c57dcb629d4784ca2a252e08e1433f9ca78fd - React-featureflagsnativemodule: fb427e59e7c418e6d804c810dbe37bed1a42cb61 - React-graphics: abc8bf6a148007f8910c5111ff05045dfdccaf60 - React-idlecallbacksnativemodule: dc9e2603c469e795f01cca225593b66912790051 - React-ImageManager: 3edd58a9ed9ce4fde0b9f19e24e3b5f824870093 - React-jsc: a2c2d385dddf688047276b7b80f42c59b8040186 - React-jserrorhandler: e548eff0efa0f6e31ebe41f7e541c62cb971d4a6 - React-jsi: 5297b035d530a0ac2afc817041c51c42be0119ee - React-jsiexecutor: 59250398091aa578d2d2c6c1f9be0ad50004b8e5 - React-jsinspector: 3b9725f406ebe68620f6105f13ff3b522d654431 - React-jsitracing: 82d3c12937b3c295fd3f3ee11eb86f9a0973a70a - React-logger: 2c14393411e3e7f12b614e69d66c322183714d74 - React-Mapbuffer: cc08b4ae7004b4a7116525b5ef0602fd0095ece8 - React-microtasksnativemodule: c003374c23011e6b30c474bf8c1209c82205fc99 + RCTDeprecation: 2d6a0d6124d7501ed1b30ccfcf080466d0355473 + RCTRequired: 43aa20c281bd3aefe134fcca5bb9a2c855767156 + RCTTypeSafety: f899ffcf9232f4ceae9aca08b68f9b3a0a0c2284 + React: cba790af63d5bf57cddc105aa49c11615d5e39b9 + React-callinvoker: 48b6e5235fba6add6f32af43523a6e18778caee0 + React-Core: 7f6d5eaca613952918ef38d84c82a74b10020127 + React-CoreModules: 0593d7d4fabb2f3f5a9ded1b4106c6042a07f187 + React-cxxreact: eb5d50e14153d24d03ad13c53fa0b5ac4a8df1a0 + React-debug: 3e9d2089800994518f04042c8fdd95850dc65f95 + React-defaultsnativemodule: d65ee5e5f5c0598fc00c887d805f665bab0a0bf4 + React-domnativemodule: d439089b580d8ad9473a41e89164f26ac09c64d2 + React-Fabric: 1916d4c742b3f5ad421cc9be652eb91efeba237f + React-FabricComponents: 19dcf91328a74bf3c85bcea6e18b4d04882464f2 + React-FabricImage: 56848c24934fdb571c1c98e699a25e8876a5b5d4 + React-featureflags: e86b944e477cf987d6aa6454843974e1b2235dc7 + React-featureflagsnativemodule: 4789cab865e683c8833beffef8a68c99a6f9c1e2 + React-graphics: 621f8b04f26dbff7b5f7348ebf0913b8a2af1027 + React-hermes: 3b3360a3983a4a7dbfc593555c44c0669964a84f + React-idlecallbacksnativemodule: c32b9016ad0ea5f21beb3b345c2780eef3ebc14b + React-ImageManager: 2e1ef64879dad5889c5e74eafe31cadd89f9e746 + React-jserrorhandler: e3d39973abdbcadc7b25485bcf6f5b683786bc72 + React-jsi: d21fd2d219147072479eed2cb4c8d86610640b55 + React-jsiexecutor: 3736cebff99a1962d34c676a6843e04fc197583e + React-jsinspector: 2e44f998daca8865a81dce294753a85f29442794 + React-jsitracing: 447f2bc3050b4cf0c798489c020e11533e416587 + React-logger: 9a8faf0d8a1056968a120e89b05bbc73f159d151 + React-Mapbuffer: 1989e6df5ae4d9364c56cc6e3882368a2d56c0fc + React-microtasksnativemodule: e4d52c400726e9cda9208808c1799eda439d403b react-native-build-config: d2d6891311ca2e0fa7ca7eeb4324a768e63e485c react-native-netinfo: 076df4f9b07f6670acf4ce9a75aac8d34c2e2ccc react-native-sqlite-storage: f6d515e1c446d1e6d026aa5352908a25d4de3261 - react-native-webview: 138218b03b376ddfa4646cfeb74d350b018b541f - React-nativeconfig: 6930ff400c6cedf3b907406647294530e02a2ed0 - React-NativeModulesApple: 2c093cc32224d8cbeb418ece9bf3e2ee334e8102 - React-perflogger: aa21980335bf4aef93ef4a085db7903e9bfe00dc - React-performancetimeline: bf88451e31b0925c34c1b9601cde682c77ecd999 - React-RCTActionSheet: a53e3b31216f5375bfb76d5a944edf018041625a - React-RCTAnimation: 06e52d29ab3c74454a80ba026d6d55a00d0cc7c1 - React-RCTAppDelegate: 94b1261c944f137b921d2c96436ac0c85f4de608 - React-RCTBlob: ecabfbcf4cb77a13d4e7c4ac5ad58ef0f89c37ce - React-RCTFabric: 6ab298344b41626ec693569ec8497b1b66aecabe - React-RCTImage: bc5971e58e60bfa67c758246d4466de8d5081f21 - React-RCTLinking: 49a0c00bcf76229131126693f04f6863079f5812 - React-RCTNetwork: 36047d714a8e17f764580248eae9b7c7dee37404 - React-RCTSettings: 623e0e66308f0f40623a2f2ae25633387ed9fa92 - React-RCTText: e9790491839a332321dfe0194694222e0bb3e258 - React-RCTVibration: 701b889b8fe06f090fd99f4879aff3256c3fcf72 - React-rendererconsistency: 789ae521100d598ddabb5a449ebc421c6623570e - React-rendererdebug: 5e1caa31988e73d3997a48d7f794b1bb0c78d645 - React-rncore: 7d6fa83aa5b35ec035a7a5cadb357113d54a38f6 - React-RuntimeApple: a7f5afce4c5bbaf3f8f3769ec0669ac670429c7a - React-RuntimeCore: 798c8894ca8be1533dc34b546f95a30c064c83e3 - React-runtimeexecutor: daffb96e8f18141f0863aff48e1719919932c95a - React-runtimescheduler: 264151fe17d7e2fffae338d6eab02ebcfd56d968 - React-utils: c57bfb3867bcffe9e71bc1f96f432c02552cab27 - ReactCodegen: d45a6853dda6bbcc610db0a14e48ea20dd79f157 - ReactCommon: 4d523033c6d27e1b1c36814a3864e1e15969e2e4 - RNCAsyncStorage: d35c79ffba52c1013013e16b1fc295aec2feabb6 - RNCClipboard: 0a720adef5ec193aa0e3de24c3977222c7e52a37 + react-native-turbo-lnd: fe620c96be53dda0d7975b04f9a678683ecb2082 + react-native-webview: 102c402ca00dacf03760cedc28bc4ca83ee2cfa2 + React-nativeconfig: 12ca23c5d79829b3dd0e38bed71e77200dd5382c + React-NativeModulesApple: 6a1eefad86f188520ed174d0542aca5870c4aabe + React-perflogger: 5ccf57d3ddf5d70f4bbb639faa378665a9e87c64 + React-performancetimeline: 6fb4381f10a759ceed4872c173ce130f658e075a + React-RCTActionSheet: 9a8dc94d9b4919e72231e2079c52871f9806b839 + React-RCTAnimation: 340d4b807a4b322ebb07bc397ec59eefa2e5ec0c + React-RCTAppDelegate: 5ff0b1997e5f292f774145ef7a14d1d0cfa7a9d7 + React-RCTBlob: 25ab2f5623bb85409af805c50c0c9e167f132777 + React-RCTFabric: 27893089c2cd97f38e9bc0c4c2d449872972c268 + React-RCTImage: b0380cabd0e5c75f38456c70ee3582fa2458a3a1 + React-RCTLinking: 3b1d25aad3628c52afc540977278c62252db563e + React-RCTNetwork: 8db3913be86c37bbe1e8753a4d7eeac259b6fcca + React-RCTSettings: 30ffa31dd0e60b6005df7a2816819445285bdb09 + React-RCTText: 019fabc5429cec5906926c1fdbaaaa16d3c13b6b + React-RCTVibration: 1d54cd334b22ac2481afaf04bcdde7f923dfc352 + React-rendererconsistency: 18fcd55d2d83428d56eb0e496b472e1752d10b7c + React-rendererdebug: bb3fadb8114997545398c93ed133a3d475556f28 + React-rncore: 59cfc8a8edcb4fdbd9ba60746635ed3948e70176 + React-RuntimeApple: f264b56557658b4bb7c7d24482025e703b0b120a + React-RuntimeCore: 211c5b9b37c7e520eaca0078619b5c8f45ab2299 + React-runtimeexecutor: d163f3fbeb78dcc37e9d4ea0298b79e610e46a9f + React-RuntimeHermes: e7acd527927f088670a278d4a8494e9cda149137 + React-runtimescheduler: 45db7637caae1c002e9fec71039ddc7d4a216640 + React-utils: ee0c4c8682428a08d72fb2589a7f7bccf97cff30 + ReactCodegen: 918a7d3252d42088cea5ac6b043e354d9f71084c + ReactCommon: 3f7340b4862eb4740b44ce75192be7a95c943e20 + RNCAsyncStorage: 597673c6086d359029afefef8fd5859f1f35ab87 + RNCClipboard: e55ecafbf4e0e42409391a98aceea76278699036 RNFS: 4ac0f0ea233904cb798630b3c077808c06931688 - RNGestureHandler: 4d41d91b91403421290bc8ee60aada60a03957d5 + RNGestureHandler: c374c750a0a9bacd95f5c740d146ab9428549d6b RNKeychain: bfe3d12bf4620fe488771c414530bf16e88f3678 - RNReanimated: 5aed0da28bb070a6d75c29fccc847186c37a50a3 + RNReanimated: 76901886830e1032f16bbf820153f7dc3f02d51d RNSecureRandom: 7b1df97e96cde33fccc6b64ed4072592fc06627c - RNSVG: 5da7a24f31968ec74f0b091e3440080f347e279b + RNSVG: 1079f96b39a35753d481a20e30603fd6fc4f6fa9 SocketRocket: 9ee265c4b5ae2382d18e4ee1d2dd2d7af0ff1ab5 SwiftProtobuf: 7773c4e96a99d7b8ab7cda0fc30a883732ff93b1 - Yoga: 9236ddcafb7eec6ac199bb61b38299054ba4c6f7 + Yoga: fa9f3b5766d4b47da89a5c504d78a65f5c37db69 -PODFILE CHECKSUM: 27c9c2155ce99eb0e658680c6df7e8b9089df727 +PODFILE CHECKSUM: d00a49ad1096b0a8177a14828ffeecb6186e3d47 COCOAPODS: 1.14.3 diff --git a/package.json b/package.json index cd041d06d..e1c70c78e 100644 --- a/package.json +++ b/package.json @@ -69,6 +69,7 @@ "@react-native-community/push-notification-ios": "^1.11.0", "@react-native-community/slider": "4.5.2", "@react-native-google-signin/google-signin": "13.0.1", + "@react-native/gradle-plugin": "0.76.1", "@react-navigation/bottom-tabs": "7.0.0-rc.30", "@react-navigation/drawer": "7.0.0-rc.28", "@react-navigation/native": "7.0.0-rc.18", @@ -121,6 +122,7 @@ "react-native-keyboard-aware-scroll-view": "^0.9.5", "react-native-keychain": "^8.1.2", "react-native-linear-gradient": "^2.8.3", + "react-native-macos": "^0.75.7", "react-native-maps": "1.18.0", "react-native-modal": "^13.0.1", "react-native-paper": "5.12.5", diff --git a/src/components/Pincode.tsx b/src/components/Pincode.tsx index f587456bc..062435481 100644 --- a/src/components/Pincode.tsx +++ b/src/components/Pincode.tsx @@ -4,8 +4,11 @@ import { View, Text, Button, Icon } from "native-base"; import color from "color"; import * as Animatable from "react-native-animatable"; import Container from "../components/Container"; -import ReactNativeHapticFeedback from "react-native-haptic-feedback"; +let ReactNativeHapticFeedback; +if (PLATFORM === "android" || PLATFORM === "ios") { + ReactNativeHapticFeedback = require("react-native-haptic-feedback"); +} import { blixtTheme } from "../native-base-theme/variables/commonColor"; import { smallScreen } from "../utils/device"; @@ -64,7 +67,7 @@ export default function Pincode({ onTryCode, textAction }: IPincode) { useEffect(() => { if (code.length === 6) { (async () => { - if (!await onTryCode(code.join(""))) { + if (!(await onTryCode(code.join("")))) { setTimeout(() => pincodeText!.current!.shake!(950), 1); if (PLATFORM === "android") { Vibration.vibrate(300); @@ -85,7 +88,7 @@ export default function Pincode({ onTryCode, textAction }: IPincode) { {textAction} - + {pincodeInput} {pincodeInputPlaceholder} @@ -96,7 +99,12 @@ export default function Pincode({ onTryCode, textAction }: IPincode) { {[1, 2, 3].map((n) => ( - ))} @@ -118,7 +126,11 @@ export default function Pincode({ onTryCode, textAction }: IPincode) { diff --git a/src/state/index.ts b/src/state/index.ts index 05de14f1d..e3dc2b10b 100644 --- a/src/state/index.ts +++ b/src/state/index.ts @@ -3,7 +3,7 @@ import Tor from "react-native-tor"; import NetInfo from "@react-native-community/netinfo"; import { Action, Thunk, action, thunk } from "easy-peasy"; -import { AlertButton, NativeModules } from "react-native"; +import { AlertButton, NativeModules, Platform } from "react-native"; import { DEFAULT_PATHFINDING_ALGORITHM, diff --git a/yarn.lock b/yarn.lock index 5f4f7b1ee..f424f51f9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -142,7 +142,7 @@ __metadata: languageName: node linkType: hard -"@babel/generator@npm:^7.25.0, @babel/generator@npm:^7.25.6, @babel/generator@npm:^7.7.2, @babel/generator@npm:^7.9.0": +"@babel/generator@npm:^7.20.0, @babel/generator@npm:^7.25.0, @babel/generator@npm:^7.25.6, @babel/generator@npm:^7.7.2, @babel/generator@npm:^7.9.0": version: 7.25.6 resolution: "@babel/generator@npm:7.25.6" dependencies: @@ -567,7 +567,7 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.15, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.0, @babel/parser@npm:^7.25.6, @babel/parser@npm:^7.9.0": +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.0, @babel/parser@npm:^7.20.15, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.0, @babel/parser@npm:^7.25.6, @babel/parser@npm:^7.9.0": version: 7.25.6 resolution: "@babel/parser@npm:7.25.6" dependencies: @@ -1152,7 +1152,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-async-generator-functions@npm:^7.25.4": +"@babel/plugin-transform-async-generator-functions@npm:^7.24.3, @babel/plugin-transform-async-generator-functions@npm:^7.25.4": version: 7.25.4 resolution: "@babel/plugin-transform-async-generator-functions@npm:7.25.4" dependencies: @@ -1201,7 +1201,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-class-properties@npm:^7.0.0-0, @babel/plugin-transform-class-properties@npm:^7.25.4": +"@babel/plugin-transform-class-properties@npm:^7.0.0-0, @babel/plugin-transform-class-properties@npm:^7.24.1, @babel/plugin-transform-class-properties@npm:^7.25.4": version: 7.25.4 resolution: "@babel/plugin-transform-class-properties@npm:7.25.4" dependencies: @@ -1360,7 +1360,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-for-of@npm:^7.12.13, @babel/plugin-transform-for-of@npm:^7.24.7": +"@babel/plugin-transform-for-of@npm:^7.0.0, @babel/plugin-transform-for-of@npm:^7.12.13, @babel/plugin-transform-for-of@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-for-of@npm:7.24.7" dependencies: @@ -1408,7 +1408,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.7": +"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.1, @babel/plugin-transform-logical-assignment-operators@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.24.7" dependencies: @@ -1505,7 +1505,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.0.0-0, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.7": +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.0.0-0, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.1, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.24.7" dependencies: @@ -1517,7 +1517,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-numeric-separator@npm:^7.24.7": +"@babel/plugin-transform-numeric-separator@npm:^7.24.1, @babel/plugin-transform-numeric-separator@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-numeric-separator@npm:7.24.7" dependencies: @@ -1529,7 +1529,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-object-rest-spread@npm:^7.24.7": +"@babel/plugin-transform-object-rest-spread@npm:^7.24.5, @babel/plugin-transform-object-rest-spread@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-object-rest-spread@npm:7.24.7" dependencies: @@ -1555,7 +1555,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-optional-catch-binding@npm:^7.24.7": +"@babel/plugin-transform-optional-catch-binding@npm:^7.24.1, @babel/plugin-transform-optional-catch-binding@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.24.7" dependencies: @@ -1567,7 +1567,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-optional-chaining@npm:^7.0.0-0, @babel/plugin-transform-optional-chaining@npm:^7.24.7, @babel/plugin-transform-optional-chaining@npm:^7.24.8": +"@babel/plugin-transform-optional-chaining@npm:^7.0.0-0, @babel/plugin-transform-optional-chaining@npm:^7.24.5, @babel/plugin-transform-optional-chaining@npm:^7.24.7, @babel/plugin-transform-optional-chaining@npm:^7.24.8": version: 7.24.8 resolution: "@babel/plugin-transform-optional-chaining@npm:7.24.8" dependencies: @@ -1591,31 +1591,31 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-private-methods@npm:^7.24.7": - version: 7.25.9 - resolution: "@babel/plugin-transform-private-methods@npm:7.25.9" +"@babel/plugin-transform-private-methods@npm:^7.22.5, @babel/plugin-transform-private-methods@npm:^7.25.4": + version: 7.25.4 + resolution: "@babel/plugin-transform-private-methods@npm:7.25.4" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.25.9" - "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/helper-create-class-features-plugin": "npm:^7.25.4" + "@babel/helper-plugin-utils": "npm:^7.24.8" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10/6e3671b352c267847c53a170a1937210fa8151764d70d25005e711ef9b21969aaf422acc14f9f7fb86bc0e4ec43e7aefcc0ad9196ae02d262ec10f509f126a58 + checksum: 10/d5c29ba121d6ce40e8055a632c32e69006c513607145a29701f93b416a8c53a60e53565df417218e2d8b7f1ba73adb837601e8e9d0a3215da50e4c9507f9f1fa languageName: node linkType: hard -"@babel/plugin-transform-private-methods@npm:^7.25.4": - version: 7.25.4 - resolution: "@babel/plugin-transform-private-methods@npm:7.25.4" +"@babel/plugin-transform-private-methods@npm:^7.24.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-private-methods@npm:7.25.9" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.25.4" - "@babel/helper-plugin-utils": "npm:^7.24.8" + "@babel/helper-create-class-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10/d5c29ba121d6ce40e8055a632c32e69006c513607145a29701f93b416a8c53a60e53565df417218e2d8b7f1ba73adb837601e8e9d0a3215da50e4c9507f9f1fa + checksum: 10/6e3671b352c267847c53a170a1937210fa8151764d70d25005e711ef9b21969aaf422acc14f9f7fb86bc0e4ec43e7aefcc0ad9196ae02d262ec10f509f126a58 languageName: node linkType: hard -"@babel/plugin-transform-private-property-in-object@npm:^7.24.7": +"@babel/plugin-transform-private-property-in-object@npm:^7.22.11, @babel/plugin-transform-private-property-in-object@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-private-property-in-object@npm:7.24.7" dependencies: @@ -1748,7 +1748,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-regenerator@npm:^7.12.13, @babel/plugin-transform-regenerator@npm:^7.24.7": +"@babel/plugin-transform-regenerator@npm:^7.12.13, @babel/plugin-transform-regenerator@npm:^7.20.0, @babel/plugin-transform-regenerator@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-regenerator@npm:7.24.7" dependencies: @@ -2253,7 +2253,7 @@ __metadata: languageName: node linkType: hard -"@babel/traverse--for-generate-function-map@npm:@babel/traverse@^7.25.3, @babel/traverse@npm:^7.0.0-beta.39, @babel/traverse@npm:^7.24.7, @babel/traverse@npm:^7.24.8, @babel/traverse@npm:^7.25.0, @babel/traverse@npm:^7.25.1, @babel/traverse@npm:^7.25.2, @babel/traverse@npm:^7.25.3, @babel/traverse@npm:^7.25.4, @babel/traverse@npm:^7.9.0": +"@babel/traverse--for-generate-function-map@npm:@babel/traverse@^7.25.3, @babel/traverse@npm:^7.0.0-beta.39, @babel/traverse@npm:^7.20.0, @babel/traverse@npm:^7.24.7, @babel/traverse@npm:^7.24.8, @babel/traverse@npm:^7.25.0, @babel/traverse@npm:^7.25.1, @babel/traverse@npm:^7.25.2, @babel/traverse@npm:^7.25.3, @babel/traverse@npm:^7.25.4, @babel/traverse@npm:^7.9.0": version: 7.25.6 resolution: "@babel/traverse@npm:7.25.6" dependencies: @@ -2283,7 +2283,7 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.0.0-beta.39, @babel/types@npm:^7.12.17, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.24.8, @babel/types@npm:^7.25.0, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.6, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.9.0": +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.0.0-beta.39, @babel/types@npm:^7.12.17, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.24.8, @babel/types@npm:^7.25.0, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.6, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.9.0": version: 7.25.6 resolution: "@babel/types@npm:7.25.6" dependencies: @@ -3579,6 +3579,18 @@ __metadata: languageName: node linkType: hard +"@react-native-community/cli-clean@npm:14.0.0": + version: 14.0.0 + resolution: "@react-native-community/cli-clean@npm:14.0.0" + dependencies: + "@react-native-community/cli-tools": "npm:14.0.0" + chalk: "npm:^4.1.2" + execa: "npm:^5.0.0" + fast-glob: "npm:^3.3.2" + checksum: 10/b92fc7dea5921f9874a726bab6f4ce3ab5623b083900991bf63097b38891d253cb440919e88e854cb550992b048aaaf4d50812a6d066d61af87f6a0b27a28b74 + languageName: node + linkType: hard + "@react-native-community/cli-clean@npm:15.0.0-alpha.2": version: 15.0.0-alpha.2 resolution: "@react-native-community/cli-clean@npm:15.0.0-alpha.2" @@ -3591,6 +3603,20 @@ __metadata: languageName: node linkType: hard +"@react-native-community/cli-config@npm:14.0.0": + version: 14.0.0 + resolution: "@react-native-community/cli-config@npm:14.0.0" + dependencies: + "@react-native-community/cli-tools": "npm:14.0.0" + chalk: "npm:^4.1.2" + cosmiconfig: "npm:^9.0.0" + deepmerge: "npm:^4.3.0" + fast-glob: "npm:^3.3.2" + joi: "npm:^17.2.1" + checksum: 10/2dfc24b8b771ebff9b622eb320908ed6f568eb21dee268bf8f9da97f45a74001543783a9db5083195162443118ff7418033b60bc6593956b6a78643c5bb5f8f4 + languageName: node + linkType: hard + "@react-native-community/cli-config@npm:15.0.0-alpha.2": version: 15.0.0-alpha.2 resolution: "@react-native-community/cli-config@npm:15.0.0-alpha.2" @@ -3605,6 +3631,24 @@ __metadata: languageName: node linkType: hard +"@react-native-community/cli-debugger-ui@npm:14.0.0": + version: 14.0.0 + resolution: "@react-native-community/cli-debugger-ui@npm:14.0.0" + dependencies: + serve-static: "npm:^1.13.1" + checksum: 10/485b2de5e615e27e58ef8f84acf60b18259b3326d7688449392147ec876d970166f20f91ce7dd8718c9e002739b42694589f3271a2117bee98992cfded568754 + languageName: node + linkType: hard + +"@react-native-community/cli-debugger-ui@npm:14.0.0-alpha.11": + version: 14.0.0-alpha.11 + resolution: "@react-native-community/cli-debugger-ui@npm:14.0.0-alpha.11" + dependencies: + serve-static: "npm:^1.13.1" + checksum: 10/5b837674aa9993a89bde1ee23e406c11cd0d8b19916ae7621b1ef0880bb3222ecfa222f272c9046c210276af06a6dfdf8b0b9abd2ca5e6bc4223ca4f79b9c2fe + languageName: node + linkType: hard + "@react-native-community/cli-debugger-ui@npm:15.0.0-alpha.2": version: 15.0.0-alpha.2 resolution: "@react-native-community/cli-debugger-ui@npm:15.0.0-alpha.2" @@ -3614,6 +3658,30 @@ __metadata: languageName: node linkType: hard +"@react-native-community/cli-doctor@npm:14.0.0": + version: 14.0.0 + resolution: "@react-native-community/cli-doctor@npm:14.0.0" + dependencies: + "@react-native-community/cli-config": "npm:14.0.0" + "@react-native-community/cli-platform-android": "npm:14.0.0" + "@react-native-community/cli-platform-apple": "npm:14.0.0" + "@react-native-community/cli-platform-ios": "npm:14.0.0" + "@react-native-community/cli-tools": "npm:14.0.0" + chalk: "npm:^4.1.2" + command-exists: "npm:^1.2.8" + deepmerge: "npm:^4.3.0" + envinfo: "npm:^7.13.0" + execa: "npm:^5.0.0" + node-stream-zip: "npm:^1.9.1" + ora: "npm:^5.4.1" + semver: "npm:^7.5.2" + strip-ansi: "npm:^5.2.0" + wcwidth: "npm:^1.0.1" + yaml: "npm:^2.2.1" + checksum: 10/cdad0e5da75e93b08b0fc3109c603fb00f3aa187406f57fa336ac74ad55aba8bc3479f375c0e417d4787cc406db94fde9c3cf8d0602745925cb6e1df31223aa0 + languageName: node + linkType: hard + "@react-native-community/cli-doctor@npm:15.0.0-alpha.2": version: 15.0.0-alpha.2 resolution: "@react-native-community/cli-doctor@npm:15.0.0-alpha.2" @@ -3638,6 +3706,20 @@ __metadata: languageName: node linkType: hard +"@react-native-community/cli-platform-android@npm:14.0.0": + version: 14.0.0 + resolution: "@react-native-community/cli-platform-android@npm:14.0.0" + dependencies: + "@react-native-community/cli-tools": "npm:14.0.0" + chalk: "npm:^4.1.2" + execa: "npm:^5.0.0" + fast-glob: "npm:^3.3.2" + fast-xml-parser: "npm:^4.2.4" + logkitty: "npm:^0.7.1" + checksum: 10/f8ec2e4a02689a1e151f4ce9f7ccbca4b9f9fd564159efa91ee72678668aeccebf636d39c7a10a5232553a96f00e48a796e50bd1cccaedc7ff08e9a1201e05e9 + languageName: node + linkType: hard + "@react-native-community/cli-platform-android@npm:15.0.0-alpha.2": version: 15.0.0-alpha.2 resolution: "@react-native-community/cli-platform-android@npm:15.0.0-alpha.2" @@ -3652,6 +3734,20 @@ __metadata: languageName: node linkType: hard +"@react-native-community/cli-platform-apple@npm:14.0.0": + version: 14.0.0 + resolution: "@react-native-community/cli-platform-apple@npm:14.0.0" + dependencies: + "@react-native-community/cli-tools": "npm:14.0.0" + chalk: "npm:^4.1.2" + execa: "npm:^5.0.0" + fast-glob: "npm:^3.3.2" + fast-xml-parser: "npm:^4.2.4" + ora: "npm:^5.4.1" + checksum: 10/b90d8a84ad03a36c26adb7f28a4e0fab4315eec76c0d66ef9685f044e09082070370922efcc881a8a2d12c0b0640204446745aefb00928b44ef5ba68ab742c01 + languageName: node + linkType: hard + "@react-native-community/cli-platform-apple@npm:15.0.0-alpha.2": version: 15.0.0-alpha.2 resolution: "@react-native-community/cli-platform-apple@npm:15.0.0-alpha.2" @@ -3666,6 +3762,15 @@ __metadata: languageName: node linkType: hard +"@react-native-community/cli-platform-ios@npm:14.0.0": + version: 14.0.0 + resolution: "@react-native-community/cli-platform-ios@npm:14.0.0" + dependencies: + "@react-native-community/cli-platform-apple": "npm:14.0.0" + checksum: 10/e85dc3600c7d6a443502e47e8af2eed98756dcca2aaf418a312bf3b7ec69fb49db7aa8e63318cdf5920219e5fff47cbc819ffa5d9bdc32726bed6b2d280cfe80 + languageName: node + linkType: hard + "@react-native-community/cli-platform-ios@npm:15.0.0-alpha.2": version: 15.0.0-alpha.2 resolution: "@react-native-community/cli-platform-ios@npm:15.0.0-alpha.2" @@ -3675,6 +3780,40 @@ __metadata: languageName: node linkType: hard +"@react-native-community/cli-server-api@npm:14.0.0": + version: 14.0.0 + resolution: "@react-native-community/cli-server-api@npm:14.0.0" + dependencies: + "@react-native-community/cli-debugger-ui": "npm:14.0.0" + "@react-native-community/cli-tools": "npm:14.0.0" + compression: "npm:^1.7.1" + connect: "npm:^3.6.5" + errorhandler: "npm:^1.5.1" + nocache: "npm:^3.0.1" + pretty-format: "npm:^26.6.2" + serve-static: "npm:^1.13.1" + ws: "npm:^6.2.3" + checksum: 10/1f769abb4bba47a4fa8598add1ba75345d5d8664a0d6877543046924abbfa5c2df9c01378ae7a2d65fdc7db3e6d9718db9f93f39a0a9291610467350e5a42359 + languageName: node + linkType: hard + +"@react-native-community/cli-server-api@npm:14.0.0-alpha.11": + version: 14.0.0-alpha.11 + resolution: "@react-native-community/cli-server-api@npm:14.0.0-alpha.11" + dependencies: + "@react-native-community/cli-debugger-ui": "npm:14.0.0-alpha.11" + "@react-native-community/cli-tools": "npm:14.0.0-alpha.11" + compression: "npm:^1.7.1" + connect: "npm:^3.6.5" + errorhandler: "npm:^1.5.1" + nocache: "npm:^3.0.1" + pretty-format: "npm:^26.6.2" + serve-static: "npm:^1.13.1" + ws: "npm:^6.2.3" + checksum: 10/a689e88022d48e255cb196197cf0976b39bf4422821943e4f918cd2bfcc8952324b54b1983c8fcf42da03ba6b1be810ffa90b0d0e76a34be4f47237a9ae9420e + languageName: node + linkType: hard + "@react-native-community/cli-server-api@npm:15.0.0-alpha.2": version: 15.0.0-alpha.2 resolution: "@react-native-community/cli-server-api@npm:15.0.0-alpha.2" @@ -3692,6 +3831,42 @@ __metadata: languageName: node linkType: hard +"@react-native-community/cli-tools@npm:14.0.0": + version: 14.0.0 + resolution: "@react-native-community/cli-tools@npm:14.0.0" + dependencies: + appdirsjs: "npm:^1.2.4" + chalk: "npm:^4.1.2" + execa: "npm:^5.0.0" + find-up: "npm:^5.0.0" + mime: "npm:^2.4.1" + open: "npm:^6.2.0" + ora: "npm:^5.4.1" + semver: "npm:^7.5.2" + shell-quote: "npm:^1.7.3" + sudo-prompt: "npm:^9.0.0" + checksum: 10/84219934553287072b284ff524a10c554ccd5e31a0e8237f59999d1e3eb07441baf1083f6be71bd206c76a5c061b936eb1ff8dc2fd32cbda23aa0776358a6000 + languageName: node + linkType: hard + +"@react-native-community/cli-tools@npm:14.0.0-alpha.11": + version: 14.0.0-alpha.11 + resolution: "@react-native-community/cli-tools@npm:14.0.0-alpha.11" + dependencies: + appdirsjs: "npm:^1.2.4" + chalk: "npm:^4.1.2" + execa: "npm:^5.0.0" + find-up: "npm:^5.0.0" + mime: "npm:^2.4.1" + open: "npm:^6.2.0" + ora: "npm:^5.4.1" + semver: "npm:^7.5.2" + shell-quote: "npm:^1.7.3" + sudo-prompt: "npm:^9.0.0" + checksum: 10/2cbdeda1b189fbd4a61621b9e2c8c47801d8e764d1475305abbb09e27d1d493326e8a216a8d41ab0091ab9615bf01189d4e3c970d864f468f9d41a9195c3a5c0 + languageName: node + linkType: hard + "@react-native-community/cli-tools@npm:15.0.0-alpha.2": version: 15.0.0-alpha.2 resolution: "@react-native-community/cli-tools@npm:15.0.0-alpha.2" @@ -3710,6 +3885,15 @@ __metadata: languageName: node linkType: hard +"@react-native-community/cli-types@npm:14.0.0": + version: 14.0.0 + resolution: "@react-native-community/cli-types@npm:14.0.0" + dependencies: + joi: "npm:^17.2.1" + checksum: 10/a0e4b26da8cc600d133b60f7a74fc1375144f974bf7d453b197091e65af0e69ac0bad42eb957da6c27364c82f1126d4a6bc6b0352ea838366679fac940df9729 + languageName: node + linkType: hard + "@react-native-community/cli-types@npm:15.0.0-alpha.2": version: 15.0.0-alpha.2 resolution: "@react-native-community/cli-types@npm:15.0.0-alpha.2" @@ -3719,6 +3903,32 @@ __metadata: languageName: node linkType: hard +"@react-native-community/cli@npm:14.0.0": + version: 14.0.0 + resolution: "@react-native-community/cli@npm:14.0.0" + dependencies: + "@react-native-community/cli-clean": "npm:14.0.0" + "@react-native-community/cli-config": "npm:14.0.0" + "@react-native-community/cli-debugger-ui": "npm:14.0.0" + "@react-native-community/cli-doctor": "npm:14.0.0" + "@react-native-community/cli-server-api": "npm:14.0.0" + "@react-native-community/cli-tools": "npm:14.0.0" + "@react-native-community/cli-types": "npm:14.0.0" + chalk: "npm:^4.1.2" + commander: "npm:^9.4.1" + deepmerge: "npm:^4.3.0" + execa: "npm:^5.0.0" + find-up: "npm:^5.0.0" + fs-extra: "npm:^8.1.0" + graceful-fs: "npm:^4.1.3" + prompts: "npm:^2.4.2" + semver: "npm:^7.5.2" + bin: + rnc-cli: build/bin.js + checksum: 10/ae6ec29f015704aaf2ddaa60be822d277644787e4d788a13fb9de0c80e3b39e313d8ac05fac2512761b04c3d89d86b58ffb97f90067764932921288c084f5c22 + languageName: node + linkType: hard + "@react-native-community/cli@npm:15.0.0-alpha.2": version: 15.0.0-alpha.2 resolution: "@react-native-community/cli@npm:15.0.0-alpha.2" @@ -3802,9 +4012,9 @@ __metadata: languageName: node linkType: hard -"@react-native-google-signin/google-signin@npm:13.1.0": - version: 13.1.0 - resolution: "@react-native-google-signin/google-signin@npm:13.1.0" +"@react-native-google-signin/google-signin@npm:13.0.1": + version: 13.0.1 + resolution: "@react-native-google-signin/google-signin@npm:13.0.1" peerDependencies: expo: ">=50.0.0" react: "*" @@ -3815,7 +4025,24 @@ __metadata: optional: true react-dom: optional: true - checksum: 10/f5ff8551b43e7fa530b5d2f381ac502d68e2760b474c3c21927dbf690ac6c8763adeb7d887aba92d17bbcf9a4f78679075801e8bd120e186bf5b0b488baaa01e + checksum: 10/50a4ae92a9eda48ba2fe50f64225ca70fea7cfc9c8848a93ba782cb49345c953a6bffff1195d2d9401891c7b9cf0cde0a9f93134af1f56c9d23f2d1b3ff0f74b + languageName: node + linkType: hard + +"@react-native-mac/virtualized-lists@npm:0.75.0": + version: 0.75.0 + resolution: "@react-native-mac/virtualized-lists@npm:0.75.0" + dependencies: + invariant: "npm:^2.2.4" + nullthrows: "npm:^1.1.1" + peerDependencies: + "@types/react": ^18.2.6 + react: "*" + react-native: "*" + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10/647d15f6da5e0dd0d0af780fb6c4d6e34fd0ba9d80e81177c89516d567e6fc21e5333f21dc79d3c6a77ae5bb80b86d9b09ec496240be344c8fa347993e9e0395 languageName: node linkType: hard @@ -3829,6 +4056,13 @@ __metadata: languageName: node linkType: hard +"@react-native/assets-registry@npm:0.75.2": + version: 0.75.2 + resolution: "@react-native/assets-registry@npm:0.75.2" + checksum: 10/e72861cd04122634d57998a14ae51f539e93b2a5788e3fa7980c1b4163ae05f59120e192c454a6639333eaf72703299c22a9a08180d1495bf08369ba53d0a0f2 + languageName: node + linkType: hard + "@react-native/assets-registry@npm:0.76.1": version: 0.76.1 resolution: "@react-native/assets-registry@npm:0.76.1" @@ -3836,6 +4070,15 @@ __metadata: languageName: node linkType: hard +"@react-native/babel-plugin-codegen@npm:0.75.2": + version: 0.75.2 + resolution: "@react-native/babel-plugin-codegen@npm:0.75.2" + dependencies: + "@react-native/codegen": "npm:0.75.2" + checksum: 10/1ca1fa22053ee1dcfe051dd64dce990d0ef7369465902feb5523a116ea72abb0683b5a665c578a8b9c8cd6ef449a267788fa2488f2777eec3c48faf0d76271aa + languageName: node + linkType: hard + "@react-native/babel-plugin-codegen@npm:0.76.1": version: 0.76.1 resolution: "@react-native/babel-plugin-codegen@npm:0.76.1" @@ -3845,6 +4088,61 @@ __metadata: languageName: node linkType: hard +"@react-native/babel-preset@npm:0.75.2": + version: 0.75.2 + resolution: "@react-native/babel-preset@npm:0.75.2" + dependencies: + "@babel/core": "npm:^7.20.0" + "@babel/plugin-proposal-export-default-from": "npm:^7.0.0" + "@babel/plugin-syntax-dynamic-import": "npm:^7.8.0" + "@babel/plugin-syntax-export-default-from": "npm:^7.0.0" + "@babel/plugin-syntax-flow": "npm:^7.18.0" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.0.0" + "@babel/plugin-syntax-optional-chaining": "npm:^7.0.0" + "@babel/plugin-transform-arrow-functions": "npm:^7.0.0" + "@babel/plugin-transform-async-generator-functions": "npm:^7.24.3" + "@babel/plugin-transform-async-to-generator": "npm:^7.20.0" + "@babel/plugin-transform-block-scoping": "npm:^7.0.0" + "@babel/plugin-transform-class-properties": "npm:^7.24.1" + "@babel/plugin-transform-classes": "npm:^7.0.0" + "@babel/plugin-transform-computed-properties": "npm:^7.0.0" + "@babel/plugin-transform-destructuring": "npm:^7.20.0" + "@babel/plugin-transform-flow-strip-types": "npm:^7.20.0" + "@babel/plugin-transform-for-of": "npm:^7.0.0" + "@babel/plugin-transform-function-name": "npm:^7.0.0" + "@babel/plugin-transform-literals": "npm:^7.0.0" + "@babel/plugin-transform-logical-assignment-operators": "npm:^7.24.1" + "@babel/plugin-transform-modules-commonjs": "npm:^7.0.0" + "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.0.0" + "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.24.1" + "@babel/plugin-transform-numeric-separator": "npm:^7.24.1" + "@babel/plugin-transform-object-rest-spread": "npm:^7.24.5" + "@babel/plugin-transform-optional-catch-binding": "npm:^7.24.1" + "@babel/plugin-transform-optional-chaining": "npm:^7.24.5" + "@babel/plugin-transform-parameters": "npm:^7.0.0" + "@babel/plugin-transform-private-methods": "npm:^7.22.5" + "@babel/plugin-transform-private-property-in-object": "npm:^7.22.11" + "@babel/plugin-transform-react-display-name": "npm:^7.0.0" + "@babel/plugin-transform-react-jsx": "npm:^7.0.0" + "@babel/plugin-transform-react-jsx-self": "npm:^7.0.0" + "@babel/plugin-transform-react-jsx-source": "npm:^7.0.0" + "@babel/plugin-transform-regenerator": "npm:^7.20.0" + "@babel/plugin-transform-runtime": "npm:^7.0.0" + "@babel/plugin-transform-shorthand-properties": "npm:^7.0.0" + "@babel/plugin-transform-spread": "npm:^7.0.0" + "@babel/plugin-transform-sticky-regex": "npm:^7.0.0" + "@babel/plugin-transform-typescript": "npm:^7.5.0" + "@babel/plugin-transform-unicode-regex": "npm:^7.0.0" + "@babel/template": "npm:^7.0.0" + "@react-native/babel-plugin-codegen": "npm:0.75.2" + babel-plugin-transform-flow-enums: "npm:^0.0.2" + react-refresh: "npm:^0.14.0" + peerDependencies: + "@babel/core": "*" + checksum: 10/46de9a9cbd8e7c31c1e725fb9efa2be1f06dd8dd06c3c4595784607da684e5a4ca137833cc7169cc2da7d1703dac2449a3802514fe7ab7346959322fa09757f0 + languageName: node + linkType: hard + "@react-native/babel-preset@npm:0.76.1": version: 0.76.1 resolution: "@react-native/babel-preset@npm:0.76.1" @@ -3900,6 +4198,24 @@ __metadata: languageName: node linkType: hard +"@react-native/codegen@npm:0.75.2": + version: 0.75.2 + resolution: "@react-native/codegen@npm:0.75.2" + dependencies: + "@babel/parser": "npm:^7.20.0" + glob: "npm:^7.1.1" + hermes-parser: "npm:0.22.0" + invariant: "npm:^2.2.4" + jscodeshift: "npm:^0.14.0" + mkdirp: "npm:^0.5.1" + nullthrows: "npm:^1.1.1" + yargs: "npm:^17.6.2" + peerDependencies: + "@babel/preset-env": ^7.1.6 + checksum: 10/9970ef151f40160f71cd6d0f1a09e37a4cbb9c892f03a9c1e88ad247772943dc6e4e03ebfe8a10ee6fa7c10aa9f751d104fb08b4c6d166c9cc1fe4753b1ebdab + languageName: node + linkType: hard + "@react-native/codegen@npm:0.76.1": version: 0.76.1 resolution: "@react-native/codegen@npm:0.76.1" @@ -3918,6 +4234,26 @@ __metadata: languageName: node linkType: hard +"@react-native/community-cli-plugin@npm:0.75.2": + version: 0.75.2 + resolution: "@react-native/community-cli-plugin@npm:0.75.2" + dependencies: + "@react-native-community/cli-server-api": "npm:14.0.0-alpha.11" + "@react-native-community/cli-tools": "npm:14.0.0-alpha.11" + "@react-native/dev-middleware": "npm:0.75.2" + "@react-native/metro-babel-transformer": "npm:0.75.2" + chalk: "npm:^4.0.0" + execa: "npm:^5.1.1" + metro: "npm:^0.80.3" + metro-config: "npm:^0.80.3" + metro-core: "npm:^0.80.3" + node-fetch: "npm:^2.2.0" + querystring: "npm:^0.2.1" + readline: "npm:^1.3.0" + checksum: 10/13ceea24365350b5ee528cd2654cfe764900296c186e8704bc86f4a8bda649fb154f752a32f3c29a5d9b425c44b692e8f754013d1b6db843f686038f80f8799a + languageName: node + linkType: hard + "@react-native/community-cli-plugin@npm:0.76.1": version: 0.76.1 resolution: "@react-native/community-cli-plugin@npm:0.76.1" @@ -3941,6 +4277,13 @@ __metadata: languageName: node linkType: hard +"@react-native/debugger-frontend@npm:0.75.2": + version: 0.75.2 + resolution: "@react-native/debugger-frontend@npm:0.75.2" + checksum: 10/2026c679fec3fe61f41d2c27cbc7ffb33a60e11578f773252c132e41f4872ab4c271390667f79e646fe6af4b0073ab1fe26528bab6709ddc74f7836654882ab5 + languageName: node + linkType: hard + "@react-native/debugger-frontend@npm:0.76.1": version: 0.76.1 resolution: "@react-native/debugger-frontend@npm:0.76.1" @@ -3948,6 +4291,26 @@ __metadata: languageName: node linkType: hard +"@react-native/dev-middleware@npm:0.75.2": + version: 0.75.2 + resolution: "@react-native/dev-middleware@npm:0.75.2" + dependencies: + "@isaacs/ttlcache": "npm:^1.4.1" + "@react-native/debugger-frontend": "npm:0.75.2" + chrome-launcher: "npm:^0.15.2" + chromium-edge-launcher: "npm:^0.2.0" + connect: "npm:^3.6.5" + debug: "npm:^2.2.0" + node-fetch: "npm:^2.2.0" + nullthrows: "npm:^1.1.1" + open: "npm:^7.0.3" + selfsigned: "npm:^2.4.1" + serve-static: "npm:^1.13.1" + ws: "npm:^6.2.2" + checksum: 10/326ce1ba04ad99a1e9bcc5d7b2fde23d0162ebe0ecae5bc4bca5f9431e80963ae54949bd868b52d0b8b146b17b79134530602dcbda048895121c683f696c0c6a + languageName: node + linkType: hard + "@react-native/dev-middleware@npm:0.76.1": version: 0.76.1 resolution: "@react-native/dev-middleware@npm:0.76.1" @@ -3998,6 +4361,13 @@ __metadata: languageName: node linkType: hard +"@react-native/gradle-plugin@npm:0.75.2": + version: 0.75.2 + resolution: "@react-native/gradle-plugin@npm:0.75.2" + checksum: 10/0b9ab824959db4da7ac29de9a285402cf3540e1ba1ef38c34f23389119393975d7a5463b65443d6c1e4f6618e3829b600e51ed0f05603b7f4649ce24f0f0b89e + languageName: node + linkType: hard + "@react-native/gradle-plugin@npm:0.76.1": version: 0.76.1 resolution: "@react-native/gradle-plugin@npm:0.76.1" @@ -4005,6 +4375,13 @@ __metadata: languageName: node linkType: hard +"@react-native/js-polyfills@npm:0.75.2": + version: 0.75.2 + resolution: "@react-native/js-polyfills@npm:0.75.2" + checksum: 10/de7f2e0e2a52d142d5068a99fb2fd29eb6a6aced3336295ef967e374681e0e36183ef859fbdb5bfa3cba724f1c2f83f42702b1824c27f6876fb999028fe0c919 + languageName: node + linkType: hard + "@react-native/js-polyfills@npm:0.76.1": version: 0.76.1 resolution: "@react-native/js-polyfills@npm:0.76.1" @@ -4012,6 +4389,20 @@ __metadata: languageName: node linkType: hard +"@react-native/metro-babel-transformer@npm:0.75.2": + version: 0.75.2 + resolution: "@react-native/metro-babel-transformer@npm:0.75.2" + dependencies: + "@babel/core": "npm:^7.20.0" + "@react-native/babel-preset": "npm:0.75.2" + hermes-parser: "npm:0.22.0" + nullthrows: "npm:^1.1.1" + peerDependencies: + "@babel/core": "*" + checksum: 10/4f5be3a0bd871c1f147afaa06febeb55f6c8e7cb229b2eeb569a9790fe06a335ead99543ff0b72a09cdaa46932729871f78f67d072cecd362158a69fe091285e + languageName: node + linkType: hard + "@react-native/metro-babel-transformer@npm:0.76.1": version: 0.76.1 resolution: "@react-native/metro-babel-transformer@npm:0.76.1" @@ -4045,6 +4436,13 @@ __metadata: languageName: node linkType: hard +"@react-native/normalize-colors@npm:0.75.2": + version: 0.75.2 + resolution: "@react-native/normalize-colors@npm:0.75.2" + checksum: 10/bbf7038e191785eacfb90765c92ebd6007f9fb55b8efb5a67e3438627238f83181b09b293deb1978cca615041f74b2c034a5ad335ac025c4ce663d7d72619ca1 + languageName: node + linkType: hard + "@react-native/normalize-colors@npm:0.76.1": version: 0.76.1 resolution: "@react-native/normalize-colors@npm:0.76.1" @@ -5412,9 +5810,10 @@ __metadata: "@react-native-community/netinfo": "npm:11.3.2" "@react-native-community/push-notification-ios": "npm:^1.11.0" "@react-native-community/slider": "npm:4.5.2" - "@react-native-google-signin/google-signin": "npm:13.1.0" + "@react-native-google-signin/google-signin": "npm:13.0.1" "@react-native/babel-preset": "npm:0.76.1" "@react-native/eslint-config": "npm:0.76.1" + "@react-native/gradle-plugin": "npm:0.76.1" "@react-native/metro-config": "npm:0.76.1" "@react-native/typescript-config": "npm:0.76.1" "@react-navigation/bottom-tabs": "npm:7.0.0-rc.30" @@ -5499,6 +5898,7 @@ __metadata: react-native-keyboard-aware-scroll-view: "npm:^0.9.5" react-native-keychain: "npm:^8.1.2" react-native-linear-gradient: "npm:^2.8.3" + react-native-macos: "npm:^0.75.7" react-native-maps: "npm:1.18.0" react-native-modal: "npm:^13.0.1" react-native-paper: "npm:5.12.5" @@ -9226,7 +9626,7 @@ __metadata: languageName: node linkType: hard -"fast-xml-parser@npm:^4.4.1": +"fast-xml-parser@npm:^4.2.4, fast-xml-parser@npm:^4.4.1": version: 4.5.0 resolution: "fast-xml-parser@npm:4.5.0" dependencies: @@ -10211,6 +10611,13 @@ __metadata: languageName: node linkType: hard +"hermes-estree@npm:0.22.0": + version: 0.22.0 + resolution: "hermes-estree@npm:0.22.0" + checksum: 10/58b4aaea36d6eee070e0e29a8e90896800b78ae779a9f819a215aec8000146728d2e1d20dc8504a6bbd6d47afc905067721ee520abd5a057c4265e92941f5cc6 + languageName: node + linkType: hard + "hermes-estree@npm:0.23.1": version: 0.23.1 resolution: "hermes-estree@npm:0.23.1" @@ -10225,6 +10632,15 @@ __metadata: languageName: node linkType: hard +"hermes-parser@npm:0.22.0": + version: 0.22.0 + resolution: "hermes-parser@npm:0.22.0" + dependencies: + hermes-estree: "npm:0.22.0" + checksum: 10/7ae8f9a8bd9880dcb0eeb3b4efa053112a9820bdbd8cf3a500cf6192bf44501b29cd7d3b4ef03ca43d0060b348b57c0d4cab5ebb2939ba46a5327c76ac86dc99 + languageName: node + linkType: hard + "hermes-parser@npm:0.23.1": version: 0.23.1 resolution: "hermes-parser@npm:0.23.1" @@ -12761,6 +13177,18 @@ __metadata: languageName: node linkType: hard +"metro-babel-transformer@npm:0.80.11": + version: 0.80.11 + resolution: "metro-babel-transformer@npm:0.80.11" + dependencies: + "@babel/core": "npm:^7.20.0" + flow-enums-runtime: "npm:^0.0.6" + hermes-parser: "npm:0.23.1" + nullthrows: "npm:^1.1.1" + checksum: 10/60e6209d790b22e647f10890edc242ce6682b8fdbcc13b56095e30e0985192553a258c590c8e015273bc0723b5739fafea11c77a198047834c7a5b3f2ce4f440 + languageName: node + linkType: hard + "metro-babel-transformer@npm:0.81.0": version: 0.81.0 resolution: "metro-babel-transformer@npm:0.81.0" @@ -12773,6 +13201,15 @@ __metadata: languageName: node linkType: hard +"metro-cache-key@npm:0.80.11": + version: 0.80.11 + resolution: "metro-cache-key@npm:0.80.11" + dependencies: + flow-enums-runtime: "npm:^0.0.6" + checksum: 10/14d383e4aa44020a5ae3da6bd60fa17298dd0be6e27e32d9a9e614f10eb7b10e58ed9a08794a1780e985fd49e6ce80255d90967725294f9a1d8a50fca615b6ea + languageName: node + linkType: hard + "metro-cache-key@npm:0.81.0": version: 0.81.0 resolution: "metro-cache-key@npm:0.81.0" @@ -12782,6 +13219,17 @@ __metadata: languageName: node linkType: hard +"metro-cache@npm:0.80.11": + version: 0.80.11 + resolution: "metro-cache@npm:0.80.11" + dependencies: + exponential-backoff: "npm:^3.1.1" + flow-enums-runtime: "npm:^0.0.6" + metro-core: "npm:0.80.11" + checksum: 10/df283fb23b0b23659a829239dbf4221d57327c17d59411ec62aedeab6bbe965e878cf033ad98c2448902b09596dafa3f4a08d968e90ebc6339bbba4ab288af7f + languageName: node + linkType: hard + "metro-cache@npm:0.81.0": version: 0.81.0 resolution: "metro-cache@npm:0.81.0" @@ -12793,6 +13241,22 @@ __metadata: languageName: node linkType: hard +"metro-config@npm:0.80.11, metro-config@npm:^0.80.3": + version: 0.80.11 + resolution: "metro-config@npm:0.80.11" + dependencies: + connect: "npm:^3.6.5" + cosmiconfig: "npm:^5.0.5" + flow-enums-runtime: "npm:^0.0.6" + jest-validate: "npm:^29.6.3" + metro: "npm:0.80.11" + metro-cache: "npm:0.80.11" + metro-core: "npm:0.80.11" + metro-runtime: "npm:0.80.11" + checksum: 10/71022e57af34bd2643390d8293ac238add03538b4c49865672ef09c812b9e9536345b4efc7d471c14d40b04f820dd61a8404d9a76f45270654f5d2c5d3bc8571 + languageName: node + linkType: hard + "metro-config@npm:0.81.0, metro-config@npm:^0.81.0": version: 0.81.0 resolution: "metro-config@npm:0.81.0" @@ -12809,6 +13273,17 @@ __metadata: languageName: node linkType: hard +"metro-core@npm:0.80.11, metro-core@npm:^0.80.3": + version: 0.80.11 + resolution: "metro-core@npm:0.80.11" + dependencies: + flow-enums-runtime: "npm:^0.0.6" + lodash.throttle: "npm:^4.1.1" + metro-resolver: "npm:0.80.11" + checksum: 10/178899c930bab550fc0c6dafc3981a1bb7cb0f2d1f167ed9cf77b2d548284b7818bd36a7923bb291afb4ffbccb0815c2412c3b6e31f817775ddd9b4d913f062a + languageName: node + linkType: hard + "metro-core@npm:0.81.0, metro-core@npm:^0.81.0": version: 0.81.0 resolution: "metro-core@npm:0.81.0" @@ -12820,6 +13295,29 @@ __metadata: languageName: node linkType: hard +"metro-file-map@npm:0.80.11": + version: 0.80.11 + resolution: "metro-file-map@npm:0.80.11" + dependencies: + anymatch: "npm:^3.0.3" + debug: "npm:^2.2.0" + fb-watchman: "npm:^2.0.0" + flow-enums-runtime: "npm:^0.0.6" + fsevents: "npm:^2.3.2" + graceful-fs: "npm:^4.2.4" + invariant: "npm:^2.2.4" + jest-worker: "npm:^29.6.3" + micromatch: "npm:^4.0.4" + node-abort-controller: "npm:^3.1.1" + nullthrows: "npm:^1.1.1" + walker: "npm:^1.0.7" + dependenciesMeta: + fsevents: + optional: true + checksum: 10/814da6b829db06dcbd62b41e9fc6e64394bb944367c362cb81778ded5b1108e9c6f5e2de194ae3cc8052a94b3cb17b7875d28ea899dec78b132ac92ac5f7ac3c + languageName: node + linkType: hard + "metro-file-map@npm:0.81.0": version: 0.81.0 resolution: "metro-file-map@npm:0.81.0" @@ -12843,6 +13341,16 @@ __metadata: languageName: node linkType: hard +"metro-minify-terser@npm:0.80.11": + version: 0.80.11 + resolution: "metro-minify-terser@npm:0.80.11" + dependencies: + flow-enums-runtime: "npm:^0.0.6" + terser: "npm:^5.15.0" + checksum: 10/f10568e1f52a180f2e07bc7b9c4b32d4bc3bddb8fad21d64ed8c07d49a167900cd3887bc180243b8f2906d6cac5d9be2e2c8a7a5377a8556cd18f69abdf81c8c + languageName: node + linkType: hard + "metro-minify-terser@npm:0.81.0": version: 0.81.0 resolution: "metro-minify-terser@npm:0.81.0" @@ -12902,6 +13410,15 @@ __metadata: languageName: node linkType: hard +"metro-resolver@npm:0.80.11": + version: 0.80.11 + resolution: "metro-resolver@npm:0.80.11" + dependencies: + flow-enums-runtime: "npm:^0.0.6" + checksum: 10/e938adb18b8e83289e049c6a0276755920ee82baf4cf8fe092f17100ea1659dc91acbdbdbca43a338d0134ae07fd69be4f79d75e5e72a9ae93c73c64999edbb4 + languageName: node + linkType: hard + "metro-resolver@npm:0.81.0": version: 0.81.0 resolution: "metro-resolver@npm:0.81.0" @@ -12911,6 +13428,16 @@ __metadata: languageName: node linkType: hard +"metro-runtime@npm:0.80.11, metro-runtime@npm:^0.80.3": + version: 0.80.11 + resolution: "metro-runtime@npm:0.80.11" + dependencies: + "@babel/runtime": "npm:^7.25.0" + flow-enums-runtime: "npm:^0.0.6" + checksum: 10/806785037f659ecbecf92f6ac5e2d8cbd27fcd0e7f12c833af764bfab40e06f416ec7d3c87281acec3cbc2f6e455ecc85c7b524b63daf9de7d1d6036512f4279 + languageName: node + linkType: hard + "metro-runtime@npm:0.81.0, metro-runtime@npm:^0.81.0": version: 0.81.0 resolution: "metro-runtime@npm:0.81.0" @@ -12921,6 +13448,23 @@ __metadata: languageName: node linkType: hard +"metro-source-map@npm:0.80.11, metro-source-map@npm:^0.80.3": + version: 0.80.11 + resolution: "metro-source-map@npm:0.80.11" + dependencies: + "@babel/traverse": "npm:^7.20.0" + "@babel/types": "npm:^7.20.0" + flow-enums-runtime: "npm:^0.0.6" + invariant: "npm:^2.2.4" + metro-symbolicate: "npm:0.80.11" + nullthrows: "npm:^1.1.1" + ob1: "npm:0.80.11" + source-map: "npm:^0.5.6" + vlq: "npm:^1.0.0" + checksum: 10/89bd5d12d99bc33bd678069b80fe60d49ed3cfa2e152912e6227e0afef1869d220cd825e2bc5e7d33fa97d8690723886e8e288203f1fc300a4dcd663d3dc0307 + languageName: node + linkType: hard + "metro-source-map@npm:0.81.0, metro-source-map@npm:^0.81.0": version: 0.81.0 resolution: "metro-source-map@npm:0.81.0" @@ -12939,6 +13483,23 @@ __metadata: languageName: node linkType: hard +"metro-symbolicate@npm:0.80.11": + version: 0.80.11 + resolution: "metro-symbolicate@npm:0.80.11" + dependencies: + flow-enums-runtime: "npm:^0.0.6" + invariant: "npm:^2.2.4" + metro-source-map: "npm:0.80.11" + nullthrows: "npm:^1.1.1" + source-map: "npm:^0.5.6" + through2: "npm:^2.0.1" + vlq: "npm:^1.0.0" + bin: + metro-symbolicate: src/index.js + checksum: 10/e2b00cd19de4432b7fb9b1d5978553eb27d51945118484a13f53b8192f553206680b132dac10f2013d22bed300f728cc1e2d334798767ebe48a04a0a0d0cbb83 + languageName: node + linkType: hard + "metro-symbolicate@npm:0.81.0": version: 0.81.0 resolution: "metro-symbolicate@npm:0.81.0" @@ -12956,6 +13517,20 @@ __metadata: languageName: node linkType: hard +"metro-transform-plugins@npm:0.80.11": + version: 0.80.11 + resolution: "metro-transform-plugins@npm:0.80.11" + dependencies: + "@babel/core": "npm:^7.20.0" + "@babel/generator": "npm:^7.20.0" + "@babel/template": "npm:^7.0.0" + "@babel/traverse": "npm:^7.20.0" + flow-enums-runtime: "npm:^0.0.6" + nullthrows: "npm:^1.1.1" + checksum: 10/8eedb5a9d175c6a37cb114e5ab1e5ab4e5caa3ac4185d78a2e9d320930ca39ae75dcbd98dc50edf202e136030449f99b91cb7a4f257652a7592c7ea7893f7da1 + languageName: node + linkType: hard + "metro-transform-plugins@npm:0.81.0": version: 0.81.0 resolution: "metro-transform-plugins@npm:0.81.0" @@ -12970,6 +13545,27 @@ __metadata: languageName: node linkType: hard +"metro-transform-worker@npm:0.80.11": + version: 0.80.11 + resolution: "metro-transform-worker@npm:0.80.11" + dependencies: + "@babel/core": "npm:^7.20.0" + "@babel/generator": "npm:^7.20.0" + "@babel/parser": "npm:^7.20.0" + "@babel/types": "npm:^7.20.0" + flow-enums-runtime: "npm:^0.0.6" + metro: "npm:0.80.11" + metro-babel-transformer: "npm:0.80.11" + metro-cache: "npm:0.80.11" + metro-cache-key: "npm:0.80.11" + metro-minify-terser: "npm:0.80.11" + metro-source-map: "npm:0.80.11" + metro-transform-plugins: "npm:0.80.11" + nullthrows: "npm:^1.1.1" + checksum: 10/f0c6f6f524e8eec8e7e137c023aab881a311ddff79ed8a5934f466ab89abace497044b06a0fd699785d6752b41ead5f09648a8dd3a7e3e62ff57bbac309f1b5e + languageName: node + linkType: hard + "metro-transform-worker@npm:0.81.0": version: 0.81.0 resolution: "metro-transform-worker@npm:0.81.0" @@ -12991,6 +13587,58 @@ __metadata: languageName: node linkType: hard +"metro@npm:0.80.11, metro@npm:^0.80.3": + version: 0.80.11 + resolution: "metro@npm:0.80.11" + dependencies: + "@babel/code-frame": "npm:^7.0.0" + "@babel/core": "npm:^7.20.0" + "@babel/generator": "npm:^7.20.0" + "@babel/parser": "npm:^7.20.0" + "@babel/template": "npm:^7.0.0" + "@babel/traverse": "npm:^7.20.0" + "@babel/types": "npm:^7.20.0" + accepts: "npm:^1.3.7" + chalk: "npm:^4.0.0" + ci-info: "npm:^2.0.0" + connect: "npm:^3.6.5" + debug: "npm:^2.2.0" + denodeify: "npm:^1.2.1" + error-stack-parser: "npm:^2.0.6" + flow-enums-runtime: "npm:^0.0.6" + graceful-fs: "npm:^4.2.4" + hermes-parser: "npm:0.23.1" + image-size: "npm:^1.0.2" + invariant: "npm:^2.2.4" + jest-worker: "npm:^29.6.3" + jsc-safe-url: "npm:^0.2.2" + lodash.throttle: "npm:^4.1.1" + metro-babel-transformer: "npm:0.80.11" + metro-cache: "npm:0.80.11" + metro-cache-key: "npm:0.80.11" + metro-config: "npm:0.80.11" + metro-core: "npm:0.80.11" + metro-file-map: "npm:0.80.11" + metro-resolver: "npm:0.80.11" + metro-runtime: "npm:0.80.11" + metro-source-map: "npm:0.80.11" + metro-symbolicate: "npm:0.80.11" + metro-transform-plugins: "npm:0.80.11" + metro-transform-worker: "npm:0.80.11" + mime-types: "npm:^2.1.27" + nullthrows: "npm:^1.1.1" + serialize-error: "npm:^2.1.0" + source-map: "npm:^0.5.6" + strip-ansi: "npm:^6.0.0" + throat: "npm:^5.0.0" + ws: "npm:^7.5.10" + yargs: "npm:^17.6.2" + bin: + metro: src/cli.js + checksum: 10/8db3d1fefde4318f55a26781a9000a118b74432297df74129af32d22c23b1c5dc85c2f229edf444ec50c60a0a03b1cde01949007cfe6d9f9ef36422b73993ab0 + languageName: node + linkType: hard + "metro@npm:0.81.0, metro@npm:^0.81.0": version: 0.81.0 resolution: "metro@npm:0.81.0" @@ -13745,6 +14393,15 @@ __metadata: languageName: node linkType: hard +"ob1@npm:0.80.11": + version: 0.80.11 + resolution: "ob1@npm:0.80.11" + dependencies: + flow-enums-runtime: "npm:^0.0.6" + checksum: 10/da878e9a9eba424d5f9689805fdb28b522bf517bc31925b324369c38691bf5f7fbcb8b86f72bdbe85126346b3a6406e039665ceaa5065fe9e9ae59bd494230ee + languageName: node + linkType: hard + "ob1@npm:0.81.0": version: 0.81.0 resolution: "ob1@npm:0.81.0" @@ -14532,7 +15189,7 @@ __metadata: languageName: node linkType: hard -"pretty-format@npm:^26.6.2": +"pretty-format@npm:^26.5.2, pretty-format@npm:^26.6.2": version: 26.6.2 resolution: "pretty-format@npm:26.6.2" dependencies: @@ -14817,7 +15474,7 @@ __metadata: languageName: node linkType: hard -"querystring@npm:^0.2.0": +"querystring@npm:^0.2.0, querystring@npm:^0.2.1": version: 0.2.1 resolution: "querystring@npm:0.2.1" checksum: 10/5ae2eeb8c6d70263a3d13ffaf234ce9593ae0e95ad8ea04aa540e14ff66679347420817aeb4fe6fdfa2aaa7fac86e311b6f1d3da2187f433082ad9125c808c14 @@ -15228,6 +15885,60 @@ __metadata: languageName: node linkType: hard +"react-native-macos@npm:^0.75.7": + version: 0.75.7 + resolution: "react-native-macos@npm:0.75.7" + dependencies: + "@jest/create-cache-key-function": "npm:^29.6.3" + "@react-native-community/cli": "npm:14.0.0" + "@react-native-community/cli-platform-android": "npm:14.0.0" + "@react-native-community/cli-platform-ios": "npm:14.0.0" + "@react-native-mac/virtualized-lists": "npm:0.75.0" + "@react-native/assets-registry": "npm:0.75.2" + "@react-native/codegen": "npm:0.75.2" + "@react-native/community-cli-plugin": "npm:0.75.2" + "@react-native/gradle-plugin": "npm:0.75.2" + "@react-native/js-polyfills": "npm:0.75.2" + "@react-native/normalize-colors": "npm:0.75.2" + abort-controller: "npm:^3.0.0" + anser: "npm:^1.4.9" + ansi-regex: "npm:^5.0.0" + base64-js: "npm:^1.5.1" + chalk: "npm:^4.0.0" + event-target-shim: "npm:^5.0.1" + flow-enums-runtime: "npm:^0.0.6" + glob: "npm:^7.1.1" + invariant: "npm:^2.2.4" + jest-environment-node: "npm:^29.6.3" + jsc-android: "npm:^250231.0.0" + memoize-one: "npm:^5.0.0" + metro-runtime: "npm:^0.80.3" + metro-source-map: "npm:^0.80.3" + mkdirp: "npm:^0.5.1" + nullthrows: "npm:^1.1.1" + pretty-format: "npm:^26.5.2" + promise: "npm:^8.3.0" + react-devtools-core: "npm:^5.3.1" + react-refresh: "npm:^0.14.0" + regenerator-runtime: "npm:^0.13.2" + scheduler: "npm:0.24.0-canary-efb381bbf-20230505" + semver: "npm:^7.1.3" + stacktrace-parser: "npm:^0.1.10" + whatwg-fetch: "npm:^3.0.0" + ws: "npm:^6.2.3" + yargs: "npm:^17.6.2" + peerDependencies: + "@types/react": ^18.2.6 + react: ^18.2.0 + peerDependenciesMeta: + "@types/react": + optional: true + bin: + react-native: cli.js + checksum: 10/995c5e75a1306aa74f98d3e19c2524d8647e951263b581586a221335141441a75bea1fbfdad10bf89ad0f9b0470e798e227e4333970447f13cc4db6fa364f3b7 + languageName: node + linkType: hard + "react-native-maps@npm:1.18.0": version: 1.18.0 resolution: "react-native-maps@npm:1.18.0" @@ -18815,7 +19526,7 @@ __metadata: languageName: node linkType: hard -"ws@npm:^6.2.3": +"ws@npm:^6.2.2, ws@npm:^6.2.3": version: 6.2.3 resolution: "ws@npm:6.2.3" dependencies: