diff --git a/babel.config.js b/babel.config.js
index 10851900..797993ba 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -10,6 +10,6 @@ module.exports = (api) => {
}
return {
- presets: ['module:metro-react-native-babel-preset'],
+ presets: ['module:@react-native/babel-preset'],
};
};
diff --git a/example/Gemfile b/example/Gemfile
index 6a7d5c7a..e1eb16cd 100644
--- a/example/Gemfile
+++ b/example/Gemfile
@@ -3,5 +3,5 @@ source 'https://rubygems.org'
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby ">= 2.6.10"
-gem 'cocoapods', '~> 1.13'
-gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'
+gem 'cocoapods', '>= 1.13', '< 1.15'
+gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'
diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle
index 8c9f4be1..ce87d774 100644
--- a/example/android/app/build.gradle
+++ b/example/android/app/build.gradle
@@ -1,4 +1,5 @@
apply plugin: "com.android.application"
+apply plugin: "org.jetbrains.kotlin.android"
apply plugin: "com.facebook.react"
/**
@@ -70,8 +71,8 @@ def jscFlavor = 'org.webkit:android-jsc:+'
android {
ndkVersion rootProject.ext.ndkVersion
-
- compileSdkVersion rootProject.ext.compileSdkVersion
+ buildToolsVersion rootProject.ext.buildToolsVersion
+ compileSdk rootProject.ext.compileSdkVersion
namespace "com.expensify.livemarkdownexample"
defaultConfig {
@@ -106,13 +107,8 @@ android {
dependencies {
// The version of react-native is set by the React Native Gradle Plugin
implementation("com.facebook.react:react-android")
+ implementation("com.facebook.react:flipper-integration")
- debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}")
- debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
- exclude group:'com.squareup.okhttp3', module:'okhttp'
- }
-
- debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}")
if (hermesEnabled.toBoolean()) {
implementation("com.facebook.react:hermes-android")
} else {
diff --git a/example/android/app/src/debug/AndroidManifest.xml b/example/android/app/src/debug/AndroidManifest.xml
index 4b185bc1..ced5aabf 100644
--- a/example/android/app/src/debug/AndroidManifest.xml
+++ b/example/android/app/src/debug/AndroidManifest.xml
@@ -7,7 +7,5 @@
-
-
+ tools:ignore="GoogleAppIndexingWarning"/>
diff --git a/example/android/app/src/debug/java/com/livemarkdownexample/ReactNativeFlipper.java b/example/android/app/src/debug/java/com/livemarkdownexample/ReactNativeFlipper.java
deleted file mode 100644
index 89dc1fb1..00000000
--- a/example/android/app/src/debug/java/com/livemarkdownexample/ReactNativeFlipper.java
+++ /dev/null
@@ -1,75 +0,0 @@
-/**
- * Copyright (c) Meta Platforms, Inc. and affiliates.
- *
- *
This source code is licensed under the MIT license found in the LICENSE file in the root
- * directory of this source tree.
- */
-package com.expensify.livemarkdownexample;
-
-import android.content.Context;
-import com.facebook.flipper.android.AndroidFlipperClient;
-import com.facebook.flipper.android.utils.FlipperUtils;
-import com.facebook.flipper.core.FlipperClient;
-import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
-import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin;
-import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin;
-import com.facebook.flipper.plugins.inspector.DescriptorMapping;
-import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin;
-import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor;
-import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
-import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
-import com.facebook.react.ReactInstanceEventListener;
-import com.facebook.react.ReactInstanceManager;
-import com.facebook.react.bridge.ReactContext;
-import com.facebook.react.modules.network.NetworkingModule;
-import okhttp3.OkHttpClient;
-
-/**
- * Class responsible of loading Flipper inside your React Native application. This is the debug
- * flavor of it. Here you can add your own plugins and customize the Flipper setup.
- */
-public class ReactNativeFlipper {
- public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
- if (FlipperUtils.shouldEnableFlipper(context)) {
- final FlipperClient client = AndroidFlipperClient.getInstance(context);
-
- client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults()));
- client.addPlugin(new DatabasesFlipperPlugin(context));
- client.addPlugin(new SharedPreferencesFlipperPlugin(context));
- client.addPlugin(CrashReporterPlugin.getInstance());
-
- NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin();
- NetworkingModule.setCustomClientBuilder(
- new NetworkingModule.CustomClientBuilder() {
- @Override
- public void apply(OkHttpClient.Builder builder) {
- builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
- }
- });
- client.addPlugin(networkFlipperPlugin);
- client.start();
-
- // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized
- // Hence we run if after all native modules have been initialized
- ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
- if (reactContext == null) {
- reactInstanceManager.addReactInstanceEventListener(
- new ReactInstanceEventListener() {
- @Override
- public void onReactContextInitialized(ReactContext reactContext) {
- reactInstanceManager.removeReactInstanceEventListener(this);
- reactContext.runOnNativeModulesQueueThread(
- new Runnable() {
- @Override
- public void run() {
- client.addPlugin(new FrescoFlipperPlugin());
- }
- });
- }
- });
- } else {
- client.addPlugin(new FrescoFlipperPlugin());
- }
- }
- }
-}
diff --git a/example/android/app/src/main/java/com/livemarkdownexample/MainActivity.java b/example/android/app/src/main/java/com/livemarkdownexample/MainActivity.java
deleted file mode 100644
index c60781ca..00000000
--- a/example/android/app/src/main/java/com/livemarkdownexample/MainActivity.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.expensify.livemarkdownexample;
-
-import com.facebook.react.ReactActivity;
-import com.facebook.react.ReactActivityDelegate;
-import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint;
-import com.facebook.react.defaults.DefaultReactActivityDelegate;
-
-public class MainActivity extends ReactActivity {
-
- /**
- * Returns the name of the main component registered from JavaScript. This is used to schedule
- * rendering of the component.
- */
- @Override
- protected String getMainComponentName() {
- return "LiveMarkdownExample";
- }
-
- /**
- * Returns the instance of the {@link ReactActivityDelegate}. Here we use a util class {@link
- * DefaultReactActivityDelegate} which allows you to easily enable Fabric and Concurrent React
- * (aka React 18) with two boolean flags.
- */
- @Override
- protected ReactActivityDelegate createReactActivityDelegate() {
- return new DefaultReactActivityDelegate(
- this,
- getMainComponentName(),
- // If you opted-in for the New Architecture, we enable the Fabric Renderer.
- DefaultNewArchitectureEntryPoint.getFabricEnabled());
- }
-}
diff --git a/example/android/app/src/main/java/com/livemarkdownexample/MainActivity.kt b/example/android/app/src/main/java/com/livemarkdownexample/MainActivity.kt
new file mode 100644
index 00000000..9893803c
--- /dev/null
+++ b/example/android/app/src/main/java/com/livemarkdownexample/MainActivity.kt
@@ -0,0 +1,22 @@
+package com.expensify.livemarkdownexample
+
+import com.facebook.react.ReactActivity
+import com.facebook.react.ReactActivityDelegate
+import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled
+import com.facebook.react.defaults.DefaultReactActivityDelegate
+
+class MainActivity : ReactActivity() {
+
+ /**
+ * Returns the name of the main component registered from JavaScript. This is used to schedule
+ * rendering of the component.
+ */
+ override fun getMainComponentName(): String = "LiveMarkdownExample"
+
+ /**
+ * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate]
+ * which allows you to enable New Architecture with a single boolean flags [fabricEnabled]
+ */
+ override fun createReactActivityDelegate(): ReactActivityDelegate =
+ DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled)
+}
\ No newline at end of file
diff --git a/example/android/app/src/main/java/com/livemarkdownexample/MainApplication.java b/example/android/app/src/main/java/com/livemarkdownexample/MainApplication.java
deleted file mode 100644
index 58a729cd..00000000
--- a/example/android/app/src/main/java/com/livemarkdownexample/MainApplication.java
+++ /dev/null
@@ -1,62 +0,0 @@
-package com.expensify.livemarkdownexample;
-
-import android.app.Application;
-import com.facebook.react.PackageList;
-import com.facebook.react.ReactApplication;
-import com.facebook.react.ReactNativeHost;
-import com.facebook.react.ReactPackage;
-import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint;
-import com.facebook.react.defaults.DefaultReactNativeHost;
-import com.facebook.soloader.SoLoader;
-import java.util.List;
-
-public class MainApplication extends Application implements ReactApplication {
-
- private final ReactNativeHost mReactNativeHost =
- new DefaultReactNativeHost(this) {
- @Override
- public boolean getUseDeveloperSupport() {
- return BuildConfig.DEBUG;
- }
-
- @Override
- protected List getPackages() {
- @SuppressWarnings("UnnecessaryLocalVariable")
- List packages = new PackageList(this).getPackages();
- // Packages that cannot be autolinked yet can be added manually here, for example:
- // packages.add(new MyReactNativePackage());
- return packages;
- }
-
- @Override
- protected String getJSMainModuleName() {
- return "index";
- }
-
- @Override
- protected boolean isNewArchEnabled() {
- return BuildConfig.IS_NEW_ARCHITECTURE_ENABLED;
- }
-
- @Override
- protected Boolean isHermesEnabled() {
- return BuildConfig.IS_HERMES_ENABLED;
- }
- };
-
- @Override
- public ReactNativeHost getReactNativeHost() {
- return mReactNativeHost;
- }
-
- @Override
- public void onCreate() {
- super.onCreate();
- SoLoader.init(this, /* native exopackage */ false);
- if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
- // If you opted-in for the New Architecture, we load the native entry point for this app.
- DefaultNewArchitectureEntryPoint.load();
- }
- ReactNativeFlipper.initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
- }
-}
diff --git a/example/android/app/src/main/java/com/livemarkdownexample/MainApplication.kt b/example/android/app/src/main/java/com/livemarkdownexample/MainApplication.kt
new file mode 100644
index 00000000..ff346eb7
--- /dev/null
+++ b/example/android/app/src/main/java/com/livemarkdownexample/MainApplication.kt
@@ -0,0 +1,45 @@
+package com.expensify.livemarkdownexample
+
+import android.app.Application
+import com.facebook.react.PackageList
+import com.facebook.react.ReactApplication
+import com.facebook.react.ReactHost
+import com.facebook.react.ReactNativeHost
+import com.facebook.react.ReactPackage
+import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
+import com.facebook.react.defaults.DefaultReactHost.getDefaultReactHost
+import com.facebook.react.defaults.DefaultReactNativeHost
+import com.facebook.react.flipper.ReactNativeFlipper
+import com.facebook.soloader.SoLoader
+
+class MainApplication : Application(), ReactApplication {
+
+ override val reactNativeHost: ReactNativeHost =
+ object : DefaultReactNativeHost(this) {
+ override fun getPackages(): List =
+ PackageList(this).packages.apply {
+ // Packages that cannot be autolinked yet can be added manually here, for example:
+ // add(MyReactNativePackage())
+ }
+
+ override fun getJSMainModuleName(): String = "index"
+
+ override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG
+
+ override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED
+ override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED
+ }
+
+ override val reactHost: ReactHost
+ get() = getDefaultReactHost(this.applicationContext, reactNativeHost)
+
+ override fun onCreate() {
+ super.onCreate()
+ SoLoader.init(this, false)
+ if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
+ // If you opted-in for the New Architecture, we load the native entry point for this app.
+ load()
+ }
+ ReactNativeFlipper.initializeFlipper(this, reactNativeHost.reactInstanceManager)
+ }
+}
diff --git a/example/android/app/src/release/java/com/livemarkdownexample/ReactNativeFlipper.java b/example/android/app/src/release/java/com/livemarkdownexample/ReactNativeFlipper.java
deleted file mode 100644
index 5dac1fc6..00000000
--- a/example/android/app/src/release/java/com/livemarkdownexample/ReactNativeFlipper.java
+++ /dev/null
@@ -1,20 +0,0 @@
-/**
- * Copyright (c) Meta Platforms, Inc. and affiliates.
- *
- * This source code is licensed under the MIT license found in the LICENSE file in the root
- * directory of this source tree.
- */
-package com.expensify.livemarkdownexample;
-
-import android.content.Context;
-import com.facebook.react.ReactInstanceManager;
-
-/**
- * Class responsible of loading Flipper inside your React Native application. This is the release
- * flavor of it so it's empty as we don't want to load Flipper.
- */
-public class ReactNativeFlipper {
- public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
- // Do nothing as we don't want to initialize Flipper on Release.
- }
-}
diff --git a/example/android/build.gradle b/example/android/build.gradle
index 34ea7181..cb9d6232 100644
--- a/example/android/build.gradle
+++ b/example/android/build.gradle
@@ -1,14 +1,11 @@
-// Top-level build file where you can add configuration options common to all sub-projects/modules.
-
buildscript {
ext {
- buildToolsVersion = "33.0.0"
+ buildToolsVersion = "34.0.0"
minSdkVersion = 21
- compileSdkVersion = 33
- targetSdkVersion = 33
-
- // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
- ndkVersion = "23.1.7779620"
+ compileSdkVersion = 34
+ targetSdkVersion = 34
+ ndkVersion = "25.1.8937393"
+ kotlinVersion = "1.8.0"
}
repositories {
google()
@@ -17,5 +14,8 @@ buildscript {
dependencies {
classpath("com.android.tools.build:gradle")
classpath("com.facebook.react:react-native-gradle-plugin")
+ classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
}
}
+
+apply plugin: "com.facebook.react.rootproject"
diff --git a/example/android/gradle.properties b/example/android/gradle.properties
index a3b2fa12..a46a5b90 100644
--- a/example/android/gradle.properties
+++ b/example/android/gradle.properties
@@ -24,9 +24,6 @@ android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
-# Version of flipper SDK to use with React Native
-FLIPPER_VERSION=0.182.0
-
# Use this property to specify which architecture you want to build.
# You can also override it from the CLI using
# ./gradlew -PreactNativeArchitectures=x86_64
diff --git a/example/android/gradle/wrapper/gradle-wrapper.properties b/example/android/gradle/wrapper/gradle-wrapper.properties
index 6ec1567a..d11cdd90 100644
--- a/example/android/gradle/wrapper/gradle-wrapper.properties
+++ b/example/android/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
networkTimeout=10000
+validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
diff --git a/example/android/gradlew b/example/android/gradlew
index 65dcd68d..547ba0c2 100755
--- a/example/android/gradlew
+++ b/example/android/gradlew
@@ -83,10 +83,8 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
-APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
-
-# 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"'
+# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
+APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
@@ -133,10 +131,13 @@ 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.
@@ -144,7 +145,7 @@ 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=SC3045
+ # shellcheck disable=SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
@@ -152,7 +153,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
- # shellcheck disable=SC3045
+ # shellcheck disable=SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
@@ -197,6 +198,10 @@ if "$cygwin" || "$msys" ; then
done
fi
+
+# 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, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
@@ -241,4 +246,4 @@ eval "set -- $(
tr '\n' ' '
)" '"$@"'
-exec "$JAVACMD" "$@"
+exec "$JAVACMD" "$@"
\ No newline at end of file
diff --git a/example/babel.config.js b/example/babel.config.js
index adea77bd..d9addbba 100644
--- a/example/babel.config.js
+++ b/example/babel.config.js
@@ -2,7 +2,7 @@ const path = require('path');
const pak = require('../package.json');
module.exports = {
- presets: ['module:metro-react-native-babel-preset'],
+ presets: ['module:@react-native/babel-preset'],
plugins: [
[
'module-resolver',
diff --git a/example/ios/.xcode.env.local b/example/ios/.xcode.env.local
new file mode 100644
index 00000000..5058c63f
--- /dev/null
+++ b/example/ios/.xcode.env.local
@@ -0,0 +1,2 @@
+export NODE_BINARY=/Users/robertkozik/.nvm/versions/node/v21.5.0/bin/node
+
diff --git a/example/ios/LiveMarkdownExample.xcodeproj/project.pbxproj b/example/ios/LiveMarkdownExample.xcodeproj/project.pbxproj
index 228c722f..00fbb217 100644
--- a/example/ios/LiveMarkdownExample.xcodeproj/project.pbxproj
+++ b/example/ios/LiveMarkdownExample.xcodeproj/project.pbxproj
@@ -536,7 +536,7 @@
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "c++17";
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
@@ -600,13 +600,10 @@
"-DFOLLY_MOBILE=1",
"-DFOLLY_USE_LIBCPP=1",
);
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-Wl",
- "-ld_classic",
- );
+ OTHER_LDFLAGS = "$(inherited)";
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
+ USE_HERMES = true;
};
name = Debug;
};
@@ -615,7 +612,7 @@
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "c++17";
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
@@ -674,13 +671,10 @@
"-DFOLLY_MOBILE=1",
"-DFOLLY_USE_LIBCPP=1",
);
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-Wl",
- "-ld_classic",
- );
+ OTHER_LDFLAGS = "$(inherited)";
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
+ USE_HERMES = true;
VALIDATE_PRODUCT = YES;
};
name = Release;
diff --git a/example/ios/LiveMarkdownExample/AppDelegate.mm b/example/ios/LiveMarkdownExample/AppDelegate.mm
index d5473fc8..165a4b60 100644
--- a/example/ios/LiveMarkdownExample/AppDelegate.mm
+++ b/example/ios/LiveMarkdownExample/AppDelegate.mm
@@ -15,6 +15,11 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
}
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
+{
+ return [self getBundleURL];
+}
+
+- (NSURL *)getBundleURL
{
#if DEBUG
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
diff --git a/example/ios/LiveMarkdownExample/Info.plist b/example/ios/LiveMarkdownExample/Info.plist
index d9fe4d24..127a0806 100644
--- a/example/ios/LiveMarkdownExample/Info.plist
+++ b/example/ios/LiveMarkdownExample/Info.plist
@@ -26,14 +26,11 @@
NSAppTransportSecurity
- NSExceptionDomains
-
- localhost
-
- NSExceptionAllowsInsecureHTTPLoads
-
-
-
+
+ NSAllowsArbitraryLoads
+
+ NSAllowsLocalNetworking
+
NSLocationWhenInUseUsageDescription
diff --git a/example/ios/Podfile b/example/ios/Podfile
index 5dd13dda..1eec67ca 100644
--- a/example/ios/Podfile
+++ b/example/ios/Podfile
@@ -28,14 +28,8 @@ end
target 'LiveMarkdownExample' do
config = use_native_modules!
- # Flags change depending on the env values.
- flags = get_default_flags()
-
use_react_native!(
:path => config[:reactNativePath],
- # Hermes is now enabled by default. Disable by setting this flag to false.
- :hermes_enabled => flags[:hermes_enabled],
- :fabric_enabled => flags[:fabric_enabled],
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
@@ -57,6 +51,5 @@ target 'LiveMarkdownExample' do
config[:reactNativePath],
:mac_catalyst_enabled => false
)
- __apply_Xcode_12_5_M1_post_install_workaround(installer)
end
end
diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock
index a49a38d5..cd9b7a84 100644
--- a/example/ios/Podfile.lock
+++ b/example/ios/Podfile.lock
@@ -1,16 +1,16 @@
PODS:
- - boost (1.76.0)
+ - boost (1.83.0)
- CocoaAsyncSocket (7.6.5)
- DoubleConversion (1.1.6)
- - FBLazyVector (0.72.9)
- - FBReactNativeSpec (0.72.9):
- - RCT-Folly (= 2021.07.22.00)
- - RCTRequired (= 0.72.9)
- - RCTTypeSafety (= 0.72.9)
- - React-Core (= 0.72.9)
- - React-jsi (= 0.72.9)
- - ReactCommon/turbomodule/core (= 0.72.9)
- - Flipper (0.182.0):
+ - FBLazyVector (0.73.4)
+ - FBReactNativeSpec (0.73.4):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTRequired (= 0.73.4)
+ - RCTTypeSafety (= 0.73.4)
+ - React-Core (= 0.73.4)
+ - React-jsi (= 0.73.4)
+ - ReactCommon/turbomodule/core (= 0.73.4)
+ - Flipper (0.201.0):
- Flipper-Folly (~> 2.6)
- Flipper-Boost-iOSX (1.76.0.1.11)
- Flipper-DoubleConversion (3.2.0.1)
@@ -24,94 +24,97 @@ PODS:
- OpenSSL-Universal (= 1.1.1100)
- Flipper-Glog (0.5.0.5)
- Flipper-PeerTalk (0.0.4)
- - FlipperKit (0.182.0):
- - FlipperKit/Core (= 0.182.0)
- - FlipperKit/Core (0.182.0):
- - Flipper (~> 0.182.0)
+ - FlipperKit (0.201.0):
+ - FlipperKit/Core (= 0.201.0)
+ - FlipperKit/Core (0.201.0):
+ - Flipper (~> 0.201.0)
- FlipperKit/CppBridge
- FlipperKit/FBCxxFollyDynamicConvert
- FlipperKit/FBDefines
- FlipperKit/FKPortForwarding
- SocketRocket (~> 0.6.0)
- - FlipperKit/CppBridge (0.182.0):
- - Flipper (~> 0.182.0)
- - FlipperKit/FBCxxFollyDynamicConvert (0.182.0):
+ - FlipperKit/CppBridge (0.201.0):
+ - Flipper (~> 0.201.0)
+ - FlipperKit/FBCxxFollyDynamicConvert (0.201.0):
- Flipper-Folly (~> 2.6)
- - FlipperKit/FBDefines (0.182.0)
- - FlipperKit/FKPortForwarding (0.182.0):
+ - FlipperKit/FBDefines (0.201.0)
+ - FlipperKit/FKPortForwarding (0.201.0):
- CocoaAsyncSocket (~> 7.6)
- Flipper-PeerTalk (~> 0.0.4)
- - FlipperKit/FlipperKitHighlightOverlay (0.182.0)
- - FlipperKit/FlipperKitLayoutHelpers (0.182.0):
+ - FlipperKit/FlipperKitHighlightOverlay (0.201.0)
+ - FlipperKit/FlipperKitLayoutHelpers (0.201.0):
- FlipperKit/Core
- FlipperKit/FlipperKitHighlightOverlay
- FlipperKit/FlipperKitLayoutTextSearchable
- - FlipperKit/FlipperKitLayoutIOSDescriptors (0.182.0):
+ - FlipperKit/FlipperKitLayoutIOSDescriptors (0.201.0):
- FlipperKit/Core
- FlipperKit/FlipperKitHighlightOverlay
- FlipperKit/FlipperKitLayoutHelpers
- - YogaKit (~> 1.18)
- - FlipperKit/FlipperKitLayoutPlugin (0.182.0):
+ - FlipperKit/FlipperKitLayoutPlugin (0.201.0):
- FlipperKit/Core
- FlipperKit/FlipperKitHighlightOverlay
- FlipperKit/FlipperKitLayoutHelpers
- FlipperKit/FlipperKitLayoutIOSDescriptors
- FlipperKit/FlipperKitLayoutTextSearchable
- - YogaKit (~> 1.18)
- - FlipperKit/FlipperKitLayoutTextSearchable (0.182.0)
- - FlipperKit/FlipperKitNetworkPlugin (0.182.0):
+ - FlipperKit/FlipperKitLayoutTextSearchable (0.201.0)
+ - FlipperKit/FlipperKitNetworkPlugin (0.201.0):
- FlipperKit/Core
- - FlipperKit/FlipperKitReactPlugin (0.182.0):
+ - FlipperKit/FlipperKitReactPlugin (0.201.0):
- FlipperKit/Core
- - FlipperKit/FlipperKitUserDefaultsPlugin (0.182.0):
+ - FlipperKit/FlipperKitUserDefaultsPlugin (0.201.0):
- FlipperKit/Core
- - FlipperKit/SKIOSNetworkPlugin (0.182.0):
+ - FlipperKit/SKIOSNetworkPlugin (0.201.0):
- FlipperKit/Core
- FlipperKit/FlipperKitNetworkPlugin
- fmt (6.2.1)
- glog (0.3.5)
- - hermes-engine (0.72.9):
- - hermes-engine/Pre-built (= 0.72.9)
- - hermes-engine/Pre-built (0.72.9)
+ - hermes-engine (0.73.4):
+ - hermes-engine/Pre-built (= 0.73.4)
+ - hermes-engine/Pre-built (0.73.4)
- libevent (2.1.12)
- OpenSSL-Universal (1.1.1100)
- - 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/Futures (2021.07.22.00):
+ - RCT-Folly/Fabric (2022.05.16.00):
+ - boost
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Futures (2022.05.16.00):
- boost
- DoubleConversion
- fmt (~> 6.2.1)
- glog
- libevent
- - RCTRequired (0.72.9)
- - RCTTypeSafety (0.72.9):
- - FBLazyVector (= 0.72.9)
- - RCTRequired (= 0.72.9)
- - React-Core (= 0.72.9)
- - React (0.72.9):
- - React-Core (= 0.72.9)
- - React-Core/DevSupport (= 0.72.9)
- - React-Core/RCTWebSocket (= 0.72.9)
- - React-RCTActionSheet (= 0.72.9)
- - React-RCTAnimation (= 0.72.9)
- - React-RCTBlob (= 0.72.9)
- - React-RCTImage (= 0.72.9)
- - React-RCTLinking (= 0.72.9)
- - React-RCTNetwork (= 0.72.9)
- - React-RCTSettings (= 0.72.9)
- - React-RCTText (= 0.72.9)
- - React-RCTVibration (= 0.72.9)
- - React-callinvoker (0.72.9)
- - React-Codegen (0.72.9):
+ - RCTRequired (0.73.4)
+ - RCTTypeSafety (0.73.4):
+ - FBLazyVector (= 0.73.4)
+ - RCTRequired (= 0.73.4)
+ - React-Core (= 0.73.4)
+ - React (0.73.4):
+ - React-Core (= 0.73.4)
+ - React-Core/DevSupport (= 0.73.4)
+ - React-Core/RCTWebSocket (= 0.73.4)
+ - React-RCTActionSheet (= 0.73.4)
+ - React-RCTAnimation (= 0.73.4)
+ - React-RCTBlob (= 0.73.4)
+ - React-RCTImage (= 0.73.4)
+ - React-RCTLinking (= 0.73.4)
+ - React-RCTNetwork (= 0.73.4)
+ - React-RCTSettings (= 0.73.4)
+ - React-RCTText (= 0.73.4)
+ - React-RCTVibration (= 0.73.4)
+ - React-callinvoker (0.73.4)
+ - React-Codegen (0.73.4):
- DoubleConversion
- FBReactNativeSpec
- glog
@@ -126,256 +129,824 @@ PODS:
- React-rncore
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - React-Core (0.72.9):
+ - React-Core (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default (= 0.72.9)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Core/Default (= 0.73.4)
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/CoreModulesHeaders (0.72.9):
+ - React-Core/CoreModulesHeaders (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/Default (0.72.9):
+ - React-Core/Default (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/DevSupport (0.72.9):
+ - React-Core/DevSupport (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default (= 0.72.9)
- - React-Core/RCTWebSocket (= 0.72.9)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Core/Default (= 0.73.4)
+ - React-Core/RCTWebSocket (= 0.73.4)
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- - React-jsinspector (= 0.72.9)
+ - React-jsinspector (= 0.73.4)
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTActionSheetHeaders (0.72.9):
+ - React-Core/RCTActionSheetHeaders (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTAnimationHeaders (0.72.9):
+ - React-Core/RCTAnimationHeaders (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTBlobHeaders (0.72.9):
+ - React-Core/RCTBlobHeaders (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTImageHeaders (0.72.9):
+ - React-Core/RCTImageHeaders (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTLinkingHeaders (0.72.9):
+ - React-Core/RCTLinkingHeaders (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTNetworkHeaders (0.72.9):
+ - React-Core/RCTNetworkHeaders (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTSettingsHeaders (0.72.9):
+ - React-Core/RCTSettingsHeaders (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTTextHeaders (0.72.9):
+ - React-Core/RCTTextHeaders (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTVibrationHeaders (0.72.9):
+ - React-Core/RCTVibrationHeaders (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTWebSocket (0.72.9):
+ - React-Core/RCTWebSocket (0.73.4):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default (= 0.72.9)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Core/Default (= 0.73.4)
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-CoreModules (0.72.9):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.72.9)
- - React-Codegen (= 0.72.9)
- - React-Core/CoreModulesHeaders (= 0.72.9)
- - React-jsi (= 0.72.9)
+ - React-CoreModules (0.73.4):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety (= 0.73.4)
+ - React-Codegen
+ - React-Core/CoreModulesHeaders (= 0.73.4)
+ - React-jsi (= 0.73.4)
+ - React-NativeModulesApple
- React-RCTBlob
- - React-RCTImage (= 0.72.9)
- - ReactCommon/turbomodule/core (= 0.72.9)
+ - React-RCTImage (= 0.73.4)
+ - ReactCommon
- SocketRocket (= 0.6.1)
- - React-cxxreact (0.72.9):
- - boost (= 1.76.0)
+ - React-cxxreact (0.73.4):
+ - boost (= 1.83.0)
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker (= 0.73.4)
+ - React-debug (= 0.73.4)
+ - React-jsi (= 0.73.4)
+ - React-jsinspector (= 0.73.4)
+ - React-logger (= 0.73.4)
+ - React-perflogger (= 0.73.4)
+ - React-runtimeexecutor (= 0.73.4)
+ - React-debug (0.73.4)
+ - React-Fabric (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/animations (= 0.73.4)
+ - React-Fabric/attributedstring (= 0.73.4)
+ - React-Fabric/componentregistry (= 0.73.4)
+ - React-Fabric/componentregistrynative (= 0.73.4)
+ - React-Fabric/components (= 0.73.4)
+ - React-Fabric/core (= 0.73.4)
+ - React-Fabric/imagemanager (= 0.73.4)
+ - React-Fabric/leakchecker (= 0.73.4)
+ - React-Fabric/mounting (= 0.73.4)
+ - React-Fabric/scheduler (= 0.73.4)
+ - React-Fabric/telemetry (= 0.73.4)
+ - React-Fabric/templateprocessor (= 0.73.4)
+ - React-Fabric/textlayoutmanager (= 0.73.4)
+ - React-Fabric/uimanager (= 0.73.4)
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/animations (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/attributedstring (0.73.4):
- DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-callinvoker (= 0.72.9)
- - React-debug (= 0.72.9)
- - React-jsi (= 0.72.9)
- - React-jsinspector (= 0.72.9)
- - React-logger (= 0.72.9)
- - React-perflogger (= 0.72.9)
- - React-runtimeexecutor (= 0.72.9)
- - React-debug (0.72.9)
- - React-hermes (0.72.9):
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/componentregistry (0.73.4):
- DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - RCT-Folly/Futures (= 2021.07.22.00)
- - React-cxxreact (= 0.72.9)
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
- React-jsi
- - React-jsiexecutor (= 0.72.9)
- - React-jsinspector (= 0.72.9)
- - React-perflogger (= 0.72.9)
- - React-jsi (0.72.9):
- - boost (= 1.76.0)
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/componentregistrynative (0.73.4):
- DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-jsiexecutor (0.72.9):
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components (0.73.4):
- DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-cxxreact (= 0.72.9)
- - React-jsi (= 0.72.9)
- - React-perflogger (= 0.72.9)
- - React-jsinspector (0.72.9)
- - React-logger (0.72.9):
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/components/inputaccessory (= 0.73.4)
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.73.4)
+ - React-Fabric/components/modal (= 0.73.4)
+ - React-Fabric/components/rncore (= 0.73.4)
+ - React-Fabric/components/root (= 0.73.4)
+ - React-Fabric/components/safeareaview (= 0.73.4)
+ - React-Fabric/components/scrollview (= 0.73.4)
+ - React-Fabric/components/text (= 0.73.4)
+ - React-Fabric/components/textinput (= 0.73.4)
+ - React-Fabric/components/unimplementedview (= 0.73.4)
+ - React-Fabric/components/view (= 0.73.4)
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/inputaccessory (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/legacyviewmanagerinterop (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/modal (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/rncore (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/root (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/safeareaview (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/scrollview (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/text (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/textinput (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/unimplementedview (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/view (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-Fabric/core (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/imagemanager (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/leakchecker (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/mounting (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/scheduler (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/telemetry (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/templateprocessor (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/textlayoutmanager (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/uimanager
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/uimanager (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-FabricImage (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired (= 0.73.4)
+ - RCTTypeSafety (= 0.73.4)
+ - React-Fabric
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-jsiexecutor (= 0.73.4)
+ - React-logger
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon
+ - Yoga
+ - React-graphics (0.73.4):
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - React-Core/Default (= 0.73.4)
+ - React-utils
+ - React-hermes (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly/Futures (= 2022.05.16.00)
+ - React-cxxreact (= 0.73.4)
+ - React-jsi
+ - React-jsiexecutor (= 0.73.4)
+ - React-jsinspector (= 0.73.4)
+ - React-perflogger (= 0.73.4)
+ - React-ImageManager (0.73.4):
+ - glog
+ - RCT-Folly/Fabric
+ - React-Core/Default
+ - React-debug
+ - React-Fabric
+ - React-graphics
+ - React-rendererdebug
+ - React-utils
+ - React-jserrorhandler (0.73.4):
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - React-debug
+ - React-jsi
+ - React-Mapbuffer
+ - React-jsi (0.73.4):
+ - boost (= 1.83.0)
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2022.05.16.00)
+ - React-jsiexecutor (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2022.05.16.00)
+ - React-cxxreact (= 0.73.4)
+ - React-jsi (= 0.73.4)
+ - React-perflogger (= 0.73.4)
+ - React-jsinspector (0.73.4)
+ - React-logger (0.73.4):
+ - glog
+ - React-Mapbuffer (0.73.4):
+ - glog
+ - React-debug
+ - React-nativeconfig (0.73.4)
+ - React-NativeModulesApple (0.73.4):
- glog
- - React-NativeModulesApple (0.72.9):
- hermes-engine
- React-callinvoker
- React-Core
@@ -384,145 +955,200 @@ PODS:
- React-runtimeexecutor
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - React-perflogger (0.72.9)
- - React-RCTActionSheet (0.72.9):
- - React-Core/RCTActionSheetHeaders (= 0.72.9)
- - React-RCTAnimation (0.72.9):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.72.9)
- - React-Codegen (= 0.72.9)
- - React-Core/RCTAnimationHeaders (= 0.72.9)
- - React-jsi (= 0.72.9)
- - ReactCommon/turbomodule/core (= 0.72.9)
- - React-RCTAppDelegate (0.72.9):
+ - React-perflogger (0.73.4)
+ - React-RCTActionSheet (0.73.4):
+ - React-Core/RCTActionSheetHeaders (= 0.73.4)
+ - React-RCTAnimation (0.73.4):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTAnimationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTAppDelegate (0.73.4):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
- React-Core
- React-CoreModules
- React-hermes
+ - React-nativeconfig
- React-NativeModulesApple
+ - React-RCTFabric
- React-RCTImage
- React-RCTNetwork
- React-runtimescheduler
- - ReactCommon/turbomodule/core
- - React-RCTBlob (0.72.9):
- - hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-Codegen (= 0.72.9)
- - React-Core/RCTBlobHeaders (= 0.72.9)
- - React-Core/RCTWebSocket (= 0.72.9)
- - React-jsi (= 0.72.9)
- - React-RCTNetwork (= 0.72.9)
- - ReactCommon/turbomodule/core (= 0.72.9)
- - React-RCTImage (0.72.9):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.72.9)
- - React-Codegen (= 0.72.9)
- - React-Core/RCTImageHeaders (= 0.72.9)
- - React-jsi (= 0.72.9)
- - React-RCTNetwork (= 0.72.9)
- - ReactCommon/turbomodule/core (= 0.72.9)
- - React-RCTLinking (0.72.9):
- - React-Codegen (= 0.72.9)
- - React-Core/RCTLinkingHeaders (= 0.72.9)
- - React-jsi (= 0.72.9)
- - ReactCommon/turbomodule/core (= 0.72.9)
- - React-RCTNetwork (0.72.9):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.72.9)
- - React-Codegen (= 0.72.9)
- - React-Core/RCTNetworkHeaders (= 0.72.9)
- - React-jsi (= 0.72.9)
- - ReactCommon/turbomodule/core (= 0.72.9)
- - React-RCTSettings (0.72.9):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.72.9)
- - React-Codegen (= 0.72.9)
- - React-Core/RCTSettingsHeaders (= 0.72.9)
- - React-jsi (= 0.72.9)
- - ReactCommon/turbomodule/core (= 0.72.9)
- - React-RCTText (0.72.9):
- - React-Core/RCTTextHeaders (= 0.72.9)
- - React-RCTVibration (0.72.9):
- - RCT-Folly (= 2021.07.22.00)
- - React-Codegen (= 0.72.9)
- - React-Core/RCTVibrationHeaders (= 0.72.9)
- - React-jsi (= 0.72.9)
- - ReactCommon/turbomodule/core (= 0.72.9)
- - React-rncore (0.72.9)
- - React-runtimeexecutor (0.72.9):
- - React-jsi (= 0.72.9)
- - React-runtimescheduler (0.72.9):
- - glog
- - hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - ReactCommon
+ - React-RCTBlob (0.73.4):
+ - hermes-engine
+ - 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.4):
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricImage
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-nativeconfig
+ - React-RCTImage
+ - React-RCTText
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - Yoga
+ - React-RCTImage (0.73.4):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTImageHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTNetwork
+ - ReactCommon
+ - React-RCTLinking (0.73.4):
+ - React-Codegen
+ - React-Core/RCTLinkingHeaders (= 0.73.4)
+ - React-jsi (= 0.73.4)
+ - React-NativeModulesApple
+ - ReactCommon
+ - ReactCommon/turbomodule/core (= 0.73.4)
+ - React-RCTNetwork (0.73.4):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTNetworkHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTSettings (0.73.4):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTSettingsHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTText (0.73.4):
+ - React-Core/RCTTextHeaders (= 0.73.4)
+ - Yoga
+ - React-RCTVibration (0.73.4):
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Codegen
+ - React-Core/RCTVibrationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-rendererdebug (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-debug
+ - React-rncore (0.73.4)
+ - React-runtimeexecutor (0.73.4):
+ - React-jsi (= 0.73.4)
+ - React-runtimescheduler (0.73.4):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2022.05.16.00)
- React-callinvoker
+ - React-cxxreact
- React-debug
- React-jsi
+ - React-rendererdebug
- React-runtimeexecutor
- - React-utils (0.72.9):
+ - React-utils
+ - React-utils (0.73.4):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-debug
- - ReactCommon/turbomodule/bridging (0.72.9):
+ - ReactCommon (0.73.4):
+ - React-logger (= 0.73.4)
+ - ReactCommon/turbomodule (= 0.73.4)
+ - ReactCommon/turbomodule (0.73.4):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker (= 0.73.4)
+ - React-cxxreact (= 0.73.4)
+ - React-jsi (= 0.73.4)
+ - React-logger (= 0.73.4)
+ - React-perflogger (= 0.73.4)
+ - ReactCommon/turbomodule/bridging (= 0.73.4)
+ - ReactCommon/turbomodule/core (= 0.73.4)
+ - ReactCommon/turbomodule/bridging (0.73.4):
- DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-callinvoker (= 0.72.9)
- - React-cxxreact (= 0.72.9)
- - React-jsi (= 0.72.9)
- - React-logger (= 0.72.9)
- - React-perflogger (= 0.72.9)
- - ReactCommon/turbomodule/core (0.72.9):
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker (= 0.73.4)
+ - React-cxxreact (= 0.73.4)
+ - React-jsi (= 0.73.4)
+ - React-logger (= 0.73.4)
+ - React-perflogger (= 0.73.4)
+ - ReactCommon/turbomodule/core (0.73.4):
- DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-callinvoker (= 0.72.9)
- - React-cxxreact (= 0.72.9)
- - React-jsi (= 0.72.9)
- - React-logger (= 0.72.9)
- - React-perflogger (= 0.72.9)
- - RNLiveMarkdown (0.1.3):
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker (= 0.73.4)
+ - React-cxxreact (= 0.73.4)
+ - React-jsi (= 0.73.4)
+ - React-logger (= 0.73.4)
+ - React-perflogger (= 0.73.4)
+ - RNLiveMarkdown (0.1.11):
+ - glog
+ - RCT-Folly (= 2022.05.16.00)
- React-Core
- SocketRocket (0.6.1)
- Yoga (1.14.0)
- - YogaKit (1.18.1):
- - Yoga (~> 1.14)
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`)
- - Flipper (= 0.182.0)
+ - Flipper (= 0.201.0)
- Flipper-Boost-iOSX (= 1.76.0.1.11)
- Flipper-DoubleConversion (= 3.2.0.1)
- Flipper-Fmt (= 7.1.7)
- Flipper-Folly (= 2.6.10)
- Flipper-Glog (= 0.5.0.5)
- Flipper-PeerTalk (= 0.0.4)
- - FlipperKit (= 0.182.0)
- - FlipperKit/Core (= 0.182.0)
- - FlipperKit/CppBridge (= 0.182.0)
- - FlipperKit/FBCxxFollyDynamicConvert (= 0.182.0)
- - FlipperKit/FBDefines (= 0.182.0)
- - FlipperKit/FKPortForwarding (= 0.182.0)
- - FlipperKit/FlipperKitHighlightOverlay (= 0.182.0)
- - FlipperKit/FlipperKitLayoutPlugin (= 0.182.0)
- - FlipperKit/FlipperKitLayoutTextSearchable (= 0.182.0)
- - FlipperKit/FlipperKitNetworkPlugin (= 0.182.0)
- - FlipperKit/FlipperKitReactPlugin (= 0.182.0)
- - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.182.0)
- - FlipperKit/SKIOSNetworkPlugin (= 0.182.0)
+ - FlipperKit (= 0.201.0)
+ - FlipperKit/Core (= 0.201.0)
+ - FlipperKit/CppBridge (= 0.201.0)
+ - FlipperKit/FBCxxFollyDynamicConvert (= 0.201.0)
+ - FlipperKit/FBDefines (= 0.201.0)
+ - FlipperKit/FKPortForwarding (= 0.201.0)
+ - FlipperKit/FlipperKitHighlightOverlay (= 0.201.0)
+ - FlipperKit/FlipperKitLayoutPlugin (= 0.201.0)
+ - FlipperKit/FlipperKitLayoutTextSearchable (= 0.201.0)
+ - FlipperKit/FlipperKitNetworkPlugin (= 0.201.0)
+ - FlipperKit/FlipperKitReactPlugin (= 0.201.0)
+ - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.201.0)
+ - FlipperKit/SKIOSNetworkPlugin (= 0.201.0)
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
- hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
- libevent (~> 2.1.12)
- OpenSSL-Universal (= 1.1.1100)
- 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`)
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
- React (from `../node_modules/react-native/`)
@@ -534,23 +1160,32 @@ DEPENDENCIES:
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
- 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-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
+ - 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-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`)
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
- React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
+ - React-RCTFabric (from `../node_modules/react-native/React`)
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
- 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`)
@@ -574,7 +1209,6 @@ SPEC REPOS:
- libevent
- OpenSSL-Universal
- SocketRocket
- - YogaKit
EXTERNAL SOURCES:
boost:
@@ -589,6 +1223,7 @@ EXTERNAL SOURCES:
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
hermes-engine:
:podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
+ :tag: hermes-2023-11-17-RNv0.73.0-21043a3fc062be445e56a2c10ecd8be028dd9cc5
RCT-Folly:
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
RCTRequired:
@@ -609,16 +1244,30 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/cxxreact"
React-debug:
: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-hermes:
:path: "../node_modules/react-native/ReactCommon/hermes"
+ React-ImageManager:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
+ 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-nativeconfig:
+ :path: "../node_modules/react-native/ReactCommon"
React-NativeModulesApple:
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
React-perflogger:
@@ -631,6 +1280,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/Libraries/AppDelegate"
React-RCTBlob:
:path: "../node_modules/react-native/Libraries/Blob"
+ React-RCTFabric:
+ :path: "../node_modules/react-native/React"
React-RCTImage:
:path: "../node_modules/react-native/Libraries/Image"
React-RCTLinking:
@@ -643,6 +1294,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:
@@ -659,61 +1312,69 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/yoga"
SPEC CHECKSUMS:
- boost: 7dcd2de282d72e344012f7d6564d024930a6a440
+ boost: d3f49c53809116a5d38da093a8aa78bf551aed09
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
- DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
- FBLazyVector: dc178b8748748c036ef9493a5d59d6d1f91a36ce
- FBReactNativeSpec: d0aaae78e93c89dc2d691d8052a4d2aeb1b461ee
- Flipper: 6edb735e6c3e332975d1b17956bcc584eccf5818
+ DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953
+ FBLazyVector: 84f6edbe225f38aebd9deaf1540a4160b1f087d7
+ FBReactNativeSpec: d0086a479be91c44ce4687a962956a352d2dc697
+ Flipper: c7a0093234c4bdd456e363f2f19b2e4b27652d44
Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
- FlipperKit: 2efad7007d6745a3f95e4034d547be637f89d3f6
+ FlipperKit: 37525a5d056ef9b93d1578e04bc3ea1de940094f
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
- glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
- hermes-engine: 9b9bb14184a11b8ceb4131b09abf634880f0f46d
+ glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2
+ hermes-engine: b2669ce35fc4ac14f523b307aff8896799829fe2
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
- RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
- RCTRequired: f30c3213569b1dc43659ecc549a6536e1e11139e
- RCTTypeSafety: e1ed3137728804fa98bce30b70e3da0b8e23054e
- React: 54070abee263d5773486987f1cf3a3616710ed52
- React-callinvoker: 794ea19cc4d8ce25921893141e131b9d6b7d02eb
- React-Codegen: 10359be5377b1a652839bcfe7b6b5bd7f73ae9f6
- React-Core: 7e2a9c4594083ecc68b91fc4a3f4d567e8c8b3b3
- React-CoreModules: 87cc386c2200862672b76bb02c4574b4b1d11b3c
- React-cxxreact: 1100498800597e812f0ce4ec365f4ea47ac39719
- React-debug: 4dca41301a67ab2916b2c99bef60344a7b653ac5
- React-hermes: b871a77ba1c427ca00f075759dc0cc9670484c94
- React-jsi: 1f8d073a00264c6a701c4b7b4f4ef9946f9b2455
- React-jsiexecutor: 5a169b1dd1abad06bed40ab7e1aca883c657d865
- React-jsinspector: 54205b269da20c51417e0fc02c4cde9f29a4bf1a
- React-logger: f42d2f2bc4cbb5d19d7c0ce84b8741b1e54e88c8
- React-NativeModulesApple: 9f72feb8a04020b32417f768a7e1e40eec91fef4
- React-perflogger: cb433f318c6667060fc1f62e26eb58d6eb30a627
- React-RCTActionSheet: 0af3f8ac067e8a1dde902810b7ad169d0a0ec31e
- React-RCTAnimation: 453a88e76ba6cb49819686acd8b21ce4d9ee4232
- React-RCTAppDelegate: b9fb07959f227ddd2c458c42ed5ceacbd1e1e367
- React-RCTBlob: fa513d56cdc2b7ad84a7758afc4863c1edd6a8b1
- React-RCTImage: 8e059fbdfab18b86127424dc3742532aab960760
- React-RCTLinking: 05ae2aa525b21a7f1c5069c14330700f470efd97
- React-RCTNetwork: 7ed9d99d028c53e9a23e318f65937f499ba8a6fd
- React-RCTSettings: 8b12ebf04d4baa0e259017fcef6cf7abd7d8ac51
- React-RCTText: a062ade9ff1591c46bcb6c5055fd4f96c154b8aa
- React-RCTVibration: 87c490b6f01746ab8f9b4e555f514cc030c06731
- React-rncore: 140bc11b316da7003bf039844aef39e1c242d7ad
- React-runtimeexecutor: 226ebef5f625878d3028b196cbecbbdeb6f208e4
- React-runtimescheduler: a7b1442e155c6f131d8bdfaac47abdc303f50788
- React-utils: a3ffbc321572ee91911d7bc30965abe9aa4e16af
- ReactCommon: 180205f326d59f52e12fa724f5278fcf8fb6afc3
- RNLiveMarkdown: 79f23328b984e15502395a44260917e999b07e08
+ RCT-Folly: 7169b2b1c44399c76a47b5deaaba715eeeb476c0
+ RCTRequired: ab7f915c15569f04a49669e573e6e319a53f9faa
+ RCTTypeSafety: 63b97ced7b766865057e7154db0e81ce4ee6cf1e
+ React: 1c87497e50fa40ba9c54e5ea5e53483a0f8eecc0
+ React-callinvoker: e3a52a9a93e3eb004d7282c26a4fb27003273fe6
+ React-Codegen: 50c0f8f073e71b929b057b68bf31be604f1dccc8
+ React-Core: d0ecde72894b792cb8922efaa0990199cbe85169
+ React-CoreModules: 2ff1684dd517f0c441495d90a704d499f05e9d0a
+ React-cxxreact: d9be2fac926741052395da0a6d0bab8d71e2f297
+ React-debug: 4678e73a37cb501d784e99ff0f219b4940362a3b
+ React-Fabric: 460ee9d4b8b9de3382504a711430bfead1d5be1e
+ React-FabricImage: d0a0631bc8ad9143f42bfccf9d3d533a144cc3d6
+ React-graphics: f0d5040263a9649e2a70ebe27b3120c49411afef
+ React-hermes: b9ac2f7b0c1eeb206eb883583cab7a973d570a6e
+ React-ImageManager: 6c4bf9d5ed363ead7b5aaf820a3feab221b7063e
+ React-jserrorhandler: 6e7a7e187583e14dc7a0053a2bdd66c252ea3b21
+ React-jsi: 380cd24dd81a705dd042c18989fb10b07182210c
+ React-jsiexecutor: 8ed7a18b9f119440efdcd424c8257dc7e18067e2
+ React-jsinspector: 9ac353eccf6ab54d1e0a33862ba91221d1e88460
+ React-logger: 0a57b68dd2aec7ff738195f081f0520724b35dab
+ React-Mapbuffer: 63913773ed7f96b814a2521e13e6d010282096ad
+ React-nativeconfig: d7af5bae6da70fa15ce44f045621cf99ed24087c
+ React-NativeModulesApple: 0123905d5699853ac68519607555a9a4f5c7b3ac
+ React-perflogger: 8a1e1af5733004bdd91258dcefbde21e0d1faccd
+ React-RCTActionSheet: 64bbff3a3963664c2d0146f870fe8e0264aee4c4
+ React-RCTAnimation: b698168a7269265a4694727196484342d695f0c1
+ React-RCTAppDelegate: dcd8e955116eb1d1908dfaf08b4c970812e6a1e6
+ React-RCTBlob: 47f8c3b2b4b7fa2c5f19c43f0b7f77f57fb9d953
+ React-RCTFabric: 6067a32d683d0c2b84d444548bc15a263c64abed
+ React-RCTImage: ac0e77a44c290b20db783649b2b9cddc93e3eb99
+ React-RCTLinking: e626fd2900913fe5d25922ea1be394b7aafa09c9
+ React-RCTNetwork: d3114bce3977dafe8bd06421b29812f5a8527ba0
+ React-RCTSettings: a53511f90d8df637a1a11ac729179a4d2f734481
+ React-RCTText: f0176f5f5952f9a4a2c7354f5ae71f7c420aaf34
+ React-RCTVibration: 8160223c6eda5b187079fec204f80eca8b8f3177
+ React-rendererdebug: ed286b4da8648c27d6ed3ae1410d4b21ba890d5a
+ React-rncore: 43f133b89ac10c4b6ab43702a541dee1c292a3bf
+ React-runtimeexecutor: e6ab6bb083dbdbdd489cff426ed0bce0652e6edf
+ React-runtimescheduler: ed48e5faac6751e66ee1261c4bd01643b436f112
+ React-utils: 6e5ad394416482ae21831050928ae27348f83487
+ ReactCommon: 840a955d37b7f3358554d819446bffcf624b2522
+ RNLiveMarkdown: be9c3c535506689d4340a951fd95b1fa5b4264f5
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
- Yoga: eddf2bbe4a896454c248a8f23b4355891eb720a6
- YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
+ Yoga: 1b901a6d6eeba4e8a2e8f308f708691cdb5db312
-PODFILE CHECKSUM: 936501d43e649497a70e9d4ee91befe7eb4e6148
+PODFILE CHECKSUM: 8cb8ab8858b4911d497d269a353fbfff868afef0
COCOAPODS: 1.14.3
diff --git a/example/package.json b/example/package.json
index 1bfe9ee9..330a832b 100644
--- a/example/package.json
+++ b/example/package.json
@@ -11,13 +11,14 @@
},
"dependencies": {
"react": "18.2.0",
- "react-native": "0.72.9"
+ "react-native": "0.73.4"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
- "@react-native/metro-config": "^0.72.11",
+ "@react-native/babel-preset": "0.73.21",
+ "@react-native/metro-config": "^0.73.5",
"babel-plugin-module-resolver": "^5.0.0",
"metro-react-native-babel-preset": "0.76.8",
"pod-install": "^0.1.0"
diff --git a/package.json b/package.json
index 116b1746..5f52c8cf 100644
--- a/package.json
+++ b/package.json
@@ -63,7 +63,7 @@
"@commitlint/config-conventional": "^17.0.2",
"@evilmartians/lefthook": "^1.5.0",
"@lwc/eslint-plugin-lwc": "^1.7.2",
- "@react-native/eslint-config": "^0.72.2",
+ "@react-native/eslint-config": "^0.73.2",
"@release-it/conventional-changelog": "^5.0.0",
"@types/jest": "^28.1.2",
"@types/react": "~17.0.21",
@@ -84,12 +84,12 @@
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
- "jest": "^28.1.1",
+ "jest": "^29.6.3",
"jest-environment-jsdom": "^29.7.0",
"pod-install": "^0.1.0",
- "prettier": "^2.0.5",
+ "prettier": "2.8.8",
"react": "18.2.0",
- "react-native": "0.72.9",
+ "react-native": "0.73.4",
"react-native-builder-bob": "^0.20.0",
"react-native-web": "^0.19.10",
"release-it": "^15.0.0",
diff --git a/src/MarkdownTextInput.web.tsx b/src/MarkdownTextInput.web.tsx
index c60d613f..abe8b5e4 100644
--- a/src/MarkdownTextInput.web.tsx
+++ b/src/MarkdownTextInput.web.tsx
@@ -250,7 +250,7 @@ const MarkdownTextInput = React.forwardRef(
const text = normalizeValue(divRef.current.innerText || '');
if (typeof e.target !== 'number') {
// TODO: change the logic here so every event have value property
- (e.target as HTMLInputElement).value = text;
+ (e.target as unknown as HTMLInputElement).value = text;
}
e.nativeEvent.text = text;
}
@@ -543,7 +543,7 @@ const MarkdownTextInput = React.forwardRef(
},
);
-const styles = StyleSheet.create({
+const styles = {
defaultInputStyles: {
borderColor: 'black',
borderWidth: 1,
@@ -559,7 +559,7 @@ const styles = StyleSheet.create({
opacity: 0.75,
cursor: 'default',
},
-});
+};
export default MarkdownTextInput;
diff --git a/yarn.lock b/yarn.lock
index ad77dc60..62e0d1cc 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -62,6 +62,29 @@ __metadata:
languageName: node
linkType: hard
+"@babel/core@npm:^7.23.9":
+ version: 7.23.9
+ resolution: "@babel/core@npm:7.23.9"
+ dependencies:
+ "@ampproject/remapping": ^2.2.0
+ "@babel/code-frame": ^7.23.5
+ "@babel/generator": ^7.23.6
+ "@babel/helper-compilation-targets": ^7.23.6
+ "@babel/helper-module-transforms": ^7.23.3
+ "@babel/helpers": ^7.23.9
+ "@babel/parser": ^7.23.9
+ "@babel/template": ^7.23.9
+ "@babel/traverse": ^7.23.9
+ "@babel/types": ^7.23.9
+ convert-source-map: ^2.0.0
+ debug: ^4.1.0
+ gensync: ^1.0.0-beta.2
+ json5: ^2.2.3
+ semver: ^6.3.1
+ checksum: 634a511f74db52a5f5a283c1121f25e2227b006c095b84a02a40a9213842489cd82dc7d61cdc74e10b5bcd9bb0a4e28bab47635b54c7e2256d47ab57356e2a76
+ languageName: node
+ linkType: hard
+
"@babel/eslint-parser@npm:^7.20.0":
version: 7.23.3
resolution: "@babel/eslint-parser@npm:7.23.3"
@@ -337,6 +360,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helpers@npm:^7.23.9":
+ version: 7.23.9
+ resolution: "@babel/helpers@npm:7.23.9"
+ dependencies:
+ "@babel/template": ^7.23.9
+ "@babel/traverse": ^7.23.9
+ "@babel/types": ^7.23.9
+ checksum: 2678231192c0471dbc2fc403fb19456cc46b1afefcfebf6bc0f48b2e938fdb0fef2e0fe90c8c8ae1f021dae5012b700372e4b5d15867f1d7764616532e4a6324
+ languageName: node
+ linkType: hard
+
"@babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
@@ -357,6 +391,15 @@ __metadata:
languageName: node
linkType: hard
+"@babel/parser@npm:^7.23.9":
+ version: 7.23.9
+ resolution: "@babel/parser@npm:7.23.9"
+ bin:
+ parser: ./bin/babel-parser.js
+ checksum: e7cd4960ac8671774e13803349da88d512f9292d7baa952173260d3e8f15620a28a3701f14f709d769209022f9e7b79965256b8be204fc550cfe783cdcabe7c7
+ languageName: node
+ linkType: hard
+
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.23.3"
@@ -407,7 +450,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.17.12, @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.17.12, @babel/plugin-proposal-class-properties@npm:^7.18.0":
version: 7.18.6
resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6"
dependencies:
@@ -455,7 +498,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:
@@ -526,7 +569,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-class-properties@npm:^7.0.0, @babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3":
+"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
@@ -581,7 +624,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:
@@ -636,7 +679,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.23.3, @babel/plugin-syntax-jsx@npm:^7.7.2":
version: 7.23.3
resolution: "@babel/plugin-syntax-jsx@npm:7.23.3"
dependencies:
@@ -680,7 +723,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:
@@ -796,7 +839,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-block-scoped-functions@npm:^7.0.0, @babel/plugin-transform-block-scoped-functions@npm:^7.23.3":
+"@babel/plugin-transform-block-scoped-functions@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.23.3"
dependencies:
@@ -873,7 +916,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.23.3":
+"@babel/plugin-transform-destructuring@npm:^7.20.0, @babel/plugin-transform-destructuring@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-transform-destructuring@npm:7.23.3"
dependencies:
@@ -943,7 +986,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:
@@ -955,7 +998,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-for-of@npm:^7.0.0, @babel/plugin-transform-for-of@npm:^7.23.6":
+"@babel/plugin-transform-for-of@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/plugin-transform-for-of@npm:7.23.6"
dependencies:
@@ -1015,7 +1058,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-member-expression-literals@npm:^7.0.0, @babel/plugin-transform-member-expression-literals@npm:^7.23.3":
+"@babel/plugin-transform-member-expression-literals@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.23.3"
dependencies:
@@ -1139,7 +1182,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-object-super@npm:^7.0.0, @babel/plugin-transform-object-super@npm:^7.23.3":
+"@babel/plugin-transform-object-super@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-transform-object-super@npm:7.23.3"
dependencies:
@@ -1187,7 +1230,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-private-methods@npm:^7.23.3":
+"@babel/plugin-transform-private-methods@npm:^7.22.5, @babel/plugin-transform-private-methods@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-transform-private-methods@npm:7.23.3"
dependencies:
@@ -1199,7 +1242,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-private-property-in-object@npm:^7.23.4":
+"@babel/plugin-transform-private-property-in-object@npm:^7.22.11, @babel/plugin-transform-private-property-in-object@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/plugin-transform-private-property-in-object@npm:7.23.4"
dependencies:
@@ -1213,7 +1256,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-property-literals@npm:^7.0.0, @babel/plugin-transform-property-literals@npm:^7.23.3":
+"@babel/plugin-transform-property-literals@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-transform-property-literals@npm:7.23.3"
dependencies:
@@ -1368,7 +1411,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-template-literals@npm:^7.0.0, @babel/plugin-transform-template-literals@npm:^7.23.3":
+"@babel/plugin-transform-template-literals@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-transform-template-literals@npm:7.23.3"
dependencies:
@@ -1640,7 +1683,18 @@ __metadata:
languageName: node
linkType: hard
-"@babel/traverse@npm:^7.20.0, @babel/traverse@npm:^7.23.7, @babel/traverse@npm:^7.7.0, @babel/traverse@npm:^7.7.2":
+"@babel/template@npm:^7.23.9":
+ version: 7.23.9
+ resolution: "@babel/template@npm:7.23.9"
+ dependencies:
+ "@babel/code-frame": ^7.23.5
+ "@babel/parser": ^7.23.9
+ "@babel/types": ^7.23.9
+ checksum: 6e67414c0f7125d7ecaf20c11fab88085fa98a96c3ef10da0a61e962e04fdf3a18a496a66047005ddd1bb682a7cc7842d556d1db2f3f3f6ccfca97d5e445d342
+ languageName: node
+ linkType: hard
+
+"@babel/traverse@npm:^7.20.0, @babel/traverse@npm:^7.23.7, @babel/traverse@npm:^7.7.0":
version: 7.23.7
resolution: "@babel/traverse@npm:7.23.7"
dependencies:
@@ -1658,6 +1712,24 @@ __metadata:
languageName: node
linkType: hard
+"@babel/traverse@npm:^7.23.9":
+ version: 7.23.9
+ resolution: "@babel/traverse@npm:7.23.9"
+ dependencies:
+ "@babel/code-frame": ^7.23.5
+ "@babel/generator": ^7.23.6
+ "@babel/helper-environment-visitor": ^7.22.20
+ "@babel/helper-function-name": ^7.23.0
+ "@babel/helper-hoist-variables": ^7.22.5
+ "@babel/helper-split-export-declaration": ^7.22.6
+ "@babel/parser": ^7.23.9
+ "@babel/types": ^7.23.9
+ debug: ^4.3.1
+ globals: ^11.1.0
+ checksum: a932f7aa850e158c00c97aad22f639d48c72805c687290f6a73e30c5c4957c07f5d28310c9bf59648e2980fe6c9d16adeb2ff92a9ca0f97fa75739c1328fc6c3
+ languageName: node
+ linkType: hard
+
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.19, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.23.4, @babel/types@npm:^7.23.6, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.7.0, @babel/types@npm:^7.8.3":
version: 7.23.6
resolution: "@babel/types@npm:7.23.6"
@@ -1669,6 +1741,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/types@npm:^7.23.9":
+ version: 7.23.9
+ resolution: "@babel/types@npm:7.23.9"
+ dependencies:
+ "@babel/helper-string-parser": ^7.23.4
+ "@babel/helper-validator-identifier": ^7.22.20
+ to-fast-properties: ^2.0.0
+ checksum: 0a9b008e9bfc89beb8c185e620fa0f8ed6c771f1e1b2e01e1596870969096fec7793898a1d64a035176abf1dd13e2668ee30bf699f2d92c210a8128f4b151e65
+ languageName: node
+ linkType: hard
+
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
@@ -1744,12 +1827,13 @@ __metadata:
"@babel/core": ^7.20.0
"@babel/preset-env": ^7.20.0
"@babel/runtime": ^7.20.0
- "@react-native/metro-config": ^0.72.11
+ "@react-native/babel-preset": 0.73.21
+ "@react-native/metro-config": ^0.73.5
babel-plugin-module-resolver: ^5.0.0
metro-react-native-babel-preset: 0.76.8
pod-install: ^0.1.0
react: 18.2.0
- react-native: 0.72.9
+ react-native: 0.73.4
languageName: unknown
linkType: soft
@@ -1762,7 +1846,7 @@ __metadata:
"@commitlint/config-conventional": ^17.0.2
"@evilmartians/lefthook": ^1.5.0
"@lwc/eslint-plugin-lwc": ^1.7.2
- "@react-native/eslint-config": ^0.72.2
+ "@react-native/eslint-config": ^0.73.2
"@release-it/conventional-changelog": ^5.0.0
"@types/jest": ^28.1.2
"@types/react": ~17.0.21
@@ -1783,12 +1867,12 @@ __metadata:
eslint-plugin-prettier: ^4.0.0
eslint-plugin-promise: ^6.1.1
eslint-plugin-tsdoc: ^0.2.17
- jest: ^28.1.1
+ jest: ^29.6.3
jest-environment-jsdom: ^29.7.0
pod-install: ^0.1.0
- prettier: ^2.0.5
+ prettier: 2.8.8
react: 18.2.0
- react-native: 0.72.9
+ react-native: 0.73.4
react-native-builder-bob: ^0.20.0
react-native-web: ^0.19.10
release-it: ^15.0.0
@@ -1869,6 +1953,13 @@ __metadata:
languageName: node
linkType: hard
+"@isaacs/ttlcache@npm:^1.4.1":
+ version: 1.4.1
+ resolution: "@isaacs/ttlcache@npm:1.4.1"
+ checksum: b99f0918faf1eba405b6bc3421584282b2edc46cca23f8d8e112a643bf6e4506c6c53a4525901118e229d19c5719bbec3028ec438d758fd71081f6c32af871ec
+ 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"
@@ -1882,58 +1973,57 @@ __metadata:
languageName: node
linkType: hard
-"@istanbuljs/schema@npm:^0.1.2":
+"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3":
version: 0.1.3
resolution: "@istanbuljs/schema@npm:0.1.3"
checksum: 5282759d961d61350f33d9118d16bcaed914ebf8061a52f4fa474b2cb08720c9c81d165e13b82f2e5a8a212cc5af482f0c6fc1ac27b9e067e5394c9a6ed186c9
languageName: node
linkType: hard
-"@jest/console@npm:^28.1.3":
- version: 28.1.3
- resolution: "@jest/console@npm:28.1.3"
+"@jest/console@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "@jest/console@npm:29.7.0"
dependencies:
- "@jest/types": ^28.1.3
+ "@jest/types": ^29.6.3
"@types/node": "*"
chalk: ^4.0.0
- jest-message-util: ^28.1.3
- jest-util: ^28.1.3
+ jest-message-util: ^29.7.0
+ jest-util: ^29.7.0
slash: ^3.0.0
- checksum: fe50d98d26d02ce2901c76dff4bd5429a33c13affb692c9ebf8a578ca2f38a5dd854363d40d6c394f215150791fd1f692afd8e730a4178dda24107c8dfd9750a
+ checksum: 0e3624e32c5a8e7361e889db70b170876401b7d70f509a2538c31d5cd50deb0c1ae4b92dc63fe18a0902e0a48c590c21d53787a0df41a52b34fa7cab96c384d6
languageName: node
linkType: hard
-"@jest/core@npm:^28.1.3":
- version: 28.1.3
- resolution: "@jest/core@npm:28.1.3"
+"@jest/core@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "@jest/core@npm:29.7.0"
dependencies:
- "@jest/console": ^28.1.3
- "@jest/reporters": ^28.1.3
- "@jest/test-result": ^28.1.3
- "@jest/transform": ^28.1.3
- "@jest/types": ^28.1.3
+ "@jest/console": ^29.7.0
+ "@jest/reporters": ^29.7.0
+ "@jest/test-result": ^29.7.0
+ "@jest/transform": ^29.7.0
+ "@jest/types": ^29.6.3
"@types/node": "*"
ansi-escapes: ^4.2.1
chalk: ^4.0.0
ci-info: ^3.2.0
exit: ^0.1.2
graceful-fs: ^4.2.9
- jest-changed-files: ^28.1.3
- jest-config: ^28.1.3
- jest-haste-map: ^28.1.3
- jest-message-util: ^28.1.3
- jest-regex-util: ^28.0.2
- jest-resolve: ^28.1.3
- jest-resolve-dependencies: ^28.1.3
- jest-runner: ^28.1.3
- jest-runtime: ^28.1.3
- jest-snapshot: ^28.1.3
- jest-util: ^28.1.3
- jest-validate: ^28.1.3
- jest-watcher: ^28.1.3
+ jest-changed-files: ^29.7.0
+ jest-config: ^29.7.0
+ jest-haste-map: ^29.7.0
+ jest-message-util: ^29.7.0
+ jest-regex-util: ^29.6.3
+ jest-resolve: ^29.7.0
+ jest-resolve-dependencies: ^29.7.0
+ jest-runner: ^29.7.0
+ jest-runtime: ^29.7.0
+ jest-snapshot: ^29.7.0
+ jest-util: ^29.7.0
+ jest-validate: ^29.7.0
+ jest-watcher: ^29.7.0
micromatch: ^4.0.4
- pretty-format: ^28.1.3
- rimraf: ^3.0.0
+ pretty-format: ^29.7.0
slash: ^3.0.0
strip-ansi: ^6.0.0
peerDependencies:
@@ -1941,11 +2031,11 @@ __metadata:
peerDependenciesMeta:
node-notifier:
optional: true
- checksum: cb79f34bafc4637e7130df12257f5b29075892a2be2c7f45c6d4c0420853e80b5dae11016e652530eb234f4c44c00910cdca3c2cd86275721860725073f7d9b4
+ checksum: af759c9781cfc914553320446ce4e47775ae42779e73621c438feb1e4231a5d4862f84b1d8565926f2d1aab29b3ec3dcfdc84db28608bdf5f29867124ebcfc0d
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:
@@ -1954,18 +2044,6 @@ __metadata:
languageName: node
linkType: hard
-"@jest/environment@npm:^28.1.3":
- version: 28.1.3
- resolution: "@jest/environment@npm:28.1.3"
- dependencies:
- "@jest/fake-timers": ^28.1.3
- "@jest/types": ^28.1.3
- "@types/node": "*"
- jest-mock: ^28.1.3
- checksum: 14c496b84aef951df33128cea68988e9de43b2e9d62be9f9c4308d4ac307fa345642813679f80d0a4cedeb900cf6f0b6bb2b92ce089528e8721f72295fdc727f
- languageName: node
- linkType: hard
-
"@jest/environment@npm:^29.7.0":
version: 29.7.0
resolution: "@jest/environment@npm:29.7.0"
@@ -1987,27 +2065,22 @@ __metadata:
languageName: node
linkType: hard
-"@jest/expect@npm:^28.1.3":
- version: 28.1.3
- resolution: "@jest/expect@npm:28.1.3"
+"@jest/expect-utils@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "@jest/expect-utils@npm:29.7.0"
dependencies:
- expect: ^28.1.3
- jest-snapshot: ^28.1.3
- checksum: 4197f6fdddc33dc45ba4e838f992fc61839c421d7aed0dfe665ef9c2f172bb1df8a8cac9cecee272b40e744a326da521d5e182709fe82a0b936055bfffa3b473
+ jest-get-type: ^29.6.3
+ checksum: 75eb177f3d00b6331bcaa057e07c0ccb0733a1d0a1943e1d8db346779039cb7f103789f16e502f888a3096fb58c2300c38d1f3748b36a7fa762eb6f6d1b160ed
languageName: node
linkType: hard
-"@jest/fake-timers@npm:^28.1.3":
- version: 28.1.3
- resolution: "@jest/fake-timers@npm:28.1.3"
+"@jest/expect@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "@jest/expect@npm:29.7.0"
dependencies:
- "@jest/types": ^28.1.3
- "@sinonjs/fake-timers": ^9.1.2
- "@types/node": "*"
- jest-message-util: ^28.1.3
- jest-mock: ^28.1.3
- jest-util: ^28.1.3
- checksum: cec14d5b14913a54dce64a62912c5456235f5d90b509ceae19c727565073114dae1aaf960ac6be96b3eb94789a3a758b96b72c8fca7e49a6ccac415fbc0321e1
+ expect: ^29.7.0
+ jest-snapshot: ^29.7.0
+ checksum: a01cb85fd9401bab3370618f4b9013b90c93536562222d920e702a0b575d239d74cecfe98010aaec7ad464f67cf534a353d92d181646a4b792acaa7e912ae55e
languageName: node
linkType: hard
@@ -2025,27 +2098,28 @@ __metadata:
languageName: node
linkType: hard
-"@jest/globals@npm:^28.1.3":
- version: 28.1.3
- resolution: "@jest/globals@npm:28.1.3"
+"@jest/globals@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "@jest/globals@npm:29.7.0"
dependencies:
- "@jest/environment": ^28.1.3
- "@jest/expect": ^28.1.3
- "@jest/types": ^28.1.3
- checksum: 3504bb23de629d466c6f2b6b75d2e1c1b10caccbbcfb7eaa82d22cc37711c8e364c243929581184846605c023b475ea6c42c2e3ea5994429a988d8d527af32cd
+ "@jest/environment": ^29.7.0
+ "@jest/expect": ^29.7.0
+ "@jest/types": ^29.6.3
+ jest-mock: ^29.7.0
+ checksum: 97dbb9459135693ad3a422e65ca1c250f03d82b2a77f6207e7fa0edd2c9d2015fbe4346f3dc9ebff1678b9d8da74754d4d440b7837497f8927059c0642a22123
languageName: node
linkType: hard
-"@jest/reporters@npm:^28.1.3":
- version: 28.1.3
- resolution: "@jest/reporters@npm:28.1.3"
+"@jest/reporters@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "@jest/reporters@npm:29.7.0"
dependencies:
"@bcoe/v8-coverage": ^0.2.3
- "@jest/console": ^28.1.3
- "@jest/test-result": ^28.1.3
- "@jest/transform": ^28.1.3
- "@jest/types": ^28.1.3
- "@jridgewell/trace-mapping": ^0.3.13
+ "@jest/console": ^29.7.0
+ "@jest/test-result": ^29.7.0
+ "@jest/transform": ^29.7.0
+ "@jest/types": ^29.6.3
+ "@jridgewell/trace-mapping": ^0.3.18
"@types/node": "*"
chalk: ^4.0.0
collect-v8-coverage: ^1.0.0
@@ -2053,24 +2127,23 @@ __metadata:
glob: ^7.1.3
graceful-fs: ^4.2.9
istanbul-lib-coverage: ^3.0.0
- istanbul-lib-instrument: ^5.1.0
+ istanbul-lib-instrument: ^6.0.0
istanbul-lib-report: ^3.0.0
istanbul-lib-source-maps: ^4.0.0
istanbul-reports: ^3.1.3
- jest-message-util: ^28.1.3
- jest-util: ^28.1.3
- jest-worker: ^28.1.3
+ jest-message-util: ^29.7.0
+ jest-util: ^29.7.0
+ jest-worker: ^29.7.0
slash: ^3.0.0
string-length: ^4.0.1
strip-ansi: ^6.0.0
- terminal-link: ^2.0.0
v8-to-istanbul: ^9.0.1
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
- checksum: a7440887ce837922cbeaa64c3232eb48aae02aa9123f29fc4280ad3e1afe4b35dcba171ba1d5fd219037c396c5152d9c2d102cff1798dd5ae3bd33ac4759ae0a
+ checksum: 7eadabd62cc344f629024b8a268ecc8367dba756152b761bdcb7b7e570a3864fc51b2a9810cd310d85e0a0173ef002ba4528d5ea0329fbf66ee2a3ada9c40455
languageName: node
linkType: hard
@@ -2092,61 +2165,61 @@ __metadata:
languageName: node
linkType: hard
-"@jest/source-map@npm:^28.1.2":
- version: 28.1.2
- resolution: "@jest/source-map@npm:28.1.2"
+"@jest/source-map@npm:^29.6.3":
+ version: 29.6.3
+ resolution: "@jest/source-map@npm:29.6.3"
dependencies:
- "@jridgewell/trace-mapping": ^0.3.13
+ "@jridgewell/trace-mapping": ^0.3.18
callsites: ^3.0.0
graceful-fs: ^4.2.9
- checksum: b82a5c2e93d35d86779c61a02ccb967d1b5cd2e9dd67d26d8add44958637cbbb99daeeb8129c7653389cb440dc2a2f5ae4d2183dc453c67669ff98938b775a3a
+ checksum: bcc5a8697d471396c0003b0bfa09722c3cd879ad697eb9c431e6164e2ea7008238a01a07193dfe3cbb48b1d258eb7251f6efcea36f64e1ebc464ea3c03ae2deb
languageName: node
linkType: hard
-"@jest/test-result@npm:^28.1.3":
- version: 28.1.3
- resolution: "@jest/test-result@npm:28.1.3"
+"@jest/test-result@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "@jest/test-result@npm:29.7.0"
dependencies:
- "@jest/console": ^28.1.3
- "@jest/types": ^28.1.3
+ "@jest/console": ^29.7.0
+ "@jest/types": ^29.6.3
"@types/istanbul-lib-coverage": ^2.0.0
collect-v8-coverage: ^1.0.0
- checksum: 957a5dd2fd2e84aabe86698f93c0825e96128ccaa23abf548b159a9b08ac74e4bde7acf4bec48479243dbdb27e4ea1b68c171846d21fb64855c6b55cead9ef27
+ checksum: 67b6317d526e335212e5da0e768e3b8ab8a53df110361b80761353ad23b6aea4432b7c5665bdeb87658ea373b90fb1afe02ed3611ef6c858c7fba377505057fa
languageName: node
linkType: hard
-"@jest/test-sequencer@npm:^28.1.3":
- version: 28.1.3
- resolution: "@jest/test-sequencer@npm:28.1.3"
+"@jest/test-sequencer@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "@jest/test-sequencer@npm:29.7.0"
dependencies:
- "@jest/test-result": ^28.1.3
+ "@jest/test-result": ^29.7.0
graceful-fs: ^4.2.9
- jest-haste-map: ^28.1.3
+ jest-haste-map: ^29.7.0
slash: ^3.0.0
- checksum: 13f8905e6d1ec8286694146f7be3cf90eff801bbdea5e5c403e6881444bb390ed15494c7b9948aa94bd7e9c9a851e0d3002ed6e7371d048b478596e5b23df953
+ checksum: 73f43599017946be85c0b6357993b038f875b796e2f0950487a82f4ebcb115fa12131932dd9904026b4ad8be131fe6e28bd8d0aa93b1563705185f9804bff8bd
languageName: node
linkType: hard
-"@jest/transform@npm:^28.1.3":
- version: 28.1.3
- resolution: "@jest/transform@npm:28.1.3"
+"@jest/transform@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "@jest/transform@npm:29.7.0"
dependencies:
"@babel/core": ^7.11.6
- "@jest/types": ^28.1.3
- "@jridgewell/trace-mapping": ^0.3.13
+ "@jest/types": ^29.6.3
+ "@jridgewell/trace-mapping": ^0.3.18
babel-plugin-istanbul: ^6.1.1
chalk: ^4.0.0
- convert-source-map: ^1.4.0
- fast-json-stable-stringify: ^2.0.0
+ convert-source-map: ^2.0.0
+ fast-json-stable-stringify: ^2.1.0
graceful-fs: ^4.2.9
- jest-haste-map: ^28.1.3
- jest-regex-util: ^28.0.2
- jest-util: ^28.1.3
+ jest-haste-map: ^29.7.0
+ jest-regex-util: ^29.6.3
+ jest-util: ^29.7.0
micromatch: ^4.0.4
pirates: ^4.0.4
slash: ^3.0.0
- write-file-atomic: ^4.0.1
- checksum: dadf618936e0aa84342f07f532801d5bed43cdf95d1417b929e4f8782c872cff1adc84096d5a287a796d0039a2691c06d8450cce5a713a8b52fbb9f872a1e760
+ write-file-atomic: ^4.0.2
+ checksum: 0f8ac9f413903b3cb6d240102db848f2a354f63971ab885833799a9964999dd51c388162106a807f810071f864302cdd8e3f0c241c29ce02d85a36f18f3f40ab
languageName: node
linkType: hard
@@ -2163,19 +2236,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": ^2.0.0
- "@types/istanbul-reports": ^3.0.0
- "@types/node": "*"
- "@types/yargs": ^16.0.0
- chalk: ^4.0.0
- checksum: d1f43cc946d87543ddd79d49547aab2399481d34025d5c5f2025d3d99c573e1d9832fa83cef25e9d9b07a8583500229d15bbb07b8e233d127d911d133e2f14b1
- languageName: node
- linkType: hard
-
"@jest/types@npm:^28.1.3":
version: 28.1.3
resolution: "@jest/types@npm:28.1.3"
@@ -2246,7 +2306,7 @@ __metadata:
languageName: node
linkType: hard
-"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.13, @jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9":
+"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.21
resolution: "@jridgewell/trace-mapping@npm:0.3.21"
dependencies:
@@ -2256,6 +2316,16 @@ __metadata:
languageName: node
linkType: hard
+"@jridgewell/trace-mapping@npm:^0.3.18":
+ version: 0.3.22
+ resolution: "@jridgewell/trace-mapping@npm:0.3.22"
+ dependencies:
+ "@jridgewell/resolve-uri": ^3.1.0
+ "@jridgewell/sourcemap-codec": ^1.4.14
+ checksum: ac7dd2cfe0b479aa1b81776d40d789243131cc792dc8b6b6a028c70fcd6171958ae1a71bf67b618ffe3c0c3feead9870c095ee46a5e30319410d92976b28f498
+ languageName: node
+ linkType: hard
+
"@lwc/eslint-plugin-lwc@npm:^0.11.0":
version: 0.11.0
resolution: "@lwc/eslint-plugin-lwc@npm:0.11.0"
@@ -2537,132 +2607,119 @@ __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.2":
+ version: 12.3.2
+ resolution: "@react-native-community/cli-clean@npm:12.3.2"
dependencies:
- "@react-native-community/cli-tools": 11.3.10
+ "@react-native-community/cli-tools": 12.3.2
chalk: ^4.1.2
execa: ^5.0.0
- prompts: ^2.4.0
- checksum: 6bdad6188a80c0ffac706cc79ab09bdc5b9477675b4efadfae0b9d4bab7e7ff4525149a1e06da53312a66c13aeaec6260a5ca3fdf72c5289761aff9ff5905b9c
+ checksum: 3a6dfba3cc13ff92c823d0139cec9457778d095e7bb60c1fbb6494373adabf5b863226d35eb311c4e662f2c9192cc1839e878a788560be2b9eedf4b6a92914ae
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.2":
+ version: 12.3.2
+ resolution: "@react-native-community/cli-config@npm:12.3.2"
dependencies:
- "@react-native-community/cli-tools": 11.3.10
+ "@react-native-community/cli-tools": 12.3.2
chalk: ^4.1.2
cosmiconfig: ^5.1.0
deepmerge: ^4.3.0
glob: ^7.1.3
joi: ^17.2.1
- checksum: c0652bf384019fbfc4ae9f6abaec23372d5d6d4b86d57ede3dd92d92134ed7d3f1357acd300dc858fd88d76c801d74b1df0d06e51d7b78550464ce740b7e48b9
+ checksum: 2f3cb1686db553936eb05e378e63813fcb93f96dadd393dae0a40acf2dab18772d551aa11923039c5b6e2e08482caa79c238111d052dd0db5cac0b6526f565d3
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.2":
+ version: 12.3.2
+ resolution: "@react-native-community/cli-debugger-ui@npm:12.3.2"
dependencies:
serve-static: ^1.13.1
- checksum: de58daa03cf9a94a8d99d7464d9604751703d357b1c09d9bcedbbb1650c792b7e3724f21467fa198b6a2fe94485e6e426a79a25e06e4579105957032c508eb8a
+ checksum: e6876caab65ec6129dde9be0addcfddefd18c191d5968d2d8087eac618b08df9de94e0fbb7e81de96299c3993799eea53ecb95023420e4da6411f15dbbdc0c2c
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.2":
+ version: 12.3.2
+ resolution: "@react-native-community/cli-doctor@npm:12.3.2"
dependencies:
- "@react-native-community/cli-config": 11.3.10
- "@react-native-community/cli-platform-android": 11.3.10
- "@react-native-community/cli-platform-ios": 11.3.10
- "@react-native-community/cli-tools": 11.3.10
+ "@react-native-community/cli-config": 12.3.2
+ "@react-native-community/cli-platform-android": 12.3.2
+ "@react-native-community/cli-platform-ios": 12.3.2
+ "@react-native-community/cli-tools": 12.3.2
chalk: ^4.1.2
command-exists: ^1.2.8
- envinfo: ^7.7.2
+ deepmerge: ^4.3.0
+ envinfo: ^7.10.0
execa: ^5.0.0
hermes-profile-transformer: ^0.0.6
ip: ^1.1.5
node-stream-zip: ^1.9.1
ora: ^5.4.1
- prompts: ^2.4.0
semver: ^7.5.2
strip-ansi: ^5.2.0
- sudo-prompt: ^9.0.0
wcwidth: ^1.0.1
yaml: ^2.2.1
- checksum: 58417f5bdd7888dc232a36982aa81b62ec282e739f6ac5e9cf1ce874c7c9f807d3a58880d3b8c12a6702d0b3414a8fa38a597728e4760dde7b7b48ce96f4edd0
+ checksum: e70968fefec0bac20075093eba36e141221849a998dec04c113191c171340f4c5cb31e9a9d24f1414724d3e68f375777e529775104cfdd0d5f956a7222e6f510
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.2":
+ version: 12.3.2
+ resolution: "@react-native-community/cli-hermes@npm:12.3.2"
dependencies:
- "@react-native-community/cli-platform-android": 11.3.10
- "@react-native-community/cli-tools": 11.3.10
+ "@react-native-community/cli-platform-android": 12.3.2
+ "@react-native-community/cli-tools": 12.3.2
chalk: ^4.1.2
hermes-profile-transformer: ^0.0.6
ip: ^1.1.5
- checksum: 849de28317841f3006e749cee63dddd24d707f3940b8c1529171976f7365686d895519c4d8242920ec5d0b7922f7260c829d4ca5831f2b0524ff085e23573034
+ checksum: 9716ca7c867ed018c0a5e4120770af164137f0214348af1645d2c6d0834314589b6e13a63b18e93266681636e9121328ab5560832c158db227fe236484735a01
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:12.3.2":
+ version: 12.3.2
+ resolution: "@react-native-community/cli-platform-android@npm:12.3.2"
dependencies:
- "@react-native-community/cli-tools": 11.3.10
+ "@react-native-community/cli-tools": 12.3.2
chalk: ^4.1.2
execa: ^5.0.0
+ fast-xml-parser: ^4.2.4
glob: ^7.1.3
logkitty: ^0.7.1
- checksum: a07c3eeac627c57931f71e389173159d851b07a405005070197d8d4daa47b3cd8b419c4880c49233cc93707cecd26a287cece47c1c07078545c40489a1a9797b
+ checksum: cc28819a8cdcf64bfa88ad3d02f04f08f6bacd41fc136812677df8c33d738a303712ab524647fd3c30938e2f32742b5ae8e9b209b71b4fc6604a6fab69716fb5
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-ios@npm:12.3.2":
+ version: 12.3.2
+ resolution: "@react-native-community/cli-platform-ios@npm:12.3.2"
dependencies:
- "@react-native-community/cli-tools": 11.3.10
+ "@react-native-community/cli-tools": 12.3.2
chalk: ^4.1.2
execa: ^5.0.0
fast-xml-parser: ^4.0.12
glob: ^7.1.3
ora: ^5.4.1
- checksum: a05df7d5416ff02f9f6587780536132fad4c1aac658303a22fa4399b4b2a25f292ffbf83aefba34b52ba68777ec8df64658cfba5bbf1adc39d6024e7c8be5c39
+ checksum: 3cec617c375d0254aaf4c627b46d8aa393ce003e9ebb033f83bebc664560f7bc3eb66bf726d285c3e6eb775ad4c8859ee5b4d615a93442a71f411a1b37aae198
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"
- dependencies:
- "@react-native-community/cli-server-api": 11.3.10
- "@react-native-community/cli-tools": 11.3.10
- chalk: ^4.1.2
- execa: ^5.0.0
- metro: 0.76.8
- metro-config: 0.76.8
- metro-core: 0.76.8
- metro-react-native-babel-transformer: 0.76.8
- metro-resolver: 0.76.8
- metro-runtime: 0.76.8
- readline: ^1.3.0
- checksum: 895a90e10571b1763321fd9ef8c373f7a96d7b0b8d414ea7a0d2459e3d78120d578fdb441626b8991ff1592b54f2b66719c66e2d84db5ec511d8253087acdd3e
+"@react-native-community/cli-plugin-metro@npm:12.3.2":
+ version: 12.3.2
+ resolution: "@react-native-community/cli-plugin-metro@npm:12.3.2"
+ checksum: 9a3b894c8025c425454c408fdabf9aa1c732e7cee1e10a2b07b1abfc4d7e90196ada34ef94dbc4dba4d9e17ba868fef1e96c8248e63508201b0e1d460cbafac6
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.2":
+ version: 12.3.2
+ resolution: "@react-native-community/cli-server-api@npm:12.3.2"
dependencies:
- "@react-native-community/cli-debugger-ui": 11.3.10
- "@react-native-community/cli-tools": 11.3.10
+ "@react-native-community/cli-debugger-ui": 12.3.2
+ "@react-native-community/cli-tools": 12.3.2
compression: ^1.7.1
connect: ^3.6.5
errorhandler: ^1.5.1
@@ -2670,13 +2727,13 @@ __metadata:
pretty-format: ^26.6.2
serve-static: ^1.13.1
ws: ^7.5.1
- checksum: cbe26e519d41877bbbe892546c4e0c901a189150c73d40bc9080f6a2caa31103a1e8acf76f413c9c03bfbfbbd4ca8931ca62b7c3bbe4e1f8d0ee137ad5fca464
+ checksum: cf8c83ac5f6fe1a9dfb6486b8cea4b0aa7597b01c49f9fd50d8460418c8f8ebf376e4d1d5e2ac32e97d7fab9c01b02e56cf4a43c29c0a6e953b8a219f47077e1
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.2":
+ version: 12.3.2
+ resolution: "@react-native-community/cli-tools@npm:12.3.2"
dependencies:
appdirsjs: ^1.2.4
chalk: ^4.1.2
@@ -2687,56 +2744,119 @@ __metadata:
ora: ^5.4.1
semver: ^7.5.2
shell-quote: ^1.7.3
- checksum: 5c5d1d42ea69a110861590aa61aa6cc9913d060b04d8a54ecbcba34bd42269e044c6b2e7784948a2760f08e4cca9a35b67533353c2df7fa7b75aa31736efb770
+ sudo-prompt: ^9.0.0
+ checksum: f5791f6ec0838a100f6ca47e64418c1a8d9c697499065e2d5d7808f70800f6dc6910fea5114b460864839cedfd71872e44b41553350a0c15e67cc698ce5d0c62
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.2":
+ version: 12.3.2
+ resolution: "@react-native-community/cli-types@npm:12.3.2"
dependencies:
joi: ^17.2.1
- checksum: c521886070c9b3fb088be1529ceb9e3eab25a74b1df8e24b367c49657c86a22967e020e9e3498e518ce9b26beed96f7315b8b7ea558c5fd8ed50ea9dc4d7432d
+ checksum: c896ce454814971469af3a329c66d8c3f388b91428c12db51e823035ddd2fa48dc7d838c799780bc365c3c0f36f78da70f006423159b13b15d8537dbf2d3cdf9
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:12.3.2":
+ version: 12.3.2
+ resolution: "@react-native-community/cli@npm:12.3.2"
dependencies:
- "@react-native-community/cli-clean": 11.3.10
- "@react-native-community/cli-config": 11.3.10
- "@react-native-community/cli-debugger-ui": 11.3.10
- "@react-native-community/cli-doctor": 11.3.10
- "@react-native-community/cli-hermes": 11.3.10
- "@react-native-community/cli-plugin-metro": 11.3.10
- "@react-native-community/cli-server-api": 11.3.10
- "@react-native-community/cli-tools": 11.3.10
- "@react-native-community/cli-types": 11.3.10
+ "@react-native-community/cli-clean": 12.3.2
+ "@react-native-community/cli-config": 12.3.2
+ "@react-native-community/cli-debugger-ui": 12.3.2
+ "@react-native-community/cli-doctor": 12.3.2
+ "@react-native-community/cli-hermes": 12.3.2
+ "@react-native-community/cli-plugin-metro": 12.3.2
+ "@react-native-community/cli-server-api": 12.3.2
+ "@react-native-community/cli-tools": 12.3.2
+ "@react-native-community/cli-types": 12.3.2
chalk: ^4.1.2
commander: ^9.4.1
+ deepmerge: ^4.3.0
execa: ^5.0.0
find-up: ^4.1.0
fs-extra: ^8.1.0
graceful-fs: ^4.1.3
- prompts: ^2.4.0
+ prompts: ^2.4.2
semver: ^7.5.2
bin:
react-native: build/bin.js
- checksum: 3cbe80cb5199afb1139927688655bd296bdb19d008a6d3693eb3f7f5d7954da910f2d7f8aaad8d34de8146380c27986c9d9bdd6c5419a832713717ef610d6316
+ checksum: 5ed1ee3e97f0b184ed796ca7efa174a9593808214102391db1341a847370bdbc5c01477fbfdb07fc829f6b6a1583fd77ce405f72badf416671f95d7015283a19
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: 94c2b842f9fcc6e2817463dd5f26a40b69a5ff10d8d10a2af95b677f88c6645e833f985db9d85c9c3d8e66fb882b2065921ad8890fe6ac7b5eb3f9d04f6e17fa
+"@react-native/assets-registry@npm:0.73.1":
+ version: 0.73.1
+ resolution: "@react-native/assets-registry@npm:0.73.1"
+ checksum: d9d09774d497bae13b1fb6a1c977bf6e442858639ee66fe4e8f955cfc903a16f79de6129471114a918a4b814eb5150bd808a5a7dc9f8b12d49795d9488d4cb67
+ languageName: node
+ linkType: hard
+
+"@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": 0.73.3
+ checksum: b32651c29d694a530390347c06fa09cfbc0189bddb3ccdbe47caa050e2e909ea0e4e32182b1a2c12fb73e9b8f352da9f3c239fb77e6e892c59c297371758f53a
+ 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": ^7.20.0
+ "@babel/plugin-proposal-async-generator-functions": ^7.0.0
+ "@babel/plugin-proposal-class-properties": ^7.18.0
+ "@babel/plugin-proposal-export-default-from": ^7.0.0
+ "@babel/plugin-proposal-nullish-coalescing-operator": ^7.18.0
+ "@babel/plugin-proposal-numeric-separator": ^7.0.0
+ "@babel/plugin-proposal-object-rest-spread": ^7.20.0
+ "@babel/plugin-proposal-optional-catch-binding": ^7.0.0
+ "@babel/plugin-proposal-optional-chaining": ^7.20.0
+ "@babel/plugin-syntax-dynamic-import": ^7.8.0
+ "@babel/plugin-syntax-export-default-from": ^7.0.0
+ "@babel/plugin-syntax-flow": ^7.18.0
+ "@babel/plugin-syntax-nullish-coalescing-operator": ^7.0.0
+ "@babel/plugin-syntax-optional-chaining": ^7.0.0
+ "@babel/plugin-transform-arrow-functions": ^7.0.0
+ "@babel/plugin-transform-async-to-generator": ^7.20.0
+ "@babel/plugin-transform-block-scoping": ^7.0.0
+ "@babel/plugin-transform-classes": ^7.0.0
+ "@babel/plugin-transform-computed-properties": ^7.0.0
+ "@babel/plugin-transform-destructuring": ^7.20.0
+ "@babel/plugin-transform-flow-strip-types": ^7.20.0
+ "@babel/plugin-transform-function-name": ^7.0.0
+ "@babel/plugin-transform-literals": ^7.0.0
+ "@babel/plugin-transform-modules-commonjs": ^7.0.0
+ "@babel/plugin-transform-named-capturing-groups-regex": ^7.0.0
+ "@babel/plugin-transform-parameters": ^7.0.0
+ "@babel/plugin-transform-private-methods": ^7.22.5
+ "@babel/plugin-transform-private-property-in-object": ^7.22.11
+ "@babel/plugin-transform-react-display-name": ^7.0.0
+ "@babel/plugin-transform-react-jsx": ^7.0.0
+ "@babel/plugin-transform-react-jsx-self": ^7.0.0
+ "@babel/plugin-transform-react-jsx-source": ^7.0.0
+ "@babel/plugin-transform-runtime": ^7.0.0
+ "@babel/plugin-transform-shorthand-properties": ^7.0.0
+ "@babel/plugin-transform-spread": ^7.0.0
+ "@babel/plugin-transform-sticky-regex": ^7.0.0
+ "@babel/plugin-transform-typescript": ^7.5.0
+ "@babel/plugin-transform-unicode-regex": ^7.0.0
+ "@babel/template": ^7.0.0
+ "@react-native/babel-plugin-codegen": 0.73.4
+ babel-plugin-transform-flow-enums: ^0.0.2
+ react-refresh: ^0.14.0
+ peerDependencies:
+ "@babel/core": "*"
+ checksum: 111b09b211e12723fde6655b8dfe70344ed8105fa24305ddc82531a98b97c294fd572d33445464ac043b72d033d5421975a11692bcbef1bb047215e3fabb258a
languageName: node
linkType: hard
-"@react-native/codegen@npm:^0.72.8":
- version: 0.72.8
- resolution: "@react-native/codegen@npm:0.72.8"
+"@react-native/codegen@npm:0.73.3":
+ version: 0.73.3
+ resolution: "@react-native/codegen@npm:0.73.3"
dependencies:
"@babel/parser": ^7.20.0
flow-parser: ^0.206.0
@@ -2747,19 +2867,63 @@ __metadata:
nullthrows: ^1.1.1
peerDependencies:
"@babel/preset-env": ^7.1.6
- checksum: c031f199cb50f44010faaec96190bfd6a3abb376349c599cad85fa4f202c21d644b54ab6f530d2d0a915f086078f45d1082e2753ed4e4f80d256852ef1d081f9
+ checksum: 08984813003ce58c2904c837c89605cc3161e93a704f3b8a0ee1593088dbbd7bcda9b867c1b21ec4f217f71df9de21b25ce35a3f2df9587f6c73763504a4d014
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.16":
+ version: 0.73.16
+ resolution: "@react-native/community-cli-plugin@npm:0.73.16"
+ dependencies:
+ "@react-native-community/cli-server-api": 12.3.2
+ "@react-native-community/cli-tools": 12.3.2
+ "@react-native/dev-middleware": 0.73.7
+ "@react-native/metro-babel-transformer": 0.73.15
+ chalk: ^4.0.0
+ execa: ^5.1.1
+ metro: ^0.80.3
+ metro-config: ^0.80.3
+ metro-core: ^0.80.3
+ node-fetch: ^2.2.0
+ readline: ^1.3.0
+ checksum: 584657d3a85cd078cfc1cd811e2b4e363710d9e98e2546718e018e7f6e3248b463b498fb4d6595eebe6328b53d08f9ef4e85189307a5cfa887346b6c7beae289
+ 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: 71ecf6fdf3ecf2cae80818e2b8717acb22e291fd19edf89f570e695a165660a749244fb03465b3b8b9b7166cbdee627577dd75321f6793649b0a255aec722d92
+ languageName: node
+ linkType: hard
+
+"@react-native/dev-middleware@npm:0.73.7":
+ version: 0.73.7
+ resolution: "@react-native/dev-middleware@npm:0.73.7"
+ dependencies:
+ "@isaacs/ttlcache": ^1.4.1
+ "@react-native/debugger-frontend": 0.73.3
+ chrome-launcher: ^0.15.2
+ chromium-edge-launcher: ^1.0.0
+ connect: ^3.6.5
+ debug: ^2.2.0
+ node-fetch: ^2.2.0
+ open: ^7.0.3
+ serve-static: ^1.13.1
+ temp-dir: ^2.0.0
+ checksum: fd22acc763282c0cec8776cf1604a063b016b96fce0922c1f6690cd6df1cfde4540f3df3364721a13d12777e84bfc218a2a3b71f9965ee6be6bfad51c5a0d07e
+ languageName: node
+ linkType: hard
+
+"@react-native/eslint-config@npm:^0.73.2":
+ version: 0.73.2
+ resolution: "@react-native/eslint-config@npm:0.73.2"
dependencies:
"@babel/core": ^7.20.0
"@babel/eslint-parser": ^7.20.0
- "@react-native/eslint-plugin": ^0.72.0
- "@typescript-eslint/eslint-plugin": ^5.30.5
- "@typescript-eslint/parser": ^5.30.5
+ "@react-native/eslint-plugin": 0.73.1
+ "@typescript-eslint/eslint-plugin": ^5.57.1
+ "@typescript-eslint/parser": ^5.57.1
eslint-config-prettier: ^8.5.0
eslint-plugin-eslint-comments: ^3.2.0
eslint-plugin-ft-flow: ^2.0.1
@@ -2771,40 +2935,54 @@ __metadata:
peerDependencies:
eslint: ">=8"
prettier: ">=2"
- checksum: e9b9a55311a7e163534eb9d8c27d1aad06ce41bfbf4d9b11339c2a51c0be5c69b0470d22b1172404ede48fbb0020648f09543e56f149dbe7bc2fe2ba1a14c3b4
+ checksum: 6d9de3267d80f1ee4f046a54a86bb906448dbc2a1a708fa7b7cb92f7611dec666b5908451501cd39b8b67eda4c8cfac6b2707a0ea65eb0228c79dcd47fc9b4c5
+ languageName: node
+ linkType: hard
+
+"@react-native/eslint-plugin@npm:0.73.1":
+ version: 0.73.1
+ resolution: "@react-native/eslint-plugin@npm:0.73.1"
+ checksum: 82a9bd30ada10ec4e926021967d1ffeb7c82eaaba6f7171cc655daf3339d2e2c15897bc3cd0f529e83ef2958c3b9b0365590a6b672a1a0efe7c781bd3e854473
languageName: node
linkType: hard
-"@react-native/eslint-plugin@npm:^0.72.0":
- version: 0.72.0
- resolution: "@react-native/eslint-plugin@npm:0.72.0"
- checksum: a9814269cc93dae587d03925261fc2837ce863683ede443954313998ca8b109a2cfc40b855456b56f22ebece331594e6aee85faba67b332257a919d574c0f563
+"@react-native/gradle-plugin@npm:0.73.4":
+ version: 0.73.4
+ resolution: "@react-native/gradle-plugin@npm:0.73.4"
+ checksum: f72e2a9fc44f7a848142f09e939686b85f7f51edb0634407635b742f152f2d5162eb08579a6a03c37f2550397a64915578d185dac1b95c7cf1ba8729fa51f389
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: 1688e9b0f7571f142d9bea95339f1194c043f2230fd5018b69d69487bd4efdc4a0c7bce6e93cee2ac9ff8c7a382541186ca4d68b0e5086b5f4f2e78747978144
+"@react-native/js-polyfills@npm:0.73.1":
+ version: 0.73.1
+ resolution: "@react-native/js-polyfills@npm:0.73.1"
+ checksum: ec5899c3f2480475a6dccb252f3de6cc0b2eccc32d3d4a61a479e5f09d6458d86860fd60af472448b417d6e19f75c6b4008de245ab7fbb6d9c4300f452a37fd5
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: c81b0217cefdfda5cda34acf260a862711e0c9262c2503eb155d6e16050438b387242f7232b986890cb461d01ca61a8b6dab9a9bcc75e00f5509315006028286
+"@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": ^7.20.0
+ "@react-native/babel-preset": 0.73.21
+ hermes-parser: 0.15.0
+ nullthrows: ^1.1.1
+ peerDependencies:
+ "@babel/core": "*"
+ checksum: 49d2a5c19186dd8eab78d334e3499af8084b9a083a7c5dab11cd668a79324d5942acdb3c3c32ce0e63bace8b0140c72029efdabf99297e93107e90c7b79bf880
languageName: node
linkType: hard
-"@react-native/metro-config@npm:^0.72.11":
- version: 0.72.11
- resolution: "@react-native/metro-config@npm:0.72.11"
+"@react-native/metro-config@npm:^0.73.5":
+ version: 0.73.5
+ resolution: "@react-native/metro-config@npm:0.73.5"
dependencies:
- "@react-native/js-polyfills": ^0.72.1
- metro-config: 0.76.8
- metro-react-native-babel-transformer: 0.76.8
- metro-runtime: 0.76.8
- checksum: b6c6d74a63d5b1336f0caf34e06d4792a34d0e0bfac20a34ce14a449385ab163cf7f6dce1b147afadae8098c2f9f1b639827c94cf6f93123e6ee4d59d72a1ef5
+ "@react-native/js-polyfills": 0.73.1
+ "@react-native/metro-babel-transformer": 0.73.15
+ metro-config: ^0.80.3
+ metro-runtime: ^0.80.3
+ checksum: ddf5793664a47bbf16d79d2a4ea7f90cecb01206fbe5fc91aadb5e4169159cf24282ab0116799b9271332b7cb6ce9bc1420a57ad65d9cdfe98ac1e3b9a1f75ae
languageName: node
linkType: hard
@@ -2815,22 +2993,22 @@ __metadata:
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: c8ec577663394a3390eb34c3cd531350521172bcfad7de309ab111e5f9e3d27c966d4a4387f00972302107be3d8cad584c5794ccfa30939aecc56162e4ddbe25
+"@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: ddf9384ad41adc4f3c8eb61ddd27113130c8060bd2f4255bee284a52aa7ddcff8a5e751f569dd416c45f8b9d4062392fa7219b221f2f7f0b229d02b8d2a5b974
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"
+"@react-native/virtualized-lists@npm:0.73.4":
+ version: 0.73.4
+ resolution: "@react-native/virtualized-lists@npm:0.73.4"
dependencies:
invariant: ^2.2.4
nullthrows: ^1.1.1
peerDependencies:
react-native: "*"
- checksum: ad9628a04e72420326fd5ef09c746ad9cd6cff745b73850c7297429e3c42927043d1310896a72aa94497dc6b7f1abc2be1081b465734f7673f0e7d36aaae5e53
+ checksum: 59826b146cdcff358f27b118b9dcc6fa23534f3880b5e8546c79aedff8cb4e028af652b0371e0080610e30a250c69607f45b2066c83762788783ccf2031938e3
languageName: node
linkType: hard
@@ -2892,15 +3070,6 @@ __metadata:
languageName: node
linkType: hard
-"@sinonjs/commons@npm:^1.7.0":
- version: 1.8.6
- resolution: "@sinonjs/commons@npm:1.8.6"
- dependencies:
- type-detect: 4.0.8
- checksum: 7d3f8c1e85f30cd4e83594fc19b7a657f14d49eb8d95a30095631ce15e906c869e0eff96c5b93dffea7490c00418b07f54582ba49c6560feb2a8c34c0b16832d
- languageName: node
- linkType: hard
-
"@sinonjs/commons@npm:^3.0.0":
version: 3.0.0
resolution: "@sinonjs/commons@npm:3.0.0"
@@ -2919,15 +3088,6 @@ __metadata:
languageName: node
linkType: hard
-"@sinonjs/fake-timers@npm:^9.1.2":
- version: 9.1.2
- resolution: "@sinonjs/fake-timers@npm:9.1.2"
- dependencies:
- "@sinonjs/commons": ^1.7.0
- checksum: 7d3aef54e17c1073101cb64d953157c19d62a40e261a30923fa1ee337b049c5f29cc47b1f0c477880f42b5659848ba9ab897607ac8ea4acd5c30ddcfac57fca6
- languageName: node
- linkType: hard
-
"@szmarczak/http-timer@npm:^5.0.1":
version: 5.0.1
resolution: "@szmarczak/http-timer@npm:5.0.1"
@@ -3091,13 +3251,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/prettier@npm:^2.1.5":
- version: 2.7.3
- resolution: "@types/prettier@npm:2.7.3"
- checksum: 705384209cea6d1433ff6c187c80dcc0b95d99d5c5ce21a46a9a58060c527973506822e428789d842761e0280d25e3359300f017fbe77b9755bc772ab3dc2f83
- languageName: node
- linkType: hard
-
"@types/prop-types@npm:*":
version: 15.7.11
resolution: "@types/prop-types@npm:15.7.11"
@@ -3169,15 +3322,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": "*"
- checksum: 00d9276ed4e0f17a78c1ed57f644a8c14061959bd5bfab113d57f082ea4b663ba97f71b89371304a34a2dba5061e9ae4523e357e577ba61834d661f82c223bf8
- languageName: node
- linkType: hard
-
"@types/yargs@npm:^17.0.8":
version: 17.0.32
resolution: "@types/yargs@npm:17.0.32"
@@ -3187,7 +3331,7 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/eslint-plugin@npm:^5.30.5":
+"@typescript-eslint/eslint-plugin@npm:^5.57.1":
version: 5.62.0
resolution: "@typescript-eslint/eslint-plugin@npm:5.62.0"
dependencies:
@@ -3236,7 +3380,7 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/parser@npm:^5.30.5":
+"@typescript-eslint/parser@npm:^5.57.1":
version: 5.62.0
resolution: "@typescript-eslint/parser@npm:5.62.0"
dependencies:
@@ -3909,13 +4053,6 @@ __metadata:
languageName: node
linkType: hard
-"async@npm:^3.2.2":
- version: 3.2.5
- resolution: "async@npm:3.2.5"
- checksum: 5ec77f1312301dee02d62140a6b1f7ee0edd2a0f983b6fd2b0849b969f245225b990b47b8243e7b9ad16451a53e7f68e753700385b706198ced888beedba3af4
- languageName: node
- linkType: hard
-
"asynciterator.prototype@npm:^1.0.0":
version: 1.0.0
resolution: "asynciterator.prototype@npm:1.0.0"
@@ -3987,20 +4124,20 @@ __metadata:
languageName: node
linkType: hard
-"babel-jest@npm:^28.1.3":
- version: 28.1.3
- resolution: "babel-jest@npm:28.1.3"
+"babel-jest@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "babel-jest@npm:29.7.0"
dependencies:
- "@jest/transform": ^28.1.3
+ "@jest/transform": ^29.7.0
"@types/babel__core": ^7.1.14
babel-plugin-istanbul: ^6.1.1
- babel-preset-jest: ^28.1.3
+ babel-preset-jest: ^29.6.3
chalk: ^4.0.0
graceful-fs: ^4.2.9
slash: ^3.0.0
peerDependencies:
"@babel/core": ^7.8.0
- checksum: 57ccd2296e1839687b5df2fd138c3d00717e0369e385254b012ccd4ee70e75f5d5c8e6cfcdf92d155015b468cfebb847b38e69bb5805d8aaf730e20575127cc6
+ checksum: ee6f8e0495afee07cac5e4ee167be705c711a8cc8a737e05a587a131fdae2b3c8f9aa55dfd4d9c03009ac2d27f2de63d8ba96d3e8460da4d00e8af19ef9a83f7
languageName: node
linkType: hard
@@ -4017,15 +4154,15 @@ __metadata:
languageName: node
linkType: hard
-"babel-plugin-jest-hoist@npm:^28.1.3":
- version: 28.1.3
- resolution: "babel-plugin-jest-hoist@npm:28.1.3"
+"babel-plugin-jest-hoist@npm:^29.6.3":
+ version: 29.6.3
+ resolution: "babel-plugin-jest-hoist@npm:29.6.3"
dependencies:
"@babel/template": ^7.3.3
"@babel/types": ^7.3.3
"@types/babel__core": ^7.1.14
"@types/babel__traverse": ^7.0.6
- checksum: 648d89f9d80f6450ce7e50d0c32eb91b7f26269b47c3e37aaf2e0f2f66a980978345bd6b8c9b8c3aa6a8252ad2bc2c9fb50630e9895622c9a0972af5f70ed20e
+ checksum: 51250f22815a7318f17214a9d44650ba89551e6d4f47a2dc259128428324b52f5a73979d010cefd921fd5a720d8c1d55ad74ff601cd94c7bd44d5f6292fde2d1
languageName: node
linkType: hard
@@ -4078,13 +4215,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: e37509156ca945dd9e4b82c66dd74f2d842ad917bd280cb5aa67960942300cd065eeac476d2514bdcdedec071277a358f6d517c31d9f9244d9bbc3619a8ecf8a
- 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"
@@ -4116,52 +4246,15 @@ __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": ^7.0.0
- "@babel/plugin-proposal-object-rest-spread": ^7.0.0
- "@babel/plugin-syntax-class-properties": ^7.0.0
- "@babel/plugin-syntax-flow": ^7.0.0
- "@babel/plugin-syntax-jsx": ^7.0.0
- "@babel/plugin-syntax-object-rest-spread": ^7.0.0
- "@babel/plugin-transform-arrow-functions": ^7.0.0
- "@babel/plugin-transform-block-scoped-functions": ^7.0.0
- "@babel/plugin-transform-block-scoping": ^7.0.0
- "@babel/plugin-transform-classes": ^7.0.0
- "@babel/plugin-transform-computed-properties": ^7.0.0
- "@babel/plugin-transform-destructuring": ^7.0.0
- "@babel/plugin-transform-flow-strip-types": ^7.0.0
- "@babel/plugin-transform-for-of": ^7.0.0
- "@babel/plugin-transform-function-name": ^7.0.0
- "@babel/plugin-transform-literals": ^7.0.0
- "@babel/plugin-transform-member-expression-literals": ^7.0.0
- "@babel/plugin-transform-modules-commonjs": ^7.0.0
- "@babel/plugin-transform-object-super": ^7.0.0
- "@babel/plugin-transform-parameters": ^7.0.0
- "@babel/plugin-transform-property-literals": ^7.0.0
- "@babel/plugin-transform-react-display-name": ^7.0.0
- "@babel/plugin-transform-react-jsx": ^7.0.0
- "@babel/plugin-transform-shorthand-properties": ^7.0.0
- "@babel/plugin-transform-spread": ^7.0.0
- "@babel/plugin-transform-template-literals": ^7.0.0
- babel-plugin-syntax-trailing-function-commas: ^7.0.0-beta.0
- peerDependencies:
- "@babel/core": ^7.0.0
- checksum: b3352cf690729125997f254bc31b9c4db347f8646f1571958ced1c45f0da89439e183e1c88e35397eb0361b9e1fbb1dd8142d3f4647814deb427e53c54f44d5f
- languageName: node
- linkType: hard
-
-"babel-preset-jest@npm:^28.1.3":
- version: 28.1.3
- resolution: "babel-preset-jest@npm:28.1.3"
+"babel-preset-jest@npm:^29.6.3":
+ version: 29.6.3
+ resolution: "babel-preset-jest@npm:29.6.3"
dependencies:
- babel-plugin-jest-hoist: ^28.1.3
+ babel-plugin-jest-hoist: ^29.6.3
babel-preset-current-node-syntax: ^1.0.0
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 8248a4a5ca4242cc06ad13b10b9183ad2664da8fb0da060c352223dcf286f0ce9c708fa17901dc44ecabec25e6d309e5e5b9830a61dd777c3925f187a345a47d
+ checksum: aa4ff2a8a728d9d698ed521e3461a109a1e66202b13d3494e41eea30729a5e7cc03b3a2d56c594423a135429c37bf63a9fa8b0b9ce275298be3095a88c69f6fb
languageName: node
linkType: hard
@@ -4172,7 +4265,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: 669632eb3745404c2f822a18fc3a0122d2f9a7a13f7fb8b5823ee19d1d2ff9ee5b52c53367176ea4ad093c332fd5ab4bd0ebae5a8e27917a4105a4cfc86b1005
@@ -4533,6 +4626,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": "*"
+ escape-string-regexp: ^4.0.0
+ is-wsl: ^2.2.0
+ lighthouse-logger: ^1.0.0
+ bin:
+ print-chrome-path: bin/print-chrome-path.js
+ checksum: e1f8131b9f7bd931248ea85f413c6cdb93a0d41440ff5bf0987f36afb081d2b2c7b60ba6062ee7ae2dd9b052143f6b275b38c9eb115d11b49c3ea8829bad7db0
+ 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": "*"
+ escape-string-regexp: ^4.0.0
+ is-wsl: ^2.2.0
+ lighthouse-logger: ^1.0.0
+ mkdirp: ^1.0.4
+ rimraf: ^3.0.2
+ checksum: 77ce4fc03e7ee6f72383cc23c9b34a18ff368fcce8d23bcdc777c603c6d48ae25d3b79be5a1256e7edeec65f6e2250245a5372175454a329bcc99df672160ee4
+ languageName: node
+ linkType: hard
+
"ci-info@npm:^2.0.0":
version: 2.0.0
resolution: "ci-info@npm:2.0.0"
@@ -4750,13 +4871,6 @@ __metadata:
languageName: node
linkType: hard
-"commander@npm:~2.14.1":
- version: 2.14.1
- resolution: "commander@npm:2.14.1"
- checksum: 26bd49febeac8efabb7488fb5a4a2480b04bc4c4eef3c50da93eead72959f7a5232d003deda5b9761937205721274e80108f6d1d2b45ae7a8387cfb92031084e
- languageName: node
- linkType: hard
-
"commondir@npm:^1.0.1":
version: 1.0.1
resolution: "commondir@npm:1.0.1"
@@ -5064,13 +5178,6 @@ __metadata:
languageName: node
linkType: hard
-"convert-source-map@npm:^1.4.0":
- version: 1.9.0
- resolution: "convert-source-map@npm:1.9.0"
- checksum: dc55a1f28ddd0e9485ef13565f8f756b342f9a46c4ae18b843fe3c30c675d058d6a4823eff86d472f187b176f0adf51ea7b69ea38be34be4a63cbbf91b0593c8
- languageName: node
- linkType: hard
-
"convert-source-map@npm:^2.0.0":
version: 2.0.0
resolution: "convert-source-map@npm:2.0.0"
@@ -5131,6 +5238,23 @@ __metadata:
languageName: node
linkType: hard
+"create-jest@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "create-jest@npm:29.7.0"
+ dependencies:
+ "@jest/types": ^29.6.3
+ chalk: ^4.0.0
+ exit: ^0.1.2
+ graceful-fs: ^4.2.9
+ jest-config: ^29.7.0
+ jest-util: ^29.7.0
+ prompts: ^2.0.1
+ bin:
+ create-jest: bin/create-jest.js
+ checksum: 1427d49458adcd88547ef6fa39041e1fe9033a661293aa8d2c3aa1b4967cb5bf4f0c00436c7a61816558f28ba2ba81a94d5c962e8022ea9a883978fc8e1f2945
+ languageName: node
+ linkType: hard
+
"cross-fetch@npm:^3.1.5":
version: 3.1.8
resolution: "cross-fetch@npm:3.1.8"
@@ -5265,7 +5389,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:
@@ -5342,6 +5466,18 @@ __metadata:
languageName: node
linkType: hard
+"dedent@npm:^1.0.0":
+ version: 1.5.1
+ resolution: "dedent@npm:1.5.1"
+ peerDependencies:
+ babel-plugin-macros: ^3.1.0
+ peerDependenciesMeta:
+ babel-plugin-macros:
+ optional: true
+ checksum: c3c300a14edf1bdf5a873f9e4b22e839d62490bc5c8d6169c1f15858a1a76733d06a9a56930e963d677a2ceeca4b6b0894cc5ea2f501aa382ca5b92af3413c2a
+ languageName: node
+ linkType: hard
+
"deep-extend@npm:^0.6.0":
version: 0.6.0
resolution: "deep-extend@npm:0.6.0"
@@ -5508,14 +5644,14 @@ __metadata:
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": <0.73.0
+ "@react-native/normalize-colors": ^0.73.0
invariant: ^2.2.4
prop-types: ^15.8.1
- checksum: 294752f9f15733b66473022d8258a14aac850e4a3db7e802ef189a09871236f5a110f8fe588468ae1df92f24641ae29de05943074dc54da02a5e4262935f913d
+ checksum: ccbd4214733a178ef51934c4e0149f5c3ab60aa318d68500b6d6b4b59be9d6c25b844f808ed7095d82e1bbef6fc4bc49e0dea14d55d3ebd1ff383011ac2a1576
languageName: node
linkType: hard
@@ -5554,6 +5690,13 @@ __metadata:
languageName: node
linkType: hard
+"diff-sequences@npm:^29.6.3":
+ version: 29.6.3
+ resolution: "diff-sequences@npm:29.6.3"
+ checksum: f4914158e1f2276343d98ff5b31fc004e7304f5470bf0f1adb2ac6955d85a531a6458d33e87667f98f6ae52ebd3891bb47d420bb48a5bd8b7a27ee25b20e33aa
+ languageName: node
+ linkType: hard
+
"dir-glob@npm:^3.0.1":
version: 3.0.1
resolution: "dir-glob@npm:3.0.1"
@@ -5629,10 +5772,10 @@ __metadata:
languageName: node
linkType: hard
-"emittery@npm:^0.10.2":
- version: 0.10.2
- resolution: "emittery@npm:0.10.2"
- checksum: ee3e21788b043b90885b18ea756ec3105c1cedc50b29709c92b01e239c7e55345d4bb6d3aef4ddbaf528eef448a40b3bb831bad9ee0fc9c25cbf1367ab1ab5ac
+"emittery@npm:^0.13.1":
+ version: 0.13.1
+ resolution: "emittery@npm:0.13.1"
+ checksum: 2b089ab6306f38feaabf4f6f02792f9ec85fc054fda79f44f6790e61bbf6bc4e1616afb9b232e0c5ec5289a8a452f79bfa6d905a6fd64e94b49981f0934001c6
languageName: node
linkType: hard
@@ -5696,12 +5839,12 @@ __metadata:
languageName: node
linkType: hard
-"envinfo@npm:^7.7.2":
- version: 7.11.0
- resolution: "envinfo@npm:7.11.0"
+"envinfo@npm:^7.10.0":
+ version: 7.11.1
+ resolution: "envinfo@npm:7.11.1"
bin:
envinfo: dist/cli.js
- checksum: c45a7d20409d5f4cda72483b150d3816b15b434f2944d72c1495d8838bd7c4e7b2f32c12128ffb9b92b5f66f436237b8a525eb3a9a5da2d20013bc4effa28aef
+ checksum: f3d38ab6bc62388466e86e2f5665f90f238ca349c81bb36b311d908cb5ca96650569b43b308c9dcb6725a222693f6c43a704794e74a68fb445ec5575a90ca05e
languageName: node
linkType: hard
@@ -6648,7 +6791,7 @@ __metadata:
languageName: node
linkType: hard
-"expect@npm:^28.0.0, expect@npm:^28.1.3":
+"expect@npm:^28.0.0":
version: 28.1.3
resolution: "expect@npm:28.1.3"
dependencies:
@@ -6661,6 +6804,19 @@ __metadata:
languageName: node
linkType: hard
+"expect@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "expect@npm:29.7.0"
+ dependencies:
+ "@jest/expect-utils": ^29.7.0
+ jest-get-type: ^29.6.3
+ jest-matcher-utils: ^29.7.0
+ jest-message-util: ^29.7.0
+ jest-util: ^29.7.0
+ checksum: 9257f10288e149b81254a0fda8ffe8d54a7061cd61d7515779998b012579d2b8c22354b0eb901daf0145f347403da582f75f359f4810c007182ad3fb318b5c0c
+ languageName: node
+ linkType: hard
+
"exponential-backoff@npm:^3.1.1":
version: 3.1.1
resolution: "exponential-backoff@npm:3.1.1"
@@ -6706,7 +6862,7 @@ __metadata:
languageName: node
linkType: hard
-"fast-json-stable-stringify@npm:^2.0.0":
+"fast-json-stable-stringify@npm:^2.0.0, fast-json-stable-stringify@npm:^2.1.0":
version: 2.1.0
resolution: "fast-json-stable-stringify@npm:2.1.0"
checksum: b191531e36c607977e5b1c47811158733c34ccb3bfde92c44798929e9b4154884378536d26ad90dfecd32e1ffc09c545d23535ad91b3161a27ddbb8ebe0cbecb
@@ -6738,6 +6894,17 @@ __metadata:
languageName: node
linkType: hard
+"fast-xml-parser@npm:^4.2.4":
+ version: 4.3.4
+ resolution: "fast-xml-parser@npm:4.3.4"
+ dependencies:
+ strnum: ^1.0.5
+ bin:
+ fxparser: src/cli/cli.js
+ checksum: ab88177343f6d3d971d53462db3011003a83eb8a8db704840127ddaaf27105ea90cdf7903a0f9b2e1279ccc4adfca8dfc0277b33bae6262406f10c16bd60ccf9
+ languageName: node
+ linkType: hard
+
"fastq@npm:^1.6.0":
version: 1.16.0
resolution: "fastq@npm:1.16.0"
@@ -6944,10 +7111,10 @@ __metadata:
languageName: node
linkType: hard
-"flow-enums-runtime@npm:^0.0.5":
- version: 0.0.5
- resolution: "flow-enums-runtime@npm:0.0.5"
- checksum: a2cdd6a3e86a1d113d9300fd210e379da5a20d9423a1b957cd17207a4434a866ca75d5eb400c9058afb1b5fe64a653c4ddd2e30bf9fb8477291f0d5e70c20539
+"flow-enums-runtime@npm:^0.0.6":
+ version: 0.0.6
+ resolution: "flow-enums-runtime@npm:0.0.6"
+ checksum: c60412ed6d43b26bf5dfa66be8e588c3ccdb20191fd269e02ca7e8e1d350c73a327cc9a7edb626c80c31eb906981945d12a87ca37118985f33406303806dab79
languageName: node
linkType: hard
@@ -7560,19 +7727,35 @@ __metadata:
languageName: node
linkType: hard
-"hermes-estree@npm:0.12.0":
- version: 0.12.0
- resolution: "hermes-estree@npm:0.12.0"
- checksum: 368fd60bd66a30d237d8a11f0958975b18e24ec8a045217b6200818c2fab9a57880f027c4688601a5a380996be9018cb5f8c16384cb3f14647650d64a03c4030
+"hermes-estree@npm:0.15.0":
+ version: 0.15.0
+ resolution: "hermes-estree@npm:0.15.0"
+ checksum: 227d7ac117a00b4f02cdadf33f4ca73dd263bb05e692065f6709ef5a348b283d0fc319fc5d188438c84c688c4e1245cd990ade27f229abd4e9f94dda1abe147d
languageName: node
linkType: hard
-"hermes-parser@npm:0.12.0":
- version: 0.12.0
- resolution: "hermes-parser@npm:0.12.0"
+"hermes-estree@npm:0.19.1":
+ version: 0.19.1
+ resolution: "hermes-estree@npm:0.19.1"
+ checksum: d451114bca12ae97627f0113ede0d42271d75aad01b8e575e5261b576bd7e58b8a1670297a4b7e226236db2c0967b5a4bf1056a51bcd9ce074d654fcf365bdae
+ languageName: node
+ linkType: hard
+
+"hermes-parser@npm:0.15.0":
+ version: 0.15.0
+ resolution: "hermes-parser@npm:0.15.0"
dependencies:
- hermes-estree: 0.12.0
- checksum: 49c7bf721c9412bec7e447d625d73f79d1fb525f1e77032ae291b720bcff57ebdb5ab241a3e09e145640b4e00ae6caa0f4f2e594ad1d3fed67880fbd521ba142
+ hermes-estree: 0.15.0
+ checksum: 6c06a57a3998edd8c3aff05bbacdc8ec80f930360fa82ab75021b4b20edce8d76d30232babb7d6e7a0fcb758b0b36d7ee0f25936c9accf0b977542a079cb39cf
+ languageName: node
+ linkType: hard
+
+"hermes-parser@npm:0.19.1":
+ version: 0.19.1
+ resolution: "hermes-parser@npm:0.19.1"
+ dependencies:
+ hermes-estree: 0.19.1
+ checksum: 840e5ede07f6567283359a98c3e4e94d89c9b68f9d07cce379aed7b97aacae463aec622cfb13e47186770b68512b2981da3be09f316bde5f87359d5ab9bf1a1a
languageName: node
linkType: hard
@@ -8462,7 +8645,7 @@ __metadata:
languageName: node
linkType: hard
-"is-wsl@npm:^2.2.0":
+"is-wsl@npm:^2.1.1, is-wsl@npm:^2.2.0":
version: 2.2.0
resolution: "is-wsl@npm:2.2.0"
dependencies:
@@ -8533,7 +8716,7 @@ __metadata:
languageName: node
linkType: hard
-"istanbul-lib-instrument@npm:^5.0.4, istanbul-lib-instrument@npm:^5.1.0":
+"istanbul-lib-instrument@npm:^5.0.4":
version: 5.2.1
resolution: "istanbul-lib-instrument@npm:5.2.1"
dependencies:
@@ -8546,6 +8729,19 @@ __metadata:
languageName: node
linkType: hard
+"istanbul-lib-instrument@npm:^6.0.0":
+ version: 6.0.2
+ resolution: "istanbul-lib-instrument@npm:6.0.2"
+ dependencies:
+ "@babel/core": ^7.23.9
+ "@babel/parser": ^7.23.9
+ "@istanbuljs/schema": ^0.1.3
+ istanbul-lib-coverage: ^3.2.0
+ semver: ^7.5.4
+ checksum: c10aa1e93a022f9767d7f41e6c07d244cc0a5c090fbb5522d70a5f21fcb98c52b7038850276c6fd1a7a17d1868c14a9d4eb8a24efe58a0ebb9a06f3da68131fe
+ languageName: node
+ linkType: hard
+
"istanbul-lib-report@npm:^3.0.0":
version: 3.0.1
resolution: "istanbul-lib-report@npm:3.0.1"
@@ -8621,58 +8817,59 @@ __metadata:
languageName: node
linkType: hard
-"jest-changed-files@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-changed-files@npm:28.1.3"
+"jest-changed-files@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-changed-files@npm:29.7.0"
dependencies:
execa: ^5.0.0
+ jest-util: ^29.7.0
p-limit: ^3.1.0
- checksum: c78af14a68b9b19101623ae7fde15a2488f9b3dbe8cca12a05c4a223bc9bfd3bf41ee06830f20fb560c52434435d6153c9cc6cf450b1f7b03e5e7f96a953a6a6
+ checksum: 963e203893c396c5dfc75e00a49426688efea7361b0f0e040035809cecd2d46b3c01c02be2d9e8d38b1138357d2de7719ea5b5be21f66c10f2e9685a5a73bb99
languageName: node
linkType: hard
-"jest-circus@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-circus@npm:28.1.3"
+"jest-circus@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-circus@npm:29.7.0"
dependencies:
- "@jest/environment": ^28.1.3
- "@jest/expect": ^28.1.3
- "@jest/test-result": ^28.1.3
- "@jest/types": ^28.1.3
+ "@jest/environment": ^29.7.0
+ "@jest/expect": ^29.7.0
+ "@jest/test-result": ^29.7.0
+ "@jest/types": ^29.6.3
"@types/node": "*"
chalk: ^4.0.0
co: ^4.6.0
- dedent: ^0.7.0
+ dedent: ^1.0.0
is-generator-fn: ^2.0.0
- jest-each: ^28.1.3
- jest-matcher-utils: ^28.1.3
- jest-message-util: ^28.1.3
- jest-runtime: ^28.1.3
- jest-snapshot: ^28.1.3
- jest-util: ^28.1.3
+ jest-each: ^29.7.0
+ jest-matcher-utils: ^29.7.0
+ jest-message-util: ^29.7.0
+ jest-runtime: ^29.7.0
+ jest-snapshot: ^29.7.0
+ jest-util: ^29.7.0
p-limit: ^3.1.0
- pretty-format: ^28.1.3
+ pretty-format: ^29.7.0
+ pure-rand: ^6.0.0
slash: ^3.0.0
stack-utils: ^2.0.3
- checksum: b635e60a9c92adaefc3f24def8eba691e7c2fdcf6c9fa640cddf2eb8c8b26ee62eab73ebb88798fd7c52a74c1495a984e39b748429b610426f02e9d3d56e09b2
+ checksum: 349437148924a5a109c9b8aad6d393a9591b4dac1918fc97d81b7fc515bc905af9918495055071404af1fab4e48e4b04ac3593477b1d5dcf48c4e71b527c70a7
languageName: node
linkType: hard
-"jest-cli@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-cli@npm:28.1.3"
+"jest-cli@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-cli@npm:29.7.0"
dependencies:
- "@jest/core": ^28.1.3
- "@jest/test-result": ^28.1.3
- "@jest/types": ^28.1.3
+ "@jest/core": ^29.7.0
+ "@jest/test-result": ^29.7.0
+ "@jest/types": ^29.6.3
chalk: ^4.0.0
+ create-jest: ^29.7.0
exit: ^0.1.2
- graceful-fs: ^4.2.9
- import-local: ^3.0.2
- jest-config: ^28.1.3
- jest-util: ^28.1.3
- jest-validate: ^28.1.3
- prompts: ^2.0.1
+ import-local: ^3.0.2
+ jest-config: ^29.7.0
+ jest-util: ^29.7.0
+ jest-validate: ^29.7.0
yargs: ^17.3.1
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -8681,34 +8878,34 @@ __metadata:
optional: true
bin:
jest: bin/jest.js
- checksum: fb424576bf38346318daddee3fcc597cd78cb8dda1759d09c529d8ba1a748f2765c17b00671072a838826e59465a810ff8a232bc6ba2395c131bf3504425a363
+ checksum: 664901277a3f5007ea4870632ed6e7889db9da35b2434e7cb488443e6bf5513889b344b7fddf15112135495b9875892b156faeb2d7391ddb9e2a849dcb7b6c36
languageName: node
linkType: hard
-"jest-config@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-config@npm:28.1.3"
+"jest-config@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-config@npm:29.7.0"
dependencies:
"@babel/core": ^7.11.6
- "@jest/test-sequencer": ^28.1.3
- "@jest/types": ^28.1.3
- babel-jest: ^28.1.3
+ "@jest/test-sequencer": ^29.7.0
+ "@jest/types": ^29.6.3
+ babel-jest: ^29.7.0
chalk: ^4.0.0
ci-info: ^3.2.0
deepmerge: ^4.2.2
glob: ^7.1.3
graceful-fs: ^4.2.9
- jest-circus: ^28.1.3
- jest-environment-node: ^28.1.3
- jest-get-type: ^28.0.2
- jest-regex-util: ^28.0.2
- jest-resolve: ^28.1.3
- jest-runner: ^28.1.3
- jest-util: ^28.1.3
- jest-validate: ^28.1.3
+ jest-circus: ^29.7.0
+ jest-environment-node: ^29.7.0
+ jest-get-type: ^29.6.3
+ jest-regex-util: ^29.6.3
+ jest-resolve: ^29.7.0
+ jest-runner: ^29.7.0
+ jest-util: ^29.7.0
+ jest-validate: ^29.7.0
micromatch: ^4.0.4
parse-json: ^5.2.0
- pretty-format: ^28.1.3
+ pretty-format: ^29.7.0
slash: ^3.0.0
strip-json-comments: ^3.1.1
peerDependencies:
@@ -8719,7 +8916,7 @@ __metadata:
optional: true
ts-node:
optional: true
- checksum: ddabffd3a3a8cb6c2f58f06cdf3535157dbf8c70bcde3e5c3de7bee6a8d617840ffc8cffb0083e38c6814f2a08c225ca19f58898efaf4f351af94679f22ce6bc
+ checksum: 4cabf8f894c180cac80b7df1038912a3fc88f96f2622de33832f4b3314f83e22b08fb751da570c0ab2b7988f21604bdabade95e3c0c041068ac578c085cf7dff
languageName: node
linkType: hard
@@ -8735,25 +8932,37 @@ __metadata:
languageName: node
linkType: hard
-"jest-docblock@npm:^28.1.1":
- version: 28.1.1
- resolution: "jest-docblock@npm:28.1.1"
+"jest-diff@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-diff@npm:29.7.0"
+ dependencies:
+ chalk: ^4.0.0
+ diff-sequences: ^29.6.3
+ jest-get-type: ^29.6.3
+ pretty-format: ^29.7.0
+ checksum: 08e24a9dd43bfba1ef07a6374e5af138f53137b79ec3d5cc71a2303515335898888fa5409959172e1e05de966c9e714368d15e8994b0af7441f0721ee8e1bb77
+ languageName: node
+ linkType: hard
+
+"jest-docblock@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-docblock@npm:29.7.0"
dependencies:
detect-newline: ^3.0.0
- checksum: 22fca68d988ecb2933bc65f448facdca85fc71b4bd0a188ea09a5ae1b0cc3a049a2a6ec7e7eaa2542c1d5cb5e5145e420a3df4fa280f5070f486c44da1d36151
+ checksum: 66390c3e9451f8d96c5da62f577a1dad701180cfa9b071c5025acab2f94d7a3efc2515cfa1654ebe707213241541ce9c5530232cdc8017c91ed64eea1bd3b192
languageName: node
linkType: hard
-"jest-each@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-each@npm:28.1.3"
+"jest-each@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-each@npm:29.7.0"
dependencies:
- "@jest/types": ^28.1.3
+ "@jest/types": ^29.6.3
chalk: ^4.0.0
- jest-get-type: ^28.0.2
- jest-util: ^28.1.3
- pretty-format: ^28.1.3
- checksum: 5c5b8ccb1484e58b027bea682cfa020a45e5bf5379cc7c23bdec972576c1dc3c3bf03df2b78416cefc1a58859dd33b7cf5fff54c370bc3c0f14a3e509eb87282
+ jest-get-type: ^29.6.3
+ jest-util: ^29.7.0
+ pretty-format: ^29.7.0
+ checksum: e88f99f0184000fc8813f2a0aa79e29deeb63700a3b9b7928b8a418d7d93cd24933608591dbbdea732b473eb2021c72991b5cc51a17966842841c6e28e6f691c
languageName: node
linkType: hard
@@ -8778,21 +8987,7 @@ __metadata:
languageName: node
linkType: hard
-"jest-environment-node@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-environment-node@npm:28.1.3"
- dependencies:
- "@jest/environment": ^28.1.3
- "@jest/fake-timers": ^28.1.3
- "@jest/types": ^28.1.3
- "@types/node": "*"
- jest-mock: ^28.1.3
- jest-util: ^28.1.3
- checksum: 1048fe306a6a8b0880a4c66278ebb57479f29c12cff89aab3aa79ab77a8859cf17ab8aa9919fd21c329a7db90e35581b43664e694ad453d5b04e00f3c6420469
- languageName: node
- linkType: hard
-
-"jest-environment-node@npm:^29.2.1":
+"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:
@@ -8820,36 +9015,36 @@ __metadata:
languageName: node
linkType: hard
-"jest-haste-map@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-haste-map@npm:28.1.3"
+"jest-haste-map@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-haste-map@npm:29.7.0"
dependencies:
- "@jest/types": ^28.1.3
+ "@jest/types": ^29.6.3
"@types/graceful-fs": ^4.1.3
"@types/node": "*"
anymatch: ^3.0.3
fb-watchman: ^2.0.0
fsevents: ^2.3.2
graceful-fs: ^4.2.9
- jest-regex-util: ^28.0.2
- jest-util: ^28.1.3
- jest-worker: ^28.1.3
+ jest-regex-util: ^29.6.3
+ jest-util: ^29.7.0
+ jest-worker: ^29.7.0
micromatch: ^4.0.4
walker: ^1.0.8
dependenciesMeta:
fsevents:
optional: true
- checksum: d05fdc108645fc2b39fcd4001952cc7a8cb550e93494e98c1e9ab1fc542686f6ac67177c132e564cf94fe8f81503f3f8db8b825b9b713dc8c5748aec63ba4688
+ checksum: c2c8f2d3e792a963940fbdfa563ce14ef9e14d4d86da645b96d3cd346b8d35c5ce0b992ee08593939b5f718cf0a1f5a90011a056548a1dbf58397d4356786f01
languageName: node
linkType: hard
-"jest-leak-detector@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-leak-detector@npm:28.1.3"
+"jest-leak-detector@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-leak-detector@npm:29.7.0"
dependencies:
- jest-get-type: ^28.0.2
- pretty-format: ^28.1.3
- checksum: 2e976a4880cf9af11f53a19f6a3820e0f90b635a900737a5427fc42e337d5628ba446dcd7c020ecea3806cf92bc0bbf6982ed62a9cd84e5a13d8751aa30fbbb7
+ jest-get-type: ^29.6.3
+ pretty-format: ^29.7.0
+ checksum: e3950e3ddd71e1d0c22924c51a300a1c2db6cf69ec1e51f95ccf424bcc070f78664813bef7aed4b16b96dfbdeea53fe358f8aeaaea84346ae15c3735758f1605
languageName: node
linkType: hard
@@ -8865,6 +9060,18 @@ __metadata:
languageName: node
linkType: hard
+"jest-matcher-utils@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-matcher-utils@npm:29.7.0"
+ dependencies:
+ chalk: ^4.0.0
+ jest-diff: ^29.7.0
+ jest-get-type: ^29.6.3
+ pretty-format: ^29.7.0
+ checksum: d7259e5f995d915e8a37a8fd494cb7d6af24cd2a287b200f831717ba0d015190375f9f5dc35393b8ba2aae9b2ebd60984635269c7f8cff7d85b077543b7744cd
+ languageName: node
+ linkType: hard
+
"jest-message-util@npm:^28.1.3":
version: 28.1.3
resolution: "jest-message-util@npm:28.1.3"
@@ -8899,16 +9106,6 @@ __metadata:
languageName: node
linkType: hard
-"jest-mock@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-mock@npm:28.1.3"
- dependencies:
- "@jest/types": ^28.1.3
- "@types/node": "*"
- checksum: a573bf8e5f12f4c29c661266c31b5c6b69a28d3195b83049983bce025b2b1a0152351567e89e63b102ef817034c2a3aa97eda4e776f3bae2aee54c5765573aa7
- languageName: node
- linkType: hard
-
"jest-mock@npm:^29.7.0":
version: 29.7.0
resolution: "jest-mock@npm:29.7.0"
@@ -8932,148 +9129,124 @@ __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: d45ca7a9543616a34f7f3079337439cf07566e677a096472baa2810e274b9808b76767c97b0a4029b8a5b82b9d256dee28ef9ad4138b2b9e5933f6fac106c418
- languageName: node
- linkType: hard
-
-"jest-regex-util@npm:^28.0.2":
- version: 28.0.2
- resolution: "jest-regex-util@npm:28.0.2"
- checksum: 0ea8c5c82ec88bc85e273c0ec82e0c0f35f7a1e2d055070e50f0cc2a2177f848eec55f73e37ae0d045c3db5014c42b2f90ac62c1ab3fdb354d2abd66a9e08add
+"jest-regex-util@npm:^29.6.3":
+ version: 29.6.3
+ resolution: "jest-regex-util@npm:29.6.3"
+ checksum: 0518beeb9bf1228261695e54f0feaad3606df26a19764bc19541e0fc6e2a3737191904607fb72f3f2ce85d9c16b28df79b7b1ec9443aa08c3ef0e9efda6f8f2a
languageName: node
linkType: hard
-"jest-resolve-dependencies@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-resolve-dependencies@npm:28.1.3"
+"jest-resolve-dependencies@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-resolve-dependencies@npm:29.7.0"
dependencies:
- jest-regex-util: ^28.0.2
- jest-snapshot: ^28.1.3
- checksum: 4eea9ec33aefc1c71dc5956391efbcc7be76bda986b366ab3931d99c5f7ed01c9ebd7520e405ea2c76e1bb2c7ce504be6eca2b9831df16564d1e625500f3bfe7
+ jest-regex-util: ^29.6.3
+ jest-snapshot: ^29.7.0
+ checksum: aeb75d8150aaae60ca2bb345a0d198f23496494677cd6aefa26fc005faf354061f073982175daaf32b4b9d86b26ca928586344516e3e6969aa614cb13b883984
languageName: node
linkType: hard
-"jest-resolve@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-resolve@npm:28.1.3"
+"jest-resolve@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-resolve@npm:29.7.0"
dependencies:
chalk: ^4.0.0
graceful-fs: ^4.2.9
- jest-haste-map: ^28.1.3
+ jest-haste-map: ^29.7.0
jest-pnp-resolver: ^1.2.2
- jest-util: ^28.1.3
- jest-validate: ^28.1.3
+ jest-util: ^29.7.0
+ jest-validate: ^29.7.0
resolve: ^1.20.0
- resolve.exports: ^1.1.0
+ resolve.exports: ^2.0.0
slash: ^3.0.0
- checksum: df61a490c93f4f4cf52135e43d6a4fcacb07b0b7d4acc6319e9289529c1d14f2d8e1638e095dbf96f156834802755e38db68caca69dba21a3261ee711d4426b6
+ checksum: 0ca218e10731aa17920526ec39deaec59ab9b966237905ffc4545444481112cd422f01581230eceb7e82d86f44a543d520a71391ec66e1b4ef1a578bd5c73487
languageName: node
linkType: hard
-"jest-runner@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-runner@npm:28.1.3"
+"jest-runner@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-runner@npm:29.7.0"
dependencies:
- "@jest/console": ^28.1.3
- "@jest/environment": ^28.1.3
- "@jest/test-result": ^28.1.3
- "@jest/transform": ^28.1.3
- "@jest/types": ^28.1.3
+ "@jest/console": ^29.7.0
+ "@jest/environment": ^29.7.0
+ "@jest/test-result": ^29.7.0
+ "@jest/transform": ^29.7.0
+ "@jest/types": ^29.6.3
"@types/node": "*"
chalk: ^4.0.0
- emittery: ^0.10.2
+ emittery: ^0.13.1
graceful-fs: ^4.2.9
- jest-docblock: ^28.1.1
- jest-environment-node: ^28.1.3
- jest-haste-map: ^28.1.3
- jest-leak-detector: ^28.1.3
- jest-message-util: ^28.1.3
- jest-resolve: ^28.1.3
- jest-runtime: ^28.1.3
- jest-util: ^28.1.3
- jest-watcher: ^28.1.3
- jest-worker: ^28.1.3
+ jest-docblock: ^29.7.0
+ jest-environment-node: ^29.7.0
+ jest-haste-map: ^29.7.0
+ jest-leak-detector: ^29.7.0
+ jest-message-util: ^29.7.0
+ jest-resolve: ^29.7.0
+ jest-runtime: ^29.7.0
+ jest-util: ^29.7.0
+ jest-watcher: ^29.7.0
+ jest-worker: ^29.7.0
p-limit: ^3.1.0
source-map-support: 0.5.13
- checksum: 32405cd970fa6b11e039192dae699fd1bcc6f61f67d50605af81d193f24dd4373b25f5fcc1c571a028ec1b02174e8a4b6d0d608772063fb06f08a5105693533b
+ checksum: f0405778ea64812bf9b5c50b598850d94ccf95d7ba21f090c64827b41decd680ee19fcbb494007cdd7f5d0d8906bfc9eceddd8fa583e753e736ecd462d4682fb
languageName: node
linkType: hard
-"jest-runtime@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-runtime@npm:28.1.3"
- dependencies:
- "@jest/environment": ^28.1.3
- "@jest/fake-timers": ^28.1.3
- "@jest/globals": ^28.1.3
- "@jest/source-map": ^28.1.2
- "@jest/test-result": ^28.1.3
- "@jest/transform": ^28.1.3
- "@jest/types": ^28.1.3
+"jest-runtime@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-runtime@npm:29.7.0"
+ dependencies:
+ "@jest/environment": ^29.7.0
+ "@jest/fake-timers": ^29.7.0
+ "@jest/globals": ^29.7.0
+ "@jest/source-map": ^29.6.3
+ "@jest/test-result": ^29.7.0
+ "@jest/transform": ^29.7.0
+ "@jest/types": ^29.6.3
+ "@types/node": "*"
chalk: ^4.0.0
cjs-module-lexer: ^1.0.0
collect-v8-coverage: ^1.0.0
- execa: ^5.0.0
glob: ^7.1.3
graceful-fs: ^4.2.9
- jest-haste-map: ^28.1.3
- jest-message-util: ^28.1.3
- jest-mock: ^28.1.3
- jest-regex-util: ^28.0.2
- jest-resolve: ^28.1.3
- jest-snapshot: ^28.1.3
- jest-util: ^28.1.3
+ jest-haste-map: ^29.7.0
+ jest-message-util: ^29.7.0
+ jest-mock: ^29.7.0
+ jest-regex-util: ^29.6.3
+ jest-resolve: ^29.7.0
+ jest-snapshot: ^29.7.0
+ jest-util: ^29.7.0
slash: ^3.0.0
strip-bom: ^4.0.0
- checksum: b17c40af858e74dafa4f515ef3711c1e9ef3d4ad7d74534ee0745422534bc04fd166d4eceb62a3aa7dc951505d6f6d2a81d16e90bebb032be409ec0500974a36
+ checksum: d19f113d013e80691e07047f68e1e3448ef024ff2c6b586ce4f90cd7d4c62a2cd1d460110491019719f3c59bfebe16f0e201ed005ef9f80e2cf798c374eed54e
languageName: node
linkType: hard
-"jest-snapshot@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-snapshot@npm:28.1.3"
+"jest-snapshot@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-snapshot@npm:29.7.0"
dependencies:
"@babel/core": ^7.11.6
"@babel/generator": ^7.7.2
+ "@babel/plugin-syntax-jsx": ^7.7.2
"@babel/plugin-syntax-typescript": ^7.7.2
- "@babel/traverse": ^7.7.2
"@babel/types": ^7.3.3
- "@jest/expect-utils": ^28.1.3
- "@jest/transform": ^28.1.3
- "@jest/types": ^28.1.3
- "@types/babel__traverse": ^7.0.6
- "@types/prettier": ^2.1.5
+ "@jest/expect-utils": ^29.7.0
+ "@jest/transform": ^29.7.0
+ "@jest/types": ^29.6.3
babel-preset-current-node-syntax: ^1.0.0
chalk: ^4.0.0
- expect: ^28.1.3
+ expect: ^29.7.0
graceful-fs: ^4.2.9
- jest-diff: ^28.1.3
- jest-get-type: ^28.0.2
- jest-haste-map: ^28.1.3
- jest-matcher-utils: ^28.1.3
- jest-message-util: ^28.1.3
- jest-util: ^28.1.3
+ jest-diff: ^29.7.0
+ jest-get-type: ^29.6.3
+ jest-matcher-utils: ^29.7.0
+ jest-message-util: ^29.7.0
+ jest-util: ^29.7.0
natural-compare: ^1.4.0
- pretty-format: ^28.1.3
- semver: ^7.3.5
- checksum: 2a46a5493f1fb50b0a236a21f25045e7f46a244f9f3ae37ef4fbcd40249d0d68bb20c950ce77439e4e2cac985b05c3061c90b34739bf6069913a1199c8c716e1
- languageName: node
- linkType: hard
-
-"jest-util@npm:^27.2.0":
- version: 27.5.1
- resolution: "jest-util@npm:27.5.1"
- dependencies:
- "@jest/types": ^27.5.1
- "@types/node": "*"
- chalk: ^4.0.0
- ci-info: ^3.2.0
- graceful-fs: ^4.2.9
- picomatch: ^2.2.3
- checksum: ac8d122f6daf7a035dcea156641fd3701aeba245417c40836a77e35b3341b9c02ddc5d904cfcd4ddbaa00ab854da76d3b911870cafdcdbaff90ea471de26c7d7
+ pretty-format: ^29.7.0
+ semver: ^7.5.3
+ checksum: 86821c3ad0b6899521ce75ee1ae7b01b17e6dfeff9166f2cf17f012e0c5d8c798f30f9e4f8f7f5bed01ea7b55a6bc159f5eda778311162cbfa48785447c237ad
languageName: node
linkType: hard
@@ -9105,21 +9278,7 @@ __metadata:
languageName: node
linkType: hard
-"jest-validate@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-validate@npm:28.1.3"
- dependencies:
- "@jest/types": ^28.1.3
- camelcase: ^6.2.0
- chalk: ^4.0.0
- jest-get-type: ^28.0.2
- leven: ^3.1.0
- pretty-format: ^28.1.3
- checksum: 95e0513b3803c3372a145cda86edbdb33d9dfeaa18818176f2d581e821548ceac9a179f065b6d4671a941de211354efd67f1fff8789a4fb89962565c85f646db
- languageName: node
- linkType: hard
-
-"jest-validate@npm:^29.2.1":
+"jest-validate@npm:^29.6.3, jest-validate@npm:^29.7.0":
version: 29.7.0
resolution: "jest-validate@npm:29.7.0"
dependencies:
@@ -9133,52 +9292,42 @@ __metadata:
languageName: node
linkType: hard
-"jest-watcher@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-watcher@npm:28.1.3"
+"jest-watcher@npm:^29.7.0":
+ version: 29.7.0
+ resolution: "jest-watcher@npm:29.7.0"
dependencies:
- "@jest/test-result": ^28.1.3
- "@jest/types": ^28.1.3
+ "@jest/test-result": ^29.7.0
+ "@jest/types": ^29.6.3
"@types/node": "*"
ansi-escapes: ^4.2.1
chalk: ^4.0.0
- emittery: ^0.10.2
- jest-util: ^28.1.3
+ emittery: ^0.13.1
+ jest-util: ^29.7.0
string-length: ^4.0.1
- checksum: 8f6d674a4865e7df251f71544f1b51f06fd36b5a3a61f2ac81aeb81fa2a196be354fba51d0f97911c88f67cd254583b3a22ee124bf2c5b6ee2fadec27356c207
- languageName: node
- linkType: hard
-
-"jest-worker@npm:^27.2.0":
- version: 27.5.1
- resolution: "jest-worker@npm:27.5.1"
- dependencies:
- "@types/node": "*"
- merge-stream: ^2.0.0
- supports-color: ^8.0.0
- checksum: 98cd68b696781caed61c983a3ee30bf880b5bd021c01d98f47b143d4362b85d0737f8523761e2713d45e18b4f9a2b98af1eaee77afade4111bb65c77d6f7c980
+ checksum: 67e6e7fe695416deff96b93a14a561a6db69389a0667e9489f24485bb85e5b54e12f3b2ba511ec0b777eca1e727235b073e3ebcdd473d68888650489f88df92f
languageName: node
linkType: hard
-"jest-worker@npm:^28.1.3":
- version: 28.1.3
- resolution: "jest-worker@npm:28.1.3"
+"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": "*"
+ jest-util: ^29.7.0
merge-stream: ^2.0.0
supports-color: ^8.0.0
- checksum: e921c9a1b8f0909da9ea07dbf3592f95b653aef3a8bb0cbcd20fc7f9a795a1304adecac31eecb308992c167e8d7e75c522061fec38a5928ace0f9571c90169ca
+ checksum: 30fff60af49675273644d408b650fc2eb4b5dcafc5a0a455f238322a8f9d8a98d847baca9d51ff197b6747f54c7901daa2287799230b856a0f48287d131f8c13
languageName: node
linkType: hard
-"jest@npm:^28.1.1":
- version: 28.1.3
- resolution: "jest@npm:28.1.3"
+"jest@npm:^29.6.3":
+ version: 29.7.0
+ resolution: "jest@npm:29.7.0"
dependencies:
- "@jest/core": ^28.1.3
- "@jest/types": ^28.1.3
+ "@jest/core": ^29.7.0
+ "@jest/types": ^29.6.3
import-local: ^3.0.2
- jest-cli: ^28.1.3
+ jest-cli: ^29.7.0
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
@@ -9186,7 +9335,7 @@ __metadata:
optional: true
bin:
jest: bin/jest.js
- checksum: b9dcb542eb7c16261c281cdc2bf37155dbb3f1205bae0b567f05051db362c85ddd4b765f126591efb88f6d298eb10336d0aa6c7d5373b4d53f918137a9a70182
+ checksum: 17ca8d67504a7dbb1998cf3c3077ec9031ba3eb512da8d71cb91bcabb2b8995c4e4b292b740cb9bf1cbff5ce3e110b3f7c777b0cefb6f41ab05445f248d0ee0b
languageName: node
linkType: hard
@@ -9551,6 +9700,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: ^2.6.9
+ marky: ^1.2.2
+ checksum: ba6b73d93424318fab58b4e07c9ed246e3e969a3313f26b69515ed4c06457dd9a0b11bc706948398fdaef26aa4ba5e65cb848c37ce59f470d3c6c450b9b79a33
+ languageName: node
+ linkType: hard
+
"lines-and-columns@npm:^1.1.6":
version: 1.2.4
resolution: "lines-and-columns@npm:1.2.4"
@@ -9857,6 +10016,13 @@ __metadata:
languageName: node
linkType: hard
+"marky@npm:^1.2.2":
+ version: 1.2.5
+ resolution: "marky@npm:1.2.5"
+ checksum: 823b946677749551cdfc3b5221685478b5d1b9cc0dc03eff977c6f9a615fb05c67559f9556cb3c0fcb941a9ea0e195e37befd83026443396ccee8b724f54f4c5
+ languageName: node
+ linkType: hard
+
"memoize-one@npm:^5.0.0":
version: 5.2.1
resolution: "memoize-one@npm:5.2.1"
@@ -9924,62 +10090,62 @@ __metadata:
languageName: node
linkType: hard
-"metro-babel-transformer@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-babel-transformer@npm:0.76.8"
+"metro-babel-transformer@npm:0.80.6":
+ version: 0.80.6
+ resolution: "metro-babel-transformer@npm:0.80.6"
dependencies:
"@babel/core": ^7.20.0
- hermes-parser: 0.12.0
+ hermes-parser: 0.19.1
nullthrows: ^1.1.1
- checksum: 2a00839585f6e9b831f29d203edcfd7dc62383efa41734fbf8d13daded7a18c7650aa70a1a03943a8d1c9ac20cb33d42ac3eae3b89484fe704a0a70a164d76ab
+ checksum: 67fafa987f23ba6b8326fadc151cda108b936608a204ca0487faa6085d09a496b7dea084d4624c8be5352987f615c9e4356bceb0bc4277290dd87df4bd0ff538
languageName: node
linkType: hard
-"metro-cache-key@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-cache-key@npm:0.76.8"
- checksum: 23d33652ff814cdd4739201ed545ab421cf16aa10d4bfcf7673ec630268ceed7a3735a59a711bdfa812786d181a4e64f453f1658fd342f5ff55aef232ac63b0d
+"metro-cache-key@npm:0.80.6":
+ version: 0.80.6
+ resolution: "metro-cache-key@npm:0.80.6"
+ checksum: 717b7e6281f3ced65718a086b3fda2d1bd0aa6c50b5712771697235d1a756de717cbf21fc05ff729ea1040fc669352f5748a44898cbd6ce3729cbd64dc90899d
languageName: node
linkType: hard
-"metro-cache@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-cache@npm:0.76.8"
+"metro-cache@npm:0.80.6":
+ version: 0.80.6
+ resolution: "metro-cache@npm:0.80.6"
dependencies:
- metro-core: 0.76.8
+ metro-core: 0.80.6
rimraf: ^3.0.2
- checksum: 57ac005e44f5e57e62bd597b0b5023c3c961d41eb80f91a1fba61acaa21423efba5d5b710f5a4a6e09ecebe5512441d06dd54a5a4acd7f09ba8dd1361b3fc2d3
+ checksum: c430df77cb10ae7cd95ac7f25782e1645982e8c155e37678f93c0f88f71c001b8089dda04911924ac9320a3c7922d64691839cce9a5fe5718c269cc169978f01
languageName: node
linkType: hard
-"metro-config@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-config@npm:0.76.8"
+"metro-config@npm:0.80.6, metro-config@npm:^0.80.3":
+ version: 0.80.6
+ resolution: "metro-config@npm:0.80.6"
dependencies:
connect: ^3.6.5
cosmiconfig: ^5.0.5
- jest-validate: ^29.2.1
- metro: 0.76.8
- metro-cache: 0.76.8
- metro-core: 0.76.8
- metro-runtime: 0.76.8
- checksum: aa3208d4a0f274d2f204f26ed214cf3c8a86138d997203413599a48930192bafd791a115a30e5af55b2685aa250174fb64a2a9009d9b5842af78c033420de312
+ jest-validate: ^29.6.3
+ metro: 0.80.6
+ metro-cache: 0.80.6
+ metro-core: 0.80.6
+ metro-runtime: 0.80.6
+ checksum: acb4d0d7bbdea298bda0603755881a082ce71d6335ca024009ae38e9ef2d7cb031d7d228d243cf98235828cf79be4a8c5576363431808274e2c4bd28dfb4a7ff
languageName: node
linkType: hard
-"metro-core@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-core@npm:0.76.8"
+"metro-core@npm:0.80.6, metro-core@npm:^0.80.3":
+ version: 0.80.6
+ resolution: "metro-core@npm:0.80.6"
dependencies:
lodash.throttle: ^4.1.1
- metro-resolver: 0.76.8
- checksum: 9a43e824404c194ca31de0e204f304ded65d1c4ecb401f270750f6e319f9454293067c69c682b20413951eb63fde1e4e2a8e779f9eb779d2da95ffea4e093ce9
+ metro-resolver: 0.80.6
+ checksum: 47466162278fa26efdfb2d917bab60d12a0c1554acb6db4e80f731ed29c305728d26918a652997feb6d4a1086f11ba3f74443d927fb9d1e06d29b06b3116be58
languageName: node
linkType: hard
-"metro-file-map@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-file-map@npm:0.76.8"
+"metro-file-map@npm:0.80.6":
+ version: 0.80.6
+ resolution: "metro-file-map@npm:0.80.6"
dependencies:
anymatch: ^3.0.3
debug: ^2.2.0
@@ -9987,9 +10153,7 @@ __metadata:
fsevents: ^2.3.2
graceful-fs: ^4.2.4
invariant: ^2.2.4
- jest-regex-util: ^27.0.6
- jest-util: ^27.2.0
- jest-worker: ^27.2.0
+ jest-worker: ^29.6.3
micromatch: ^4.0.4
node-abort-controller: ^3.1.1
nullthrows: ^1.1.1
@@ -9997,40 +10161,16 @@ __metadata:
dependenciesMeta:
fsevents:
optional: true
- checksum: eecd1560b32115db93ca9a8c066203465619a5b39a9ccc5a9771b61d392deeda96737c87e1ed740cd00e7d8ef9149f7e1ee32a0b311242fdfca372c79b4893b4
- 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: ^3.6.5
- debug: ^2.2.0
- node-fetch: ^2.2.0
- ws: ^7.5.1
- yargs: ^17.6.2
- bin:
- metro-inspector-proxy: src/cli.js
- checksum: edf3a1488ca57883c8b511f852f66024ccd451616b1897d82600e3b51a3ea8ef14bac01ad5767fbcf8d772da77239606475319e591701f4c094489e009842d9d
+ checksum: 116c5e0595fbd644abf16ebbd15448b7eb2fe8a5297095b980a9d667c6a814990cede06b89664e5cfa9c5d4104d3f7af76834e5ac322a43e8c2e98075a2a3648
languageName: node
linkType: hard
-"metro-minify-terser@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-minify-terser@npm:0.76.8"
+"metro-minify-terser@npm:0.80.6":
+ version: 0.80.6
+ resolution: "metro-minify-terser@npm:0.80.6"
dependencies:
terser: ^5.15.0
- checksum: 58beaed29fe4b2783fd06ec6ea8fe0dcc5056b2bb48dab0c5109884f3d9afffe8709c5157a364a3a0b4de48c300efe4101b34645624b95129cf1c17e5821e4ed
- 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: ^3.1.9
- checksum: e2c1642a5ff8f9145e282036a252d665576c65bd3d3baac1e2b05a67421f9390ef4824ea55506f92ba2854774dac028ec492cf8fb1abcdf1a97205d8d79b226b
+ checksum: 04b803d53d5a24b1f52adcb21e0e301486df95969b489e0be3f2396ae762a4f97305d4e14caa72af4fc98b5197d1c64e6b5fc4c80822e207fa93896b8e3c26c4
languageName: node
linkType: hard
@@ -10083,106 +10223,90 @@ __metadata:
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": ^7.20.0
- babel-preset-fbjs: ^3.4.0
- hermes-parser: 0.12.0
- metro-react-native-babel-preset: 0.76.8
- nullthrows: ^1.1.1
- peerDependencies:
- "@babel/core": "*"
- checksum: 7b7489709b8ea27e9337dd5997e143fc947a60695b2233d77a5eb3ea9c90a129d5e8308fd6af0b592ee4b037a1e5878ab1798181325e493a05249ff173299608
- languageName: node
- linkType: hard
-
-"metro-resolver@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-resolver@npm:0.76.8"
- checksum: 85b45a96f01ccf25d3568b9918a81eb8ed75950e8923c9a8ddd83d7116e620af2a1fc5bf744674c8318ab5fd219e0c621a1c602d451913c054517531f98eb50b
+"metro-resolver@npm:0.80.6":
+ version: 0.80.6
+ resolution: "metro-resolver@npm:0.80.6"
+ checksum: c2b9b301f6f1494f156b8f85ac7ed49b984452e6c7d3c26b7e970d6a126e8e750a61c24b38f804040a38196b268051197d9d349cd64b16f83f9c824560ccf9c8
languageName: node
linkType: hard
-"metro-runtime@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-runtime@npm:0.76.8"
+"metro-runtime@npm:0.80.6, metro-runtime@npm:^0.80.3":
+ version: 0.80.6
+ resolution: "metro-runtime@npm:0.80.6"
dependencies:
"@babel/runtime": ^7.0.0
- react-refresh: ^0.4.0
- checksum: 5f3bf808adff99b4a29a3bc190263eaf8e4f1fb87a751344b54bf49b399f3e48be2cc256c415853c19b4b4a27d402e1bcc9f911bea8521f8ac325f8fddc7d631
+ checksum: 89e49536d2aa9c8be668d405e810769815e8ceb92a91e9f5e212509b4618a6ed0a734bb2fd4c7fa0444ac73545856f528c0b48fb936647e258c2c08481c03afd
languageName: node
linkType: hard
-"metro-source-map@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-source-map@npm:0.76.8"
+"metro-source-map@npm:0.80.6, metro-source-map@npm:^0.80.3":
+ version: 0.80.6
+ resolution: "metro-source-map@npm:0.80.6"
dependencies:
"@babel/traverse": ^7.20.0
"@babel/types": ^7.20.0
invariant: ^2.2.4
- metro-symbolicate: 0.76.8
+ metro-symbolicate: 0.80.6
nullthrows: ^1.1.1
- ob1: 0.76.8
+ ob1: 0.80.6
source-map: ^0.5.6
vlq: ^1.0.0
- checksum: 01134a3b73f9f67f32debff665d2a3815b84fa7f8627d82d7c343746b7fa357693f7b93e8fd6bcdc4e75a9f59c387c51edb456ad82c7e0c2e20fbca7f0ea6765
+ checksum: 52ac62279732474d16f81122d5814565350fbdefb4945258270ecb7a02106d55d1c1a6297f53a4115db79a087f6cc18028faea6b2081e6b08eb203daa3ac0df7
languageName: node
linkType: hard
-"metro-symbolicate@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-symbolicate@npm:0.76.8"
+"metro-symbolicate@npm:0.80.6":
+ version: 0.80.6
+ resolution: "metro-symbolicate@npm:0.80.6"
dependencies:
invariant: ^2.2.4
- metro-source-map: 0.76.8
+ metro-source-map: 0.80.6
nullthrows: ^1.1.1
source-map: ^0.5.6
through2: ^2.0.1
vlq: ^1.0.0
bin:
metro-symbolicate: src/index.js
- checksum: 87988bbb255fd3d91d31cedc9b20eb804cd91ca6b66b66d48e4c11a361f09c71e113c7ce6191d83563591400cd31fc9a27a659fdb7fc83bf6e346ca427880af1
+ checksum: 49156b1848c174384b110de60a73021f935f963c795d788483d770a5d19fad05dcb41dea8c440185fe383c678edce590c4826dbce035dec02d0d92190edeba31
languageName: node
linkType: hard
-"metro-transform-plugins@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-transform-plugins@npm:0.76.8"
+"metro-transform-plugins@npm:0.80.6":
+ version: 0.80.6
+ resolution: "metro-transform-plugins@npm:0.80.6"
dependencies:
"@babel/core": ^7.20.0
"@babel/generator": ^7.20.0
"@babel/template": ^7.0.0
"@babel/traverse": ^7.20.0
nullthrows: ^1.1.1
- checksum: 3db7b3ac809409042e7c6a79e9b6dba61d4e0c4a66f2f0bca3b3cadbf413e9cc3dc4d7f89e79c7a65f19ca6f3c3025c819709fc545a677532293805dd9025fa7
+ checksum: 32237fd23514ac62a43b46715a4f07c0ff86f1987e9869a2f63aaa4536278d3f6e8ca206e94d674c9d576c0265230f667ed55fb7a7e7de8c0ac9b0b12cb534a2
languageName: node
linkType: hard
-"metro-transform-worker@npm:0.76.8":
- version: 0.76.8
- resolution: "metro-transform-worker@npm:0.76.8"
+"metro-transform-worker@npm:0.80.6":
+ version: 0.80.6
+ resolution: "metro-transform-worker@npm:0.80.6"
dependencies:
"@babel/core": ^7.20.0
"@babel/generator": ^7.20.0
"@babel/parser": ^7.20.0
"@babel/types": ^7.20.0
- babel-preset-fbjs: ^3.4.0
- metro: 0.76.8
- metro-babel-transformer: 0.76.8
- metro-cache: 0.76.8
- metro-cache-key: 0.76.8
- metro-source-map: 0.76.8
- metro-transform-plugins: 0.76.8
+ metro: 0.80.6
+ metro-babel-transformer: 0.80.6
+ metro-cache: 0.80.6
+ metro-cache-key: 0.80.6
+ metro-minify-terser: 0.80.6
+ metro-source-map: 0.80.6
+ metro-transform-plugins: 0.80.6
nullthrows: ^1.1.1
- checksum: 21935271fcd89696dcb837fd3b7efca96b1f36372d98628349496fe1c29d74763bdbdf05946944ecd799beb4c6ea4cd8058e0ce3175b2ba625e957de90dbc440
+ checksum: 877dfb4d9b8ce3a3663a689906b81d61c4e2c1344f790b9995b4edb7439964badac8b0bf5a204a20819d42dbc403179fa67c950ec2b232837c1d0e9dc8db35bb
languageName: node
linkType: hard
-"metro@npm:0.76.8":
- version: 0.76.8
- resolution: "metro@npm:0.76.8"
+"metro@npm:0.80.6, metro@npm:^0.80.3":
+ version: 0.80.6
+ resolution: "metro@npm:0.80.6"
dependencies:
"@babel/code-frame": ^7.0.0
"@babel/core": ^7.20.0
@@ -10192,7 +10316,6 @@ __metadata:
"@babel/traverse": ^7.20.0
"@babel/types": ^7.20.0
accepts: ^1.3.7
- async: ^3.2.2
chalk: ^4.0.0
ci-info: ^2.0.0
connect: ^3.6.5
@@ -10200,28 +10323,24 @@ __metadata:
denodeify: ^1.2.1
error-stack-parser: ^2.0.6
graceful-fs: ^4.2.4
- hermes-parser: 0.12.0
+ hermes-parser: 0.19.1
image-size: ^1.0.2
invariant: ^2.2.4
- jest-worker: ^27.2.0
+ jest-worker: ^29.6.3
jsc-safe-url: ^0.2.2
lodash.throttle: ^4.1.1
- metro-babel-transformer: 0.76.8
- metro-cache: 0.76.8
- metro-cache-key: 0.76.8
- metro-config: 0.76.8
- metro-core: 0.76.8
- metro-file-map: 0.76.8
- metro-inspector-proxy: 0.76.8
- metro-minify-terser: 0.76.8
- metro-minify-uglify: 0.76.8
- metro-react-native-babel-preset: 0.76.8
- metro-resolver: 0.76.8
- metro-runtime: 0.76.8
- metro-source-map: 0.76.8
- metro-symbolicate: 0.76.8
- metro-transform-plugins: 0.76.8
- metro-transform-worker: 0.76.8
+ metro-babel-transformer: 0.80.6
+ metro-cache: 0.80.6
+ metro-cache-key: 0.80.6
+ metro-config: 0.80.6
+ metro-core: 0.80.6
+ metro-file-map: 0.80.6
+ metro-resolver: 0.80.6
+ metro-runtime: 0.80.6
+ metro-source-map: 0.80.6
+ metro-symbolicate: 0.80.6
+ metro-transform-plugins: 0.80.6
+ metro-transform-worker: 0.80.6
mime-types: ^2.1.27
node-fetch: ^2.2.0
nullthrows: ^1.1.1
@@ -10234,7 +10353,7 @@ __metadata:
yargs: ^17.6.2
bin:
metro: src/cli.js
- checksum: 848ab2857de61601df933faa8abe844343fdf5e335a3cbf906cddaaece8550259393aa1b9aa9c8eed75ec6eebf2c6203095880e8919b38034baf03081291af63
+ checksum: 9ff469539e0f64ba6a21485f17f194f8eb63713d6a48f0bd46660bcb7f9e8ebf62ab98459211f99f8e8e63d7c40145d62e30a7222dbd93410bf08e6eb8958ff4
languageName: node
linkType: hard
@@ -10457,7 +10576,7 @@ __metadata:
languageName: node
linkType: hard
-"mkdirp@npm:^1.0.3":
+"mkdirp@npm:^1.0.3, mkdirp@npm:^1.0.4":
version: 1.0.4
resolution: "mkdirp@npm:1.0.4"
bin:
@@ -10736,10 +10855,10 @@ __metadata:
languageName: node
linkType: hard
-"ob1@npm:0.76.8":
- version: 0.76.8
- resolution: "ob1@npm:0.76.8"
- checksum: 3feb035a0d33bd2c2d982bdd4877a10375bb71b0415cd960649f6e1faf570ac93aeb0246b1559588e722af866d02274d5abd4b601b31088feb66bbe5d9ecde25
+"ob1@npm:0.80.6":
+ version: 0.80.6
+ resolution: "ob1@npm:0.80.6"
+ checksum: 5208529dbb68038f051d1e6fc74446be0196890da439ea21f31b4c5f73ff0b92879fbc115e7624a2ca176777360e662bc7ce965076dd9705536ed61d6d532a85
languageName: node
linkType: hard
@@ -10904,6 +11023,16 @@ __metadata:
languageName: node
linkType: hard
+"open@npm:^7.0.3":
+ version: 7.4.2
+ resolution: "open@npm:7.4.2"
+ dependencies:
+ is-docker: ^2.0.0
+ is-wsl: ^2.1.1
+ checksum: 3333900ec0e420d64c23b831bc3467e57031461d843c801f569b2204a1acc3cd7b3ec3c7897afc9dde86491dfa289708eb92bba164093d8bd88fb2c231843c91
+ languageName: node
+ linkType: hard
+
"optionator@npm:^0.8.1, optionator@npm:^0.8.3":
version: 0.8.3
resolution: "optionator@npm:0.8.3"
@@ -11371,7 +11500,7 @@ __metadata:
languageName: node
linkType: hard
-"prettier@npm:^2.0.5":
+"prettier@npm:2.8.8":
version: 2.8.8
resolution: "prettier@npm:2.8.8"
bin:
@@ -11478,7 +11607,7 @@ __metadata:
languageName: node
linkType: hard
-"prompts@npm:^2.0.1, prompts@npm:^2.4.0, prompts@npm:^2.4.2":
+"prompts@npm:^2.0.1, prompts@npm:^2.4.2":
version: 2.4.2
resolution: "prompts@npm:2.4.2"
dependencies:
@@ -11569,6 +11698,13 @@ __metadata:
languageName: node
linkType: hard
+"pure-rand@npm:^6.0.0":
+ version: 6.0.4
+ resolution: "pure-rand@npm:6.0.4"
+ checksum: e1c4e69f8bf7303e5252756d67c3c7551385cd34d94a1f511fe099727ccbab74c898c03a06d4c4a24a89b51858781057b83ebbfe740d984240cdc04fead36068
+ languageName: node
+ linkType: hard
+
"q@npm:^1.5.1":
version: 1.5.1
resolution: "q@npm:1.5.1"
@@ -11634,7 +11770,7 @@ __metadata:
languageName: node
linkType: hard
-"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:
@@ -11717,44 +11853,45 @@ __metadata:
languageName: node
linkType: hard
-"react-native@npm:0.72.9":
- version: 0.72.9
- resolution: "react-native@npm:0.72.9"
+"react-native@npm:0.73.4":
+ version: 0.73.4
+ resolution: "react-native@npm:0.73.4"
dependencies:
- "@jest/create-cache-key-function": ^29.2.1
- "@react-native-community/cli": 11.3.10
- "@react-native-community/cli-platform-android": 11.3.10
- "@react-native-community/cli-platform-ios": 11.3.10
- "@react-native/assets-registry": ^0.72.0
- "@react-native/codegen": ^0.72.8
- "@react-native/gradle-plugin": ^0.72.11
- "@react-native/js-polyfills": ^0.72.1
- "@react-native/normalize-colors": ^0.72.0
- "@react-native/virtualized-lists": ^0.72.8
+ "@jest/create-cache-key-function": ^29.6.3
+ "@react-native-community/cli": 12.3.2
+ "@react-native-community/cli-platform-android": 12.3.2
+ "@react-native-community/cli-platform-ios": 12.3.2
+ "@react-native/assets-registry": 0.73.1
+ "@react-native/codegen": 0.73.3
+ "@react-native/community-cli-plugin": 0.73.16
+ "@react-native/gradle-plugin": 0.73.4
+ "@react-native/js-polyfills": 0.73.1
+ "@react-native/normalize-colors": 0.73.2
+ "@react-native/virtualized-lists": 0.73.4
abort-controller: ^3.0.0
anser: ^1.4.9
ansi-regex: ^5.0.0
- base64-js: ^1.1.2
- deprecated-react-native-prop-types: ^4.2.3
+ base64-js: ^1.5.1
+ chalk: ^4.0.0
+ deprecated-react-native-prop-types: ^5.0.0
event-target-shim: ^5.0.1
- flow-enums-runtime: ^0.0.5
+ flow-enums-runtime: ^0.0.6
invariant: ^2.2.4
- jest-environment-node: ^29.2.1
+ jest-environment-node: ^29.6.3
jsc-android: ^250231.0.0
memoize-one: ^5.0.0
- metro-runtime: 0.76.8
- metro-source-map: 0.76.8
+ metro-runtime: ^0.80.3
+ metro-source-map: ^0.80.3
mkdirp: ^0.5.1
nullthrows: ^1.1.1
pretty-format: ^26.5.2
promise: ^8.3.0
- react-devtools-core: ^4.27.2
- react-refresh: ^0.4.0
+ react-devtools-core: ^4.27.7
+ react-refresh: ^0.14.0
react-shallow-renderer: ^16.15.0
regenerator-runtime: ^0.13.2
scheduler: 0.24.0-canary-efb381bbf-20230505
stacktrace-parser: ^0.1.10
- use-sync-external-store: ^1.0.0
whatwg-fetch: ^3.0.0
ws: ^6.2.2
yargs: ^17.6.2
@@ -11762,7 +11899,14 @@ __metadata:
react: 18.2.0
bin:
react-native: cli.js
- checksum: 4f2d2f28708150a86736daca3de66334ab42d5775029324e0acd3d5a26543a1efb93c203945cae857815f4717d6f1c19c582590c642aed26ef14cbf66000eb8b
+ checksum: 651e6ba615d64a4a4063bcab018794aad3b6e41e485718c10a1c628197ed1a7024f866b04458fa4535477c03d9f2e512cfaefae36dfae1e11f6cc3a37b8df6fa
+ languageName: node
+ linkType: hard
+
+"react-refresh@npm:^0.14.0":
+ version: 0.14.0
+ resolution: "react-refresh@npm:0.14.0"
+ checksum: dc69fa8c993df512f42dd0f1b604978ae89bd747c0ed5ec595c0cc50d535fb2696619ccd98ae28775cc01d0a7c146a532f0f7fb81dc22e1977c242a4912312f4
languageName: node
linkType: hard
@@ -12158,10 +12302,10 @@ __metadata:
languageName: node
linkType: hard
-"resolve.exports@npm:^1.1.0":
- version: 1.1.1
- resolution: "resolve.exports@npm:1.1.1"
- checksum: 485aa10082eb388a569d696e17ad7b16f4186efc97dd34eadd029d95b811f21ffee13b1b733198bb4584dbb3cb296aa6f141835221fb7613b9606b84f1386655
+"resolve.exports@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "resolve.exports@npm:2.0.2"
+ checksum: 1c7778ca1b86a94f8ab4055d196c7d87d1874b96df4d7c3e67bbf793140f0717fd506dcafd62785b079cd6086b9264424ad634fb904409764c3509c3df1653f2
languageName: node
linkType: hard
@@ -12298,7 +12442,7 @@ __metadata:
languageName: node
linkType: hard
-"rimraf@npm:^3.0.0, rimraf@npm:^3.0.2":
+"rimraf@npm:^3.0.2":
version: 3.0.2
resolution: "rimraf@npm:3.0.2"
dependencies:
@@ -13113,7 +13257,7 @@ __metadata:
languageName: node
linkType: hard
-"supports-color@npm:^7.0.0, supports-color@npm:^7.1.0":
+"supports-color@npm:^7.1.0":
version: 7.2.0
resolution: "supports-color@npm:7.2.0"
dependencies:
@@ -13131,16 +13275,6 @@ __metadata:
languageName: node
linkType: hard
-"supports-hyperlinks@npm:^2.0.0":
- version: 2.3.0
- resolution: "supports-hyperlinks@npm:2.3.0"
- dependencies:
- has-flag: ^4.0.0
- supports-color: ^7.0.0
- checksum: 9ee0de3c8ce919d453511b2b1588a8205bd429d98af94a01df87411391010fe22ca463f268c84b2ce2abad019dfff8452aa02806eeb5c905a8d7ad5c4f4c52b8
- languageName: node
- linkType: hard
-
"supports-preserve-symlinks-flag@npm:^1.0.0":
version: 1.0.0
resolution: "supports-preserve-symlinks-flag@npm:1.0.0"
@@ -13181,6 +13315,13 @@ __metadata:
languageName: node
linkType: hard
+"temp-dir@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "temp-dir@npm:2.0.0"
+ checksum: cc4f0404bf8d6ae1a166e0e64f3f409b423f4d1274d8c02814a59a5529f07db6cd070a749664141b992b2c1af337fa9bb451a460a43bb9bcddc49f235d3115aa
+ languageName: node
+ linkType: hard
+
"temp@npm:^0.8.4":
version: 0.8.4
resolution: "temp@npm:0.8.4"
@@ -13190,16 +13331,6 @@ __metadata:
languageName: node
linkType: hard
-"terminal-link@npm:^2.0.0":
- version: 2.1.1
- resolution: "terminal-link@npm:2.1.1"
- dependencies:
- ansi-escapes: ^4.2.1
- supports-hyperlinks: ^2.0.0
- checksum: ce3d2cd3a438c4a9453947aa664581519173ea40e77e2534d08c088ee6dda449eabdbe0a76d2a516b8b73c33262fedd10d5270ccf7576ae316e3db170ce6562f
- languageName: node
- linkType: hard
-
"terser@npm:^5.15.0":
version: 5.26.0
resolution: "terser@npm:5.26.0"
@@ -13648,18 +13779,6 @@ __metadata:
languageName: node
linkType: hard
-"uglify-es@npm:^3.1.9":
- version: 3.3.10
- resolution: "uglify-es@npm:3.3.10"
- dependencies:
- commander: ~2.14.1
- source-map: ~0.6.1
- bin:
- uglifyjs: bin/uglifyjs
- checksum: 22b028b6454c4d684c76617e9ac5b8da0e56611b32cd5d89e797225d6f1022f697a5642d9084319436df3aed462225749f8287d37bf67dccda1ac9d0365dd950
- languageName: node
- linkType: hard
-
"uglify-js@npm:^3.1.4":
version: 3.17.4
resolution: "uglify-js@npm:3.17.4"
@@ -13864,15 +13983,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: 5c639e0f8da3521d605f59ce5be9e094ca772bd44a4ce7322b055a6f58eeed8dda3c94cabd90c7a41fb6fa852210092008afe48f7038792fd47501f33299116a
- languageName: node
- linkType: hard
-
"util-deprecate@npm:^1.0.1, util-deprecate@npm:~1.0.1":
version: 1.0.2
resolution: "util-deprecate@npm:1.0.2"
@@ -14232,7 +14342,7 @@ __metadata:
languageName: node
linkType: hard
-"write-file-atomic@npm:^4.0.1":
+"write-file-atomic@npm:^4.0.2":
version: 4.0.2
resolution: "write-file-atomic@npm:4.0.2"
dependencies: