From 980e9c7051b2b4196ab2269d10f05006af3ec79e Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 3 Apr 2024 14:15:05 -0700 Subject: [PATCH 01/11] ^ This is a combination of 2 commits. ^ This is the 1st commit message: Update RNTA to 0.73 ^ The commit message #2 will be skipped: ^ update RNTA --- .circleci/config.yml | 4 +- .flowconfig | 3 +- RNDateTimePicker.podspec | 2 +- android/src/main/AndroidManifest.xml | 2 +- babel.config.js | 2 +- example/.gitignore | 4 +- example/App.js | 4 +- example/android/build.gradle | 31 +- example/android/gradle.properties | 32 +- .../android/gradle/wrapper/gradle-wrapper.jar | Bin 60756 -> 43462 bytes .../gradle/wrapper/gradle-wrapper.properties | 4 +- example/android/gradlew | 35 +- example/android/gradlew.bat | 21 +- example/android/settings.gradle | 11 +- example/babel.config.js | 3 + example/index.js | 2 +- example/ios/Podfile | 11 +- example/ios/Podfile.lock | 1255 ++++---- example/macos/Podfile | 9 + example/tsconfig.json | 3 + example/visionos/Podfile | 13 + example/visionos/Podfile.lock | 1321 ++++++++ example/windows/.gitignore | 1 - .../RNDateTimePicker/ComponentDescriptors.h | 16 +- jest/index.js | 1 + metro.config.js | 38 +- package.json | 24 +- react-native.config.js | 41 +- src/datetimepicker.ios.js | 1 + src/datetimepicker.windows.js | 3 + src/utils.js | 1 + yarn.lock | 2644 +++++++---------- 32 files changed, 3230 insertions(+), 2312 deletions(-) create mode 100644 example/babel.config.js create mode 100644 example/macos/Podfile create mode 100644 example/tsconfig.json create mode 100644 example/visionos/Podfile create mode 100644 example/visionos/Podfile.lock diff --git a/.circleci/config.yml b/.circleci/config.yml index 9cc7fdf1..9b82da3c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,7 +33,7 @@ jobs: new_arch_ios_build_only: executor: name: rn/macos - xcode_version: '15.0.0' + xcode_version: '15.3.0' steps: - checkout - run: @@ -50,7 +50,7 @@ jobs: e2e_release_ios: executor: name: rn/macos - xcode_version: '15.0.0' + xcode_version: '15.3.0' steps: - checkout - run: diff --git a/.flowconfig b/.flowconfig index 18f572ee..a16e6c9e 100644 --- a/.flowconfig +++ b/.flowconfig @@ -15,6 +15,7 @@ node_modules/react-native/Libraries/polyfills/.* [untyped] .*/node_modules/@react-native-community/cli/.*/.* +.*/test/.* [include] @@ -63,4 +64,4 @@ untyped-import untyped-type-import [version] -^0.182.0 +^0.217.0 diff --git a/RNDateTimePicker.podspec b/RNDateTimePicker.podspec index a9cdfbc1..5f532822 100644 --- a/RNDateTimePicker.podspec +++ b/RNDateTimePicker.podspec @@ -10,7 +10,7 @@ Pod::Spec.new do |s| s.license = package['license'] s.author = package['author'] s.homepage = package['homepage'] - s.platforms = { :ios => "11.0", :visionos => "1.0" } + s.platforms = { :ios => "11.0", :visionos => "1.0" } s.source = { :git => "https://github.com/react-native-community/datetimepicker", :tag => "v#{s.version}" } s.source_files = "ios/**/*.{h,m,mm,cpp}" s.requires_arc = true diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml index 714a9345..c91836ff 100644 --- a/android/src/main/AndroidManifest.xml +++ b/android/src/main/AndroidManifest.xml @@ -1,3 +1,3 @@ - + diff --git a/babel.config.js b/babel.config.js index 50e5f4d0..79def1de 100644 --- a/babel.config.js +++ b/babel.config.js @@ -4,7 +4,7 @@ const isLintingOrTesting = module.exports = { presets: [ [ - 'module:metro-react-native-babel-preset', + 'module:@react-native/babel-preset', // this is a workaround for some deeper issue {useTransformReactJSXExperimental: !isLintingOrTesting}, ], diff --git a/example/.gitignore b/example/.gitignore index 7a6efe5d..65aa665c 100644 --- a/example/.gitignore +++ b/example/.gitignore @@ -6,9 +6,11 @@ .gradle/ .idea/ .vs/ +.xcode.env Pods/ build/ -dist/ +dist/* +!dist/.gitignore local.properties msbuild.binlog node_modules/ diff --git a/example/App.js b/example/App.js index 2a591ac0..2190714c 100644 --- a/example/App.js +++ b/example/App.js @@ -25,7 +25,7 @@ import { IOS_MODE, ANDROID_DISPLAY, IOS_DISPLAY, -} from '../src/constants'; +} from '@react-native-community/datetimepicker/src/constants'; import * as RNLocalize from 'react-native-localize'; const timezone = [ @@ -632,3 +632,5 @@ const styles = StyleSheet.create({ width: 350, }, }); + +export default App; diff --git a/example/android/build.gradle b/example/android/build.gradle index 0d1a21b2..5fd0d140 100644 --- a/example/android/build.gradle +++ b/example/android/build.gradle @@ -1,6 +1,14 @@ buildscript { - def androidTestAppDir = "../../node_modules/react-native-test-app/android" - apply(from: "${androidTestAppDir}/dependencies.gradle") + apply(from: { + def searchDir = rootDir.toPath() + do { + def p = searchDir.resolve("node_modules/react-native-test-app/android/dependencies.gradle") + if (p.toFile().exists()) { + return p.toRealPath().toString() + } + } while (searchDir = searchDir.getParent()) + throw new GradleException("Could not find `react-native-test-app`"); + }()) repositories { mavenCentral() @@ -18,14 +26,23 @@ allprojects { repositories { maven { // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm - url("${rootDir}/../../node_modules/react-native/android") + url({ + def searchDir = rootDir.toPath() + do { + def p = searchDir.resolve("node_modules/react-native/android") + if (p.toFile().exists()) { + return p.toRealPath().toString() + } + } while (searchDir = searchDir.getParent()) + throw new GradleException("Could not find `react-native`"); + }()) } + maven { + // All of Detox' artifacts are provided via the npm module + url "$rootDir/../../node_modules/detox/Detox-android" + } mavenCentral() google() - maven { - // All of Detox' artifacts are provided via the npm module - url "$rootDir/../../node_modules/detox/Detox-android" - } } afterEvaluate { project -> def androidExtension = project.extensions.findByName('android') diff --git a/example/android/gradle.properties b/example/android/gradle.properties index aad0ff59..b4687e9b 100644 --- a/example/android/gradle.properties +++ b/example/android/gradle.properties @@ -26,20 +26,28 @@ org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryEr android.useAndroidX=true # Automatically convert third-party libraries to use AndroidX android.enableJetifier=true - -# Version of Flipper to use with React Native. Default value is whatever React -# Native defaults to. To disable Flipper, set it to `false`. -FLIPPER_VERSION=false - -# Enable Fabric at runtime. -#USE_FABRIC=1 - -# Enable new architecture, i.e. Fabric + TurboModule - implies USE_FABRIC=1. +# Jetifier randomly fails on these libraries +android.jetifier.ignorelist=hermes-android + +# Use this property to specify which architecture you want to build. +# You can also override it from the CLI using +# ./gradlew -PreactNativeArchitectures=x86_64 +reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 + +# Use this property to enable support to the new architecture. +# This will allow you to use TurboModules and the Fabric render in +# your application. You should enable this flag either if you want +# to write custom TurboModules/Fabric components OR use libraries that +# are providing them. # Note that this is incompatible with web debugging. #newArchEnabled=true +#bridgelessEnabled=true + +# Uncomment the line below to build React Native from source. +#react.buildFromSource=true -# Uncomment the line below if building react-native from source -#ANDROID_NDK_VERSION=21.4.7075529 +# Version of Android NDK to build against. +#ANDROID_NDK_VERSION=26.1.10909125 # Version of Kotlin to build against. -#KOTLIN_VERSION=1.7.10 +#KOTLIN_VERSION=1.8.22 diff --git a/example/android/gradle/wrapper/gradle-wrapper.jar b/example/android/gradle/wrapper/gradle-wrapper.jar index 249e5832f090a2944b7473328c07c9755baa3196..d64cd4917707c1f8861d8cb53dd15194d4248596 100644 GIT binary patch literal 43462 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 literal 60756 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 /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -133,22 +131,29 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -193,11 +198,15 @@ if "$cygwin" || "$msys" ; then done fi -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ diff --git a/example/android/gradlew.bat b/example/android/gradlew.bat index f127cfd4..25da30db 100644 --- a/example/android/gradlew.bat +++ b/example/android/gradlew.bat @@ -26,6 +26,7 @@ if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @@ -42,11 +43,11 @@ set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if %ERRORLEVEL% equ 0 goto execute -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -56,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto execute -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail diff --git a/example/android/settings.gradle b/example/android/settings.gradle index 493aa6b7..da6451e0 100644 --- a/example/android/settings.gradle +++ b/example/android/settings.gradle @@ -8,5 +8,14 @@ pluginManagement { rootProject.name = "date-time-picker-example" -apply(from: "../../node_modules/react-native-test-app/test-app.gradle") +apply(from: { + def searchDir = rootDir.toPath() + do { + def p = searchDir.resolve("node_modules/react-native-test-app/test-app.gradle") + if (p.toFile().exists()) { + return p.toRealPath().toString() + } + } while (searchDir = searchDir.getParent()) + throw new GradleException("Could not find `react-native-test-app`"); +}()) applyTestAppSettings(settings) diff --git a/example/babel.config.js b/example/babel.config.js new file mode 100644 index 00000000..f7b3da3b --- /dev/null +++ b/example/babel.config.js @@ -0,0 +1,3 @@ +module.exports = { + presets: ['module:@react-native/babel-preset'], +}; diff --git a/example/index.js b/example/index.js index 02e824c4..a850d031 100644 --- a/example/index.js +++ b/example/index.js @@ -3,7 +3,7 @@ */ import {AppRegistry} from 'react-native'; -import {App} from './App'; +import App from './App'; import {name as appName} from './app.json'; AppRegistry.registerComponent(appName, () => App); diff --git a/example/ios/Podfile b/example/ios/Podfile index da03c2c1..d33673fe 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -1,10 +1,9 @@ -require_relative '../../node_modules/react-native-test-app/test_app' +ws_dir = Pathname.new(__dir__) +ws_dir = ws_dir.parent until + File.exist?("#{ws_dir}/node_modules/react-native-test-app/test_app.rb") || + ws_dir.expand_path.to_s == '/' +require "#{ws_dir}/node_modules/react-native-test-app/test_app.rb" workspace 'date-time-picker-example.xcworkspace' -# Flipper causes the build to fail on release when fabric is enabled -# https://github.com/facebook/react-native/issues/33764 - -use_flipper! false unless ENV['ENABLE_FLIPPER'] - use_test_app! diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 68948bf6..0547812c 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1,978 +1,1036 @@ PODS: - - boost (1.76.0) + - boost (1.83.0) - DoubleConversion (1.1.6) - - FBLazyVector (0.72.7) + - FBLazyVector (0.73.6) + - FBReactNativeSpec (0.73.6): + - RCT-Folly (= 2022.05.16.00) + - RCTRequired (= 0.73.6) + - RCTTypeSafety (= 0.73.6) + - React-Core (= 0.73.6) + - React-jsi (= 0.73.6) + - ReactCommon/turbomodule/core (= 0.73.6) - fmt (6.2.1) - glog (0.3.5) - - RCT-Folly (2021.07.22.00): + - RCT-Folly (2022.05.16.00): - boost - DoubleConversion - fmt (~> 6.2.1) - glog - - RCT-Folly/Default (= 2021.07.22.00) - - RCT-Folly/Default (2021.07.22.00): + - RCT-Folly/Default (= 2022.05.16.00) + - RCT-Folly/Default (2022.05.16.00): - boost - DoubleConversion - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (2021.07.22.00): + - RCT-Folly/Fabric (2022.05.16.00): - boost - DoubleConversion - fmt (~> 6.2.1) - glog - - RCTRequired (0.72.7) - - RCTTypeSafety (0.72.7): - - FBLazyVector (= 0.72.7) - - RCTRequired (= 0.72.7) - - React-Core (= 0.72.7) - - React (0.72.7): - - React-Core (= 0.72.7) - - React-Core/DevSupport (= 0.72.7) - - React-Core/RCTWebSocket (= 0.72.7) - - React-RCTActionSheet (= 0.72.7) - - React-RCTAnimation (= 0.72.7) - - React-RCTBlob (= 0.72.7) - - React-RCTImage (= 0.72.7) - - React-RCTLinking (= 0.72.7) - - React-RCTNetwork (= 0.72.7) - - React-RCTSettings (= 0.72.7) - - React-RCTText (= 0.72.7) - - React-RCTVibration (= 0.72.7) - - React-callinvoker (0.72.7) - - React-Codegen (0.72.7): + - RCTRequired (0.73.6) + - RCTTypeSafety (0.73.6): + - FBLazyVector (= 0.73.6) + - RCTRequired (= 0.73.6) + - React-Core (= 0.73.6) + - React (0.73.6): + - React-Core (= 0.73.6) + - React-Core/DevSupport (= 0.73.6) + - React-Core/RCTWebSocket (= 0.73.6) + - React-RCTActionSheet (= 0.73.6) + - React-RCTAnimation (= 0.73.6) + - React-RCTBlob (= 0.73.6) + - React-RCTImage (= 0.73.6) + - React-RCTLinking (= 0.73.6) + - React-RCTNetwork (= 0.73.6) + - React-RCTSettings (= 0.73.6) + - React-RCTText (= 0.73.6) + - React-RCTVibration (= 0.73.6) + - React-callinvoker (0.73.6) + - React-Codegen (0.73.6): - DoubleConversion + - FBReactNativeSpec - glog - RCT-Folly - RCTRequired - RCTTypeSafety - React-Core - - React-debug - - React-Fabric - - React-graphics - React-jsc - React-jsi - React-jsiexecutor - React-NativeModulesApple - - React-utils + - React-rncore - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-Core (0.72.7): + - React-Core (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default (= 0.72.7) + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default (= 0.73.6) - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/CoreModulesHeaders (0.72.7): + - React-Core/CoreModulesHeaders (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-Core/Default - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/Default (0.72.7): + - React-Core/Default (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/DevSupport (0.72.7): + - React-Core/DevSupport (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default (= 0.72.7) - - React-Core/RCTWebSocket (= 0.72.7) + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default (= 0.73.6) + - React-Core/RCTWebSocket (= 0.73.6) - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - - React-jsinspector (= 0.72.7) + - React-jsinspector (= 0.73.6) - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTActionSheetHeaders (0.72.7): + - React-Core/RCTActionSheetHeaders (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-Core/Default - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTAnimationHeaders (0.72.7): + - React-Core/RCTAnimationHeaders (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-Core/Default - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTBlobHeaders (0.72.7): + - React-Core/RCTBlobHeaders (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-Core/Default - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTImageHeaders (0.72.7): + - React-Core/RCTImageHeaders (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-Core/Default - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTLinkingHeaders (0.72.7): + - React-Core/RCTLinkingHeaders (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-Core/Default - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTNetworkHeaders (0.72.7): + - React-Core/RCTNetworkHeaders (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-Core/Default - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTSettingsHeaders (0.72.7): + - React-Core/RCTSettingsHeaders (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-Core/Default - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTTextHeaders (0.72.7): + - React-Core/RCTTextHeaders (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-Core/Default - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTVibrationHeaders (0.72.7): + - React-Core/RCTVibrationHeaders (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-Core/Default - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTWebSocket (0.72.7): + - React-Core/RCTWebSocket (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default (= 0.72.7) + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default (= 0.73.6) - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - React-perflogger - - React-runtimeexecutor + - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-CoreModules (0.72.7): - - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.72.7) - - React-Codegen (= 0.72.7) - - React-Core/CoreModulesHeaders (= 0.72.7) - - React-jsi (= 0.72.7) + - React-CoreModules (0.73.6): + - RCT-Folly (= 2022.05.16.00) + - RCTTypeSafety (= 0.73.6) + - React-Codegen + - React-Core/CoreModulesHeaders (= 0.73.6) + - React-jsi (= 0.73.6) + - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.72.7) - - ReactCommon/turbomodule/core (= 0.72.7) + - React-RCTImage (= 0.73.6) + - ReactCommon - SocketRocket (= 0.6.1) - - React-cxxreact (0.72.7): - - boost (= 1.76.0) - - DoubleConversion - - glog - - RCT-Folly (= 2021.07.22.00) - - React-callinvoker (= 0.72.7) - - React-debug (= 0.72.7) - - React-jsi (= 0.72.7) - - React-jsinspector (= 0.72.7) - - React-logger (= 0.72.7) - - React-perflogger (= 0.72.7) - - React-runtimeexecutor (= 0.72.7) - - React-debug (0.72.7) - - React-Fabric (0.72.7): - - DoubleConversion - - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) - - React-Core - - React-debug - - React-Fabric/animations (= 0.72.7) - - React-Fabric/attributedstring (= 0.72.7) - - React-Fabric/butter (= 0.72.7) - - React-Fabric/componentregistry (= 0.72.7) - - React-Fabric/componentregistrynative (= 0.72.7) - - React-Fabric/components (= 0.72.7) - - React-Fabric/config (= 0.72.7) - - React-Fabric/core (= 0.72.7) - - React-Fabric/debug_renderer (= 0.72.7) - - React-Fabric/imagemanager (= 0.72.7) - - React-Fabric/leakchecker (= 0.72.7) - - React-Fabric/mapbuffer (= 0.72.7) - - React-Fabric/mounting (= 0.72.7) - - React-Fabric/scheduler (= 0.72.7) - - React-Fabric/telemetry (= 0.72.7) - - React-Fabric/templateprocessor (= 0.72.7) - - React-Fabric/textlayoutmanager (= 0.72.7) - - React-Fabric/uimanager (= 0.72.7) - - React-graphics (= 0.72.7) - - React-jsi - - React-jsiexecutor (= 0.72.7) - - React-logger - - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/animations (0.72.7): - - DoubleConversion - - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) - - React-Core - - React-debug - - React-graphics (= 0.72.7) - - React-jsi - - React-jsiexecutor (= 0.72.7) - - React-logger - - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/attributedstring (0.72.7): + - React-cxxreact (0.73.6): + - boost (= 1.83.0) - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) - - React-Core - - React-debug - - React-graphics (= 0.72.7) - - React-jsi - - React-jsiexecutor (= 0.72.7) - - React-logger - - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/butter (0.72.7): + - RCT-Folly (= 2022.05.16.00) + - React-callinvoker (= 0.73.6) + - React-debug (= 0.73.6) + - React-jsi (= 0.73.6) + - React-jsinspector (= 0.73.6) + - React-logger (= 0.73.6) + - React-perflogger (= 0.73.6) + - React-runtimeexecutor (= 0.73.6) + - React-debug (0.73.6) + - React-Fabric (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-Fabric/animations (= 0.73.6) + - React-Fabric/attributedstring (= 0.73.6) + - React-Fabric/componentregistry (= 0.73.6) + - React-Fabric/componentregistrynative (= 0.73.6) + - React-Fabric/components (= 0.73.6) + - React-Fabric/core (= 0.73.6) + - React-Fabric/imagemanager (= 0.73.6) + - React-Fabric/leakchecker (= 0.73.6) + - React-Fabric/mounting (= 0.73.6) + - React-Fabric/scheduler (= 0.73.6) + - React-Fabric/telemetry (= 0.73.6) + - React-Fabric/templateprocessor (= 0.73.6) + - React-Fabric/textlayoutmanager (= 0.73.6) + - React-Fabric/uimanager (= 0.73.6) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/componentregistry (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/animations (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/componentregistrynative (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/attributedstring (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/componentregistry (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-Fabric/components/activityindicator (= 0.72.7) - - React-Fabric/components/image (= 0.72.7) - - React-Fabric/components/inputaccessory (= 0.72.7) - - React-Fabric/components/legacyviewmanagerinterop (= 0.72.7) - - React-Fabric/components/modal (= 0.72.7) - - React-Fabric/components/rncore (= 0.72.7) - - React-Fabric/components/root (= 0.72.7) - - React-Fabric/components/safeareaview (= 0.72.7) - - React-Fabric/components/scrollview (= 0.72.7) - - React-Fabric/components/text (= 0.72.7) - - React-Fabric/components/textinput (= 0.72.7) - - React-Fabric/components/unimplementedview (= 0.72.7) - - React-Fabric/components/view (= 0.72.7) - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/activityindicator (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/componentregistrynative (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/image (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/components (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-Fabric/components/inputaccessory (= 0.73.6) + - React-Fabric/components/legacyviewmanagerinterop (= 0.73.6) + - React-Fabric/components/modal (= 0.73.6) + - React-Fabric/components/rncore (= 0.73.6) + - React-Fabric/components/root (= 0.73.6) + - React-Fabric/components/safeareaview (= 0.73.6) + - React-Fabric/components/scrollview (= 0.73.6) + - React-Fabric/components/text (= 0.73.6) + - React-Fabric/components/textinput (= 0.73.6) + - React-Fabric/components/unimplementedview (= 0.73.6) + - React-Fabric/components/view (= 0.73.6) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/inputaccessory (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/components/inputaccessory (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/legacyviewmanagerinterop (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/components/legacyviewmanagerinterop (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/modal (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/components/modal (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/rncore (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/components/rncore (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/root (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/components/root (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/safeareaview (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/components/safeareaview (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/scrollview (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/components/scrollview (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/text (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/components/text (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/textinput (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/components/textinput (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/unimplementedview (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/components/unimplementedview (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/components/view (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/components/view (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) + - ReactCommon/turbomodule/core - Yoga - - React-Fabric/config (0.72.7): + - React-Fabric/core (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/core (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/imagemanager (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/debug_renderer (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/leakchecker (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/imagemanager (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/mounting (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/leakchecker (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/scheduler (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/mapbuffer (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/telemetry (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/mounting (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/templateprocessor (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/scheduler (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/textlayoutmanager (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-Fabric/uimanager + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/telemetry (0.72.7): + - ReactCommon/turbomodule/core + - React-Fabric/uimanager (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-cxxreact - React-debug - - React-graphics (= 0.72.7) + - React-graphics + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor - React-logger + - React-rendererdebug - React-runtimescheduler - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/templateprocessor (0.72.7): + - ReactCommon/turbomodule/core + - React-FabricImage (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) - - React-Core - - React-debug - - React-graphics (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired (= 0.73.6) + - RCTTypeSafety (= 0.73.6) + - React-Fabric + - React-graphics + - React-ImageManager + - React-jsc - React-jsi - - React-jsiexecutor (= 0.72.7) + - React-jsiexecutor (= 0.73.6) - React-logger - - React-runtimescheduler + - React-rendererdebug - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/textlayoutmanager (0.72.7): - - DoubleConversion + - ReactCommon + - Yoga + - React-graphics (0.73.6): - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) - - React-Core - - React-debug - - React-Fabric/uimanager - - React-graphics (= 0.72.7) - - React-jsi - - React-jsiexecutor (= 0.72.7) - - React-logger - - React-runtimescheduler + - RCT-Folly/Fabric (= 2022.05.16.00) + - React-Core/Default (= 0.73.6) - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-Fabric/uimanager (0.72.7): - - DoubleConversion - - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - RCTRequired (= 0.72.7) - - RCTTypeSafety (= 0.72.7) - - React-Core - - React-debug - - React-graphics (= 0.72.7) - - React-jsi - - React-jsiexecutor (= 0.72.7) - - React-logger - - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core (= 0.72.7) - - React-graphics (0.72.7): - - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - React-Core/Default (= 0.72.7) - - React-ImageManager (0.72.7): + - React-ImageManager (0.73.6): - glog - RCT-Folly/Fabric - React-Core/Default - React-debug - React-Fabric - - React-RCTImage + - React-graphics + - React-rendererdebug - React-utils - - React-jsc (0.72.7): - - React-jsc/Fabric (= 0.72.7) - - React-jsi (= 0.72.7) - - React-jsc/Fabric (0.72.7): - - React-jsi (= 0.72.7) - - React-jsi (0.72.7): - - boost (= 1.76.0) + - React-jsc (0.73.6): + - React-jsc/Fabric (= 0.73.6) + - React-jsi (= 0.73.6) + - React-jsc/Fabric (0.73.6): + - React-jsi (= 0.73.6) + - React-jserrorhandler (0.73.6): + - RCT-Folly/Fabric (= 2022.05.16.00) + - React-debug + - React-jsi + - React-Mapbuffer + - React-jsi (0.73.6): + - boost (= 1.83.0) - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly (= 2021.07.22.00) - - React-jsiexecutor (0.72.7): + - RCT-Folly (= 2022.05.16.00) + - React-jsiexecutor (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) + - glog + - RCT-Folly (= 2022.05.16.00) + - React-cxxreact (= 0.73.6) + - React-jsi (= 0.73.6) + - React-perflogger (= 0.73.6) + - React-jsinspector (0.73.6) + - React-logger (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) - - React-cxxreact (= 0.72.7) - - React-jsi (= 0.72.7) - - React-perflogger (= 0.72.7) - - React-jsinspector (0.72.7) - - React-logger (0.72.7): + - React-Mapbuffer (0.73.6): - glog - - react-native-segmented-control (2.4.1): + - React-debug + - react-native-segmented-control (2.5.0): - React-Core - - React-NativeModulesApple (0.72.7): + - React-nativeconfig (0.73.6) + - React-NativeModulesApple (0.73.6): + - glog - React-callinvoker - React-Core - React-cxxreact + - React-jsc - React-jsi - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.72.7) - - React-RCTActionSheet (0.72.7): - - React-Core/RCTActionSheetHeaders (= 0.72.7) - - React-RCTAnimation (0.72.7): - - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.72.7) - - React-Codegen (= 0.72.7) - - React-Core/RCTAnimationHeaders (= 0.72.7) - - React-jsi (= 0.72.7) - - ReactCommon/turbomodule/core (= 0.72.7) - - React-RCTAppDelegate (0.72.7): + - React-perflogger (0.73.6) + - React-RCTActionSheet (0.73.6): + - React-Core/RCTActionSheetHeaders (= 0.73.6) + - React-RCTAnimation (0.73.6): + - RCT-Folly (= 2022.05.16.00) + - RCTTypeSafety + - React-Codegen + - React-Core/RCTAnimationHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-RCTAppDelegate (0.73.6): - RCT-Folly - RCTRequired - RCTTypeSafety - React-Core - React-CoreModules - - React-debug - - React-graphics - React-jsc + - React-nativeconfig - React-NativeModulesApple - React-RCTFabric - React-RCTImage - React-RCTNetwork - React-runtimescheduler - - React-utils - - ReactCommon/turbomodule/core - - React-RCTBlob (0.72.7): - - RCT-Folly (= 2021.07.22.00) - - React-Codegen (= 0.72.7) - - React-Core/RCTBlobHeaders (= 0.72.7) - - React-Core/RCTWebSocket (= 0.72.7) - - React-jsi (= 0.72.7) - - React-RCTNetwork (= 0.72.7) - - ReactCommon/turbomodule/core (= 0.72.7) - - React-RCTFabric (0.72.7): + - ReactCommon + - React-RCTBlob (0.73.6): + - RCT-Folly (= 2022.05.16.00) + - React-Codegen + - React-Core/RCTBlobHeaders + - React-Core/RCTWebSocket + - React-jsi + - React-NativeModulesApple + - React-RCTNetwork + - ReactCommon + - React-RCTFabric (0.73.6): - glog - - RCT-Folly/Fabric (= 2021.07.22.00) - - React-Core (= 0.72.7) - - React-Fabric (= 0.72.7) + - RCT-Folly/Fabric (= 2022.05.16.00) + - React-Core + - React-debug + - React-Fabric + - React-FabricImage + - React-graphics - React-ImageManager + - React-jsc - React-jsi - - React-RCTImage (= 0.72.7) + - React-nativeconfig + - React-RCTImage - React-RCTText + - React-rendererdebug - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.72.7): - - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.72.7) - - React-Codegen (= 0.72.7) - - React-Core/RCTImageHeaders (= 0.72.7) - - React-jsi (= 0.72.7) - - React-RCTNetwork (= 0.72.7) - - ReactCommon/turbomodule/core (= 0.72.7) - - React-RCTLinking (0.72.7): - - React-Codegen (= 0.72.7) - - React-Core/RCTLinkingHeaders (= 0.72.7) - - React-jsi (= 0.72.7) - - ReactCommon/turbomodule/core (= 0.72.7) - - React-RCTNetwork (0.72.7): - - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.72.7) - - React-Codegen (= 0.72.7) - - React-Core/RCTNetworkHeaders (= 0.72.7) - - React-jsi (= 0.72.7) - - ReactCommon/turbomodule/core (= 0.72.7) - - React-RCTSettings (0.72.7): - - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.72.7) - - React-Codegen (= 0.72.7) - - React-Core/RCTSettingsHeaders (= 0.72.7) - - React-jsi (= 0.72.7) - - ReactCommon/turbomodule/core (= 0.72.7) - - React-RCTText (0.72.7): - - React-Core/RCTTextHeaders (= 0.72.7) - - React-RCTVibration (0.72.7): - - RCT-Folly (= 2021.07.22.00) - - React-Codegen (= 0.72.7) - - React-Core/RCTVibrationHeaders (= 0.72.7) - - React-jsi (= 0.72.7) - - ReactCommon/turbomodule/core (= 0.72.7) - - React-rncore (0.72.7) - - React-runtimeexecutor (0.72.7): - - React-jsi (= 0.72.7) - - React-runtimescheduler (0.72.7): + - React-RCTImage (0.73.6): + - RCT-Folly (= 2022.05.16.00) + - RCTTypeSafety + - React-Codegen + - React-Core/RCTImageHeaders + - React-jsi + - React-NativeModulesApple + - React-RCTNetwork + - ReactCommon + - React-RCTLinking (0.73.6): + - React-Codegen + - React-Core/RCTLinkingHeaders (= 0.73.6) + - React-jsi (= 0.73.6) + - React-NativeModulesApple + - ReactCommon + - ReactCommon/turbomodule/core (= 0.73.6) + - React-RCTNetwork (0.73.6): + - RCT-Folly (= 2022.05.16.00) + - RCTTypeSafety + - React-Codegen + - React-Core/RCTNetworkHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-RCTSettings (0.73.6): + - RCT-Folly (= 2022.05.16.00) + - RCTTypeSafety + - React-Codegen + - React-Core/RCTSettingsHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-RCTText (0.73.6): + - React-Core/RCTTextHeaders (= 0.73.6) + - Yoga + - React-RCTVibration (0.73.6): + - RCT-Folly (= 2022.05.16.00) + - React-Codegen + - React-Core/RCTVibrationHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-rendererdebug (0.73.6): + - DoubleConversion + - fmt (~> 6.2.1) + - RCT-Folly (= 2022.05.16.00) + - React-debug + - React-rncore (0.73.6) + - React-runtimeexecutor (0.73.6): + - React-jsi (= 0.73.6) + - React-runtimescheduler (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-callinvoker + - React-cxxreact - React-debug + - React-jsc - React-jsi + - React-rendererdebug - React-runtimeexecutor - - React-utils (0.72.7): + - React-utils + - React-utils (0.73.6): - glog - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly (= 2022.05.16.00) - React-debug - - ReactCommon/turbomodule/bridging (0.72.7): + - ReactCommon (0.73.6): + - React-logger (= 0.73.6) + - ReactCommon/turbomodule (= 0.73.6) + - ReactCommon/turbomodule (0.73.6): + - DoubleConversion + - fmt (~> 6.2.1) + - glog + - RCT-Folly (= 2022.05.16.00) + - React-callinvoker (= 0.73.6) + - React-cxxreact (= 0.73.6) + - React-jsi (= 0.73.6) + - React-logger (= 0.73.6) + - React-perflogger (= 0.73.6) + - ReactCommon/turbomodule/bridging (= 0.73.6) + - ReactCommon/turbomodule/core (= 0.73.6) + - ReactCommon/turbomodule/bridging (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly (= 2021.07.22.00) - - React-callinvoker (= 0.72.7) - - React-cxxreact (= 0.72.7) - - React-jsi (= 0.72.7) - - React-logger (= 0.72.7) - - React-perflogger (= 0.72.7) - - ReactCommon/turbomodule/core (0.72.7): + - RCT-Folly (= 2022.05.16.00) + - React-callinvoker (= 0.73.6) + - React-cxxreact (= 0.73.6) + - React-jsi (= 0.73.6) + - React-logger (= 0.73.6) + - React-perflogger (= 0.73.6) + - ReactCommon/turbomodule/core (0.73.6): - DoubleConversion + - fmt (~> 6.2.1) - glog - - RCT-Folly (= 2021.07.22.00) - - React-callinvoker (= 0.72.7) - - React-cxxreact (= 0.72.7) - - React-jsi (= 0.72.7) - - React-logger (= 0.72.7) - - React-perflogger (= 0.72.7) - - ReactNativeHost (0.2.9): + - RCT-Folly (= 2022.05.16.00) + - React-callinvoker (= 0.73.6) + - React-cxxreact (= 0.73.6) + - React-jsi (= 0.73.6) + - React-logger (= 0.73.6) + - React-perflogger (= 0.73.6) + - ReactNativeHost (0.4.6): + - glog + - RCT-Folly (= 2022.05.16.00) - React-Core - React-cxxreact - - React-RCTAppDelegate - - React-RCTFabric - ReactCommon/turbomodule/core - - Yoga - - ReactTestApp-DevSupport (2.5.33): + - ReactTestApp-DevSupport (3.5.3): - React-Core - React-jsi - ReactTestApp-Resources (1.0.0-dev) - - RNDateTimePicker (7.6.1): - - RCT-Folly (= 2021.07.22.00) - - RCTRequired - - RCTTypeSafety - - React-Codegen + - RNDateTimePicker (7.6.3): - React-Core - - React-debug - - React-Fabric - - React-graphics - - React-jsi - - React-NativeModulesApple - - React-RCTFabric - - React-utils - - ReactCommon/turbomodule/bridging - - ReactCommon/turbomodule/core - - Yoga - - RNLocalize (3.0.0): - - RCT-Folly (= 2021.07.22.00) - - RCTRequired - - RCTTypeSafety - - React-Codegen + - RNLocalize (3.1.0): - React-Core - - React-debug - - React-Fabric - - React-graphics - - React-jsi - - React-NativeModulesApple - - React-RCTFabric - - React-utils - - ReactCommon/turbomodule/bridging - - ReactCommon/turbomodule/core - - Yoga - SocketRocket (0.6.1) - Yoga (1.14.0) @@ -980,6 +1038,7 @@ DEPENDENCIES: - boost (from `../../node_modules/react-native/third-party-podspecs/boost.podspec`) - DoubleConversion (from `../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) - FBLazyVector (from `../../node_modules/react-native/Libraries/FBLazyVector`) + - FBReactNativeSpec (from `../../node_modules/react-native/React/FBReactNativeSpec`) - glog (from `../../node_modules/react-native/third-party-podspecs/glog.podspec`) - RCT-Folly (from `../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - RCT-Folly/Fabric (from `../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) @@ -994,15 +1053,18 @@ DEPENDENCIES: - React-cxxreact (from `../../node_modules/react-native/ReactCommon/cxxreact`) - React-debug (from `../../node_modules/react-native/ReactCommon/react/debug`) - React-Fabric (from `../../node_modules/react-native/ReactCommon`) + - React-FabricImage (from `../../node_modules/react-native/ReactCommon`) - React-graphics (from `../../node_modules/react-native/ReactCommon/react/renderer/graphics`) - React-ImageManager (from `../../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) - React-jsc (from `../../node_modules/react-native/ReactCommon/jsc`) - - React-jsc/Fabric (from `../../node_modules/react-native/ReactCommon/jsc`) + - React-jserrorhandler (from `../../node_modules/react-native/ReactCommon/jserrorhandler`) - React-jsi (from `../../node_modules/react-native/ReactCommon/jsi`) - React-jsiexecutor (from `../../node_modules/react-native/ReactCommon/jsiexecutor`) - - React-jsinspector (from `../../node_modules/react-native/ReactCommon/jsinspector`) + - React-jsinspector (from `../../node_modules/react-native/ReactCommon/jsinspector-modern`) - React-logger (from `../../node_modules/react-native/ReactCommon/logger`) + - React-Mapbuffer (from `../../node_modules/react-native/ReactCommon`) - "react-native-segmented-control (from `../../node_modules/@react-native-segmented-control/segmented-control`)" + - React-nativeconfig (from `../../node_modules/react-native/ReactCommon`) - React-NativeModulesApple (from `../../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) - React-perflogger (from `../../node_modules/react-native/ReactCommon/reactperflogger`) - React-RCTActionSheet (from `../../node_modules/react-native/Libraries/ActionSheetIOS`) @@ -1016,6 +1078,7 @@ DEPENDENCIES: - React-RCTSettings (from `../../node_modules/react-native/Libraries/Settings`) - React-RCTText (from `../../node_modules/react-native/Libraries/Text`) - React-RCTVibration (from `../../node_modules/react-native/Libraries/Vibration`) + - React-rendererdebug (from `../../node_modules/react-native/ReactCommon/react/renderer/debug`) - React-rncore (from `../../node_modules/react-native/ReactCommon`) - React-runtimeexecutor (from `../../node_modules/react-native/ReactCommon/runtimeexecutor`) - React-runtimescheduler (from `../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) @@ -1040,6 +1103,8 @@ EXTERNAL SOURCES: :podspec: "../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" FBLazyVector: :path: "../../node_modules/react-native/Libraries/FBLazyVector" + FBReactNativeSpec: + :path: "../../node_modules/react-native/React/FBReactNativeSpec" glog: :podspec: "../../node_modules/react-native/third-party-podspecs/glog.podspec" RCT-Folly: @@ -1064,22 +1129,30 @@ EXTERNAL SOURCES: :path: "../../node_modules/react-native/ReactCommon/react/debug" React-Fabric: :path: "../../node_modules/react-native/ReactCommon" + React-FabricImage: + :path: "../../node_modules/react-native/ReactCommon" React-graphics: :path: "../../node_modules/react-native/ReactCommon/react/renderer/graphics" React-ImageManager: :path: "../../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios" React-jsc: :path: "../../node_modules/react-native/ReactCommon/jsc" + React-jserrorhandler: + :path: "../../node_modules/react-native/ReactCommon/jserrorhandler" React-jsi: :path: "../../node_modules/react-native/ReactCommon/jsi" React-jsiexecutor: :path: "../../node_modules/react-native/ReactCommon/jsiexecutor" React-jsinspector: - :path: "../../node_modules/react-native/ReactCommon/jsinspector" + :path: "../../node_modules/react-native/ReactCommon/jsinspector-modern" React-logger: :path: "../../node_modules/react-native/ReactCommon/logger" + React-Mapbuffer: + :path: "../../node_modules/react-native/ReactCommon" react-native-segmented-control: :path: "../../node_modules/@react-native-segmented-control/segmented-control" + React-nativeconfig: + :path: "../../node_modules/react-native/ReactCommon" React-NativeModulesApple: :path: "../../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" React-perflogger: @@ -1106,6 +1179,8 @@ EXTERNAL SOURCES: :path: "../../node_modules/react-native/Libraries/Text" React-RCTVibration: :path: "../../node_modules/react-native/Libraries/Vibration" + React-rendererdebug: + :path: "../../node_modules/react-native/ReactCommon/react/renderer/debug" React-rncore: :path: "../../node_modules/react-native/ReactCommon" React-runtimeexecutor: @@ -1130,56 +1205,62 @@ EXTERNAL SOURCES: :path: "../../node_modules/react-native/ReactCommon/yoga" SPEC CHECKSUMS: - boost: 57d2868c099736d80fcd648bf211b4431e51a558 - DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54 - FBLazyVector: 5fbbff1d7734827299274638deb8ba3024f6c597 + boost: d3f49c53809116a5d38da093a8aa78bf551aed09 + DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953 + FBLazyVector: f64d1e2ea739b4d8f7e4740cde18089cd97fe864 + FBReactNativeSpec: 133b4c4362bacd8d6527b897ee5e5e3bc90bb075 fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 - glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b - RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1 - RCTRequired: 83bca1c184feb4d2e51c72c8369b83d641443f95 - RCTTypeSafety: 13c4a87a16d7db6cd66006ce9759f073402ef85b - React: e67aa9f99957c7611c392b5e49355d877d6525e2 - React-callinvoker: 2790c09d964c2e5404b5410cde91b152e3746b7b - React-Codegen: 3aeff413cc94682a2b86fa70e037db5fa32d3e06 - React-Core: 4fe233e5aa53635c5a9f945613178e8c056f9816 - React-CoreModules: 6312c9b2fec4329d9ae6a2b8c350032d1664c51b - React-cxxreact: a4dff353b5e30ee81f1c3b44e4a8eaa8f20a6ed0 - React-debug: 4accb2b9dc09b575206d2c42f4082990a52ae436 - React-Fabric: 7fddab6f57c3a74df35e4d16e22e47496ddd91d4 - React-graphics: 8425904e0836c80c395e3c60b92684296da70a99 - React-ImageManager: a3abf30734a223d3164fe6f4f2e243eb63dc4999 - React-jsc: 643466d63d9c858d8dded262c547ea54eebcc25a - React-jsi: e4fe2cf2a8e58c04faf491c487ca63bc572c5856 - React-jsiexecutor: 10e6c77ff6b32274b8d152d08ed0328c4b30a821 - React-jsinspector: 8baadae51f01d867c3921213a25ab78ab4fbcd91 - React-logger: 8edc785c47c8686c7962199a307015e2ce9a0e4f - react-native-segmented-control: 0e4b5d93911e2234f110057df2b41738b326ab3e - React-NativeModulesApple: 6f63747fd6e237b646c61957a8f877a2713617af - React-perflogger: 31ea61077185eb1428baf60c0db6e2886f141a5a - React-RCTActionSheet: 392090a3abc8992eb269ef0eaa561750588fc39d - React-RCTAnimation: 4b3cc6a29474bc0d78c4f04b52ab59bf760e8a9b - React-RCTAppDelegate: d264194b962207c270ed61c3f594c3adf92b3f32 - React-RCTBlob: 77dc35833fbfc10243ea420b59b429870092541a - React-RCTFabric: 40c62ec62a76a97863786df32ec1678f8f8eee4e - React-RCTImage: 8a5d339d614a90a183fc1b8b6a7eb44e2e703943 - React-RCTLinking: b37dfbf646d77c326f9eae094b1fcd575b1c24c7 - React-RCTNetwork: 8bed9b2461c7d8a7d14e63df9b16181c448beebc - React-RCTSettings: 506a5f09a455123a8873801b70aa7b4010b76b01 - React-RCTText: 3c71ecaad8ee010b79632ea2590f86c02f5cce17 - React-RCTVibration: d1b78ca38f61ea4b3e9ebb2ddbd0b5662631d99b - React-rncore: fafe0e6a141e4e5cb3467a95008e17a25e5272c8 - React-runtimeexecutor: 47b0a2d5bbb416db65ef881a6f7bdcfefa0001ab - React-runtimescheduler: 14e0b0d971a4199af2aeb2ffa125429f02618229 - React-utils: 56838edeaaf651220d1e53cd0b8934fb8ce68415 - ReactCommon: 54a0af7fed8df83c4de245309f1627110ba1f8af - ReactNativeHost: 9dda8507cd02ec09b8e0fed4e03459005f4d4b63 - ReactTestApp-DevSupport: eb20e9fc8a8887ee53c8158632d701c130aae27c - ReactTestApp-Resources: 1f512f66574607bcfa614e9c0d30e7a990fecf30 - RNDateTimePicker: 30d6991800eab0231c97d07a3b132fa6bd1cf402 - RNLocalize: 730ee4fe8c7cebc93c15c74c382408e4871f4501 + glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2 + RCT-Folly: 7169b2b1c44399c76a47b5deaaba715eeeb476c0 + RCTRequired: ca1d7414aba0b27efcfa2ccd37637edb1ab77d96 + RCTTypeSafety: 678e344fb976ff98343ca61dc62e151f3a042292 + React: e296bcebb489deaad87326067204eb74145934ab + React-callinvoker: d0b7015973fa6ccb592bb0363f6bc2164238ab8c + React-Codegen: 26596f3dc3269bed13220f0609f778fcc93b50dd + React-Core: 1d1f8ef65353751bf57d5c6f01a2bf3fbe644df8 + React-CoreModules: 558228e12cddb9ca00ff7937894cc5104a21be6b + React-cxxreact: 92db3068083c5790656277d5f1ef56c615cd1177 + React-debug: d444db402065cca460d9c5b072caab802a04f729 + React-Fabric: 433731b157b8f63aa0cac89327ece388ca1748a0 + React-FabricImage: 01a6990e58926aebbd13ea075cb6e9b70b022840 + React-graphics: 5500206f7c9a481456365403c9fcf1638de108b7 + React-ImageManager: df193215ff3cf1a8dad297e554c89c632e42436c + React-jsc: 423fa1db16947e4dffb83c72f6fe4248913b0e00 + React-jserrorhandler: a4d0f541c5852cf031db2f82f51de90be55b1334 + React-jsi: 730ad8dffa69e4196361e10cddc89fd8a9d32202 + React-jsiexecutor: e9d8ef2051048ae7d32c7da38c2c0c22cfa3d7f3 + React-jsinspector: 85583ef014ce53d731a98c66a0e24496f7a83066 + React-logger: 3eb80a977f0d9669468ef641a5e1fabbc50a09ec + React-Mapbuffer: 84ea43c6c6232049135b1550b8c60b2faac19fab + react-native-segmented-control: 712749e75728a736a2b8a7d7dbc8c2a3344b73e8 + React-nativeconfig: b4d4e9901d4cabb57be63053fd2aa6086eb3c85f + React-NativeModulesApple: ae99dc0e80c9027f54572c45635449fbdc36e4f1 + React-perflogger: 5f49905de275bac07ac7ea7f575a70611fa988f2 + React-RCTActionSheet: 37edf35aeb8e4f30e76c82aab61f12d1b75c04ec + React-RCTAnimation: a69de7f3daa8462743094f4736c455e844ea63f7 + React-RCTAppDelegate: d25d143b0918fb0614201f2b5d56eca1679d8462 + React-RCTBlob: 4ae95e6ba3508771b8fa0fedb64df07aa561b548 + React-RCTFabric: d792d7bad2238d67a33dd7ee0f2e32de6eaf669f + React-RCTImage: a0bfe87b6908c7b76bd7d74520f40660bd0ad881 + React-RCTLinking: 5f10be1647952cceddfa1970fdb374087582fc34 + React-RCTNetwork: a0bc3dd45a2dc7c879c80cebb6f9707b2c8bbed6 + React-RCTSettings: 28c202b68afa59afb4067510f2c69c5a530fb9e3 + React-RCTText: 4119d9e53ca5db9502b916e1b146e99798986d21 + React-RCTVibration: 55bd7c48487eb9a2562f2bd3fdc833274f5b0636 + React-rendererdebug: 5fa97ba664806cee4700e95aec42dff1b6f8ea36 + React-rncore: e15b68c32138fded0519efc1b156f9716175954c + React-runtimeexecutor: bb328dbe2865f3a550df0240df8e2d8c3aaa4c57 + React-runtimescheduler: 9daefa990db62f8874bc9d6e7e504272c6b6c57f + React-utils: d16c1d2251c088ad817996621947d0ac8167b46c + ReactCommon: 447281ad2034ea3252bf81a60d1f77d5afb0b636 + ReactNativeHost: 339df34d3c2050f37e8909ade6693465e8a947f7 + ReactTestApp-DevSupport: 1fe22a4a29414ec3227d20b3eb96217ba1ff13d0 + ReactTestApp-Resources: 857244f3a23f2b3157b364fa06cf3e8866deff9c + RNDateTimePicker: 19a8199b22a98d9227834f438c21cbfbc5b7b191 + RNLocalize: e8694475db034bf601e17bd3dfa8986565e769eb SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 - Yoga: 4c3aa327e4a6a23eeacd71f61c81df1bcdf677d5 + Yoga: 805bf71192903b20fc14babe48080582fee65a80 -PODFILE CHECKSUM: 8d21f6b1c802d4b966f0ed4d84584d57bd07fc86 +PODFILE CHECKSUM: b6bcdb6d3d7758fa98df2fdfba027188ac6288d6 -COCOAPODS: 1.12.1 +COCOAPODS: 1.14.3 diff --git a/example/macos/Podfile b/example/macos/Podfile new file mode 100644 index 00000000..fb4d2074 --- /dev/null +++ b/example/macos/Podfile @@ -0,0 +1,9 @@ +ws_dir = Pathname.new(__dir__) +ws_dir = ws_dir.parent until + File.exist?("#{ws_dir}/node_modules/react-native-test-app/macos/test_app.rb") || + ws_dir.expand_path.to_s == '/' +require "#{ws_dir}/node_modules/react-native-test-app/macos/test_app.rb" + +workspace 'date-time-picker-example.xcworkspace' + +use_test_app! diff --git a/example/tsconfig.json b/example/tsconfig.json new file mode 100644 index 00000000..304ab4e2 --- /dev/null +++ b/example/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "@react-native/typescript-config/tsconfig.json" +} diff --git a/example/visionos/Podfile b/example/visionos/Podfile new file mode 100644 index 00000000..db343580 --- /dev/null +++ b/example/visionos/Podfile @@ -0,0 +1,13 @@ +ws_dir = Pathname.new(__dir__) +ws_dir = ws_dir.parent until + File.exist?("#{ws_dir}/node_modules/react-native-test-app/visionos/test_app.rb") || + ws_dir.expand_path.to_s == '/' +require "#{ws_dir}/node_modules/react-native-test-app/visionos/test_app.rb" + +workspace 'date-time-picker-example.xcworkspace' + +use_test_app! do |target| + target.app do + pod 'RNDateTimePicker', :path => '../../RNDateTimePicker.podspec' + end +end diff --git a/example/visionos/Podfile.lock b/example/visionos/Podfile.lock new file mode 100644 index 00000000..5386ef11 --- /dev/null +++ b/example/visionos/Podfile.lock @@ -0,0 +1,1321 @@ +PODS: + - boost (1.83.0) + - DoubleConversion (1.1.6) + - FBLazyVector (0.73.8) + - FBReactNativeSpec (0.73.8): + - RCT-Folly (= 2022.05.16.00) + - RCTRequired (= 0.73.8) + - RCTTypeSafety (= 0.73.8) + - React-Core (= 0.73.8) + - React-jsi (= 0.73.8) + - ReactCommon/turbomodule/core (= 0.73.8) + - fmt (9.1.0) + - glog (0.3.5) + - libevent (2.1.12.1) + - RCT-Folly (2022.05.16.00): + - boost + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Default (= 2022.05.16.00) + - RCT-Folly/Default (2022.05.16.00): + - boost + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (2022.05.16.00): + - boost + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCTRequired (0.73.8) + - RCTTypeSafety (0.73.8): + - FBLazyVector (= 0.73.8) + - RCTRequired (= 0.73.8) + - React-Core (= 0.73.8) + - React (0.73.8): + - React-Core (= 0.73.8) + - React-Core/DevSupport (= 0.73.8) + - React-Core/RCTWebSocket (= 0.73.8) + - React-RCTActionSheet (= 0.73.8) + - React-RCTAnimation (= 0.73.8) + - React-RCTBlob (= 0.73.8) + - React-RCTImage (= 0.73.8) + - React-RCTLinking (= 0.73.8) + - React-RCTNetwork (= 0.73.8) + - React-RCTSettings (= 0.73.8) + - React-RCTText (= 0.73.8) + - React-RCTVibration (= 0.73.8) + - React-RCTWindowManager (= 0.73.8) + - React-RCTXR (= 0.73.8) + - React-callinvoker (0.73.8) + - React-Codegen (0.73.8): + - DoubleConversion + - FBReactNativeSpec + - glog + - RCT-Folly + - RCTRequired + - RCTTypeSafety + - React-Core + - React-jsc + - React-jsi + - React-jsiexecutor + - React-NativeModulesApple + - React-rncore + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - React-Core (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default (= 0.73.8) + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/CoreModulesHeaders (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/Default (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/DevSupport (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default (= 0.73.8) + - React-Core/RCTWebSocket (= 0.73.8) + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-jsinspector (= 0.73.8) + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/RCTActionSheetHeaders (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/RCTAnimationHeaders (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/RCTBlobHeaders (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/RCTImageHeaders (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/RCTLinkingHeaders (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/RCTNetworkHeaders (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/RCTSettingsHeaders (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/RCTTextHeaders (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/RCTVibrationHeaders (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/RCTWebSocket (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default (= 0.73.8) + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/RCTWindowManagerHeaders (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-Core/RCTXRHeaders (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core/Default + - React-cxxreact + - React-jsc + - React-jsi + - React-jsiexecutor + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.0.1) + - Yoga + - React-CoreModules (0.73.8): + - RCT-Folly (= 2022.05.16.00) + - RCTTypeSafety (= 0.73.8) + - React-Codegen + - React-Core/CoreModulesHeaders (= 0.73.8) + - React-jsi (= 0.73.8) + - React-NativeModulesApple + - React-RCTBlob + - React-RCTImage (= 0.73.8) + - ReactCommon + - SocketRocket (= 0.7.0.1) + - React-cxxreact (0.73.8): + - boost (= 1.83.0) + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly (= 2022.05.16.00) + - React-callinvoker (= 0.73.8) + - React-debug (= 0.73.8) + - React-jsi (= 0.73.8) + - React-jsinspector (= 0.73.8) + - React-logger (= 0.73.8) + - React-perflogger (= 0.73.8) + - React-runtimeexecutor (= 0.73.8) + - React-debug (0.73.8) + - React-Fabric (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/animations (= 0.73.8) + - React-Fabric/attributedstring (= 0.73.8) + - React-Fabric/componentregistry (= 0.73.8) + - React-Fabric/componentregistrynative (= 0.73.8) + - React-Fabric/components (= 0.73.8) + - React-Fabric/core (= 0.73.8) + - React-Fabric/imagemanager (= 0.73.8) + - React-Fabric/leakchecker (= 0.73.8) + - React-Fabric/mounting (= 0.73.8) + - React-Fabric/scheduler (= 0.73.8) + - React-Fabric/telemetry (= 0.73.8) + - React-Fabric/templateprocessor (= 0.73.8) + - React-Fabric/textlayoutmanager (= 0.73.8) + - React-Fabric/uimanager (= 0.73.8) + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/animations (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/attributedstring (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/componentregistry (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/componentregistrynative (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/components/inputaccessory (= 0.73.8) + - React-Fabric/components/legacyviewmanagerinterop (= 0.73.8) + - React-Fabric/components/modal (= 0.73.8) + - React-Fabric/components/rncore (= 0.73.8) + - React-Fabric/components/root (= 0.73.8) + - React-Fabric/components/safeareaview (= 0.73.8) + - React-Fabric/components/scrollview (= 0.73.8) + - React-Fabric/components/text (= 0.73.8) + - React-Fabric/components/textinput (= 0.73.8) + - React-Fabric/components/unimplementedview (= 0.73.8) + - React-Fabric/components/view (= 0.73.8) + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/inputaccessory (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/legacyviewmanagerinterop (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/modal (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/rncore (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/root (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/safeareaview (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/scrollview (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/text (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/textinput (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/unimplementedview (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/view (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-Fabric/core (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/imagemanager (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/leakchecker (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/mounting (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/scheduler (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/telemetry (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/templateprocessor (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/textlayoutmanager (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/uimanager + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/uimanager (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-graphics + - React-jsc + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-FabricImage (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - RCTRequired (= 0.73.8) + - RCTTypeSafety (= 0.73.8) + - React-Fabric + - React-graphics + - React-ImageManager + - React-jsc + - React-jsi + - React-jsiexecutor (= 0.73.8) + - React-logger + - React-rendererdebug + - React-utils + - ReactCommon + - Yoga + - React-graphics (0.73.8): + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - React-Core/Default (= 0.73.8) + - React-utils + - React-ImageManager (0.73.8): + - glog + - RCT-Folly/Fabric + - React-Core/Default + - React-debug + - React-Fabric + - React-graphics + - React-rendererdebug + - React-utils + - React-jsc (0.73.8): + - React-jsc/Fabric (= 0.73.8) + - React-jsi (= 0.73.8) + - React-jsc/Fabric (0.73.8): + - React-jsi (= 0.73.8) + - React-jserrorhandler (0.73.8): + - RCT-Folly/Fabric (= 2022.05.16.00) + - React-debug + - React-jsi + - React-Mapbuffer + - React-jsi (0.73.8): + - boost (= 1.83.0) + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly (= 2022.05.16.00) + - React-jsiexecutor (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly (= 2022.05.16.00) + - React-cxxreact (= 0.73.8) + - React-jsi (= 0.73.8) + - React-perflogger (= 0.73.8) + - React-jsinspector (0.73.8) + - React-logger (0.73.8): + - glog + - React-Mapbuffer (0.73.8): + - glog + - React-debug + - React-nativeconfig (0.73.8) + - React-NativeModulesApple (0.73.8): + - glog + - React-callinvoker + - React-Core + - React-cxxreact + - React-jsc + - React-jsi + - React-runtimeexecutor + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - React-perflogger (0.73.8) + - React-RCTActionSheet (0.73.8): + - React-Core/RCTActionSheetHeaders (= 0.73.8) + - React-RCTAnimation (0.73.8): + - RCT-Folly (= 2022.05.16.00) + - RCTTypeSafety + - React-Codegen + - React-Core/RCTAnimationHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-RCTAppDelegate (0.73.8): + - RCT-Folly + - RCTRequired + - RCTTypeSafety + - React-Core + - React-CoreModules + - React-jsc + - React-nativeconfig + - React-NativeModulesApple + - React-RCTFabric + - React-RCTImage + - React-RCTNetwork + - React-runtimescheduler + - ReactCommon + - React-RCTBlob (0.73.8): + - RCT-Folly (= 2022.05.16.00) + - React-Codegen + - React-Core/RCTBlobHeaders + - React-Core/RCTWebSocket + - React-jsi + - React-NativeModulesApple + - React-RCTNetwork + - ReactCommon + - React-RCTFabric (0.73.8): + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - React-Core + - React-debug + - React-Fabric + - React-FabricImage + - React-graphics + - React-ImageManager + - React-jsc + - React-jsi + - React-nativeconfig + - React-RCTImage + - React-RCTText + - React-rendererdebug + - React-runtimescheduler + - React-utils + - Yoga + - React-RCTImage (0.73.8): + - RCT-Folly (= 2022.05.16.00) + - RCTTypeSafety + - React-Codegen + - React-Core/RCTImageHeaders + - React-jsi + - React-NativeModulesApple + - React-RCTNetwork + - ReactCommon + - React-RCTLinking (0.73.8): + - React-Codegen + - React-Core/RCTLinkingHeaders (= 0.73.8) + - React-jsi (= 0.73.8) + - React-NativeModulesApple + - ReactCommon + - ReactCommon/turbomodule/core (= 0.73.8) + - React-RCTNetwork (0.73.8): + - RCT-Folly (= 2022.05.16.00) + - RCTTypeSafety + - React-Codegen + - React-Core/RCTNetworkHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-RCTSettings (0.73.8): + - RCT-Folly (= 2022.05.16.00) + - RCTTypeSafety + - React-Codegen + - React-Core/RCTSettingsHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-RCTSwiftExtensions (0.73.8): + - React-Core + - React-RCTWindowManager + - React-RCTXR + - React-RCTText (0.73.8): + - React-Core/RCTTextHeaders (= 0.73.8) + - Yoga + - React-RCTVibration (0.73.8): + - RCT-Folly (= 2022.05.16.00) + - React-Codegen + - React-Core/RCTVibrationHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-RCTWindowManager (0.73.8): + - RCT-Folly (= 2022.05.16.00) + - RCTTypeSafety + - React-Codegen + - React-Core/RCTWindowManagerHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-RCTXR (0.73.8): + - RCT-Folly (= 2022.05.16.00) + - RCTTypeSafety + - React-Codegen + - React-Core/RCTXRHeaders + - React-jsi + - React-NativeModulesApple + - ReactCommon + - React-rendererdebug (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - RCT-Folly (= 2022.05.16.00) + - React-debug + - React-rncore (0.73.8) + - React-runtimeexecutor (0.73.8): + - React-jsi (= 0.73.8) + - React-runtimescheduler (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-callinvoker + - React-cxxreact + - React-debug + - React-jsc + - React-jsi + - React-rendererdebug + - React-runtimeexecutor + - React-utils + - React-utils (0.73.8): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-debug + - ReactCommon (0.73.8): + - React-logger (= 0.73.8) + - ReactCommon/turbomodule (= 0.73.8) + - ReactCommon/turbomodule (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly (= 2022.05.16.00) + - React-callinvoker (= 0.73.8) + - React-cxxreact (= 0.73.8) + - React-jsi (= 0.73.8) + - React-logger (= 0.73.8) + - React-perflogger (= 0.73.8) + - ReactCommon/turbomodule/bridging (= 0.73.8) + - ReactCommon/turbomodule/core (= 0.73.8) + - ReactCommon/turbomodule/bridging (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly (= 2022.05.16.00) + - React-callinvoker (= 0.73.8) + - React-cxxreact (= 0.73.8) + - React-jsi (= 0.73.8) + - React-logger (= 0.73.8) + - React-perflogger (= 0.73.8) + - ReactCommon/turbomodule/core (0.73.8): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - RCT-Folly (= 2022.05.16.00) + - React-callinvoker (= 0.73.8) + - React-cxxreact (= 0.73.8) + - React-jsi (= 0.73.8) + - React-logger (= 0.73.8) + - React-perflogger (= 0.73.8) + - ReactNativeHost (0.4.6): + - glog + - RCT-Folly (= 2022.05.16.00) + - React-Core + - React-cxxreact + - ReactCommon/turbomodule/core + - ReactTestApp-DevSupport (3.5.3): + - React-Core + - React-jsi + - RNDateTimePicker (7.6.3): + - React-Core + - RNLocalize (3.1.0): + - React-Core + - SocketRocket (0.7.0.1) + - Yoga (1.14.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`)" + - "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`)" + - "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`)" + - React-Codegen (from `build/generated/ios`) + - "React-Core (from `../../node_modules/@callstack/react-native-visionos/`)" + - "React-Core/RCTWebSocket (from `../../node_modules/@callstack/react-native-visionos/`)" + - "React-CoreModules (from `../../node_modules/@callstack/react-native-visionos/React/CoreModules`)" + - "React-cxxreact (from `../../node_modules/@callstack/react-native-visionos/ReactCommon/cxxreact`)" + - "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-graphics (from `../../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/graphics`)" + - "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-logger (from `../../node_modules/@callstack/react-native-visionos/ReactCommon/logger`)" + - "React-Mapbuffer (from `../../node_modules/@callstack/react-native-visionos/ReactCommon`)" + - "React-nativeconfig (from `../../node_modules/@callstack/react-native-visionos/ReactCommon`)" + - "React-NativeModulesApple (from `../../node_modules/@callstack/react-native-visionos/ReactCommon/react/nativemodule/core/platform/ios`)" + - "React-perflogger (from `../../node_modules/@callstack/react-native-visionos/ReactCommon/reactperflogger`)" + - "React-RCTActionSheet (from `../../node_modules/@callstack/react-native-visionos/Libraries/ActionSheetIOS`)" + - "React-RCTAnimation (from `../../node_modules/@callstack/react-native-visionos/Libraries/NativeAnimation`)" + - "React-RCTAppDelegate (from `../../node_modules/@callstack/react-native-visionos/Libraries/AppDelegate`)" + - "React-RCTBlob (from `../../node_modules/@callstack/react-native-visionos/Libraries/Blob`)" + - "React-RCTFabric (from `../../node_modules/@callstack/react-native-visionos/React`)" + - "React-RCTImage (from `../../node_modules/@callstack/react-native-visionos/Libraries/Image`)" + - "React-RCTLinking (from `../../node_modules/@callstack/react-native-visionos/Libraries/LinkingIOS`)" + - "React-RCTNetwork (from `../../node_modules/@callstack/react-native-visionos/Libraries/Network`)" + - "React-RCTSettings (from `../../node_modules/@callstack/react-native-visionos/Libraries/Settings`)" + - "React-RCTSwiftExtensions (from `../../node_modules/@callstack/react-native-visionos/Libraries/SwiftExtensions`)" + - "React-RCTText (from `../../node_modules/@callstack/react-native-visionos/Libraries/Text`)" + - "React-RCTVibration (from `../../node_modules/@callstack/react-native-visionos/Libraries/Vibration`)" + - "React-RCTWindowManager (from `../../node_modules/@callstack/react-native-visionos/Libraries/WindowManager`)" + - "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-runtimeexecutor (from `../../node_modules/@callstack/react-native-visionos/ReactCommon/runtimeexecutor`)" + - "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`)" + - "ReactNativeHost (from `../../node_modules/@rnx-kit/react-native-host`)" + - ReactTestApp-DevSupport (from `../../node_modules/react-native-test-app`) + - RNDateTimePicker (from `../../RNDateTimePicker.podspec`) + - RNLocalize (from `../../node_modules/react-native-localize`) + - "SocketRocket (from `../../node_modules/@callstack/react-native-visionos/third-party-podspecs/SocketRocket.podspec`)" + - "Yoga (from `../../node_modules/@callstack/react-native-visionos/ReactCommon/yoga`)" + +EXTERNAL SOURCES: + boost: + :podspec: "../../node_modules/@callstack/react-native-visionos/third-party-podspecs/boost.podspec" + DoubleConversion: + :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" + RCT-Folly: + :podspec: "../../node_modules/@callstack/react-native-visionos/third-party-podspecs/RCT-Folly.podspec" + RCTRequired: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/RCTRequired" + RCTTypeSafety: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/TypeSafety" + React: + :path: "../../node_modules/@callstack/react-native-visionos/" + React-callinvoker: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/callinvoker" + React-Codegen: + :path: build/generated/ios + React-Core: + :path: "../../node_modules/@callstack/react-native-visionos/" + React-CoreModules: + :path: "../../node_modules/@callstack/react-native-visionos/React/CoreModules" + React-cxxreact: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/cxxreact" + React-debug: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/react/debug" + React-Fabric: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon" + React-FabricImage: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon" + React-graphics: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/graphics" + 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: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/jsi" + React-jsiexecutor: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/jsiexecutor" + React-jsinspector: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/jsinspector-modern" + React-logger: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/logger" + React-Mapbuffer: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon" + React-nativeconfig: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon" + React-NativeModulesApple: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/react/nativemodule/core/platform/ios" + React-perflogger: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/reactperflogger" + React-RCTActionSheet: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/ActionSheetIOS" + React-RCTAnimation: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/NativeAnimation" + React-RCTAppDelegate: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/AppDelegate" + React-RCTBlob: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/Blob" + React-RCTFabric: + :path: "../../node_modules/@callstack/react-native-visionos/React" + React-RCTImage: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/Image" + React-RCTLinking: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/LinkingIOS" + React-RCTNetwork: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/Network" + React-RCTSettings: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/Settings" + React-RCTSwiftExtensions: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/SwiftExtensions" + React-RCTText: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/Text" + React-RCTVibration: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/Vibration" + React-RCTWindowManager: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/WindowManager" + React-RCTXR: + :path: "../../node_modules/@callstack/react-native-visionos/Libraries/XR" + React-rendererdebug: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/debug" + React-rncore: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon" + React-runtimeexecutor: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/runtimeexecutor" + React-runtimescheduler: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/runtimescheduler" + React-utils: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/react/utils" + ReactCommon: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon" + ReactNativeHost: + :path: "../../node_modules/@rnx-kit/react-native-host" + ReactTestApp-DevSupport: + :path: "../../node_modules/react-native-test-app" + RNDateTimePicker: + :path: "../../RNDateTimePicker.podspec" + RNLocalize: + :path: "../../node_modules/react-native-localize" + SocketRocket: + :podspec: "../../node_modules/@callstack/react-native-visionos/third-party-podspecs/SocketRocket.podspec" + Yoga: + :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon/yoga" + +SPEC CHECKSUMS: + boost: 8f1e9b214fa11f71081fc8ecd5fad3daf221cf7f + DoubleConversion: 71bf0761505a44e4dfddc0aa04afa049fdfb63b5 + FBLazyVector: 3528954d497f5578142ba1bfe9af95b637fd361e + FBReactNativeSpec: dedbfe86301ae41070dd8102cd95d78781507d27 + fmt: 5d9ffa7ccba126c08b730252123601d514652320 + glog: 4f05d17aa39a829fee878689fc9a41af587fabba + libevent: a29e03f67aa3a1c501656baccbff6071a8b40a00 + RCT-Folly: 08b69b8ee3f4c5baf3a18a468b4d5a56276435fa + RCTRequired: e4250e83fd2ccab2ffeb29b484fc30f92a48a887 + RCTTypeSafety: ffda0c1faf5314c9b7e38b405d4a0ccc0fc303e9 + React: 84bf2f618aa90c48b2c46e9234bc549e16b2f8cb + React-callinvoker: bff9b37849f1832be39351cf4ca52344773351c8 + React-Codegen: b08ed86689858a14b0c4733c36524d33863decf0 + React-Core: 8af88dd46a222dca814d7ba956c64a9e61180cc3 + React-CoreModules: f2194c7f12ee7a721a70837a2af9ecdf27a46b32 + React-cxxreact: 9f18cadbe55db2fb18b87e6d88ba39d325accbac + React-debug: 0a49ff96439f0eb953664def6c97af17415e8163 + React-Fabric: 57d5c8fb09478da507e3de286d564095bb763403 + React-FabricImage: ccc1a9552a332f78d3523d02042d1859b80b555e + React-graphics: b5a4325458648598949ffe36754ded391aa39e0b + React-ImageManager: 4a54171dfccbe608705450b25accbd516bbc9f60 + React-jsc: 74e4cb7d3728b9862cbe7ada36dc65bdef41277f + React-jserrorhandler: adc47a4b2835024f1f16b7ba6b158d1989bb87d1 + React-jsi: 783251345a6ab6d1740c7d342499edd942f78092 + React-jsiexecutor: a76d89a04a3a9afd78726d07399af89537e870e2 + React-jsinspector: b9e3b72a79e0ac805605d3b05844bc7fca2481a7 + React-logger: b38a95eea49914f02cd8764d48b3def4469b9eae + React-Mapbuffer: 95f55d07bb729137f77065c06a331271234f1b55 + React-nativeconfig: efa01c928b57f2c7adb282ad49dbf35a85f39772 + React-NativeModulesApple: 5ffa203c4591bb74750a992d45a780a886f6377d + React-perflogger: 8cbba16952af4beffd0c45a9e3aca9079de5f53a + React-RCTActionSheet: 89b184b611cab9cb0abecc1bcac4ffb896ef55e3 + React-RCTAnimation: ba344275d1d57926931fe39e506f1de1bd649c23 + React-RCTAppDelegate: 2c7203f5d619cec31d5503ce32622b32daace636 + React-RCTBlob: fdd0bd0959184ea030c882909d3aafe33bd46b6d + React-RCTFabric: e57b0029e4d1abc8c7a29428c597c91c12f93a0d + React-RCTImage: acce25f5e92939874e6269a78592abcaae08e8cd + React-RCTLinking: 541904b4e2deafd483134dc9961c5d7e21488d34 + React-RCTNetwork: cfafe68a8b7936bef0cb0ed72834c09ac3734605 + React-RCTSettings: 4eac2611cf955c317d11ae62e2f5263f8cfc0788 + React-RCTSwiftExtensions: a72c9b16f74c5daeb46d2628ea9593d31afef6a3 + React-RCTText: be241222492c51fd3e1db827c7ed95347067a33e + React-RCTVibration: 7a4ef9f99ca0fcd2893af79e630747ca15475645 + React-RCTWindowManager: 39a943fa44289a5c7c8d71755c9456ffbaa2f37f + React-RCTXR: 0528475e88dc7bb12b0ba412d1e9cc5505a2575e + React-rendererdebug: 6b70a5235f8bd699e5620714da8a3738fa605c28 + React-rncore: 48be7b5f7b660bca1cdca1ca0211b0074db048f1 + React-runtimeexecutor: 9532f8857bad78b48f241b38d264ef6884857878 + React-runtimescheduler: 3e08056206bf8627ba2ce2d31d154cfebf773aa4 + React-utils: 98ae5ad20a6f002f275737d79af4a9ab637f5a1f + ReactCommon: efed44fdc02eddcef579b2de0c1e109604645210 + ReactNativeHost: 7d8d2bcfaa7c82797a4d652f8c591829728bfad1 + ReactTestApp-DevSupport: 1fe22a4a29414ec3227d20b3eb96217ba1ff13d0 + RNDateTimePicker: 19a8199b22a98d9227834f438c21cbfbc5b7b191 + RNLocalize: e8694475db034bf601e17bd3dfa8986565e769eb + SocketRocket: 0ba3e799f983d2dfa878777017659ef6c866e5c6 + Yoga: 500e2c9fc111319f47dcffec452de1218b968cb4 + +PODFILE CHECKSUM: a84bb4cd1576d3e49b324ea437d69920d6a4f837 + +COCOAPODS: 1.14.3 diff --git a/example/windows/.gitignore b/example/windows/.gitignore index 399de769..fb81ae23 100644 --- a/example/windows/.gitignore +++ b/example/windows/.gitignore @@ -6,7 +6,6 @@ *.sln.docstates # Build results -ARM/ ARM64/ AppPackages/ [Bb]in/ diff --git a/ios/fabric/cpp/react/renderer/components/RNDateTimePicker/ComponentDescriptors.h b/ios/fabric/cpp/react/renderer/components/RNDateTimePicker/ComponentDescriptors.h index 4a1a8e24..cfd07b47 100644 --- a/ios/fabric/cpp/react/renderer/components/RNDateTimePicker/ComponentDescriptors.h +++ b/ios/fabric/cpp/react/renderer/components/RNDateTimePicker/ComponentDescriptors.h @@ -18,20 +18,20 @@ class RNDateTimePickerComponentDescriptor final : public ConcreteComponentDescri public: using ConcreteComponentDescriptor::ConcreteComponentDescriptor; - void adopt(ShadowNode::Unshared const &shadowNode) const override { - react_native_assert(std::dynamic_pointer_cast(shadowNode)); - auto pickerShadowNode = std::static_pointer_cast(shadowNode); + void adopt(ShadowNode &shadowNode) const override { + react_native_assert(dynamic_cast(&shadowNode)); + auto &pickerShadowNode = static_cast(shadowNode); react_native_assert( - std::dynamic_pointer_cast(pickerShadowNode)); - auto layoutableShadowNode = - std::static_pointer_cast(pickerShadowNode); + dynamic_cast(&pickerShadowNode)); + auto &layoutableShadowNode = + static_cast(pickerShadowNode); - auto state = std::static_pointer_cast(shadowNode->getState()); + auto state = std::static_pointer_cast(shadowNode.getState()); auto stateData = state->getData(); if(stateData.frameSize.width != 0 && stateData.frameSize.height != 0) { - layoutableShadowNode->setSize(Size{stateData.frameSize.width, stateData.frameSize.height}); + layoutableShadowNode.setSize(Size{stateData.frameSize.width, stateData.frameSize.height}); } ConcreteComponentDescriptor::adopt(shadowNode); diff --git a/jest/index.js b/jest/index.js index 78e2821c..a3864d7c 100644 --- a/jest/index.js +++ b/jest/index.js @@ -8,6 +8,7 @@ import type {PresentPickerCallback} from '../src/androidUtils'; export const mockAndroidDialogDateChange = (datePickedByUser: Date) => { jest.spyOn(androidUtils, 'getOpenPicker').mockImplementation(() => { + // $FlowFixMe[missing-local-annot] async function fakeDateTimePickerAndroidOpener({ value: timestampFromPickerValueProp, }) { diff --git a/metro.config.js b/metro.config.js index de92761f..036a0539 100644 --- a/metro.config.js +++ b/metro.config.js @@ -1,44 +1,20 @@ -/** - * Metro configuration for React Native - * https://github.com/facebook/react-native - * - * @format - */ - const path = require('path'); -const exclusionList = require('metro-config/src/defaults/exclusionList'); - -const blockList = exclusionList([ - /node_modules\/.*\/node_modules\/react-native\/.*/, - - // This stops "react-native run-windows" from causing the metro server to - // crash if its already running - new RegExp(`${path.join(__dirname, 'windows').replace(/[/\\]+/g, '/')}.*`), - - // Workaround for `EPERM: operation not permitted, lstat '~\midl-MIDLRT-cl.read.1.tlog'` - /.*\.tlog/, - - // Prevent Metro from watching temporary files generated by Visual Studio - // otherwise it may crash when they are removed when closing a project. - /.*\/.vs\/.*/, - - // Workaround for `EBUSY: resource busy or locked, open '~\msbuild.ProjectImports.zip'` - /.*\.ProjectImports\.zip/, -]); - -module.exports = { +const { makeMetroConfig } = require('@rnx-kit/metro-config'); +module.exports = makeMetroConfig({ projectRoot: path.join(__dirname, 'example'), watchFolders: [__dirname], resolver: { - blockList, + extraNodeModules: { + '@react-native-community/datetimepicker': __dirname, + }, }, transformer: { getTransformOptions: async () => ({ transform: { experimentalImportSupport: false, - inlineRequires: true, + inlineRequires: false, }, }), }, -}; +}); diff --git a/package.json b/package.json index 1974bc65..b34fc6aa 100644 --- a/package.json +++ b/package.json @@ -67,9 +67,11 @@ }, "homepage": "https://github.com/react-native-community/datetimepicker#readme", "devDependencies": { + "@callstack/react-native-visionos": "^0.73.0", "@react-native-segmented-control/segmented-control": "^2.5.2", "@react-native/eslint-config": "^0.72.2", - "@react-native/metro-config": "^0.73.2", + "@react-native/metro-config": "^0.73.0", + "@rnx-kit/metro-config": "^1.3.15", "@semantic-release/git": "^10.0.1", "@testing-library/react-native": "9.1.0", "babel-jest": "^29.5.0", @@ -77,17 +79,17 @@ "eslint": "^8.42.0", "eslint-plugin-ft-flow": "^2.0.1", "eslint-plugin-prettier": "^4.2.1", - "flow-bin": "^0.182.0", - "flow-typed": "^3.8.0", + "flow-bin": "^0.217.0", + "flow-typed": "^3.9.0", "jest": "^29.5.0", "moment": "^2.24.0", "moment-timezone": "^0.5.41", "prettier": "^2.8.8", "react": "18.2.0", - "react-native": "^0.72.7", + "react-native": "^0.73.0", "react-native-localize": "^3.0.3", - "react-native-test-app": "^2.5.32", - "react-native-windows": "^0.71.3", + "react-native-test-app": "^3.5.3", + "react-native-windows": "^0.73.0", "react-test-renderer": "18.2.0", "semantic-release": "^19.0.3" }, @@ -102,5 +104,13 @@ "javaPackageName": "com.reactcommunity.rndatetimepicker" } }, - "packageManager": "yarn@4.1.1" + "peerDependencies": { + "react": "18.2.0", + "react-native": "^0.73.0", + "react-native-windows": "^0.73.0" + }, + "packageManager": "yarn@4.1.1", + "workspaces": [ + "example" + ] } diff --git a/react-native.config.js b/react-native.config.js index 34f1976a..c61fdf47 100644 --- a/react-native.config.js +++ b/react-native.config.js @@ -1,22 +1,30 @@ -const path = require('path'); -const {androidManifestPath} = require('react-native-test-app'); - const project = (() => { + const fs = require('fs'); + const path = require('path'); try { - return { + const {configureProjects} = require('react-native-test-app'); + + return configureProjects({ android: { sourceDir: path.join('example', 'android'), - manifestPath: androidManifestPath( - path.join(__dirname, 'example', 'android'), - ), + manifestPath: path.join(__dirname, 'example', 'android'), }, ios: { - sourceDir: path.join('example', 'ios'), + sourceDir: 'example/ios', + }, + windows: fs.existsSync( + 'example/windows/date-time-picker-example.sln', + ) && { + sourceDir: path.join('example', 'windows'), + solutionFile: path.join( + 'example', + 'windows', + 'date-time-picker-example.sln', + ), + project: path.join(__dirname, 'example', 'windows'), }, - }; + }); } catch (e) { - console.error('example config not found', e); - return undefined; } })(); @@ -26,10 +34,13 @@ module.exports = { // Help rn-cli find and autolink this library '@react-native-community/datetimepicker': { root: __dirname, - platforms: { - android: { - componentDescriptors: null, - }, + }, + }, + dependency: { + platforms: { + windows: { + sourceDir: 'windows', + solutionFile: 'DateTimePickerWindows.sln', }, }, }, diff --git a/src/datetimepicker.ios.js b/src/datetimepicker.ios.js index e040136b..f9644a18 100644 --- a/src/datetimepicker.ios.js +++ b/src/datetimepicker.ios.js @@ -57,6 +57,7 @@ export default function Picker({ onChange, mode = IOS_MODE.date, display: providedDisplay = IOS_DISPLAY.default, + // $FlowFixMe[incompatible-type] disabled = false, ...other }: IOSNativeProps): React.Node { diff --git a/src/datetimepicker.windows.js b/src/datetimepicker.windows.js index b008503d..0fb09e3e 100644 --- a/src/datetimepicker.windows.js +++ b/src/datetimepicker.windows.js @@ -31,6 +31,8 @@ const styles = StyleSheet.create({ export const RNDateTimePickerWindows = requireNativeComponent( 'RNDateTimePickerWindows', ); + +// $FlowFixMe[underconstrained-implicit-instantiation] const RNTimePickerWindows = requireNativeComponent('RNTimePickerWindows'); export default function RNDateTimePickerQWE( @@ -66,6 +68,7 @@ export default function RNDateTimePickerQWE( onChange && onChange(unifiedEvent, new Date(event.nativeEvent.newDate)); }; + // $FlowFixMe[recursive-definition] const timezoneOffsetInSeconds = (() => { // The Date object returns timezone in minutes. Convert that to seconds // and multiply by -1 so that the offset can be added to UTC+0 time to get diff --git a/src/utils.js b/src/utils.js index a4dee188..f096cc41 100644 --- a/src/utils.js +++ b/src/utils.js @@ -18,6 +18,7 @@ export function toMilliseconds( // Is it a valid Date object? // $FlowFixMe: Cannot get `Object.prototype.toString` because property `toString` [1] cannot be unbound from the context [2] where it was defined. if (Object.prototype.toString.call(value) === '[object Date]') { + // $FlowFixMe[prop-missing] options[key] = value.getTime(); } }); diff --git a/yarn.lock b/yarn.lock index a3570faa..5a5d24ee 100644 --- a/yarn.lock +++ b/yarn.lock @@ -201,21 +201,21 @@ __metadata: linkType: hard "@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.22.15": - version: 7.22.15 - resolution: "@babel/helper-create-class-features-plugin@npm:7.22.15" + version: 7.24.4 + resolution: "@babel/helper-create-class-features-plugin@npm:7.24.4" dependencies: "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-environment-visitor": "npm:^7.22.5" - "@babel/helper-function-name": "npm:^7.22.5" - "@babel/helper-member-expression-to-functions": "npm:^7.22.15" + "@babel/helper-environment-visitor": "npm:^7.22.20" + "@babel/helper-function-name": "npm:^7.23.0" + "@babel/helper-member-expression-to-functions": "npm:^7.23.0" "@babel/helper-optimise-call-expression": "npm:^7.22.5" - "@babel/helper-replace-supers": "npm:^7.22.9" + "@babel/helper-replace-supers": "npm:^7.24.1" "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" "@babel/helper-split-export-declaration": "npm:^7.22.6" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/2ae5759fe8845fda99b34f2ba6cd0794fc860213d14c93a87aa9180960252bce621157a79c373b7fbb423b25a55fb0e20eae0d5f8e4ad5ef22dc70e7c2af3805 + checksum: 10c0/6ebb38375dcd44c79f40008c2de4d023376cf436c135439f15c9c54603c2d6a8ada39b2e07be545da684d9e40b602a0cb0d1670f3877d056deb5f0d786c4bf86 languageName: node linkType: hard @@ -247,7 +247,7 @@ __metadata: languageName: node linkType: hard -"@babel/helper-environment-visitor@npm:^7.18.9, @babel/helper-environment-visitor@npm:^7.22.20, @babel/helper-environment-visitor@npm:^7.22.5": +"@babel/helper-environment-visitor@npm:^7.18.9, @babel/helper-environment-visitor@npm:^7.22.20": version: 7.22.20 resolution: "@babel/helper-environment-visitor@npm:7.22.20" checksum: 10c0/e762c2d8f5d423af89bd7ae9abe35bd4836d2eb401af868a63bbb63220c513c783e25ef001019418560b3fdc6d9a6fb67e6c0b650bcdeb3a2ac44b5c3d2bdd94 @@ -273,7 +273,7 @@ __metadata: languageName: node linkType: hard -"@babel/helper-member-expression-to-functions@npm:^7.22.15": +"@babel/helper-member-expression-to-functions@npm:^7.23.0": version: 7.23.0 resolution: "@babel/helper-member-expression-to-functions@npm:7.23.0" dependencies: @@ -335,16 +335,16 @@ __metadata: languageName: node linkType: hard -"@babel/helper-replace-supers@npm:^7.22.20, @babel/helper-replace-supers@npm:^7.22.9": - version: 7.22.20 - resolution: "@babel/helper-replace-supers@npm:7.22.20" +"@babel/helper-replace-supers@npm:^7.22.20, @babel/helper-replace-supers@npm:^7.24.1": + version: 7.24.1 + resolution: "@babel/helper-replace-supers@npm:7.24.1" dependencies: "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-member-expression-to-functions": "npm:^7.22.15" + "@babel/helper-member-expression-to-functions": "npm:^7.23.0" "@babel/helper-optimise-call-expression": "npm:^7.22.5" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/6b0858811ad46873817c90c805015d63300e003c5a85c147a17d9845fa2558a02047c3cc1f07767af59014b2dd0fa75b503e5bc36e917f360e9b67bb6f1e79f4 + checksum: 10c0/d39a3df7892b7c3c0e307fb229646168a9bd35e26a72080c2530729322600e8cff5f738f44a14860a2358faffa741b6a6a0d6749f113387b03ddbfa0ec10e1a0 languageName: node linkType: hard @@ -429,7 +429,7 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.3, @babel/parser@npm:^7.23.4": +"@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.22.15, @babel/parser@npm:^7.23.3, @babel/parser@npm:^7.23.4": version: 7.23.4 resolution: "@babel/parser@npm:7.23.4" bin: @@ -452,7 +452,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-proposal-class-properties@npm:^7.0.0, @babel/plugin-proposal-class-properties@npm:^7.13.0, @babel/plugin-proposal-class-properties@npm:^7.18.0": +"@babel/plugin-proposal-class-properties@npm:^7.13.0, @babel/plugin-proposal-class-properties@npm:^7.18.0": version: 7.18.6 resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6" dependencies: @@ -476,7 +476,19 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.0.0, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.13.8, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.18.0": +"@babel/plugin-proposal-logical-assignment-operators@npm:^7.18.0": + version: 7.20.7 + resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.20.7" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.20.2" + "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/436c1ee9f983813fc52788980a7231414351bd34d80b16b83bddb09115386292fe4912cc6d172304eabbaf0c4813625331b9b5bc798acb0e8925cf0d2b394d4d + languageName: node + linkType: hard + +"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.13.8, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.18.0": version: 7.18.6 resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.18.6" dependencies: @@ -500,7 +512,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-proposal-object-rest-spread@npm:^7.0.0, @babel/plugin-proposal-object-rest-spread@npm:^7.20.0": +"@babel/plugin-proposal-object-rest-spread@npm:^7.20.0": version: 7.20.7 resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.20.7" dependencies: @@ -527,7 +539,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-proposal-optional-chaining@npm:^7.0.0, @babel/plugin-proposal-optional-chaining@npm:^7.13.12, @babel/plugin-proposal-optional-chaining@npm:^7.20.0": +"@babel/plugin-proposal-optional-chaining@npm:^7.13.12, @babel/plugin-proposal-optional-chaining@npm:^7.20.0": version: 7.21.0 resolution: "@babel/plugin-proposal-optional-chaining@npm:7.21.0" dependencies: @@ -562,7 +574,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-class-properties@npm:^7.0.0, @babel/plugin-syntax-class-properties@npm:^7.8.3": +"@babel/plugin-syntax-class-properties@npm:^7.8.3": version: 7.12.13 resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" dependencies: @@ -573,7 +585,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-dynamic-import@npm:^7.0.0, @babel/plugin-syntax-dynamic-import@npm:^7.8.0": +"@babel/plugin-syntax-dynamic-import@npm:^7.8.0": version: 7.8.3 resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" dependencies: @@ -595,7 +607,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-flow@npm:^7.0.0, @babel/plugin-syntax-flow@npm:^7.12.1, @babel/plugin-syntax-flow@npm:^7.18.0, @babel/plugin-syntax-flow@npm:^7.23.3": +"@babel/plugin-syntax-flow@npm:^7.12.1, @babel/plugin-syntax-flow@npm:^7.18.0, @babel/plugin-syntax-flow@npm:^7.23.3": version: 7.23.3 resolution: "@babel/plugin-syntax-flow@npm:7.23.3" dependencies: @@ -628,7 +640,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.23.3, @babel/plugin-syntax-jsx@npm:^7.7.2": +"@babel/plugin-syntax-jsx@npm:^7.23.3, @babel/plugin-syntax-jsx@npm:^7.7.2": version: 7.23.3 resolution: "@babel/plugin-syntax-jsx@npm:7.23.3" dependencies: @@ -639,7 +651,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3": +"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3": version: 7.10.4 resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" dependencies: @@ -672,7 +684,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-object-rest-spread@npm:^7.0.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.3": +"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3": version: 7.8.3 resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" dependencies: @@ -749,7 +761,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-async-to-generator@npm:^7.0.0, @babel/plugin-transform-async-to-generator@npm:^7.20.0": +"@babel/plugin-transform-async-to-generator@npm:^7.20.0": version: 7.23.3 resolution: "@babel/plugin-transform-async-to-generator@npm:7.23.3" dependencies: @@ -762,17 +774,6 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-block-scoped-functions@npm:^7.0.0": - version: 7.23.3 - resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.23.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/82c12a11277528184a979163de7189ceb00129f60dd930b0d5313454310bf71205f302fb2bf0430247161c8a22aaa9fb9eec1459f9f7468206422c191978fd59 - languageName: node - linkType: hard - "@babel/plugin-transform-block-scoping@npm:^7.0.0": version: 7.23.4 resolution: "@babel/plugin-transform-block-scoping@npm:7.23.4" @@ -815,7 +816,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-destructuring@npm:^7.0.0, @babel/plugin-transform-destructuring@npm:^7.20.0": +"@babel/plugin-transform-destructuring@npm:^7.20.0": version: 7.23.3 resolution: "@babel/plugin-transform-destructuring@npm:7.23.3" dependencies: @@ -826,7 +827,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-flow-strip-types@npm:^7.0.0, @babel/plugin-transform-flow-strip-types@npm:^7.20.0, @babel/plugin-transform-flow-strip-types@npm:^7.23.3": +"@babel/plugin-transform-flow-strip-types@npm:^7.20.0, @babel/plugin-transform-flow-strip-types@npm:^7.23.3": version: 7.23.3 resolution: "@babel/plugin-transform-flow-strip-types@npm:7.23.3" dependencies: @@ -838,17 +839,6 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-for-of@npm:^7.0.0": - version: 7.23.3 - resolution: "@babel/plugin-transform-for-of@npm:7.23.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/8a36202cfee312ba80e509c7c2131e6773524e572b4dc64a8ee95bd912634fdeb5ea91c6c7747ee30e03562d0f0d333f88ed7dbb929b36b60b8d74189189e12f - languageName: node - linkType: hard - "@babel/plugin-transform-function-name@npm:^7.0.0": version: 7.23.3 resolution: "@babel/plugin-transform-function-name@npm:7.23.3" @@ -873,17 +863,6 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-member-expression-literals@npm:^7.0.0": - version: 7.23.3 - resolution: "@babel/plugin-transform-member-expression-literals@npm:7.23.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/687f24f3ec60b627fef6e87b9e2770df77f76727b9d5f54fa4c84a495bb24eb4a20f1a6240fa22d339d45aac5eaeb1b39882e941bfd00cf498f9c53478d1ec88 - 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": version: 7.23.3 resolution: "@babel/plugin-transform-modules-commonjs@npm:7.23.3" @@ -909,18 +888,6 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-object-super@npm:^7.0.0": - version: 7.23.3 - resolution: "@babel/plugin-transform-object-super@npm:7.23.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-replace-supers": "npm:^7.22.20" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/a6856fd8c0afbe5b3318c344d4d201d009f4051e2f6ff6237ff2660593e93c5997a58772b13d639077c3e29ced3440247b29c496cd77b13af1e7559a70009775 - languageName: node - linkType: hard - "@babel/plugin-transform-parameters@npm:^7.0.0, @babel/plugin-transform-parameters@npm:^7.20.7": version: 7.23.3 resolution: "@babel/plugin-transform-parameters@npm:7.23.3" @@ -958,17 +925,6 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-property-literals@npm:^7.0.0": - version: 7.23.3 - resolution: "@babel/plugin-transform-property-literals@npm:7.23.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/b2549f23f90cf276c2e3058c2225c3711c2ad1c417e336d3391199445a9776dd791b83be47b2b9a7ae374b40652d74b822387e31fa5267a37bf49c122e1a9747 - languageName: node - linkType: hard - "@babel/plugin-transform-react-display-name@npm:^7.0.0": version: 7.23.3 resolution: "@babel/plugin-transform-react-display-name@npm:7.23.3" @@ -1067,17 +1023,6 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-template-literals@npm:^7.0.0": - version: 7.23.3 - resolution: "@babel/plugin-transform-template-literals@npm:7.23.3" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/9b5f43788b9ffcb8f2b445a16b1aa40fcf23cb0446a4649445f098ec6b4cb751f243a535da623d59fefe48f4c40552f5621187a61811779076bab26863e3373d - languageName: node - linkType: hard - "@babel/plugin-transform-typescript@npm:^7.23.3, @babel/plugin-transform-typescript@npm:^7.5.0": version: 7.23.4 resolution: "@babel/plugin-transform-typescript@npm:7.23.4" @@ -1210,6 +1155,57 @@ __metadata: languageName: node linkType: hard +"@callstack/react-native-visionos@npm:^0.73.0": + version: 0.73.8 + resolution: "@callstack/react-native-visionos@npm:0.73.8" + dependencies: + "@jest/create-cache-key-function": "npm:^29.6.3" + "@react-native-community/cli": "npm:13.5.1" + "@react-native-community/cli-platform-android": "npm:13.5.1" + "@react-native-community/cli-platform-apple": "npm:13.5.1" + "@react-native-community/cli-platform-ios": "npm:13.5.1" + "@react-native/assets-registry": "npm:0.73.1" + "@react-native/codegen": "npm:0.73.3" + "@react-native/community-cli-plugin": "npm:0.74.0-nightly-20240131-82e9a5e4f" + "@react-native/gradle-plugin": "npm:0.73.4" + "@react-native/js-polyfills": "npm:0.73.1" + "@react-native/normalize-colors": "npm:0.73.2" + "@react-native/virtualized-lists": "npm:0.73.4" + abort-controller: "npm:^3.0.0" + anser: "npm:^1.4.9" + ansi-regex: "npm:^5.0.0" + base64-js: "npm:^1.5.1" + chalk: "npm:^4.0.0" + deprecated-react-native-prop-types: "npm:^5.0.0" + event-target-shim: "npm:^5.0.1" + flow-enums-runtime: "npm:^0.0.6" + invariant: "npm:^2.2.4" + jest-environment-node: "npm:^29.6.3" + jsc-android: "npm:^250231.0.0" + memoize-one: "npm:^5.0.0" + metro-runtime: "npm:^0.80.3" + metro-source-map: "npm:^0.80.3" + mkdirp: "npm:^0.5.1" + nullthrows: "npm:^1.1.1" + pretty-format: "npm:^26.5.2" + promise: "npm:^8.3.0" + react-devtools-core: "npm:^4.27.7" + react-refresh: "npm:^0.14.0" + react-shallow-renderer: "npm:^16.15.0" + regenerator-runtime: "npm:^0.13.2" + scheduler: "npm:0.24.0-canary-efb381bbf-20230505" + stacktrace-parser: "npm:^0.1.10" + whatwg-fetch: "npm:^3.0.0" + ws: "npm:^6.2.2" + yargs: "npm:^17.6.2" + peerDependencies: + react: 18.2.0 + bin: + react-native-visionos: cli.js + checksum: 10c0/28dfaa2c3648a9c182f10d4bc7ad7b9921a5d03a4aae6dac77341c2ebab57e9d77162d27a79c84ecc3be78cf5af6ff65266e77574d4a3d05d7c257e58ba4b5b2 + languageName: node + linkType: hard + "@colors/colors@npm:1.5.0": version: 1.5.0 resolution: "@colors/colors@npm:1.5.0" @@ -1335,6 +1331,13 @@ __metadata: languageName: node linkType: hard +"@isaacs/ttlcache@npm:^1.4.1": + version: 1.4.1 + resolution: "@isaacs/ttlcache@npm:1.4.1" + checksum: 10c0/6921de516917b02673a58e543c2b06fd04237cbf6d089ca22d6e98defa4b1e9a48258cb071d6b581284bb497bea687320788830541511297eecbe6e93a665bbf + languageName: node + linkType: hard + "@istanbuljs/load-nyc-config@npm:^1.0.0": version: 1.1.0 resolution: "@istanbuljs/load-nyc-config@npm:1.1.0" @@ -1410,7 +1413,7 @@ __metadata: languageName: node linkType: hard -"@jest/create-cache-key-function@npm:^29.2.1": +"@jest/create-cache-key-function@npm:^29.6.3": version: 29.7.0 resolution: "@jest/create-cache-key-function@npm:29.7.0" dependencies: @@ -1593,19 +1596,6 @@ __metadata: languageName: node linkType: hard -"@jest/types@npm:^27.5.1": - version: 27.5.1 - resolution: "@jest/types@npm:27.5.1" - dependencies: - "@types/istanbul-lib-coverage": "npm:^2.0.0" - "@types/istanbul-reports": "npm:^3.0.0" - "@types/node": "npm:*" - "@types/yargs": "npm:^16.0.0" - chalk: "npm:^4.0.0" - checksum: 10c0/4598b302398db0eb77168b75a6c58148ea02cc9b9f21c5d1bbe985c1c9257110a5653cf7b901c3cab87fba231e3fed83633687f1c0903b4bc6939ab2a8452504 - languageName: node - linkType: hard - "@jest/types@npm:^29.6.3": version: 29.6.3 resolution: "@jest/types@npm:29.6.3" @@ -2211,7 +2201,7 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/core@npm:1.18.1, @opentelemetry/core@npm:^1.15.2": +"@opentelemetry/core@npm:1.18.1": version: 1.18.1 resolution: "@opentelemetry/core@npm:1.18.1" dependencies: @@ -2222,6 +2212,17 @@ __metadata: languageName: node linkType: hard +"@opentelemetry/core@npm:^1.15.2": + version: 1.23.0 + resolution: "@opentelemetry/core@npm:1.23.0" + dependencies: + "@opentelemetry/semantic-conventions": "npm:1.23.0" + peerDependencies: + "@opentelemetry/api": ">=1.0.0 <1.9.0" + checksum: 10c0/b68442034315c182fd5e6c1bcca7b249a4995dc219c6935718fb143d24b13cee5e7884c6750b9f55ae8f4477b7edb9b3140c6663112485b49f2a9bc5a243f5f2 + languageName: node + linkType: hard + "@opentelemetry/instrumentation@npm:^0.41.2": version: 0.41.2 resolution: "@opentelemetry/instrumentation@npm:0.41.2" @@ -2262,13 +2263,20 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/semantic-conventions@npm:1.18.1, @opentelemetry/semantic-conventions@npm:^1.15.2": +"@opentelemetry/semantic-conventions@npm:1.18.1": version: 1.18.1 resolution: "@opentelemetry/semantic-conventions@npm:1.18.1" checksum: 10c0/6437c3758e732d643218e35c66fa931ddf65dde9a33c10af16b866135cbb5357fc3424316139c2ca1188cf0f5b23e844b6e6c9ab461637cb150a40219bee70e9 languageName: node linkType: hard +"@opentelemetry/semantic-conventions@npm:1.23.0, @opentelemetry/semantic-conventions@npm:^1.15.2": + version: 1.23.0 + resolution: "@opentelemetry/semantic-conventions@npm:1.23.0" + checksum: 10c0/2712f3874a45607bc7024e0d1a01c91a7e4671e7b925e2fcc79227f350c16c59a29ba36d8ab5f0842fe003ff464d24ab576033b35390316886bb120477f96ca6 + languageName: node + linkType: hard + "@pkgjs/parseargs@npm:^0.11.0": version: 0.11.0 resolution: "@pkgjs/parseargs@npm:0.11.0" @@ -2303,264 +2311,228 @@ __metadata: languageName: node linkType: hard -"@react-native-community/cli-clean@npm:11.3.10": - version: 11.3.10 - resolution: "@react-native-community/cli-clean@npm:11.3.10" +"@react-native-community/cli-clean@npm:12.3.6": + version: 12.3.6 + resolution: "@react-native-community/cli-clean@npm:12.3.6" dependencies: - "@react-native-community/cli-tools": "npm:11.3.10" + "@react-native-community/cli-tools": "npm:12.3.6" chalk: "npm:^4.1.2" execa: "npm:^5.0.0" - prompts: "npm:^2.4.0" - checksum: 10c0/28f4e4d788e3951df785e4ad64e9500ce1ffb6211febfe0ae1c368f5e499dea6e6d578243d014395c5d3f946663c3731bc4ef10864c686d606706befb58ea5ac + checksum: 10c0/d0845f022b97ade763c8ef360cf4b7f2c60cda3658bc706d1d6f55d6a07acf219ccd8c255deeec5d31a671f31721f432c25dcf771a6dbcc165945798821380f0 languageName: node linkType: hard -"@react-native-community/cli-clean@npm:^10.1.1": - version: 10.1.1 - resolution: "@react-native-community/cli-clean@npm:10.1.1" +"@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": "npm:^10.1.1" + "@react-native-community/cli-tools": "npm:13.5.1" chalk: "npm:^4.1.2" - execa: "npm:^1.0.0" - prompts: "npm:^2.4.0" - checksum: 10c0/f058ba84bb765f2f5d1d578f0a214a178840fdcdd8e511fe4c93cd7b9e4e4813e85d4efae97784e8094a66da748de2e34b50eedc9f38c30561e325b166e6ad29 + execa: "npm:^5.0.0" + glob: "npm:^7.1.3" + checksum: 10c0/309e3dea970ae7be90a6f6a776e501a42edd35418099ad1f276ba576117efb16795ef901e37031fee8c9d15c4f4e2553b2b998390cc248d5c94ec74123a2aea4 languageName: node linkType: hard -"@react-native-community/cli-config@npm:11.3.10": - version: 11.3.10 - resolution: "@react-native-community/cli-config@npm:11.3.10" +"@react-native-community/cli-config@npm:12.3.6": + version: 12.3.6 + resolution: "@react-native-community/cli-config@npm:12.3.6" dependencies: - "@react-native-community/cli-tools": "npm:11.3.10" + "@react-native-community/cli-tools": "npm:12.3.6" chalk: "npm:^4.1.2" cosmiconfig: "npm:^5.1.0" deepmerge: "npm:^4.3.0" glob: "npm:^7.1.3" joi: "npm:^17.2.1" - checksum: 10c0/f4150539d6ee6557d6aa7059bb5ce2fb632ebb8692c27834bd0e764c9fcb692b9db8d9160dcac7996df503f104e8905de4f64e8cae6454e085f213e8226d07d6 + checksum: 10c0/2b61730371fb0b01e8a76d1aac22e50ab834461f4c89448721e75c60a09ea30c39da17e6aa8ab9974ae512899ec686c3bcd9375c0d4df41074724eb6491009e8 languageName: node linkType: hard -"@react-native-community/cli-config@npm:^10.1.1": - version: 10.1.1 - resolution: "@react-native-community/cli-config@npm:10.1.1" +"@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": "npm:^10.1.1" + "@react-native-community/cli-tools": "npm:13.5.1" chalk: "npm:^4.1.2" cosmiconfig: "npm:^5.1.0" - deepmerge: "npm:^3.2.0" + deepmerge: "npm:^4.3.0" glob: "npm:^7.1.3" joi: "npm:^17.2.1" - checksum: 10c0/29afcb691904f09d51a76403d91050159a61015bac9985330e2a859d445943fac5ba2e1c9c9d161cbf9b21e1a939e9706f2a8cca8687ca94f5d567930633a23a + checksum: 10c0/9cd5f62c3e7be108e5f577ee6a81b1e0f1c009c8f41e2b7e50b646acc189ee53d8f34151f22a8378ebe544c1471184218f8c42c9c501392af50ea676a1b81f16 languageName: node linkType: hard -"@react-native-community/cli-debugger-ui@npm:11.3.10": - version: 11.3.10 - resolution: "@react-native-community/cli-debugger-ui@npm:11.3.10" +"@react-native-community/cli-debugger-ui@npm:12.3.6": + version: 12.3.6 + resolution: "@react-native-community/cli-debugger-ui@npm:12.3.6" dependencies: serve-static: "npm:^1.13.1" - checksum: 10c0/ef8cb18c25f7aaf513255a270bb30b93d3edf864990f0af0261df81081a604ec4fe2b819197ced6342a7650fdc2fd6140b16efe32650f78442a4a456743cf51a + checksum: 10c0/16830c26275c78512a8e9ebbf8e2135e6e5dd427fd3b7bc1642115a56d4395ac9216c0183f55f71e807d406f61cb6add1024837f7228bcfbc3efd4679ddc3fe9 languageName: node linkType: hard -"@react-native-community/cli-debugger-ui@npm:^10.0.0": - version: 10.0.0 - resolution: "@react-native-community/cli-debugger-ui@npm:10.0.0" +"@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: "npm:^1.13.1" - checksum: 10c0/8f04bbf735967faeb52a37489696dee154b2e171936d92fcb59d5e2c4ff126f1e9657bcc3384d87cc8151d89f643fe83f51dbbc6fd4421e5f538dec53c80c9fc + checksum: 10c0/dbcf5afdfaf8c12aa12afb5998d63beeb0f6a2fba77073b0abf2d9b3f0944ffa09e8ecb604a440fcda6cc80e4ae3ed779facab3e5854e52323d730cb1d9aeeed languageName: node linkType: hard -"@react-native-community/cli-doctor@npm:11.3.10": - version: 11.3.10 - resolution: "@react-native-community/cli-doctor@npm:11.3.10" +"@react-native-community/cli-doctor@npm:12.3.6": + version: 12.3.6 + resolution: "@react-native-community/cli-doctor@npm:12.3.6" dependencies: - "@react-native-community/cli-config": "npm:11.3.10" - "@react-native-community/cli-platform-android": "npm:11.3.10" - "@react-native-community/cli-platform-ios": "npm:11.3.10" - "@react-native-community/cli-tools": "npm:11.3.10" + "@react-native-community/cli-config": "npm:12.3.6" + "@react-native-community/cli-platform-android": "npm:12.3.6" + "@react-native-community/cli-platform-ios": "npm:12.3.6" + "@react-native-community/cli-tools": "npm:12.3.6" chalk: "npm:^4.1.2" command-exists: "npm:^1.2.8" - envinfo: "npm:^7.7.2" + deepmerge: "npm:^4.3.0" + envinfo: "npm:^7.10.0" execa: "npm:^5.0.0" hermes-profile-transformer: "npm:^0.0.6" - ip: "npm:^1.1.5" node-stream-zip: "npm:^1.9.1" ora: "npm:^5.4.1" - prompts: "npm:^2.4.0" semver: "npm:^7.5.2" strip-ansi: "npm:^5.2.0" - sudo-prompt: "npm:^9.0.0" wcwidth: "npm:^1.0.1" yaml: "npm:^2.2.1" - checksum: 10c0/c2769162cf677688b133d88748151af6f1f2ad5e52f9cfa56e4fd64ff6d7ae78348f1291927efeb94e62df77b0f4d41902dee53a9c6dbdd65dfee7f0315f672f + checksum: 10c0/034050c6670c01fe3384817e3f9a9772e6b22bb9ce6bc28fda4225a83ac9d46355fef89121637b3bef16430d72c9a539875cf5f1c88d8688a2c866cc7ecd14c2 languageName: node linkType: hard -"@react-native-community/cli-doctor@npm:^10.2.4": - version: 10.2.5 - resolution: "@react-native-community/cli-doctor@npm:10.2.5" +"@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": "npm:^10.1.1" - "@react-native-community/cli-platform-ios": "npm:^10.2.5" - "@react-native-community/cli-tools": "npm:^10.1.1" + "@react-native-community/cli-config": "npm:13.5.1" + "@react-native-community/cli-platform-android": "npm:13.5.1" + "@react-native-community/cli-platform-apple": "npm:13.5.1" + "@react-native-community/cli-platform-ios": "npm:13.5.1" + "@react-native-community/cli-tools": "npm:13.5.1" chalk: "npm:^4.1.2" command-exists: "npm:^1.2.8" - envinfo: "npm:^7.7.2" - execa: "npm:^1.0.0" + deepmerge: "npm:^4.3.0" + envinfo: "npm:^7.10.0" + execa: "npm:^5.0.0" hermes-profile-transformer: "npm:^0.0.6" ip: "npm:^1.1.5" node-stream-zip: "npm:^1.9.1" ora: "npm:^5.4.1" - prompts: "npm:^2.4.0" - semver: "npm:^6.3.0" + semver: "npm:^7.5.2" strip-ansi: "npm:^5.2.0" - sudo-prompt: "npm:^9.0.0" wcwidth: "npm:^1.0.1" - checksum: 10c0/2d9f2a6a655749862e435baab10cb636ef314386562c36c7ce670f9200572681c2794a074e2743d0c0b8a1c664e90a98251f8022942a4de64c2556b95aff1bfd + yaml: "npm:^2.2.1" + checksum: 10c0/4de2560a39229ec70b5909e6223159a48dc9a5cf9ab59154a91c2df35b3b21c49a271b91e29c68d4cd1ff3b678d629bc7d1ec6ded595d79033b2c35aedcf57eb languageName: node linkType: hard -"@react-native-community/cli-hermes@npm:11.3.10": - version: 11.3.10 - resolution: "@react-native-community/cli-hermes@npm:11.3.10" +"@react-native-community/cli-hermes@npm:12.3.6": + version: 12.3.6 + resolution: "@react-native-community/cli-hermes@npm:12.3.6" dependencies: - "@react-native-community/cli-platform-android": "npm:11.3.10" - "@react-native-community/cli-tools": "npm:11.3.10" + "@react-native-community/cli-platform-android": "npm:12.3.6" + "@react-native-community/cli-tools": "npm:12.3.6" chalk: "npm:^4.1.2" hermes-profile-transformer: "npm:^0.0.6" - ip: "npm:^1.1.5" - checksum: 10c0/5ea5e1727311e1b2db48b5c35406400d27fb1adc78a9cbb0ad7dbfbae29a1678630db806886d3bf7beb92651a4cff5fb2d2b2876ab8993f46bb686492357828d + checksum: 10c0/9bec0105e59840f7a2b04610be83e8efb60ddd9a42e8259da51295c750734a6c0d568b91a1885895da6589ad3badfe3ec6982362c128ac520c9d51e8e462ab0b languageName: node linkType: hard -"@react-native-community/cli-hermes@npm:^10.2.0": - version: 10.2.0 - resolution: "@react-native-community/cli-hermes@npm:10.2.0" +"@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": "npm:^10.2.0" - "@react-native-community/cli-tools": "npm:^10.1.1" + "@react-native-community/cli-platform-android": "npm:13.5.1" + "@react-native-community/cli-tools": "npm:13.5.1" chalk: "npm:^4.1.2" hermes-profile-transformer: "npm:^0.0.6" ip: "npm:^1.1.5" - checksum: 10c0/787f35f3d580273640fef46ed5d9bb43cb411453e127f437ce49b6e98f26582d904ef2a366e39de8f4a2c35c1c18b918f136d009813805295c32a299a110a1d9 + checksum: 10c0/d47cfcaad8c8a722cdb6653caf7ea9a65f5b6ab5d2470aaf85b07a53a4eb0d6e01a8bb3eab90b594942fd5a9ffe6e23d8df59868f79b5e21544e51cc65edcab1 languageName: node linkType: hard -"@react-native-community/cli-platform-android@npm:10.2.0, @react-native-community/cli-platform-android@npm:^10.2.0": - version: 10.2.0 - resolution: "@react-native-community/cli-platform-android@npm:10.2.0" +"@react-native-community/cli-platform-android@npm:12.3.6": + version: 12.3.6 + resolution: "@react-native-community/cli-platform-android@npm:12.3.6" dependencies: - "@react-native-community/cli-tools": "npm:^10.1.1" + "@react-native-community/cli-tools": "npm:12.3.6" chalk: "npm:^4.1.2" - execa: "npm:^1.0.0" + execa: "npm:^5.0.0" + fast-xml-parser: "npm:^4.2.4" glob: "npm:^7.1.3" logkitty: "npm:^0.7.1" - checksum: 10c0/dffdc7d7cf958906548ca25e15b157d5e258adfdaedc9b7b11e1bcad2869bfc06f93ca67326662f02b7391a69e6fce619edbe45295eaaff5316252ca483eed3b + checksum: 10c0/b74af820d87f7119d910a61b753e132278b5c33ee9caed3af69e260f685984d55b9c97bc0f8c8d05ca6965c505cce9dc91729baa0e0b897a5160d5ebdc7f967e languageName: node linkType: hard -"@react-native-community/cli-platform-android@npm:11.3.10": - version: 11.3.10 - resolution: "@react-native-community/cli-platform-android@npm:11.3.10" +"@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": "npm:11.3.10" + "@react-native-community/cli-tools": "npm:13.5.1" chalk: "npm:^4.1.2" execa: "npm:^5.0.0" + fast-xml-parser: "npm:^4.2.4" glob: "npm:^7.1.3" logkitty: "npm:^0.7.1" - checksum: 10c0/429a4257de4e088daeb7adaf6832bad88937357cea5247b3bdb50b6c896deb9876d6afb86b4790a12e54f14a79c8cc54be721f4a6c57c483e314df82d1a7ffe8 - languageName: node - linkType: hard - -"@react-native-community/cli-platform-ios@npm:10.2.4": - version: 10.2.4 - resolution: "@react-native-community/cli-platform-ios@npm:10.2.4" - dependencies: - "@react-native-community/cli-tools": "npm:^10.1.1" - chalk: "npm:^4.1.2" - execa: "npm:^1.0.0" - fast-xml-parser: "npm:^4.0.12" - glob: "npm:^7.1.3" - ora: "npm:^5.4.1" - checksum: 10c0/9a6194744719fd77a8e60a0e6d5b766550a62ce80b2c4359efa5d3f220f7d8cb390643d77a51417de5b609033d66fab7b64357d4acdc1c87f91ea7353f1b7da9 + checksum: 10c0/26b7d9bfb2c0e3124c0e1830f38737a752c9605edf0333de184b88409c6548e22282eb5cf667ece5ee37a18a1f031af1b4318cf9f4539f8cb162b78696997a99 languageName: node linkType: hard -"@react-native-community/cli-platform-ios@npm:11.3.10": - version: 11.3.10 - resolution: "@react-native-community/cli-platform-ios@npm:11.3.10" +"@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": "npm:11.3.10" + "@react-native-community/cli-tools": "npm:13.5.1" chalk: "npm:^4.1.2" execa: "npm:^5.0.0" fast-xml-parser: "npm:^4.0.12" glob: "npm:^7.1.3" ora: "npm:^5.4.1" - checksum: 10c0/4b3f1fa3d70d8b950e3e0a535342322ffa7b27db744ff7cdd59282e87c5d73fdc0af7895c600bb46a8474c5d7dc4c50b947788acf76e1cdab9da1e0d2479dbb7 + checksum: 10c0/0871c1a44cb2f7d53ee8f76a70d1211b65804826cb3d64d99a1f5771572370137a3f7ca8decda1e32f6c83df93333c654b2fbc90c3cf79f4fb25f1dab450447b languageName: node linkType: hard -"@react-native-community/cli-platform-ios@npm:^10.2.5": - version: 10.2.5 - resolution: "@react-native-community/cli-platform-ios@npm:10.2.5" +"@react-native-community/cli-platform-ios@npm:12.3.6": + version: 12.3.6 + resolution: "@react-native-community/cli-platform-ios@npm:12.3.6" dependencies: - "@react-native-community/cli-tools": "npm:^10.1.1" + "@react-native-community/cli-tools": "npm:12.3.6" chalk: "npm:^4.1.2" - execa: "npm:^1.0.0" + execa: "npm:^5.0.0" fast-xml-parser: "npm:^4.0.12" glob: "npm:^7.1.3" ora: "npm:^5.4.1" - checksum: 10c0/23862247e2ebc7efed722f29f800570796a2bb5cb9cea5e23a5839bc2ebe32e008b5633452d053dfd8d849a3e52fb8c9e18f1d39bf1e76d63e0e675cba437e37 + checksum: 10c0/83a2fb126eb6c78696790fd8f16bd38475512db0cbbc2223b441ef287ad4c70cd595e6f6bb258c527882bc70d546abf676984c7a1166d811d2e93476420592bb languageName: node linkType: hard -"@react-native-community/cli-plugin-metro@npm:11.3.10": - version: 11.3.10 - resolution: "@react-native-community/cli-plugin-metro@npm:11.3.10" +"@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-server-api": "npm:11.3.10" - "@react-native-community/cli-tools": "npm:11.3.10" - chalk: "npm:^4.1.2" - execa: "npm:^5.0.0" - metro: "npm:0.76.8" - metro-config: "npm:0.76.8" - metro-core: "npm:0.76.8" - metro-react-native-babel-transformer: "npm:0.76.8" - metro-resolver: "npm:0.76.8" - metro-runtime: "npm:0.76.8" - readline: "npm:^1.3.0" - checksum: 10c0/bb0c3e6f7612b10802dbd9386daedab0a3c8f3cbb3be17920b2d93ef2d3d1493c0591fdd2644bbc41624b633f4f54d9a1659041467acdcfd920453b27171a872 + "@react-native-community/cli-platform-apple": "npm:13.5.1" + checksum: 10c0/2760b9be72b6887fa3b689c089cb1e6cb1ae88112b5532c5e55b191e157e12b1bc8eb2b4527ccb3e63b2552aa591d74f32ef27c94b20197cdf2acec093a6eb92 languageName: node linkType: hard -"@react-native-community/cli-plugin-metro@npm:^10.2.3": - version: 10.2.3 - resolution: "@react-native-community/cli-plugin-metro@npm:10.2.3" - dependencies: - "@react-native-community/cli-server-api": "npm:^10.1.1" - "@react-native-community/cli-tools": "npm:^10.1.1" - chalk: "npm:^4.1.2" - execa: "npm:^1.0.0" - metro: "npm:0.73.10" - metro-config: "npm:0.73.10" - metro-core: "npm:0.73.10" - metro-react-native-babel-transformer: "npm:0.73.10" - metro-resolver: "npm:0.73.10" - metro-runtime: "npm:0.73.10" - readline: "npm:^1.3.0" - checksum: 10c0/17b8787607731026a1779492cff4483b83bb6debe3299bbc8a1653abe424663457bd16f9e314dd05ea98c324689afe62bcb2ff389ddde11df44ab54ef27bc675 +"@react-native-community/cli-plugin-metro@npm:12.3.6": + version: 12.3.6 + resolution: "@react-native-community/cli-plugin-metro@npm:12.3.6" + checksum: 10c0/44135c6f830169577b8c55eb66b9554c3a3bae8f0673c2b103cf65088783019bb8618ebfdca02247621efb62d853814cfe115deb47657e2426a5d96f8f65d759 languageName: node linkType: hard -"@react-native-community/cli-server-api@npm:11.3.10": - version: 11.3.10 - resolution: "@react-native-community/cli-server-api@npm:11.3.10" +"@react-native-community/cli-server-api@npm:12.3.6": + version: 12.3.6 + resolution: "@react-native-community/cli-server-api@npm:12.3.6" dependencies: - "@react-native-community/cli-debugger-ui": "npm:11.3.10" - "@react-native-community/cli-tools": "npm:11.3.10" + "@react-native-community/cli-debugger-ui": "npm:12.3.6" + "@react-native-community/cli-tools": "npm:12.3.6" compression: "npm:^1.7.1" connect: "npm:^3.6.5" errorhandler: "npm:^1.5.1" @@ -2568,30 +2540,30 @@ __metadata: pretty-format: "npm:^26.6.2" serve-static: "npm:^1.13.1" ws: "npm:^7.5.1" - checksum: 10c0/a0928f82e1b6d5a690bf2a95c5dbc136cf13eaccea207062f50ecaf8d1b47929f17ea1519550b864612521cc6722d6a8b3209208c1897f0b1a8c95f31a843578 + checksum: 10c0/f944962cba06160b1abaf2c67ed43133c3ecb1aba34247f7b73946065537bf1463083be99683b3a5769e42d1c935db364f6634d94282c2fcbfb6d0e4b6419270 languageName: node linkType: hard -"@react-native-community/cli-server-api@npm:^10.1.1": - version: 10.1.1 - resolution: "@react-native-community/cli-server-api@npm:10.1.1" +"@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": "npm:^10.0.0" - "@react-native-community/cli-tools": "npm:^10.1.1" + "@react-native-community/cli-debugger-ui": "npm:13.5.1" + "@react-native-community/cli-tools": "npm:13.5.1" compression: "npm:^1.7.1" connect: "npm:^3.6.5" - errorhandler: "npm:^1.5.0" + errorhandler: "npm:^1.5.1" nocache: "npm:^3.0.1" pretty-format: "npm:^26.6.2" serve-static: "npm:^1.13.1" ws: "npm:^7.5.1" - checksum: 10c0/182a241febbd82ea6369bd9541ab5d0c59e551008856fbaf832003fad73392596f759e50d3dcfb55966dd06ad1132eb60464423814f00c3051d9907cf3a91f07 + checksum: 10c0/35534823a47a9875ca5b26bd811c5cbcb069448997a2669e1c673e4e943128604c2934ffe053e3ffda09ecd0608a95205e5568a5ac9c330c85715e10bfdfa8bc languageName: node linkType: hard -"@react-native-community/cli-tools@npm:11.3.10": - version: 11.3.10 - resolution: "@react-native-community/cli-tools@npm:11.3.10" +"@react-native-community/cli-tools@npm:12.3.6": + version: 12.3.6 + resolution: "@react-native-community/cli-tools@npm:12.3.6" dependencies: appdirsjs: "npm:^1.2.4" chalk: "npm:^4.1.2" @@ -2602,13 +2574,14 @@ __metadata: ora: "npm:^5.4.1" semver: "npm:^7.5.2" shell-quote: "npm:^1.7.3" - checksum: 10c0/c864b33c90abed2f23185bdf7226ae8d701f0f0a76d197851d50887d72041fcc7a11436c7be6e7be27e35d6568cda36f313df67e85baadea499d0f5d7f0a5771 + sudo-prompt: "npm:^9.0.0" + checksum: 10c0/303a6946ba2c864e387f37762790b994b1283bc8607691af6a01840462f696b282343d4626883a9ca3b7b263ddbe285ebf8399dcbad0141848cdbf547e804076 languageName: node linkType: hard -"@react-native-community/cli-tools@npm:^10.1.1": - version: 10.1.1 - resolution: "@react-native-community/cli-tools@npm:10.1.1" +"@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: "npm:^1.2.4" chalk: "npm:^4.1.2" @@ -2617,81 +2590,83 @@ __metadata: node-fetch: "npm:^2.6.0" open: "npm:^6.2.0" ora: "npm:^5.4.1" - semver: "npm:^6.3.0" + semver: "npm:^7.5.2" shell-quote: "npm:^1.7.3" - checksum: 10c0/9d260809797c1e1e01dba8618154a0609053f90d19095b75278b7975e61a9279b3e08230bbb1766cf53f5ad3936ea5028a194a9eec4150483f2a188406da12e8 + sudo-prompt: "npm:^9.0.0" + checksum: 10c0/16677cd798bd17d7b51e0c02745eee3f6f9432576935caf2df2050c01769d5232ba0cc28b2ce88076abfc2b8ef382728c884bec0c76a5fec9478b24ea5a641cd languageName: node linkType: hard -"@react-native-community/cli-types@npm:11.3.10": - version: 11.3.10 - resolution: "@react-native-community/cli-types@npm:11.3.10" +"@react-native-community/cli-types@npm:12.3.6": + version: 12.3.6 + resolution: "@react-native-community/cli-types@npm:12.3.6" dependencies: joi: "npm:^17.2.1" - checksum: 10c0/755a6926273303d09f8395f0ea3e317f93560e8f0f169def9eb5985a66172523ed5845aa13d2d23c2adeb9d51217dfd45f7018edc0af4dc2f5fc38f5a9cbfc13 + checksum: 10c0/8fe77b579dc8c51d840d3f0e0a69e9a4cdddd8867cffc182017904f1a86288657c329c59ca325136101d307768a51d43e61f5dd62cd75eedad18550787ce3c0c languageName: node linkType: hard -"@react-native-community/cli-types@npm:^10.0.0": - version: 10.0.0 - resolution: "@react-native-community/cli-types@npm:10.0.0" +"@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: "npm:^17.2.1" - checksum: 10c0/177405e35b6f781a1682ea31612d2142ee157c7e84a320c6bb40811b8aba10d488f2546ac52599f893ec185fa12cba5acdab29b2272c1d20f7fa7f7bd6bd4da3 + checksum: 10c0/9cf8d5d07c5ec1303f23c1e6c7a2ad420e8f6713ec5e6ee3685f227fc3bfa7e73c37c7c7c374a1239cca77071e388e1ff5ccf4c164bfbebe21d5bac5a5e90788 languageName: node linkType: hard -"@react-native-community/cli@npm:10.2.4": - version: 10.2.4 - resolution: "@react-native-community/cli@npm:10.2.4" +"@react-native-community/cli@npm:12.3.6": + version: 12.3.6 + resolution: "@react-native-community/cli@npm:12.3.6" dependencies: - "@react-native-community/cli-clean": "npm:^10.1.1" - "@react-native-community/cli-config": "npm:^10.1.1" - "@react-native-community/cli-debugger-ui": "npm:^10.0.0" - "@react-native-community/cli-doctor": "npm:^10.2.4" - "@react-native-community/cli-hermes": "npm:^10.2.0" - "@react-native-community/cli-plugin-metro": "npm:^10.2.3" - "@react-native-community/cli-server-api": "npm:^10.1.1" - "@react-native-community/cli-tools": "npm:^10.1.1" - "@react-native-community/cli-types": "npm:^10.0.0" + "@react-native-community/cli-clean": "npm:12.3.6" + "@react-native-community/cli-config": "npm:12.3.6" + "@react-native-community/cli-debugger-ui": "npm:12.3.6" + "@react-native-community/cli-doctor": "npm:12.3.6" + "@react-native-community/cli-hermes": "npm:12.3.6" + "@react-native-community/cli-plugin-metro": "npm:12.3.6" + "@react-native-community/cli-server-api": "npm:12.3.6" + "@react-native-community/cli-tools": "npm:12.3.6" + "@react-native-community/cli-types": "npm:12.3.6" chalk: "npm:^4.1.2" commander: "npm:^9.4.1" - execa: "npm:^1.0.0" + deepmerge: "npm:^4.3.0" + execa: "npm:^5.0.0" find-up: "npm:^4.1.0" fs-extra: "npm:^8.1.0" graceful-fs: "npm:^4.1.3" - prompts: "npm:^2.4.0" - semver: "npm:^6.3.0" + prompts: "npm:^2.4.2" + semver: "npm:^7.5.2" bin: react-native: build/bin.js - checksum: 10c0/990ae375be267e64777be9116cf40cd5c0e273569456c015e34b7436a889b384502625d99d8c5d0c397b5b34594e35523f14d5dfed615948638b3d27b7805d62 + checksum: 10c0/0117a4f212fd0eccf6e03d524c08734c1b9b1796ccabf6aacaa2d4c37313e1bd9c7c0a2d30a65eb361ed47dff52d3c728d5dedee97c36af55c3e36c14a3f6174 languageName: node linkType: hard -"@react-native-community/cli@npm:11.3.10": - version: 11.3.10 - resolution: "@react-native-community/cli@npm:11.3.10" +"@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": "npm:11.3.10" - "@react-native-community/cli-config": "npm:11.3.10" - "@react-native-community/cli-debugger-ui": "npm:11.3.10" - "@react-native-community/cli-doctor": "npm:11.3.10" - "@react-native-community/cli-hermes": "npm:11.3.10" - "@react-native-community/cli-plugin-metro": "npm:11.3.10" - "@react-native-community/cli-server-api": "npm:11.3.10" - "@react-native-community/cli-tools": "npm:11.3.10" - "@react-native-community/cli-types": "npm:11.3.10" + "@react-native-community/cli-clean": "npm:13.5.1" + "@react-native-community/cli-config": "npm:13.5.1" + "@react-native-community/cli-debugger-ui": "npm:13.5.1" + "@react-native-community/cli-doctor": "npm:13.5.1" + "@react-native-community/cli-hermes": "npm:13.5.1" + "@react-native-community/cli-server-api": "npm:13.5.1" + "@react-native-community/cli-tools": "npm:13.5.1" + "@react-native-community/cli-types": "npm:13.5.1" chalk: "npm:^4.1.2" commander: "npm:^9.4.1" + deepmerge: "npm:^4.3.0" execa: "npm:^5.0.0" find-up: "npm:^4.1.0" fs-extra: "npm:^8.1.0" graceful-fs: "npm:^4.1.3" - prompts: "npm:^2.4.0" + prompts: "npm:^2.4.2" semver: "npm:^7.5.2" bin: react-native: build/bin.js - checksum: 10c0/897f7423378c5459c79494e2c430e506d6ded4fc203358e54afe051b37df90ff74752df1eb434f0d98e4da1c970b5b9639da492fad3e1675f2f68201848abae2 + checksum: 10c0/38745e833046b416c6fb2feb855c839af6883dd1c05dd2c13ae8b45658aee85f8ae1390a5ee3bb70f34eb81defee45ef93539cb064ff615db202eb0bf5652fb2 languageName: node linkType: hard @@ -2699,9 +2674,11 @@ __metadata: version: 0.0.0-use.local resolution: "@react-native-community/datetimepicker@workspace:." dependencies: + "@callstack/react-native-visionos": "npm:^0.73.0" "@react-native-segmented-control/segmented-control": "npm:^2.5.2" "@react-native/eslint-config": "npm:^0.72.2" - "@react-native/metro-config": "npm:^0.73.2" + "@react-native/metro-config": "npm:^0.73.0" + "@rnx-kit/metro-config": "npm:^1.3.15" "@semantic-release/git": "npm:^10.0.1" "@testing-library/react-native": "npm:9.1.0" babel-jest: "npm:^29.5.0" @@ -2709,20 +2686,24 @@ __metadata: eslint: "npm:^8.42.0" eslint-plugin-ft-flow: "npm:^2.0.1" eslint-plugin-prettier: "npm:^4.2.1" - flow-bin: "npm:^0.182.0" - flow-typed: "npm:^3.8.0" + flow-bin: "npm:^0.217.0" + flow-typed: "npm:^3.9.0" invariant: "npm:^2.2.4" jest: "npm:^29.5.0" moment: "npm:^2.24.0" moment-timezone: "npm:^0.5.41" prettier: "npm:^2.8.8" react: "npm:18.2.0" - react-native: "npm:^0.72.7" + react-native: "npm:^0.73.0" react-native-localize: "npm:^3.0.3" - react-native-test-app: "npm:^2.5.32" - react-native-windows: "npm:^0.71.3" + react-native-test-app: "npm:^3.5.3" + react-native-windows: "npm:^0.73.0" react-test-renderer: "npm:18.2.0" semantic-release: "npm:^19.0.3" + peerDependencies: + react: 18.2.0 + react-native: ^0.73.0 + react-native-windows: ^0.73.0 languageName: unknown linkType: soft @@ -2736,14 +2717,14 @@ __metadata: languageName: node linkType: hard -"@react-native-windows/cli@npm:0.71.19": - version: 0.71.19 - resolution: "@react-native-windows/cli@npm:0.71.19" +"@react-native-windows/cli@npm:0.73.2": + version: 0.73.2 + resolution: "@react-native-windows/cli@npm:0.73.2" dependencies: - "@react-native-windows/codegen": "npm:0.71.7" - "@react-native-windows/fs": "npm:0.71.3" - "@react-native-windows/package-utils": "npm:0.71.3" - "@react-native-windows/telemetry": "npm:0.71.10" + "@react-native-windows/codegen": "npm:0.73.0" + "@react-native-windows/fs": "npm:0.73.0" + "@react-native-windows/package-utils": "npm:0.73.0" + "@react-native-windows/telemetry": "npm:0.73.1" "@xmldom/xmldom": "npm:^0.7.7" chalk: "npm:^4.1.0" cli-spinners: "npm:^2.2.0" @@ -2763,15 +2744,15 @@ __metadata: xpath: "npm:^0.0.27" peerDependencies: react-native: "*" - checksum: 10c0/7cc95a9ab0b28a3972afeca95b0e476473e4c4f4abce3785af3a492e2a31776905298ab3ef367291ef838f8020f848f04e4ddaf147b0fb24a28985283e7d626f + checksum: 10c0/52d68ba8664ac5a39609c9c7a71d4d33204eb01dac8f910a1181ad9764389e06d61510958d39c633e6a57416e7aa74f2bf7a4295f35450b866fc9942acb5991a languageName: node linkType: hard -"@react-native-windows/codegen@npm:0.71.7": - version: 0.71.7 - resolution: "@react-native-windows/codegen@npm:0.71.7" +"@react-native-windows/codegen@npm:0.73.0": + version: 0.73.0 + resolution: "@react-native-windows/codegen@npm:0.73.0" dependencies: - "@react-native-windows/fs": "npm:0.71.3" + "@react-native-windows/fs": "npm:0.73.0" chalk: "npm:^4.1.0" globby: "npm:^11.0.4" mustache: "npm:^4.0.1" @@ -2781,88 +2762,143 @@ __metadata: react-native: "*" bin: react-native-windows-codegen: bin.js - checksum: 10c0/b5b5191eee7ab0705b5223298560a8df0fe859849f3e8f7c1023497eb98715012bdc6233e297e6a8923f3aaac00baf91ade8cc8ba5421edf049381591aeaace3 + checksum: 10c0/c51ebc43c932123a8680eda13dbacc2a4bc7832b50db38518256a614111abe33bd7e72905bf446a3d10b9db0588a19e69b656bd8b002f9f18f55e47408aa9693 languageName: node linkType: hard -"@react-native-windows/find-repo-root@npm:0.71.3": - version: 0.71.3 - resolution: "@react-native-windows/find-repo-root@npm:0.71.3" +"@react-native-windows/find-repo-root@npm:0.73.0": + version: 0.73.0 + resolution: "@react-native-windows/find-repo-root@npm:0.73.0" dependencies: - "@react-native-windows/fs": "npm:0.71.3" + "@react-native-windows/fs": "npm:0.73.0" find-up: "npm:^4.1.0" - checksum: 10c0/1e450ee895142c01cede6003bd6d3df049f8b633e0097780a390e0a45b1ddcc9e5068d55724c3dd56062f45c6c9065c5bf5b8ea650af12f8c5b6e3dd2e1c519f + checksum: 10c0/ab65f0e0b43404f6ad0fa8d7612568b9f35af3e25470293ce6e1fc1950c69980c491aafd1a7458afff81892d1c5b85f8c9bd82ec91d238f05c1d3fc028416260 languageName: node linkType: hard -"@react-native-windows/fs@npm:0.71.3": - version: 0.71.3 - resolution: "@react-native-windows/fs@npm:0.71.3" +"@react-native-windows/fs@npm:0.73.0": + version: 0.73.0 + resolution: "@react-native-windows/fs@npm:0.73.0" dependencies: graceful-fs: "npm:^4.2.8" - checksum: 10c0/430a1c9a58ca13d032ec13b7c5315a1ba25afb4030b59652f917472615d7eaf035badf6acf09d66c5c192e845516d6ea73369444386fde56e8a00a4ecc8a6c0e + checksum: 10c0/4dfc78db180ed9055f146e021e6645f1398ef5b50b34d040244abb8cf96aa1ff433d3ba704e80ab20852c6641dc3eec460b21b8be7751406c94aaf359989c157 languageName: node linkType: hard -"@react-native-windows/package-utils@npm:0.71.3": - version: 0.71.3 - resolution: "@react-native-windows/package-utils@npm:0.71.3" +"@react-native-windows/package-utils@npm:0.73.0": + version: 0.73.0 + resolution: "@react-native-windows/package-utils@npm:0.73.0" dependencies: - "@react-native-windows/find-repo-root": "npm:0.71.3" - "@react-native-windows/fs": "npm:0.71.3" + "@react-native-windows/find-repo-root": "npm:0.73.0" + "@react-native-windows/fs": "npm:0.73.0" get-monorepo-packages: "npm:^1.2.0" lodash: "npm:^4.17.15" - checksum: 10c0/b0f77e31d858d8e9119edfe1c618555d8d47e3b9140440f9a2bb5af67238d1de797679200edf32a9de7d64618f8d8ef29a733f4f29f9bc99e1e726dbffe64666 + checksum: 10c0/9137fbb08c4e786d74ec36e37f588d9c19d4598987cb953ade1bf4c52f56a509aec9e40f9975c1684787ef874acc085d313281454cd0dc7091570355ef49516d languageName: node linkType: hard -"@react-native-windows/telemetry@npm:0.71.10": - version: 0.71.10 - resolution: "@react-native-windows/telemetry@npm:0.71.10" +"@react-native-windows/telemetry@npm:0.73.1": + version: 0.73.1 + resolution: "@react-native-windows/telemetry@npm:0.73.1" dependencies: - "@react-native-windows/fs": "npm:0.71.3" + "@react-native-windows/fs": "npm:0.73.0" "@xmldom/xmldom": "npm:^0.7.7" - applicationinsights: "npm:^2.3.1" + applicationinsights: "npm:2.7.3" ci-info: "npm:^3.2.0" envinfo: "npm:^7.8.1" lodash: "npm:^4.17.21" os-locale: "npm:^5.0.0" xpath: "npm:^0.0.27" - checksum: 10c0/6f935b2f12007d1147dd55be49b02b3f3aae472a8ea14c87c536d8c12c6511ef68be2cb9ad13ae6e35cf15766a73e94852812e45be93f3e67542b6a8c95891ee + checksum: 10c0/626049f7aa834bad433b0579a9d5815c2242654062d380fdb7bc8009df21e2b4ee4634ca1a60b286ae740570542b52ced50eeb01e6e73691a2b1f176e8c92e08 languageName: node linkType: hard -"@react-native/assets-registry@npm:^0.72.0": - version: 0.72.0 - resolution: "@react-native/assets-registry@npm:0.72.0" - checksum: 10c0/54fa36c0679b4126ed436c28332720a4db6b81c9d5117093a5c7a589cdda34340022f683e74d91a8d389dc37c18ad80678ae38eb70d06767747d3b73fe4cd50e +"@react-native/assets-registry@npm:0.73.1": + version: 0.73.1 + resolution: "@react-native/assets-registry@npm:0.73.1" + checksum: 10c0/6e7de3c97da678c6a85e856ddb9ed96d87398a2fd7691d9c61962e482d554b2d7982705a1a4e0b6c8830eaae9001e3fbc5c349eecef6af018ffe24624022445b languageName: node linkType: hard -"@react-native/assets@npm:1.0.0": - version: 1.0.0 - resolution: "@react-native/assets@npm:1.0.0" - checksum: 10c0/5b0d96279ff65cd6c98a28a9fd368c9e15eae613c685d5a0ad07bc57bbc6f8e5c101ebea5f81df881e803b633b8bbf17b1ea4bba9ccc42958732a38abc6fdf0f +"@react-native/babel-plugin-codegen@npm:0.73.4": + version: 0.73.4 + resolution: "@react-native/babel-plugin-codegen@npm:0.73.4" + dependencies: + "@react-native/codegen": "npm:0.73.3" + checksum: 10c0/51f151c9e4d6e35cb9b2b601281418535143f9c7ffd9ad5e5b8281da3b6881630c8aaa98565e98b9d8b946b3451168fede228e6c545050ce2831d1ea57cd40c1 languageName: node linkType: hard -"@react-native/babel-plugin-codegen@npm:*": - version: 0.74.0 - resolution: "@react-native/babel-plugin-codegen@npm:0.74.0" +"@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": "npm:*" - checksum: 10c0/119855b9e9cc62f09474f82f4ea9fe481ab7637c863f6bf26ded4b24e4abebbcec8a00390fc672e11df7be1f207e6f669180f7a481b735459a0d7674492f1c10 + "@react-native/codegen": "npm:0.74.0-nightly-20240131-82e9a5e4f" + checksum: 10c0/c02ccc58b95c92ffb5be15d3be2e422af949e3b9dd5fa39ea6a140994e282c29935b3651c2b263591d5b6faab1203d385b7649e1d7d0462ba1d29ac3ce0efebe + languageName: node + linkType: hard + +"@react-native/babel-preset@npm:0.73.21": + version: 0.73.21 + resolution: "@react-native/babel-preset@npm:0.73.21" + dependencies: + "@babel/core": "npm:^7.20.0" + "@babel/plugin-proposal-async-generator-functions": "npm:^7.0.0" + "@babel/plugin-proposal-class-properties": "npm:^7.18.0" + "@babel/plugin-proposal-export-default-from": "npm:^7.0.0" + "@babel/plugin-proposal-nullish-coalescing-operator": "npm:^7.18.0" + "@babel/plugin-proposal-numeric-separator": "npm:^7.0.0" + "@babel/plugin-proposal-object-rest-spread": "npm:^7.20.0" + "@babel/plugin-proposal-optional-catch-binding": "npm:^7.0.0" + "@babel/plugin-proposal-optional-chaining": "npm:^7.20.0" + "@babel/plugin-syntax-dynamic-import": "npm:^7.8.0" + "@babel/plugin-syntax-export-default-from": "npm:^7.0.0" + "@babel/plugin-syntax-flow": "npm:^7.18.0" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.0.0" + "@babel/plugin-syntax-optional-chaining": "npm:^7.0.0" + "@babel/plugin-transform-arrow-functions": "npm:^7.0.0" + "@babel/plugin-transform-async-to-generator": "npm:^7.20.0" + "@babel/plugin-transform-block-scoping": "npm:^7.0.0" + "@babel/plugin-transform-classes": "npm:^7.0.0" + "@babel/plugin-transform-computed-properties": "npm:^7.0.0" + "@babel/plugin-transform-destructuring": "npm:^7.20.0" + "@babel/plugin-transform-flow-strip-types": "npm:^7.20.0" + "@babel/plugin-transform-function-name": "npm:^7.0.0" + "@babel/plugin-transform-literals": "npm:^7.0.0" + "@babel/plugin-transform-modules-commonjs": "npm:^7.0.0" + "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.0.0" + "@babel/plugin-transform-parameters": "npm:^7.0.0" + "@babel/plugin-transform-private-methods": "npm:^7.22.5" + "@babel/plugin-transform-private-property-in-object": "npm:^7.22.11" + "@babel/plugin-transform-react-display-name": "npm:^7.0.0" + "@babel/plugin-transform-react-jsx": "npm:^7.0.0" + "@babel/plugin-transform-react-jsx-self": "npm:^7.0.0" + "@babel/plugin-transform-react-jsx-source": "npm:^7.0.0" + "@babel/plugin-transform-runtime": "npm:^7.0.0" + "@babel/plugin-transform-shorthand-properties": "npm:^7.0.0" + "@babel/plugin-transform-spread": "npm:^7.0.0" + "@babel/plugin-transform-sticky-regex": "npm:^7.0.0" + "@babel/plugin-transform-typescript": "npm:^7.5.0" + "@babel/plugin-transform-unicode-regex": "npm:^7.0.0" + "@babel/template": "npm:^7.0.0" + "@react-native/babel-plugin-codegen": "npm:0.73.4" + babel-plugin-transform-flow-enums: "npm:^0.0.2" + react-refresh: "npm:^0.14.0" + peerDependencies: + "@babel/core": "*" + checksum: 10c0/889ec2e45086c5a6e9921f6e2088e0bd81616477c290c74f6a0cac7a4f845c77900526787912a87f6afc2b66ac7ebfcc7a4b3ad6d3059ea5e52041fd282c0078 languageName: node linkType: hard -"@react-native/babel-preset@npm:*": - version: 0.74.0 - resolution: "@react-native/babel-preset@npm:0.74.0" +"@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": "npm:^7.20.0" "@babel/plugin-proposal-async-generator-functions": "npm:^7.0.0" "@babel/plugin-proposal-class-properties": "npm:^7.18.0" "@babel/plugin-proposal-export-default-from": "npm:^7.0.0" + "@babel/plugin-proposal-logical-assignment-operators": "npm:^7.18.0" "@babel/plugin-proposal-nullish-coalescing-operator": "npm:^7.18.0" "@babel/plugin-proposal-numeric-separator": "npm:^7.0.0" "@babel/plugin-proposal-object-rest-spread": "npm:^7.20.0" @@ -2898,161 +2934,319 @@ __metadata: "@babel/plugin-transform-typescript": "npm:^7.5.0" "@babel/plugin-transform-unicode-regex": "npm:^7.0.0" "@babel/template": "npm:^7.0.0" - "@react-native/babel-plugin-codegen": "npm:*" + "@react-native/babel-plugin-codegen": "npm:0.74.0-nightly-20240131-82e9a5e4f" babel-plugin-transform-flow-enums: "npm:^0.0.2" react-refresh: "npm:^0.14.0" peerDependencies: "@babel/core": "*" - checksum: 10c0/60bbbc209ec853d4bd249829278ad169a74a7ae0a95a71a6ad8ec7e111aabd73285b96e501cb4342f2c2210cbf4160a07309f5a51046781e41367e4e2f7bc53d + checksum: 10c0/51a13a4fbed381b2b47e5bb83ff0d908232a28c196112e45403460614e1273e995a892d0b37ad053623a13f85f4410dd210d7db7e3a7dcb11393c83d138c0b68 languageName: node linkType: hard -"@react-native/codegen@npm:*": - version: 0.74.0 - resolution: "@react-native/codegen@npm:0.74.0" +"@react-native/codegen@npm:0.73.3": + version: 0.73.3 + resolution: "@react-native/codegen@npm:0.73.3" dependencies: "@babel/parser": "npm:^7.20.0" flow-parser: "npm:^0.206.0" + glob: "npm:^7.1.1" + invariant: "npm:^2.2.4" jscodeshift: "npm:^0.14.0" + mkdirp: "npm:^0.5.1" nullthrows: "npm:^1.1.1" peerDependencies: "@babel/preset-env": ^7.1.6 - checksum: 10c0/d4b662e068affef0eef96fcaf7097d419257b3e14202fc99c862fb617ca8664ba349c68b7fc053931018396a974e1c18002b1eaa5185f34774c7ec493d9d8130 + checksum: 10c0/fe57bb33201252b40fcfeb67f2119a1b71c2ec2dd198ac0fd5ac8321f2971b25f6497a6fea5ee36355074418ae162a9934befee802e9189714a8ab5edb0929f7 languageName: node linkType: hard -"@react-native/codegen@npm:^0.72.7": - version: 0.72.7 - resolution: "@react-native/codegen@npm:0.72.7" +"@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": "npm:^7.20.0" - flow-parser: "npm:^0.206.0" + glob: "npm:^7.1.1" + hermes-parser: "npm:0.18.2" + invariant: "npm:^2.2.4" jscodeshift: "npm:^0.14.0" + mkdirp: "npm:^0.5.1" nullthrows: "npm:^1.1.1" peerDependencies: "@babel/preset-env": ^7.1.6 - checksum: 10c0/0697b3d12476bb5e0cf9e56c38c19df2ead88ace83eac9e411f16a2c6f530c4b7a6d723c4c56b291fa447d46f5273de57895ab3e0445f840d3f685804554af79 + checksum: 10c0/370611806aafc067c322dfc3e89211832cc0c07b7244a934fedf75288f34b5ad524de44e134e281176c5ebff5f6922543fdffd77b2f28d517240188b0caf1586 languageName: node linkType: hard -"@react-native/eslint-config@npm:^0.72.2": - version: 0.72.2 - resolution: "@react-native/eslint-config@npm:0.72.2" +"@react-native/community-cli-plugin@npm:0.73.17": + version: 0.73.17 + resolution: "@react-native/community-cli-plugin@npm:0.73.17" dependencies: - "@babel/core": "npm:^7.20.0" - "@babel/eslint-parser": "npm:^7.20.0" - "@react-native/eslint-plugin": "npm:^0.72.0" - "@typescript-eslint/eslint-plugin": "npm:^5.30.5" - "@typescript-eslint/parser": "npm:^5.30.5" - eslint-config-prettier: "npm:^8.5.0" - eslint-plugin-eslint-comments: "npm:^3.2.0" - eslint-plugin-ft-flow: "npm:^2.0.1" - eslint-plugin-jest: "npm:^26.5.3" - eslint-plugin-prettier: "npm:^4.2.1" - eslint-plugin-react: "npm:^7.30.1" - eslint-plugin-react-hooks: "npm:^4.6.0" - eslint-plugin-react-native: "npm:^4.0.0" - peerDependencies: - eslint: ">=8" - prettier: ">=2" - checksum: 10c0/61908da2f2f4a5dc2705b1c91ab5e56306cfe59c879a1210ab526e354f0b6775403e404ead0e22fb719c4de2b72e4b32187af657b2bb137476429de190508c04 + "@react-native-community/cli-server-api": "npm:12.3.6" + "@react-native-community/cli-tools": "npm:12.3.6" + "@react-native/dev-middleware": "npm:0.73.8" + "@react-native/metro-babel-transformer": "npm:0.73.15" + chalk: "npm:^4.0.0" + execa: "npm:^5.1.1" + metro: "npm:^0.80.3" + metro-config: "npm:^0.80.3" + metro-core: "npm:^0.80.3" + node-fetch: "npm:^2.2.0" + readline: "npm:^1.3.0" + checksum: 10c0/ad73e8b82c9a8d4bcf1b522f856b60d161300e03a3c11dd571c9025b23177e2bcf1511e9816163a34d0962f28e70e3d72c03034a57f46e49c8b4fa66fc79913f languageName: node linkType: hard -"@react-native/eslint-plugin@npm:^0.72.0": - version: 0.72.0 - resolution: "@react-native/eslint-plugin@npm:0.72.0" - checksum: 10c0/a4f7aa396f7a579574ac70a0311fccd33a8651e703afc130513e34ea99f31960cd3c7227741298148c4f28ae47b9c7ebec593307d3d9ea001aea1223bb531ac3 +"@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": "npm:13.5.1" + "@react-native-community/cli-tools": "npm:13.5.1" + "@react-native/dev-middleware": "npm:0.74.0-nightly-20240131-82e9a5e4f" + "@react-native/metro-babel-transformer": "npm:0.74.0-nightly-20240131-82e9a5e4f" + chalk: "npm:^4.0.0" + execa: "npm:^5.1.1" + metro: "npm:^0.80.3" + metro-config: "npm:^0.80.3" + metro-core: "npm:^0.80.3" + node-fetch: "npm:^2.2.0" + querystring: "npm:^0.2.1" + readline: "npm:^1.3.0" + checksum: 10c0/a3f45d9e60026b4309c1910ac76063ddd540d6bf7d4e9fd277a950496990c4e2374a89fa0062cfdfdcccebdc63a5ef642a1e61783cfdabfc110f2f228db33135 + languageName: node + linkType: hard + +"@react-native/debugger-frontend@npm:0.73.3": + version: 0.73.3 + resolution: "@react-native/debugger-frontend@npm:0.73.3" + checksum: 10c0/fee2c6b64e72fdacf94774585503302461819cca8ca2771205015cc1e1c0c4f2eba4081d66daf1e0b5bfbdc2c0a90e95eb2ffcd0a121815682d6149561f51d08 + 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: 10c0/0159c9c3fe2106408ca4efe3c41b6cbb44ef6a51e3aab6f3b9b5b0f7fc637d5845035054d9305b36eda0b27ff2b7b469cb12dfc7dbd0c57c04e0424e2dffe3b3 + languageName: node + linkType: hard + +"@react-native/dev-middleware@npm:0.73.8": + version: 0.73.8 + resolution: "@react-native/dev-middleware@npm:0.73.8" + dependencies: + "@isaacs/ttlcache": "npm:^1.4.1" + "@react-native/debugger-frontend": "npm:0.73.3" + chrome-launcher: "npm:^0.15.2" + chromium-edge-launcher: "npm:^1.0.0" + connect: "npm:^3.6.5" + debug: "npm:^2.2.0" + node-fetch: "npm:^2.2.0" + open: "npm:^7.0.3" + serve-static: "npm:^1.13.1" + temp-dir: "npm:^2.0.0" + ws: "npm:^6.2.2" + checksum: 10c0/15408dc7f5391be978e637941d76a11adef335b471d3cc772c89bc93f087a60339414cb699cbca58ccb80248d83618bc691ffd9f99470a91c8ed4dfb0cc30460 + 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": "npm:^1.4.1" + "@react-native/debugger-frontend": "npm:0.74.0-nightly-20240131-82e9a5e4f" + "@rnx-kit/chromium-edge-launcher": "npm:^1.0.0" + chrome-launcher: "npm:^0.15.2" + connect: "npm:^3.6.5" + debug: "npm:^2.2.0" + node-fetch: "npm:^2.2.0" + nullthrows: "npm:^1.1.1" + open: "npm:^7.0.3" + selfsigned: "npm:^2.4.1" + serve-static: "npm:^1.13.1" + temp-dir: "npm:^2.0.0" + checksum: 10c0/06a7e66e723d4f5d464818647353385eea800120cce3474a2dddce58f7b7142f177bdb7291e017c115186b7d51514fb2d987e8fb463c58393572bb91ead62582 + languageName: node + linkType: hard + +"@react-native/eslint-config@npm:^0.72.2": + version: 0.72.2 + resolution: "@react-native/eslint-config@npm:0.72.2" + dependencies: + "@babel/core": "npm:^7.20.0" + "@babel/eslint-parser": "npm:^7.20.0" + "@react-native/eslint-plugin": "npm:^0.72.0" + "@typescript-eslint/eslint-plugin": "npm:^5.30.5" + "@typescript-eslint/parser": "npm:^5.30.5" + eslint-config-prettier: "npm:^8.5.0" + eslint-plugin-eslint-comments: "npm:^3.2.0" + eslint-plugin-ft-flow: "npm:^2.0.1" + eslint-plugin-jest: "npm:^26.5.3" + eslint-plugin-prettier: "npm:^4.2.1" + eslint-plugin-react: "npm:^7.30.1" + eslint-plugin-react-hooks: "npm:^4.6.0" + eslint-plugin-react-native: "npm:^4.0.0" + peerDependencies: + eslint: ">=8" + prettier: ">=2" + checksum: 10c0/61908da2f2f4a5dc2705b1c91ab5e56306cfe59c879a1210ab526e354f0b6775403e404ead0e22fb719c4de2b72e4b32187af657b2bb137476429de190508c04 languageName: node linkType: hard -"@react-native/gradle-plugin@npm:^0.72.11": - version: 0.72.11 - resolution: "@react-native/gradle-plugin@npm:0.72.11" - checksum: 10c0/18ce50162c6a02baedbe3b00b83f60999b09c29c22c9841147af3a885e4b59e5e3ca74aff83d7bd962d3f5683632eb02e63c9bd76267e1723fefbfc04b896118 +"@react-native/eslint-plugin@npm:^0.72.0": + version: 0.72.0 + resolution: "@react-native/eslint-plugin@npm:0.72.0" + checksum: 10c0/a4f7aa396f7a579574ac70a0311fccd33a8651e703afc130513e34ea99f31960cd3c7227741298148c4f28ae47b9c7ebec593307d3d9ea001aea1223bb531ac3 languageName: node linkType: hard -"@react-native/js-polyfills@npm:^0.72.1": - version: 0.72.1 - resolution: "@react-native/js-polyfills@npm:0.72.1" - checksum: 10c0/e4a77d6c8b35da0fede25fcdb97cbd6f332554d06542d48709dbbe9029fde43b3a3063f60da609b94640c19e85eddf1ef554f848eab72e64008a74c03a238279 +"@react-native/gradle-plugin@npm:0.73.4": + version: 0.73.4 + resolution: "@react-native/gradle-plugin@npm:0.73.4" + checksum: 10c0/2846ff600631322986abe49cf64f9c8fa91abac13f4c6e17099f47f46493ee5255f5d5d2f77f7c6b3d235056ef88cf56ce8de697b0f5269a4076606cc1320c84 languageName: node linkType: hard -"@react-native/js-polyfills@npm:^0.73.1": +"@react-native/js-polyfills@npm:0.73.1": version: 0.73.1 resolution: "@react-native/js-polyfills@npm:0.73.1" checksum: 10c0/dfa4eab609fcbd9ec74854b3f21da1c93550618210f6fd8a1f640b691ade16beab038bf5bbb8478ebdcc3f6851a2330a7ac6344ba6cad7def611fe0f41cfb976 languageName: node linkType: hard -"@react-native/metro-babel-transformer@npm:^0.73.12": - version: 0.73.12 - resolution: "@react-native/metro-babel-transformer@npm:0.73.12" +"@react-native/metro-babel-transformer@npm:0.73.15": + version: 0.73.15 + resolution: "@react-native/metro-babel-transformer@npm:0.73.15" dependencies: "@babel/core": "npm:^7.20.0" - "@react-native/babel-preset": "npm:*" - babel-preset-fbjs: "npm:^3.4.0" + "@react-native/babel-preset": "npm:0.73.21" hermes-parser: "npm:0.15.0" nullthrows: "npm:^1.1.1" peerDependencies: "@babel/core": "*" - checksum: 10c0/1f6d823d841889c8b37e8292d2c8658116822e5cce07926cd1b3982a44e9e0ccc88a9f2e758d5363be174d2c08019cee618b3e8af8a4aef59f1632f13c820426 + checksum: 10c0/0af1aa2659264778419fe616213b742420494503cba28081fb251bf2fe9cbf224bde2204881f243db9b306f71b3c93a93869d5f7ba5e66160c794d982a04d9d0 languageName: node linkType: hard -"@react-native/metro-config@npm:^0.73.2": - version: 0.73.2 - resolution: "@react-native/metro-config@npm:0.73.2" +"@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": "npm:^7.20.0" + "@react-native/babel-preset": "npm:0.74.0-nightly-20240131-82e9a5e4f" + hermes-parser: "npm:0.18.2" + nullthrows: "npm:^1.1.1" + peerDependencies: + "@babel/core": "*" + checksum: 10c0/c2f977e3ca69dc51e1b6ca662e605ef798b6bb4418f023aa8cd42d3abae64fddb209ea973f690d41d14d0f98a629eadfc9b57bafaf08f6eb9084ca5d17ecf638 + languageName: node + linkType: hard + +"@react-native/metro-config@npm:^0.73.0": + version: 0.73.5 + resolution: "@react-native/metro-config@npm:0.73.5" dependencies: - "@react-native/js-polyfills": "npm:^0.73.1" - "@react-native/metro-babel-transformer": "npm:^0.73.12" - metro-config: "npm:^0.80.0" - metro-runtime: "npm:^0.80.0" - checksum: 10c0/9903a7935df7ecc53b485159a7ae379bdba4d262054bf0ba6011141ebbe29a129efe9af7cd7e9613529440e0ac0a682a7de496279b9520dea63b665f638168c0 + "@react-native/js-polyfills": "npm:0.73.1" + "@react-native/metro-babel-transformer": "npm:0.73.15" + metro-config: "npm:^0.80.3" + metro-runtime: "npm:^0.80.3" + checksum: 10c0/5ccee5594430aee83b8d0089c46b885e19117ee0d164c65b0182b0a6d19e1f0cbf77c7b1452fd157b0885da338538e177d750fd95f74e78fa5591179be1bb190 languageName: node linkType: hard -"@react-native/normalize-color@npm:2.1.0, @react-native/normalize-color@npm:^2.1.0": - version: 2.1.0 - resolution: "@react-native/normalize-color@npm:2.1.0" - checksum: 10c0/95814a1e2aac9c00dfc2c65f9e2caec07f70d3dba903b5640f5cf24605bf39863e572f2a5138a85d1c514fb3c33f6931595e0a9f738a58b5c220ee74f2bec13b +"@react-native/normalize-colors@npm:0.73.2, @react-native/normalize-colors@npm:^0.73.0": + version: 0.73.2 + resolution: "@react-native/normalize-colors@npm:0.73.2" + checksum: 10c0/b24d5bc68a28ae8c9b221766dbfaecb0ca79b8baa28d298df23e0b1edfc88054ebe0258d62e04594a7a47399356a8962f54e3a97328562c6915997f69b7bb446 languageName: node linkType: hard -"@react-native/normalize-colors@npm:<0.73.0, @react-native/normalize-colors@npm:^0.72.0": - version: 0.72.0 - resolution: "@react-native/normalize-colors@npm:0.72.0" - checksum: 10c0/741615ff23bead068a8a74e7b24fb2bcf074c9c4522f7329e8372597552eb26c3cdb6c0984dd564da9e5c3d1b61ec07b2e29f12a14f326d6e589480317dd833f +"@react-native/virtualized-lists@npm:0.73.4": + version: 0.73.4 + resolution: "@react-native/virtualized-lists@npm:0.73.4" + dependencies: + invariant: "npm:^2.2.4" + nullthrows: "npm:^1.1.1" + peerDependencies: + react-native: "*" + checksum: 10c0/6b5b312b6a2bdd1adc99fa9bd2ee7809d37a523740bdb5500b73140fbcc3eea8c1f1348b7432da95ade9274d75082cb4d73590e200a0406c713417f9a07f9e18 languageName: node linkType: hard -"@react-native/polyfills@npm:2.0.0": - version: 2.0.0 - resolution: "@react-native/polyfills@npm:2.0.0" - checksum: 10c0/6202e584464a7584f178b424f524d37b9967002c75a435f6cc05dd3c6c2df62a0c880e87500331a1ea580f0d4b5dcdc6512463488abbc02fb9baf5e8745d7f97 +"@rnx-kit/chromium-edge-launcher@npm:^1.0.0": + version: 1.0.0 + resolution: "@rnx-kit/chromium-edge-launcher@npm:1.0.0" + dependencies: + "@types/node": "npm:^18.0.0" + escape-string-regexp: "npm:^4.0.0" + is-wsl: "npm:^2.2.0" + lighthouse-logger: "npm:^1.0.0" + mkdirp: "npm:^1.0.4" + rimraf: "npm:^3.0.2" + checksum: 10c0/21182379a914ad244b556e794eb6bc6dc63a099cbd2f3eb315a13bd431dc6f24ca096ffb465ad76465144d02969f538a93ef7ef1b2280135174fdae4db5206b3 + languageName: node + linkType: hard + +"@rnx-kit/console@npm:^1.0.0": + version: 1.1.0 + resolution: "@rnx-kit/console@npm:1.1.0" + checksum: 10c0/3f643feff5b02f7bf9b3068dba99f652eb58ac19e0fb4d0b03c60a7798e5af659cb2584c5c807670f00549550372c07a060d94cb2e9a751a32bea67bdee6d374 languageName: node linkType: hard -"@react-native/virtualized-lists@npm:^0.72.8": - version: 0.72.8 - resolution: "@react-native/virtualized-lists@npm:0.72.8" +"@rnx-kit/metro-config@npm:^1.3.15": + version: 1.3.15 + resolution: "@rnx-kit/metro-config@npm:1.3.15" dependencies: - invariant: "npm:^2.2.4" - nullthrows: "npm:^1.1.1" + "@rnx-kit/console": "npm:^1.0.0" + "@rnx-kit/tools-node": "npm:^2.0.0" + "@rnx-kit/tools-react-native": "npm:^1.3.4" + "@rnx-kit/tools-workspaces": "npm:^0.1.3" peerDependencies: + "@react-native/metro-config": "*" + react: "*" react-native: "*" - checksum: 10c0/1fe43afeacf5aacec270d7f64b9ce6c69afe1c65d1e487fff75e647d1f57114527f2223602d546b95fc982b348a6f1773db66184a2e90ba434f4f013f3991bac + peerDependenciesMeta: + "@react-native/metro-config": + optional: true + checksum: 10c0/484a3c5164e0a55eb9f21a2001dbc5eb8f277513e4d0af6bb492f32dd2eaf930105ab0eff4d90d087d2f84e0d01f67307d567f40732808879df3d32f23ae89ce languageName: node linkType: hard -"@rnx-kit/react-native-host@npm:^0.2.8": - version: 0.2.9 - resolution: "@rnx-kit/react-native-host@npm:0.2.9" +"@rnx-kit/react-native-host@npm:^0.4.6": + version: 0.4.6 + resolution: "@rnx-kit/react-native-host@npm:0.4.6" peerDependencies: - react-native: ">=0.64" - checksum: 10c0/5a0fdfc6550d329d6c6569b8fbcbde2a5e82bc5acb0ea47925a18055b5c27f50bc68d1c3112719679e50ada78f2a84acecbc9da88d3c0bf012f7e69a7686b802 + react-native: ">=0.66" + checksum: 10c0/0b69a4ae90df23ce5c39176a35c556c7595686df805c1cd93ef1aecacd47713a085d36c833f0f9856803ea56d6456bad97c9f36dbd0ef081826abf4abfcc657d + languageName: node + linkType: hard + +"@rnx-kit/tools-node@npm:^2.0.0, @rnx-kit/tools-node@npm:^2.0.1": + version: 2.1.1 + resolution: "@rnx-kit/tools-node@npm:2.1.1" + checksum: 10c0/bed72f061e8d7c4791134ed42708e4df7db93dee745c3bf956948d55b830146a704ebec373c39b25d60d6e2ac8b3e0d2e9082c174146b29577213371d08b6903 + languageName: node + linkType: hard + +"@rnx-kit/tools-react-native@npm:^1.3.4": + version: 1.3.5 + resolution: "@rnx-kit/tools-react-native@npm:1.3.5" + dependencies: + "@rnx-kit/tools-node": "npm:^2.0.1" + checksum: 10c0/c5a13c63ab507f63d60ac8d19d10a166db4e79b02a6e7a384f2b506725cc53c7c82a9172b0f1804b6ddb52392160ecba19df1f2dc4e88d9744ae45345377aaab + languageName: node + linkType: hard + +"@rnx-kit/tools-workspaces@npm:^0.1.3": + version: 0.1.6 + resolution: "@rnx-kit/tools-workspaces@npm:0.1.6" + dependencies: + fast-glob: "npm:^3.2.7" + find-up: "npm:^5.0.0" + read-yaml-file: "npm:^2.1.0" + strip-json-comments: "npm:^3.1.1" + checksum: 10c0/4e697da297d8af47684bc3b69972ff8b081b72810484c69a781b68c89d527e7dcfb442c01c260118f42f8d206b6a182c97ebb181bb1149efeebe965c29d18f39 languageName: node linkType: hard @@ -3369,6 +3563,15 @@ __metadata: languageName: node linkType: hard +"@types/node-forge@npm:^1.3.0": + version: 1.3.11 + resolution: "@types/node-forge@npm:1.3.11" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/3d7d23ca0ba38ac0cf74028393bd70f31169ab9aba43f21deb787840170d307d662644bac07287495effe2812ddd7ac8a14dbd43f16c2936bbb06312e96fc3b9 + languageName: node + linkType: hard + "@types/node@npm:*": version: 20.9.4 resolution: "@types/node@npm:20.9.4" @@ -3378,6 +3581,15 @@ __metadata: languageName: node linkType: hard +"@types/node@npm:^18.0.0": + version: 18.19.29 + resolution: "@types/node@npm:18.19.29" + dependencies: + undici-types: "npm:~5.26.4" + checksum: 10c0/71b6f7c728463310296a6f7b6959226c7dee2e3901060d18a9f8445bc4efbd6671d5c5d440031057bb2261b3ced44826ca38ed683adc3d7397a75a567dc65222 + languageName: node + linkType: hard + "@types/normalize-package-data@npm:^2.4.0": version: 2.4.4 resolution: "@types/normalize-package-data@npm:2.4.4" @@ -3438,15 +3650,6 @@ __metadata: languageName: node linkType: hard -"@types/yargs@npm:^16.0.0": - version: 16.0.9 - resolution: "@types/yargs@npm:16.0.9" - dependencies: - "@types/yargs-parser": "npm:*" - checksum: 10c0/be24bd9a56c97ddb2964c1c18f5b9fe8271a50e100dc6945989901aae58f7ce6fb8f3a591c749a518401b6301358dbd1997e83c36138a297094feae7f9ac8211 - languageName: node - linkType: hard - "@types/yargs@npm:^17.0.8": version: 17.0.32 resolution: "@types/yargs@npm:17.0.32" @@ -3626,13 +3829,6 @@ __metadata: languageName: node linkType: hard -"absolute-path@npm:^0.0.0": - version: 0.0.0 - resolution: "absolute-path@npm:0.0.0" - checksum: 10c0/5ef1a7ef4968c5f9c953c9b5f185154f6b968205e48b2e1b07633ef5c71ccafcb9f50c8ababd5b3ef2a16e006aab0282a45869f170723b594b3b2bf8b6a20660 - languageName: node - linkType: hard - "accepts@npm:^1.3.7, accepts@npm:~1.3.5, accepts@npm:~1.3.7": version: 1.3.8 resolution: "accepts@npm:1.3.8" @@ -3844,9 +4040,9 @@ __metadata: languageName: node linkType: hard -"applicationinsights@npm:^2.3.1": - version: 2.9.1 - resolution: "applicationinsights@npm:2.9.1" +"applicationinsights@npm:2.7.3": + version: 2.7.3 + resolution: "applicationinsights@npm:2.7.3" dependencies: "@azure/core-auth": "npm:^1.5.0" "@azure/core-rest-pipeline": "npm:1.10.1" @@ -3866,7 +4062,7 @@ __metadata: peerDependenciesMeta: applicationinsights-native-metrics: optional: true - checksum: 10c0/7549b6f22bb1641b05d4b4e9f83cc5b67e8fb44a828aef6fbf89bf297b22d1cc2b41ef4be8183ace109160b388ebd4e6a3c6180b29ee8b62e18fc031fa3d968d + checksum: 10c0/6d44e84aef13d39628d85b97cce0812991f1e942e40ad89e07d5af6c399143dfc8aa81b8727874d1c634884ea3bfb1b65b856e37a2ecb99de374ed308406ae0d languageName: node linkType: hard @@ -4085,13 +4281,6 @@ __metadata: languageName: node linkType: hard -"async@npm:^3.2.2": - version: 3.2.5 - resolution: "async@npm:3.2.5" - checksum: 10c0/1408287b26c6db67d45cb346e34892cee555b8b59e6c68e6f8c3e495cad5ca13b4f218180e871f3c2ca30df4ab52693b66f2f6ff43644760cab0b2198bda79c1 - languageName: node - linkType: hard - "asynciterator.prototype@npm:^1.0.0": version: 1.0.0 resolution: "asynciterator.prototype@npm:1.0.0" @@ -4202,13 +4391,6 @@ __metadata: languageName: node linkType: hard -"babel-plugin-syntax-trailing-function-commas@npm:^7.0.0-beta.0": - version: 7.0.0-beta.0 - resolution: "babel-plugin-syntax-trailing-function-commas@npm:7.0.0-beta.0" - checksum: 10c0/67e3d6a706637097526b2d3046d3124d3efd3aac28b47af940c2f8df01b8d7ffeb4cdf5648f3b5eac3f098f5b61c4845e306f34301c869e5e14db6ae8b77f699 - languageName: node - linkType: hard - "babel-plugin-transform-flow-enums@npm:^0.0.2": version: 0.0.2 resolution: "babel-plugin-transform-flow-enums@npm:0.0.2" @@ -4240,43 +4422,6 @@ __metadata: languageName: node linkType: hard -"babel-preset-fbjs@npm:^3.4.0": - version: 3.4.0 - resolution: "babel-preset-fbjs@npm:3.4.0" - dependencies: - "@babel/plugin-proposal-class-properties": "npm:^7.0.0" - "@babel/plugin-proposal-object-rest-spread": "npm:^7.0.0" - "@babel/plugin-syntax-class-properties": "npm:^7.0.0" - "@babel/plugin-syntax-flow": "npm:^7.0.0" - "@babel/plugin-syntax-jsx": "npm:^7.0.0" - "@babel/plugin-syntax-object-rest-spread": "npm:^7.0.0" - "@babel/plugin-transform-arrow-functions": "npm:^7.0.0" - "@babel/plugin-transform-block-scoped-functions": "npm:^7.0.0" - "@babel/plugin-transform-block-scoping": "npm:^7.0.0" - "@babel/plugin-transform-classes": "npm:^7.0.0" - "@babel/plugin-transform-computed-properties": "npm:^7.0.0" - "@babel/plugin-transform-destructuring": "npm:^7.0.0" - "@babel/plugin-transform-flow-strip-types": "npm:^7.0.0" - "@babel/plugin-transform-for-of": "npm:^7.0.0" - "@babel/plugin-transform-function-name": "npm:^7.0.0" - "@babel/plugin-transform-literals": "npm:^7.0.0" - "@babel/plugin-transform-member-expression-literals": "npm:^7.0.0" - "@babel/plugin-transform-modules-commonjs": "npm:^7.0.0" - "@babel/plugin-transform-object-super": "npm:^7.0.0" - "@babel/plugin-transform-parameters": "npm:^7.0.0" - "@babel/plugin-transform-property-literals": "npm:^7.0.0" - "@babel/plugin-transform-react-display-name": "npm:^7.0.0" - "@babel/plugin-transform-react-jsx": "npm:^7.0.0" - "@babel/plugin-transform-shorthand-properties": "npm:^7.0.0" - "@babel/plugin-transform-spread": "npm:^7.0.0" - "@babel/plugin-transform-template-literals": "npm:^7.0.0" - babel-plugin-syntax-trailing-function-commas: "npm:^7.0.0-beta.0" - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 10c0/2be440c0fd7d1df247417be35644cb89f40a300e7fcdc44878b737ec49b04380eff422e4ebdc7bb5efd5ecfef45b634fc5fe11c3a409a50c9084e81083037902 - languageName: node - linkType: hard - "babel-preset-jest@npm:^29.6.3": version: 29.6.3 resolution: "babel-preset-jest@npm:29.6.3" @@ -4296,7 +4441,7 @@ __metadata: languageName: node linkType: hard -"base64-js@npm:^1.1.2, base64-js@npm:^1.3.1": +"base64-js@npm:^1.3.1, base64-js@npm:^1.5.1": version: 1.5.1 resolution: "base64-js@npm:1.5.1" checksum: 10c0/f23823513b63173a001030fae4f2dabe283b99a9d324ade3ad3d148e218134676f1ee8568c877cd79ec1c53158dcf2d2ba527a97c606618928ba99dd930102bf @@ -4747,6 +4892,34 @@ __metadata: languageName: node linkType: hard +"chrome-launcher@npm:^0.15.2": + version: 0.15.2 + resolution: "chrome-launcher@npm:0.15.2" + dependencies: + "@types/node": "npm:*" + escape-string-regexp: "npm:^4.0.0" + is-wsl: "npm:^2.2.0" + lighthouse-logger: "npm:^1.0.0" + bin: + print-chrome-path: bin/print-chrome-path.js + checksum: 10c0/fc01abc19af753bb089744362c0de48707f32ea15779407b06fb569e029a6b1fbaa78107165539d768915cf54b5c38594e73d95563c34127873e3826fb43c636 + languageName: node + linkType: hard + +"chromium-edge-launcher@npm:^1.0.0": + version: 1.0.0 + resolution: "chromium-edge-launcher@npm:1.0.0" + dependencies: + "@types/node": "npm:*" + escape-string-regexp: "npm:^4.0.0" + is-wsl: "npm:^2.2.0" + lighthouse-logger: "npm:^1.0.0" + mkdirp: "npm:^1.0.4" + rimraf: "npm:^3.0.2" + checksum: 10c0/41821a01fe193438242a67eda7af09dbf3540d5befa1ce9439e6c289bf520a4437f6beb2017f1c1973ab86fc2b0899cbb57aea84481ec9ad7022e4a55ec2364a + languageName: node + linkType: hard + "ci-info@npm:^2.0.0": version: 2.0.0 resolution: "ci-info@npm:2.0.0" @@ -5028,13 +5201,6 @@ __metadata: languageName: node linkType: hard -"commander@npm:~2.13.0": - version: 2.13.0 - resolution: "commander@npm:2.13.0" - checksum: 10c0/e3441096034439e506493ca1e5e9d5d5723ee0eadc3b2b92b3dd332b1d8fcbe72b70a1127f6790e6b3bedde3054316e9fe2cb36cef6ac051000b01559a16ba58 - languageName: node - linkType: hard - "common-ancestor-path@npm:^1.0.1": version: 1.0.1 resolution: "common-ancestor-path@npm:1.0.1" @@ -5320,7 +5486,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:2.6.9, debug@npm:^2.2.0": +"debug@npm:2.6.9, debug@npm:^2.2.0, debug@npm:^2.6.9": version: 2.6.9 resolution: "debug@npm:2.6.9" dependencies: @@ -5407,13 +5573,6 @@ __metadata: languageName: node linkType: hard -"deepmerge@npm:^3.2.0": - version: 3.3.0 - resolution: "deepmerge@npm:3.3.0" - checksum: 10c0/143bc6b6cd8a1216565c61c0fe38bf43fe691fb6876fb3f5727c6e323defe4e947c68fbab9957e17e837c5594a56af885c5834d23dc6cf2c41bef97090005104 - languageName: node - linkType: hard - "deepmerge@npm:^4.2.2, deepmerge@npm:^4.3.0": version: 4.3.1 resolution: "deepmerge@npm:4.3.1" @@ -5503,25 +5662,14 @@ __metadata: languageName: node linkType: hard -"deprecated-react-native-prop-types@npm:^3.0.1": - version: 3.0.2 - resolution: "deprecated-react-native-prop-types@npm:3.0.2" - dependencies: - "@react-native/normalize-color": "npm:^2.1.0" - invariant: "npm:^2.2.4" - prop-types: "npm:^15.8.1" - checksum: 10c0/c94c8785ff16d143a14f6dfc24db6f4dc20ae6b7f6619c382d01e3e66e0bde92bb3f582a11f2d6f7b38fec63a544dbd5410647f63c31a1056f8a623ae2324911 - languageName: node - linkType: hard - -"deprecated-react-native-prop-types@npm:^4.2.3": - version: 4.2.3 - resolution: "deprecated-react-native-prop-types@npm:4.2.3" +"deprecated-react-native-prop-types@npm:^5.0.0": + version: 5.0.0 + resolution: "deprecated-react-native-prop-types@npm:5.0.0" dependencies: - "@react-native/normalize-colors": "npm:<0.73.0" + "@react-native/normalize-colors": "npm:^0.73.0" invariant: "npm:^2.2.4" prop-types: "npm:^15.8.1" - checksum: 10c0/04134ee58b7e1e46f055805ca390bd5ad88a8cf97cf44a120bf350ad02c3dbfab8539efa2e267740b3d72b1b5c623a55afa609ca417a69c91ad4626808294938 + checksum: 10c0/e39886447beefa64bdacfe3f60940fe0f01df07e90230246c52ca24952deb60e6c7e78767ccb30b2d8453dc0988bf8be2fab31a0230dbc4ae3e94f9fa96c3143 languageName: node linkType: hard @@ -5803,12 +5951,12 @@ __metadata: languageName: node linkType: hard -"envinfo@npm:^7.5.0, envinfo@npm:^7.7.2, envinfo@npm:^7.8.1": - version: 7.11.0 - resolution: "envinfo@npm:7.11.0" +"envinfo@npm:^7.10.0, envinfo@npm:^7.5.0, envinfo@npm:^7.8.1": + version: 7.11.1 + resolution: "envinfo@npm:7.11.1" bin: envinfo: dist/cli.js - checksum: 10c0/4415b9c1ca32cdf92ce126136b9965eeac2efd6ab7e5278c06e8f86d048edad87ef4084710313a6d938ef9bc084ab17e1caee16339d731d230f3e2650f3aaf4d + checksum: 10c0/4550cce03d4d8a7b137d548faaf9c920356474231636cb4a6e74ae75db3b9cb04aa0a052ee391e2363af5db697166c207ba76e106338d758c6126830b3e16d75 languageName: node linkType: hard @@ -5837,7 +5985,7 @@ __metadata: languageName: node linkType: hard -"errorhandler@npm:^1.5.0, errorhandler@npm:^1.5.1": +"errorhandler@npm:^1.5.1": version: 1.5.1 resolution: "errorhandler@npm:1.5.1" dependencies: @@ -6363,7 +6511,7 @@ __metadata: languageName: node linkType: hard -"fast-glob@npm:^3.2.9": +"fast-glob@npm:^3.2.7, fast-glob@npm:^3.2.9": version: 3.3.2 resolution: "fast-glob@npm:3.3.2" dependencies: @@ -6390,14 +6538,14 @@ __metadata: languageName: node linkType: hard -"fast-xml-parser@npm:^4.0.0, fast-xml-parser@npm:^4.0.12": - version: 4.3.2 - resolution: "fast-xml-parser@npm:4.3.2" +"fast-xml-parser@npm:^4.0.0, fast-xml-parser@npm:^4.0.12, fast-xml-parser@npm:^4.2.4": + version: 4.3.6 + resolution: "fast-xml-parser@npm:4.3.6" dependencies: strnum: "npm:^1.0.5" bin: fxparser: src/cli/cli.js - checksum: 10c0/7c1611349384656ec4faa9802fbc8cf8c01206a1b79193d5cd54586307801562509007f6cf16e5da7d43da4fa4639770f38959a285b9466aa98dab0a9b8ca171 + checksum: 10c0/9ebe2ac142c6978cae423c39c2a9b561edb76be584317d578768ed4a006a61fc0e83abf8c6fe31029139c4ad15ea1f2e7b6720ba9e6eda0e5266d7f2770fb079 languageName: node linkType: hard @@ -6562,19 +6710,19 @@ __metadata: languageName: node linkType: hard -"flow-bin@npm:^0.182.0": - version: 0.182.0 - resolution: "flow-bin@npm:0.182.0" +"flow-bin@npm:^0.217.0": + version: 0.217.2 + resolution: "flow-bin@npm:0.217.2" bin: flow: cli.js - checksum: 10c0/41551a556dff0793f49d35340960e7c6a02248f86fde59269f818f2b81e6d9e55a4f9e61488e9f8271b29259d07df607d70910ddba300ba4c37f2766ca89644f + checksum: 10c0/d9eb0ab7aca0fc0ec2f2cf53f334bd7654d1ac4120ad4636c6898d6be33d98692c87607d09e60e1c8ed472a03d033e062c1be59f182d0b5953c8ab98f7a94231 languageName: node linkType: hard -"flow-enums-runtime@npm:^0.0.5": - version: 0.0.5 - resolution: "flow-enums-runtime@npm:0.0.5" - checksum: 10c0/8e6c915e536612a918444721cd40afa1ea7ad4fd039ce5958b4f9b6f77f283b1ad50a5ae72fffc9a2bc120219dd6d3e595f110ec885fdebcad291223d8e05bac +"flow-enums-runtime@npm:^0.0.6": + version: 0.0.6 + resolution: "flow-enums-runtime@npm:0.0.6" + checksum: 10c0/f0b9ca52dbf9cf30264ebf1af034ac7b80fb5e5ef009efc789b89a90aa17349a3ff5672b3b27c6eb89d5e02808fc0dfb7effbfc5a793451694d6cce48774d51e languageName: node linkType: hard @@ -6585,13 +6733,6 @@ __metadata: languageName: node linkType: hard -"flow-parser@npm:^0.185.0": - version: 0.185.2 - resolution: "flow-parser@npm:0.185.2" - checksum: 10c0/0365b3cb26e812a411ae04fbd3dc8d5701d0c0b7621a4a3856724aca8cf9d29a8671c92a3ff0a05fb261a6a1824252e2245b1732548d244f1b3daff087c48209 - languageName: node - linkType: hard - "flow-parser@npm:^0.206.0": version: 0.206.0 resolution: "flow-parser@npm:0.206.0" @@ -6599,7 +6740,7 @@ __metadata: languageName: node linkType: hard -"flow-typed@npm:^3.8.0": +"flow-typed@npm:^3.9.0": version: 3.9.0 resolution: "flow-typed@npm:3.9.0" dependencies: @@ -7172,13 +7313,6 @@ __metadata: languageName: node linkType: hard -"hermes-estree@npm:0.12.0": - version: 0.12.0 - resolution: "hermes-estree@npm:0.12.0" - checksum: 10c0/df16c382b1d899dc1ce5dd716ca7b3191fd6e065138db3b7981ef87e1216d39798f5f951eb2534cfa40193ab771214ef030ec4e8ad4a8ae5007435ebdf9abacd - languageName: node - linkType: hard - "hermes-estree@npm:0.15.0": version: 0.15.0 resolution: "hermes-estree@npm:0.15.0" @@ -7186,26 +7320,17 @@ __metadata: languageName: node linkType: hard -"hermes-estree@npm:0.17.1": - version: 0.17.1 - resolution: "hermes-estree@npm:0.17.1" - checksum: 10c0/a1eec061b2244fd3c61cef5326318ce6f9fa0baf250e797993f59ff47789b02ea3239ae122ba00a58a7c004cc8858271668037e615ea94d2122c4ab8222f95fc - languageName: node - linkType: hard - -"hermes-estree@npm:0.8.0": - version: 0.8.0 - resolution: "hermes-estree@npm:0.8.0" - checksum: 10c0/091bca8dcd656d80eff7ff2dee13891698e0fe1d77265e6ed5a3c7d5ed7817a1e6bc997e3acec4b37bcca33558e56021510bc8621e90ec91fbf1b290a9be958c +"hermes-estree@npm:0.18.2": + version: 0.18.2 + resolution: "hermes-estree@npm:0.18.2" + checksum: 10c0/6f3f53b8c9b48d75e682644eff1a35934d755df5532092c0248e1e59c305e55fceffc2396ac65377585ddeacc17cd7a3f0d2264565350661e13aa00a7c70b7d6 languageName: node linkType: hard -"hermes-parser@npm:0.12.0": - version: 0.12.0 - resolution: "hermes-parser@npm:0.12.0" - dependencies: - hermes-estree: "npm:0.12.0" - checksum: 10c0/329f7a5c2028e9d2e3e0008865e5a7a7ef847c9425183b696a1f043f42f72e7a438368d978904c22adefc1212f3b867f48842e62c2159a5704a677bfc1a5a87e +"hermes-estree@npm:0.20.1": + version: 0.20.1 + resolution: "hermes-estree@npm:0.20.1" + checksum: 10c0/86cfb395970f50fdac09ad9784a86b65c7187d02b5f99f0f0321d936aa9ec52d1e07aef02c21b18b649abdec5f6acc02eb6275edf7d33b4d3d23e3fa0af85c41 languageName: node linkType: hard @@ -7218,21 +7343,21 @@ __metadata: languageName: node linkType: hard -"hermes-parser@npm:0.17.1": - version: 0.17.1 - resolution: "hermes-parser@npm:0.17.1" +"hermes-parser@npm:0.18.2": + version: 0.18.2 + resolution: "hermes-parser@npm:0.18.2" dependencies: - hermes-estree: "npm:0.17.1" - checksum: 10c0/5d9119f67e13eb84e06d14735e300763f3e3cafe00ddd0acdf0a58b4365fd78e2aa8efc463658f7b4a26f89541651ef9619bd1c47e93dcbe34e6d840a1a5c9c4 + hermes-estree: "npm:0.18.2" + checksum: 10c0/d06f79064448cc9240d00115083a9f0a795078b493f275b2bfe39ead0039dc7e6f13c1f8bc0027c1293779269212e008402365df59a9f2fdaa5e45fa4a515818 languageName: node linkType: hard -"hermes-parser@npm:0.8.0": - version: 0.8.0 - resolution: "hermes-parser@npm:0.8.0" +"hermes-parser@npm:0.20.1": + version: 0.20.1 + resolution: "hermes-parser@npm:0.20.1" dependencies: - hermes-estree: "npm:0.8.0" - checksum: 10c0/c239f757f8461c2ee376cfd8dd8f3b640bb375b960dee99249ed8648e0ce27a7dc9d735e018ebd2522ffdee3ae6296ec51211efb2ac64476d76bf2ba60e795a7 + hermes-estree: "npm:0.20.1" + checksum: 10c0/b93746028feac7d1dccd54f8b420e8f7d6e0adf9ff0bdbdf9bb1f327198da91ca7f893af62fba99ac9a57bfd5f15dcb90cca40cf4e1a090a6ea8ab2160a02f86 languageName: node linkType: hard @@ -7417,15 +7542,6 @@ __metadata: languageName: node linkType: hard -"image-size@npm:^0.6.0": - version: 0.6.3 - resolution: "image-size@npm:0.6.3" - bin: - image-size: bin/image-size.js - checksum: 10c0/693464c665191cb4cbfc7e3923e977bcd89f51c891ec70d0133094f12096e41230de713d0fd4b10615ddff7dc14fc1af0c33e70954e3f002190306e6fa888943 - languageName: node - linkType: hard - "image-size@npm:^1.0.2": version: 1.0.2 resolution: "image-size@npm:1.0.2" @@ -7717,6 +7833,15 @@ __metadata: languageName: node linkType: hard +"is-docker@npm:^2.0.0": + version: 2.2.1 + resolution: "is-docker@npm:2.2.1" + bin: + is-docker: cli.js + checksum: 10c0/e828365958d155f90c409cdbe958f64051d99e8aedc2c8c4cd7c89dcf35329daed42f7b99346f7828df013e27deb8f721cf9408ba878c76eb9e8290235fbcdcc + languageName: node + linkType: hard + "is-extglob@npm:^2.1.1": version: 2.1.1 resolution: "is-extglob@npm:2.1.1" @@ -7983,6 +8108,15 @@ __metadata: languageName: node linkType: hard +"is-wsl@npm:^2.1.1, is-wsl@npm:^2.2.0": + version: 2.2.0 + resolution: "is-wsl@npm:2.2.0" + dependencies: + is-docker: "npm:^2.0.0" + checksum: 10c0/a6fa2d370d21be487c0165c7a440d567274fbba1a817f2f0bfa41cc5e3af25041d84267baa22df66696956038a43973e72fca117918c91431920bdef490fa25e + languageName: node + linkType: hard + "isarray@npm:^2.0.5": version: 2.0.5 resolution: "isarray@npm:2.0.5" @@ -8299,7 +8433,7 @@ __metadata: languageName: node linkType: hard -"jest-environment-node@npm:^29.2.1, jest-environment-node@npm:^29.7.0": +"jest-environment-node@npm:^29.6.3, jest-environment-node@npm:^29.7.0": version: 29.7.0 resolution: "jest-environment-node@npm:29.7.0" dependencies: @@ -8313,13 +8447,6 @@ __metadata: languageName: node linkType: hard -"jest-get-type@npm:^26.3.0": - version: 26.3.0 - resolution: "jest-get-type@npm:26.3.0" - checksum: 10c0/112fc7f962d1c4625a51b6ccfe6e9c8e54ab80816bf8dbf2b1bf25d12c0f75c74ebad0c2f37622aea81019a2087451bfb12a46619ed6717e64ee875ea2de5520 - languageName: node - linkType: hard - "jest-get-type@npm:^29.6.3": version: 29.6.3 resolution: "jest-get-type@npm:29.6.3" @@ -8412,13 +8539,6 @@ __metadata: languageName: node linkType: hard -"jest-regex-util@npm:^27.0.6": - version: 27.5.1 - resolution: "jest-regex-util@npm:27.5.1" - checksum: 10c0/f9790d417b667b38155c4bbd58f2afc0ad9f774381e5358776df02df3f29564069d4773c7ba050db6826bad8a4cc7ef82c3b4c65bfa508e419fdd063a9682c42 - languageName: node - linkType: hard - "jest-regex-util@npm:^29.6.3": version: 29.6.3 resolution: "jest-regex-util@npm:29.6.3" @@ -8512,16 +8632,6 @@ __metadata: languageName: node linkType: hard -"jest-serializer@npm:^27.0.6": - version: 27.5.1 - resolution: "jest-serializer@npm:27.5.1" - dependencies: - "@types/node": "npm:*" - graceful-fs: "npm:^4.2.9" - checksum: 10c0/7a2b634a5a044b3ccf912a17032338309c90b50831a2e500f963b25e9a4ce9b550a1af1fb64f7c9a271ed6a1f951fca37bd0d61a0b286aefe197812193b0d825 - languageName: node - linkType: hard - "jest-snapshot@npm:^29.7.0": version: 29.7.0 resolution: "jest-snapshot@npm:29.7.0" @@ -8550,20 +8660,6 @@ __metadata: languageName: node linkType: hard -"jest-util@npm:^27.2.0": - version: 27.5.1 - resolution: "jest-util@npm:27.5.1" - dependencies: - "@jest/types": "npm:^27.5.1" - "@types/node": "npm:*" - chalk: "npm:^4.0.0" - ci-info: "npm:^3.2.0" - graceful-fs: "npm:^4.2.9" - picomatch: "npm:^2.2.3" - checksum: 10c0/0f60cd2a2e09a6646ccd4ff489f1970282c0694724104979e897bd5164f91204726f5408572bf5e759d09e59d5c4e4dc65a643d2b630e06a10402bba07bf2a2e - languageName: node - linkType: hard - "jest-util@npm:^29.7.0": version: 29.7.0 resolution: "jest-util@npm:29.7.0" @@ -8578,21 +8674,7 @@ __metadata: languageName: node linkType: hard -"jest-validate@npm:^26.5.2": - version: 26.6.2 - resolution: "jest-validate@npm:26.6.2" - dependencies: - "@jest/types": "npm:^26.6.2" - camelcase: "npm:^6.0.0" - chalk: "npm:^4.0.0" - jest-get-type: "npm:^26.3.0" - leven: "npm:^3.1.0" - pretty-format: "npm:^26.6.2" - checksum: 10c0/0c8df164641e797f80011e359553411e097ea495b95b41100be00d6c827bfd854e92ef8c528fe4cac0d113055a5075d1409f2616099ec648dbd6809bb0a29c67 - languageName: node - linkType: hard - -"jest-validate@npm:^29.2.1, jest-validate@npm:^29.6.3, jest-validate@npm:^29.7.0": +"jest-validate@npm:^29.6.3, jest-validate@npm:^29.7.0": version: 29.7.0 resolution: "jest-validate@npm:29.7.0" dependencies: @@ -8622,26 +8704,15 @@ __metadata: languageName: node linkType: hard -"jest-worker@npm:^27.2.0": - version: 27.5.1 - resolution: "jest-worker@npm:27.5.1" +"jest-worker@npm:^29.6.3, jest-worker@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-worker@npm:29.7.0" dependencies: "@types/node": "npm:*" + jest-util: "npm:^29.7.0" merge-stream: "npm:^2.0.0" supports-color: "npm:^8.0.0" - checksum: 10c0/8c4737ffd03887b3c6768e4cc3ca0269c0336c1e4b1b120943958ddb035ed2a0fc6acab6dc99631720a3720af4e708ff84fb45382ad1e83c27946adf3623969b - languageName: node - linkType: hard - -"jest-worker@npm:^29.6.3, jest-worker@npm:^29.7.0": - version: 29.7.0 - resolution: "jest-worker@npm:29.7.0" - dependencies: - "@types/node": "npm:*" - jest-util: "npm:^29.7.0" - merge-stream: "npm:^2.0.0" - supports-color: "npm:^8.0.0" - checksum: 10c0/5570a3a005b16f46c131968b8a5b56d291f9bbb85ff4217e31c80bd8a02e7de799e59a54b95ca28d5c302f248b54cbffde2d177c2f0f52ffcee7504c6eabf660 + checksum: 10c0/5570a3a005b16f46c131968b8a5b56d291f9bbb85ff4217e31c80bd8a02e7de799e59a54b95ca28d5c302f248b54cbffde2d177c2f0f52ffcee7504c6eabf660 languageName: node linkType: hard @@ -8712,7 +8783,7 @@ __metadata: languageName: node linkType: hard -"js-yaml@npm:^4.1.0": +"js-yaml@npm:^4.0.0, js-yaml@npm:^4.1.0": version: 4.1.0 resolution: "js-yaml@npm:4.1.0" dependencies: @@ -9107,6 +9178,16 @@ __metadata: languageName: node linkType: hard +"lighthouse-logger@npm:^1.0.0": + version: 1.4.2 + resolution: "lighthouse-logger@npm:1.4.2" + dependencies: + debug: "npm:^2.6.9" + marky: "npm:^1.2.2" + checksum: 10c0/090431db34e9ce01b03b2a03b39e998807a7a86214f2e8da2ba9588c36841caf4474f96ef1b2deaf9fe58f2e00f9f51618e0b98edecc2d8c9dfc13185bf0adc8 + languageName: node + linkType: hard + "lines-and-columns@npm:^1.1.6": version: 1.2.4 resolution: "lines-and-columns@npm:1.2.4" @@ -9452,6 +9533,13 @@ __metadata: languageName: node linkType: hard +"marky@npm:^1.2.2": + version: 1.2.5 + resolution: "marky@npm:1.2.5" + checksum: 10c0/ca8a011f287dab1ac3291df720fc32b366c4cd767347b63722966650405ce71ec6566f71d1e22e1768bf6461a7fd689b9038e7df0fcfb62eacf3a5a6dcac249e + languageName: node + linkType: hard + "md5@npm:^2.2.1": version: 2.3.0 resolution: "md5@npm:2.3.0" @@ -9518,822 +9606,181 @@ __metadata: languageName: node linkType: hard -"merge2@npm:^1.3.0, merge2@npm:^1.4.1": - version: 1.4.1 - resolution: "merge2@npm:1.4.1" - checksum: 10c0/254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb - languageName: node - linkType: hard - -"metro-babel-transformer@npm:0.73.10": - version: 0.73.10 - resolution: "metro-babel-transformer@npm:0.73.10" - dependencies: - "@babel/core": "npm:^7.20.0" - hermes-parser: "npm:0.8.0" - metro-source-map: "npm:0.73.10" - nullthrows: "npm:^1.1.1" - checksum: 10c0/d9eb02648a6674a6282f20f48c177f1f0747b85e1bb7d210be864c4dc5b97a0ab0a3cd258ecf0608b2f48cfacd7b7ecda10573fe5cd9a2faa1a115c128d18315 - languageName: node - linkType: hard - -"metro-babel-transformer@npm:0.76.8": - version: 0.76.8 - resolution: "metro-babel-transformer@npm:0.76.8" - dependencies: - "@babel/core": "npm:^7.20.0" - hermes-parser: "npm:0.12.0" - nullthrows: "npm:^1.1.1" - checksum: 10c0/8e2a6d451aecfd39b3d1135635c0875f4d48bf10d9fc206e5adfafffd13bd96177f7a8c208455eb448e39337524ecbaa3c2bce238134fa66f644e022b28afa95 - languageName: node - linkType: hard - -"metro-babel-transformer@npm:0.80.1": - version: 0.80.1 - resolution: "metro-babel-transformer@npm:0.80.1" - dependencies: - "@babel/core": "npm:^7.20.0" - hermes-parser: "npm:0.17.1" - nullthrows: "npm:^1.1.1" - checksum: 10c0/7c89f2a7878ff5c0b9ba6eb623e4927d24dfab8458f302a63d270a4b8dfea53c64a8734a6d59de936a5c51c25ce8f033e203a80a4215687b4e3512cfb4b34c92 - languageName: node - linkType: hard - -"metro-cache-key@npm:0.73.10": - version: 0.73.10 - resolution: "metro-cache-key@npm:0.73.10" - checksum: 10c0/1b254b7854b6594abb6f16b723b51e3726a5ee56512da4bc4c2d08200c81a231c37d816a2a40109a6ec69ad8ef06956218e0d53e42dc146b0d93bfa0d0fb9cdf - languageName: node - linkType: hard - -"metro-cache-key@npm:0.76.8": - version: 0.76.8 - resolution: "metro-cache-key@npm:0.76.8" - checksum: 10c0/c672238b37bd24543e05a0b8961a1aff013707d8ad1d783bcfab5a95318d6a3f76431d2d3c5c841e455c123933e4b02869f844b5de3e6e1822601c508e48b789 - languageName: node - linkType: hard - -"metro-cache-key@npm:0.80.1": - version: 0.80.1 - resolution: "metro-cache-key@npm:0.80.1" - checksum: 10c0/a30e98d2f900bfdea3507f5a647d529f5bb37a25b9cc6eba04ddc9ffbe905053ba0b98a3cdde85b8b18506c7d7d34b2f864eac99042b855aef08983bb6279d0c - languageName: node - linkType: hard - -"metro-cache@npm:0.73.10": - version: 0.73.10 - resolution: "metro-cache@npm:0.73.10" - dependencies: - metro-core: "npm:0.73.10" - rimraf: "npm:^3.0.2" - checksum: 10c0/24489927b7c2bfbdf6375a20a8ea8c4426c5d5836a7b8f548b42a308b8e7fb2487f780a086cad56303803060655f397d55a05482db76c68120bc350a624347e2 - languageName: node - linkType: hard - -"metro-cache@npm:0.76.8": - version: 0.76.8 - resolution: "metro-cache@npm:0.76.8" - dependencies: - metro-core: "npm:0.76.8" - rimraf: "npm:^3.0.2" - checksum: 10c0/c7a3005d8ffe086aad86b440b1f81a89ff399a32747abe43f41f33b95e62dd2f7da759b3d2405d04539252866a8a6adddcf71d6503ee9ff8deabc044c9572812 - languageName: node - linkType: hard - -"metro-cache@npm:0.80.1": - version: 0.80.1 - resolution: "metro-cache@npm:0.80.1" - dependencies: - metro-core: "npm:0.80.1" - rimraf: "npm:^3.0.2" - checksum: 10c0/ec18e3dbc96e4ed5ab057b41a43606f8708963603be462c77570538f8d6b6c87fcbd73cb16f8a85f23f7ba06580f1948106566e0a2a55a15bb7a8a9b3e3deb27 - languageName: node - linkType: hard - -"metro-config@npm:0.73.10": - version: 0.73.10 - resolution: "metro-config@npm:0.73.10" - dependencies: - cosmiconfig: "npm:^5.0.5" - jest-validate: "npm:^26.5.2" - metro: "npm:0.73.10" - metro-cache: "npm:0.73.10" - metro-core: "npm:0.73.10" - metro-runtime: "npm:0.73.10" - checksum: 10c0/b617dc486427e1f49cea5d37632e0faa6f5ffd3d267c8956003d03100567c1238bdc48fdc48376c3faa592264934de601cf745b7e23994e72b783b65a4518f45 - languageName: node - linkType: hard - -"metro-config@npm:0.76.8": - version: 0.76.8 - resolution: "metro-config@npm:0.76.8" - dependencies: - connect: "npm:^3.6.5" - cosmiconfig: "npm:^5.0.5" - jest-validate: "npm:^29.2.1" - metro: "npm:0.76.8" - metro-cache: "npm:0.76.8" - metro-core: "npm:0.76.8" - metro-runtime: "npm:0.76.8" - checksum: 10c0/cbb691d068c403b51e4254c225cda9b62497f12a9e32feb57cde8706712179bffaa5622fef82a155356911c7358ea8fe4469b7719bd1acdfbbd03f9824115be5 - languageName: node - linkType: hard - -"metro-config@npm:0.80.1, metro-config@npm:^0.80.0": - version: 0.80.1 - resolution: "metro-config@npm:0.80.1" - dependencies: - connect: "npm:^3.6.5" - cosmiconfig: "npm:^5.0.5" - jest-validate: "npm:^29.6.3" - metro: "npm:0.80.1" - metro-cache: "npm:0.80.1" - metro-core: "npm:0.80.1" - metro-runtime: "npm:0.80.1" - checksum: 10c0/576e1dc8e84e9c370144579d3ec6b55d2cead0d4358baa580b23ceceb7c1d7120cf1f3ec0d9a1947b8cbb5cdb904d882b7d51d8aef54e6963f011c4765763103 - languageName: node - linkType: hard - -"metro-core@npm:0.73.10": - version: 0.73.10 - resolution: "metro-core@npm:0.73.10" - dependencies: - lodash.throttle: "npm:^4.1.1" - metro-resolver: "npm:0.73.10" - checksum: 10c0/1dc5e4a1e84d1bcac1d1b096786235fbcedbdbade6fbbbc076ab7d82d636a382b955de2a25ba3f296642306a0cdb04bbbcd79ab9b410fe9265ab04c313e44479 - languageName: node - linkType: hard - -"metro-core@npm:0.76.8": - version: 0.76.8 - resolution: "metro-core@npm:0.76.8" - dependencies: - lodash.throttle: "npm:^4.1.1" - metro-resolver: "npm:0.76.8" - checksum: 10c0/29c527e91ab1bf48bc55e5ff2b61d483626369203ea3febee5df6e9490b19460e637fe01cb5be3b485f8a1066bbbaa5ecf3b11f66b9595df0c549a71d09568b1 - languageName: node - linkType: hard - -"metro-core@npm:0.80.1": - version: 0.80.1 - resolution: "metro-core@npm:0.80.1" - dependencies: - lodash.throttle: "npm:^4.1.1" - metro-resolver: "npm:0.80.1" - checksum: 10c0/54cd44544e964b683956cabfd349e0880a174aafd6a555cb47820fce67b813cee72042269e94f09fffb66240eca2d0cf80546662349c21e01d9be2f8a1386e28 - languageName: node - linkType: hard - -"metro-file-map@npm:0.73.10": - version: 0.73.10 - resolution: "metro-file-map@npm:0.73.10" - dependencies: - abort-controller: "npm:^3.0.0" - anymatch: "npm:^3.0.3" - debug: "npm:^2.2.0" - fb-watchman: "npm:^2.0.0" - fsevents: "npm:^2.3.2" - graceful-fs: "npm:^4.2.4" - invariant: "npm:^2.2.4" - jest-regex-util: "npm:^27.0.6" - jest-serializer: "npm:^27.0.6" - jest-util: "npm:^27.2.0" - jest-worker: "npm:^27.2.0" - micromatch: "npm:^4.0.4" - nullthrows: "npm:^1.1.1" - walker: "npm:^1.0.7" - dependenciesMeta: - fsevents: - optional: true - checksum: 10c0/f2aeab350ae97db91f2d8fa1f8dfc2f7244ef8d440d104e6d077081905584f5798a3b7bf198166e5b97bbc1f5e1fffb365dc74dfe932fd7548f4d43ba987d45b - languageName: node - linkType: hard - -"metro-file-map@npm:0.76.8": - version: 0.76.8 - resolution: "metro-file-map@npm:0.76.8" - dependencies: - anymatch: "npm:^3.0.3" - debug: "npm:^2.2.0" - fb-watchman: "npm:^2.0.0" - fsevents: "npm:^2.3.2" - graceful-fs: "npm:^4.2.4" - invariant: "npm:^2.2.4" - jest-regex-util: "npm:^27.0.6" - jest-util: "npm:^27.2.0" - jest-worker: "npm:^27.2.0" - micromatch: "npm:^4.0.4" - node-abort-controller: "npm:^3.1.1" - nullthrows: "npm:^1.1.1" - walker: "npm:^1.0.7" - dependenciesMeta: - fsevents: - optional: true - checksum: 10c0/a535569d807bfa934173c7dfdbf6d64d0b23f5b5b42de036708a75485d6546b641125643526c0c000add530ad040f9a51a44de41c526b733f6af9e710becb5d9 - languageName: node - linkType: hard - -"metro-file-map@npm:0.80.1": - version: 0.80.1 - resolution: "metro-file-map@npm:0.80.1" - dependencies: - anymatch: "npm:^3.0.3" - debug: "npm:^2.2.0" - fb-watchman: "npm:^2.0.0" - fsevents: "npm:^2.3.2" - graceful-fs: "npm:^4.2.4" - invariant: "npm:^2.2.4" - jest-worker: "npm:^29.6.3" - micromatch: "npm:^4.0.4" - node-abort-controller: "npm:^3.1.1" - nullthrows: "npm:^1.1.1" - walker: "npm:^1.0.7" - dependenciesMeta: - fsevents: - optional: true - checksum: 10c0/e2f705ff1aa758647c835c1e311c89ddfd52e081a19bd1bdc5bcf5e4245c02603f3c40c897e49352a52c73dfcdb4284707c4504afb510a5f6bd8f8bc2431f238 - languageName: node - linkType: hard - -"metro-hermes-compiler@npm:0.73.10": - version: 0.73.10 - resolution: "metro-hermes-compiler@npm:0.73.10" - checksum: 10c0/93eea5827dc15dd46e42f7d0489b486880a6f80a03c1de4e83100a3a93c6dfb66e3a6722827637f1266a3629c3095de425b0c87b2de6c37cd5d7d93698aa9007 - languageName: node - linkType: hard - -"metro-inspector-proxy@npm:0.73.10": - version: 0.73.10 - resolution: "metro-inspector-proxy@npm:0.73.10" - dependencies: - connect: "npm:^3.6.5" - debug: "npm:^2.2.0" - ws: "npm:^7.5.1" - yargs: "npm:^17.5.1" - bin: - metro-inspector-proxy: src/cli.js - checksum: 10c0/14458f313cfdf0978492fd9256b0cabdb685c832a3ab1666d4d0f24dfd0e32c2eb1699fd7e1b4ff1769918be159b3368c3352cf4c56805e8ebc8a12a269c6ca2 - languageName: node - linkType: hard - -"metro-inspector-proxy@npm:0.76.8": - version: 0.76.8 - resolution: "metro-inspector-proxy@npm:0.76.8" - dependencies: - connect: "npm:^3.6.5" - debug: "npm:^2.2.0" - node-fetch: "npm:^2.2.0" - ws: "npm:^7.5.1" - yargs: "npm:^17.6.2" - bin: - metro-inspector-proxy: src/cli.js - checksum: 10c0/3971d4097e330944ca0044ca1b04c41daac5e03479fd267b968476ad92150055c1f40f457355863aa80e32eba34a6d0708e381cd02fa6a8fa74ac54170943ee1 - languageName: node - linkType: hard - -"metro-minify-terser@npm:0.73.10": - version: 0.73.10 - resolution: "metro-minify-terser@npm:0.73.10" - dependencies: - terser: "npm:^5.15.0" - checksum: 10c0/66888516f000adaf94027d32f8d6927cbb0c54cc71c46b5f286434b2e4ecff09d185fcf4bff71acd3c76a7f9f46a808ddff0f22b9f0d6bdca2c513fd2d5b8953 - languageName: node - linkType: hard - -"metro-minify-terser@npm:0.76.8": - version: 0.76.8 - resolution: "metro-minify-terser@npm:0.76.8" - dependencies: - terser: "npm:^5.15.0" - checksum: 10c0/0fd8a195789dbd297de37819936cdd4f3ae88f6f93f91b1f324d2ad76fe361263f1c64da883d0fa032c42366a88e755ae94c9d543ce0919125f553c96b39f74a - languageName: node - linkType: hard - -"metro-minify-terser@npm:0.80.1": - version: 0.80.1 - resolution: "metro-minify-terser@npm:0.80.1" - dependencies: - terser: "npm:^5.15.0" - checksum: 10c0/bb083ffc851a56bf595e050e6551d5d1ad0714524c98312be8c89bcbe8f7620eea754a9f987384055f012d510a59ba9fe3786b9f885ba167ef2ca3e3e7285d3e - languageName: node - linkType: hard - -"metro-minify-uglify@npm:0.73.10": - version: 0.73.10 - resolution: "metro-minify-uglify@npm:0.73.10" - dependencies: - uglify-es: "npm:^3.1.9" - checksum: 10c0/650e03a3999bafb46823b649dceb4f5aa5e6171f00528d584d357a288369896073e29572ec3f5553cd49bde34734dde17e60549c5acc36af5e45d1249ab8b9ea - languageName: node - linkType: hard - -"metro-minify-uglify@npm:0.76.8": - version: 0.76.8 - resolution: "metro-minify-uglify@npm:0.76.8" - dependencies: - uglify-es: "npm:^3.1.9" - checksum: 10c0/75c532cb7a5aaea9819c8b4234266f6a714e552cf03fe8c33b6c1ac7e093d8a5bc905f5272494907c1fc7fb13be3834d1d81048f12d033bf4f43052a1de96caf - languageName: node - linkType: hard - -"metro-react-native-babel-preset@npm:0.73.10": - version: 0.73.10 - resolution: "metro-react-native-babel-preset@npm:0.73.10" - dependencies: - "@babel/core": "npm:^7.20.0" - "@babel/plugin-proposal-async-generator-functions": "npm:^7.0.0" - "@babel/plugin-proposal-class-properties": "npm:^7.0.0" - "@babel/plugin-proposal-export-default-from": "npm:^7.0.0" - "@babel/plugin-proposal-nullish-coalescing-operator": "npm:^7.0.0" - "@babel/plugin-proposal-object-rest-spread": "npm:^7.0.0" - "@babel/plugin-proposal-optional-catch-binding": "npm:^7.0.0" - "@babel/plugin-proposal-optional-chaining": "npm:^7.0.0" - "@babel/plugin-syntax-dynamic-import": "npm:^7.0.0" - "@babel/plugin-syntax-export-default-from": "npm:^7.0.0" - "@babel/plugin-syntax-flow": "npm:^7.18.0" - "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.0.0" - "@babel/plugin-syntax-optional-chaining": "npm:^7.0.0" - "@babel/plugin-transform-arrow-functions": "npm:^7.0.0" - "@babel/plugin-transform-async-to-generator": "npm:^7.0.0" - "@babel/plugin-transform-block-scoping": "npm:^7.0.0" - "@babel/plugin-transform-classes": "npm:^7.0.0" - "@babel/plugin-transform-computed-properties": "npm:^7.0.0" - "@babel/plugin-transform-destructuring": "npm:^7.0.0" - "@babel/plugin-transform-flow-strip-types": "npm:^7.0.0" - "@babel/plugin-transform-function-name": "npm:^7.0.0" - "@babel/plugin-transform-literals": "npm:^7.0.0" - "@babel/plugin-transform-modules-commonjs": "npm:^7.0.0" - "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.0.0" - "@babel/plugin-transform-parameters": "npm:^7.0.0" - "@babel/plugin-transform-react-display-name": "npm:^7.0.0" - "@babel/plugin-transform-react-jsx": "npm:^7.0.0" - "@babel/plugin-transform-react-jsx-self": "npm:^7.0.0" - "@babel/plugin-transform-react-jsx-source": "npm:^7.0.0" - "@babel/plugin-transform-runtime": "npm:^7.0.0" - "@babel/plugin-transform-shorthand-properties": "npm:^7.0.0" - "@babel/plugin-transform-spread": "npm:^7.0.0" - "@babel/plugin-transform-sticky-regex": "npm:^7.0.0" - "@babel/plugin-transform-template-literals": "npm:^7.0.0" - "@babel/plugin-transform-typescript": "npm:^7.5.0" - "@babel/plugin-transform-unicode-regex": "npm:^7.0.0" - "@babel/template": "npm:^7.0.0" - react-refresh: "npm:^0.4.0" - peerDependencies: - "@babel/core": "*" - checksum: 10c0/78ea637b729caf98770f3a1db76a0de3fc728ccb848ce620215fa3442153c9a20cd25cde6a1553caad7d69a28cf6497637502aea4c8795b0f110a7550c6992ce - languageName: node - linkType: hard - -"metro-react-native-babel-preset@npm:0.76.8": - version: 0.76.8 - resolution: "metro-react-native-babel-preset@npm:0.76.8" - dependencies: - "@babel/core": "npm:^7.20.0" - "@babel/plugin-proposal-async-generator-functions": "npm:^7.0.0" - "@babel/plugin-proposal-class-properties": "npm:^7.18.0" - "@babel/plugin-proposal-export-default-from": "npm:^7.0.0" - "@babel/plugin-proposal-nullish-coalescing-operator": "npm:^7.18.0" - "@babel/plugin-proposal-numeric-separator": "npm:^7.0.0" - "@babel/plugin-proposal-object-rest-spread": "npm:^7.20.0" - "@babel/plugin-proposal-optional-catch-binding": "npm:^7.0.0" - "@babel/plugin-proposal-optional-chaining": "npm:^7.20.0" - "@babel/plugin-syntax-dynamic-import": "npm:^7.8.0" - "@babel/plugin-syntax-export-default-from": "npm:^7.0.0" - "@babel/plugin-syntax-flow": "npm:^7.18.0" - "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.0.0" - "@babel/plugin-syntax-optional-chaining": "npm:^7.0.0" - "@babel/plugin-transform-arrow-functions": "npm:^7.0.0" - "@babel/plugin-transform-async-to-generator": "npm:^7.20.0" - "@babel/plugin-transform-block-scoping": "npm:^7.0.0" - "@babel/plugin-transform-classes": "npm:^7.0.0" - "@babel/plugin-transform-computed-properties": "npm:^7.0.0" - "@babel/plugin-transform-destructuring": "npm:^7.20.0" - "@babel/plugin-transform-flow-strip-types": "npm:^7.20.0" - "@babel/plugin-transform-function-name": "npm:^7.0.0" - "@babel/plugin-transform-literals": "npm:^7.0.0" - "@babel/plugin-transform-modules-commonjs": "npm:^7.0.0" - "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.0.0" - "@babel/plugin-transform-parameters": "npm:^7.0.0" - "@babel/plugin-transform-react-display-name": "npm:^7.0.0" - "@babel/plugin-transform-react-jsx": "npm:^7.0.0" - "@babel/plugin-transform-react-jsx-self": "npm:^7.0.0" - "@babel/plugin-transform-react-jsx-source": "npm:^7.0.0" - "@babel/plugin-transform-runtime": "npm:^7.0.0" - "@babel/plugin-transform-shorthand-properties": "npm:^7.0.0" - "@babel/plugin-transform-spread": "npm:^7.0.0" - "@babel/plugin-transform-sticky-regex": "npm:^7.0.0" - "@babel/plugin-transform-typescript": "npm:^7.5.0" - "@babel/plugin-transform-unicode-regex": "npm:^7.0.0" - "@babel/template": "npm:^7.0.0" - babel-plugin-transform-flow-enums: "npm:^0.0.2" - react-refresh: "npm:^0.4.0" - peerDependencies: - "@babel/core": "*" - checksum: 10c0/594b9d5f38d6a4fbdd3d83084dc2315d8a52e3b32ee541adbe89e4e41ea2f6c2a54571f877a5de5f5770b48e77215a8d1847ed22f852b753a7f7e0ec7f4eb1f5 - languageName: node - linkType: hard - -"metro-react-native-babel-transformer@npm:0.73.10": - version: 0.73.10 - resolution: "metro-react-native-babel-transformer@npm:0.73.10" - dependencies: - "@babel/core": "npm:^7.20.0" - babel-preset-fbjs: "npm:^3.4.0" - hermes-parser: "npm:0.8.0" - metro-babel-transformer: "npm:0.73.10" - metro-react-native-babel-preset: "npm:0.73.10" - metro-source-map: "npm:0.73.10" - nullthrows: "npm:^1.1.1" - peerDependencies: - "@babel/core": "*" - checksum: 10c0/8e67de62451bc77094b86da249aae962aecc4fe3793a3e8437432795df512a5177d6588920cd03fb789f6d6d4b135c045e8cf01ff224bf94cf16526e6f67a1f3 - languageName: node - linkType: hard - -"metro-react-native-babel-transformer@npm:0.76.8": - version: 0.76.8 - resolution: "metro-react-native-babel-transformer@npm:0.76.8" - dependencies: - "@babel/core": "npm:^7.20.0" - babel-preset-fbjs: "npm:^3.4.0" - hermes-parser: "npm:0.12.0" - metro-react-native-babel-preset: "npm:0.76.8" - nullthrows: "npm:^1.1.1" - peerDependencies: - "@babel/core": "*" - checksum: 10c0/2294b6c7ebaf578d5a25b4da3eabbe33599f1567fa6163bf365a5eed3ef50e4bb5717b99aa0e3b64e1bd1ad527fa0cbbac3944a0e0c653dcb4bda4915df64353 - languageName: node - linkType: hard - -"metro-resolver@npm:0.73.10": - version: 0.73.10 - resolution: "metro-resolver@npm:0.73.10" - dependencies: - absolute-path: "npm:^0.0.0" - checksum: 10c0/5142fab0b6866956d76c324da095c8d72e53613769d621abcbc6b588d7dbd063150c87dab5140e7b3fb7c5dbbdbb4505cc7a15f58bae898769203c4f8dea8fe4 +"merge2@npm:^1.3.0, merge2@npm:^1.4.1": + version: 1.4.1 + resolution: "merge2@npm:1.4.1" + checksum: 10c0/254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb languageName: node linkType: hard -"metro-resolver@npm:0.76.8": - version: 0.76.8 - resolution: "metro-resolver@npm:0.76.8" - checksum: 10c0/478531fdb200c2dda300a9c381b79bde9d1cca9af91614f870ca85cae17d8525ccd573aa8bb2eff5a66dfb71de81e335d989f6d0aaf9f9c32f92bba5289956ea +"metro-babel-transformer@npm:0.80.8": + version: 0.80.8 + resolution: "metro-babel-transformer@npm:0.80.8" + dependencies: + "@babel/core": "npm:^7.20.0" + hermes-parser: "npm:0.20.1" + nullthrows: "npm:^1.1.1" + checksum: 10c0/8e77d7e3a83f9d1896a4ab7a61bad3167d43a29dfab985ff60b7b3970818af6aee91c4a16a26998377916aea02c27e07ee2a3fb515843def18fe737cb1d28907 languageName: node linkType: hard -"metro-resolver@npm:0.80.1": - version: 0.80.1 - resolution: "metro-resolver@npm:0.80.1" - checksum: 10c0/94cc9943947bdd93c9279061a8ff907412dd04bfa1a7af198d370c55c4487b92f47493cc4be130e13c74c9dfb330934659abb82f7d25b09bd5934a455b15de34 +"metro-cache-key@npm:0.80.8": + version: 0.80.8 + resolution: "metro-cache-key@npm:0.80.8" + checksum: 10c0/bb15f7a7012f6236b538120dc184d94450ebf303d68f4eb24ad1afb25e3a72af42aa620407a785ea7dbeec6c5d584b1e87e0858e9c1b8cea004a47eebff56c69 languageName: node linkType: hard -"metro-runtime@npm:0.73.10": - version: 0.73.10 - resolution: "metro-runtime@npm:0.73.10" +"metro-cache@npm:0.80.8": + version: 0.80.8 + resolution: "metro-cache@npm:0.80.8" dependencies: - "@babel/runtime": "npm:^7.0.0" - react-refresh: "npm:^0.4.0" - checksum: 10c0/a8d40d95bb5db89dc61a24bf639b23b7faf127a7db53fc54a05a68057c5480c884c8785e3d21935211e96586fb67a3203555f3c28ded3aedcc1d825278849557 + metro-core: "npm:0.80.8" + rimraf: "npm:^3.0.2" + checksum: 10c0/396f804fa28d3209543acf50a6bfbb1b4f30b891d761e5105211602501370f1777cce29a3a6c381a47a13aa673b44b77942921c39fc317186905c44f49fbe7ce languageName: node linkType: hard -"metro-runtime@npm:0.76.8": - version: 0.76.8 - resolution: "metro-runtime@npm:0.76.8" +"metro-config@npm:0.80.8, metro-config@npm:^0.80.3": + version: 0.80.8 + resolution: "metro-config@npm:0.80.8" dependencies: - "@babel/runtime": "npm:^7.0.0" - react-refresh: "npm:^0.4.0" - checksum: 10c0/b8a054f48f2bba4663f0ecb3d4850d2fe31e60274527ed32f58cf3e1a3440e07314c31b67f07cae41cf96a78ba8894f975dd99c520bfc848632db0a15920ee43 + connect: "npm:^3.6.5" + cosmiconfig: "npm:^5.0.5" + jest-validate: "npm:^29.6.3" + metro: "npm:0.80.8" + metro-cache: "npm:0.80.8" + metro-core: "npm:0.80.8" + metro-runtime: "npm:0.80.8" + checksum: 10c0/bb65b92b6750881ca8837e832bec9ed3bc72c5028c207fd8d661ee4f588223c70d675fbad82fe6be115a0a9749043ca65ec35144e287e1fa8de69677cb8a17a3 languageName: node linkType: hard -"metro-runtime@npm:0.80.1, metro-runtime@npm:^0.80.0": - version: 0.80.1 - resolution: "metro-runtime@npm:0.80.1" +"metro-core@npm:0.80.8, metro-core@npm:^0.80.3": + version: 0.80.8 + resolution: "metro-core@npm:0.80.8" dependencies: - "@babel/runtime": "npm:^7.0.0" - checksum: 10c0/4b4e87a81356bc541481820e12e483482cce4eaaba0a015a432e5781d52addb85133aca5c391f45e8cc4c3c45ce3848cad988efc101e58c937f687d73acabe1b + lodash.throttle: "npm:^4.1.1" + metro-resolver: "npm:0.80.8" + checksum: 10c0/079405bb8d1ba280aa017b32814dce541682428e4fb9bd51e00384772e7cab0454afba1ec34a980d690ad609498f9e817ac8ff58655f5ba3e65d69f3271989f2 languageName: node linkType: hard -"metro-source-map@npm:0.73.10": - version: 0.73.10 - resolution: "metro-source-map@npm:0.73.10" +"metro-file-map@npm:0.80.8": + version: 0.80.8 + resolution: "metro-file-map@npm:0.80.8" dependencies: - "@babel/traverse": "npm:^7.20.0" - "@babel/types": "npm:^7.20.0" + anymatch: "npm:^3.0.3" + debug: "npm:^2.2.0" + fb-watchman: "npm:^2.0.0" + fsevents: "npm:^2.3.2" + graceful-fs: "npm:^4.2.4" invariant: "npm:^2.2.4" - metro-symbolicate: "npm:0.73.10" + jest-worker: "npm:^29.6.3" + micromatch: "npm:^4.0.4" + node-abort-controller: "npm:^3.1.1" nullthrows: "npm:^1.1.1" - ob1: "npm:0.73.10" - source-map: "npm:^0.5.6" - vlq: "npm:^1.0.0" - checksum: 10c0/44f19fff3985fd05c11c31bb7c5af0f021425660c4728b53cedb7d4deb1faceec9aab88456b8f167db1ff23ce3e000b6fe364d2cec5f8a9c3d65b0d9714b0ce1 + walker: "npm:^1.0.7" + dependenciesMeta: + fsevents: + optional: true + checksum: 10c0/adc01d7844eb74a9ed099f8fe774e13bc556310f2520066988aafbbff058d04230acaee7925fec14aebb96834e3c1c249f804ef2d0966535c1e2fa0cadea4ecd languageName: node linkType: hard -"metro-source-map@npm:0.76.8": - version: 0.76.8 - resolution: "metro-source-map@npm:0.76.8" +"metro-minify-terser@npm:0.80.8": + version: 0.80.8 + resolution: "metro-minify-terser@npm:0.80.8" dependencies: - "@babel/traverse": "npm:^7.20.0" - "@babel/types": "npm:^7.20.0" - invariant: "npm:^2.2.4" - metro-symbolicate: "npm:0.76.8" - nullthrows: "npm:^1.1.1" - ob1: "npm:0.76.8" - source-map: "npm:^0.5.6" - vlq: "npm:^1.0.0" - checksum: 10c0/2abbaf4c5bf06033467c9fc27cbad37af31ccc409796912745c1d3775fabe4afac5bed69c4cc455aa7f811bad0fe6f5bef0416ccc982c5f5e7bf6c3adb4c0d1a + terser: "npm:^5.15.0" + checksum: 10c0/dc26ab2215a43abadd690b292e72972da96cf326594dbfaabe977bb2a49811835937a5d63d7e7a45b5f72edb2d4d7136175851617cdbe661a85d763faeebce57 languageName: node linkType: hard -"metro-source-map@npm:0.80.1": - version: 0.80.1 - resolution: "metro-source-map@npm:0.80.1" - dependencies: - "@babel/traverse": "npm:^7.20.0" - "@babel/types": "npm:^7.20.0" - invariant: "npm:^2.2.4" - metro-symbolicate: "npm:0.80.1" - nullthrows: "npm:^1.1.1" - ob1: "npm:0.80.1" - source-map: "npm:^0.5.6" - vlq: "npm:^1.0.0" - checksum: 10c0/e5f7fb5e5552591d787f63f8efc818a66f7e48bf1f23d0d398df7871d916a31a086829b7e4dfa2d95682b5bde025f6676a77e61c7f3364deebbf98fe5838884a +"metro-resolver@npm:0.80.8": + version: 0.80.8 + resolution: "metro-resolver@npm:0.80.8" + checksum: 10c0/d9f72c7a17e4a6a020c8fd58a4233d886c14529c17716bd84aaa76dd4816594658bb7bc7a604cd41975422cf0888efefc753ccd7120b82464b25bd91a3d51406 languageName: node linkType: hard -"metro-symbolicate@npm:0.73.10": - version: 0.73.10 - resolution: "metro-symbolicate@npm:0.73.10" +"metro-runtime@npm:0.80.8, metro-runtime@npm:^0.80.3": + version: 0.80.8 + resolution: "metro-runtime@npm:0.80.8" dependencies: - invariant: "npm:^2.2.4" - metro-source-map: "npm:0.73.10" - nullthrows: "npm:^1.1.1" - source-map: "npm:^0.5.6" - through2: "npm:^2.0.1" - vlq: "npm:^1.0.0" - bin: - metro-symbolicate: src/index.js - checksum: 10c0/5ca9a4e15b2670ac6227c8d77eda837db21b736ef437a3b556805d92239f6cfa99d2c4a21bec05de9de1ed0b32851b5ae795a2e8997acf689b8cba2466d5c48a + "@babel/runtime": "npm:^7.0.0" + checksum: 10c0/bc16823139afd0758ba0bed8267ff548d2b7e4686302736242d69c7f1e362b8cba6ba418241b06a438e4f042adcf36b6565d55c2346b44c849611c0759a1b27d languageName: node linkType: hard -"metro-symbolicate@npm:0.76.8": - version: 0.76.8 - resolution: "metro-symbolicate@npm:0.76.8" +"metro-source-map@npm:0.80.8, metro-source-map@npm:^0.80.3": + version: 0.80.8 + resolution: "metro-source-map@npm:0.80.8" dependencies: + "@babel/traverse": "npm:^7.20.0" + "@babel/types": "npm:^7.20.0" invariant: "npm:^2.2.4" - metro-source-map: "npm:0.76.8" + metro-symbolicate: "npm:0.80.8" nullthrows: "npm:^1.1.1" + ob1: "npm:0.80.8" source-map: "npm:^0.5.6" - through2: "npm:^2.0.1" vlq: "npm:^1.0.0" - bin: - metro-symbolicate: src/index.js - checksum: 10c0/a653fcfaf41487a0bff1dfe175b6bf75eafe672a425f03b811ed510aeb460cb8050037e23c6989784bb34a6ba8117a06db0e28cd98ccb9d3b9ce6138f42ca8bc + checksum: 10c0/62c7b313a0d2301dee6ca8da26a18c8378cee1f1b784316b18da987bf0d49b4f6064d270075a73cc64cf032bb90e56f94b59fa2ebbb138598830223aecebe9cc languageName: node linkType: hard -"metro-symbolicate@npm:0.80.1": - version: 0.80.1 - resolution: "metro-symbolicate@npm:0.80.1" +"metro-symbolicate@npm:0.80.8": + version: 0.80.8 + resolution: "metro-symbolicate@npm:0.80.8" dependencies: invariant: "npm:^2.2.4" - metro-source-map: "npm:0.80.1" + metro-source-map: "npm:0.80.8" nullthrows: "npm:^1.1.1" source-map: "npm:^0.5.6" through2: "npm:^2.0.1" vlq: "npm:^1.0.0" bin: metro-symbolicate: src/index.js - checksum: 10c0/e0820fc4ff79d9924ffb7229e92410e4f7e0ababe414e1a9155341d6d32304c8c292ceb63e982d5125e5907305131c7c4e439b2c7e7e8d1bbc59ab13bfe224d1 - languageName: node - linkType: hard - -"metro-transform-plugins@npm:0.73.10": - version: 0.73.10 - resolution: "metro-transform-plugins@npm:0.73.10" - dependencies: - "@babel/core": "npm:^7.20.0" - "@babel/generator": "npm:^7.20.0" - "@babel/template": "npm:^7.0.0" - "@babel/traverse": "npm:^7.20.0" - nullthrows: "npm:^1.1.1" - checksum: 10c0/a4eebbbea6e77736dc7d1e4a914ed37c6521ebe65f81d4972bb00515d45a72eb26c126dd40a4b7f437c2829bcc0c12654c87af20d794c39aa45b8f424f6b14bf - languageName: node - linkType: hard - -"metro-transform-plugins@npm:0.76.8": - version: 0.76.8 - resolution: "metro-transform-plugins@npm:0.76.8" - dependencies: - "@babel/core": "npm:^7.20.0" - "@babel/generator": "npm:^7.20.0" - "@babel/template": "npm:^7.0.0" - "@babel/traverse": "npm:^7.20.0" - nullthrows: "npm:^1.1.1" - checksum: 10c0/d351097fdbb874c18674e250a11903fb8252e2ac2a88ea0a265c2aca6df002ec22a1a81e77615d5185234fdc6e74d0572187b94904e757121d2e5dc65e33d9f6 - languageName: node - linkType: hard - -"metro-transform-plugins@npm:0.80.1": - version: 0.80.1 - resolution: "metro-transform-plugins@npm:0.80.1" - dependencies: - "@babel/core": "npm:^7.20.0" - "@babel/generator": "npm:^7.20.0" - "@babel/template": "npm:^7.0.0" - "@babel/traverse": "npm:^7.20.0" - nullthrows: "npm:^1.1.1" - checksum: 10c0/5c65ee508582385d3ed2e0a4c151c7f45f2ec1fa79d94fb40684c3cb9007c8214954377e26a5bda12060d4c1c193d0c70c1e6e0dfd59801b95b18e0eb5be19fd - languageName: node - linkType: hard - -"metro-transform-worker@npm:0.73.10": - version: 0.73.10 - resolution: "metro-transform-worker@npm:0.73.10" - dependencies: - "@babel/core": "npm:^7.20.0" - "@babel/generator": "npm:^7.20.0" - "@babel/parser": "npm:^7.20.0" - "@babel/types": "npm:^7.20.0" - babel-preset-fbjs: "npm:^3.4.0" - metro: "npm:0.73.10" - metro-babel-transformer: "npm:0.73.10" - metro-cache: "npm:0.73.10" - metro-cache-key: "npm:0.73.10" - metro-hermes-compiler: "npm:0.73.10" - metro-source-map: "npm:0.73.10" - metro-transform-plugins: "npm:0.73.10" - nullthrows: "npm:^1.1.1" - checksum: 10c0/ba2f5bb5fe58dc9a74f64f99dc546b3a46261a7da0a7292ad381f9117208fb46f4e3c3883c02622c36d8415df515a08674b5127ede2e30b41c962d8e438edd36 - languageName: node - linkType: hard - -"metro-transform-worker@npm:0.76.8": - version: 0.76.8 - resolution: "metro-transform-worker@npm:0.76.8" - dependencies: - "@babel/core": "npm:^7.20.0" - "@babel/generator": "npm:^7.20.0" - "@babel/parser": "npm:^7.20.0" - "@babel/types": "npm:^7.20.0" - babel-preset-fbjs: "npm:^3.4.0" - metro: "npm:0.76.8" - metro-babel-transformer: "npm:0.76.8" - metro-cache: "npm:0.76.8" - metro-cache-key: "npm:0.76.8" - metro-source-map: "npm:0.76.8" - metro-transform-plugins: "npm:0.76.8" - nullthrows: "npm:^1.1.1" - checksum: 10c0/f035ae70d5653563452ac9d08aac54b2b0e8d6874ed1b2f9fe7df3fa480b16fc8b71736bb5c235ff4d1c93975ae932ea29acc6c24b76276094efa20bdb3d0c47 - languageName: node - linkType: hard - -"metro-transform-worker@npm:0.80.1": - version: 0.80.1 - resolution: "metro-transform-worker@npm:0.80.1" - dependencies: - "@babel/core": "npm:^7.20.0" - "@babel/generator": "npm:^7.20.0" - "@babel/parser": "npm:^7.20.0" - "@babel/types": "npm:^7.20.0" - metro: "npm:0.80.1" - metro-babel-transformer: "npm:0.80.1" - metro-cache: "npm:0.80.1" - metro-cache-key: "npm:0.80.1" - metro-source-map: "npm:0.80.1" - metro-transform-plugins: "npm:0.80.1" - nullthrows: "npm:^1.1.1" - checksum: 10c0/6cb77d2a06263be3dd3155fe540d8f50e27161bacf2b391673f30bb669686086e03bf4572ab18eb5c719e34768e79f9e4d1433d4aa29cf0b224cf5a6ce96a1de + checksum: 10c0/6a0ad8e38d3088d521020be1b0317c25cf0de348f0eb376310e38ef5b8f1747e4e1c0e167b16a9107b8a164104ad9d5d3435daae2c9671148fc18ed7692efb2e languageName: node linkType: hard -"metro@npm:0.73.10": - version: 0.73.10 - resolution: "metro@npm:0.73.10" +"metro-transform-plugins@npm:0.80.8": + version: 0.80.8 + resolution: "metro-transform-plugins@npm:0.80.8" dependencies: - "@babel/code-frame": "npm:^7.0.0" "@babel/core": "npm:^7.20.0" "@babel/generator": "npm:^7.20.0" - "@babel/parser": "npm:^7.20.0" "@babel/template": "npm:^7.0.0" "@babel/traverse": "npm:^7.20.0" - "@babel/types": "npm:^7.20.0" - absolute-path: "npm:^0.0.0" - accepts: "npm:^1.3.7" - async: "npm:^3.2.2" - chalk: "npm:^4.0.0" - ci-info: "npm:^2.0.0" - connect: "npm:^3.6.5" - debug: "npm:^2.2.0" - denodeify: "npm:^1.2.1" - error-stack-parser: "npm:^2.0.6" - graceful-fs: "npm:^4.2.4" - hermes-parser: "npm:0.8.0" - image-size: "npm:^0.6.0" - invariant: "npm:^2.2.4" - jest-worker: "npm:^27.2.0" - jsc-safe-url: "npm:^0.2.2" - lodash.throttle: "npm:^4.1.1" - metro-babel-transformer: "npm:0.73.10" - metro-cache: "npm:0.73.10" - metro-cache-key: "npm:0.73.10" - metro-config: "npm:0.73.10" - metro-core: "npm:0.73.10" - metro-file-map: "npm:0.73.10" - metro-hermes-compiler: "npm:0.73.10" - metro-inspector-proxy: "npm:0.73.10" - metro-minify-terser: "npm:0.73.10" - metro-minify-uglify: "npm:0.73.10" - metro-react-native-babel-preset: "npm:0.73.10" - metro-resolver: "npm:0.73.10" - metro-runtime: "npm:0.73.10" - metro-source-map: "npm:0.73.10" - metro-symbolicate: "npm:0.73.10" - metro-transform-plugins: "npm:0.73.10" - metro-transform-worker: "npm:0.73.10" - mime-types: "npm:^2.1.27" - node-fetch: "npm:^2.2.0" nullthrows: "npm:^1.1.1" - rimraf: "npm:^3.0.2" - serialize-error: "npm:^2.1.0" - source-map: "npm:^0.5.6" - strip-ansi: "npm:^6.0.0" - temp: "npm:0.8.3" - throat: "npm:^5.0.0" - ws: "npm:^7.5.1" - yargs: "npm:^17.5.1" - bin: - metro: src/cli.js - checksum: 10c0/c324f6246b4d2958f8088054a4edd1c40c2117100c88e5a7be7cc9209ea1a419e6f4687be5f02c75a99c9606a13b2e7aa20973af1e22af3e39f8417819eef0fa + checksum: 10c0/94ebb288518cf199c5318e19b5799440de38c5ccb92afeae491882fe4371bc0b17838d00e037305062271d2bcebe96c6ab9d25683ff6328e2bf835a94e136ad4 languageName: node linkType: hard -"metro@npm:0.76.8": - version: 0.76.8 - resolution: "metro@npm:0.76.8" +"metro-transform-worker@npm:0.80.8": + version: 0.80.8 + resolution: "metro-transform-worker@npm:0.80.8" dependencies: - "@babel/code-frame": "npm:^7.0.0" "@babel/core": "npm:^7.20.0" "@babel/generator": "npm:^7.20.0" "@babel/parser": "npm:^7.20.0" - "@babel/template": "npm:^7.0.0" - "@babel/traverse": "npm:^7.20.0" "@babel/types": "npm:^7.20.0" - accepts: "npm:^1.3.7" - async: "npm:^3.2.2" - chalk: "npm:^4.0.0" - ci-info: "npm:^2.0.0" - connect: "npm:^3.6.5" - debug: "npm:^2.2.0" - denodeify: "npm:^1.2.1" - error-stack-parser: "npm:^2.0.6" - graceful-fs: "npm:^4.2.4" - hermes-parser: "npm:0.12.0" - image-size: "npm:^1.0.2" - invariant: "npm:^2.2.4" - jest-worker: "npm:^27.2.0" - jsc-safe-url: "npm:^0.2.2" - lodash.throttle: "npm:^4.1.1" - metro-babel-transformer: "npm:0.76.8" - metro-cache: "npm:0.76.8" - metro-cache-key: "npm:0.76.8" - metro-config: "npm:0.76.8" - metro-core: "npm:0.76.8" - metro-file-map: "npm:0.76.8" - metro-inspector-proxy: "npm:0.76.8" - metro-minify-terser: "npm:0.76.8" - metro-minify-uglify: "npm:0.76.8" - metro-react-native-babel-preset: "npm:0.76.8" - metro-resolver: "npm:0.76.8" - metro-runtime: "npm:0.76.8" - metro-source-map: "npm:0.76.8" - metro-symbolicate: "npm:0.76.8" - metro-transform-plugins: "npm:0.76.8" - metro-transform-worker: "npm:0.76.8" - mime-types: "npm:^2.1.27" - node-fetch: "npm:^2.2.0" + metro: "npm:0.80.8" + metro-babel-transformer: "npm:0.80.8" + metro-cache: "npm:0.80.8" + metro-cache-key: "npm:0.80.8" + metro-minify-terser: "npm:0.80.8" + metro-source-map: "npm:0.80.8" + metro-transform-plugins: "npm:0.80.8" nullthrows: "npm:^1.1.1" - rimraf: "npm:^3.0.2" - serialize-error: "npm:^2.1.0" - source-map: "npm:^0.5.6" - strip-ansi: "npm:^6.0.0" - throat: "npm:^5.0.0" - ws: "npm:^7.5.1" - yargs: "npm:^17.6.2" - bin: - metro: src/cli.js - checksum: 10c0/2749faf0c96a6c411ddf826f5a6da215b6303a1a84bdccfe124e395beaa85090cb09c3b95db7b11753d9fa2ff2e91d48f6e64728b8273c75989e4b49ce1ba00f + checksum: 10c0/a1bd7aecd4d04da5776d97230af454fd069ab1442c8e2df38c1fb47e4ef5bff9fdd0d74a31bf0a363c4fda5887fd34a8ba7493fe319f1753c7ee6dfcaf1fb1c9 languageName: node linkType: hard -"metro@npm:0.80.1": - version: 0.80.1 - resolution: "metro@npm:0.80.1" +"metro@npm:0.80.8, metro@npm:^0.80.3": + version: 0.80.8 + resolution: "metro@npm:0.80.8" dependencies: "@babel/code-frame": "npm:^7.0.0" "@babel/core": "npm:^7.20.0" @@ -10350,25 +9797,24 @@ __metadata: denodeify: "npm:^1.2.1" error-stack-parser: "npm:^2.0.6" graceful-fs: "npm:^4.2.4" - hermes-parser: "npm:0.17.1" + hermes-parser: "npm:0.20.1" image-size: "npm:^1.0.2" invariant: "npm:^2.2.4" jest-worker: "npm:^29.6.3" jsc-safe-url: "npm:^0.2.2" lodash.throttle: "npm:^4.1.1" - metro-babel-transformer: "npm:0.80.1" - metro-cache: "npm:0.80.1" - metro-cache-key: "npm:0.80.1" - metro-config: "npm:0.80.1" - metro-core: "npm:0.80.1" - metro-file-map: "npm:0.80.1" - metro-minify-terser: "npm:0.80.1" - metro-resolver: "npm:0.80.1" - metro-runtime: "npm:0.80.1" - metro-source-map: "npm:0.80.1" - metro-symbolicate: "npm:0.80.1" - metro-transform-plugins: "npm:0.80.1" - metro-transform-worker: "npm:0.80.1" + metro-babel-transformer: "npm:0.80.8" + metro-cache: "npm:0.80.8" + metro-cache-key: "npm:0.80.8" + metro-config: "npm:0.80.8" + metro-core: "npm:0.80.8" + metro-file-map: "npm:0.80.8" + metro-resolver: "npm:0.80.8" + metro-runtime: "npm:0.80.8" + metro-source-map: "npm:0.80.8" + metro-symbolicate: "npm:0.80.8" + metro-transform-plugins: "npm:0.80.8" + metro-transform-worker: "npm:0.80.8" mime-types: "npm:^2.1.27" node-fetch: "npm:^2.2.0" nullthrows: "npm:^1.1.1" @@ -10381,7 +9827,7 @@ __metadata: yargs: "npm:^17.6.2" bin: metro: src/cli.js - checksum: 10c0/3820555752a7fb1d9d84f44f3b24a7b40a384e730f431a994bd69c39608ca5799f2c2d7513108e670f1f01b1482239b8b23103615a157da968655d05f94475c7 + checksum: 10c0/652f1b1a72cebd641e48b77a042914c532272022ab15008da1e59ee3772c961fff4361180d962f7248ad5b03ed220b03d2d97293599b9b40fa845328f167d955 languageName: node linkType: hard @@ -10511,7 +9957,7 @@ __metadata: languageName: node linkType: hard -"minimist@npm:^1.2.0, minimist@npm:^1.2.5, minimist@npm:^1.2.6, minimist@npm:^1.2.8": +"minimist@npm:^1.2.0, minimist@npm:^1.2.5, minimist@npm:^1.2.6": version: 1.2.8 resolution: "minimist@npm:1.2.8" checksum: 10c0/19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6 @@ -10868,6 +10314,13 @@ __metadata: languageName: node linkType: hard +"node-forge@npm:^1": + version: 1.3.1 + resolution: "node-forge@npm:1.3.1" + checksum: 10c0/e882819b251a4321f9fc1d67c85d1501d3004b4ee889af822fd07f64de3d1a8e272ff00b689570af0465d65d6bf5074df9c76e900e0aff23e60b847f2a46fbe8 + languageName: node + linkType: hard + "node-gyp@npm:^9.0.0, node-gyp@npm:^9.1.0": version: 9.4.1 resolution: "node-gyp@npm:9.4.1" @@ -11261,24 +10714,10 @@ __metadata: languageName: node linkType: hard -"ob1@npm:0.73.10": - version: 0.73.10 - resolution: "ob1@npm:0.73.10" - checksum: 10c0/65a3c9ac9e370cba2f0514ccd8b345ce4f8eefe72824b711ca7ef57b07f102e9f270e9912ccc2b9333690b0f239a8e5bbaaad0d90c53f486656ce4a808e65654 - languageName: node - linkType: hard - -"ob1@npm:0.76.8": - version: 0.76.8 - resolution: "ob1@npm:0.76.8" - checksum: 10c0/9ae7e74ea2cc5237a4655a5930d2121436a68ce601cf56939fe06e2226eafd62a706efbf69bf2e846ed0c252cf85eb4b0016ca37e00f6214a0daeb2096a9ba7c - languageName: node - linkType: hard - -"ob1@npm:0.80.1": - version: 0.80.1 - resolution: "ob1@npm:0.80.1" - checksum: 10c0/ccd7ca1f51a07ab3077b5acea5cf31a82ee1801448d0ff09730386480aa97d904a81f426c53db587a99def9579da58575026b73ac8eca8bea82c686f5d0e63cd +"ob1@npm:0.80.8": + version: 0.80.8 + resolution: "ob1@npm:0.80.8" + checksum: 10c0/0edfd7e09e510208bce747053387a0bf1dd1b756c33800c7b5c57f4ce3df98a0695fc249b3cb605bc1777152e2d5671489753d3966bd8201a0ae5b0b57aa66de languageName: node linkType: hard @@ -11419,6 +10858,16 @@ __metadata: languageName: node linkType: hard +"open@npm:^7.0.3": + version: 7.4.2 + resolution: "open@npm:7.4.2" + dependencies: + is-docker: "npm:^2.0.0" + is-wsl: "npm:^2.1.1" + checksum: 10c0/77573a6a68f7364f3a19a4c80492712720746b63680ee304555112605ead196afe91052bd3c3d165efdf4e9d04d255e87de0d0a77acec11ef47fd5261251813f + languageName: node + linkType: hard + "opener@npm:^1.5.2": version: 1.5.2 resolution: "opener@npm:1.5.2" @@ -11484,13 +10933,6 @@ __metadata: languageName: node linkType: hard -"os-tmpdir@npm:^1.0.0": - version: 1.0.2 - resolution: "os-tmpdir@npm:1.0.2" - checksum: 10c0/f438450224f8e2687605a8dd318f0db694b6293c5d835ae509a69e97c8de38b6994645337e5577f5001115470414638978cc49da1cdcc25106dad8738dc69990 - languageName: node - linkType: hard - "p-cancelable@npm:^2.0.0": version: 2.1.1 resolution: "p-cancelable@npm:2.1.1" @@ -11999,7 +11441,7 @@ __metadata: languageName: node linkType: hard -"prompts@npm:^2.0.1, prompts@npm:^2.4.0, prompts@npm:^2.4.1": +"prompts@npm:^2.0.1, prompts@npm:^2.4.0, prompts@npm:^2.4.1, prompts@npm:^2.4.2": version: 2.4.2 resolution: "prompts@npm:2.4.2" dependencies: @@ -12094,6 +11536,13 @@ __metadata: languageName: node linkType: hard +"querystring@npm:^0.2.1": + version: 0.2.1 + resolution: "querystring@npm:0.2.1" + checksum: 10c0/6841b32bec4f16ffe7f5b5e4373b47ad451f079cde3a7f45e63e550f0ecfd8f8189ef81fb50079413b3fc1c59b06146e4c98192cb74ed7981aca72090466cd94 + languageName: node + linkType: hard + "queue-microtask@npm:^1.2.2": version: 1.2.3 resolution: "queue-microtask@npm:1.2.3" @@ -12145,7 +11594,7 @@ __metadata: languageName: node linkType: hard -"react-devtools-core@npm:^4.26.1, react-devtools-core@npm:^4.27.2": +"react-devtools-core@npm:^4.27.7": version: 4.28.5 resolution: "react-devtools-core@npm:4.28.5" dependencies: @@ -12176,21 +11625,9 @@ __metadata: languageName: node linkType: hard -"react-native-codegen@npm:^0.71.5": - version: 0.71.6 - resolution: "react-native-codegen@npm:0.71.6" - dependencies: - "@babel/parser": "npm:^7.14.0" - flow-parser: "npm:^0.185.0" - jscodeshift: "npm:^0.14.0" - nullthrows: "npm:^1.1.1" - checksum: 10c0/7daca7b2317dda277a4f8f230ac141ef575c0e6376eeb3cd333480fea9dc41b0b4e31b8521c1f9d496f7cd887e47c4885f2d330c902ddb07539e7af764a4109c - languageName: node - linkType: hard - "react-native-localize@npm:^3.0.3": - version: 3.0.3 - resolution: "react-native-localize@npm:3.0.3" + version: 3.1.0 + resolution: "react-native-localize@npm:3.1.0" peerDependencies: react: ">=18.1.0" react-native: ">=0.70.0" @@ -12198,30 +11635,32 @@ __metadata: peerDependenciesMeta: react-native-macos: optional: true - checksum: 10c0/851ae36b46a31876289abd20b6219623d19cff74a162f9a4310175144ba54d31830c9f940c70fd0ab458ce1400e4fc1a3d83044022eee9ef2c2e821c02e11ae4 + checksum: 10c0/0a98c3d05d090c34ada84756d1a0341f313f3f73d1281686fe8c972d5d4e996172a5ff053b8908153e396729755bf576c24ed46886afe82438fa465e010def7a languageName: node linkType: hard -"react-native-test-app@npm:^2.5.32": - version: 2.5.33 - resolution: "react-native-test-app@npm:2.5.33" +"react-native-test-app@npm:^3.5.3": + version: 3.5.3 + resolution: "react-native-test-app@npm:3.5.3" dependencies: - "@rnx-kit/react-native-host": "npm:^0.2.8" + "@rnx-kit/react-native-host": "npm:^0.4.6" ajv: "npm:^8.0.0" - chalk: "npm:^4.1.0" cliui: "npm:^8.0.0" fast-xml-parser: "npm:^4.0.0" - minimist: "npm:^1.2.8" prompts: "npm:^2.4.0" semver: "npm:^7.3.5" - uuid: "npm:^8.3.2" + uuid: "npm:^9.0.0" + yoctocolors: "npm:^2.0.0" peerDependencies: + "@callstack/react-native-visionos": 0.73 - 0.74 "@expo/config-plugins": ">=5.0" - react: ~17.0.1 || ~18.0.0 || ~18.1.0 || ~18.2.0 - react-native: ^0.0.0-0 || 0.64 - 0.72 || 1000.0.0 - react-native-macos: ^0.0.0-0 || 0.64 || 0.66 || 0.68 || 0.71 - 0.72 - react-native-windows: ^0.0.0-0 || 0.64 - 0.72 + react: 17.0.1 - 18.2 + react-native: 0.66 - 0.74 || >=0.75.0-0 <0.75.0 + react-native-macos: ^0.0.0-0 || 0.66 || 0.68 || 0.71 - 0.73 + react-native-windows: ^0.0.0-0 || 0.66 - 0.73 peerDependenciesMeta: + "@callstack/react-native-visionos": + optional: true "@expo/config-plugins": optional: true react-native-macos: @@ -12229,97 +11668,105 @@ __metadata: react-native-windows: optional: true bin: - configure-test-app: scripts/configure.js - init: scripts/init.js - init-test-app: scripts/init.js - install-windows-test-app: windows/test-app.js - checksum: 10c0/fe7148569cebc06711c40aa09bcd29cb49cf1fb189e7f46147e9b78d8206ca994426ed57cb743bca767663c943b645ed2fdd999f95f396c98a74ac1ce2186659 + configure-test-app: scripts/configure.mjs + init: scripts/init.mjs + init-test-app: scripts/init.mjs + install-windows-test-app: windows/test-app.mjs + checksum: 10c0/b24cfdd0de8e850c8442da348926301c3f36e970d07cbc25e2dd68e99fb31959d6cfc9428d98aad18f0612a22dcae726bff41be3c02500a9ade397abc6e873e6 languageName: node linkType: hard -"react-native-windows@npm:^0.71.3": - version: 0.71.43 - resolution: "react-native-windows@npm:0.71.43" +"react-native-windows@npm:^0.73.0": + version: 0.73.11 + resolution: "react-native-windows@npm:0.73.11" dependencies: "@babel/runtime": "npm:^7.0.0" - "@jest/create-cache-key-function": "npm:^29.2.1" - "@react-native-community/cli": "npm:10.2.4" - "@react-native-community/cli-platform-android": "npm:10.2.0" - "@react-native-community/cli-platform-ios": "npm:10.2.4" - "@react-native-windows/cli": "npm:0.71.19" - "@react-native/assets": "npm:1.0.0" - "@react-native/normalize-color": "npm:2.1.0" - "@react-native/polyfills": "npm:2.0.0" + "@jest/create-cache-key-function": "npm:^29.6.3" + "@react-native-community/cli": "npm:12.3.6" + "@react-native-community/cli-platform-android": "npm:12.3.6" + "@react-native-community/cli-platform-ios": "npm:12.3.6" + "@react-native-windows/cli": "npm:0.73.2" + "@react-native/assets-registry": "npm:0.73.1" + "@react-native/codegen": "npm:0.73.3" + "@react-native/community-cli-plugin": "npm:0.73.17" + "@react-native/gradle-plugin": "npm:0.73.4" + "@react-native/js-polyfills": "npm:0.73.1" + "@react-native/normalize-colors": "npm:0.73.2" + "@react-native/virtualized-lists": "npm:0.73.4" abort-controller: "npm:^3.0.0" anser: "npm:^1.4.9" - base64-js: "npm:^1.1.2" - deprecated-react-native-prop-types: "npm:^3.0.1" + ansi-regex: "npm:^5.0.0" + base64-js: "npm:^1.5.1" + chalk: "npm:^4.0.0" + deprecated-react-native-prop-types: "npm:^5.0.0" event-target-shim: "npm:^5.0.1" + flow-enums-runtime: "npm:^0.0.6" invariant: "npm:^2.2.4" - jest-environment-node: "npm:^29.2.1" + jest-environment-node: "npm:^29.6.3" + jsc-android: "npm:^250231.0.0" memoize-one: "npm:^5.0.0" - metro-react-native-babel-transformer: "npm:0.73.10" - metro-runtime: "npm:0.73.10" - metro-source-map: "npm:0.73.10" + metro-runtime: "npm:^0.80.3" + metro-source-map: "npm:^0.80.3" mkdirp: "npm:^0.5.1" nullthrows: "npm:^1.1.1" pretty-format: "npm:^26.5.2" promise: "npm:^8.3.0" - react-devtools-core: "npm:^4.26.1" - react-native-codegen: "npm:^0.71.5" - react-refresh: "npm:^0.4.0" + react-devtools-core: "npm:^4.27.7" + react-refresh: "npm:^0.14.0" react-shallow-renderer: "npm:^16.15.0" regenerator-runtime: "npm:^0.13.2" - scheduler: "npm:^0.23.0" + scheduler: "npm:0.24.0-canary-efb381bbf-20230505" source-map-support: "npm:^0.5.19" - stacktrace-parser: "npm:^0.1.3" - use-sync-external-store: "npm:^1.0.0" + stacktrace-parser: "npm:^0.1.10" whatwg-fetch: "npm:^3.0.0" ws: "npm:^6.2.2" + yargs: "npm:^17.6.2" peerDependencies: react: 18.2.0 - react-native: ^0.71.0 - checksum: 10c0/5bce7717bb44aba8001bfced1a50e378605c099ada4aa04f70aa65c8e79fd52fff669872d7d0aad19d843c68b2ea7700f6400692e1f6a8606738a3818de48bd5 - languageName: node - linkType: hard - -"react-native@npm:^0.72.7": - version: 0.72.7 - resolution: "react-native@npm:0.72.7" - dependencies: - "@jest/create-cache-key-function": "npm:^29.2.1" - "@react-native-community/cli": "npm:11.3.10" - "@react-native-community/cli-platform-android": "npm:11.3.10" - "@react-native-community/cli-platform-ios": "npm:11.3.10" - "@react-native/assets-registry": "npm:^0.72.0" - "@react-native/codegen": "npm:^0.72.7" - "@react-native/gradle-plugin": "npm:^0.72.11" - "@react-native/js-polyfills": "npm:^0.72.1" - "@react-native/normalize-colors": "npm:^0.72.0" - "@react-native/virtualized-lists": "npm:^0.72.8" + react-native: ^0.73.0 + checksum: 10c0/e7b045bcfde2929a9a76e381e3703790b74d61bde32ea07c49156246d455889e13c66ab288c80f5d66ad43940d35ee68527c378dec1a3e5a3db3882943739dd5 + languageName: node + linkType: hard + +"react-native@npm:^0.73.0": + version: 0.73.7 + resolution: "react-native@npm:0.73.7" + dependencies: + "@jest/create-cache-key-function": "npm:^29.6.3" + "@react-native-community/cli": "npm:12.3.6" + "@react-native-community/cli-platform-android": "npm:12.3.6" + "@react-native-community/cli-platform-ios": "npm:12.3.6" + "@react-native/assets-registry": "npm:0.73.1" + "@react-native/codegen": "npm:0.73.3" + "@react-native/community-cli-plugin": "npm:0.73.17" + "@react-native/gradle-plugin": "npm:0.73.4" + "@react-native/js-polyfills": "npm:0.73.1" + "@react-native/normalize-colors": "npm:0.73.2" + "@react-native/virtualized-lists": "npm:0.73.4" abort-controller: "npm:^3.0.0" anser: "npm:^1.4.9" - base64-js: "npm:^1.1.2" - deprecated-react-native-prop-types: "npm:^4.2.3" + ansi-regex: "npm:^5.0.0" + base64-js: "npm:^1.5.1" + chalk: "npm:^4.0.0" + deprecated-react-native-prop-types: "npm:^5.0.0" event-target-shim: "npm:^5.0.1" - flow-enums-runtime: "npm:^0.0.5" + flow-enums-runtime: "npm:^0.0.6" invariant: "npm:^2.2.4" - jest-environment-node: "npm:^29.2.1" + jest-environment-node: "npm:^29.6.3" jsc-android: "npm:^250231.0.0" memoize-one: "npm:^5.0.0" - metro-runtime: "npm:0.76.8" - metro-source-map: "npm:0.76.8" + metro-runtime: "npm:^0.80.3" + metro-source-map: "npm:^0.80.3" mkdirp: "npm:^0.5.1" nullthrows: "npm:^1.1.1" pretty-format: "npm:^26.5.2" promise: "npm:^8.3.0" - react-devtools-core: "npm:^4.27.2" - react-refresh: "npm:^0.4.0" + react-devtools-core: "npm:^4.27.7" + react-refresh: "npm:^0.14.0" react-shallow-renderer: "npm:^16.15.0" regenerator-runtime: "npm:^0.13.2" scheduler: "npm:0.24.0-canary-efb381bbf-20230505" stacktrace-parser: "npm:^0.1.10" - use-sync-external-store: "npm:^1.0.0" whatwg-fetch: "npm:^3.0.0" ws: "npm:^6.2.2" yargs: "npm:^17.6.2" @@ -12327,7 +11774,7 @@ __metadata: react: 18.2.0 bin: react-native: cli.js - checksum: 10c0/c5f70323983401c55a301b518c615d6989199fa882f721994df9cfdf53989d38c6c1a658514d613fe89b932691b4df156ed0a72914b1c01c79f897e42bda1193 + checksum: 10c0/0968ee39defc3f0a8832650cfbeeaf0fcd23839cd364ea5e013883b03db74aae0852c33b78af9006f12698678195e9e3409005790bdb315b14da160c8d3d8835 languageName: node linkType: hard @@ -12338,13 +11785,6 @@ __metadata: languageName: node linkType: hard -"react-refresh@npm:^0.4.0": - version: 0.4.3 - resolution: "react-refresh@npm:0.4.3" - checksum: 10c0/2b4e4b14b54bfbdfdd6d1c16b8476151b3e61083387061d4e5923b0342c678f6d0f23705835c3a04ab151bd92551d437395da3fb52ea7461a408f457d11ac6fa - languageName: node - linkType: hard - "react-shallow-renderer@npm:^16.15.0": version: 16.15.0 resolution: "react-shallow-renderer@npm:16.15.0" @@ -12431,6 +11871,16 @@ __metadata: languageName: node linkType: hard +"read-yaml-file@npm:^2.1.0": + version: 2.1.0 + resolution: "read-yaml-file@npm:2.1.0" + dependencies: + js-yaml: "npm:^4.0.0" + strip-bom: "npm:^4.0.0" + checksum: 10c0/bad0673abe78a5bde7c53b22ee7cdd0dfe49ab7338a4ad8618be9fcd2fd25ab9ae60d395907fddbfb2e7fbbf494867aeec78295c2396bec2669fd7087d2734c1 + languageName: node + linkType: hard + "read@npm:1, read@npm:^1.0.7, read@npm:~1.0.7": version: 1.0.7 resolution: "read@npm:1.0.7" @@ -12796,15 +12246,6 @@ __metadata: languageName: node linkType: hard -"rimraf@npm:~2.2.6": - version: 2.2.8 - resolution: "rimraf@npm:2.2.8" - bin: - rimraf: ./bin.js - checksum: 10c0/5d3ce4c1e874d184dbd416371730819f565ae6bd920f61c742a0704d6e23ae2c95f45f0d8bc20a4f9068342101f9c1656906fb086a18497f4a0f03db3c1610fa - languageName: node - linkType: hard - "rimraf@npm:~2.4.0": version: 2.4.5 resolution: "rimraf@npm:2.4.5" @@ -12914,6 +12355,16 @@ __metadata: languageName: node linkType: hard +"selfsigned@npm:^2.4.1": + version: 2.4.1 + resolution: "selfsigned@npm:2.4.1" + dependencies: + "@types/node-forge": "npm:^1.3.0" + node-forge: "npm:^1" + checksum: 10c0/521829ec36ea042f7e9963bf1da2ed040a815cf774422544b112ec53b7edc0bc50a0f8cc2ae7aa6cc19afa967c641fd96a15de0fc650c68651e41277d2e1df09 + languageName: node + linkType: hard + "semantic-release@npm:^19.0.3": version: 19.0.5 resolution: "semantic-release@npm:19.0.5" @@ -13433,7 +12884,7 @@ __metadata: languageName: node linkType: hard -"stacktrace-parser@npm:^0.1.10, stacktrace-parser@npm:^0.1.3": +"stacktrace-parser@npm:^0.1.10": version: 0.1.10 resolution: "stacktrace-parser@npm:0.1.10" dependencies: @@ -13775,16 +13226,6 @@ __metadata: languageName: node linkType: hard -"temp@npm:0.8.3": - version: 0.8.3 - resolution: "temp@npm:0.8.3" - dependencies: - os-tmpdir: "npm:^1.0.0" - rimraf: "npm:~2.2.6" - checksum: 10c0/649453e503d073f5b8fc7f8a15f3847cbc949a4b41a07e75a43562de1d87a880211f5487b9e7e32ebc8b26140e4907389d22fd1ec74987a4f6c930e8ae9d3dbb - languageName: node - linkType: hard - "temp@npm:^0.8.4": version: 0.8.4 resolution: "temp@npm:0.8.4" @@ -14143,18 +13584,6 @@ __metadata: languageName: node linkType: hard -"uglify-es@npm:^3.1.9": - version: 3.3.9 - resolution: "uglify-es@npm:3.3.9" - dependencies: - commander: "npm:~2.13.0" - source-map: "npm:~0.6.1" - bin: - uglifyjs: bin/uglifyjs - checksum: 10c0/b591de4ea2c7153f446f80f2559bbabcb4ff53a17dbfd27b9bb980b31f5fb7e563bdae6e9abc07d97ecb484ac4ceba4c7a207e6854cb2aaca72e80e6090c989e - languageName: node - linkType: hard - "uglify-js@npm:^3.1.4": version: 3.17.4 resolution: "uglify-js@npm:3.17.4" @@ -14317,15 +13746,6 @@ __metadata: languageName: node linkType: hard -"use-sync-external-store@npm:^1.0.0": - version: 1.2.0 - resolution: "use-sync-external-store@npm:1.2.0" - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - checksum: 10c0/ac4814e5592524f242921157e791b022efe36e451fe0d4fd4d204322d5433a4fc300d63b0ade5185f8e0735ded044c70bcf6d2352db0f74d097a238cebd2da02 - languageName: node - linkType: hard - "username@npm:^5.1.0": version: 5.1.0 resolution: "username@npm:5.1.0" @@ -14366,7 +13786,7 @@ __metadata: languageName: node linkType: hard -"uuid@npm:^8.3.0, uuid@npm:^8.3.2": +"uuid@npm:^8.3.0": version: 8.3.2 resolution: "uuid@npm:8.3.2" bin: @@ -14375,6 +13795,15 @@ __metadata: languageName: node linkType: hard +"uuid@npm:^9.0.0": + version: 9.0.1 + resolution: "uuid@npm:9.0.1" + bin: + uuid: dist/bin/uuid + checksum: 10c0/1607dd32ac7fc22f2d8f77051e6a64845c9bce5cd3dd8aa0070c074ec73e666a1f63c7b4e0f4bf2bc8b9d59dc85a15e17807446d9d2b17c8485fbc2147b27f9b + languageName: node + linkType: hard + "v8-to-istanbul@npm:^9.0.1": version: 9.2.0 resolution: "v8-to-istanbul@npm:9.2.0" @@ -14825,7 +14254,7 @@ __metadata: languageName: node linkType: hard -"yargs@npm:^17.0.0, yargs@npm:^17.3.1, yargs@npm:^17.5.1, yargs@npm:^17.6.2": +"yargs@npm:^17.0.0, yargs@npm:^17.3.1, yargs@npm:^17.6.2": version: 17.7.2 resolution: "yargs@npm:17.7.2" dependencies: @@ -14846,3 +14275,10 @@ __metadata: checksum: 10c0/dceb44c28578b31641e13695d200d34ec4ab3966a5729814d5445b194933c096b7ced71494ce53a0e8820685d1d010df8b2422e5bf2cdea7e469d97ffbea306f languageName: node linkType: hard + +"yoctocolors@npm:^2.0.0": + version: 2.0.0 + resolution: "yoctocolors@npm:2.0.0" + checksum: 10c0/994f5d99e7647a1b333331ffecbbf7c4463d9c2823e371b44e21146a4496cad0f14fbe2f73f44383312a6f843d93523f830f1360009f0ac93027b167ef5c63be + languageName: node + linkType: hard From 35ffc223202ef9082f6cf85aa7f298f9a7383349 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Mon, 22 Apr 2024 16:14:54 -0700 Subject: [PATCH 02/11] Try remove test butler --- .detoxrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.detoxrc.js b/.detoxrc.js index 825af42b..4cb580b1 100644 --- a/.detoxrc.js +++ b/.detoxrc.js @@ -14,7 +14,7 @@ module.exports = { }, emulator: { type: 'android.emulator', - utilBinaryPaths: ['example/e2e/test-butler-app.apk'], + // utilBinaryPaths: ['example/e2e/test-butler-app.apk'], device: { avdName: 'TestingAVD', }, From e2229d4a2da57786f5a248323513825700a8cd39 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 24 Apr 2024 06:54:11 -0700 Subject: [PATCH 03/11] Remove E2E tests for Android new arch --- .circleci/config.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9b82da3c..b1b13086 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -127,7 +127,7 @@ jobs: path: ./artifacts - e2e_release_android_new_arch: + new_arch_android_build_only: executor: name: android/android-machine resource-class: large @@ -164,9 +164,6 @@ jobs: name: build app for e2e tests # - android/wait-for-emulator # - android/disable-animations - - run: - command: yarn detox:android:test:release - name: run e2e tests - store_artifacts: path: ./artifacts @@ -191,12 +188,12 @@ workflows: - analyse_js - e2e_release_ios - e2e_release_android - - e2e_release_android_new_arch + - new_arch_android_build_only - new_arch_ios_build_only - publish: requires: - e2e_release_android - - e2e_release_android_new_arch + - new_arch_android_build_only - e2e_release_ios - new_arch_ios_build_only filters: From b1d1621558bc420d72ac3280f47ad6fb4280bd71 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 24 Apr 2024 07:02:32 -0700 Subject: [PATCH 04/11] Pick up main's version of ComponentDescriptor --- .../RNDateTimePicker/ComponentDescriptors.h | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/ios/fabric/cpp/react/renderer/components/RNDateTimePicker/ComponentDescriptors.h b/ios/fabric/cpp/react/renderer/components/RNDateTimePicker/ComponentDescriptors.h index cfd07b47..d51a3272 100644 --- a/ios/fabric/cpp/react/renderer/components/RNDateTimePicker/ComponentDescriptors.h +++ b/ios/fabric/cpp/react/renderer/components/RNDateTimePicker/ComponentDescriptors.h @@ -18,18 +18,13 @@ class RNDateTimePickerComponentDescriptor final : public ConcreteComponentDescri public: using ConcreteComponentDescriptor::ConcreteComponentDescriptor; - void adopt(ShadowNode &shadowNode) const override { - react_native_assert(dynamic_cast(&shadowNode)); - auto &pickerShadowNode = static_cast(shadowNode); - - react_native_assert( - dynamic_cast(&pickerShadowNode)); - auto &layoutableShadowNode = - static_cast(pickerShadowNode); + void adopt(ShadowNode& shadowNode) const override { + auto& pickerShadowNode = static_cast(shadowNode); + auto& layoutableShadowNode = static_cast(pickerShadowNode); auto state = std::static_pointer_cast(shadowNode.getState()); auto stateData = state->getData(); - + if(stateData.frameSize.width != 0 && stateData.frameSize.height != 0) { layoutableShadowNode.setSize(Size{stateData.frameSize.width, stateData.frameSize.height}); } From 4a1489d579844321839d5b3069c073f9ecf65a69 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 24 Apr 2024 07:19:23 -0700 Subject: [PATCH 05/11] Update react-native-localize and locks --- example/ios/Podfile.lock | 564 ++++++++++++++++++++-------------- example/visionos/Podfile.lock | 140 +++++++-- package.json | 2 +- yarn.lock | 4 +- 4 files changed, 448 insertions(+), 262 deletions(-) diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 0547812c..abf79e8d 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1,14 +1,7 @@ PODS: - boost (1.83.0) - DoubleConversion (1.1.6) - - FBLazyVector (0.73.6) - - FBReactNativeSpec (0.73.6): - - RCT-Folly (= 2022.05.16.00) - - RCTRequired (= 0.73.6) - - RCTTypeSafety (= 0.73.6) - - React-Core (= 0.73.6) - - React-jsi (= 0.73.6) - - ReactCommon/turbomodule/core (= 0.73.6) + - FBLazyVector (0.73.7) - fmt (6.2.1) - glog (0.3.5) - RCT-Folly (2022.05.16.00): @@ -27,44 +20,48 @@ PODS: - DoubleConversion - fmt (~> 6.2.1) - glog - - RCTRequired (0.73.6) - - RCTTypeSafety (0.73.6): - - FBLazyVector (= 0.73.6) - - RCTRequired (= 0.73.6) - - React-Core (= 0.73.6) - - React (0.73.6): - - React-Core (= 0.73.6) - - React-Core/DevSupport (= 0.73.6) - - React-Core/RCTWebSocket (= 0.73.6) - - React-RCTActionSheet (= 0.73.6) - - React-RCTAnimation (= 0.73.6) - - React-RCTBlob (= 0.73.6) - - React-RCTImage (= 0.73.6) - - React-RCTLinking (= 0.73.6) - - React-RCTNetwork (= 0.73.6) - - React-RCTSettings (= 0.73.6) - - React-RCTText (= 0.73.6) - - React-RCTVibration (= 0.73.6) - - React-callinvoker (0.73.6) - - React-Codegen (0.73.6): + - RCTRequired (0.73.7) + - RCTTypeSafety (0.73.7): + - FBLazyVector (= 0.73.7) + - RCTRequired (= 0.73.7) + - React-Core (= 0.73.7) + - React (0.73.7): + - React-Core (= 0.73.7) + - React-Core/DevSupport (= 0.73.7) + - React-Core/RCTWebSocket (= 0.73.7) + - React-RCTActionSheet (= 0.73.7) + - React-RCTAnimation (= 0.73.7) + - React-RCTBlob (= 0.73.7) + - React-RCTImage (= 0.73.7) + - React-RCTLinking (= 0.73.7) + - React-RCTNetwork (= 0.73.7) + - React-RCTSettings (= 0.73.7) + - React-RCTText (= 0.73.7) + - React-RCTVibration (= 0.73.7) + - React-callinvoker (0.73.7) + - React-Codegen (0.73.7): - DoubleConversion - - FBReactNativeSpec - glog - RCT-Folly - RCTRequired - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-FabricImage + - React-graphics - React-jsc - React-jsi - React-jsiexecutor - React-NativeModulesApple - - React-rncore + - React-rendererdebug + - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-Core (0.73.6): + - React-Core (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.6) + - React-Core/Default (= 0.73.7) - React-cxxreact - React-jsc - React-jsi @@ -74,7 +71,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/CoreModulesHeaders (0.73.6): + - React-Core/CoreModulesHeaders (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-Core/Default @@ -87,7 +84,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/Default (0.73.6): + - React-Core/Default (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-cxxreact @@ -99,22 +96,22 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/DevSupport (0.73.6): + - React-Core/DevSupport (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.6) - - React-Core/RCTWebSocket (= 0.73.6) + - React-Core/Default (= 0.73.7) + - React-Core/RCTWebSocket (= 0.73.7) - React-cxxreact - React-jsc - React-jsi - React-jsiexecutor - - React-jsinspector (= 0.73.6) + - React-jsinspector (= 0.73.7) - React-perflogger - React-runtimescheduler - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTActionSheetHeaders (0.73.6): + - React-Core/RCTActionSheetHeaders (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-Core/Default @@ -127,7 +124,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTAnimationHeaders (0.73.6): + - React-Core/RCTAnimationHeaders (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-Core/Default @@ -140,7 +137,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTBlobHeaders (0.73.6): + - React-Core/RCTBlobHeaders (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-Core/Default @@ -153,7 +150,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTImageHeaders (0.73.6): + - React-Core/RCTImageHeaders (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-Core/Default @@ -166,7 +163,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTLinkingHeaders (0.73.6): + - React-Core/RCTLinkingHeaders (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-Core/Default @@ -179,7 +176,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTNetworkHeaders (0.73.6): + - React-Core/RCTNetworkHeaders (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-Core/Default @@ -192,7 +189,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTSettingsHeaders (0.73.6): + - React-Core/RCTSettingsHeaders (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-Core/Default @@ -205,7 +202,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTTextHeaders (0.73.6): + - React-Core/RCTTextHeaders (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-Core/Default @@ -218,7 +215,7 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTVibrationHeaders (0.73.6): + - React-Core/RCTVibrationHeaders (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-Core/Default @@ -231,10 +228,10 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-Core/RCTWebSocket (0.73.6): + - React-Core/RCTWebSocket (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.6) + - React-Core/Default (= 0.73.7) - React-cxxreact - React-jsc - React-jsi @@ -244,32 +241,32 @@ PODS: - React-utils - SocketRocket (= 0.6.1) - Yoga - - React-CoreModules (0.73.6): + - React-CoreModules (0.73.7): - RCT-Folly (= 2022.05.16.00) - - RCTTypeSafety (= 0.73.6) + - RCTTypeSafety (= 0.73.7) - React-Codegen - - React-Core/CoreModulesHeaders (= 0.73.6) - - React-jsi (= 0.73.6) + - React-Core/CoreModulesHeaders (= 0.73.7) + - React-jsi (= 0.73.7) - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.73.6) + - React-RCTImage (= 0.73.7) - ReactCommon - SocketRocket (= 0.6.1) - - React-cxxreact (0.73.6): + - React-cxxreact (0.73.7): - boost (= 1.83.0) - DoubleConversion - fmt (~> 6.2.1) - glog - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.6) - - React-debug (= 0.73.6) - - React-jsi (= 0.73.6) - - React-jsinspector (= 0.73.6) - - React-logger (= 0.73.6) - - React-perflogger (= 0.73.6) - - React-runtimeexecutor (= 0.73.6) - - React-debug (0.73.6) - - React-Fabric (0.73.6): + - React-callinvoker (= 0.73.7) + - React-debug (= 0.73.7) + - React-jsi (= 0.73.7) + - React-jsinspector (= 0.73.7) + - React-logger (= 0.73.7) + - React-perflogger (= 0.73.7) + - React-runtimeexecutor (= 0.73.7) + - React-debug (0.73.7) + - React-Fabric (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -279,20 +276,20 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.73.6) - - React-Fabric/attributedstring (= 0.73.6) - - React-Fabric/componentregistry (= 0.73.6) - - React-Fabric/componentregistrynative (= 0.73.6) - - React-Fabric/components (= 0.73.6) - - React-Fabric/core (= 0.73.6) - - React-Fabric/imagemanager (= 0.73.6) - - React-Fabric/leakchecker (= 0.73.6) - - React-Fabric/mounting (= 0.73.6) - - React-Fabric/scheduler (= 0.73.6) - - React-Fabric/telemetry (= 0.73.6) - - React-Fabric/templateprocessor (= 0.73.6) - - React-Fabric/textlayoutmanager (= 0.73.6) - - React-Fabric/uimanager (= 0.73.6) + - React-Fabric/animations (= 0.73.7) + - React-Fabric/attributedstring (= 0.73.7) + - React-Fabric/componentregistry (= 0.73.7) + - React-Fabric/componentregistrynative (= 0.73.7) + - React-Fabric/components (= 0.73.7) + - React-Fabric/core (= 0.73.7) + - React-Fabric/imagemanager (= 0.73.7) + - React-Fabric/leakchecker (= 0.73.7) + - React-Fabric/mounting (= 0.73.7) + - React-Fabric/scheduler (= 0.73.7) + - React-Fabric/telemetry (= 0.73.7) + - React-Fabric/templateprocessor (= 0.73.7) + - React-Fabric/textlayoutmanager (= 0.73.7) + - React-Fabric/uimanager (= 0.73.7) - React-graphics - React-jsc - React-jsi @@ -302,7 +299,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.73.6): + - React-Fabric/animations (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -321,7 +318,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.73.6): + - React-Fabric/attributedstring (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -340,7 +337,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.73.6): + - React-Fabric/componentregistry (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -359,7 +356,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.73.6): + - React-Fabric/componentregistrynative (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -378,7 +375,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.73.6): + - React-Fabric/components (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -388,17 +385,17 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/inputaccessory (= 0.73.6) - - React-Fabric/components/legacyviewmanagerinterop (= 0.73.6) - - React-Fabric/components/modal (= 0.73.6) - - React-Fabric/components/rncore (= 0.73.6) - - React-Fabric/components/root (= 0.73.6) - - React-Fabric/components/safeareaview (= 0.73.6) - - React-Fabric/components/scrollview (= 0.73.6) - - React-Fabric/components/text (= 0.73.6) - - React-Fabric/components/textinput (= 0.73.6) - - React-Fabric/components/unimplementedview (= 0.73.6) - - React-Fabric/components/view (= 0.73.6) + - React-Fabric/components/inputaccessory (= 0.73.7) + - React-Fabric/components/legacyviewmanagerinterop (= 0.73.7) + - React-Fabric/components/modal (= 0.73.7) + - React-Fabric/components/rncore (= 0.73.7) + - React-Fabric/components/root (= 0.73.7) + - React-Fabric/components/safeareaview (= 0.73.7) + - React-Fabric/components/scrollview (= 0.73.7) + - React-Fabric/components/text (= 0.73.7) + - React-Fabric/components/textinput (= 0.73.7) + - React-Fabric/components/unimplementedview (= 0.73.7) + - React-Fabric/components/view (= 0.73.7) - React-graphics - React-jsc - React-jsi @@ -408,7 +405,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/inputaccessory (0.73.6): + - React-Fabric/components/inputaccessory (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -427,7 +424,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.73.6): + - React-Fabric/components/legacyviewmanagerinterop (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -446,7 +443,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/modal (0.73.6): + - React-Fabric/components/modal (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -465,7 +462,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/rncore (0.73.6): + - React-Fabric/components/rncore (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -484,7 +481,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.73.6): + - React-Fabric/components/root (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -503,7 +500,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/safeareaview (0.73.6): + - React-Fabric/components/safeareaview (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -522,7 +519,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/scrollview (0.73.6): + - React-Fabric/components/scrollview (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -541,7 +538,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/text (0.73.6): + - React-Fabric/components/text (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -560,7 +557,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/textinput (0.73.6): + - React-Fabric/components/textinput (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -579,7 +576,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/unimplementedview (0.73.6): + - React-Fabric/components/unimplementedview (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -598,7 +595,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.73.6): + - React-Fabric/components/view (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -618,7 +615,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.73.6): + - React-Fabric/core (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -637,7 +634,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.73.6): + - React-Fabric/imagemanager (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -656,7 +653,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.73.6): + - React-Fabric/leakchecker (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -675,7 +672,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.73.6): + - React-Fabric/mounting (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -694,7 +691,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.73.6): + - React-Fabric/scheduler (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -713,7 +710,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.73.6): + - React-Fabric/telemetry (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -732,7 +729,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.73.6): + - React-Fabric/templateprocessor (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -751,7 +748,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/textlayoutmanager (0.73.6): + - React-Fabric/textlayoutmanager (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -771,7 +768,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.73.6): + - React-Fabric/uimanager (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog @@ -790,30 +787,30 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricImage (0.73.6): + - React-FabricImage (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.6) - - RCTTypeSafety (= 0.73.6) + - RCTRequired (= 0.73.7) + - RCTTypeSafety (= 0.73.7) - React-Fabric - React-graphics - React-ImageManager - React-jsc - React-jsi - - React-jsiexecutor (= 0.73.6) + - React-jsiexecutor (= 0.73.7) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-graphics (0.73.6): + - React-graphics (0.73.7): - glog - RCT-Folly/Fabric (= 2022.05.16.00) - - React-Core/Default (= 0.73.6) + - React-Core/Default (= 0.73.7) - React-utils - - React-ImageManager (0.73.6): + - React-ImageManager (0.73.7): - glog - RCT-Folly/Fabric - React-Core/Default @@ -822,40 +819,42 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jsc (0.73.6): - - React-jsc/Fabric (= 0.73.6) - - React-jsi (= 0.73.6) - - React-jsc/Fabric (0.73.6): - - React-jsi (= 0.73.6) - - React-jserrorhandler (0.73.6): + - React-jsc (0.73.7): + - React-jsc/Fabric (= 0.73.7) + - React-jsi (= 0.73.7) + - React-jsc/Fabric (0.73.7): + - React-jsi (= 0.73.7) + - React-jserrorhandler (0.73.7): - RCT-Folly/Fabric (= 2022.05.16.00) - React-debug - React-jsi - React-Mapbuffer - - React-jsi (0.73.6): + - React-jsi (0.73.7): - boost (= 1.83.0) - DoubleConversion - fmt (~> 6.2.1) - glog - RCT-Folly (= 2022.05.16.00) - - React-jsiexecutor (0.73.6): + - React-jsiexecutor (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog - RCT-Folly (= 2022.05.16.00) - - React-cxxreact (= 0.73.6) - - React-jsi (= 0.73.6) - - React-perflogger (= 0.73.6) - - React-jsinspector (0.73.6) - - React-logger (0.73.6): + - React-cxxreact (= 0.73.7) + - React-jsi (= 0.73.7) + - React-perflogger (= 0.73.7) + - React-jsinspector (0.73.7) + - React-jsitracing (0.73.7): + - React-jsi + - React-logger (0.73.7): - glog - - React-Mapbuffer (0.73.6): + - React-Mapbuffer (0.73.7): - glog - React-debug - - react-native-segmented-control (2.5.0): + - react-native-segmented-control (2.5.2): - React-Core - - React-nativeconfig (0.73.6) - - React-NativeModulesApple (0.73.6): + - React-nativeconfig (0.73.7) + - React-NativeModulesApple (0.73.7): - glog - React-callinvoker - React-Core @@ -865,10 +864,10 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.73.6) - - React-RCTActionSheet (0.73.6): - - React-Core/RCTActionSheetHeaders (= 0.73.6) - - React-RCTAnimation (0.73.6): + - React-perflogger (0.73.7) + - React-RCTActionSheet (0.73.7): + - React-Core/RCTActionSheetHeaders (= 0.73.7) + - React-RCTAnimation (0.73.7): - RCT-Folly (= 2022.05.16.00) - RCTTypeSafety - React-Codegen @@ -876,21 +875,28 @@ PODS: - React-jsi - React-NativeModulesApple - ReactCommon - - React-RCTAppDelegate (0.73.6): + - React-RCTAppDelegate (0.73.7): - RCT-Folly - RCTRequired - RCTTypeSafety - React-Core - React-CoreModules + - React-debug + - React-Fabric + - React-graphics - React-jsc - React-nativeconfig - React-NativeModulesApple - React-RCTFabric - React-RCTImage - React-RCTNetwork + - React-rendererdebug + - React-RuntimeApple + - React-RuntimeCore - React-runtimescheduler + - React-utils - ReactCommon - - React-RCTBlob (0.73.6): + - React-RCTBlob (0.73.7): - RCT-Folly (= 2022.05.16.00) - React-Codegen - React-Core/RCTBlobHeaders @@ -899,7 +905,7 @@ PODS: - React-NativeModulesApple - React-RCTNetwork - ReactCommon - - React-RCTFabric (0.73.6): + - React-RCTFabric (0.73.7): - glog - RCT-Folly/Fabric (= 2022.05.16.00) - React-Core @@ -917,7 +923,7 @@ PODS: - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.73.6): + - React-RCTImage (0.73.7): - RCT-Folly (= 2022.05.16.00) - RCTTypeSafety - React-Codegen @@ -926,14 +932,14 @@ PODS: - React-NativeModulesApple - React-RCTNetwork - ReactCommon - - React-RCTLinking (0.73.6): + - React-RCTLinking (0.73.7): - React-Codegen - - React-Core/RCTLinkingHeaders (= 0.73.6) - - React-jsi (= 0.73.6) + - React-Core/RCTLinkingHeaders (= 0.73.7) + - React-jsi (= 0.73.7) - React-NativeModulesApple - ReactCommon - - ReactCommon/turbomodule/core (= 0.73.6) - - React-RCTNetwork (0.73.6): + - ReactCommon/turbomodule/core (= 0.73.7) + - React-RCTNetwork (0.73.7): - RCT-Folly (= 2022.05.16.00) - RCTTypeSafety - React-Codegen @@ -941,7 +947,7 @@ PODS: - React-jsi - React-NativeModulesApple - ReactCommon - - React-RCTSettings (0.73.6): + - React-RCTSettings (0.73.7): - RCT-Folly (= 2022.05.16.00) - RCTTypeSafety - React-Codegen @@ -949,25 +955,51 @@ PODS: - React-jsi - React-NativeModulesApple - ReactCommon - - React-RCTText (0.73.6): - - React-Core/RCTTextHeaders (= 0.73.6) + - React-RCTText (0.73.7): + - React-Core/RCTTextHeaders (= 0.73.7) - Yoga - - React-RCTVibration (0.73.6): + - React-RCTVibration (0.73.7): - RCT-Folly (= 2022.05.16.00) - React-Codegen - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple - ReactCommon - - React-rendererdebug (0.73.6): + - React-rendererdebug (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - RCT-Folly (= 2022.05.16.00) - React-debug - - React-rncore (0.73.6) - - React-runtimeexecutor (0.73.6): - - React-jsi (= 0.73.6) - - React-runtimescheduler (0.73.6): + - React-rncore (0.73.7) + - React-RuntimeApple (0.73.7): + - RCT-Folly/Fabric (= 2022.05.16.00) + - React-callinvoker + - React-Core/Default + - React-CoreModules + - React-cxxreact + - React-jsc + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-Mapbuffer + - React-NativeModulesApple + - React-RCTFabric + - React-RuntimeCore + - React-runtimeexecutor + - React-utils + - React-RuntimeCore (0.73.7): + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - React-cxxreact + - React-jsc + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-runtimeexecutor + - React-runtimescheduler + - React-runtimeexecutor (0.73.7): + - React-jsi (= 0.73.7) + - React-runtimescheduler (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-callinvoker @@ -978,59 +1010,108 @@ PODS: - React-rendererdebug - React-runtimeexecutor - React-utils - - React-utils (0.73.6): + - React-utils (0.73.7): - glog - RCT-Folly (= 2022.05.16.00) - React-debug - - ReactCommon (0.73.6): - - React-logger (= 0.73.6) - - ReactCommon/turbomodule (= 0.73.6) - - ReactCommon/turbomodule (0.73.6): + - ReactCommon (0.73.7): + - React-logger (= 0.73.7) + - ReactCommon/turbomodule (= 0.73.7) + - ReactCommon/turbomodule (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.6) - - React-cxxreact (= 0.73.6) - - React-jsi (= 0.73.6) - - React-logger (= 0.73.6) - - React-perflogger (= 0.73.6) - - ReactCommon/turbomodule/bridging (= 0.73.6) - - ReactCommon/turbomodule/core (= 0.73.6) - - ReactCommon/turbomodule/bridging (0.73.6): + - React-callinvoker (= 0.73.7) + - React-cxxreact (= 0.73.7) + - React-jsi (= 0.73.7) + - React-logger (= 0.73.7) + - React-perflogger (= 0.73.7) + - ReactCommon/turbomodule/bridging (= 0.73.7) + - ReactCommon/turbomodule/core (= 0.73.7) + - ReactCommon/turbomodule/bridging (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.6) - - React-cxxreact (= 0.73.6) - - React-jsi (= 0.73.6) - - React-logger (= 0.73.6) - - React-perflogger (= 0.73.6) - - ReactCommon/turbomodule/core (0.73.6): + - React-callinvoker (= 0.73.7) + - React-cxxreact (= 0.73.7) + - React-jsi (= 0.73.7) + - React-logger (= 0.73.7) + - React-perflogger (= 0.73.7) + - ReactCommon/turbomodule/core (0.73.7): - DoubleConversion - fmt (~> 6.2.1) - glog - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.6) - - React-cxxreact (= 0.73.6) - - React-jsi (= 0.73.6) - - React-logger (= 0.73.6) - - React-perflogger (= 0.73.6) + - React-callinvoker (= 0.73.7) + - React-cxxreact (= 0.73.7) + - React-jsi (= 0.73.7) + - React-logger (= 0.73.7) + - React-perflogger (= 0.73.7) - ReactNativeHost (0.4.6): - glog - RCT-Folly (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core - React-cxxreact + - React-debug + - React-Fabric + - React-graphics + - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTAppDelegate + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - Yoga - ReactTestApp-DevSupport (3.5.3): - React-Core - React-jsi - ReactTestApp-Resources (1.0.0-dev) - - RNDateTimePicker (7.6.3): + - RNDateTimePicker (7.7.0): + - glog + - RCT-Folly (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core + - React-debug + - React-Fabric + - React-graphics + - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - RNLocalize (3.1.0): + - glog + - RCT-Folly (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core + - React-debug + - React-Fabric + - React-graphics + - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - SocketRocket (0.6.1) - Yoga (1.14.0) @@ -1038,7 +1119,6 @@ DEPENDENCIES: - boost (from `../../node_modules/react-native/third-party-podspecs/boost.podspec`) - DoubleConversion (from `../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) - FBLazyVector (from `../../node_modules/react-native/Libraries/FBLazyVector`) - - FBReactNativeSpec (from `../../node_modules/react-native/React/FBReactNativeSpec`) - glog (from `../../node_modules/react-native/third-party-podspecs/glog.podspec`) - RCT-Folly (from `../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - RCT-Folly/Fabric (from `../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) @@ -1057,10 +1137,12 @@ DEPENDENCIES: - React-graphics (from `../../node_modules/react-native/ReactCommon/react/renderer/graphics`) - React-ImageManager (from `../../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) - React-jsc (from `../../node_modules/react-native/ReactCommon/jsc`) + - React-jsc/Fabric (from `../../node_modules/react-native/ReactCommon/jsc`) - React-jserrorhandler (from `../../node_modules/react-native/ReactCommon/jserrorhandler`) - React-jsi (from `../../node_modules/react-native/ReactCommon/jsi`) - React-jsiexecutor (from `../../node_modules/react-native/ReactCommon/jsiexecutor`) - React-jsinspector (from `../../node_modules/react-native/ReactCommon/jsinspector-modern`) + - React-jsitracing (from `../../node_modules/react-native/ReactCommon/hermes/executor/`) - React-logger (from `../../node_modules/react-native/ReactCommon/logger`) - React-Mapbuffer (from `../../node_modules/react-native/ReactCommon`) - "react-native-segmented-control (from `../../node_modules/@react-native-segmented-control/segmented-control`)" @@ -1080,6 +1162,8 @@ DEPENDENCIES: - React-RCTVibration (from `../../node_modules/react-native/Libraries/Vibration`) - React-rendererdebug (from `../../node_modules/react-native/ReactCommon/react/renderer/debug`) - React-rncore (from `../../node_modules/react-native/ReactCommon`) + - React-RuntimeApple (from `../../node_modules/react-native/ReactCommon/react/runtime/platform/ios`) + - React-RuntimeCore (from `../../node_modules/react-native/ReactCommon/react/runtime`) - React-runtimeexecutor (from `../../node_modules/react-native/ReactCommon/runtimeexecutor`) - React-runtimescheduler (from `../../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) - React-utils (from `../../node_modules/react-native/ReactCommon/react/utils`) @@ -1103,8 +1187,6 @@ EXTERNAL SOURCES: :podspec: "../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" FBLazyVector: :path: "../../node_modules/react-native/Libraries/FBLazyVector" - FBReactNativeSpec: - :path: "../../node_modules/react-native/React/FBReactNativeSpec" glog: :podspec: "../../node_modules/react-native/third-party-podspecs/glog.podspec" RCT-Folly: @@ -1145,6 +1227,8 @@ EXTERNAL SOURCES: :path: "../../node_modules/react-native/ReactCommon/jsiexecutor" React-jsinspector: :path: "../../node_modules/react-native/ReactCommon/jsinspector-modern" + React-jsitracing: + :path: "../../node_modules/react-native/ReactCommon/hermes/executor/" React-logger: :path: "../../node_modules/react-native/ReactCommon/logger" React-Mapbuffer: @@ -1183,6 +1267,10 @@ EXTERNAL SOURCES: :path: "../../node_modules/react-native/ReactCommon/react/renderer/debug" React-rncore: :path: "../../node_modules/react-native/ReactCommon" + React-RuntimeApple: + :path: "../../node_modules/react-native/ReactCommon/react/runtime/platform/ios" + React-RuntimeCore: + :path: "../../node_modules/react-native/ReactCommon/react/runtime" React-runtimeexecutor: :path: "../../node_modules/react-native/ReactCommon/runtimeexecutor" React-runtimescheduler: @@ -1206,60 +1294,62 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: boost: d3f49c53809116a5d38da093a8aa78bf551aed09 - DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953 - FBLazyVector: f64d1e2ea739b4d8f7e4740cde18089cd97fe864 - FBReactNativeSpec: 133b4c4362bacd8d6527b897ee5e5e3bc90bb075 + DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54 + FBLazyVector: 9f533d5a4c75ca77c8ed774aced1a91a0701781e fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 - glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2 + glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b RCT-Folly: 7169b2b1c44399c76a47b5deaaba715eeeb476c0 - RCTRequired: ca1d7414aba0b27efcfa2ccd37637edb1ab77d96 - RCTTypeSafety: 678e344fb976ff98343ca61dc62e151f3a042292 - React: e296bcebb489deaad87326067204eb74145934ab - React-callinvoker: d0b7015973fa6ccb592bb0363f6bc2164238ab8c - React-Codegen: 26596f3dc3269bed13220f0609f778fcc93b50dd - React-Core: 1d1f8ef65353751bf57d5c6f01a2bf3fbe644df8 - React-CoreModules: 558228e12cddb9ca00ff7937894cc5104a21be6b - React-cxxreact: 92db3068083c5790656277d5f1ef56c615cd1177 - React-debug: d444db402065cca460d9c5b072caab802a04f729 - React-Fabric: 433731b157b8f63aa0cac89327ece388ca1748a0 - React-FabricImage: 01a6990e58926aebbd13ea075cb6e9b70b022840 - React-graphics: 5500206f7c9a481456365403c9fcf1638de108b7 - React-ImageManager: df193215ff3cf1a8dad297e554c89c632e42436c - React-jsc: 423fa1db16947e4dffb83c72f6fe4248913b0e00 - React-jserrorhandler: a4d0f541c5852cf031db2f82f51de90be55b1334 - React-jsi: 730ad8dffa69e4196361e10cddc89fd8a9d32202 - React-jsiexecutor: e9d8ef2051048ae7d32c7da38c2c0c22cfa3d7f3 - React-jsinspector: 85583ef014ce53d731a98c66a0e24496f7a83066 - React-logger: 3eb80a977f0d9669468ef641a5e1fabbc50a09ec - React-Mapbuffer: 84ea43c6c6232049135b1550b8c60b2faac19fab - react-native-segmented-control: 712749e75728a736a2b8a7d7dbc8c2a3344b73e8 - React-nativeconfig: b4d4e9901d4cabb57be63053fd2aa6086eb3c85f - React-NativeModulesApple: ae99dc0e80c9027f54572c45635449fbdc36e4f1 - React-perflogger: 5f49905de275bac07ac7ea7f575a70611fa988f2 - React-RCTActionSheet: 37edf35aeb8e4f30e76c82aab61f12d1b75c04ec - React-RCTAnimation: a69de7f3daa8462743094f4736c455e844ea63f7 - React-RCTAppDelegate: d25d143b0918fb0614201f2b5d56eca1679d8462 - React-RCTBlob: 4ae95e6ba3508771b8fa0fedb64df07aa561b548 - React-RCTFabric: d792d7bad2238d67a33dd7ee0f2e32de6eaf669f - React-RCTImage: a0bfe87b6908c7b76bd7d74520f40660bd0ad881 - React-RCTLinking: 5f10be1647952cceddfa1970fdb374087582fc34 - React-RCTNetwork: a0bc3dd45a2dc7c879c80cebb6f9707b2c8bbed6 - React-RCTSettings: 28c202b68afa59afb4067510f2c69c5a530fb9e3 - React-RCTText: 4119d9e53ca5db9502b916e1b146e99798986d21 - React-RCTVibration: 55bd7c48487eb9a2562f2bd3fdc833274f5b0636 - React-rendererdebug: 5fa97ba664806cee4700e95aec42dff1b6f8ea36 - React-rncore: e15b68c32138fded0519efc1b156f9716175954c - React-runtimeexecutor: bb328dbe2865f3a550df0240df8e2d8c3aaa4c57 - React-runtimescheduler: 9daefa990db62f8874bc9d6e7e504272c6b6c57f - React-utils: d16c1d2251c088ad817996621947d0ac8167b46c - ReactCommon: 447281ad2034ea3252bf81a60d1f77d5afb0b636 - ReactNativeHost: 339df34d3c2050f37e8909ade6693465e8a947f7 + RCTRequired: 77f73950d15b8c1a2b48ba5b79020c3003d1c9b5 + RCTTypeSafety: ede1e2576424d89471ef553b2aed09fbbcc038e3 + React: 2ddb437e599df2f1bffa9b248de2de4cfa0227f0 + React-callinvoker: 10fc710367985e525e2d65bcc3a73d536c992aea + React-Codegen: d434542f55bb69e4b89adc20895c686c3483c81d + React-Core: 168a3a52c0fbd238d51e4661f0a05cdaa3469ffa + React-CoreModules: 97e5860e7e2d8549a5a357c2e0b115e93f25e5e7 + React-cxxreact: 0ace137717686e7cd2d2460071f85512d087b4fc + React-debug: 2bb2ea6d53636bfdc7cb9009a8e71dd6a96810b5 + React-Fabric: ba59dc25be3c9ec5aeb8beab7846a0449adbda2c + React-FabricImage: a6bd5e120ec960c8c7801d3fa77a09fb1176a57c + React-graphics: 860acbbd1398a1c50d2a0b7fd37ca4f1ae5cef5e + React-ImageManager: b55d5ffffaaa7678bcb5799f95918cb20924d3a8 + React-jsc: 319d45acef47e4e4277aa3526da064cc5eded50a + React-jserrorhandler: 872045564849dadc0692bf034be4fc77b0f6c3e8 + React-jsi: 43b763ba124304fe86a9e116c61d18657e3270ab + React-jsiexecutor: d62771863a12d955a97833dc927d9e0a9215bdfe + React-jsinspector: f356e49aa086380d3a4892708ca173ad31ac69c1 + React-jsitracing: 59c3f1389724ab0c96113067738302d1a8be4950 + React-logger: 7b19bdfb254772a0332d6cd4d66eceb0678b6730 + React-Mapbuffer: 6f392912435adb8fbf4c3eee0e79a0a0b4e4b717 + react-native-segmented-control: b92809e9111013dfa266e1168ba366d62898d9a4 + React-nativeconfig: 754233aac2a769578f828093b672b399355582e6 + React-NativeModulesApple: 7359dd8830ba09d157afcc7088836e69d3f61743 + React-perflogger: 68ec84e2f858a3e35009aef8866b55893e5e0a1f + React-RCTActionSheet: 348c4c729fdfb874f6937abbea90355ecaa6977c + React-RCTAnimation: 9fb1232af37d25d03415af2e0b8ab3b585ed856d + React-RCTAppDelegate: 84a38a2c7a95f45cb12b5a12a30720918f098ec8 + React-RCTBlob: bc7324807d33ab0bd20a0c7a24d9aaecafe5f84c + React-RCTFabric: 0359cb02fac8c283c4fa3700b7208217097e8587 + React-RCTImage: 520fe02462804655e39b6657996e47277e6f0115 + React-RCTLinking: fb46b9dfea24f4a876163f95769ab279851e0b65 + React-RCTNetwork: dd4396889c20fa8872d4028a4d08f2d2888e2c7f + React-RCTSettings: a7d6fe4b52b98c08b12532a42a18cb12a1667d0a + React-RCTText: df7267a4bc092429fcf285238fbe67a89406ff44 + React-RCTVibration: df03af479dc7ec756e2ca73eb6ce2fa3da6b2888 + React-rendererdebug: ce0744f4121882c76d7a1b2836b8353246d884f8 + React-rncore: 3b4e06984b14cebac0c19e5ab41b640cb0127e46 + React-RuntimeApple: ce6e0b2bf20ae66e360af41f34e9caa9d266cd45 + React-RuntimeCore: 3f3ce9bbf9f016813accd681cc69039c78834ae0 + React-runtimeexecutor: b7f307017d54701cf3a4ae41c7558051e0660658 + React-runtimescheduler: 1c73bbf078fff6ea4a16e251f244ca01cf8b65c5 + React-utils: d07d009101c7dabff68b710da5c4a47b7a850d98 + ReactCommon: 1a139d94a3ab30b7ee77b0654bd24a7ecfc67318 + ReactNativeHost: e09a4c6efcb496902786cd091e49eeecafc8c42d ReactTestApp-DevSupport: 1fe22a4a29414ec3227d20b3eb96217ba1ff13d0 ReactTestApp-Resources: 857244f3a23f2b3157b364fa06cf3e8866deff9c - RNDateTimePicker: 19a8199b22a98d9227834f438c21cbfbc5b7b191 - RNLocalize: e8694475db034bf601e17bd3dfa8986565e769eb + RNDateTimePicker: a3cf89b280dfcfc911d7e5d99b1fe445a60f87ad + RNLocalize: d4ba217eeb8c6affe1ca0f3ffab7b0e914a66bd0 SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 - Yoga: 805bf71192903b20fc14babe48080582fee65a80 + Yoga: 47d399a73c0c0caa9ff824e5c657eae31215bfee PODFILE CHECKSUM: b6bcdb6d3d7758fa98df2fdfba027188ac6288d6 diff --git a/example/visionos/Podfile.lock b/example/visionos/Podfile.lock index 5386ef11..f7be2164 100644 --- a/example/visionos/Podfile.lock +++ b/example/visionos/Podfile.lock @@ -2,13 +2,6 @@ PODS: - boost (1.83.0) - DoubleConversion (1.1.6) - FBLazyVector (0.73.8) - - FBReactNativeSpec (0.73.8): - - RCT-Folly (= 2022.05.16.00) - - RCTRequired (= 0.73.8) - - RCTTypeSafety (= 0.73.8) - - React-Core (= 0.73.8) - - React-jsi (= 0.73.8) - - ReactCommon/turbomodule/core (= 0.73.8) - fmt (9.1.0) - glog (0.3.5) - libevent (2.1.12.1) @@ -51,17 +44,21 @@ PODS: - React-callinvoker (0.73.8) - React-Codegen (0.73.8): - DoubleConversion - - FBReactNativeSpec - glog - RCT-Folly - RCTRequired - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-FabricImage + - React-graphics - React-jsc - React-jsi - React-jsiexecutor - React-NativeModulesApple - - React-rncore + - React-rendererdebug + - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - React-Core (0.73.8): @@ -876,11 +873,15 @@ PODS: - React-jsi (= 0.73.8) - React-perflogger (= 0.73.8) - React-jsinspector (0.73.8) + - React-jsitracing (0.73.8): + - React-jsi - React-logger (0.73.8): - glog - React-Mapbuffer (0.73.8): - glog - React-debug + - react-native-segmented-control (2.5.2): + - React-Core - React-nativeconfig (0.73.8) - React-NativeModulesApple (0.73.8): - glog @@ -909,13 +910,20 @@ PODS: - RCTTypeSafety - React-Core - React-CoreModules + - React-debug + - React-Fabric + - React-graphics - React-jsc - React-nativeconfig - React-NativeModulesApple - React-RCTFabric - React-RCTImage - React-RCTNetwork + - React-rendererdebug + - React-RuntimeApple + - React-RuntimeCore - React-runtimescheduler + - React-utils - ReactCommon - React-RCTBlob (0.73.8): - RCT-Folly (= 2022.05.16.00) @@ -1012,6 +1020,32 @@ PODS: - RCT-Folly (= 2022.05.16.00) - React-debug - React-rncore (0.73.8) + - React-RuntimeApple (0.73.8): + - RCT-Folly/Fabric (= 2022.05.16.00) + - React-callinvoker + - React-Core/Default + - React-CoreModules + - React-cxxreact + - React-jsc + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-Mapbuffer + - React-NativeModulesApple + - React-RCTFabric + - React-RuntimeCore + - React-runtimeexecutor + - React-utils + - React-RuntimeCore (0.73.8): + - glog + - RCT-Folly/Fabric (= 2022.05.16.00) + - React-cxxreact + - React-jsc + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-runtimeexecutor + - React-runtimescheduler - React-runtimeexecutor (0.73.8): - React-jsi (= 0.73.8) - React-runtimescheduler (0.73.8): @@ -1067,16 +1101,65 @@ PODS: - ReactNativeHost (0.4.6): - glog - RCT-Folly (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core - React-cxxreact + - React-debug + - React-Fabric + - React-graphics + - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTAppDelegate + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - Yoga - ReactTestApp-DevSupport (3.5.3): - React-Core - React-jsi - - RNDateTimePicker (7.6.3): + - RNDateTimePicker (7.7.0): + - glog + - RCT-Folly (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core + - React-debug + - React-Fabric + - React-graphics + - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - RNLocalize (3.1.0): + - glog + - RCT-Folly (= 2022.05.16.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core + - React-debug + - React-Fabric + - React-graphics + - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - SocketRocket (0.7.0.1) - Yoga (1.14.0) @@ -1084,7 +1167,6 @@ 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`)" @@ -1105,12 +1187,15 @@ DEPENDENCIES: - "React-graphics (from `../../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/graphics`)" - "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-jsc/Fabric (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-segmented-control (from `../../node_modules/@react-native-segmented-control/segmented-control`)" - "React-nativeconfig (from `../../node_modules/@callstack/react-native-visionos/ReactCommon`)" - "React-NativeModulesApple (from `../../node_modules/@callstack/react-native-visionos/ReactCommon/react/nativemodule/core/platform/ios`)" - "React-perflogger (from `../../node_modules/@callstack/react-native-visionos/ReactCommon/reactperflogger`)" @@ -1130,6 +1215,8 @@ 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-runtimescheduler (from `../../node_modules/@callstack/react-native-visionos/ReactCommon/react/renderer/runtimescheduler`)" - "React-utils (from `../../node_modules/@callstack/react-native-visionos/ReactCommon/react/utils`)" @@ -1148,8 +1235,6 @@ 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: @@ -1194,10 +1279,14 @@ 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: :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon" + react-native-segmented-control: + :path: "../../node_modules/@react-native-segmented-control/segmented-control" React-nativeconfig: :path: "../../node_modules/@callstack/react-native-visionos/ReactCommon" React-NativeModulesApple: @@ -1236,6 +1325,10 @@ 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-runtimescheduler: @@ -1261,7 +1354,6 @@ SPEC CHECKSUMS: boost: 8f1e9b214fa11f71081fc8ecd5fad3daf221cf7f DoubleConversion: 71bf0761505a44e4dfddc0aa04afa049fdfb63b5 FBLazyVector: 3528954d497f5578142ba1bfe9af95b637fd361e - FBReactNativeSpec: dedbfe86301ae41070dd8102cd95d78781507d27 fmt: 5d9ffa7ccba126c08b730252123601d514652320 glog: 4f05d17aa39a829fee878689fc9a41af587fabba libevent: a29e03f67aa3a1c501656baccbff6071a8b40a00 @@ -1270,7 +1362,7 @@ SPEC CHECKSUMS: RCTTypeSafety: ffda0c1faf5314c9b7e38b405d4a0ccc0fc303e9 React: 84bf2f618aa90c48b2c46e9234bc549e16b2f8cb React-callinvoker: bff9b37849f1832be39351cf4ca52344773351c8 - React-Codegen: b08ed86689858a14b0c4733c36524d33863decf0 + React-Codegen: c995b675332d9dfbc2da8a7909140b88fdeb1453 React-Core: 8af88dd46a222dca814d7ba956c64a9e61180cc3 React-CoreModules: f2194c7f12ee7a721a70837a2af9ecdf27a46b32 React-cxxreact: 9f18cadbe55db2fb18b87e6d88ba39d325accbac @@ -1284,14 +1376,16 @@ SPEC CHECKSUMS: React-jsi: 783251345a6ab6d1740c7d342499edd942f78092 React-jsiexecutor: a76d89a04a3a9afd78726d07399af89537e870e2 React-jsinspector: b9e3b72a79e0ac805605d3b05844bc7fca2481a7 + React-jsitracing: 5ec7e6f6b58bdb87cbb182f118cdd6807ed78238 React-logger: b38a95eea49914f02cd8764d48b3def4469b9eae React-Mapbuffer: 95f55d07bb729137f77065c06a331271234f1b55 + react-native-segmented-control: b92809e9111013dfa266e1168ba366d62898d9a4 React-nativeconfig: efa01c928b57f2c7adb282ad49dbf35a85f39772 React-NativeModulesApple: 5ffa203c4591bb74750a992d45a780a886f6377d React-perflogger: 8cbba16952af4beffd0c45a9e3aca9079de5f53a React-RCTActionSheet: 89b184b611cab9cb0abecc1bcac4ffb896ef55e3 React-RCTAnimation: ba344275d1d57926931fe39e506f1de1bd649c23 - React-RCTAppDelegate: 2c7203f5d619cec31d5503ce32622b32daace636 + React-RCTAppDelegate: 3b411e05af388d62341cdc3bb2572bc22f47bdda React-RCTBlob: fdd0bd0959184ea030c882909d3aafe33bd46b6d React-RCTFabric: e57b0029e4d1abc8c7a29428c597c91c12f93a0d React-RCTImage: acce25f5e92939874e6269a78592abcaae08e8cd @@ -1301,18 +1395,20 @@ SPEC CHECKSUMS: React-RCTSwiftExtensions: a72c9b16f74c5daeb46d2628ea9593d31afef6a3 React-RCTText: be241222492c51fd3e1db827c7ed95347067a33e React-RCTVibration: 7a4ef9f99ca0fcd2893af79e630747ca15475645 - React-RCTWindowManager: 39a943fa44289a5c7c8d71755c9456ffbaa2f37f - React-RCTXR: 0528475e88dc7bb12b0ba412d1e9cc5505a2575e + React-RCTWindowManager: f364b78bb5b872fd63d02bbe145d2b6cbbfd4402 + React-RCTXR: 0e1cc6ea7d7584e9e887d3bb7da92bd10503e243 React-rendererdebug: 6b70a5235f8bd699e5620714da8a3738fa605c28 - React-rncore: 48be7b5f7b660bca1cdca1ca0211b0074db048f1 + React-rncore: a289fe3baf590cbf4e458eecbed0ad240b6e2381 + React-RuntimeApple: b6930f31cfff164a4c89259dc25ac67a241f4ee5 + React-RuntimeCore: e674eff5254bed1dc6b74745616610cbe0cccf61 React-runtimeexecutor: 9532f8857bad78b48f241b38d264ef6884857878 React-runtimescheduler: 3e08056206bf8627ba2ce2d31d154cfebf773aa4 React-utils: 98ae5ad20a6f002f275737d79af4a9ab637f5a1f ReactCommon: efed44fdc02eddcef579b2de0c1e109604645210 - ReactNativeHost: 7d8d2bcfaa7c82797a4d652f8c591829728bfad1 + ReactNativeHost: 5ce87c2f0da80435d85be2013781d3f2342f17fe ReactTestApp-DevSupport: 1fe22a4a29414ec3227d20b3eb96217ba1ff13d0 - RNDateTimePicker: 19a8199b22a98d9227834f438c21cbfbc5b7b191 - RNLocalize: e8694475db034bf601e17bd3dfa8986565e769eb + RNDateTimePicker: 527e38994de9650226689dff57a60d822777930b + RNLocalize: 225e757fefb24bb8101b0fb2c0a58e7167f58ca5 SocketRocket: 0ba3e799f983d2dfa878777017659ef6c866e5c6 Yoga: 500e2c9fc111319f47dcffec452de1218b968cb4 diff --git a/package.json b/package.json index b34fc6aa..e5f03cf1 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "prettier": "^2.8.8", "react": "18.2.0", "react-native": "^0.73.0", - "react-native-localize": "^3.0.3", + "react-native-localize": "^3.1.0", "react-native-test-app": "^3.5.3", "react-native-windows": "^0.73.0", "react-test-renderer": "18.2.0", diff --git a/yarn.lock b/yarn.lock index 5a5d24ee..c791c398 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2695,7 +2695,7 @@ __metadata: prettier: "npm:^2.8.8" react: "npm:18.2.0" react-native: "npm:^0.73.0" - react-native-localize: "npm:^3.0.3" + react-native-localize: "npm:^3.1.0" react-native-test-app: "npm:^3.5.3" react-native-windows: "npm:^0.73.0" react-test-renderer: "npm:18.2.0" @@ -11625,7 +11625,7 @@ __metadata: languageName: node linkType: hard -"react-native-localize@npm:^3.0.3": +"react-native-localize@npm:^3.1.0": version: 3.1.0 resolution: "react-native-localize@npm:3.1.0" peerDependencies: From 0fe3b21f8a3f9efae61a9a94767231179e19c6ab Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 24 Apr 2024 07:21:16 -0700 Subject: [PATCH 06/11] Undo comment out test-butler --- .detoxrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.detoxrc.js b/.detoxrc.js index 4cb580b1..825af42b 100644 --- a/.detoxrc.js +++ b/.detoxrc.js @@ -14,7 +14,7 @@ module.exports = { }, emulator: { type: 'android.emulator', - // utilBinaryPaths: ['example/e2e/test-butler-app.apk'], + utilBinaryPaths: ['example/e2e/test-butler-app.apk'], device: { avdName: 'TestingAVD', }, From 4e125b2bdcc90b8b8adce0c55146afea505ec64b Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 24 Apr 2024 09:01:57 -0700 Subject: [PATCH 07/11] Update package.json Co-authored-by: Vojtech Novak --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index e5f03cf1..fde371cd 100644 --- a/package.json +++ b/package.json @@ -109,6 +109,11 @@ "react-native": "^0.73.0", "react-native-windows": "^0.73.0" }, + "peerDependenciesMeta": { + "react-native-windows": { + "optional": true + } + }, "packageManager": "yarn@4.1.1", "workspaces": [ "example" From e59b6281f8c82ad82a5737266199bb9cd42a466f Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 24 Apr 2024 09:02:01 -0700 Subject: [PATCH 08/11] Update package.json Co-authored-by: Vojtech Novak --- package.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/package.json b/package.json index fde371cd..ad7943dd 100644 --- a/package.json +++ b/package.json @@ -115,7 +115,4 @@ } }, "packageManager": "yarn@4.1.1", - "workspaces": [ - "example" - ] } From cac05d9eac8e8c8fda00f5308b9508b3f3b4ef15 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 24 Apr 2024 09:02:09 -0700 Subject: [PATCH 09/11] Update package.json Co-authored-by: Vojtech Novak --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ad7943dd..fa36f0fd 100644 --- a/package.json +++ b/package.json @@ -105,7 +105,7 @@ } }, "peerDependencies": { - "react": "18.2.0", + "react": "*", "react-native": "^0.73.0", "react-native-windows": "^0.73.0" }, From ea714467de5de1e66c23325d0a6bc7b63934d5f1 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 24 Apr 2024 09:08:08 -0700 Subject: [PATCH 10/11] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fa36f0fd..17f1c66f 100644 --- a/package.json +++ b/package.json @@ -114,5 +114,5 @@ "optional": true } }, - "packageManager": "yarn@4.1.1", + "packageManager": "yarn@4.1.1" } From e7a72852351545f161e3a7c41a50d329721b1f25 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 24 Apr 2024 10:03:57 -0700 Subject: [PATCH 11/11] Update lock --- yarn.lock | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/yarn.lock b/yarn.lock index c791c398..12af6b0d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2701,9 +2701,12 @@ __metadata: react-test-renderer: "npm:18.2.0" semantic-release: "npm:^19.0.3" peerDependencies: - react: 18.2.0 + react: "*" react-native: ^0.73.0 react-native-windows: ^0.73.0 + peerDependenciesMeta: + react-native-windows: + optional: true languageName: unknown linkType: soft