From c40b1470b05f17cb2520f6e4c132db90326fb669 Mon Sep 17 00:00:00 2001 From: Jacek Pudysz Date: Mon, 24 Jun 2024 10:25:42 +0200 Subject: [PATCH] feat: support visionos with new core --- .eslintrc | 5 +- examples/bare/ios/Podfile.lock | 4 +- .../expo/src/components/StyleSheetBox.tsx | 1 + examples/vision/assets/Bird.tsx | 1 + examples/vision/assets/Cloud.tsx | 1 + examples/vision/assets/Moon.tsx | 1 + examples/vision/assets/Star.tsx | 1 + examples/vision/assets/Sun.tsx | 1 + examples/vision/metro.config.js | 2 +- examples/vision/package.json | 36 +- examples/vision/tsconfig.json | 7 - examples/vision/visionos/Podfile | 3 - examples/vision/visionos/Podfile.lock | 952 +++++++++------ .../visionos/vision.xcodeproj/project.pbxproj | 66 +- examples/vision/visionos/vision/App.swift | 1 - .../vision/visionos/vision/AppDelegate.swift | 4 +- examples/vision/visionos/vision/Info.plist | 15 +- .../visionos/vision/PrivacyInfo.xcprivacy | 37 + ios/platform/Platform_Shared.h | 1 + ios/platform/Platform_Shared.mm | 26 +- ios/platform/Platform_visionOS.mm | 17 +- package.json | 2 +- tsconfig.json | 5 +- yarn.lock | 1073 +++-------------- 24 files changed, 905 insertions(+), 1357 deletions(-) create mode 100644 examples/vision/visionos/vision/PrivacyInfo.xcprivacy diff --git a/.eslintrc b/.eslintrc index dd6e269d..60d5042d 100644 --- a/.eslintrc +++ b/.eslintrc @@ -13,5 +13,8 @@ "functional/immutable-data": 0, "no-underscore-dangle": 0, "max-lines": 0 - } + }, + "ignorePatterns": [ + "examples/vision/visionos" + ] } diff --git a/examples/bare/ios/Podfile.lock b/examples/bare/ios/Podfile.lock index 283db587..4026578e 100644 --- a/examples/bare/ios/Podfile.lock +++ b/examples/bare/ios/Podfile.lock @@ -935,7 +935,7 @@ PODS: - React-Mapbuffer (0.74.2): - glog - React-debug - - react-native-unistyles (2.8.0-rc.1): + - react-native-unistyles (2.8.0-rc.3): - DoubleConversion - glog - hermes-engine @@ -1395,7 +1395,7 @@ SPEC CHECKSUMS: React-jsitracing: 0fa7f78d8fdda794667cb2e6f19c874c1cf31d7e React-logger: 29fa3e048f5f67fe396bc08af7606426d9bd7b5d React-Mapbuffer: bf56147c9775491e53122a94c423ac201417e326 - react-native-unistyles: ad905f21fdab6f22a82d33fc89af09d2a0204e52 + react-native-unistyles: b1c5a0d1f66e07747c8ee0069ef329db831b0ef8 React-nativeconfig: 9f223cd321823afdecf59ed00861ab2d69ee0fc1 React-NativeModulesApple: ff7efaff7098639db5631236cfd91d60abff04c0 React-perflogger: 32ed45d9cee02cf6639acae34251590dccd30994 diff --git a/examples/expo/src/components/StyleSheetBox.tsx b/examples/expo/src/components/StyleSheetBox.tsx index 0ef9d8e4..754d7645 100644 --- a/examples/expo/src/components/StyleSheetBox.tsx +++ b/examples/expo/src/components/StyleSheetBox.tsx @@ -1,3 +1,4 @@ +import React from 'react' import { StyleSheet, View } from 'react-native' export const StyleSheetBox = () => ( diff --git a/examples/vision/assets/Bird.tsx b/examples/vision/assets/Bird.tsx index 3ca100c5..bab3e914 100644 --- a/examples/vision/assets/Bird.tsx +++ b/examples/vision/assets/Bird.tsx @@ -1,3 +1,4 @@ +import React from 'react' import Svg, { Path } from 'react-native-svg' export const Bird = () => ( diff --git a/examples/vision/assets/Cloud.tsx b/examples/vision/assets/Cloud.tsx index e1291cf1..2bf6a3dd 100644 --- a/examples/vision/assets/Cloud.tsx +++ b/examples/vision/assets/Cloud.tsx @@ -1,3 +1,4 @@ +import React from 'react' import Svg, { Path, Defs, RadialGradient, Stop } from 'react-native-svg' export const Cloud = () => ( diff --git a/examples/vision/assets/Moon.tsx b/examples/vision/assets/Moon.tsx index 45c648fb..73a00d78 100644 --- a/examples/vision/assets/Moon.tsx +++ b/examples/vision/assets/Moon.tsx @@ -1,3 +1,4 @@ +import React from 'react' import Svg, { Path } from 'react-native-svg' export const Moon = () => ( diff --git a/examples/vision/assets/Star.tsx b/examples/vision/assets/Star.tsx index 10697882..3821556f 100644 --- a/examples/vision/assets/Star.tsx +++ b/examples/vision/assets/Star.tsx @@ -1,3 +1,4 @@ +import React from 'react' import Svg, { Path } from 'react-native-svg' export const Star = () => ( diff --git a/examples/vision/assets/Sun.tsx b/examples/vision/assets/Sun.tsx index e9f93b33..8cb6943b 100644 --- a/examples/vision/assets/Sun.tsx +++ b/examples/vision/assets/Sun.tsx @@ -1,3 +1,4 @@ +import React from 'react' import Svg, { Circle, Defs, RadialGradient, Stop } from 'react-native-svg' export const Sun = () => ( diff --git a/examples/vision/metro.config.js b/examples/vision/metro.config.js index e3e7c3a3..304e8203 100644 --- a/examples/vision/metro.config.js +++ b/examples/vision/metro.config.js @@ -23,7 +23,7 @@ const config = { extraNodeModules: modules.reduce((acc, name) => ({ ...acc, [name]: path.join(__dirname, 'node_modules', name) - }), {}), + }), {}) // resolveRequest: getPlatformResolver({ // platformNameMap: { visionos: '@callstack/react-native-visionos' } // }) diff --git a/examples/vision/package.json b/examples/vision/package.json index d9b1ce57..4561acfd 100644 --- a/examples/vision/package.json +++ b/examples/vision/package.json @@ -9,27 +9,27 @@ "start": "npx @callstack/react-native-visionos start" }, "dependencies": { - "@callstack/react-native-visionos": "0.73.10", - "react": "18.2.0", - "react-native": "0.73.6", - "react-native-svg": "15.1.0" + "@callstack/react-native-visionos": "0.74.3", + "react": "18.3.1", + "react-native": "0.74.2", + "react-native-svg": "15.3.0" }, "devDependencies": { - "@babel/core": "7.24.3", - "@babel/preset-env": "7.24.3", - "@babel/runtime": "7.20.0", - "@callstack/out-of-tree-platforms": "0.73.10", - "@react-native/babel-preset": "0.73.19", - "@react-native/eslint-config": "0.73.2", - "@react-native/metro-config": "0.73.3", - "@react-native/typescript-config": "0.73.1", - "@types/react": "18.2.74", - "babel-jest": "29.6.3", - "babel-plugin-module-resolver": "5.0.0", - "eslint": "8.19.0", - "typescript": "5.0.4" + "@babel/core": "7.24.7", + "@babel/preset-env": "7.24.7", + "@babel/runtime": "7.24.7", + "@callstack/out-of-tree-platforms": "0.74.3", + "@react-native/babel-preset": "0.74.84", + "@react-native/eslint-config": "0.74.84", + "@react-native/metro-config": "0.74.84", + "@react-native/typescript-config": "0.74.84", + "@types/react": "18.3.3", + "babel-jest": "29.7.0", + "babel-plugin-module-resolver": "5.0.2", + "eslint": "8.57.0", + "typescript": "5.5.2" }, "engines": { - "node": ">=18" + "node": ">=20" } } diff --git a/examples/vision/tsconfig.json b/examples/vision/tsconfig.json index 0f201873..7765aca5 100644 --- a/examples/vision/tsconfig.json +++ b/examples/vision/tsconfig.json @@ -1,12 +1,5 @@ { "extends": "@react-native/typescript-config/tsconfig.json", - "exclude": [ - "**/Pods/**", - "node_modules", - "babel.config.js", - "metro.config.js", - "jest.config.js" - ], "references": [ { "path": "../../" diff --git a/examples/vision/visionos/Podfile b/examples/vision/visionos/Podfile index d2143bdb..8d2ac7ce 100644 --- a/examples/vision/visionos/Podfile +++ b/examples/vision/visionos/Podfile @@ -20,9 +20,6 @@ target 'vision' do use_react_native!( :path => config[:reactNativePath], - # todo - # https://github.com/callstack/react-native-visionos/issues/128 - :hermes_enabled => false, # An absolute path to your application root. :app_path => "#{Pod::Config.instance.installation_root}/.." ) diff --git a/examples/vision/visionos/Podfile.lock b/examples/vision/visionos/Podfile.lock index 26edb5b2..542301db 100644 --- a/examples/vision/visionos/Podfile.lock +++ b/examples/vision/visionos/Podfile.lock @@ -1,329 +1,403 @@ PODS: - boost (1.83.0) - DoubleConversion (1.1.6) - - FBLazyVector (0.73.10) - - FBReactNativeSpec (0.73.10): - - RCT-Folly (= 2022.05.16.00) - - RCTRequired (= 0.73.10) - - RCTTypeSafety (= 0.73.10) - - React-Core (= 0.73.10) - - React-jsi (= 0.73.10) - - ReactCommon/turbomodule/core (= 0.73.10) + - FBLazyVector (0.74.3) - fmt (9.1.0) - glog (0.3.5) - - libevent (2.1.12.1) - - RCT-Folly (2022.05.16.00): + - hermes-engine (0.74.3): + - hermes-engine/Hermes (= 0.74.3) + - hermes-engine/inspector (= 0.74.3) + - hermes-engine/inspector_chrome (= 0.74.3) + - hermes-engine/Public (= 0.74.3) + - hermes-engine/Hermes (0.74.3) + - hermes-engine/inspector (0.74.3) + - hermes-engine/inspector_chrome (0.74.3) + - hermes-engine/Public (0.74.3) + - RCT-Folly (2024.01.01.00): - boost - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Default (= 2022.05.16.00) - - RCT-Folly/Default (2022.05.16.00): + - RCT-Folly/Default (= 2024.01.01.00) + - RCT-Folly/Default (2024.01.01.00): - boost - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (2022.05.16.00): + - RCT-Folly/Fabric (2024.01.01.00): - boost - DoubleConversion - fmt (= 9.1.0) - glog - - RCTRequired (0.73.10) - - RCTTypeSafety (0.73.10): - - FBLazyVector (= 0.73.10) - - RCTRequired (= 0.73.10) - - React-Core (= 0.73.10) - - React (0.73.10): - - React-Core (= 0.73.10) - - React-Core/DevSupport (= 0.73.10) - - React-Core/RCTWebSocket (= 0.73.10) - - React-RCTActionSheet (= 0.73.10) - - React-RCTAnimation (= 0.73.10) - - React-RCTBlob (= 0.73.10) - - React-RCTImage (= 0.73.10) - - React-RCTLinking (= 0.73.10) - - React-RCTNetwork (= 0.73.10) - - React-RCTSettings (= 0.73.10) - - React-RCTText (= 0.73.10) - - React-RCTVibration (= 0.73.10) - - React-RCTWindowManager (= 0.73.10) - - React-RCTXR (= 0.73.10) - - React-callinvoker (0.73.10) - - React-Codegen (0.73.10): + - RCTDeprecation (0.74.3) + - RCTRequired (0.74.3) + - RCTTypeSafety (0.74.3): + - FBLazyVector (= 0.74.3) + - RCTRequired (= 0.74.3) + - React-Core (= 0.74.3) + - React (0.74.3): + - React-Core (= 0.74.3) + - React-Core/DevSupport (= 0.74.3) + - React-Core/RCTWebSocket (= 0.74.3) + - React-RCTActionSheet (= 0.74.3) + - React-RCTAnimation (= 0.74.3) + - React-RCTBlob (= 0.74.3) + - React-RCTImage (= 0.74.3) + - React-RCTLinking (= 0.74.3) + - React-RCTNetwork (= 0.74.3) + - React-RCTSettings (= 0.74.3) + - React-RCTText (= 0.74.3) + - React-RCTVibration (= 0.74.3) + - React-RCTWindowManager (= 0.74.3) + - React-RCTXR (= 0.74.3) + - React-callinvoker (0.74.3) + - React-Codegen (0.74.3): - DoubleConversion - - FBReactNativeSpec - glog + - hermes-engine - RCT-Folly - RCTRequired - RCTTypeSafety - React-Core - - React-jsc + - React-debug + - React-Fabric + - React-FabricImage + - React-featureflags + - React-graphics - React-jsi - React-jsiexecutor - React-NativeModulesApple - - React-rncore + - React-rendererdebug + - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-Core (0.73.10): + - React-Core (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.10) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default (= 0.74.3) - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/CoreModulesHeaders (0.73.10): + - React-Core/CoreModulesHeaders (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/Default (0.73.10): + - React-Core/Default (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/DevSupport (0.73.10): + - React-Core/DevSupport (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.10) - - React-Core/RCTWebSocket (= 0.73.10) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default (= 0.74.3) + - React-Core/RCTWebSocket (= 0.74.3) - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor - - React-jsinspector (= 0.73.10) + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/RCTActionSheetHeaders (0.73.10): + - React-Core/RCTActionSheetHeaders (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/RCTAnimationHeaders (0.73.10): + - React-Core/RCTAnimationHeaders (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/RCTBlobHeaders (0.73.10): + - React-Core/RCTBlobHeaders (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/RCTImageHeaders (0.73.10): + - React-Core/RCTImageHeaders (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/RCTLinkingHeaders (0.73.10): + - React-Core/RCTLinkingHeaders (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/RCTNetworkHeaders (0.73.10): + - React-Core/RCTNetworkHeaders (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/RCTSettingsHeaders (0.73.10): + - React-Core/RCTSettingsHeaders (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/RCTTextHeaders (0.73.10): + - React-Core/RCTTextHeaders (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/RCTVibrationHeaders (0.73.10): + - React-Core/RCTVibrationHeaders (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/RCTWebSocket (0.73.10): + - React-Core/RCTWebSocket (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.10) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default (= 0.74.3) - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/RCTWindowManagerHeaders (0.73.10): + - React-Core/RCTWindowManagerHeaders (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-Core/RCTXRHeaders (0.73.10): + - React-Core/RCTXRHeaders (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact - - React-jsc + - React-featureflags + - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.7.0.1) - Yoga - - React-CoreModules (0.73.10): - - RCT-Folly (= 2022.05.16.00) - - RCTTypeSafety (= 0.73.10) + - React-CoreModules (0.74.3): + - DoubleConversion + - fmt (= 9.1.0) + - RCT-Folly (= 2024.01.01.00) + - RCTTypeSafety (= 0.74.3) - React-Codegen - - React-Core/CoreModulesHeaders (= 0.73.10) - - React-jsi (= 0.73.10) + - React-Core/CoreModulesHeaders (= 0.74.3) + - React-jsi (= 0.74.3) + - React-jsinspector - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.73.10) + - React-RCTImage (= 0.74.3) - ReactCommon - SocketRocket (= 0.7.0.1) - - React-cxxreact (0.73.10): + - React-cxxreact (0.74.3): - boost (= 1.83.0) - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.10) - - React-debug (= 0.73.10) - - React-jsi (= 0.73.10) - - React-jsinspector (= 0.73.10) - - React-logger (= 0.73.10) - - React-perflogger (= 0.73.10) - - React-runtimeexecutor (= 0.73.10) - - React-debug (0.73.10) - - React-Fabric (0.73.10): + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.74.3) + - React-debug (= 0.74.3) + - React-jsi (= 0.74.3) + - React-jsinspector + - React-logger (= 0.74.3) + - React-perflogger (= 0.74.3) + - React-runtimeexecutor (= 0.74.3) + - React-debug (0.74.3) + - React-Fabric (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.73.10) - - React-Fabric/attributedstring (= 0.73.10) - - React-Fabric/componentregistry (= 0.73.10) - - React-Fabric/componentregistrynative (= 0.73.10) - - React-Fabric/components (= 0.73.10) - - React-Fabric/core (= 0.73.10) - - React-Fabric/imagemanager (= 0.73.10) - - React-Fabric/leakchecker (= 0.73.10) - - React-Fabric/mounting (= 0.73.10) - - React-Fabric/scheduler (= 0.73.10) - - React-Fabric/telemetry (= 0.73.10) - - React-Fabric/templateprocessor (= 0.73.10) - - React-Fabric/textlayoutmanager (= 0.73.10) - - React-Fabric/uimanager (= 0.73.10) + - React-Fabric/animations (= 0.74.3) + - React-Fabric/attributedstring (= 0.74.3) + - React-Fabric/componentregistry (= 0.74.3) + - React-Fabric/componentregistrynative (= 0.74.3) + - React-Fabric/components (= 0.74.3) + - React-Fabric/core (= 0.74.3) + - React-Fabric/imagemanager (= 0.74.3) + - React-Fabric/leakchecker (= 0.74.3) + - React-Fabric/mounting (= 0.74.3) + - React-Fabric/scheduler (= 0.74.3) + - React-Fabric/telemetry (= 0.74.3) + - React-Fabric/templateprocessor (= 0.74.3) + - React-Fabric/textlayoutmanager (= 0.74.3) + - React-Fabric/uimanager (= 0.74.3) - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -331,18 +405,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.73.10): + - React-Fabric/animations (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -350,18 +424,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.73.10): + - React-Fabric/attributedstring (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -369,18 +443,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.73.10): + - React-Fabric/componentregistry (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -388,18 +462,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.73.10): + - React-Fabric/componentregistrynative (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -407,29 +481,29 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.73.10): + - React-Fabric/components (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/components/inputaccessory (= 0.73.10) - - React-Fabric/components/legacyviewmanagerinterop (= 0.73.10) - - React-Fabric/components/modal (= 0.73.10) - - React-Fabric/components/rncore (= 0.73.10) - - React-Fabric/components/root (= 0.73.10) - - React-Fabric/components/safeareaview (= 0.73.10) - - React-Fabric/components/scrollview (= 0.73.10) - - React-Fabric/components/text (= 0.73.10) - - React-Fabric/components/textinput (= 0.73.10) - - React-Fabric/components/unimplementedview (= 0.73.10) - - React-Fabric/components/view (= 0.73.10) + - React-Fabric/components/inputaccessory (= 0.74.3) + - React-Fabric/components/legacyviewmanagerinterop (= 0.74.3) + - React-Fabric/components/modal (= 0.74.3) + - React-Fabric/components/rncore (= 0.74.3) + - React-Fabric/components/root (= 0.74.3) + - React-Fabric/components/safeareaview (= 0.74.3) + - React-Fabric/components/scrollview (= 0.74.3) + - React-Fabric/components/text (= 0.74.3) + - React-Fabric/components/textinput (= 0.74.3) + - React-Fabric/components/unimplementedview (= 0.74.3) + - React-Fabric/components/view (= 0.74.3) - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -437,18 +511,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/inputaccessory (0.73.10): + - React-Fabric/components/inputaccessory (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -456,18 +530,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.73.10): + - React-Fabric/components/legacyviewmanagerinterop (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -475,18 +549,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/modal (0.73.10): + - React-Fabric/components/modal (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -494,18 +568,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/rncore (0.73.10): + - React-Fabric/components/rncore (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -513,18 +587,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.73.10): + - React-Fabric/components/root (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -532,18 +606,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/safeareaview (0.73.10): + - React-Fabric/components/safeareaview (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -551,18 +625,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/scrollview (0.73.10): + - React-Fabric/components/scrollview (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -570,18 +644,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/text (0.73.10): + - React-Fabric/components/text (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -589,18 +663,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/textinput (0.73.10): + - React-Fabric/components/textinput (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -608,18 +682,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/unimplementedview (0.73.10): + - React-Fabric/components/unimplementedview (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -627,18 +701,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.73.10): + - React-Fabric/components/view (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -647,18 +721,18 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.73.10): + - React-Fabric/core (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -666,18 +740,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.73.10): + - React-Fabric/imagemanager (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -685,18 +759,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.73.10): + - React-Fabric/leakchecker (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -704,18 +778,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.73.10): + - React-Fabric/mounting (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -723,18 +797,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.73.10): + - React-Fabric/scheduler (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -742,18 +816,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.73.10): + - React-Fabric/telemetry (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -761,18 +835,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.73.10): + - React-Fabric/templateprocessor (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -780,11 +854,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/textlayoutmanager (0.73.10): + - React-Fabric/textlayoutmanager (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -792,7 +867,6 @@ PODS: - React-debug - React-Fabric/uimanager - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -800,18 +874,18 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.73.10): + - React-Fabric/uimanager (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-graphics - - React-jsc - React-jsi - React-jsiexecutor - React-logger @@ -819,30 +893,45 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricImage (0.73.10): + - React-FabricImage (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.10) - - RCTTypeSafety (= 0.73.10) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired (= 0.74.3) + - RCTTypeSafety (= 0.74.3) - React-Fabric - React-graphics - React-ImageManager - - React-jsc - React-jsi - - React-jsiexecutor (= 0.73.10) + - React-jsiexecutor (= 0.74.3) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-graphics (0.73.10): + - React-featureflags (0.74.3) + - React-graphics (0.74.3): + - DoubleConversion + - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) - - React-Core/Default (= 0.73.10) + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-Core/Default (= 0.74.3) - React-utils - - React-ImageManager (0.73.10): + - React-hermes (0.74.3): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact (= 0.74.3) + - React-jsi + - React-jsiexecutor (= 0.74.3) + - React-jsinspector + - React-perflogger (= 0.74.3) + - React-runtimeexecutor + - React-ImageManager (0.74.3): - glog - RCT-Folly/Fabric - React-Core/Default @@ -851,96 +940,137 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jsc (0.73.10): - - React-jsc/Fabric (= 0.73.10) - - React-jsi (= 0.73.10) - - React-jsc/Fabric (0.73.10): - - React-jsi (= 0.73.10) - - React-jserrorhandler (0.73.10): - - RCT-Folly/Fabric (= 2022.05.16.00) + - React-jserrorhandler (0.74.3): + - RCT-Folly/Fabric (= 2024.01.01.00) - React-debug - React-jsi - React-Mapbuffer - - React-jsi (0.73.10): + - React-jsi (0.74.3): - boost (= 1.83.0) - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly (= 2022.05.16.00) - - React-jsiexecutor (0.73.10): + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-jsiexecutor (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly (= 2022.05.16.00) - - React-cxxreact (= 0.73.10) - - React-jsi (= 0.73.10) - - React-perflogger (= 0.73.10) - - React-jsinspector (0.73.10) - - React-logger (0.73.10): + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact (= 0.74.3) + - React-jsi (= 0.74.3) + - React-jsinspector + - React-perflogger (= 0.74.3) + - React-jsinspector (0.74.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-featureflags + - React-jsi + - React-runtimeexecutor (= 0.74.3) + - React-jsitracing (0.74.3): + - React-jsi + - React-logger (0.74.3): - glog - - React-Mapbuffer (0.73.10): + - React-Mapbuffer (0.74.3): - glog - React-debug - - react-native-unistyles (2.8.0-beta.1): + - react-native-unistyles (2.8.0-rc.3): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core - - React-nativeconfig (0.73.10) - - React-NativeModulesApple (0.73.10): + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-nativeconfig (0.74.3) + - React-NativeModulesApple (0.74.3): - 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.73.10) - - React-RCTActionSheet (0.73.10): - - React-Core/RCTActionSheetHeaders (= 0.73.10) - - React-RCTAnimation (0.73.10): - - RCT-Folly (= 2022.05.16.00) + - React-perflogger (0.74.3) + - React-RCTActionSheet (0.74.3): + - React-Core/RCTActionSheetHeaders (= 0.74.3) + - React-RCTAnimation (0.74.3): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Codegen - React-Core/RCTAnimationHeaders - React-jsi - React-NativeModulesApple - ReactCommon - - React-RCTAppDelegate (0.73.10): - - RCT-Folly + - React-RCTAppDelegate (0.74.3): + - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety + - React-Codegen - React-Core - React-CoreModules - - React-jsc + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-hermes - React-nativeconfig - React-NativeModulesApple - React-RCTFabric - React-RCTImage - React-RCTNetwork + - React-rendererdebug + - React-RuntimeApple + - React-RuntimeCore + - React-RuntimeHermes - React-runtimescheduler + - React-utils - ReactCommon - - React-RCTBlob (0.73.10): - - RCT-Folly (= 2022.05.16.00) + - React-RCTBlob (0.74.3): + - DoubleConversion + - fmt (= 9.1.0) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) - React-Codegen - React-Core/RCTBlobHeaders - React-Core/RCTWebSocket - React-jsi + - React-jsinspector - React-NativeModulesApple - React-RCTNetwork - ReactCommon - - React-RCTFabric (0.73.10): + - React-RCTFabric (0.74.3): - glog - - RCT-Folly/Fabric (= 2022.05.16.00) + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) - React-Core - React-debug - React-Fabric - React-FabricImage + - React-featureflags - React-graphics - React-ImageManager - - React-jsc - React-jsi + - React-jsinspector - React-nativeconfig - React-RCTImage - React-RCTText @@ -948,8 +1078,8 @@ PODS: - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.73.10): - - RCT-Folly (= 2022.05.16.00) + - React-RCTImage (0.74.3): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Codegen - React-Core/RCTImageHeaders @@ -957,133 +1087,182 @@ PODS: - React-NativeModulesApple - React-RCTNetwork - ReactCommon - - React-RCTLinking (0.73.10): + - React-RCTLinking (0.74.3): - React-Codegen - - React-Core/RCTLinkingHeaders (= 0.73.10) - - React-jsi (= 0.73.10) + - React-Core/RCTLinkingHeaders (= 0.74.3) + - React-jsi (= 0.74.3) - React-NativeModulesApple - ReactCommon - - ReactCommon/turbomodule/core (= 0.73.10) - - React-RCTNetwork (0.73.10): - - RCT-Folly (= 2022.05.16.00) + - ReactCommon/turbomodule/core (= 0.74.3) + - React-RCTNetwork (0.74.3): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Codegen - React-Core/RCTNetworkHeaders - React-jsi - React-NativeModulesApple - ReactCommon - - React-RCTSettings (0.73.10): - - RCT-Folly (= 2022.05.16.00) + - React-RCTSettings (0.74.3): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Codegen - React-Core/RCTSettingsHeaders - React-jsi - React-NativeModulesApple - ReactCommon - - React-RCTSwiftExtensions (0.73.10): + - React-RCTSwiftExtensions (0.74.3): - React-Core - React-RCTWindowManager - React-RCTXR - - React-RCTText (0.73.10): - - React-Core/RCTTextHeaders (= 0.73.10) + - React-RCTText (0.74.3): + - React-Core/RCTTextHeaders (= 0.74.3) - Yoga - - React-RCTVibration (0.73.10): - - RCT-Folly (= 2022.05.16.00) + - React-RCTVibration (0.74.3): + - RCT-Folly (= 2024.01.01.00) - React-Codegen - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple - ReactCommon - - React-RCTWindowManager (0.73.10): - - RCT-Folly (= 2022.05.16.00) + - React-RCTWindowManager (0.74.3): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Codegen - React-Core/RCTWindowManagerHeaders - React-jsi - React-NativeModulesApple - ReactCommon - - React-RCTXR (0.73.10): - - RCT-Folly (= 2022.05.16.00) + - React-RCTXR (0.74.3): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Codegen - React-Core/RCTXRHeaders - React-jsi - React-NativeModulesApple - ReactCommon - - React-rendererdebug (0.73.10): + - React-rendererdebug (0.74.3): - DoubleConversion - fmt (= 9.1.0) - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) - React-debug - - React-rncore (0.73.10) - - React-runtimeexecutor (0.73.10): - - React-jsi (= 0.73.10) - - React-runtimescheduler (0.73.10): + - React-rncore (0.74.3) + - React-RuntimeApple (0.74.3): + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-callinvoker + - React-Core/Default + - React-CoreModules + - React-cxxreact + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-Mapbuffer + - React-NativeModulesApple + - React-RCTFabric + - React-RuntimeCore + - React-runtimeexecutor + - React-RuntimeHermes + - React-utils + - React-RuntimeCore (0.74.3): + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-cxxreact + - React-featureflags + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - React-runtimeexecutor (0.74.3): + - React-jsi (= 0.74.3) + - React-RuntimeHermes (0.74.3): + - 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.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) - React-callinvoker - React-cxxreact - React-debug - - React-jsc + - React-featureflags - React-jsi - React-rendererdebug - React-runtimeexecutor - React-utils - - React-utils (0.73.10): + - React-utils (0.74.3): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) - React-debug - - ReactCommon (0.73.10): - - React-logger (= 0.73.10) - - ReactCommon/turbomodule (= 0.73.10) - - ReactCommon/turbomodule (0.73.10): + - React-jsi (= 0.74.3) + - ReactCommon (0.74.3): + - ReactCommon/turbomodule (= 0.74.3) + - ReactCommon/turbomodule (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.10) - - React-cxxreact (= 0.73.10) - - React-jsi (= 0.73.10) - - React-logger (= 0.73.10) - - React-perflogger (= 0.73.10) - - ReactCommon/turbomodule/bridging (= 0.73.10) - - ReactCommon/turbomodule/core (= 0.73.10) - - ReactCommon/turbomodule/bridging (0.73.10): + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.74.3) + - React-cxxreact (= 0.74.3) + - React-jsi (= 0.74.3) + - React-logger (= 0.74.3) + - React-perflogger (= 0.74.3) + - ReactCommon/turbomodule/bridging (= 0.74.3) + - ReactCommon/turbomodule/core (= 0.74.3) + - ReactCommon/turbomodule/bridging (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.10) - - React-cxxreact (= 0.73.10) - - React-jsi (= 0.73.10) - - React-logger (= 0.73.10) - - React-perflogger (= 0.73.10) - - ReactCommon/turbomodule/core (0.73.10): + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.74.3) + - React-cxxreact (= 0.74.3) + - React-jsi (= 0.74.3) + - React-logger (= 0.74.3) + - React-perflogger (= 0.74.3) + - ReactCommon/turbomodule/core (0.74.3): - DoubleConversion - fmt (= 9.1.0) - glog - - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.10) - - React-cxxreact (= 0.73.10) - - React-jsi (= 0.73.10) - - React-logger (= 0.73.10) - - React-perflogger (= 0.73.10) - - RNSVG (15.1.0): + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.74.3) + - React-cxxreact (= 0.74.3) + - React-debug (= 0.74.3) + - React-jsi (= 0.74.3) + - React-logger (= 0.74.3) + - React-perflogger (= 0.74.3) + - React-utils (= 0.74.3) + - RNSVG (15.3.0): - React-Core - SocketRocket (0.7.0.1) - - Yoga (1.14.0) + - Yoga (0.0.0) DEPENDENCIES: - "boost (from `../node_modules/@callstack/react-native-visionos/third-party-podspecs/boost.podspec`)" - "DoubleConversion (from `../node_modules/@callstack/react-native-visionos/third-party-podspecs/DoubleConversion.podspec`)" - "FBLazyVector (from `../node_modules/@callstack/react-native-visionos/Libraries/FBLazyVector`)" - - "FBReactNativeSpec (from `../node_modules/@callstack/react-native-visionos/React/FBReactNativeSpec`)" - "fmt (from `../node_modules/@callstack/react-native-visionos/third-party-podspecs/fmt.podspec`)" - "glog (from `../node_modules/@callstack/react-native-visionos/third-party-podspecs/glog.podspec`)" - - "libevent (from `../node_modules/@callstack/react-native-visionos/third-party-podspecs/libevent.podspec`)" + - "hermes-engine (from `../node_modules/@callstack/react-native-visionos/sdks/hermes-engine/hermes-engine.podspec`)" - "RCT-Folly (from `../node_modules/@callstack/react-native-visionos/third-party-podspecs/RCT-Folly.podspec`)" - "RCT-Folly/Fabric (from `../node_modules/@callstack/react-native-visionos/third-party-podspecs/RCT-Folly.podspec`)" - - "RCTRequired (from `../node_modules/@callstack/react-native-visionos/Libraries/RCTRequired`)" + - "RCTDeprecation (from `../node_modules/@callstack/react-native-visionos/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)" + - "RCTRequired (from `../node_modules/@callstack/react-native-visionos/Libraries/Required`)" - "RCTTypeSafety (from `../node_modules/@callstack/react-native-visionos/Libraries/TypeSafety`)" - "React (from `../node_modules/@callstack/react-native-visionos/`)" - "React-callinvoker (from `../node_modules/@callstack/react-native-visionos/ReactCommon/callinvoker`)" @@ -1095,13 +1274,15 @@ DEPENDENCIES: - "React-debug (from `../node_modules/@callstack/react-native-visionos/ReactCommon/react/debug`)" - "React-Fabric (from `../node_modules/@callstack/react-native-visionos/ReactCommon`)" - "React-FabricImage (from `../node_modules/@callstack/react-native-visionos/ReactCommon`)" + - "React-featureflags (from `../node_modules/@callstack/react-native-visionos/ReactCommon/react/featureflags`)" - "React-graphics (from `../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/graphics`)" + - "React-hermes (from `../node_modules/@callstack/react-native-visionos/ReactCommon/hermes`)" - "React-ImageManager (from `../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/imagemanager/platform/ios`)" - - "React-jsc (from `../node_modules/@callstack/react-native-visionos/ReactCommon/jsc`)" - "React-jserrorhandler (from `../node_modules/@callstack/react-native-visionos/ReactCommon/jserrorhandler`)" - "React-jsi (from `../node_modules/@callstack/react-native-visionos/ReactCommon/jsi`)" - "React-jsiexecutor (from `../node_modules/@callstack/react-native-visionos/ReactCommon/jsiexecutor`)" - "React-jsinspector (from `../node_modules/@callstack/react-native-visionos/ReactCommon/jsinspector-modern`)" + - "React-jsitracing (from `../node_modules/@callstack/react-native-visionos/ReactCommon/hermes/executor/`)" - "React-logger (from `../node_modules/@callstack/react-native-visionos/ReactCommon/logger`)" - "React-Mapbuffer (from `../node_modules/@callstack/react-native-visionos/ReactCommon`)" - react-native-unistyles (from `../../..`) @@ -1124,7 +1305,10 @@ DEPENDENCIES: - "React-RCTXR (from `../node_modules/@callstack/react-native-visionos/Libraries/XR`)" - "React-rendererdebug (from `../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/debug`)" - "React-rncore (from `../node_modules/@callstack/react-native-visionos/ReactCommon`)" + - "React-RuntimeApple (from `../node_modules/@callstack/react-native-visionos/ReactCommon/react/runtime/platform/ios`)" + - "React-RuntimeCore (from `../node_modules/@callstack/react-native-visionos/ReactCommon/react/runtime`)" - "React-runtimeexecutor (from `../node_modules/@callstack/react-native-visionos/ReactCommon/runtimeexecutor`)" + - "React-RuntimeHermes (from `../node_modules/@callstack/react-native-visionos/ReactCommon/react/runtime`)" - "React-runtimescheduler (from `../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/runtimescheduler`)" - "React-utils (from `../node_modules/@callstack/react-native-visionos/ReactCommon/react/utils`)" - "ReactCommon/turbomodule/core (from `../node_modules/@callstack/react-native-visionos/ReactCommon`)" @@ -1139,18 +1323,19 @@ EXTERNAL SOURCES: :podspec: "../node_modules/@callstack/react-native-visionos/third-party-podspecs/DoubleConversion.podspec" FBLazyVector: :path: "../node_modules/@callstack/react-native-visionos/Libraries/FBLazyVector" - FBReactNativeSpec: - :path: "../node_modules/@callstack/react-native-visionos/React/FBReactNativeSpec" fmt: :podspec: "../node_modules/@callstack/react-native-visionos/third-party-podspecs/fmt.podspec" glog: :podspec: "../node_modules/@callstack/react-native-visionos/third-party-podspecs/glog.podspec" - libevent: - :podspec: "../node_modules/@callstack/react-native-visionos/third-party-podspecs/libevent.podspec" + hermes-engine: + :podspec: "../node_modules/@callstack/react-native-visionos/sdks/hermes-engine/hermes-engine.podspec" + :tag: hermes-2024-06-03-RNv0.74.2-bb1e74fe1e95c2b5a2f4f9311152da052badc2bc RCT-Folly: :podspec: "../node_modules/@callstack/react-native-visionos/third-party-podspecs/RCT-Folly.podspec" + RCTDeprecation: + :path: "../node_modules/@callstack/react-native-visionos/ReactApple/Libraries/RCTFoundation/RCTDeprecation" RCTRequired: - :path: "../node_modules/@callstack/react-native-visionos/Libraries/RCTRequired" + :path: "../node_modules/@callstack/react-native-visionos/Libraries/Required" RCTTypeSafety: :path: "../node_modules/@callstack/react-native-visionos/Libraries/TypeSafety" React: @@ -1171,12 +1356,14 @@ EXTERNAL SOURCES: :path: "../node_modules/@callstack/react-native-visionos/ReactCommon" React-FabricImage: :path: "../node_modules/@callstack/react-native-visionos/ReactCommon" + React-featureflags: + :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/react/featureflags" React-graphics: :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/graphics" + React-hermes: + :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/hermes" React-ImageManager: :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/imagemanager/platform/ios" - React-jsc: - :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/jsc" React-jserrorhandler: :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/jserrorhandler" React-jsi: @@ -1185,6 +1372,8 @@ EXTERNAL SOURCES: :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/jsiexecutor" React-jsinspector: :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/jsinspector-modern" + React-jsitracing: + :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/hermes/executor/" React-logger: :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/logger" React-Mapbuffer: @@ -1229,8 +1418,14 @@ EXTERNAL SOURCES: :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/debug" React-rncore: :path: "../node_modules/@callstack/react-native-visionos/ReactCommon" + React-RuntimeApple: + :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/react/runtime/platform/ios" + React-RuntimeCore: + :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/react/runtime" React-runtimeexecutor: :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/runtimeexecutor" + React-RuntimeHermes: + :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/react/runtime" React-runtimescheduler: :path: "../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/runtimescheduler" React-utils: @@ -1246,61 +1441,66 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: boost: 8f1e9b214fa11f71081fc8ecd5fad3daf221cf7f - DoubleConversion: 71bf0761505a44e4dfddc0aa04afa049fdfb63b5 - FBLazyVector: f7d5b5bb2e0394085d20a4e8841d385bae13446d - FBReactNativeSpec: e6cdc566c333aba42103d4e00f9e30b46c018a75 + DoubleConversion: 26c660c8d88372cca1a67f8101d2d962a7064361 + FBLazyVector: 58cfd9bf11ffbbfef8e7c900f4ad7e48e91d7432 fmt: 5d9ffa7ccba126c08b730252123601d514652320 - glog: 4f05d17aa39a829fee878689fc9a41af587fabba - libevent: a29e03f67aa3a1c501656baccbff6071a8b40a00 - RCT-Folly: 08b69b8ee3f4c5baf3a18a468b4d5a56276435fa - RCTRequired: bdb31bdd649586cfaba1f5beb3655820dcb443b3 - RCTTypeSafety: 2b3b965988769d7ef28837104b4b5dc71f064d8b - React: 9e3ad7c206d521ed84ddaa0ea945e29c28736947 - React-callinvoker: d475bdf04f798399e34ecdf22bc3b022114ec3bd - React-Codegen: 7f78a48f66038b23f9068c7a34fc780e6d8e084e - React-Core: b951bd35890ed1bdffb2e9b1317209737e50350e - React-CoreModules: 8bf2f3113366133767b102610ded14eee02d98a5 - React-cxxreact: cc9eab5012e04689af545b18e0dc46f1059f963c - React-debug: 56c0fa7263a607d84dc4556fd303870dacc3891f - React-Fabric: 1a11a0e9e79198829b1a31d00a46c419a038cee6 - React-FabricImage: dfb67e448840a75bccecbbef81d6f5e19edceda9 - React-graphics: d63cd8e69db477a53357e1c8ebdb597985efab51 - React-ImageManager: 9f3359daff2c6ba226325562c2add03cfe3402a4 - React-jsc: 3b47c849804da36fd7dbb619ecac6e25c0e7fa1f - React-jserrorhandler: 2cff99f7bbc361c5f7c005bcf858c8f79f70937f - React-jsi: 850770352c82f207e9abfdf503f58c743e5062f1 - React-jsiexecutor: 55fb9e16baadafa145437cb9efbae4408ba81617 - React-jsinspector: d0270713e52b3797a62d01e3027573a18a20341f - React-logger: b9d776e95e27d2466e720dd7de4115cfc47d412a - React-Mapbuffer: 0c67d6e60225d91e20a27e65ae8f8391b740ecb6 - react-native-unistyles: 5cf3cd5dda34e23914659b23ff0edbf8a4752b32 - React-nativeconfig: 5c702993ba5b4016d481edb6490b48217f11b6df - React-NativeModulesApple: 69648222e318b949728a6f43b4d929603d618b8f - React-perflogger: 27f9b7e9ad34a2abe2b0f5fae6e100b16604485c - React-RCTActionSheet: 3f5cd90bdd5f5030a6140719429b20d4657f424a - React-RCTAnimation: 0506b8044496307a7d701511840de4c6ce764281 - React-RCTAppDelegate: c76aef0003a691d7043a71910f79c77a2d70b068 - React-RCTBlob: c13d8cf5b77bbb17356c4d67f8f924de3a506594 - React-RCTFabric: fc91d1a3d9845c3110c18fd1cd54bbe74293792b - React-RCTImage: 7eb8a325e24aa4365673e995aaec0c6bc5fa67a2 - React-RCTLinking: 02b4b258d0c08b12b4179eff375613311e17836c - React-RCTNetwork: 2d1636dc8ce2db8da679529bbdefc6c00890a166 - React-RCTSettings: ea721e742405e7bf7067d701c2b9f557fa566991 - React-RCTSwiftExtensions: 4866ae023f497a8c7757b0a37c60f92f2f251e69 - React-RCTText: 9932caf8eede2b2f109b4c7cccd64d88b8c1afcc - React-RCTVibration: 487c42a1e2eea2e179b8dcf4f945159d1de7f031 - React-RCTWindowManager: 5f32729a0dfe23ac7ae8de4a980b963a03d200f4 - React-RCTXR: 2a40178af221d1d9124fa41fb1447763ad7f3275 - React-rendererdebug: 476639a022ffe350a8c6e7a74f62e84468132d35 - React-rncore: e18cea72795999eacf93de675622bd3145430c0b - React-runtimeexecutor: 2bc96c368146e5947ff79b84612d7fc1b6f25975 - React-runtimescheduler: 3f2a280b446060ac359d32175cf26402b7fd8de0 - React-utils: 940f007d5dad05ec028b873ebfed3bf6ec46c417 - ReactCommon: 0c2cdd6a193b8ce7c05105b66b881c41bf014308 - RNSVG: 50cf2c7018e57cf5d3522d98d0a3a4dd6bf9d093 + glog: e8a0cf7f9e97d81f21c244aaf6f6c31ef76912a3 + hermes-engine: c6d9c28af870de3ebec9a4629ff9ca4879455545 + RCT-Folly: 38265df22721cd15cc13ba692c23a52cceaf3752 + RCTDeprecation: 4c7eeb42be0b2e95195563c49be08d0b839d22b4 + RCTRequired: a0180cf1a2b3e562e1b898ebfc0f4115efd49e4d + RCTTypeSafety: d8aec4d5fc7a7c1be0876413cccc66dbc29eaea1 + React: 02ef8412db0e225fac81ce2532e2a6cb3e0ec8ee + React-callinvoker: c0a96ed83020b8e43b40b0393f3431ce866aae6e + React-Codegen: dc78aede1cbeb5c8f6177934da865b396c30a874 + React-Core: 5c8c84caf8d44ea1ea4b286261040c317ce7e427 + React-CoreModules: 91a34163c57103bbe3ae7a4cbb7883badc9cae42 + React-cxxreact: b0a90f134843f589a4b19d5d0e11b63fb3de9224 + React-debug: b1d2377cb54072fca0a0e666a89d4af89a0ab86e + React-Fabric: 2c1a0894f62275c1781ed13c34862386bf939126 + React-FabricImage: f1e5d2bf175c664b3fe96ce3333067a4a52f5313 + React-featureflags: e2ce1517bd07da450b44b50d346facb4e447666b + React-graphics: ce246c5c932790788e0184c6b56cbac6215aa84c + React-hermes: 4a4f233941324e5b1a6f9fa65112eee6686af309 + React-ImageManager: 277d8fbddb1c43725adfc88ffc8f79a83c645432 + React-jserrorhandler: 6565bca900fd6a65bb89718c80eb9700f53ea503 + React-jsi: 409e60f5e85ab323e408aa54fe00f552159a7804 + React-jsiexecutor: e0647e2a8904c35a83179cbcea93fdd56ee9f768 + React-jsinspector: 856e2e7df0df3f2242acc644c0e2a35020f20b31 + React-jsitracing: 55970748d720579f024b40b2a2b91399abeef70f + React-logger: 5d0bca4000c5208bcb816cd403382db833a065bd + React-Mapbuffer: d299985c08c92d2a7c8d3de4df0d192bd1d56492 + react-native-unistyles: b1c5a0d1f66e07747c8ee0069ef329db831b0ef8 + React-nativeconfig: bc6f133ccac2b600d790eba2841a45dc05b0b50b + React-NativeModulesApple: a4db13b9a385608ad9e70a3a70fa068cce8a22ed + React-perflogger: 670c9e4d973be88f84fefcea20ee8de1ef216505 + React-RCTActionSheet: 29bdd7eb0fe01dc6ab7212ace6af3586df3b72e3 + React-RCTAnimation: fabbea0d537500df35abedffb9db1285a1c3218c + React-RCTAppDelegate: f81743386b210bad2a8e7f5e216578c51456928f + React-RCTBlob: 347730faa75efbd218232e9c6d4a259b29a42143 + React-RCTFabric: ed2f41386bf8e2dbfb99735db346ffd81473a060 + React-RCTImage: b5b59cf6e2de0d41918de2749647f9332f8b5efa + React-RCTLinking: c9045bb0ab7d73b86fcadd32e875ad9c205e5ab9 + React-RCTNetwork: c19f91e64067e6f34aae18648e5e3d29237fbd19 + React-RCTSettings: 94d10e432e36cd95adfa6cad47b32b3ef763b76c + React-RCTSwiftExtensions: 00285107eea40db5a85bab07f101bc80b3e1de37 + React-RCTText: 64f4663568d173597913c0c5bad7b098ca7af091 + React-RCTVibration: bb5c9057536d1eaea2ed52aacbafd4c51476676c + React-RCTWindowManager: eca6ead377a6ad2c2753959a945597cd08477159 + React-RCTXR: d2109fe6eb8e892998b5234eb2d522fb3f5c7fc4 + React-rendererdebug: 37a2c80cabf77152812d487e212dd6fd6483bccb + React-rncore: 6aa625186d851b96852f9a83166f9e846424e5c4 + React-RuntimeApple: a49363f60e15339ed26398a206f7fcfa5d5159dc + React-RuntimeCore: c6c8764558d69db15f8710efd1b3d1009dbc96c8 + React-runtimeexecutor: 8a5ab3e48b20b535716bd7b6ef89a962625daec6 + React-RuntimeHermes: 2f9136bb1a19fc059d3ba55b85cdc8a0df4512e7 + React-runtimescheduler: c94e73f93f602a90bc71c14e8a344e6a175fbd85 + React-utils: 0a926b41966edadcff63a6d558c9e82a9010dcdd + ReactCommon: cec2638245f385caf8221b9263763664ac552bc9 + RNSVG: a48668fd382115bc89761ce291a81c4ca5f2fd2e SocketRocket: 0ba3e799f983d2dfa878777017659ef6c866e5c6 - Yoga: 472631194fd999deb51b1d65cb10bf3075f32cb9 + Yoga: aec7498885aa0a662f45e57d4b0e63c873ebb4e6 -PODFILE CHECKSUM: 77a9ee015132edc85e89ca062bc19be7a4df1a71 +PODFILE CHECKSUM: ce66c36ca04d6281e8ba93dc4c2f0e7eecd85393 COCOAPODS: 1.15.2 diff --git a/examples/vision/visionos/vision.xcodeproj/project.pbxproj b/examples/vision/visionos/vision.xcodeproj/project.pbxproj index a58f0e19..c2226c85 100644 --- a/examples/vision/visionos/vision.xcodeproj/project.pbxproj +++ b/examples/vision/visionos/vision.xcodeproj/project.pbxproj @@ -13,6 +13,7 @@ 767CEBBC2B582F6B000139AD /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 767CEBBB2B582F6B000139AD /* AppDelegate.swift */; }; 767CEBBE2B582F78000139AD /* App.swift in Sources */ = {isa = PBXBuildFile; fileRef = 767CEBBD2B582F78000139AD /* App.swift */; }; 7699B88040F8A987B510C191 /* libPods-vision-visionTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-vision-visionTests.a */; }; + E784C5D47A5B6A9E7D9E3A84 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = EAE246ECE6EE5FCA94412A7F /* PrivacyInfo.xcprivacy */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -32,6 +33,7 @@ 13B07F961A680F5B00A75B9A /* vision.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = vision.app; sourceTree = BUILT_PRODUCTS_DIR; }; 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = vision/Images.xcassets; sourceTree = ""; }; 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = vision/Info.plist; sourceTree = ""; }; + 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = vision/PrivacyInfo.xcprivacy; sourceTree = ""; }; 19F6CBCC0A4E27FBF8BF4A61 /* libPods-vision-visionTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-vision-visionTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 3B4392A12AC88292D35C810B /* Pods-vision.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-vision.debug.xcconfig"; path = "Target Support Files/Pods-vision/Pods-vision.debug.xcconfig"; sourceTree = ""; }; 5709B34CF0A7D63546082F79 /* Pods-vision.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-vision.release.xcconfig"; path = "Target Support Files/Pods-vision/Pods-vision.release.xcconfig"; sourceTree = ""; }; @@ -40,6 +42,7 @@ 767CEBBB2B582F6B000139AD /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = vision/AppDelegate.swift; sourceTree = ""; }; 767CEBBD2B582F78000139AD /* App.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = App.swift; path = vision/App.swift; sourceTree = ""; }; 89C6BE57DB24E9ADA2F236DE /* Pods-vision-visionTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-vision-visionTests.release.xcconfig"; path = "Target Support Files/Pods-vision-visionTests/Pods-vision-visionTests.release.xcconfig"; sourceTree = ""; }; + EAE246ECE6EE5FCA94412A7F /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = vision/PrivacyInfo.xcprivacy; sourceTree = ""; }; ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; /* End PBXFileReference section */ @@ -87,6 +90,8 @@ 767CEBBD2B582F78000139AD /* App.swift */, 13B07FB51A68108700A75B9A /* Images.xcassets */, 13B07FB61A68108700A75B9A /* Info.plist */, + 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */, + EAE246ECE6EE5FCA94412A7F /* PrivacyInfo.xcprivacy */, ); name = vision; sourceTree = ""; @@ -154,6 +159,7 @@ 00E356EA1AD99517003FC87E /* Sources */, 00E356EB1AD99517003FC87E /* Frameworks */, 00E356EC1AD99517003FC87E /* Resources */, + C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */, F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */, ); buildRules = ( @@ -175,6 +181,7 @@ 13B07F8C1A680F5B00A75B9A /* Frameworks */, 13B07F8E1A680F5B00A75B9A /* Resources */, 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, + 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */, E235C05ADACE081382539298 /* [CP] Copy Pods Resources */, ); buildRules = ( @@ -235,6 +242,7 @@ buildActionMask = 2147483647; files = ( 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, + E784C5D47A5B6A9E7D9E3A84 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -257,6 +265,23 @@ shellPath = /bin/sh; shellScript = "set -e\n\nWITH_ENVIRONMENT=\"../node_modules/@callstack/react-native-visionos/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"../node_modules/@callstack/react-native-visionos/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n"; }; + 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-vision/Pods-vision-frameworks-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-vision/Pods-vision-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-vision/Pods-vision-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -301,6 +326,23 @@ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; + C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-vision-visionTests/Pods-vision-visionTests-frameworks-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-vision-visionTests/Pods-vision-visionTests-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-vision-visionTests/Pods-vision-visionTests-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -424,7 +466,6 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = K7R3WKMF47; ENABLE_BITCODE = NO; INFOPLIST_FILE = vision/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( @@ -437,7 +478,7 @@ "-ObjC", "-lc++", ); - PRODUCT_BUNDLE_IDENTIFIER = org.reactjs.native.example.visionos; + PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; PRODUCT_NAME = vision; SUPPORTED_PLATFORMS = "xros xrsimulator"; SUPPORTS_MACCATALYST = NO; @@ -458,7 +499,6 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = K7R3WKMF47; INFOPLIST_FILE = vision/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -470,7 +510,7 @@ "-ObjC", "-lc++", ); - PRODUCT_BUNDLE_IDENTIFIER = org.reactjs.native.example.visionos; + PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; PRODUCT_NAME = vision; SUPPORTED_PLATFORMS = "xros xrsimulator"; SUPPORTS_MACCATALYST = NO; @@ -486,6 +526,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CC = ""; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; @@ -513,9 +554,10 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; + CXX = ""; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; @@ -532,6 +574,8 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.4; + LD = ""; + LDPLUSPLUS = ""; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, "$(inherited)", @@ -543,7 +587,6 @@ ); MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; - OTHER_CFLAGS = "$(inherited)"; OTHER_CPLUSPLUSFLAGS = ( "$(OTHER_CFLAGS)", "-DFOLLY_NO_CONFIG", @@ -558,7 +601,7 @@ ); REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/@callstack/react-native-visionos"; SDKROOT = iphoneos; - USE_HERMES = false; + USE_HERMES = true; }; name = Debug; }; @@ -566,6 +609,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CC = ""; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; @@ -593,9 +637,10 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = YES; + CXX = ""; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -605,6 +650,8 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.4; + LD = ""; + LDPLUSPLUS = ""; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, "$(inherited)", @@ -615,7 +662,6 @@ "\"$(inherited)\"", ); MTL_ENABLE_DEBUG_INFO = NO; - OTHER_CFLAGS = "$(inherited)"; OTHER_CPLUSPLUSFLAGS = ( "$(OTHER_CFLAGS)", "-DFOLLY_NO_CONFIG", @@ -630,7 +676,7 @@ ); REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/@callstack/react-native-visionos"; SDKROOT = iphoneos; - USE_HERMES = false; + USE_HERMES = true; VALIDATE_PRODUCT = YES; }; name = Release; diff --git a/examples/vision/visionos/vision/App.swift b/examples/vision/visionos/vision/App.swift index c77a7c68..0cdb1855 100644 --- a/examples/vision/visionos/vision/App.swift +++ b/examples/vision/visionos/vision/App.swift @@ -8,6 +8,5 @@ struct visionApp: App { var body: some Scene { RCTMainWindow(moduleName: "vision") - .defaultSize(CGSize(width: 1000, height: 800)) } } diff --git a/examples/vision/visionos/vision/AppDelegate.swift b/examples/vision/visionos/vision/AppDelegate.swift index ad3e87c2..4e68fb4c 100644 --- a/examples/vision/visionos/vision/AppDelegate.swift +++ b/examples/vision/visionos/vision/AppDelegate.swift @@ -7,9 +7,9 @@ class AppDelegate: RCTAppDelegate { self.bundleURL() } - func bundleURL() -> URL? { + override func bundleURL() -> URL? { #if DEBUG - RCTBundleURLProvider.sharedSettings()?.jsBundleURL(forBundleRoot: "index") + RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index") #else Bundle.main.url(forResource: "main", withExtension: "jsbundle") #endif diff --git a/examples/vision/visionos/vision/Info.plist b/examples/vision/visionos/vision/Info.plist index a3638b7a..8bf5f12c 100644 --- a/examples/vision/visionos/vision/Info.plist +++ b/examples/vision/visionos/vision/Info.plist @@ -26,6 +26,7 @@ NSAppTransportSecurity + NSAllowsArbitraryLoads NSAllowsLocalNetworking @@ -33,13 +34,6 @@ NSLocationWhenInUseUsageDescription - UIApplicationSceneManifest - - UIApplicationSupportsMultipleScenes - - UISceneConfigurations - - UIRequiredDeviceCapabilities armv7 @@ -52,5 +46,12 @@ UIViewControllerBasedStatusBarAppearance + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + diff --git a/examples/vision/visionos/vision/PrivacyInfo.xcprivacy b/examples/vision/visionos/vision/PrivacyInfo.xcprivacy new file mode 100644 index 00000000..41b8317f --- /dev/null +++ b/examples/vision/visionos/vision/PrivacyInfo.xcprivacy @@ -0,0 +1,37 @@ + + + + + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryFileTimestamp + NSPrivacyAccessedAPITypeReasons + + C617.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryUserDefaults + NSPrivacyAccessedAPITypeReasons + + CA92.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategorySystemBootTime + NSPrivacyAccessedAPITypeReasons + + 35F9.1 + + + + NSPrivacyCollectedDataTypes + + NSPrivacyTracking + + + diff --git a/ios/platform/Platform_Shared.h b/ios/platform/Platform_Shared.h index 0a2e34f3..069070cb 100644 --- a/ios/platform/Platform_Shared.h +++ b/ios/platform/Platform_Shared.h @@ -1,3 +1,4 @@ +#import #import "UnistylesRuntime.h" #include diff --git a/ios/platform/Platform_Shared.mm b/ios/platform/Platform_Shared.mm index 4e0827b5..325a44f9 100644 --- a/ios/platform/Platform_Shared.mm +++ b/ios/platform/Platform_Shared.mm @@ -112,17 +112,21 @@ float getFontScale() { } std::string getColorScheme() { - UIUserInterfaceStyle colorScheme = [UIScreen mainScreen].traitCollection.userInterfaceStyle; - - switch (colorScheme) { - case UIUserInterfaceStyleLight: - return UnistylesLightScheme; - case UIUserInterfaceStyleDark: - return UnistylesDarkScheme; - case UIUserInterfaceStyleUnspecified: - default: - return UnistylesUnspecifiedScheme; - } + #if !TARGET_OS_VISION + UIUserInterfaceStyle colorScheme = [UIScreen mainScreen].traitCollection.userInterfaceStyle; + + switch (colorScheme) { + case UIUserInterfaceStyleLight: + return UnistylesLightScheme; + case UIUserInterfaceStyleDark: + return UnistylesDarkScheme; + case UIUserInterfaceStyleUnspecified: + default: + return UnistylesUnspecifiedScheme; + } + #endif + + return UnistylesUnspecifiedScheme; } UIColor* colorFromHexString(NSString* hexString, float alpha) { diff --git a/ios/platform/Platform_visionOS.mm b/ios/platform/Platform_visionOS.mm index c5b7ded4..74df48e9 100644 --- a/ios/platform/Platform_visionOS.mm +++ b/ios/platform/Platform_visionOS.mm @@ -73,13 +73,17 @@ - (void)makeShared:(void*)runtime { }); dispatch_async(dispatch_get_main_queue(), ^{ - unistylesRuntime->screen = [self getScreenDimensions]; + Screen screen = [self getScreenDimensions]; + + unistylesRuntime->screen = Dimensions({screen.width, screen.height}); unistylesRuntime->contentSizeCategory = getContentSizeCategory(); + unistylesRuntime->pixelRatio = screen.pixelRatio; + unistylesRuntime->fontScale = screen.fontScale; }); } - (void)onWindowChange:(NSNotification *)notification { - Dimensions screen = [self getScreenDimensions]; + Screen screen = [self getScreenDimensions]; if (self.unistylesRuntime != nullptr) { ((UnistylesRuntime*)self.unistylesRuntime)->handleScreenSizeChange( @@ -97,11 +101,14 @@ - (void)onContentSizeCategoryChange:(NSNotification *)notification { } } -- (Dimensions)getScreenDimensions { +- (Screen)getScreenDimensions { UIWindow* mainWindow = [self getMainWindow]; - Dimensions screenDimension = {(int)mainWindow.frame.size.width, (int)mainWindow.frame.size.height}; + int width = (int)mainWindow.frame.size.width; + int height = (int)mainWindow.frame.size.height; + float pixelRatio = 1.0; + float fontScale = getFontScale(); - return screenDimension; + return Screen({width, height, pixelRatio, fontScale}); } @end diff --git a/package.json b/package.json index 45be009d..053f2f6e 100644 --- a/package.json +++ b/package.json @@ -91,7 +91,7 @@ "react-native-web": "0.19.12", "react-test-renderer": "18.3.1", "release-it": "17.4.0", - "typescript": "5.5.2" + "typescript": "5.3.3" }, "peerDependencies": { "@react-native/normalize-colors": "*", diff --git a/tsconfig.json b/tsconfig.json index 2d391939..71eec5fc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -27,5 +27,8 @@ "strict": true, "target": "esnext", "verbatimModuleSyntax": true - } + }, + "exclude": [ + "examples/vision/visionos" + ] } diff --git a/yarn.lock b/yarn.lock index 18bc89d0..a7dfd9b9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -295,7 +295,7 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.23.5, @babel/code-frame@npm:^7.24.2, @babel/code-frame@npm:^7.24.7": +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.23.5, @babel/code-frame@npm:^7.24.7": version: 7.24.7 resolution: "@babel/code-frame@npm:7.24.7" dependencies: @@ -305,7 +305,7 @@ __metadata: languageName: node linkType: hard -"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.23.5, @babel/compat-data@npm:^7.24.1, @babel/compat-data@npm:^7.24.7": +"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.23.5, @babel/compat-data@npm:^7.24.7": version: 7.24.7 resolution: "@babel/compat-data@npm:7.24.7" checksum: 1fc276825dd434fe044877367dfac84171328e75a8483a6976aa28bf833b32367e90ee6df25bdd97c287d1aa8019757adcccac9153de70b1932c0d243a978ae9 @@ -358,29 +358,6 @@ __metadata: languageName: node linkType: hard -"@babel/core@npm:7.24.3": - version: 7.24.3 - resolution: "@babel/core@npm:7.24.3" - dependencies: - "@ampproject/remapping": ^2.2.0 - "@babel/code-frame": ^7.24.2 - "@babel/generator": ^7.24.1 - "@babel/helper-compilation-targets": ^7.23.6 - "@babel/helper-module-transforms": ^7.23.3 - "@babel/helpers": ^7.24.1 - "@babel/parser": ^7.24.1 - "@babel/template": ^7.24.0 - "@babel/traverse": ^7.24.1 - "@babel/types": ^7.24.0 - convert-source-map: ^2.0.0 - debug: ^4.1.0 - gensync: ^1.0.0-beta.2 - json5: ^2.2.3 - semver: ^6.3.1 - checksum: 1a33460794f4122cf255b656f4d6586913f41078a1afdf1bcf0365ddbd99c1ddb68f904062f9079445ab26b507c36bc297055192bc26e5c8e6e3def42195f9ab - languageName: node - linkType: hard - "@babel/core@npm:7.24.7, @babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.16, @babel/core@npm:^7.18.5, @babel/core@npm:^7.20.0, @babel/core@npm:^7.20.2, @babel/core@npm:^7.23.3, @babel/core@npm:^7.23.9": version: 7.24.7 resolution: "@babel/core@npm:7.24.7" @@ -418,7 +395,7 @@ __metadata: languageName: node linkType: hard -"@babel/generator@npm:^7.20.0, @babel/generator@npm:^7.20.5, @babel/generator@npm:^7.23.3, @babel/generator@npm:^7.23.6, @babel/generator@npm:^7.24.1, @babel/generator@npm:^7.24.7, @babel/generator@npm:^7.7.2": +"@babel/generator@npm:^7.20.0, @babel/generator@npm:^7.20.5, @babel/generator@npm:^7.23.3, @babel/generator@npm:^7.23.6, @babel/generator@npm:^7.24.7, @babel/generator@npm:^7.7.2": version: 7.24.7 resolution: "@babel/generator@npm:7.24.7" dependencies: @@ -611,7 +588,7 @@ __metadata: languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.24.0, @babel/helper-plugin-utils@npm:^7.24.7, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.24.7, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": version: 7.24.7 resolution: "@babel/helper-plugin-utils@npm:7.24.7" checksum: 81f2a15751d892e4a8fce25390f973363a5b27596167861d2d6eab0f61856eb2ba389b031a9f19f669c0bd4dd601185828d3cebafd25431be7a1696f2ce3ef68 @@ -706,7 +683,7 @@ __metadata: languageName: node linkType: hard -"@babel/helpers@npm:^7.23.6, @babel/helpers@npm:^7.24.0, @babel/helpers@npm:^7.24.1, @babel/helpers@npm:^7.24.7": +"@babel/helpers@npm:^7.23.6, @babel/helpers@npm:^7.24.0, @babel/helpers@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helpers@npm:7.24.7" dependencies: @@ -728,7 +705,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.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.3, @babel/parser@npm:^7.23.6, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.0, @babel/parser@npm:^7.24.1, @babel/parser@npm:^7.24.7": +"@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.7, @babel/parser@npm:^7.23.3, @babel/parser@npm:^7.23.6, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.0, @babel/parser@npm:^7.24.7": version: 7.24.7 resolution: "@babel/parser@npm:7.24.7" bin: @@ -749,7 +726,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.23.3, @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.24.1, @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.24.7": +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.23.3, @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.24.7" dependencies: @@ -760,7 +737,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.23.3, @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.24.1, @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.24.7": +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.23.3, @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.24.7" dependencies: @@ -773,7 +750,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.23.3, @babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.24.1, @babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.24.7": +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.23.3, @babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.24.7" dependencies: @@ -1020,7 +997,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-import-assertions@npm:^7.23.3, @babel/plugin-syntax-import-assertions@npm:^7.24.1, @babel/plugin-syntax-import-assertions@npm:^7.24.7": +"@babel/plugin-syntax-import-assertions@npm:^7.23.3, @babel/plugin-syntax-import-assertions@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-syntax-import-assertions@npm:7.24.7" dependencies: @@ -1031,7 +1008,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-import-attributes@npm:^7.23.3, @babel/plugin-syntax-import-attributes@npm:^7.24.1, @babel/plugin-syntax-import-attributes@npm:^7.24.7": +"@babel/plugin-syntax-import-attributes@npm:^7.23.3, @babel/plugin-syntax-import-attributes@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-syntax-import-attributes@npm:7.24.7" dependencies: @@ -1186,7 +1163,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-arrow-functions@npm:^7.0.0, @babel/plugin-transform-arrow-functions@npm:^7.23.3, @babel/plugin-transform-arrow-functions@npm:^7.24.1, @babel/plugin-transform-arrow-functions@npm:^7.24.7": +"@babel/plugin-transform-arrow-functions@npm:^7.0.0, @babel/plugin-transform-arrow-functions@npm:^7.23.3, @babel/plugin-transform-arrow-functions@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-arrow-functions@npm:7.24.7" dependencies: @@ -1197,7 +1174,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-async-generator-functions@npm:^7.23.4, @babel/plugin-transform-async-generator-functions@npm:^7.24.3, @babel/plugin-transform-async-generator-functions@npm:^7.24.7": +"@babel/plugin-transform-async-generator-functions@npm:^7.23.4, @babel/plugin-transform-async-generator-functions@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-async-generator-functions@npm:7.24.7" dependencies: @@ -1211,7 +1188,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-async-to-generator@npm:^7.20.0, @babel/plugin-transform-async-to-generator@npm:^7.23.3, @babel/plugin-transform-async-to-generator@npm:^7.24.1, @babel/plugin-transform-async-to-generator@npm:^7.24.7": +"@babel/plugin-transform-async-to-generator@npm:^7.20.0, @babel/plugin-transform-async-to-generator@npm:^7.23.3, @babel/plugin-transform-async-to-generator@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-async-to-generator@npm:7.24.7" dependencies: @@ -1224,7 +1201,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-block-scoped-functions@npm:^7.23.3, @babel/plugin-transform-block-scoped-functions@npm:^7.24.1, @babel/plugin-transform-block-scoped-functions@npm:^7.24.7": +"@babel/plugin-transform-block-scoped-functions@npm:^7.23.3, @babel/plugin-transform-block-scoped-functions@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.24.7" dependencies: @@ -1235,7 +1212,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-block-scoping@npm:^7.0.0, @babel/plugin-transform-block-scoping@npm:^7.23.4, @babel/plugin-transform-block-scoping@npm:^7.24.1, @babel/plugin-transform-block-scoping@npm:^7.24.7": +"@babel/plugin-transform-block-scoping@npm:^7.0.0, @babel/plugin-transform-block-scoping@npm:^7.23.4, @babel/plugin-transform-block-scoping@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-block-scoping@npm:7.24.7" dependencies: @@ -1246,7 +1223,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-class-properties@npm:^7.23.3, @babel/plugin-transform-class-properties@npm:^7.24.1, @babel/plugin-transform-class-properties@npm:^7.24.7": +"@babel/plugin-transform-class-properties@npm:^7.23.3, @babel/plugin-transform-class-properties@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-class-properties@npm:7.24.7" dependencies: @@ -1258,7 +1235,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-class-static-block@npm:^7.23.4, @babel/plugin-transform-class-static-block@npm:^7.24.1, @babel/plugin-transform-class-static-block@npm:^7.24.7": +"@babel/plugin-transform-class-static-block@npm:^7.23.4, @babel/plugin-transform-class-static-block@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-class-static-block@npm:7.24.7" dependencies: @@ -1271,7 +1248,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-classes@npm:^7.0.0, @babel/plugin-transform-classes@npm:^7.23.5, @babel/plugin-transform-classes@npm:^7.24.1, @babel/plugin-transform-classes@npm:^7.24.7": +"@babel/plugin-transform-classes@npm:^7.0.0, @babel/plugin-transform-classes@npm:^7.23.5, @babel/plugin-transform-classes@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-classes@npm:7.24.7" dependencies: @@ -1289,7 +1266,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-computed-properties@npm:^7.0.0, @babel/plugin-transform-computed-properties@npm:^7.23.3, @babel/plugin-transform-computed-properties@npm:^7.24.1, @babel/plugin-transform-computed-properties@npm:^7.24.7": +"@babel/plugin-transform-computed-properties@npm:^7.0.0, @babel/plugin-transform-computed-properties@npm:^7.23.3, @babel/plugin-transform-computed-properties@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-computed-properties@npm:7.24.7" dependencies: @@ -1301,7 +1278,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-destructuring@npm:^7.20.0, @babel/plugin-transform-destructuring@npm:^7.23.3, @babel/plugin-transform-destructuring@npm:^7.24.1, @babel/plugin-transform-destructuring@npm:^7.24.7": +"@babel/plugin-transform-destructuring@npm:^7.20.0, @babel/plugin-transform-destructuring@npm:^7.23.3, @babel/plugin-transform-destructuring@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-destructuring@npm:7.24.7" dependencies: @@ -1312,7 +1289,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-dotall-regex@npm:^7.23.3, @babel/plugin-transform-dotall-regex@npm:^7.24.1, @babel/plugin-transform-dotall-regex@npm:^7.24.7": +"@babel/plugin-transform-dotall-regex@npm:^7.23.3, @babel/plugin-transform-dotall-regex@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-dotall-regex@npm:7.24.7" dependencies: @@ -1324,7 +1301,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-duplicate-keys@npm:^7.23.3, @babel/plugin-transform-duplicate-keys@npm:^7.24.1, @babel/plugin-transform-duplicate-keys@npm:^7.24.7": +"@babel/plugin-transform-duplicate-keys@npm:^7.23.3, @babel/plugin-transform-duplicate-keys@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-duplicate-keys@npm:7.24.7" dependencies: @@ -1335,7 +1312,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-dynamic-import@npm:^7.23.4, @babel/plugin-transform-dynamic-import@npm:^7.24.1, @babel/plugin-transform-dynamic-import@npm:^7.24.7": +"@babel/plugin-transform-dynamic-import@npm:^7.23.4, @babel/plugin-transform-dynamic-import@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-dynamic-import@npm:7.24.7" dependencies: @@ -1347,7 +1324,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-exponentiation-operator@npm:^7.23.3, @babel/plugin-transform-exponentiation-operator@npm:^7.24.1, @babel/plugin-transform-exponentiation-operator@npm:^7.24.7": +"@babel/plugin-transform-exponentiation-operator@npm:^7.23.3, @babel/plugin-transform-exponentiation-operator@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.24.7" dependencies: @@ -1359,7 +1336,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-export-namespace-from@npm:^7.22.11, @babel/plugin-transform-export-namespace-from@npm:^7.23.4, @babel/plugin-transform-export-namespace-from@npm:^7.24.1, @babel/plugin-transform-export-namespace-from@npm:^7.24.7": +"@babel/plugin-transform-export-namespace-from@npm:^7.22.11, @babel/plugin-transform-export-namespace-from@npm:^7.23.4, @babel/plugin-transform-export-namespace-from@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-export-namespace-from@npm:7.24.7" dependencies: @@ -1383,7 +1360,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-for-of@npm:^7.23.6, @babel/plugin-transform-for-of@npm:^7.24.1, @babel/plugin-transform-for-of@npm:^7.24.7": +"@babel/plugin-transform-for-of@npm:^7.23.6, @babel/plugin-transform-for-of@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-for-of@npm:7.24.7" dependencies: @@ -1395,7 +1372,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-function-name@npm:^7.0.0, @babel/plugin-transform-function-name@npm:^7.23.3, @babel/plugin-transform-function-name@npm:^7.24.1, @babel/plugin-transform-function-name@npm:^7.24.7": +"@babel/plugin-transform-function-name@npm:^7.0.0, @babel/plugin-transform-function-name@npm:^7.23.3, @babel/plugin-transform-function-name@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-function-name@npm:7.24.7" dependencies: @@ -1408,7 +1385,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-json-strings@npm:^7.23.4, @babel/plugin-transform-json-strings@npm:^7.24.1, @babel/plugin-transform-json-strings@npm:^7.24.7": +"@babel/plugin-transform-json-strings@npm:^7.23.4, @babel/plugin-transform-json-strings@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-json-strings@npm:7.24.7" dependencies: @@ -1420,7 +1397,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-literals@npm:^7.0.0, @babel/plugin-transform-literals@npm:^7.23.3, @babel/plugin-transform-literals@npm:^7.24.1, @babel/plugin-transform-literals@npm:^7.24.7": +"@babel/plugin-transform-literals@npm:^7.0.0, @babel/plugin-transform-literals@npm:^7.23.3, @babel/plugin-transform-literals@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-literals@npm:7.24.7" dependencies: @@ -1431,7 +1408,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-logical-assignment-operators@npm:^7.23.4, @babel/plugin-transform-logical-assignment-operators@npm:^7.24.1, @babel/plugin-transform-logical-assignment-operators@npm:^7.24.7": +"@babel/plugin-transform-logical-assignment-operators@npm:^7.23.4, @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: @@ -1443,7 +1420,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-member-expression-literals@npm:^7.23.3, @babel/plugin-transform-member-expression-literals@npm:^7.24.1, @babel/plugin-transform-member-expression-literals@npm:^7.24.7": +"@babel/plugin-transform-member-expression-literals@npm:^7.23.3, @babel/plugin-transform-member-expression-literals@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-member-expression-literals@npm:7.24.7" dependencies: @@ -1454,7 +1431,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-modules-amd@npm:^7.23.3, @babel/plugin-transform-modules-amd@npm:^7.24.1, @babel/plugin-transform-modules-amd@npm:^7.24.7": +"@babel/plugin-transform-modules-amd@npm:^7.23.3, @babel/plugin-transform-modules-amd@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-modules-amd@npm:7.24.7" dependencies: @@ -1466,7 +1443,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-modules-commonjs@npm:^7.0.0, @babel/plugin-transform-modules-commonjs@npm:^7.13.8, @babel/plugin-transform-modules-commonjs@npm:^7.23.3, @babel/plugin-transform-modules-commonjs@npm:^7.24.1, @babel/plugin-transform-modules-commonjs@npm:^7.24.7": +"@babel/plugin-transform-modules-commonjs@npm:^7.0.0, @babel/plugin-transform-modules-commonjs@npm:^7.13.8, @babel/plugin-transform-modules-commonjs@npm:^7.23.3, @babel/plugin-transform-modules-commonjs@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-modules-commonjs@npm:7.24.7" dependencies: @@ -1479,7 +1456,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-modules-systemjs@npm:^7.23.3, @babel/plugin-transform-modules-systemjs@npm:^7.24.1, @babel/plugin-transform-modules-systemjs@npm:^7.24.7": +"@babel/plugin-transform-modules-systemjs@npm:^7.23.3, @babel/plugin-transform-modules-systemjs@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-modules-systemjs@npm:7.24.7" dependencies: @@ -1493,7 +1470,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-modules-umd@npm:^7.23.3, @babel/plugin-transform-modules-umd@npm:^7.24.1, @babel/plugin-transform-modules-umd@npm:^7.24.7": +"@babel/plugin-transform-modules-umd@npm:^7.23.3, @babel/plugin-transform-modules-umd@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-modules-umd@npm:7.24.7" dependencies: @@ -1517,7 +1494,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-new-target@npm:^7.23.3, @babel/plugin-transform-new-target@npm:^7.24.1, @babel/plugin-transform-new-target@npm:^7.24.7": +"@babel/plugin-transform-new-target@npm:^7.23.3, @babel/plugin-transform-new-target@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-new-target@npm:7.24.7" dependencies: @@ -1528,7 +1505,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.23.4, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.1, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.7": +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.23.4, @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: @@ -1540,7 +1517,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-numeric-separator@npm:^7.23.4, @babel/plugin-transform-numeric-separator@npm:^7.24.1, @babel/plugin-transform-numeric-separator@npm:^7.24.7": +"@babel/plugin-transform-numeric-separator@npm:^7.23.4, @babel/plugin-transform-numeric-separator@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-numeric-separator@npm:7.24.7" dependencies: @@ -1552,7 +1529,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-object-rest-spread@npm:^7.12.13, @babel/plugin-transform-object-rest-spread@npm:^7.23.4, @babel/plugin-transform-object-rest-spread@npm:^7.24.1, @babel/plugin-transform-object-rest-spread@npm:^7.24.7": +"@babel/plugin-transform-object-rest-spread@npm:^7.12.13, @babel/plugin-transform-object-rest-spread@npm:^7.23.4, @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: @@ -1566,7 +1543,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-object-super@npm:^7.23.3, @babel/plugin-transform-object-super@npm:^7.24.1, @babel/plugin-transform-object-super@npm:^7.24.7": +"@babel/plugin-transform-object-super@npm:^7.23.3, @babel/plugin-transform-object-super@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-object-super@npm:7.24.7" dependencies: @@ -1578,7 +1555,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-optional-catch-binding@npm:^7.23.4, @babel/plugin-transform-optional-catch-binding@npm:^7.24.1, @babel/plugin-transform-optional-catch-binding@npm:^7.24.7": +"@babel/plugin-transform-optional-catch-binding@npm:^7.23.4, @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: @@ -1590,7 +1567,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-optional-chaining@npm:^7.23.4, @babel/plugin-transform-optional-chaining@npm:^7.24.1, @babel/plugin-transform-optional-chaining@npm:^7.24.7": +"@babel/plugin-transform-optional-chaining@npm:^7.23.4, @babel/plugin-transform-optional-chaining@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-optional-chaining@npm:7.24.7" dependencies: @@ -1603,7 +1580,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-parameters@npm:^7.0.0, @babel/plugin-transform-parameters@npm:^7.20.7, @babel/plugin-transform-parameters@npm:^7.22.15, @babel/plugin-transform-parameters@npm:^7.23.3, @babel/plugin-transform-parameters@npm:^7.24.1, @babel/plugin-transform-parameters@npm:^7.24.7": +"@babel/plugin-transform-parameters@npm:^7.0.0, @babel/plugin-transform-parameters@npm:^7.20.7, @babel/plugin-transform-parameters@npm:^7.22.15, @babel/plugin-transform-parameters@npm:^7.23.3, @babel/plugin-transform-parameters@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-parameters@npm:7.24.7" dependencies: @@ -1614,7 +1591,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-private-methods@npm:^7.22.5, @babel/plugin-transform-private-methods@npm:^7.23.3, @babel/plugin-transform-private-methods@npm:^7.24.1, @babel/plugin-transform-private-methods@npm:^7.24.7": +"@babel/plugin-transform-private-methods@npm:^7.22.5, @babel/plugin-transform-private-methods@npm:^7.23.3, @babel/plugin-transform-private-methods@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-private-methods@npm:7.24.7" dependencies: @@ -1626,7 +1603,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-private-property-in-object@npm:^7.22.11, @babel/plugin-transform-private-property-in-object@npm:^7.23.4, @babel/plugin-transform-private-property-in-object@npm:^7.24.1, @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.23.4, @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: @@ -1640,7 +1617,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-property-literals@npm:^7.23.3, @babel/plugin-transform-property-literals@npm:^7.24.1, @babel/plugin-transform-property-literals@npm:^7.24.7": +"@babel/plugin-transform-property-literals@npm:^7.23.3, @babel/plugin-transform-property-literals@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-property-literals@npm:7.24.7" dependencies: @@ -1722,7 +1699,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-regenerator@npm:^7.23.3, @babel/plugin-transform-regenerator@npm:^7.24.1, @babel/plugin-transform-regenerator@npm:^7.24.7": +"@babel/plugin-transform-regenerator@npm:^7.23.3, @babel/plugin-transform-regenerator@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-regenerator@npm:7.24.7" dependencies: @@ -1734,7 +1711,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-reserved-words@npm:^7.23.3, @babel/plugin-transform-reserved-words@npm:^7.24.1, @babel/plugin-transform-reserved-words@npm:^7.24.7": +"@babel/plugin-transform-reserved-words@npm:^7.23.3, @babel/plugin-transform-reserved-words@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-reserved-words@npm:7.24.7" dependencies: @@ -1761,7 +1738,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-shorthand-properties@npm:^7.0.0, @babel/plugin-transform-shorthand-properties@npm:^7.23.3, @babel/plugin-transform-shorthand-properties@npm:^7.24.1, @babel/plugin-transform-shorthand-properties@npm:^7.24.7": +"@babel/plugin-transform-shorthand-properties@npm:^7.0.0, @babel/plugin-transform-shorthand-properties@npm:^7.23.3, @babel/plugin-transform-shorthand-properties@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-shorthand-properties@npm:7.24.7" dependencies: @@ -1772,7 +1749,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-spread@npm:^7.0.0, @babel/plugin-transform-spread@npm:^7.23.3, @babel/plugin-transform-spread@npm:^7.24.1, @babel/plugin-transform-spread@npm:^7.24.7": +"@babel/plugin-transform-spread@npm:^7.0.0, @babel/plugin-transform-spread@npm:^7.23.3, @babel/plugin-transform-spread@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-spread@npm:7.24.7" dependencies: @@ -1784,7 +1761,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-sticky-regex@npm:^7.0.0, @babel/plugin-transform-sticky-regex@npm:^7.23.3, @babel/plugin-transform-sticky-regex@npm:^7.24.1, @babel/plugin-transform-sticky-regex@npm:^7.24.7": +"@babel/plugin-transform-sticky-regex@npm:^7.0.0, @babel/plugin-transform-sticky-regex@npm:^7.23.3, @babel/plugin-transform-sticky-regex@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-sticky-regex@npm:7.24.7" dependencies: @@ -1795,7 +1772,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-template-literals@npm:^7.23.3, @babel/plugin-transform-template-literals@npm:^7.24.1, @babel/plugin-transform-template-literals@npm:^7.24.7": +"@babel/plugin-transform-template-literals@npm:^7.23.3, @babel/plugin-transform-template-literals@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-template-literals@npm:7.24.7" dependencies: @@ -1806,7 +1783,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-typeof-symbol@npm:^7.23.3, @babel/plugin-transform-typeof-symbol@npm:^7.24.1, @babel/plugin-transform-typeof-symbol@npm:^7.24.7": +"@babel/plugin-transform-typeof-symbol@npm:^7.23.3, @babel/plugin-transform-typeof-symbol@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-typeof-symbol@npm:7.24.7" dependencies: @@ -1831,7 +1808,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-unicode-escapes@npm:^7.23.3, @babel/plugin-transform-unicode-escapes@npm:^7.24.1, @babel/plugin-transform-unicode-escapes@npm:^7.24.7": +"@babel/plugin-transform-unicode-escapes@npm:^7.23.3, @babel/plugin-transform-unicode-escapes@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-unicode-escapes@npm:7.24.7" dependencies: @@ -1842,7 +1819,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-unicode-property-regex@npm:^7.23.3, @babel/plugin-transform-unicode-property-regex@npm:^7.24.1, @babel/plugin-transform-unicode-property-regex@npm:^7.24.7": +"@babel/plugin-transform-unicode-property-regex@npm:^7.23.3, @babel/plugin-transform-unicode-property-regex@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.24.7" dependencies: @@ -1854,7 +1831,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-unicode-regex@npm:^7.0.0, @babel/plugin-transform-unicode-regex@npm:^7.23.3, @babel/plugin-transform-unicode-regex@npm:^7.24.1, @babel/plugin-transform-unicode-regex@npm:^7.24.7": +"@babel/plugin-transform-unicode-regex@npm:^7.0.0, @babel/plugin-transform-unicode-regex@npm:^7.23.3, @babel/plugin-transform-unicode-regex@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-unicode-regex@npm:7.24.7" dependencies: @@ -1866,7 +1843,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-unicode-sets-regex@npm:^7.23.3, @babel/plugin-transform-unicode-sets-regex@npm:^7.24.1, @babel/plugin-transform-unicode-sets-regex@npm:^7.24.7": +"@babel/plugin-transform-unicode-sets-regex@npm:^7.23.3, @babel/plugin-transform-unicode-sets-regex@npm:^7.24.7": version: 7.24.7 resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.24.7" dependencies: @@ -1968,96 +1945,6 @@ __metadata: languageName: node linkType: hard -"@babel/preset-env@npm:7.24.3": - version: 7.24.3 - resolution: "@babel/preset-env@npm:7.24.3" - dependencies: - "@babel/compat-data": ^7.24.1 - "@babel/helper-compilation-targets": ^7.23.6 - "@babel/helper-plugin-utils": ^7.24.0 - "@babel/helper-validator-option": ^7.23.5 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ^7.24.1 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.24.1 - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": ^7.24.1 - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2 - "@babel/plugin-syntax-async-generators": ^7.8.4 - "@babel/plugin-syntax-class-properties": ^7.12.13 - "@babel/plugin-syntax-class-static-block": ^7.14.5 - "@babel/plugin-syntax-dynamic-import": ^7.8.3 - "@babel/plugin-syntax-export-namespace-from": ^7.8.3 - "@babel/plugin-syntax-import-assertions": ^7.24.1 - "@babel/plugin-syntax-import-attributes": ^7.24.1 - "@babel/plugin-syntax-import-meta": ^7.10.4 - "@babel/plugin-syntax-json-strings": ^7.8.3 - "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 - "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 - "@babel/plugin-syntax-numeric-separator": ^7.10.4 - "@babel/plugin-syntax-object-rest-spread": ^7.8.3 - "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 - "@babel/plugin-syntax-optional-chaining": ^7.8.3 - "@babel/plugin-syntax-private-property-in-object": ^7.14.5 - "@babel/plugin-syntax-top-level-await": ^7.14.5 - "@babel/plugin-syntax-unicode-sets-regex": ^7.18.6 - "@babel/plugin-transform-arrow-functions": ^7.24.1 - "@babel/plugin-transform-async-generator-functions": ^7.24.3 - "@babel/plugin-transform-async-to-generator": ^7.24.1 - "@babel/plugin-transform-block-scoped-functions": ^7.24.1 - "@babel/plugin-transform-block-scoping": ^7.24.1 - "@babel/plugin-transform-class-properties": ^7.24.1 - "@babel/plugin-transform-class-static-block": ^7.24.1 - "@babel/plugin-transform-classes": ^7.24.1 - "@babel/plugin-transform-computed-properties": ^7.24.1 - "@babel/plugin-transform-destructuring": ^7.24.1 - "@babel/plugin-transform-dotall-regex": ^7.24.1 - "@babel/plugin-transform-duplicate-keys": ^7.24.1 - "@babel/plugin-transform-dynamic-import": ^7.24.1 - "@babel/plugin-transform-exponentiation-operator": ^7.24.1 - "@babel/plugin-transform-export-namespace-from": ^7.24.1 - "@babel/plugin-transform-for-of": ^7.24.1 - "@babel/plugin-transform-function-name": ^7.24.1 - "@babel/plugin-transform-json-strings": ^7.24.1 - "@babel/plugin-transform-literals": ^7.24.1 - "@babel/plugin-transform-logical-assignment-operators": ^7.24.1 - "@babel/plugin-transform-member-expression-literals": ^7.24.1 - "@babel/plugin-transform-modules-amd": ^7.24.1 - "@babel/plugin-transform-modules-commonjs": ^7.24.1 - "@babel/plugin-transform-modules-systemjs": ^7.24.1 - "@babel/plugin-transform-modules-umd": ^7.24.1 - "@babel/plugin-transform-named-capturing-groups-regex": ^7.22.5 - "@babel/plugin-transform-new-target": ^7.24.1 - "@babel/plugin-transform-nullish-coalescing-operator": ^7.24.1 - "@babel/plugin-transform-numeric-separator": ^7.24.1 - "@babel/plugin-transform-object-rest-spread": ^7.24.1 - "@babel/plugin-transform-object-super": ^7.24.1 - "@babel/plugin-transform-optional-catch-binding": ^7.24.1 - "@babel/plugin-transform-optional-chaining": ^7.24.1 - "@babel/plugin-transform-parameters": ^7.24.1 - "@babel/plugin-transform-private-methods": ^7.24.1 - "@babel/plugin-transform-private-property-in-object": ^7.24.1 - "@babel/plugin-transform-property-literals": ^7.24.1 - "@babel/plugin-transform-regenerator": ^7.24.1 - "@babel/plugin-transform-reserved-words": ^7.24.1 - "@babel/plugin-transform-shorthand-properties": ^7.24.1 - "@babel/plugin-transform-spread": ^7.24.1 - "@babel/plugin-transform-sticky-regex": ^7.24.1 - "@babel/plugin-transform-template-literals": ^7.24.1 - "@babel/plugin-transform-typeof-symbol": ^7.24.1 - "@babel/plugin-transform-unicode-escapes": ^7.24.1 - "@babel/plugin-transform-unicode-property-regex": ^7.24.1 - "@babel/plugin-transform-unicode-regex": ^7.24.1 - "@babel/plugin-transform-unicode-sets-regex": ^7.24.1 - "@babel/preset-modules": 0.1.6-no-external-plugins - babel-plugin-polyfill-corejs2: ^0.4.10 - babel-plugin-polyfill-corejs3: ^0.10.4 - babel-plugin-polyfill-regenerator: ^0.6.1 - core-js-compat: ^3.31.0 - semver: ^6.3.1 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 4f3376444f938b3884fddd3cded86cfda97a1fb4bccc93b49fb4593a63f79d9b20e6fb0e1a0934736cea6205df3998c752b248c5f5ec398162fbe165c8e69c5c - languageName: node - linkType: hard - "@babel/preset-env@npm:7.24.7, @babel/preset-env@npm:^7.18.2": version: 7.24.7 resolution: "@babel/preset-env@npm:7.24.7" @@ -2257,7 +2144,7 @@ __metadata: languageName: node linkType: hard -"@babel/traverse@npm:^7.20.0, @babel/traverse@npm:^7.23.3, @babel/traverse@npm:^7.23.6, @babel/traverse@npm:^7.24.0, @babel/traverse@npm:^7.24.1, @babel/traverse@npm:^7.24.7": +"@babel/traverse@npm:^7.20.0, @babel/traverse@npm:^7.23.3, @babel/traverse@npm:^7.23.6, @babel/traverse@npm:^7.24.0, @babel/traverse@npm:^7.24.7": version: 7.24.7 resolution: "@babel/traverse@npm:7.24.7" dependencies: @@ -2293,35 +2180,34 @@ __metadata: languageName: node linkType: hard -"@callstack/out-of-tree-platforms@npm:0.73.10": - version: 0.73.10 - resolution: "@callstack/out-of-tree-platforms@npm:0.73.10" - checksum: 58917f662847e7f33a0ad98e8de0fe0355bc68900ebb1354fbeeeae1f532219b3374e9006dc0ffa3e6154982df80fe5800bfc131c1a88e37b76b1d14137da057 +"@callstack/out-of-tree-platforms@npm:0.74.3": + version: 0.74.3 + resolution: "@callstack/out-of-tree-platforms@npm:0.74.3" + checksum: acf83abab050df15cff279247eda71e7c0511a31baea24ed89172afd8df6693bf446968dad181b6c67988a0baeb5f7576884c1806129d71ac0c1cd17e97cad32 languageName: node linkType: hard -"@callstack/react-native-visionos@npm:0.73.10": - version: 0.73.10 - resolution: "@callstack/react-native-visionos@npm:0.73.10" +"@callstack/react-native-visionos@npm:0.74.3": + version: 0.74.3 + resolution: "@callstack/react-native-visionos@npm:0.74.3" dependencies: "@jest/create-cache-key-function": ^29.6.3 - "@react-native-community/cli": 13.5.1 - "@react-native-community/cli-platform-android": 13.5.1 - "@react-native-community/cli-platform-apple": 13.5.1 - "@react-native-community/cli-platform-ios": 13.5.1 - "@react-native/assets-registry": 0.73.1 - "@react-native/codegen": 0.73.3 - "@react-native/community-cli-plugin": 0.74.0-nightly-20240131-82e9a5e4f - "@react-native/gradle-plugin": 0.73.4 - "@react-native/js-polyfills": 0.73.1 - "@react-native/normalize-colors": 0.73.2 - "@react-native/virtualized-lists": 0.73.4 + "@react-native-community/cli": 13.6.8 + "@react-native-community/cli-platform-android": 13.6.8 + "@react-native-community/cli-platform-apple": 13.6.8 + "@react-native-community/cli-platform-ios": 13.6.8 + "@react-native/assets-registry": 0.74.84 + "@react-native/codegen": 0.74.84 + "@react-native/community-cli-plugin": 0.74.84 + "@react-native/gradle-plugin": 0.74.84 + "@react-native/js-polyfills": 0.74.84 + "@react-native/normalize-colors": 0.74.84 + "@react-native/virtualized-lists": 0.74.84 abort-controller: ^3.0.0 anser: ^1.4.9 ansi-regex: ^5.0.0 base64-js: ^1.5.1 chalk: ^4.0.0 - deprecated-react-native-prop-types: ^5.0.0 event-target-shim: ^5.0.1 flow-enums-runtime: ^0.0.6 invariant: ^2.2.4 @@ -2334,7 +2220,7 @@ __metadata: nullthrows: ^1.1.1 pretty-format: ^26.5.2 promise: ^8.3.0 - react-devtools-core: ^4.27.7 + react-devtools-core: ^5.0.0 react-refresh: ^0.14.0 react-shallow-renderer: ^16.15.0 regenerator-runtime: ^0.13.2 @@ -2344,10 +2230,14 @@ __metadata: ws: ^6.2.2 yargs: ^17.6.2 peerDependencies: + "@types/react": ^18.2.6 react: 18.2.0 + peerDependenciesMeta: + "@types/react": + optional: true bin: react-native-visionos: cli.js - checksum: 4cc2ebf47d4f01571fa68f71a88b12cc8a8221e6676a85bca6330eaed8d918b9e507d2363124fd1ec13725760d191e7e27cff2c711c1a7bb8f3680545f0cb4d8 + checksum: e7757ecd52434fca661e4ff6add9e87ba3a5f52a0f5b969d6939330de7e218f4924a737777588c41fbae7fbc0b60ad9a69ea838f322459eeda721847e7198176 languageName: node linkType: hard @@ -2912,30 +2802,13 @@ __metadata: languageName: node linkType: hard -"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.4.0, @eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1": +"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1": version: 4.10.1 resolution: "@eslint-community/regexpp@npm:4.10.1" checksum: 1e04bc366fb8152c9266258cd25e3fded102f1d212a9476928e3cb98c48be645df6d676728d1c596053992fb9134879fe0de23c9460035b342cceb22d3af1776 languageName: node linkType: hard -"@eslint/eslintrc@npm:^1.3.0": - version: 1.4.1 - resolution: "@eslint/eslintrc@npm:1.4.1" - dependencies: - ajv: ^6.12.4 - debug: ^4.3.2 - espree: ^9.4.0 - globals: ^13.19.0 - ignore: ^5.2.0 - import-fresh: ^3.2.1 - js-yaml: ^4.1.0 - minimatch: ^3.1.2 - strip-json-comments: ^3.1.1 - checksum: cd3e5a8683db604739938b1c1c8b77927dc04fce3e28e0c88e7f2cd4900b89466baf83dfbad76b2b9e4d2746abdd00dd3f9da544d3e311633d8693f327d04cd7 - languageName: node - linkType: hard - "@eslint/eslintrc@npm:^2.1.4": version: 2.1.4 resolution: "@eslint/eslintrc@npm:2.1.4" @@ -3697,17 +3570,6 @@ __metadata: languageName: node linkType: hard -"@humanwhocodes/config-array@npm:^0.9.2": - version: 0.9.5 - resolution: "@humanwhocodes/config-array@npm:0.9.5" - dependencies: - "@humanwhocodes/object-schema": ^1.2.1 - debug: ^4.1.1 - minimatch: ^3.0.4 - checksum: 8ba6281bc0590f6c6eadeefc14244b5a3e3f5903445aadd1a32099ed80e753037674026ce1b3c945ab93561bea5eb29e3c5bff67060e230c295595ba517a3492 - languageName: node - linkType: hard - "@humanwhocodes/module-importer@npm:^1.0.1": version: 1.0.1 resolution: "@humanwhocodes/module-importer@npm:1.0.1" @@ -3715,13 +3577,6 @@ __metadata: languageName: node linkType: hard -"@humanwhocodes/object-schema@npm:^1.2.1": - version: 1.2.1 - resolution: "@humanwhocodes/object-schema@npm:1.2.1" - checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1 - languageName: node - linkType: hard - "@humanwhocodes/object-schema@npm:^2.0.2": version: 2.0.3 resolution: "@humanwhocodes/object-schema@npm:2.0.3" @@ -4343,7 +4198,7 @@ __metadata: languageName: node linkType: hard -"@jest/transform@npm:^29.6.3, @jest/transform@npm:^29.7.0": +"@jest/transform@npm:^29.7.0": version: 29.7.0 resolution: "@jest/transform@npm:29.7.0" dependencies: @@ -4941,18 +4796,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-clean@npm:13.5.1": - version: 13.5.1 - resolution: "@react-native-community/cli-clean@npm:13.5.1" - dependencies: - "@react-native-community/cli-tools": 13.5.1 - chalk: ^4.1.2 - execa: ^5.0.0 - glob: ^7.1.3 - checksum: b9b38c7a5131d364ea94e38436c1d805004519d45e9485a949f2a66ad37458f0c1c4d03dddbf25c36bca1be3e2b0eed7850f7126a4accc7c4da47324b523cb9b - languageName: node - linkType: hard - "@react-native-community/cli-clean@npm:13.6.6": version: 13.6.6 resolution: "@react-native-community/cli-clean@npm:13.6.6" @@ -5019,20 +4862,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-config@npm:13.5.1": - version: 13.5.1 - resolution: "@react-native-community/cli-config@npm:13.5.1" - dependencies: - "@react-native-community/cli-tools": 13.5.1 - chalk: ^4.1.2 - cosmiconfig: ^5.1.0 - deepmerge: ^4.3.0 - glob: ^7.1.3 - joi: ^17.2.1 - checksum: fd0fe3d163cc544b95a678a2ba07fe6bbe72b597167e9e0b153d2066f7df15551d22a020d08a842d4dbfa942621a916b6d11941bf33c4ecae8434b0bf79930b7 - languageName: node - linkType: hard - "@react-native-community/cli-config@npm:13.6.6": version: 13.6.6 resolution: "@react-native-community/cli-config@npm:13.6.6" @@ -5088,15 +4917,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-debugger-ui@npm:13.5.1": - version: 13.5.1 - resolution: "@react-native-community/cli-debugger-ui@npm:13.5.1" - dependencies: - serve-static: ^1.13.1 - checksum: 4f4195cc19c1067fdd5676db5d7ef1c5f5958e76399b3a9b17914a337b498564169ba5253cd4a0553f42a416c41c74df1f5e3d0b3951d41345cbcb250d932c76 - languageName: node - linkType: hard - "@react-native-community/cli-debugger-ui@npm:13.6.6": version: 13.6.6 resolution: "@react-native-community/cli-debugger-ui@npm:13.6.6" @@ -5189,32 +5009,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-doctor@npm:13.5.1": - version: 13.5.1 - resolution: "@react-native-community/cli-doctor@npm:13.5.1" - dependencies: - "@react-native-community/cli-config": 13.5.1 - "@react-native-community/cli-platform-android": 13.5.1 - "@react-native-community/cli-platform-apple": 13.5.1 - "@react-native-community/cli-platform-ios": 13.5.1 - "@react-native-community/cli-tools": 13.5.1 - chalk: ^4.1.2 - command-exists: ^1.2.8 - deepmerge: ^4.3.0 - envinfo: ^7.10.0 - execa: ^5.0.0 - hermes-profile-transformer: ^0.0.6 - ip: ^1.1.5 - node-stream-zip: ^1.9.1 - ora: ^5.4.1 - semver: ^7.5.2 - strip-ansi: ^5.2.0 - wcwidth: ^1.0.1 - yaml: ^2.2.1 - checksum: d45b06675e7947de55acb54e23a1a84cf1943dcd46d0ca5cdf58ce945cf4e14fbdb31128edded8dc480adee5a97dafa82f7067d478a2518e61201d193c7bf3cc - languageName: node - linkType: hard - "@react-native-community/cli-doctor@npm:13.6.6": version: 13.6.6 resolution: "@react-native-community/cli-doctor@npm:13.6.6" @@ -5303,19 +5097,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-hermes@npm:13.5.1": - version: 13.5.1 - resolution: "@react-native-community/cli-hermes@npm:13.5.1" - dependencies: - "@react-native-community/cli-platform-android": 13.5.1 - "@react-native-community/cli-tools": 13.5.1 - chalk: ^4.1.2 - hermes-profile-transformer: ^0.0.6 - ip: ^1.1.5 - checksum: 30c0eed3c34626b4951a1b93dd4c52ca7f7c225d9cca4f1caf57e38eed8597ba964abe599e381db4eae48b4b323415b00b42d51387d31e9474d1cf08a7148fef - languageName: node - linkType: hard - "@react-native-community/cli-hermes@npm:13.6.6": version: 13.6.6 resolution: "@react-native-community/cli-hermes@npm:13.6.6" @@ -5382,20 +5163,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-platform-android@npm:13.5.1": - version: 13.5.1 - resolution: "@react-native-community/cli-platform-android@npm:13.5.1" - dependencies: - "@react-native-community/cli-tools": 13.5.1 - chalk: ^4.1.2 - execa: ^5.0.0 - fast-xml-parser: ^4.2.4 - glob: ^7.1.3 - logkitty: ^0.7.1 - checksum: a4af2e6e0ff83582b8d9a960afbf35701454e3351517674ad68e9c259fa74ccd2bd810ab891e0cd96b25078f47cd37287a7dfd26cbe3291dc23c326f35ddb037 - languageName: node - linkType: hard - "@react-native-community/cli-platform-android@npm:13.6.6": version: 13.6.6 resolution: "@react-native-community/cli-platform-android@npm:13.6.6" @@ -5424,20 +5191,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-platform-apple@npm:13.5.1": - version: 13.5.1 - resolution: "@react-native-community/cli-platform-apple@npm:13.5.1" - dependencies: - "@react-native-community/cli-tools": 13.5.1 - chalk: ^4.1.2 - execa: ^5.0.0 - fast-xml-parser: ^4.0.12 - glob: ^7.1.3 - ora: ^5.4.1 - checksum: 84e875922755766ec3541c8ac70367743c93bf6fc85bbf8e56079f4bded110e783f5af03925ff94f76b3e4a201ed6dd5e3687c383e71ebe65ff847598de3ff5f - languageName: node - linkType: hard - "@react-native-community/cli-platform-apple@npm:13.6.6": version: 13.6.6 resolution: "@react-native-community/cli-platform-apple@npm:13.6.6" @@ -5508,15 +5261,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-platform-ios@npm:13.5.1": - version: 13.5.1 - resolution: "@react-native-community/cli-platform-ios@npm:13.5.1" - dependencies: - "@react-native-community/cli-platform-apple": 13.5.1 - checksum: 75cf99b3c60e582c51e924be61e9d676a05d80b7a38b72c47e7d6a8cfe1e0a64e4d3de1f1394c5fd741667847b4ebeaffdcda5d1535a181ad8552d55e608f39e - languageName: node - linkType: hard - "@react-native-community/cli-platform-ios@npm:13.6.6": version: 13.6.6 resolution: "@react-native-community/cli-platform-ios@npm:13.6.6" @@ -5607,23 +5351,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-server-api@npm:13.5.1": - version: 13.5.1 - resolution: "@react-native-community/cli-server-api@npm:13.5.1" - dependencies: - "@react-native-community/cli-debugger-ui": 13.5.1 - "@react-native-community/cli-tools": 13.5.1 - compression: ^1.7.1 - connect: ^3.6.5 - errorhandler: ^1.5.1 - nocache: ^3.0.1 - pretty-format: ^26.6.2 - serve-static: ^1.13.1 - ws: ^7.5.1 - checksum: ff7f112db5e5795decfe7a49bd64b87fcc4ba5714c40c155663640e8c27fb19e880297d5b9fee7973d02c5ab18b7d6419f2c2b957d31cc83967bfaf208517959 - languageName: node - linkType: hard - "@react-native-community/cli-server-api@npm:13.6.6": version: 13.6.6 resolution: "@react-native-community/cli-server-api@npm:13.6.6" @@ -5712,24 +5439,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-tools@npm:13.5.1": - version: 13.5.1 - resolution: "@react-native-community/cli-tools@npm:13.5.1" - dependencies: - appdirsjs: ^1.2.4 - chalk: ^4.1.2 - find-up: ^5.0.0 - mime: ^2.4.1 - node-fetch: ^2.6.0 - open: ^6.2.0 - ora: ^5.4.1 - semver: ^7.5.2 - shell-quote: ^1.7.3 - sudo-prompt: ^9.0.0 - checksum: b98d5c833d7ddbb774bbbb6fc31522667ac5543bbb0ff86b0204fa5b06221a6a867822ce833d766946d8a464d9fb473891dcbfeef9dba271b5700bd35d91c87c - languageName: node - linkType: hard - "@react-native-community/cli-tools@npm:13.6.6": version: 13.6.6 resolution: "@react-native-community/cli-tools@npm:13.6.6" @@ -5795,15 +5504,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-types@npm:13.5.1": - version: 13.5.1 - resolution: "@react-native-community/cli-types@npm:13.5.1" - dependencies: - joi: ^17.2.1 - checksum: 921dcb8cc943046d40a22cd324d155850713dd8c04dd70ce3678c8805b2160baa1bb1318c5fa1de8f7f82b9b27b114c914ef01b109971764e564a622a69cfe61 - languageName: node - linkType: hard - "@react-native-community/cli-types@npm:13.6.6": version: 13.6.6 resolution: "@react-native-community/cli-types@npm:13.6.6" @@ -5906,33 +5606,6 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli@npm:13.5.1": - version: 13.5.1 - resolution: "@react-native-community/cli@npm:13.5.1" - dependencies: - "@react-native-community/cli-clean": 13.5.1 - "@react-native-community/cli-config": 13.5.1 - "@react-native-community/cli-debugger-ui": 13.5.1 - "@react-native-community/cli-doctor": 13.5.1 - "@react-native-community/cli-hermes": 13.5.1 - "@react-native-community/cli-server-api": 13.5.1 - "@react-native-community/cli-tools": 13.5.1 - "@react-native-community/cli-types": 13.5.1 - chalk: ^4.1.2 - commander: ^9.4.1 - deepmerge: ^4.3.0 - execa: ^5.0.0 - find-up: ^4.1.0 - fs-extra: ^8.1.0 - graceful-fs: ^4.1.3 - prompts: ^2.4.2 - semver: ^7.5.2 - bin: - react-native: build/bin.js - checksum: 9a886f6b02dc2f1880c3b322c5907587720ed53e6f2cd454fab750f221ac34de50aef8a0e72789b78a2c41659b65924f4ecebb6e4633e59bf221f5d609de4a6f - languageName: node - linkType: hard - "@react-native-community/cli@npm:13.6.6": version: 13.6.6 resolution: "@react-native-community/cli@npm:13.6.6" @@ -6178,15 +5851,6 @@ __metadata: languageName: node linkType: hard -"@react-native/babel-plugin-codegen@npm:0.74.0-nightly-20240131-82e9a5e4f": - version: 0.74.0-nightly-20240131-82e9a5e4f - resolution: "@react-native/babel-plugin-codegen@npm:0.74.0-nightly-20240131-82e9a5e4f" - dependencies: - "@react-native/codegen": 0.74.0-nightly-20240131-82e9a5e4f - checksum: 1a9ad4a93e457ec4040c820fdd1c227cfa384356312b3a6d12bb7527cb4f3fbf019cd5d4d69b14240beddd006847e56e4a98945724618265262ca3600d95ff2e - languageName: node - linkType: hard - "@react-native/babel-plugin-codegen@npm:0.74.83": version: 0.74.83 resolution: "@react-native/babel-plugin-codegen@npm:0.74.83" @@ -6352,59 +6016,6 @@ __metadata: languageName: node linkType: hard -"@react-native/babel-preset@npm:0.74.0-nightly-20240131-82e9a5e4f": - version: 0.74.0-nightly-20240131-82e9a5e4f - resolution: "@react-native/babel-preset@npm:0.74.0-nightly-20240131-82e9a5e4f" - dependencies: - "@babel/core": ^7.20.0 - "@babel/plugin-proposal-async-generator-functions": ^7.0.0 - "@babel/plugin-proposal-class-properties": ^7.18.0 - "@babel/plugin-proposal-export-default-from": ^7.0.0 - "@babel/plugin-proposal-logical-assignment-operators": ^7.18.0 - "@babel/plugin-proposal-nullish-coalescing-operator": ^7.18.0 - "@babel/plugin-proposal-numeric-separator": ^7.0.0 - "@babel/plugin-proposal-object-rest-spread": ^7.20.0 - "@babel/plugin-proposal-optional-catch-binding": ^7.0.0 - "@babel/plugin-proposal-optional-chaining": ^7.20.0 - "@babel/plugin-syntax-dynamic-import": ^7.8.0 - "@babel/plugin-syntax-export-default-from": ^7.0.0 - "@babel/plugin-syntax-flow": ^7.18.0 - "@babel/plugin-syntax-nullish-coalescing-operator": ^7.0.0 - "@babel/plugin-syntax-optional-chaining": ^7.0.0 - "@babel/plugin-transform-arrow-functions": ^7.0.0 - "@babel/plugin-transform-async-to-generator": ^7.20.0 - "@babel/plugin-transform-block-scoping": ^7.0.0 - "@babel/plugin-transform-classes": ^7.0.0 - "@babel/plugin-transform-computed-properties": ^7.0.0 - "@babel/plugin-transform-destructuring": ^7.20.0 - "@babel/plugin-transform-flow-strip-types": ^7.20.0 - "@babel/plugin-transform-function-name": ^7.0.0 - "@babel/plugin-transform-literals": ^7.0.0 - "@babel/plugin-transform-modules-commonjs": ^7.0.0 - "@babel/plugin-transform-named-capturing-groups-regex": ^7.0.0 - "@babel/plugin-transform-parameters": ^7.0.0 - "@babel/plugin-transform-private-methods": ^7.22.5 - "@babel/plugin-transform-private-property-in-object": ^7.22.11 - "@babel/plugin-transform-react-display-name": ^7.0.0 - "@babel/plugin-transform-react-jsx": ^7.0.0 - "@babel/plugin-transform-react-jsx-self": ^7.0.0 - "@babel/plugin-transform-react-jsx-source": ^7.0.0 - "@babel/plugin-transform-runtime": ^7.0.0 - "@babel/plugin-transform-shorthand-properties": ^7.0.0 - "@babel/plugin-transform-spread": ^7.0.0 - "@babel/plugin-transform-sticky-regex": ^7.0.0 - "@babel/plugin-transform-typescript": ^7.5.0 - "@babel/plugin-transform-unicode-regex": ^7.0.0 - "@babel/template": ^7.0.0 - "@react-native/babel-plugin-codegen": 0.74.0-nightly-20240131-82e9a5e4f - babel-plugin-transform-flow-enums: ^0.0.2 - react-refresh: ^0.14.0 - peerDependencies: - "@babel/core": "*" - checksum: d1b93d46f9bacc918334ec11c770c694a6916f6d52bc25978c3b89e9878396236bc248c829445822d460bede6497676f5819a802455838af8e452ae7fef97a8c - languageName: node - linkType: hard - "@react-native/babel-preset@npm:0.74.83": version: 0.74.83 resolution: "@react-native/babel-preset@npm:0.74.83" @@ -6545,23 +6156,6 @@ __metadata: languageName: node linkType: hard -"@react-native/codegen@npm:0.74.0-nightly-20240131-82e9a5e4f": - version: 0.74.0-nightly-20240131-82e9a5e4f - resolution: "@react-native/codegen@npm:0.74.0-nightly-20240131-82e9a5e4f" - dependencies: - "@babel/parser": ^7.20.0 - glob: ^7.1.1 - hermes-parser: 0.18.2 - invariant: ^2.2.4 - jscodeshift: ^0.14.0 - mkdirp: ^0.5.1 - nullthrows: ^1.1.1 - peerDependencies: - "@babel/preset-env": ^7.1.6 - checksum: a63534ef0321bf84301c2f105e39708260ae969ed022c7b2d76182b987ee980dacd5db637c96eaaeb28449a0c039a860f713dfd146626a2e1c3b869bc5591907 - languageName: node - linkType: hard - "@react-native/codegen@npm:0.74.83": version: 0.74.83 resolution: "@react-native/codegen@npm:0.74.83" @@ -6634,26 +6228,6 @@ __metadata: languageName: node linkType: hard -"@react-native/community-cli-plugin@npm:0.74.0-nightly-20240131-82e9a5e4f": - version: 0.74.0-nightly-20240131-82e9a5e4f - resolution: "@react-native/community-cli-plugin@npm:0.74.0-nightly-20240131-82e9a5e4f" - dependencies: - "@react-native-community/cli-server-api": 13.5.1 - "@react-native-community/cli-tools": 13.5.1 - "@react-native/dev-middleware": 0.74.0-nightly-20240131-82e9a5e4f - "@react-native/metro-babel-transformer": 0.74.0-nightly-20240131-82e9a5e4f - chalk: ^4.0.0 - execa: ^5.1.1 - metro: ^0.80.3 - metro-config: ^0.80.3 - metro-core: ^0.80.3 - node-fetch: ^2.2.0 - querystring: ^0.2.1 - readline: ^1.3.0 - checksum: 8d294ede619a1989da7ca8bffd2edd963693511e5919b991ff3759aa3fba468ef2dc364c6d68b4faa8232968f8b8894ba33698788ec526bf1f3ae92bb43c99b5 - languageName: node - linkType: hard - "@react-native/community-cli-plugin@npm:0.74.83": version: 0.74.83 resolution: "@react-native/community-cli-plugin@npm:0.74.83" @@ -6701,13 +6275,6 @@ __metadata: languageName: node linkType: hard -"@react-native/debugger-frontend@npm:0.74.0-nightly-20240131-82e9a5e4f": - version: 0.74.0-nightly-20240131-82e9a5e4f - resolution: "@react-native/debugger-frontend@npm:0.74.0-nightly-20240131-82e9a5e4f" - checksum: dbf8e63af69a85b9b7f4fd4ffb1ab1ddc043693795d08250205a2bcdc39f85367be7041f9467dae8f5b01705be3eae513c2699c5fc341c4146839147cef15a13 - languageName: node - linkType: hard - "@react-native/debugger-frontend@npm:0.74.83": version: 0.74.83 resolution: "@react-native/debugger-frontend@npm:0.74.83" @@ -6759,26 +6326,6 @@ __metadata: languageName: node linkType: hard -"@react-native/dev-middleware@npm:0.74.0-nightly-20240131-82e9a5e4f": - version: 0.74.0-nightly-20240131-82e9a5e4f - resolution: "@react-native/dev-middleware@npm:0.74.0-nightly-20240131-82e9a5e4f" - dependencies: - "@isaacs/ttlcache": ^1.4.1 - "@react-native/debugger-frontend": 0.74.0-nightly-20240131-82e9a5e4f - "@rnx-kit/chromium-edge-launcher": ^1.0.0 - chrome-launcher: ^0.15.2 - connect: ^3.6.5 - debug: ^2.2.0 - node-fetch: ^2.2.0 - nullthrows: ^1.1.1 - open: ^7.0.3 - selfsigned: ^2.4.1 - serve-static: ^1.13.1 - temp-dir: ^2.0.0 - checksum: 3eb007bd2417ef31ae6acf15ab7fe8b05353cb5bf9474e1e7ccb844d1045c32b5cfb30743485b10a86d809508a471754efda9bca9c17142a0eb226e2b5ee0c30 - languageName: node - linkType: hard - "@react-native/dev-middleware@npm:0.74.83": version: 0.74.83 resolution: "@react-native/dev-middleware@npm:0.74.83" @@ -6821,30 +6368,6 @@ __metadata: languageName: node linkType: hard -"@react-native/eslint-config@npm:0.73.2": - version: 0.73.2 - resolution: "@react-native/eslint-config@npm:0.73.2" - dependencies: - "@babel/core": ^7.20.0 - "@babel/eslint-parser": ^7.20.0 - "@react-native/eslint-plugin": 0.73.1 - "@typescript-eslint/eslint-plugin": ^5.57.1 - "@typescript-eslint/parser": ^5.57.1 - eslint-config-prettier: ^8.5.0 - eslint-plugin-eslint-comments: ^3.2.0 - eslint-plugin-ft-flow: ^2.0.1 - eslint-plugin-jest: ^26.5.3 - eslint-plugin-prettier: ^4.2.1 - eslint-plugin-react: ^7.30.1 - eslint-plugin-react-hooks: ^4.6.0 - eslint-plugin-react-native: ^4.0.0 - peerDependencies: - eslint: ">=8" - prettier: ">=2" - checksum: 6d9de3267d80f1ee4f046a54a86bb906448dbc2a1a708fa7b7cb92f7611dec666b5908451501cd39b8b67eda4c8cfac6b2707a0ea65eb0228c79dcd47fc9b4c5 - languageName: node - linkType: hard - "@react-native/eslint-config@npm:0.74.84": version: 0.74.84 resolution: "@react-native/eslint-config@npm:0.74.84" @@ -6869,13 +6392,6 @@ __metadata: languageName: node linkType: hard -"@react-native/eslint-plugin@npm:0.73.1": - version: 0.73.1 - resolution: "@react-native/eslint-plugin@npm:0.73.1" - checksum: 82a9bd30ada10ec4e926021967d1ffeb7c82eaaba6f7171cc655daf3339d2e2c15897bc3cd0f529e83ef2958c3b9b0365590a6b672a1a0efe7c781bd3e854473 - languageName: node - linkType: hard - "@react-native/eslint-plugin@npm:0.74.84": version: 0.74.84 resolution: "@react-native/eslint-plugin@npm:0.74.84" @@ -6953,20 +6469,6 @@ __metadata: languageName: node linkType: hard -"@react-native/metro-babel-transformer@npm:0.74.0-nightly-20240131-82e9a5e4f": - version: 0.74.0-nightly-20240131-82e9a5e4f - resolution: "@react-native/metro-babel-transformer@npm:0.74.0-nightly-20240131-82e9a5e4f" - dependencies: - "@babel/core": ^7.20.0 - "@react-native/babel-preset": 0.74.0-nightly-20240131-82e9a5e4f - hermes-parser: 0.18.2 - nullthrows: ^1.1.1 - peerDependencies: - "@babel/core": "*" - checksum: eb34660573ccf437e3a3b5fd8c080c0aeba1bd2ef07a7231229156fcbf45ae013ec110a88d9a8ec0822a33200153e4aa2b17376fdfa312d7183d9b01719a233f - languageName: node - linkType: hard - "@react-native/metro-babel-transformer@npm:0.74.83": version: 0.74.83 resolution: "@react-native/metro-babel-transformer@npm:0.74.83" @@ -6996,26 +6498,14 @@ __metadata: linkType: hard "@react-native/metro-config@npm:0.73.2": - version: 0.73.2 - resolution: "@react-native/metro-config@npm:0.73.2" - dependencies: - "@react-native/js-polyfills": ^0.73.1 - "@react-native/metro-babel-transformer": ^0.73.12 - metro-config: ^0.80.0 - metro-runtime: ^0.80.0 - checksum: 91b71038c6a33b965c9b598125c78172957395e6bcede695202f846cea0f2dd4668cc3f09b5afa5dcdfce3e212007ec22b855f100473fae8b944877d68e4dbc8 - languageName: node - linkType: hard - -"@react-native/metro-config@npm:0.73.3": - version: 0.73.3 - resolution: "@react-native/metro-config@npm:0.73.3" - dependencies: - "@react-native/js-polyfills": 0.73.1 - "@react-native/metro-babel-transformer": 0.73.13 - metro-config: ^0.80.3 - metro-runtime: ^0.80.3 - checksum: f22ef2957235d98898c305b3f9acb0a521f3bd1c759ec9d7f52fd1745f636c6915d224a69ee909e58e6336059c8dee91a66a065a558514d2eff753902edb1c80 + version: 0.73.2 + resolution: "@react-native/metro-config@npm:0.73.2" + dependencies: + "@react-native/js-polyfills": ^0.73.1 + "@react-native/metro-babel-transformer": ^0.73.12 + metro-config: ^0.80.0 + metro-runtime: ^0.80.0 + checksum: 91b71038c6a33b965c9b598125c78172957395e6bcede695202f846cea0f2dd4668cc3f09b5afa5dcdfce3e212007ec22b855f100473fae8b944877d68e4dbc8 languageName: node linkType: hard @@ -7059,13 +6549,6 @@ __metadata: languageName: node linkType: hard -"@react-native/typescript-config@npm:0.73.1": - version: 0.73.1 - resolution: "@react-native/typescript-config@npm:0.73.1" - checksum: 9b66fe369c26758764e782f876241f51b75101b627659a148b2709e3c0548a314f5e98dfb508a72d038379a9a11eef18f5cc3e20b04d4e28210b0e09edd819fe - languageName: node - linkType: hard - "@react-native/typescript-config@npm:0.74.84": version: 0.74.84 resolution: "@react-native/typescript-config@npm:0.74.84" @@ -7873,16 +7356,6 @@ __metadata: languageName: node linkType: hard -"@types/react@npm:18.2.74": - version: 18.2.74 - resolution: "@types/react@npm:18.2.74" - dependencies: - "@types/prop-types": "*" - csstype: ^3.0.2 - checksum: 093c0e350552e61393e2ba30169aa620e2e64c1e2d0ff38efd2a7549ded689b6ab6bffb65fe0f7ef9e143174de54442d942bd70c014649f464c52465701208d8 - languageName: node - linkType: hard - "@types/react@npm:18.3.3": version: 18.3.3 resolution: "@types/react@npm:18.3.3" @@ -8071,30 +7544,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^5.57.1": - version: 5.62.0 - resolution: "@typescript-eslint/eslint-plugin@npm:5.62.0" - dependencies: - "@eslint-community/regexpp": ^4.4.0 - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/type-utils": 5.62.0 - "@typescript-eslint/utils": 5.62.0 - debug: ^4.3.4 - graphemer: ^1.4.0 - ignore: ^5.2.0 - natural-compare-lite: ^1.4.0 - semver: ^7.3.7 - tsutils: ^3.21.0 - peerDependencies: - "@typescript-eslint/parser": ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: fc104b389c768f9fa7d45a48c86d5c1ad522c1d0512943e782a56b1e3096b2cbcc1eea3fcc590647bf0658eef61aac35120a9c6daf979bf629ad2956deb516a1 - languageName: node - linkType: hard - "@typescript-eslint/eslint-plugin@npm:^7.1.1": version: 7.13.1 resolution: "@typescript-eslint/eslint-plugin@npm:7.13.1" @@ -8136,23 +7585,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/parser@npm:^5.57.1": - version: 5.62.0 - resolution: "@typescript-eslint/parser@npm:5.62.0" - dependencies: - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/typescript-estree": 5.62.0 - debug: ^4.3.4 - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: d168f4c7f21a7a63f47002e2d319bcbb6173597af5c60c1cf2de046b46c76b4930a093619e69faf2d30214c29ab27b54dcf1efc7046a6a6bd6f37f59a990e752 - languageName: node - linkType: hard - "@typescript-eslint/parser@npm:^7.1.1": version: 7.13.1 resolution: "@typescript-eslint/parser@npm:7.13.1" @@ -8211,23 +7643,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/type-utils@npm:5.62.0" - dependencies: - "@typescript-eslint/typescript-estree": 5.62.0 - "@typescript-eslint/utils": 5.62.0 - debug: ^4.3.4 - tsutils: ^3.21.0 - peerDependencies: - eslint: "*" - peerDependenciesMeta: - typescript: - optional: true - checksum: fc41eece5f315dfda14320be0da78d3a971d650ea41300be7196934b9715f3fe1120a80207551eb71d39568275dbbcf359bde540d1ca1439d8be15e9885d2739 - languageName: node - linkType: hard - "@typescript-eslint/type-utils@npm:6.21.0": version: 6.21.0 resolution: "@typescript-eslint/type-utils@npm:6.21.0" @@ -8382,24 +7797,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:5.62.0, @typescript-eslint/utils@npm:^5.10.0": - version: 5.62.0 - resolution: "@typescript-eslint/utils@npm:5.62.0" - dependencies: - "@eslint-community/eslint-utils": ^4.2.0 - "@types/json-schema": ^7.0.9 - "@types/semver": ^7.3.12 - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/typescript-estree": 5.62.0 - eslint-scope: ^5.1.1 - semver: ^7.3.7 - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: ee9398c8c5db6d1da09463ca7bf36ed134361e20131ea354b2da16a5fdb6df9ba70c62a388d19f6eebb421af1786dbbd79ba95ddd6ab287324fc171c3e28d931 - languageName: node - linkType: hard - "@typescript-eslint/utils@npm:6.21.0": version: 6.21.0 resolution: "@typescript-eslint/utils@npm:6.21.0" @@ -8445,6 +7842,24 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/utils@npm:^5.10.0": + version: 5.62.0 + resolution: "@typescript-eslint/utils@npm:5.62.0" + dependencies: + "@eslint-community/eslint-utils": ^4.2.0 + "@types/json-schema": ^7.0.9 + "@types/semver": ^7.3.12 + "@typescript-eslint/scope-manager": 5.62.0 + "@typescript-eslint/types": 5.62.0 + "@typescript-eslint/typescript-estree": 5.62.0 + eslint-scope: ^5.1.1 + semver: ^7.3.7 + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + checksum: ee9398c8c5db6d1da09463ca7bf36ed134361e20131ea354b2da16a5fdb6df9ba70c62a388d19f6eebb421af1786dbbd79ba95ddd6ab287324fc171c3e28d931 + languageName: node + linkType: hard + "@typescript-eslint/visitor-keys@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/visitor-keys@npm:5.62.0" @@ -8846,7 +8261,7 @@ __metadata: languageName: node linkType: hard -"ajv@npm:^6.10.0, ajv@npm:^6.12.4, ajv@npm:^6.12.5": +"ajv@npm:^6.12.4, ajv@npm:^6.12.5": version: 6.12.6 resolution: "ajv@npm:6.12.6" dependencies: @@ -9499,23 +8914,6 @@ __metadata: languageName: node linkType: hard -"babel-jest@npm:29.6.3": - version: 29.6.3 - resolution: "babel-jest@npm:29.6.3" - dependencies: - "@jest/transform": ^29.6.3 - "@types/babel__core": ^7.1.14 - babel-plugin-istanbul: ^6.1.1 - babel-preset-jest: ^29.6.3 - chalk: ^4.0.0 - graceful-fs: ^4.2.9 - slash: ^3.0.0 - peerDependencies: - "@babel/core": ^7.8.0 - checksum: 8b4b85d829d8ee010f0c8381cb9d67842da905c32183c1fc6e1e8833447a79b969f8279759d44197bb77001239dc41a49fff0e8222d8e8577f47a8d0428d178e - languageName: node - linkType: hard - "babel-jest@npm:29.7.0, babel-jest@npm:^29.7.0": version: 29.7.0 resolution: "babel-jest@npm:29.7.0" @@ -12873,23 +12271,6 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-jest@npm:^26.5.3": - version: 26.9.0 - resolution: "eslint-plugin-jest@npm:26.9.0" - dependencies: - "@typescript-eslint/utils": ^5.10.0 - peerDependencies: - "@typescript-eslint/eslint-plugin": ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - peerDependenciesMeta: - "@typescript-eslint/eslint-plugin": - optional: true - jest: - optional: true - checksum: 6d5fd5c95368f1ca2640389aeb7ce703d6202493c3ec6bdedb4eaca37233710508b0c75829e727765a16fd27029a466d34202bc7f2811c752038ccbbce224400 - languageName: node - linkType: hard - "eslint-plugin-jest@npm:^27.9.0": version: 27.9.0 resolution: "eslint-plugin-jest@npm:27.9.0" @@ -13095,7 +12476,7 @@ __metadata: languageName: node linkType: hard -"eslint-scope@npm:^7.1.1, eslint-scope@npm:^7.2.2": +"eslint-scope@npm:^7.2.2": version: 7.2.2 resolution: "eslint-scope@npm:7.2.2" dependencies: @@ -13105,18 +12486,7 @@ __metadata: languageName: node linkType: hard -"eslint-utils@npm:^3.0.0": - version: 3.0.0 - resolution: "eslint-utils@npm:3.0.0" - dependencies: - eslint-visitor-keys: ^2.0.0 - peerDependencies: - eslint: ">=5" - checksum: 0668fe02f5adab2e5a367eee5089f4c39033af20499df88fe4e6aba2015c20720404d8c3d6349b6f716b08fdf91b9da4e5d5481f265049278099c4c836ccb619 - languageName: node - linkType: hard - -"eslint-visitor-keys@npm:^2.0.0, eslint-visitor-keys@npm:^2.1.0": +"eslint-visitor-keys@npm:^2.1.0": version: 2.1.0 resolution: "eslint-visitor-keys@npm:2.1.0" checksum: e3081d7dd2611a35f0388bbdc2f5da60b3a3c5b8b6e928daffff7391146b434d691577aa95064c8b7faad0b8a680266bcda0a42439c18c717b80e6718d7e267d @@ -13130,51 +12500,6 @@ __metadata: languageName: node linkType: hard -"eslint@npm:8.19.0": - version: 8.19.0 - resolution: "eslint@npm:8.19.0" - dependencies: - "@eslint/eslintrc": ^1.3.0 - "@humanwhocodes/config-array": ^0.9.2 - ajv: ^6.10.0 - chalk: ^4.0.0 - cross-spawn: ^7.0.2 - debug: ^4.3.2 - doctrine: ^3.0.0 - escape-string-regexp: ^4.0.0 - eslint-scope: ^7.1.1 - eslint-utils: ^3.0.0 - eslint-visitor-keys: ^3.3.0 - espree: ^9.3.2 - esquery: ^1.4.0 - esutils: ^2.0.2 - fast-deep-equal: ^3.1.3 - file-entry-cache: ^6.0.1 - functional-red-black-tree: ^1.0.1 - glob-parent: ^6.0.1 - globals: ^13.15.0 - ignore: ^5.2.0 - import-fresh: ^3.0.0 - imurmurhash: ^0.1.4 - is-glob: ^4.0.0 - js-yaml: ^4.1.0 - json-stable-stringify-without-jsonify: ^1.0.1 - levn: ^0.4.1 - lodash.merge: ^4.6.2 - minimatch: ^3.1.2 - natural-compare: ^1.4.0 - optionator: ^0.9.1 - regexpp: ^3.2.0 - strip-ansi: ^6.0.1 - strip-json-comments: ^3.1.0 - text-table: ^0.2.0 - v8-compile-cache: ^2.0.3 - bin: - eslint: bin/eslint.js - checksum: 0bc9df1a3a09dcd5a781ec728f280aa8af3ab19c2d1f14e2668b5ee5b8b1fb0e72dde5c3acf738e7f4281685fb24ec149b6154255470b06cf41de76350bca7a4 - languageName: node - linkType: hard - "eslint@npm:8.57.0": version: 8.57.0 resolution: "eslint@npm:8.57.0" @@ -13223,7 +12548,7 @@ __metadata: languageName: node linkType: hard -"espree@npm:^9.3.2, espree@npm:^9.4.0, espree@npm:^9.6.0, espree@npm:^9.6.1": +"espree@npm:^9.6.0, espree@npm:^9.6.1": version: 9.6.1 resolution: "espree@npm:9.6.1" dependencies: @@ -13244,7 +12569,7 @@ __metadata: languageName: node linkType: hard -"esquery@npm:^1.4.0, esquery@npm:^1.4.2, esquery@npm:^1.5.0": +"esquery@npm:^1.4.2, esquery@npm:^1.5.0": version: 1.5.0 resolution: "esquery@npm:1.5.0" dependencies: @@ -14349,13 +13674,6 @@ __metadata: languageName: node linkType: hard -"functional-red-black-tree@npm:^1.0.1": - version: 1.0.1 - resolution: "functional-red-black-tree@npm:1.0.1" - checksum: ca6c170f37640e2d94297da8bb4bf27a1d12bea3e00e6a3e007fd7aa32e37e000f5772acf941b4e4f3cf1c95c3752033d0c509af157ad8f526e7f00723b9eb9f - languageName: node - linkType: hard - "functions-have-names@npm:^1.2.3": version: 1.2.3 resolution: "functions-have-names@npm:1.2.3" @@ -14665,7 +13983,7 @@ __metadata: languageName: node linkType: hard -"globals@npm:^13.15.0, globals@npm:^13.19.0": +"globals@npm:^13.19.0": version: 13.24.0 resolution: "globals@npm:13.24.0" dependencies: @@ -15277,13 +14595,6 @@ __metadata: languageName: node linkType: hard -"hermes-estree@npm:0.18.2": - version: 0.18.2 - resolution: "hermes-estree@npm:0.18.2" - checksum: 6723aa4c475df27f964cde86518c097075a1b18168834b9329392a8ded4a9f09a854c31bc7720b0656550c05369d1d24d2fa7bee6a8d7ab35d78e1ec283ffe1f - languageName: node - linkType: hard - "hermes-estree@npm:0.19.1": version: 0.19.1 resolution: "hermes-estree@npm:0.19.1" @@ -15307,15 +14618,6 @@ __metadata: languageName: node linkType: hard -"hermes-parser@npm:0.18.2": - version: 0.18.2 - resolution: "hermes-parser@npm:0.18.2" - dependencies: - hermes-estree: 0.18.2 - checksum: d628f207e8951ee8bdf5b3c798ea9e18e2f4e49f9a5aaed639868207b7163eafb3a55b999c6ed8b4f0c4e39b474c2e1bd1bcb69303f095cab56e1711368bcbdf - languageName: node - linkType: hard - "hermes-parser@npm:0.19.1": version: 0.19.1 resolution: "hermes-parser@npm:0.19.1" @@ -15697,7 +14999,7 @@ __metadata: languageName: node linkType: hard -"import-fresh@npm:^3.0.0, import-fresh@npm:^3.2.1, import-fresh@npm:^3.3.0": +"import-fresh@npm:^3.2.1, import-fresh@npm:^3.3.0": version: 3.3.0 resolution: "import-fresh@npm:3.3.0" dependencies: @@ -19654,13 +18956,6 @@ __metadata: languageName: node linkType: hard -"natural-compare-lite@npm:^1.4.0": - version: 1.4.0 - resolution: "natural-compare-lite@npm:1.4.0" - checksum: 5222ac3986a2b78dd6069ac62cbb52a7bf8ffc90d972ab76dfe7b01892485d229530ed20d0c62e79a6b363a663b273db3bde195a1358ce9e5f779d4453887225 - languageName: node - linkType: hard - "natural-compare@npm:^1.4.0": version: 1.4.0 resolution: "natural-compare@npm:1.4.0" @@ -20210,7 +19505,7 @@ __metadata: languageName: node linkType: hard -"optionator@npm:^0.9.1, optionator@npm:^0.9.3": +"optionator@npm:^0.9.3": version: 0.9.4 resolution: "optionator@npm:0.9.4" dependencies: @@ -21911,16 +21206,16 @@ __metadata: languageName: node linkType: hard -"react-native-svg@npm:15.1.0": - version: 15.1.0 - resolution: "react-native-svg@npm:15.1.0" +"react-native-svg@npm:15.3.0": + version: 15.3.0 + resolution: "react-native-svg@npm:15.3.0" dependencies: css-select: ^5.1.0 css-tree: ^1.1.3 peerDependencies: react: "*" react-native: "*" - checksum: a3694b74097e56a810a9142c9480532b63fb9cac0ff8b74c038478172d09acdb4077d93cfa53a8bb31e7ec1a9fc9f6e81a95b028c64af5370b5b3534c99aee0b + checksum: e976878361c100639ab4f9bd2cd042f526b28890cc0052139b36a5ebde44cd3b1a54c6dd3b5e391fe10a998767a994748fc6ee3f1b356154418828d12f98d77a languageName: node linkType: hard @@ -22005,7 +21300,7 @@ __metadata: react-native-web: 0.19.12 react-test-renderer: 18.3.1 release-it: 17.4.0 - typescript: 5.5.2 + typescript: 5.3.3 peerDependencies: "@react-native/normalize-colors": "*" react: "*" @@ -22162,56 +21457,6 @@ __metadata: languageName: node linkType: hard -"react-native@npm:0.73.6": - version: 0.73.6 - resolution: "react-native@npm:0.73.6" - dependencies: - "@jest/create-cache-key-function": ^29.6.3 - "@react-native-community/cli": 12.3.6 - "@react-native-community/cli-platform-android": 12.3.6 - "@react-native-community/cli-platform-ios": 12.3.6 - "@react-native/assets-registry": 0.73.1 - "@react-native/codegen": 0.73.3 - "@react-native/community-cli-plugin": 0.73.17 - "@react-native/gradle-plugin": 0.73.4 - "@react-native/js-polyfills": 0.73.1 - "@react-native/normalize-colors": 0.73.2 - "@react-native/virtualized-lists": 0.73.4 - abort-controller: ^3.0.0 - anser: ^1.4.9 - ansi-regex: ^5.0.0 - base64-js: ^1.5.1 - chalk: ^4.0.0 - deprecated-react-native-prop-types: ^5.0.0 - event-target-shim: ^5.0.1 - flow-enums-runtime: ^0.0.6 - invariant: ^2.2.4 - jest-environment-node: ^29.6.3 - jsc-android: ^250231.0.0 - memoize-one: ^5.0.0 - metro-runtime: ^0.80.3 - metro-source-map: ^0.80.3 - mkdirp: ^0.5.1 - nullthrows: ^1.1.1 - pretty-format: ^26.5.2 - promise: ^8.3.0 - react-devtools-core: ^4.27.7 - react-refresh: ^0.14.0 - react-shallow-renderer: ^16.15.0 - regenerator-runtime: ^0.13.2 - scheduler: 0.24.0-canary-efb381bbf-20230505 - stacktrace-parser: ^0.1.10 - whatwg-fetch: ^3.0.0 - ws: ^6.2.2 - yargs: ^17.6.2 - peerDependencies: - react: 18.2.0 - bin: - react-native: cli.js - checksum: 20e71c902f165c15add9f841bbc555c7b8495235122ccc42f5f1c5c0189c453651a450e59b6541188d8edb829a2aac524a1762501fb6ecebc4c89e9aa6667682 - languageName: node - linkType: hard - "react-native@npm:0.73.8": version: 0.73.8 resolution: "react-native@npm:0.73.8" @@ -22630,13 +21875,6 @@ __metadata: languageName: node linkType: hard -"regexpp@npm:^3.2.0": - version: 3.2.0 - resolution: "regexpp@npm:3.2.0" - checksum: a78dc5c7158ad9ddcfe01aa9144f46e192ddbfa7b263895a70a5c6c73edd9ce85faf7c0430e59ac38839e1734e275b9c3de5c57ee3ab6edc0e0b1bdebefccef8 - languageName: node - linkType: hard - "regexpu-core@npm:^5.3.1": version: 5.3.2 resolution: "regexpu-core@npm:5.3.2" @@ -24558,7 +23796,7 @@ __metadata: languageName: node linkType: hard -"strip-json-comments@npm:^3.1.0, strip-json-comments@npm:^3.1.1": +"strip-json-comments@npm:^3.1.1": version: 3.1.1 resolution: "strip-json-comments@npm:3.1.1" checksum: 492f73e27268f9b1c122733f28ecb0e7e8d8a531a6662efbd08e22cccb3f9475e90a1b82cab06a392f6afae6d2de636f977e231296400d0ec5304ba70f166443 @@ -25297,6 +24535,16 @@ __metadata: languageName: node linkType: hard +"typescript@npm:5.3.3": + version: 5.3.3 + resolution: "typescript@npm:5.3.3" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 2007ccb6e51bbbf6fde0a78099efe04dc1c3dfbdff04ca3b6a8bc717991862b39fd6126c0c3ebf2d2d98ac5e960bcaa873826bb2bb241f14277034148f41f6a2 + languageName: node + linkType: hard + "typescript@npm:5.4.5": version: 5.4.5 resolution: "typescript@npm:5.4.5" @@ -25327,6 +24575,16 @@ __metadata: languageName: node linkType: hard +"typescript@patch:typescript@5.3.3#~builtin": + version: 5.3.3 + resolution: "typescript@patch:typescript@npm%3A5.3.3#~builtin::version=5.3.3&hash=29ae49" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: f61375590b3162599f0f0d5b8737877ac0a7bc52761dbb585d67e7b8753a3a4c42d9a554c4cc929f591ffcf3a2b0602f65ae3ce74714fd5652623a816862b610 + languageName: node + linkType: hard + "typescript@patch:typescript@5.4.5#~builtin": version: 5.4.5 resolution: "typescript@patch:typescript@npm%3A5.4.5#~builtin::version=5.4.5&hash=29ae49" @@ -25833,13 +25091,6 @@ __metadata: languageName: node linkType: hard -"v8-compile-cache@npm:^2.0.3": - version: 2.4.0 - resolution: "v8-compile-cache@npm:2.4.0" - checksum: 8eb6ddb59d86f24566503f1e6ca98f3e6f43599f05359bd3ab737eaaf1585b338091478a4d3d5c2646632cf8030288d7888684ea62238cdce15a65ae2416718f - languageName: node - linkType: hard - "v8-to-istanbul@npm:^9.0.1": version: 9.2.0 resolution: "v8-to-istanbul@npm:9.2.0" @@ -25951,23 +25202,23 @@ __metadata: version: 0.0.0-use.local resolution: "vision@workspace:examples/vision" dependencies: - "@babel/core": 7.24.3 - "@babel/preset-env": 7.24.3 - "@babel/runtime": 7.20.0 - "@callstack/out-of-tree-platforms": 0.73.10 - "@callstack/react-native-visionos": 0.73.10 - "@react-native/babel-preset": 0.73.19 - "@react-native/eslint-config": 0.73.2 - "@react-native/metro-config": 0.73.3 - "@react-native/typescript-config": 0.73.1 - "@types/react": 18.2.74 - babel-jest: 29.6.3 - babel-plugin-module-resolver: 5.0.0 - eslint: 8.19.0 - react: 18.2.0 - react-native: 0.73.6 - react-native-svg: 15.1.0 - typescript: 5.0.4 + "@babel/core": 7.24.7 + "@babel/preset-env": 7.24.7 + "@babel/runtime": 7.24.7 + "@callstack/out-of-tree-platforms": 0.74.3 + "@callstack/react-native-visionos": 0.74.3 + "@react-native/babel-preset": 0.74.84 + "@react-native/eslint-config": 0.74.84 + "@react-native/metro-config": 0.74.84 + "@react-native/typescript-config": 0.74.84 + "@types/react": 18.3.3 + babel-jest: 29.7.0 + babel-plugin-module-resolver: 5.0.2 + eslint: 8.57.0 + react: 18.3.1 + react-native: 0.74.2 + react-native-svg: 15.3.0 + typescript: 5.5.2 languageName: unknown linkType: soft