diff --git a/.buckconfig b/.buckconfig
deleted file mode 100644
index 934256cb2..000000000
--- a/.buckconfig
+++ /dev/null
@@ -1,6 +0,0 @@
-
-[android]
- target = Google Inc.:Google APIs:23
-
-[maven_repositories]
- central = https://repo1.maven.org/maven2
diff --git a/.eslintrc.js b/.eslintrc.js
index 4bec9dd85..e88ab1133 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -112,6 +112,7 @@ module.exports = {
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-floating-promises': 'off',
+ '@typescript-eslint/no-require-imports': 'off',
'import/no-extraneous-dependencies': 'off',
'jsx-a11y/click-events-have-key-events': 'off',
'jsx-a11y/no-static-element-interactions': 'off',
diff --git a/.gitignore b/.gitignore
index 137d69688..890521416 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,11 +25,14 @@ ios/.xcode.env.local
# Android/IntelliJ
#
build/
+.cxx/
.idea
.gradle
local.properties
*.iml
*.hprof
+*.keystore
+!debug.keystore
# Visual Studio Code
#
@@ -41,12 +44,6 @@ node_modules/
npm-debug.log
yarn-error.log
-# BUCK
-buck-out/
-\.buckd/
-*.keystore
-!debug.keystore
-
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
@@ -81,5 +78,8 @@ tools/.yarn/*
!.yarn/sdks
!.yarn/versions
+# Temporary files created by Metro to check the health of the file watcher
+.metro-health-check*
+
# Coverage
src/coverage/
\ No newline at end of file
diff --git a/Gemfile.lock b/Gemfile.lock
index 3129b61e8..c4c6bf6ec 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -209,10 +209,11 @@ GEM
xcpretty (~> 0.2, >= 0.0.7)
PLATFORMS
+ arm64-darwin-24
x86_64-linux
DEPENDENCIES
fastlane
BUNDLED WITH
- 2.2.21
+ 2.5.23
diff --git a/android/app/_BUCK b/android/app/_BUCK
deleted file mode 100644
index 95e1e64b5..000000000
--- a/android/app/_BUCK
+++ /dev/null
@@ -1,55 +0,0 @@
-# To learn about Buck see [Docs](https://buckbuild.com/).
-# To run your application with Buck:
-# - install Buck
-# - `npm start` - to start the packager
-# - `cd android`
-# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
-# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
-# - `buck install -r android/app` - compile, install and run application
-#
-
-load(":build_defs.bzl", "create_aar_targets", "create_jar_targets")
-
-lib_deps = []
-
-create_aar_targets(glob(["libs/*.aar"]))
-
-create_jar_targets(glob(["libs/*.jar"]))
-
-android_library(
- name = "all-libs",
- exported_deps = lib_deps,
-)
-
-android_library(
- name = "app-code",
- srcs = glob([
- "src/main/java/**/*.java",
- ]),
- deps = [
- ":all-libs",
- ":build_config",
- ":res",
- ],
-)
-
-android_build_config(
- name = "build_config",
- package = "app.lunes",
-)
-
-android_resource(
- name = "res",
- package = "app.lunes",
- res = "src/main/res",
-)
-
-android_binary(
- name = "app",
- keystore = "//android/keystores:debug",
- manifest = "src/main/AndroidManifest.xml",
- package_type = "debug",
- deps = [
- ":app-code",
- ],
-)
diff --git a/android/app/build.gradle b/android/app/build.gradle
index dae841726..e1e7532be 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -1,107 +1,67 @@
apply plugin: "com.android.application"
-
-import com.android.build.OutputFile
-import org.apache.tools.ant.taskdefs.condition.Os
+apply plugin: "org.jetbrains.kotlin.android"
+apply plugin: "com.facebook.react"
/**
- * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
- * and bundleReleaseJsAndAssets).
- * These basically call `react-native bundle` with the correct arguments during the Android build
- * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
- * bundle directly from the development server. Below you can see all the possible configurations
- * and their defaults. If you decide to add a configuration block, make sure to add it before the
- * `apply from: "../../node_modules/react-native/react.gradle"` line.
- *
- * project.ext.react = [
- * // the name of the generated asset file containing your JS bundle
- * bundleAssetName: "index.android.bundle",
- *
- * // the entry file for bundle generation. If none specified and
- * // "index.android.js" exists, it will be used. Otherwise "index.js" is
- * // default. Can be overridden with ENTRY_FILE environment variable.
- * entryFile: "index.android.js",
- *
- * // https://reactnative.dev/docs/performance#enable-the-ram-format
- * bundleCommand: "ram-bundle",
- *
- * // whether to bundle JS and assets in debug mode
- * bundleInDebug: false,
- *
- * // whether to bundle JS and assets in release mode
- * bundleInRelease: true,
- *
- * // whether to bundle JS and assets in another build variant (if configured).
- * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
- * // The configuration property can be in the following formats
- * // 'bundleIn${productFlavor}${buildType}'
- * // 'bundleIn${buildType}'
- * // bundleInFreeDebug: true,
- * // bundleInPaidRelease: true,
- * // bundleInBeta: true,
- *
- * // whether to disable dev mode in custom build variants (by default only disabled in release)
- * // for example: to disable dev mode in the staging build type (if configured)
- * devDisabledInStaging: true,
- * // The configuration property can be in the following formats
- * // 'devDisabledIn${productFlavor}${buildType}'
- * // 'devDisabledIn${buildType}'
- *
- * // the root of your project, i.e. where "package.json" lives
- * root: "../../",
- *
- * // where to put the JS bundle asset in debug mode
- * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
- *
- * // where to put the JS bundle asset in release mode
- * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
- *
- * // where to put drawable resources / React Native assets, e.g. the ones you use via
- * // require('./image.png')), in debug mode
- * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
- *
- * // where to put drawable resources / React Native assets, e.g. the ones you use via
- * // require('./image.png')), in release mode
- * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
- *
- * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
- * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
- * // date; if you have any other folders that you want to ignore for performance reasons (gradle
- * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
- * // for example, you might want to remove it from here.
- * inputExcludes: ["android/**", "ios/**"],
- *
- * // override which node gets called and with what additional arguments
- * nodeExecutableAndArgs: ["node"],
- *
- * // supply additional arguments to the packager
- * extraPackagerArgs: []
- * ]
+ * This is the configuration block to customize your React Native Android app.
+ * By default you don't need to apply any configuration, just uncomment the lines you need.
*/
-project.ext.react = [
- extraPackagerArgs: (System.getenv('EXTRA_PACKAGER_ARGS') ?: "").split("\\s+"),
- enableHermes: false // clean and rebuild if changing
-]
-
-apply from: "../../node_modules/react-native/react.gradle"
-
-/**
- * Set this to true to create two separate APKs instead of one:
- * - An APK that only works on ARM devices
- * - An APK that only works on x86 devices
- * The advantage is the size of the APK is reduced by about 4MB.
- * Upload all the APKs to the Play Store and people will download
- * the correct one based on the CPU architecture of their device.
- */
-def enableSeparateBuildPerCPUArchitecture = false
+react {
+ /* Folders */
+ // The root of your project, i.e. where "package.json" lives. Default is '../..'
+ // root = file("../../")
+ // The folder where the react-native NPM package is. Default is ../../node_modules/react-native
+ // reactNativeDir = file("../../node_modules/react-native")
+ // The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen
+ // codegenDir = file("../../node_modules/@react-native/codegen")
+ // The cli.js file which is the React Native CLI entrypoint. Default is ../../node_modules/react-native/cli.js
+ // cliFile = file("../../node_modules/react-native/cli.js")
+
+ /* Variants */
+ // The list of variants to that are debuggable. For those we're going to
+ // skip the bundling of the JS bundle and the assets. By default is just 'debug'.
+ // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
+ // debuggableVariants = ["liteDebug", "prodDebug"]
+
+ /* Bundling */
+ // A list containing the node command and its flags. Default is just 'node'.
+ // nodeExecutableAndArgs = ["node"]
+ //
+ // The command to run when bundling. By default is 'bundle'
+ // bundleCommand = "ram-bundle"
+ //
+ // The path to the CLI configuration file. Default is empty.
+ // bundleConfig = file(../rn-cli.config.js)
+ //
+ // The name of the generated asset file containing your JS bundle
+ // bundleAssetName = "MyApplication.android.bundle"
+ //
+ // The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
+ // entryFile = file("../js/MyApplication.android.js")
+ //
+ // A list of extra flags to pass to the 'bundle' commands.
+ // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
+ // extraPackagerArgs = []
+
+ /* Hermes Commands */
+ // The hermes compiler command to run. By default it is 'hermesc'
+ // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
+ //
+ // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
+ // hermesFlags = ["-O", "-output-source-map"]
+
+ /* Autolinking */
+ autolinkLibrariesWithApp()
+}
/**
- * Run Proguard to shrink the Java bytecode in release builds.
+ * Set this to true to Run Proguard on Release builds to minify the Java bytecode.
*/
def enableProguardInReleaseBuilds = false
/**
- * The preferred build flavor of JavaScriptCore.
+ * The preferred build flavor of JavaScriptCore (JSC)
*
* For example, to use the international variant, you can use:
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
@@ -113,28 +73,12 @@ def enableProguardInReleaseBuilds = false
*/
def jscFlavor = 'org.webkit:android-jsc-intl:+'
-/**
- * Whether to enable the Hermes VM.
- *
- * This should be set on project.ext.react and that value will be read here. If it is not set
- * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
- * and the benefits of using Hermes will therefore be sharply reduced.
- */
-def enableHermes = project.ext.react.get("enableHermes", false);
-
-/**
- * Architectures to build native code for.
- */
-def reactNativeArchitectures() {
- def value = project.getProperties().get("reactNativeArchitectures")
- return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
-}
-
android {
ndkVersion rootProject.ext.ndkVersion
+ buildToolsVersion rootProject.ext.buildToolsVersion
+ compileSdk rootProject.ext.compileSdkVersion
- compileSdkVersion rootProject.ext.compileSdkVersion
-
+ namespace 'app.lunes'
defaultConfig {
applicationId "app.lunes"
minSdkVersion rootProject.ext.minSdkVersion
@@ -143,74 +87,6 @@ android {
versionCode project.VERSION_CODE.toInteger()
versionName project.VERSION_NAME
}
- buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
- vectorDrawables.useSupportLibrary = true
- if (isNewArchitectureEnabled()) {
- // We configure the NDK build only if you decide to opt-in for the New Architecture.
- externalNativeBuild {
- cmake {
- arguments "-DPROJECT_BUILD_DIR=$buildDir",
- "-DREACT_ANDROID_DIR=$rootDir/../node_modules/react-native/ReactAndroid",
- "-DREACT_ANDROID_BUILD_DIR=$rootDir/../node_modules/react-native/ReactAndroid/build",
- "-DNODE_MODULES_DIR=$rootDir/../node_modules",
- "-DANDROID_STL=c++_shared"
- }
- }
- if (!enableSeparateBuildPerCPUArchitecture) {
- ndk {
- abiFilters (*reactNativeArchitectures())
- }
- }
- }
- }
-
- if (isNewArchitectureEnabled()) {
- // We configure the CMake build only if you decide to opt-in for the New Architecture.
- externalNativeBuild {
- cmake {
- path "$projectDir/src/main/jni/CMakeLists.txt"
- }
- }
- def reactAndroidProjectDir = project(':ReactAndroid').projectDir
- def packageReactNdkDebugLibs = tasks.register("packageReactNdkDebugLibs", Copy) {
- dependsOn(":ReactAndroid:packageReactNdkDebugLibsForBuck")
- from("$reactAndroidProjectDir/src/main/jni/prebuilt/lib")
- into("$buildDir/react-ndk/exported")
- }
- def packageReactNdkReleaseLibs = tasks.register("packageReactNdkReleaseLibs", Copy) {
- dependsOn(":ReactAndroid:packageReactNdkReleaseLibsForBuck")
- from("$reactAndroidProjectDir/src/main/jni/prebuilt/lib")
- into("$buildDir/react-ndk/exported")
- }
- afterEvaluate {
- // If you wish to add a custom TurboModule or component locally,
- // you should uncomment this line.
- // preBuild.dependsOn("generateCodegenArtifactsFromSchema")
- preDebugBuild.dependsOn(packageReactNdkDebugLibs)
- preReleaseBuild.dependsOn(packageReactNdkReleaseLibs)
- // Due to a bug inside AGP, we have to explicitly set a dependency
- // between configureCMakeDebug* tasks and the preBuild tasks.
- // This can be removed once this is solved: https://issuetracker.google.com/issues/207403732
- configureCMakeRelWithDebInfo.dependsOn(preReleaseBuild)
- configureCMakeDebug.dependsOn(preDebugBuild)
- reactNativeArchitectures().each { architecture ->
- tasks.findByName("configureCMakeDebug[${architecture}]")?.configure {
- dependsOn("preDebugBuild")
- }
- tasks.findByName("configureCMakeRelWithDebInfo[${architecture}]")?.configure {
- dependsOn("preReleaseBuild")
- }
- }
- }
- }
-
- splits {
- abi {
- reset()
- enable enableSeparateBuildPerCPUArchitecture
- universalApk false // If true, also generate a universal APK
- include (*reactNativeArchitectures())
- }
}
signingConfigs {
release {
@@ -231,7 +107,6 @@ android {
}
}
}
- namespace 'app.lunes'
buildTypes {
debug {
@@ -245,79 +120,15 @@ android {
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
-
- // applicationVariants are e.g. debug, release
- applicationVariants.all { variant ->
- variant.outputs.each { output ->
- // For each separate APK per architecture, set a unique version code as described here:
- // https://developer.android.com/studio/build/configure-apk-splits.html
- // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc.
- def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
- def abi = output.getFilter(OutputFile.ABI)
- if (abi != null) { // null for the universal-debug, universal-release variants
- output.versionCodeOverride =
- defaultConfig.versionCode * 1000 + versionCodes.get(abi)
- }
-
- }
- }
}
dependencies {
- implementation fileTree(dir: "libs", include: ["*.jar"])
+ // The version of react-native is set by the React Native Gradle Plugin
+ implementation("com.facebook.react:react-android")
- //noinspection GradleDynamicVersion
- implementation "com.facebook.react:react-native:+" // From node_modules
-
- implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
-
- debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
- exclude group:'com.facebook.fbjni'
- }
-
- debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
- exclude group:'com.facebook.flipper'
- exclude group:'com.squareup.okhttp3', module:'okhttp'
- }
-
- debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
- exclude group:'com.facebook.flipper'
- }
-
- if (enableHermes) {
- def hermesPath = "../../node_modules/hermes-engine/android/";
- debugImplementation files(hermesPath + "hermes-debug.aar")
- releaseImplementation files(hermesPath + "hermes-release.aar")
+ if (hermesEnabled.toBoolean()) {
+ implementation("com.facebook.react:hermes-android")
} else {
implementation jscFlavor
}
}
-
-if (isNewArchitectureEnabled()) {
- // If new architecture is enabled, we let you build RN from source
- // Otherwise we fallback to a prebuilt .aar bundled in the NPM package.
- // This will be applied to all the imported transtitive dependency.
- configurations.all {
- resolutionStrategy.dependencySubstitution {
- substitute(module("com.facebook.react:react-native"))
- .using(project(":ReactAndroid")).because("On New Architecture we're building React Native from source")
- }
- }
-}
-
-// Run this once to be able to run the application with BUCK
-// puts all compile dependencies into folder libs for BUCK to use
-task copyDownloadableDepsToLibs(type: Copy) {
- from configurations.implementation
- into 'libs'
-}
-
-apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
-
-def isNewArchitectureEnabled() {
- // To opt-in for the New Architecture, you can either:
- // - Set `newArchEnabled` to true inside the `gradle.properties` file
- // - Invoke gradle with `-newArchEnabled=true`
- // - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true`
- return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true"
-}
diff --git a/android/app/build_defs.bzl b/android/app/build_defs.bzl
deleted file mode 100644
index fff270f8d..000000000
--- a/android/app/build_defs.bzl
+++ /dev/null
@@ -1,19 +0,0 @@
-"""Helper definitions to glob .aar and .jar targets"""
-
-def create_aar_targets(aarfiles):
- for aarfile in aarfiles:
- name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")]
- lib_deps.append(":" + name)
- android_prebuilt_aar(
- name = name,
- aar = aarfile,
- )
-
-def create_jar_targets(jarfiles):
- for jarfile in jarfiles:
- name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")]
- lib_deps.append(":" + name)
- prebuilt_jar(
- name = name,
- binary_jar = jarfile,
- )
diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml
index 4b185bc15..eb98c01af 100644
--- a/android/app/src/debug/AndroidManifest.xml
+++ b/android/app/src/debug/AndroidManifest.xml
@@ -2,12 +2,8 @@
-
-
-
-
+ tools:ignore="GoogleAppIndexingWarning"/>
diff --git a/android/app/src/debug/java/com/lunesappui/ReactNativeFlipper.java b/android/app/src/debug/java/com/lunesappui/ReactNativeFlipper.java
deleted file mode 100644
index 567d57f5b..000000000
--- a/android/app/src/debug/java/com/lunesappui/ReactNativeFlipper.java
+++ /dev/null
@@ -1,73 +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 app.lunes;
-
-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.react.ReactFlipperPlugin;
-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;
-
-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 ReactFlipperPlugin());
- 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/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 9ae33de54..6e49b5163 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -1,4 +1,4 @@
-
+
diff --git a/android/app/src/main/java/app/lunes/MainActivity.java b/android/app/src/main/java/app/lunes/MainActivity.java
deleted file mode 100644
index 50bd44622..000000000
--- a/android/app/src/main/java/app/lunes/MainActivity.java
+++ /dev/null
@@ -1,48 +0,0 @@
-package app.lunes;
-
-import com.facebook.react.ReactActivity;
-import com.facebook.react.ReactActivityDelegate;
-import com.facebook.react.ReactRootView;
-import android.os.Bundle;
-import org.devio.rn.splashscreen.SplashScreen;
-
-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 "Lunes";
- }
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- SplashScreen.show(this);
- // https://github.com/software-mansion/react-native-screens/issues/17#issuecomment-424704067
- super.onCreate(null);
- }
-
- /**
- * Returns the instance of the {@link ReactActivityDelegate}. There the RootView is created and
- * you can specify the rendered you wish to use (Fabric or the older renderer).
- */
- @Override
- protected ReactActivityDelegate createReactActivityDelegate() {
- return new MainActivityDelegate(this, getMainComponentName());
- }
- public static class MainActivityDelegate extends ReactActivityDelegate {
- public MainActivityDelegate(ReactActivity activity, String mainComponentName) {
- super(activity, mainComponentName);
- }
- @Override
- protected ReactRootView createRootView() {
- ReactRootView reactRootView = new ReactRootView(getContext());
- // If you opted-in for the New Architecture, we enable the Fabric Renderer.
- reactRootView.setIsFabric(BuildConfig.IS_NEW_ARCHITECTURE_ENABLED);
-
- return reactRootView;
- }
- }
-}
diff --git a/android/app/src/main/java/app/lunes/MainActivity.kt b/android/app/src/main/java/app/lunes/MainActivity.kt
new file mode 100644
index 000000000..a126b2ffc
--- /dev/null
+++ b/android/app/src/main/java/app/lunes/MainActivity.kt
@@ -0,0 +1,29 @@
+package app.lunes
+
+import com.facebook.react.ReactActivity
+import com.facebook.react.ReactActivityDelegate
+import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled
+import com.facebook.react.defaults.DefaultReactActivityDelegate
+import android.os.Bundle
+
+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 = "Lunes"
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ // https://github.com/software-mansion/react-native-screens#android
+ // https://reactnavigation.org/docs/getting-started/#installing-dependencies-into-a-bare-react-native-project
+ super.onCreate(null)
+ }
+
+ /**
+ * 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)
+}
diff --git a/android/app/src/main/java/app/lunes/MainApplication.java b/android/app/src/main/java/app/lunes/MainApplication.java
deleted file mode 100644
index a7aae687d..000000000
--- a/android/app/src/main/java/app/lunes/MainApplication.java
+++ /dev/null
@@ -1,110 +0,0 @@
-package app.lunes;
-
-import android.app.Application;
-import android.content.Context;
-import com.facebook.react.PackageList;
-import com.facebook.react.ReactApplication;
-import com.rnfs.RNFSPackage;
-import com.facebook.react.modules.i18nmanager.I18nUtil;
-import com.reactnativecommunity.asyncstorage.AsyncStoragePackage;
-import com.johnsonsu.rnsoundplayer.RNSoundPlayerPackage;
-import com.johnsonsu.rnsoundplayer.RNSoundPlayerPackage;
-import net.no_mad.tts.TextToSpeechPackage;
-import net.no_mad.tts.TextToSpeechPackage;
-import com.horcrux.svg.SvgPackage;
-import com.facebook.react.ReactInstanceManager;
-import com.facebook.react.ReactNativeHost;
-import com.facebook.react.ReactPackage;
-import com.facebook.react.config.ReactFeatureFlags;
-import com.facebook.soloader.SoLoader;
-import app.lunes.newarchitecture.MainApplicationReactNativeHost;
-import com.facebook.react.bridge.JSIModulePackage;
-import com.swmansion.reanimated.ReanimatedJSIModulePackage;
-import java.lang.reflect.InvocationTargetException;
-import java.util.List;
-
-public class MainApplication extends Application implements ReactApplication {
-
- private final ReactNativeHost mReactNativeHost =
- new ReactNativeHost(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 JSIModulePackage getJSIModulePackage() {
- return new ReanimatedJSIModulePackage();
- }
- };
-
- private final ReactNativeHost mNewArchitectureNativeHost =
- new MainApplicationReactNativeHost(this);
-
- @Override
- public ReactNativeHost getReactNativeHost() {
- if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
- return mNewArchitectureNativeHost;
- } else {
- return mReactNativeHost;
- }
- }
-
- @Override
- public void onCreate() {
- super.onCreate();
- // If you opted-in for the New Architecture, we enable the TurboModule system
- ReactFeatureFlags.useTurboModules = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED;
- SoLoader.init(this, /* native exopackage */ false);
- initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
-
- // FORCE LTR
- I18nUtil sharedI18nUtilInstance = I18nUtil.getInstance();
- sharedI18nUtilInstance.allowRTL(getApplicationContext(), false);
- }
-
- /**
- * Loads Flipper in React Native templates. Call this in the onCreate method with something like
- * initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
- *
- * @param context
- * @param reactInstanceManager
- */
- private static void initializeFlipper(
- Context context, ReactInstanceManager reactInstanceManager) {
- if (BuildConfig.DEBUG) {
- try {
- /*
- We use reflection here to pick up the class that initializes Flipper,
- since Flipper library is not available in release mode
- */
- Class> aClass = Class.forName("app.lunes.ReactNativeFlipper");
- aClass
- .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
- .invoke(null, context, reactInstanceManager);
- } catch (ClassNotFoundException e) {
- e.printStackTrace();
- } catch (NoSuchMethodException e) {
- e.printStackTrace();
- } catch (IllegalAccessException e) {
- e.printStackTrace();
- } catch (InvocationTargetException e) {
- e.printStackTrace();
- }
- }
- }
-}
diff --git a/android/app/src/main/java/app/lunes/MainApplication.kt b/android/app/src/main/java/app/lunes/MainApplication.kt
new file mode 100644
index 000000000..eae538c18
--- /dev/null
+++ b/android/app/src/main/java/app/lunes/MainApplication.kt
@@ -0,0 +1,51 @@
+package app.lunes
+
+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.soloader.OpenSourceMergedSoMapping
+import com.facebook.soloader.SoLoader
+
+import com.facebook.react.modules.i18nmanager.I18nUtil
+
+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, OpenSourceMergedSoMapping)
+
+ // FORCE LTR
+ val sharedI18nUtilInstance = I18nUtil.getInstance()
+ sharedI18nUtilInstance.allowRTL(getApplicationContext(), 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()
+ }
+ }
+}
diff --git a/android/app/src/main/java/app/lunes/newarchitecture/MainApplicationReactNativeHost.java b/android/app/src/main/java/app/lunes/newarchitecture/MainApplicationReactNativeHost.java
deleted file mode 100644
index c4c0f944d..000000000
--- a/android/app/src/main/java/app/lunes/newarchitecture/MainApplicationReactNativeHost.java
+++ /dev/null
@@ -1,104 +0,0 @@
-package app.lunes.newarchitecture;
-
-import android.app.Application;
-import androidx.annotation.NonNull;
-import com.facebook.react.PackageList;
-import com.facebook.react.ReactInstanceManager;
-import com.facebook.react.ReactNativeHost;
-import com.facebook.react.ReactPackage;
-import com.facebook.react.ReactPackageTurboModuleManagerDelegate;
-import com.facebook.react.bridge.JSIModulePackage;
-import com.facebook.react.bridge.JSIModuleProvider;
-import com.facebook.react.bridge.JSIModuleSpec;
-import com.facebook.react.bridge.JSIModuleType;
-import com.facebook.react.bridge.JavaScriptContextHolder;
-import com.facebook.react.bridge.ReactApplicationContext;
-import com.facebook.react.bridge.UIManager;
-import com.facebook.react.fabric.ComponentFactory;
-import com.facebook.react.fabric.CoreComponentsRegistry;
-import com.facebook.react.fabric.EmptyReactNativeConfig;
-import com.facebook.react.fabric.FabricJSIModuleProvider;
-import com.facebook.react.uimanager.ViewManagerRegistry;
-import com.facebook.react.BuildConfig;
-import app.lunes.newarchitecture.components.MainComponentsRegistry;
-import app.lunes.newarchitecture.modules.MainApplicationTurboModuleManagerDelegate;
-import java.util.ArrayList;
-import java.util.List;
-/**
- * A {@link ReactNativeHost} that helps you load everything needed for the New Architecture, both
- * TurboModule delegates and the Fabric Renderer.
- *
- * Please note that this class is used ONLY if you opt-in for the New Architecture (see the
- * `newArchEnabled` property). Is ignored otherwise.
- */
-public class MainApplicationReactNativeHost extends ReactNativeHost {
- public MainApplicationReactNativeHost(Application application) {
- super(application);
- }
- @Override
- public boolean getUseDeveloperSupport() {
- return BuildConfig.DEBUG;
- }
- @Override
- protected List getPackages() {
- List packages = new PackageList(this).getPackages();
- // Packages that cannot be autolinked yet can be added manually here, for example:
- // packages.add(new MyReactNativePackage());
- // TurboModules must also be loaded here providing a valid TurboReactPackage implementation:
- // packages.add(new TurboReactPackage() { ... });
- // If you have custom Fabric Components, their ViewManagers should also be loaded here
- // inside a ReactPackage.
- return packages;
- }
- @Override
- protected String getJSMainModuleName() {
- return "index";
- }
- @NonNull
- @Override
- protected ReactPackageTurboModuleManagerDelegate.Builder
- getReactPackageTurboModuleManagerDelegateBuilder() {
- // Here we provide the ReactPackageTurboModuleManagerDelegate Builder. This is necessary
- // for the new architecture and to use TurboModules correctly.
- return new MainApplicationTurboModuleManagerDelegate.Builder();
- }
- @Override
- protected JSIModulePackage getJSIModulePackage() {
- return new JSIModulePackage() {
- @Override
- public List getJSIModules(
- final ReactApplicationContext reactApplicationContext,
- final JavaScriptContextHolder jsContext) {
- final List specs = new ArrayList<>();
- // Here we provide a new JSIModuleSpec that will be responsible of providing the
- // custom Fabric Components.
- specs.add(
- new JSIModuleSpec() {
- @Override
- public JSIModuleType getJSIModuleType() {
- return JSIModuleType.UIManager;
- }
- @Override
- public JSIModuleProvider getJSIModuleProvider() {
- final ComponentFactory componentFactory = new ComponentFactory();
- CoreComponentsRegistry.register(componentFactory);
- // Here we register a Components Registry.
- // The one that is generated with the template contains no components
- // and just provides you the one from React Native core.
- MainComponentsRegistry.register(componentFactory);
- final ReactInstanceManager reactInstanceManager = getReactInstanceManager();
- ViewManagerRegistry viewManagerRegistry =
- new ViewManagerRegistry(
- reactInstanceManager.getOrCreateViewManagers(reactApplicationContext));
- return new FabricJSIModuleProvider(
- reactApplicationContext,
- componentFactory,
- new EmptyReactNativeConfig(),
- viewManagerRegistry);
- }
- });
- return specs;
- }
- };
- }
-}
\ No newline at end of file
diff --git a/android/app/src/main/java/app/lunes/newarchitecture/components/MainComponentsRegistry.java b/android/app/src/main/java/app/lunes/newarchitecture/components/MainComponentsRegistry.java
deleted file mode 100644
index dd0358ad1..000000000
--- a/android/app/src/main/java/app/lunes/newarchitecture/components/MainComponentsRegistry.java
+++ /dev/null
@@ -1,31 +0,0 @@
-package app.lunes.newarchitecture.components;
-
-import com.facebook.jni.HybridData;
-import com.facebook.proguard.annotations.DoNotStrip;
-import com.facebook.react.fabric.ComponentFactory;
-import com.facebook.soloader.SoLoader;
-/**
- * Class responsible to load the custom Fabric Components. This class has native methods and needs a
- * corresponding C++ implementation/header file to work correctly (already placed inside the jni/
- * folder for you).
- *
- * Please note that this class is used ONLY if you opt-in for the New Architecture (see the
- * `newArchEnabled` property). Is ignored otherwise.
- */
-@DoNotStrip
-public class MainComponentsRegistry {
- static {
- SoLoader.loadLibrary("fabricjni");
- }
- @DoNotStrip private final HybridData mHybridData;
- @DoNotStrip
- private native HybridData initHybrid(ComponentFactory componentFactory);
- @DoNotStrip
- private MainComponentsRegistry(ComponentFactory componentFactory) {
- mHybridData = initHybrid(componentFactory);
- }
- @DoNotStrip
- public static MainComponentsRegistry register(ComponentFactory componentFactory) {
- return new MainComponentsRegistry(componentFactory);
- }
-}
\ No newline at end of file
diff --git a/android/app/src/main/java/app/lunes/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java b/android/app/src/main/java/app/lunes/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java
deleted file mode 100644
index 4cc22ec72..000000000
--- a/android/app/src/main/java/app/lunes/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java
+++ /dev/null
@@ -1,41 +0,0 @@
-package app.lunes.newarchitecture.modules;
-
-import com.facebook.jni.HybridData;
-import com.facebook.react.ReactPackage;
-import com.facebook.react.ReactPackageTurboModuleManagerDelegate;
-import com.facebook.react.bridge.ReactApplicationContext;
-import com.facebook.soloader.SoLoader;
-import java.util.List;
-/**
- * Class responsible to load the TurboModules. This class has native methods and needs a
- * corresponding C++ implementation/header file to work correctly (already placed inside the jni/
- * folder for you).
- *
- *
Please note that this class is used ONLY if you opt-in for the New Architecture (see the
- * `newArchEnabled` property). Is ignored otherwise.
- */
-public class MainApplicationTurboModuleManagerDelegate
- extends ReactPackageTurboModuleManagerDelegate {
- private static volatile boolean sIsSoLibraryLoaded;
- protected MainApplicationTurboModuleManagerDelegate(
- ReactApplicationContext reactApplicationContext, List packages) {
- super(reactApplicationContext, packages);
- }
- protected native HybridData initHybrid();
- native boolean canCreateTurboModule(String moduleName);
- public static class Builder extends ReactPackageTurboModuleManagerDelegate.Builder {
- protected MainApplicationTurboModuleManagerDelegate build(
- ReactApplicationContext context, List packages) {
- return new MainApplicationTurboModuleManagerDelegate(context, packages);
- }
- }
- @Override
- protected synchronized void maybeLoadOtherSoLibraries() {
- if (!sIsSoLibraryLoaded) {
- // If you change the name of your application .so file in the Android.mk file,
- // make sure you update the name here as well.
- SoLoader.loadLibrary("lunes_appmodules");
- sIsSoLibraryLoaded = true;
- }
- }
-}
\ No newline at end of file
diff --git a/android/app/src/main/jni/Android.mk b/android/app/src/main/jni/Android.mk
deleted file mode 100644
index 650a08118..000000000
--- a/android/app/src/main/jni/Android.mk
+++ /dev/null
@@ -1,39 +0,0 @@
-THIS_DIR := $(call my-dir)
-include $(REACT_ANDROID_DIR)/Android-prebuilt.mk
-# If you wish to add a custom TurboModule or Fabric component in your app you
-# will have to include the following autogenerated makefile.
-# include $(GENERATED_SRC_DIR)/codegen/jni/Android.mk
-include $(CLEAR_VARS)
-LOCAL_PATH := $(THIS_DIR)
-# You can customize the name of your application .so file here.
-LOCAL_MODULE := lunes_appmodules
-LOCAL_C_INCLUDES := $(LOCAL_PATH)
-LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/*.cpp)
-LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
-# If you wish to add a custom TurboModule or Fabric component in your app you
-# will have to uncomment those lines to include the generated source
-# files from the codegen (placed in $(GENERATED_SRC_DIR)/codegen/jni)
-#
-# LOCAL_C_INCLUDES += $(GENERATED_SRC_DIR)/codegen/jni
-# LOCAL_SRC_FILES += $(wildcard $(GENERATED_SRC_DIR)/codegen/jni/*.cpp)
-# LOCAL_EXPORT_C_INCLUDES += $(GENERATED_SRC_DIR)/codegen/jni
-# Here you should add any native library you wish to depend on.
-LOCAL_SHARED_LIBRARIES := \
- libfabricjni \
- libfbjni \
- libfolly_runtime \
- libglog \
- libjsi \
- libreact_codegen_rncore \
- libreact_debug \
- libreact_nativemodule_core \
- libreact_render_componentregistry \
- libreact_render_core \
- libreact_render_debug \
- libreact_render_graphics \
- librrc_view \
- libruntimeexecutor \
- libturbomodulejsijni \
- libyoga
-LOCAL_CFLAGS := -DLOG_TAG=\"ReactNative\" -fexceptions -frtti -std=c++17 -Wall
-include $(BUILD_SHARED_LIBRARY)
\ No newline at end of file
diff --git a/android/app/src/main/jni/CMakeLists.txt b/android/app/src/main/jni/CMakeLists.txt
deleted file mode 100644
index 854820787..000000000
--- a/android/app/src/main/jni/CMakeLists.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-cmake_minimum_required(VERSION 3.13)
-
-# Define the library name here.
-project(lunes_appmodules)
-
-# This file includes all the necessary to let you build your application with the New Architecture.
-include(${REACT_ANDROID_DIR}/cmake-utils/ReactNative-application.cmake)
diff --git a/android/app/src/main/jni/MainApplicationModuleProvider.cpp b/android/app/src/main/jni/MainApplicationModuleProvider.cpp
deleted file mode 100644
index 860b8dec6..000000000
--- a/android/app/src/main/jni/MainApplicationModuleProvider.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-#include "MainApplicationModuleProvider.h"
-
-#include
-#include
-
-namespace facebook
-{
- namespace react
- {
-
- std::shared_ptr MainApplicationModuleProvider(
- const std::string &moduleName,
- const JavaTurboModule::InitParams ¶ms)
- {
- // Here you can provide your own module provider for TurboModules coming from
- // either your application or from external libraries. The approach to follow
- // is similar to the following (for a library called `samplelibrary`:
- //
- // auto module = samplelibrary_ModuleProvider(moduleName, params);
- // if (module != nullptr) {
- // return module;
- // }
- // return rncore_ModuleProvider(moduleName, params);
-
- // Module providers autolinked by RN CLI
- auto rncli_module = rncli_ModuleProvider(moduleName, params);
- if (rncli_module != nullptr)
- {
- return rncli_module;
- }
-
- return rncore_ModuleProvider(moduleName, params);
- }
-
- } // namespace react
-} // namespace facebook
diff --git a/android/app/src/main/jni/MainApplicationModuleProvider.h b/android/app/src/main/jni/MainApplicationModuleProvider.h
deleted file mode 100644
index 51ae6525b..000000000
--- a/android/app/src/main/jni/MainApplicationModuleProvider.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#pragma once
-#include
-#include
-#include
-
-namespace facebook
-{
- namespace react
- {
-
- std::shared_ptr MainApplicationModuleProvider(
- const std::string &moduleName,
- const JavaTurboModule::InitParams ¶ms);
-
- } // namespace react
-} // namespace facebook
diff --git a/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp b/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp
deleted file mode 100644
index 96222ed17..000000000
--- a/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-#include "MainApplicationTurboModuleManagerDelegate.h"
-#include "MainApplicationModuleProvider.h"
-
-namespace facebook
-{
- namespace react
- {
-
- jni::local_ref
- MainApplicationTurboModuleManagerDelegate::initHybrid(
- jni::alias_ref)
- {
- return makeCxxInstance();
- }
-
- void MainApplicationTurboModuleManagerDelegate::registerNatives()
- {
- registerHybrid({
- makeNativeMethod(
- "initHybrid", MainApplicationTurboModuleManagerDelegate::initHybrid),
- makeNativeMethod(
- "canCreateTurboModule",
- MainApplicationTurboModuleManagerDelegate::canCreateTurboModule),
- });
- }
-
- std::shared_ptr
- MainApplicationTurboModuleManagerDelegate::getTurboModule(
- const std::string &name,
- const std::shared_ptr &jsInvoker)
- {
- // Not implemented yet: provide pure-C++ NativeModules here.
- return nullptr;
- }
-
- std::shared_ptr
- MainApplicationTurboModuleManagerDelegate::getTurboModule(
- const std::string &name,
- const JavaTurboModule::InitParams ¶ms)
- {
- return MainApplicationModuleProvider(name, params);
- }
-
- bool MainApplicationTurboModuleManagerDelegate::canCreateTurboModule(
- const std::string &name)
- {
- return getTurboModule(name, nullptr) != nullptr ||
- getTurboModule(name, {.moduleName = name}) != nullptr;
- }
-
- } // namespace react
-} // namespace facebook
diff --git a/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h b/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h
deleted file mode 100644
index 3a969fa51..000000000
--- a/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h
+++ /dev/null
@@ -1,41 +0,0 @@
-#include
-#include
-
-#include
-#include
-
-namespace facebook
-{
- namespace react
- {
-
- class MainApplicationTurboModuleManagerDelegate
- : public jni::HybridClass<
- MainApplicationTurboModuleManagerDelegate,
- TurboModuleManagerDelegate>
- {
- public:
- // Adapt it to the package you used for your Java class.
- static constexpr auto kJavaDescriptor =
- "Lcom/lunes/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate;";
-
- static jni::local_ref initHybrid(jni::alias_ref);
-
- static void registerNatives();
-
- std::shared_ptr getTurboModule(
- const std::string &name,
- const std::shared_ptr &jsInvoker) override;
- std::shared_ptr getTurboModule(
- const std::string &name,
- const JavaTurboModule::InitParams ¶ms) override;
-
- /**
- * Test-only method. Allows user to verify whether a TurboModule can be
- * created by instances of this class.
- */
- bool canCreateTurboModule(const std::string &name);
- };
-
- } // namespace react
-} // namespace facebook
diff --git a/android/app/src/main/jni/MainComponentsRegistry.cpp b/android/app/src/main/jni/MainComponentsRegistry.cpp
deleted file mode 100644
index fa08fabda..000000000
--- a/android/app/src/main/jni/MainComponentsRegistry.cpp
+++ /dev/null
@@ -1,71 +0,0 @@
-#include "MainComponentsRegistry.h"
-
-#include
-#include
-#include
-#include
-#include
-
-namespace facebook
-{
- namespace react
- {
-
- MainComponentsRegistry::MainComponentsRegistry(ComponentFactory *delegate) {}
-
- std::shared_ptr
- MainComponentsRegistry::sharedProviderRegistry()
- {
- auto providerRegistry = CoreComponentsRegistry::sharedProviderRegistry();
-
- // Autolinked providers registered by RN CLI
- rncli_registerProviders(providerRegistry);
-
- // Custom Fabric Components go here. You can register custom
- // components coming from your App or from 3rd party libraries here.
- //
- // providerRegistry->add(concreteComponentDescriptorProvider<
- // AocViewerComponentDescriptor>());
- return providerRegistry;
- }
-
- jni::local_ref
- MainComponentsRegistry::initHybrid(
- jni::alias_ref,
- ComponentFactory *delegate)
- {
- auto instance = makeCxxInstance(delegate);
-
- auto buildRegistryFunction =
- [](EventDispatcher::Weak const &eventDispatcher,
- ContextContainer::Shared const &contextContainer)
- -> ComponentDescriptorRegistry::Shared
- {
- auto registry = MainComponentsRegistry::sharedProviderRegistry()
- ->createComponentDescriptorRegistry(
- {eventDispatcher, contextContainer});
-
- auto mutableRegistry =
- std::const_pointer_cast(registry);
-
- mutableRegistry->setFallbackComponentDescriptor(
- std::make_shared(
- ComponentDescriptorParameters{
- eventDispatcher, contextContainer, nullptr}));
-
- return registry;
- };
-
- delegate->buildRegistryFunction = buildRegistryFunction;
- return instance;
- }
-
- void MainComponentsRegistry::registerNatives()
- {
- registerHybrid({
- makeNativeMethod("initHybrid", MainComponentsRegistry::initHybrid),
- });
- }
-
- } // namespace react
-} // namespace facebook
diff --git a/android/app/src/main/jni/MainComponentsRegistry.h b/android/app/src/main/jni/MainComponentsRegistry.h
deleted file mode 100644
index abf421886..000000000
--- a/android/app/src/main/jni/MainComponentsRegistry.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#pragma once
-#include
-#include
-#include
-#include
-namespace facebook
-{
- namespace react
- {
- class MainComponentsRegistry
- : public facebook::jni::HybridClass
- {
- public:
- // Adapt it to the package you used for your Java class.
- constexpr static auto kJavaDescriptor =
- "Lcom/lunes/newarchitecture/components/MainComponentsRegistry;";
- static void registerNatives();
- MainComponentsRegistry(ComponentFactory *delegate);
-
- private:
- static std::shared_ptr
- sharedProviderRegistry();
- static jni::local_ref initHybrid(
- jni::alias_ref,
- ComponentFactory *delegate);
- };
- } // namespace react
-} // namespace facebook
\ No newline at end of file
diff --git a/android/app/src/main/jni/OnLoad.cpp b/android/app/src/main/jni/OnLoad.cpp
deleted file mode 100644
index 3502de46b..000000000
--- a/android/app/src/main/jni/OnLoad.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#include
-#include "MainApplicationTurboModuleManagerDelegate.h"
-#include "MainComponentsRegistry.h"
-JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *)
-{
- return facebook::jni::initialize(vm, []
- {
- facebook::react::MainApplicationTurboModuleManagerDelegate::
- registerNatives();
- facebook::react::MainComponentsRegistry::registerNatives(); });
-}
\ No newline at end of file
diff --git a/android/build.gradle b/android/build.gradle
index 4e45cd8af..855058aa7 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -2,55 +2,26 @@
buildscript {
ext {
- buildToolsVersion = "33.0.0"
+ buildToolsVersion = "35.0.0"
minSdkVersion = 24
- compileSdkVersion = 33
- targetSdkVersion = 33
- if (System.properties['os.arch'] == "aarch64") {
- // For M1 Users we need to use the NDK 24 which added support for aarch64
- ndkVersion = "24.0.8215888"
- } else {
- // Otherwise we default to the side-by-side NDK version from AGP.
- ndkVersion = "21.4.7075529"
- }
+ compileSdkVersion = 35
+ targetSdkVersion = 34
+ ndkVersion = "26.1.10909125"
+ kotlinVersion = "1.9.24"
+
androidXBrowser = "1.4.0"
- kotlinVersion = "1.5.21"
}
repositories {
google()
mavenCentral()
}
dependencies {
- classpath('com.android.tools.build:gradle:7.2.2')
+ classpath("com.android.tools.build:gradle")
classpath("com.facebook.react:react-native-gradle-plugin")
- classpath("de.undercouch:gradle-download-task:5.0.1")
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
+ classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
-allprojects {
- repositories {
- maven {
- // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
- url("$rootDir/../node_modules/react-native/android")
- }
- maven {
- // Android JSC is installed from npm
- url("$rootDir/../node_modules/jsc-android/dist")
- }
- mavenCentral {
- // We don't want to fetch react-native from Maven Central as there are
- // older versions over there.
- content {
- excludeGroup "com.facebook.react"
- }
- }
- google()
- mavenLocal()
- jcenter()
- maven { url 'https://www.jitpack.io' }
- maven { url 'https://maven.google.com' }
- }
-}
+apply plugin: "com.facebook.react.rootproject"
diff --git a/android/gradle.properties b/android/gradle.properties
index 500b0a8ea..8927833b5 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -21,11 +21,6 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
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.125.0
# Use this property to specify which architecture you want to build.
# You can also override it from the CLI using
@@ -37,7 +32,11 @@ reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
# your application. You should enable this flag either if you want
# to write custom TurboModules/Fabric components OR use libraries that
# are providing them.
-newArchEnabled=false
+newArchEnabled=true
+
+# Use this property to enable or disable the Hermes JS engine.
+# If set to false, you will be using JSC instead.
+hermesEnabled=true
# https://react-native-vision-camera.com/docs/guides/code-scanning#setup
VisionCamera_enableCodeScanner=true
\ No newline at end of file
diff --git a/android/gradle/wrapper/gradle-wrapper.jar b/android/gradle/wrapper/gradle-wrapper.jar
index 249e5832f..a4b76b953 100644
Binary files a/android/gradle/wrapper/gradle-wrapper.jar and b/android/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties
index ae04661ee..79eb9d003 100644
--- a/android/gradle/wrapper/gradle-wrapper.properties
+++ b/android/gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
+networkTimeout=10000
+validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
diff --git a/android/gradlew b/android/gradlew
index a69d9cb6c..f5feea6d6 100755
--- a/android/gradlew
+++ b/android/gradlew
@@ -15,6 +15,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
+# SPDX-License-Identifier: Apache-2.0
+#
##############################################################################
#
@@ -55,7 +57,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
-# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
+# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -80,13 +82,12 @@ do
esac
done
-APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
-
-APP_NAME="Gradle"
+# This is normally unused
+# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
-
-# 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 -P "${APP_HOME:-./}" > /dev/null && printf '%s
+' "$PWD" ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
@@ -133,22 +134,29 @@ location of your Java installation."
fi
else
JAVACMD=java
- which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+ if ! command -v java >/dev/null 2>&1
+ then
+ die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
+ fi
fi
# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
+ # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
+ # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
@@ -193,11 +201,15 @@ if "$cygwin" || "$msys" ; then
done
fi
-# Collect all arguments for the java command;
-# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
-# shell script including quotes and variable substitutions, so put them in
-# double quotes to make sure that they get re-expanded; and
-# * put everything else in single quotes, so that it's not re-expanded.
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Collect all arguments for the java command:
+# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
+# and any embedded shellness will be escaped.
+# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
+# treated as '${Hostname}' itself on the command line.
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
diff --git a/android/gradlew.bat b/android/gradlew.bat
index 53a6b238d..9b42019c7 100644
--- a/android/gradlew.bat
+++ b/android/gradlew.bat
@@ -13,6 +13,8 @@
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
+@rem SPDX-License-Identifier: Apache-2.0
+@rem
@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@@ -26,6 +28,7 @@ if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%"=="" set DIRNAME=.
+@rem This is normally unused
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@@ -42,11 +45,11 @@ set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute
-echo.
-echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
+echo. 1>&2
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
+echo. 1>&2
+echo Please set the JAVA_HOME variable in your environment to match the 1>&2
+echo location of your Java installation. 1>&2
goto fail
@@ -56,11 +59,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
-echo.
-echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
+echo. 1>&2
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
+echo. 1>&2
+echo Please set the JAVA_HOME variable in your environment to match the 1>&2
+echo location of your Java installation. 1>&2
goto fail
diff --git a/android/settings.gradle b/android/settings.gradle
index 7cd9cee07..0959566a4 100644
--- a/android/settings.gradle
+++ b/android/settings.gradle
@@ -1,13 +1,9 @@
+pluginManagement { includeBuild("../node_modules/@react-native/gradle-plugin") }
+plugins { id("com.facebook.react.settings") }
+extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() }
rootProject.name = 'lunes-app-android'
include ':react-native-fs'
project(':react-native-fs').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-fs/android')
-apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
-
include ':app'
-
-includeBuild('../node_modules/react-native-gradle-plugin')
-if (settings.hasProperty("newArchEnabled") && settings.newArchEnabled == "true") {
- include(":ReactAndroid")
- project(":ReactAndroid").projectDir = file('../node_modules/react-native/ReactAndroid')
-}
\ No newline at end of file
+includeBuild('../node_modules/@react-native/gradle-plugin')
\ No newline at end of file
diff --git a/babel.config.js b/babel.config.js
index 54a145084..196eb8129 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -1,4 +1,4 @@
module.exports = {
- presets: ['module:metro-react-native-babel-preset'],
+ presets: ['module:@react-native/babel-preset'],
plugins: ['react-native-reanimated/plugin', '@babel/plugin-proposal-unicode-property-regex'],
}
diff --git a/ios/Gemfile b/ios/Gemfile
index c19565558..6552189a8 100644
--- a/ios/Gemfile
+++ b/ios/Gemfile
@@ -2,6 +2,10 @@ source "https://rubygems.org"
gem "fastlane"
-gem "cocoapods", "= 1.14.3"
+# Exclude problematic versions of cocoapods and activesupport that causes build failures.
+gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
+gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
+gem 'xcodeproj', '< 1.26.0'
+
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)
diff --git a/ios/Gemfile.lock b/ios/Gemfile.lock
index bdf7f453a..7aa5c7c58 100644
--- a/ios/Gemfile.lock
+++ b/ios/Gemfile.lock
@@ -5,42 +5,36 @@ GEM
base64
nkf
rexml
- activesupport (7.1.3.2)
- base64
- bigdecimal
+ activesupport (7.0.8.6)
concurrent-ruby (~> 1.0, >= 1.0.2)
- connection_pool (>= 2.2.5)
- drb
i18n (>= 1.6, < 2)
minitest (>= 5.1)
- mutex_m
tzinfo (~> 2.0)
- addressable (2.8.6)
- public_suffix (>= 2.0.2, < 6.0)
+ addressable (2.8.7)
+ public_suffix (>= 2.0.2, < 7.0)
algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
artifactory (3.0.17)
atomos (0.1.3)
aws-eventstream (1.3.0)
- aws-partitions (1.908.0)
- aws-sdk-core (3.191.6)
+ aws-partitions (1.1001.0)
+ aws-sdk-core (3.211.0)
aws-eventstream (~> 1, >= 1.3.0)
- aws-partitions (~> 1, >= 1.651.0)
- aws-sigv4 (~> 1.8)
+ aws-partitions (~> 1, >= 1.992.0)
+ aws-sigv4 (~> 1.9)
jmespath (~> 1, >= 1.6.1)
- aws-sdk-kms (1.78.0)
- aws-sdk-core (~> 3, >= 3.191.0)
- aws-sigv4 (~> 1.1)
- aws-sdk-s3 (1.146.1)
- aws-sdk-core (~> 3, >= 3.191.0)
+ aws-sdk-kms (1.95.0)
+ aws-sdk-core (~> 3, >= 3.210.0)
+ aws-sigv4 (~> 1.5)
+ aws-sdk-s3 (1.169.0)
+ aws-sdk-core (~> 3, >= 3.210.0)
aws-sdk-kms (~> 1)
- aws-sigv4 (~> 1.8)
- aws-sigv4 (1.8.0)
+ aws-sigv4 (~> 1.5)
+ aws-sigv4 (1.10.1)
aws-eventstream (~> 1, >= 1.0.2)
babosa (1.0.4)
base64 (0.2.0)
- bigdecimal (3.1.7)
claide (1.1.0)
cocoapods (1.14.3)
addressable (~> 2.8)
@@ -83,20 +77,18 @@ GEM
colored2 (3.1.2)
commander (4.6.0)
highline (~> 2.0.0)
- concurrent-ruby (1.2.3)
- connection_pool (2.4.1)
+ concurrent-ruby (1.3.4)
declarative (0.0.20)
digest-crc (0.6.5)
rake (>= 12.0.0, < 14.0.0)
domain_name (0.6.20240107)
dotenv (2.8.1)
- drb (2.2.1)
emoji_regex (3.2.3)
escape (0.0.4)
ethon (0.16.0)
ffi (>= 1.15.0)
- excon (0.110.0)
- faraday (1.10.3)
+ excon (0.112.0)
+ faraday (1.10.4)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
@@ -117,15 +109,15 @@ GEM
faraday-httpclient (1.0.1)
faraday-multipart (1.0.4)
multipart-post (~> 2)
- faraday-net_http (1.0.1)
+ faraday-net_http (1.0.2)
faraday-net_http_persistent (1.2.0)
faraday-patron (1.0.0)
faraday-rack (1.0.0)
faraday-retry (1.0.3)
- faraday_middleware (1.2.0)
+ faraday_middleware (1.2.1)
faraday (~> 1.0)
fastimage (2.3.1)
- fastlane (2.220.0)
+ fastlane (2.225.0)
CFPropertyList (>= 2.3, < 4.0.0)
addressable (>= 2.8, < 3.0.0)
artifactory (~> 3.0)
@@ -141,6 +133,7 @@ GEM
faraday-cookie_jar (~> 0.0.6)
faraday_middleware (~> 1.0)
fastimage (>= 2.1.0, < 3.0.0)
+ fastlane-sirp (>= 1.0.0)
gh_inspector (>= 1.1.2, < 2.0.0)
google-apis-androidpublisher_v3 (~> 0.3)
google-apis-playcustomapp_v1 (~> 0.1)
@@ -166,9 +159,12 @@ GEM
xcodeproj (>= 1.13.0, < 2.0.0)
xcpretty (~> 0.3.0)
xcpretty-travis-formatter (>= 0.0.3, < 2.0.0)
- fastlane-plugin-browserstack (0.3.2)
+ fastlane-plugin-browserstack (0.3.3)
rest-client (~> 2.0, >= 2.0.2)
- ffi (1.16.3)
+ fastlane-sirp (1.0.0)
+ sysrandom (~> 1.0)
+ ffi (1.17.0)
+ ffi (1.17.0-arm64-darwin)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
@@ -188,7 +184,7 @@ GEM
google-apis-core (>= 0.11.0, < 2.a)
google-apis-storage_v1 (0.31.0)
google-apis-core (>= 0.11.0, < 2.a)
- google-cloud-core (1.7.0)
+ google-cloud-core (1.7.1)
google-cloud-env (>= 1.0, < 3.a)
google-cloud-errors (~> 1.0)
google-cloud-env (1.6.0)
@@ -210,31 +206,32 @@ GEM
signet (>= 0.16, < 2.a)
highline (2.0.3)
http-accept (1.7.0)
- http-cookie (1.0.5)
+ http-cookie (1.0.7)
domain_name (~> 0.5)
httpclient (2.8.3)
- i18n (1.14.4)
+ i18n (1.14.6)
concurrent-ruby (~> 1.0)
jmespath (1.6.2)
- json (2.7.2)
- jwt (2.8.1)
+ json (2.7.5)
+ jwt (2.9.3)
base64
- mime-types (3.5.2)
+ logger (1.6.1)
+ mime-types (3.6.0)
+ logger
mime-types-data (~> 3.2015)
- mime-types-data (3.2024.0305)
- mini_magick (4.12.0)
+ mime-types-data (3.2024.1001)
+ mini_magick (4.13.2)
mini_mime (1.1.5)
- minitest (5.22.3)
+ minitest (5.25.1)
molinillo (0.8.0)
multi_json (1.15.0)
- multipart-post (2.4.0)
- mutex_m (0.2.0)
+ multipart-post (2.4.1)
nanaimo (0.3.0)
nap (1.1.0)
naturally (2.2.1)
netrc (0.11.0)
nkf (0.2.0)
- optparse (0.4.0)
+ optparse (0.5.0)
os (1.1.4)
plist (3.7.1)
public_suffix (4.0.7)
@@ -249,7 +246,7 @@ GEM
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
retriable (3.1.2)
- rexml (3.2.6)
+ rexml (3.3.9)
rouge (2.0.7)
ruby-macho (2.5.1)
ruby2_keywords (0.0.5)
@@ -263,6 +260,7 @@ GEM
simctl (1.6.10)
CFPropertyList
naturally
+ sysrandom (1.0.5)
terminal-notifier (2.0.0)
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
@@ -276,15 +274,15 @@ GEM
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
uber (0.1.0)
- unicode-display_width (2.5.0)
+ unicode-display_width (2.6.0)
word_wrap (1.0.0)
- xcodeproj (1.24.0)
+ xcodeproj (1.25.1)
CFPropertyList (>= 2.3.3, < 4.0)
atomos (~> 0.1.3)
claide (>= 1.0.2, < 2.0)
colored2 (~> 3.1)
nanaimo (~> 0.3.0)
- rexml (~> 3.2.4)
+ rexml (>= 3.3.6, < 4.0)
xcpretty (0.3.0)
rouge (~> 2.0.7)
xcpretty-travis-formatter (1.0.1)
@@ -296,9 +294,11 @@ PLATFORMS
ruby
DEPENDENCIES
- cocoapods (= 1.14.3)
+ activesupport (>= 6.1.7.5, != 7.1.0)
+ cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
fastlane
fastlane-plugin-browserstack
+ xcodeproj (< 1.26.0)
BUNDLED WITH
2.4.7
diff --git a/ios/Lunes.xcodeproj/project.pbxproj b/ios/Lunes.xcodeproj/project.pbxproj
index 10616c27e..f6bc8b13a 100644
--- a/ios/Lunes.xcodeproj/project.pbxproj
+++ b/ios/Lunes.xcodeproj/project.pbxproj
@@ -11,7 +11,7 @@
078F4DB97D1F4037ADA4002A /* SourceSansPro-ExtraLightItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E272399053254CF78A178832 /* SourceSansPro-ExtraLightItalic.ttf */; };
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
- 16E3945C9A824F49502186D9 /* BuildFile in Frameworks */ = {isa = PBXBuildFile; };
+ 16E3945C9A824F49502186D9 /* (null) in Frameworks */ = {isa = PBXBuildFile; };
24D7D730211F40CF8E3B1217 /* SourceSansPro-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CA094344FD844F3088B28CD5 /* SourceSansPro-Italic.ttf */; };
33D4D410B3E64F4DB1368910 /* SourceSansPro-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7B3E5FD9A1E84C23A7FB5C96 /* SourceSansPro-Bold.ttf */; };
40A4FC7F6D897F6C859C6931 /* libPods-Lunes-LunesTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 101D24FC18639F6D2AA9AA34 /* libPods-Lunes-LunesTests.a */; };
@@ -21,6 +21,7 @@
87A466CFEE17407CAB2AC921 /* SourceSansPro-BoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9B6B134C8FCE47C68E89F684 /* SourceSansPro-BoldItalic.ttf */; };
8B2742D73CAE4F48896CED3E /* SourceSansPro-ExtraLight.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 18CD2FA065EC4EFFB6F0212B /* SourceSansPro-ExtraLight.ttf */; };
961F0746F19745779C0FC013 /* SourceSansPro-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 73CBB64724D84F818FE6A37A /* SourceSansPro-Black.ttf */; };
+ 976D6F3B4BEA1C25172821AF /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 00314D2A729F9F61792BE8E6 /* PrivacyInfo.xcprivacy */; };
A2FD8237265506B300572C26 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A2FD8236265506B300572C26 /* Images.xcassets */; };
A2FD8239265506C400572C26 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A2FD8238265506C400572C26 /* LaunchScreen.storyboard */; };
AA3EF9AC3F80EE58BB867CCC /* libPods-Lunes.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4E066DB1812569755D50F120 /* libPods-Lunes.a */; };
@@ -39,6 +40,7 @@
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
+ 00314D2A729F9F61792BE8E6 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = ../PrivacyInfo.xcprivacy; sourceTree = ""; };
00E356EE1AD99517003FC87E /* LunesTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LunesTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
00E356F21AD99517003FC87E /* LunesTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LunesTests.m; sourceTree = ""; };
@@ -102,7 +104,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 16E3945C9A824F49502186D9 /* BuildFile in Frameworks */,
+ 16E3945C9A824F49502186D9 /* (null) in Frameworks */,
AA3EF9AC3F80EE58BB867CCC /* libPods-Lunes.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
@@ -136,6 +138,7 @@
13B07FB61A68108700A75B9A /* Info.plist */,
A2FD8238265506C400572C26 /* LaunchScreen.storyboard */,
13B07FB71A68108700A75B9A /* main.m */,
+ 00314D2A729F9F61792BE8E6 /* PrivacyInfo.xcprivacy */,
);
path = Lunes;
sourceTree = "";
@@ -341,6 +344,7 @@
5E0B7EAB596A4035A1549427 /* SourceSansPro-Regular.ttf in Resources */,
015AB6CFBF504B71AB7585F8 /* SourceSansPro-SemiBold.ttf in Resources */,
48103CCAE64E4B54A8BD0C8C /* SourceSansPro-SemiBoldItalic.ttf in Resources */,
+ 976D6F3B4BEA1C25172821AF /* PrivacyInfo.xcprivacy in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -645,8 +649,9 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
+ CC = "";
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;
@@ -672,6 +677,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
+ CXX = "";
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
@@ -691,6 +697,8 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
+ LD = "";
+ LDPLUSPLUS = "";
LD_RUNPATH_SEARCH_PATHS = (
/usr/lib/swift,
"$(inherited)",
@@ -702,8 +710,11 @@
);
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
+ OTHER_LDFLAGS = "$(inherited) ";
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
+ USE_HERMES = true;
};
name = Debug;
};
@@ -711,8 +722,9 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
+ CC = "";
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;
@@ -740,6 +752,7 @@
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
COPY_PHASE_STRIP = YES;
+ CXX = "";
DEVELOPMENT_TEAM = 7272KE28TJ;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -753,6 +766,8 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
+ LD = "";
+ LDPLUSPLUS = "";
LD_RUNPATH_SEARCH_PATHS = (
/usr/lib/swift,
"$(inherited)",
@@ -763,9 +778,11 @@
"\"$(inherited)\"",
);
MTL_ENABLE_DEBUG_INFO = NO;
+ OTHER_LDFLAGS = "$(inherited) ";
PROVISIONING_PROFILE_SPECIFIER = None;
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
+ USE_HERMES = true;
VALIDATE_PRODUCT = YES;
};
name = Release;
diff --git a/ios/Lunes/AppDelegate.h b/ios/Lunes/AppDelegate.h
index ef1de86a2..5d2808256 100644
--- a/ios/Lunes/AppDelegate.h
+++ b/ios/Lunes/AppDelegate.h
@@ -1,8 +1,6 @@
-#import
+#import
#import
-@interface AppDelegate : UIResponder
-
-@property (nonatomic, strong) UIWindow *window;
+@interface AppDelegate : RCTAppDelegate
@end
diff --git a/ios/Lunes/AppDelegate.mm b/ios/Lunes/AppDelegate.mm
index 70f6fb583..0a68425a7 100644
--- a/ios/Lunes/AppDelegate.mm
+++ b/ios/Lunes/AppDelegate.mm
@@ -1,88 +1,25 @@
#import "AppDelegate.h"
-#import
#import
-#import
-
-#import
-
-#if RCT_NEW_ARCH_ENABLED
-#import
-#import
-#import
-#import
-#import
-#import
-
-#import
-
-static NSString *const kRNConcurrentRoot = @"concurrentRoot";
-
-@interface AppDelegate () {
- RCTTurboModuleManager *_turboModuleManager;
- RCTSurfacePresenterBridgeAdapter *_bridgeAdapter;
- std::shared_ptr _reactNativeConfig;
- facebook::react::ContextContainer::Shared _contextContainer;
-}
-@end
-#endif
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
- RCTAppSetupPrepareApp(application);
-
- RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
-
-#if RCT_NEW_ARCH_ENABLED
- _contextContainer = std::make_shared();
- _reactNativeConfig = std::make_shared();
- _contextContainer->insert("ReactNativeConfig", _reactNativeConfig);
- _bridgeAdapter = [[RCTSurfacePresenterBridgeAdapter alloc] initWithBridge:bridge contextContainer:_contextContainer];
- bridge.surfacePresenter = _bridgeAdapter.surfacePresenter;
-#endif
+ self.moduleName = @"Lunes";
+ // You can add your custom initial props in the dictionary below.
+ // They will be passed down to the ViewController used by React Native.
+ self.initialProps = @{};
- NSDictionary *initProps = [self prepareInitialProps];
- UIView *rootView = RCTAppSetupDefaultRootView(bridge, @"Lunes", initProps);
-
- if (@available(iOS 13.0, *)) {
- rootView.backgroundColor = [UIColor systemBackgroundColor];
- } else {
- rootView.backgroundColor = [UIColor whiteColor];
- }
-
- self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
- UIViewController *rootViewController = [UIViewController new];
- rootViewController.view = rootView;
- self.window.rootViewController = rootViewController;
- [self.window makeKeyAndVisible];
- return YES;
-}
-
-/// This method controls whether the `concurrentRoot`feature of React18 is turned on or off.
-///
-/// @see: https://reactjs.org/blog/2022/03/29/react-v18.html
-/// @note: This requires to be rendering on Fabric (i.e. on the New Architecture).
-/// @return: `true` if the `concurrentRoot` feture is enabled. Otherwise, it returns `false`.
-- (BOOL)concurrentRootEnabled
-{
- // Switch this bool to turn on and off the concurrent root
- return true;
+ return [super application:application didFinishLaunchingWithOptions:launchOptions];
}
-- (NSDictionary *)prepareInitialProps
+- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
{
- NSMutableDictionary *initProps = [NSMutableDictionary new];
-
-#ifdef RCT_NEW_ARCH_ENABLED
- initProps[kRNConcurrentRoot] = @([self concurrentRootEnabled]);
-#endif
-
- return initProps;
+ return [self bundleURL];
}
-- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
+- (NSURL *)bundleURL
{
#if DEBUG
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
@@ -91,43 +28,4 @@ - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
#endif
}
-#if RCT_NEW_ARCH_ENABLED
-
-#pragma mark - RCTCxxBridgeDelegate
-
-- (std::unique_ptr)jsExecutorFactoryForBridge:(RCTBridge *)bridge
-{
- _turboModuleManager = [[RCTTurboModuleManager alloc] initWithBridge:bridge
- delegate:self
- jsInvoker:bridge.jsCallInvoker];
- return RCTAppSetupDefaultJsExecutorFactory(bridge, _turboModuleManager);
-}
-
-#pragma mark RCTTurboModuleManagerDelegate
-
-- (Class)getModuleClassFromName:(const char *)name
-{
- return RCTCoreModulesClassProvider(name);
-}
-
-- (std::shared_ptr)getTurboModule:(const std::string &)name
- jsInvoker:(std::shared_ptr)jsInvoker
-{
- return nullptr;
-}
-
-- (std::shared_ptr)getTurboModule:(const std::string &)name
- initParams:
- (const facebook::react::ObjCTurboModule::InitParams &)params
-{
- return nullptr;
-}
-
-- (id)getModuleInstanceFromClass:(Class)moduleClass
-{
- return RCTAppSetupDefaultModuleFromClass(moduleClass);
-}
-
-#endif
-
@end
diff --git a/ios/Lunes/Info.plist b/ios/Lunes/Info.plist
index e01f78813..cb7d9f8c9 100644
--- a/ios/Lunes/Info.plist
+++ b/ios/Lunes/Info.plist
@@ -2,107 +2,104 @@
- LSApplicationQueriesSchemes
-
- https
- mailto
- tel
-
- CFBundleDevelopmentRegion
- en
- CFBundleDisplayName
- Lunes
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- APPL
- CFBundleShortVersionString
- $(MARKETING_VERSION)
- CFBundleSignature
- ????
- CFBundleVersion
- $(CURRENT_PROJECT_VERSION)
- ITSAppUsesNonExemptEncryption
-
- LSRequiresIPhoneOS
-
- NSAppTransportSecurity
-
- NSExceptionDomains
-
- localhost
-
- NSExceptionAllowsInsecureHTTPLoads
-
-
-
-
- NSCameraUsageDescription
- Zur Aufnahme von Bildern benötigt LUNES Zugriff auf deine Kamera.
- NSMicrophoneUsageDescription
- Zur Aufnahme von Audios benötigt LUNES Zugriff auf dein Mikrofon.
- NSLocationWhenInUseUsageDescription
-
- NSPhotoLibraryUsageDescription
- Zur Auswahl von Bildern benötigt LUNES Zugriff auf deine Bildergalerie.
- UIAppFonts
-
- AntDesign.ttf
- Entypo.ttf
- EvilIcons.ttf
- Feather.ttf
- FontAwesome.ttf
- FontAwesome5_Brands.ttf
- FontAwesome5_Regular.ttf
- FontAwesome5_Solid.ttf
- Fontisto.ttf
- Foundation.ttf
- Ionicons.ttf
- MaterialCommunityIcons.ttf
- MaterialIcons.ttf
- Octicons.ttf
- Roboto_medium.ttf
- Roboto.ttf
- rubicon-icon-font.ttf
- SimpleLineIcons.ttf
- Zocial.ttf
- SourceSansPro-Black.ttf
- SourceSansPro-BlackItalic.ttf
- SourceSansPro-Bold.ttf
- SourceSansPro-BoldItalic.ttf
- SourceSansPro-ExtraLight.ttf
- SourceSansPro-ExtraLightItalic.ttf
- SourceSansPro-Italic.ttf
- SourceSansPro-Light.ttf
- SourceSansPro-LightItalic.ttf
- SourceSansPro-Regular.ttf
- SourceSansPro-SemiBold.ttf
- SourceSansPro-SemiBoldItalic.ttf
-
- UILaunchStoryboardName
- LaunchScreen
- UIRequiredDeviceCapabilities
-
- armv7
-
- UIStatusBarStyle
- UIStatusBarStyleLightContent
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UIUserInterfaceStyle
- Light
- UIViewControllerBasedStatusBarAppearance
-
+ LSApplicationQueriesSchemes
+
+ https
+ mailto
+ tel
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleDisplayName
+ Lunes
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ $(PRODUCT_NAME)
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ $(MARKETING_VERSION)
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ $(CURRENT_PROJECT_VERSION)
+ ITSAppUsesNonExemptEncryption
+
+ LSRequiresIPhoneOS
+
+ NSAppTransportSecurity
+
+
+ NSAllowsArbitraryLoads
+
+ NSAllowsLocalNetworking
+
+
+ NSCameraUsageDescription
+ Zur Aufnahme von Bildern benötigt LUNES Zugriff auf deine Kamera.
+ NSMicrophoneUsageDescription
+ Zur Aufnahme von Audios benötigt LUNES Zugriff auf dein Mikrofon.
+ NSLocationWhenInUseUsageDescription
+
+ NSPhotoLibraryUsageDescription
+ Zur Auswahl von Bildern benötigt LUNES Zugriff auf deine Bildergalerie.
+ UIAppFonts
+
+ AntDesign.ttf
+ Entypo.ttf
+ EvilIcons.ttf
+ Feather.ttf
+ FontAwesome.ttf
+ FontAwesome5_Brands.ttf
+ FontAwesome5_Regular.ttf
+ FontAwesome5_Solid.ttf
+ Fontisto.ttf
+ Foundation.ttf
+ Ionicons.ttf
+ MaterialCommunityIcons.ttf
+ MaterialIcons.ttf
+ Octicons.ttf
+ Roboto_medium.ttf
+ Roboto.ttf
+ rubicon-icon-font.ttf
+ SimpleLineIcons.ttf
+ Zocial.ttf
+ SourceSansPro-Black.ttf
+ SourceSansPro-BlackItalic.ttf
+ SourceSansPro-Bold.ttf
+ SourceSansPro-BoldItalic.ttf
+ SourceSansPro-ExtraLight.ttf
+ SourceSansPro-ExtraLightItalic.ttf
+ SourceSansPro-Italic.ttf
+ SourceSansPro-Light.ttf
+ SourceSansPro-LightItalic.ttf
+ SourceSansPro-Regular.ttf
+ SourceSansPro-SemiBold.ttf
+ SourceSansPro-SemiBoldItalic.ttf
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIRequiredDeviceCapabilities
+
+ armv64
+
+ UIStatusBarStyle
+ UIStatusBarStyleLightContent
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UIUserInterfaceStyle
+ Light
+ UIViewControllerBasedStatusBarAppearance
+
diff --git a/ios/Lunes/PrivacyInfo.xcprivacy b/ios/Lunes/PrivacyInfo.xcprivacy
new file mode 100644
index 000000000..15dbf054a
--- /dev/null
+++ b/ios/Lunes/PrivacyInfo.xcprivacy
@@ -0,0 +1,38 @@
+
+
+
+
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryFileTimestamp
+ NSPrivacyAccessedAPITypeReasons
+
+ C617.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryUserDefaults
+ NSPrivacyAccessedAPITypeReasons
+
+ CA92.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategorySystemBootTime
+ NSPrivacyAccessedAPITypeReasons
+
+ 35F9.1
+
+
+
+ NSPrivacyCollectedDataTypes
+
+ NSPrivacyTracking
+
+
+
diff --git a/ios/Podfile b/ios/Podfile
index ed5fac0fc..81f29de40 100644
--- a/ios/Podfile
+++ b/ios/Podfile
@@ -1,23 +1,30 @@
-require_relative '../node_modules/react-native/scripts/react_native_pods'
-require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
-require_relative '../node_modules/react-native-permissions/scripts/setup'
+ def node_require(script)
+ # Resolve script with node to allow for hoisting
+ require Pod::Executable.execute_command('node', ['-p',
+ "require.resolve(
+ '#{script}',
+ {paths: [process.argv[1]]},
+ )", __dir__]).strip
+end
+
+# Use it to require both react-native's and this package's scripts:
+node_require('react-native/scripts/react_native_pods.rb')
+node_require('react-native-permissions/scripts/setup.rb')
-platform :ios, '12.4'
-install! 'cocoapods', :deterministic_uuids => false
+platform :ios, min_ios_version_supported
+prepare_react_native_project!
+
+linkage = ENV['USE_FRAMEWORKS']
+if linkage != nil
+ Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
+ use_frameworks! :linkage => linkage.to_sym
+end
target 'Lunes' 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.
- # Upcoming versions of React Native may rely on get_default_flags(), but
- # we make it explicit here to aid in the React Native upgrade process.
- :hermes_enabled => true,
- :fabric_enabled => flags[:fabric_enabled],
# An absolute path to your application root.
:app_path => "#{Pod::Config.instance.installation_root}/.."
)
@@ -28,31 +35,10 @@ target 'Lunes' do
pod 'RNSoundPlayer', :path => '../node_modules/react-native-sound-player'
- pod 'react-native-camera', path: '../node_modules/react-native-camera', subspecs: [
- 'BarcodeDetectorMLKit'
- ]
-
- # ⬇️ uncomment wanted permissions
setup_permissions([
- # 'AppTrackingTransparency',
- # 'BluetoothPeripheral',
- # 'Calendars',
'Camera',
- # 'Contacts',
- # 'FaceID',
- # 'LocationAccuracy',
- # 'LocationAlways',
- # 'LocationWhenInUse',
- # 'MediaLibrary',
'Microphone',
- # 'Motion',
- # 'Notifications',
'PhotoLibrary',
- # 'PhotoLibraryAddOnly',
- # 'Reminders',
- # 'Siri',
- # 'SpeechRecognition',
- # 'StoreKit',
])
pod 'RNFS', :path => '../node_modules/react-native-fs'
@@ -62,34 +48,14 @@ target 'Lunes' do
# Pods for testing
end
- # Enables Flipper.
- #
- # Note that if you have use_frameworks! enabled, Flipper will not work and
- # you should disable these next few lines.
- # use_flipper!()
-
# Added the excluded_arch fix for M1 chips and cocoapods https://github.com/mrousavy/react-native-vision-camera/issues/914
post_install do |installer|
+ # https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202
react_native_post_install(installer,
- # Set `mac_catalyst_enabled` to `true` in order to apply patches
- # necessary for Mac Catalyst builds
- :mac_catalyst_enabled => false
+ config[:reactNativePath],
+ :mac_catalyst_enabled => false,
+ # :ccache_enabled => true
)
- installer.pods_project.targets.each do |target|
- target.build_configurations.each do |config|
- config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = "arm64"
- # https://github.com/facebook/react-native/issues/37748 will be fixed with RN 0.72.5
- config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', '_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION']
- end
- end
- # Signing on XCode 14 builds
- installer.generated_projects.each do |project|
- project.targets.each do |target|
- target.build_configurations.each do |config|
- config.build_settings["DEVELOPMENT_TEAM"] = "7272KE28TJ"
- end
- end
- end
end
end
diff --git a/ios/Podfile.lock b/ios/Podfile.lock
index 16f1d747f..0284cad60 100644
--- a/ios/Podfile.lock
+++ b/ios/Podfile.lock
@@ -1,497 +1,2011 @@
PODS:
- - boost (1.76.0)
+ - boost (1.84.0)
- DoubleConversion (1.1.6)
- - FBLazyVector (0.70.9)
- - FBReactNativeSpec (0.70.9):
- - RCT-Folly (= 2021.07.22.00)
- - RCTRequired (= 0.70.9)
- - RCTTypeSafety (= 0.70.9)
- - React-Core (= 0.70.9)
- - React-jsi (= 0.70.9)
- - ReactCommon/turbomodule/core (= 0.70.9)
- - fmt (6.2.1)
+ - FBLazyVector (0.76.1)
+ - fmt (9.1.0)
- glog (0.3.5)
- - GoogleDataTransport (9.2.0):
- - GoogleUtilities/Environment (~> 7.7)
- - nanopb (< 2.30910.0, >= 2.30908.0)
- - PromisesObjC (< 3.0, >= 1.2)
- - GoogleMLKit/BarcodeScanning (3.2.0):
- - GoogleMLKit/MLKitCore
- - MLKitBarcodeScanning (~> 2.2.0)
- - GoogleMLKit/MLKitCore (3.2.0):
- - MLKitCommon (~> 8.0.0)
- - GoogleToolboxForMac/DebugUtils (2.3.2):
- - GoogleToolboxForMac/Defines (= 2.3.2)
- - GoogleToolboxForMac/Defines (2.3.2)
- - GoogleToolboxForMac/Logger (2.3.2):
- - GoogleToolboxForMac/Defines (= 2.3.2)
- - "GoogleToolboxForMac/NSData+zlib (2.3.2)":
- - GoogleToolboxForMac/Defines (= 2.3.2)
- - "GoogleToolboxForMac/NSDictionary+URLArguments (2.3.2)":
- - GoogleToolboxForMac/DebugUtils (= 2.3.2)
- - GoogleToolboxForMac/Defines (= 2.3.2)
- - "GoogleToolboxForMac/NSString+URLArguments (= 2.3.2)"
- - "GoogleToolboxForMac/NSString+URLArguments (2.3.2)"
- - GoogleUtilities/Environment (7.8.0):
- - PromisesObjC (< 3.0, >= 1.2)
- - GoogleUtilities/Logger (7.8.0):
- - GoogleUtilities/Environment
- - GoogleUtilities/UserDefaults (7.8.0):
- - GoogleUtilities/Logger
- - GoogleUtilitiesComponents (1.1.0):
- - GoogleUtilities/Logger
- - GTMSessionFetcher/Core (1.7.2)
- - hermes-engine (0.70.9)
- - libevent (2.1.12)
- - MLImage (1.0.0-beta3)
- - MLKitBarcodeScanning (2.2.0):
- - MLKitCommon (~> 8.0)
- - MLKitVision (~> 4.2)
- - MLKitCommon (8.0.0):
- - GoogleDataTransport (~> 9.0)
- - GoogleToolboxForMac/Logger (~> 2.1)
- - "GoogleToolboxForMac/NSData+zlib (~> 2.1)"
- - "GoogleToolboxForMac/NSDictionary+URLArguments (~> 2.1)"
- - GoogleUtilities/UserDefaults (~> 7.0)
- - GoogleUtilitiesComponents (~> 1.0)
- - GTMSessionFetcher/Core (~> 1.1)
- - Protobuf (~> 3.12)
- - MLKitVision (4.2.0):
- - GoogleToolboxForMac/Logger (~> 2.1)
- - "GoogleToolboxForMac/NSData+zlib (~> 2.1)"
- - GTMSessionFetcher/Core (~> 1.1)
- - MLImage (= 1.0.0-beta3)
- - MLKitCommon (~> 8.0)
- - Protobuf (~> 3.12)
- - nanopb (2.30909.0):
- - nanopb/decode (= 2.30909.0)
- - nanopb/encode (= 2.30909.0)
- - nanopb/decode (2.30909.0)
- - nanopb/encode (2.30909.0)
- - PromisesObjC (2.1.1)
- - Protobuf (3.21.9)
- - RCT-Folly (2021.07.22.00):
+ - hermes-engine (0.76.1):
+ - hermes-engine/Pre-built (= 0.76.1)
+ - hermes-engine/Pre-built (0.76.1)
+ - RCT-Folly (2024.01.01.00):
- boost
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Default (= 2021.07.22.00)
- - RCT-Folly/Default (2021.07.22.00):
+ - RCT-Folly/Default (= 2024.01.01.00)
+ - RCT-Folly/Default (2024.01.01.00):
- boost
- DoubleConversion
- - fmt (~> 6.2.1)
+ - fmt (= 9.1.0)
- glog
- - RCT-Folly/Futures (2021.07.22.00):
+ - RCT-Folly/Fabric (2024.01.01.00):
- boost
- DoubleConversion
- - fmt (~> 6.2.1)
- - glog
- - libevent
- - RCTRequired (0.70.9)
- - RCTTypeSafety (0.70.9):
- - FBLazyVector (= 0.70.9)
- - RCTRequired (= 0.70.9)
- - React-Core (= 0.70.9)
- - React (0.70.9):
- - React-Core (= 0.70.9)
- - React-Core/DevSupport (= 0.70.9)
- - React-Core/RCTWebSocket (= 0.70.9)
- - React-RCTActionSheet (= 0.70.9)
- - React-RCTAnimation (= 0.70.9)
- - React-RCTBlob (= 0.70.9)
- - React-RCTImage (= 0.70.9)
- - React-RCTLinking (= 0.70.9)
- - React-RCTNetwork (= 0.70.9)
- - React-RCTSettings (= 0.70.9)
- - React-RCTText (= 0.70.9)
- - React-RCTVibration (= 0.70.9)
- - React-bridging (0.70.9):
- - RCT-Folly (= 2021.07.22.00)
- - React-jsi (= 0.70.9)
- - React-callinvoker (0.70.9)
- - React-Codegen (0.70.9):
- - FBReactNativeSpec (= 0.70.9)
- - RCT-Folly (= 2021.07.22.00)
- - RCTRequired (= 0.70.9)
- - RCTTypeSafety (= 0.70.9)
- - React-Core (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - ReactCommon/turbomodule/core (= 0.70.9)
- - React-Core (0.70.9):
- - glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default (= 0.70.9)
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
- - Yoga
- - React-Core/CoreModulesHeaders (0.70.9):
- - glog
- - RCT-Folly (= 2021.07.22.00)
+ - fmt (= 9.1.0)
+ - glog
+ - RCTDeprecation (0.76.1)
+ - RCTRequired (0.76.1)
+ - RCTTypeSafety (0.76.1):
+ - FBLazyVector (= 0.76.1)
+ - RCTRequired (= 0.76.1)
+ - React-Core (= 0.76.1)
+ - React (0.76.1):
+ - React-Core (= 0.76.1)
+ - React-Core/DevSupport (= 0.76.1)
+ - React-Core/RCTWebSocket (= 0.76.1)
+ - React-RCTActionSheet (= 0.76.1)
+ - React-RCTAnimation (= 0.76.1)
+ - React-RCTBlob (= 0.76.1)
+ - React-RCTImage (= 0.76.1)
+ - React-RCTLinking (= 0.76.1)
+ - React-RCTNetwork (= 0.76.1)
+ - React-RCTSettings (= 0.76.1)
+ - React-RCTText (= 0.76.1)
+ - React-RCTVibration (= 0.76.1)
+ - React-callinvoker (0.76.1)
+ - React-Core (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default (= 0.76.1)
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/CoreModulesHeaders (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/Default (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/DevSupport (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default (= 0.76.1)
+ - React-Core/RCTWebSocket (= 0.76.1)
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTActionSheetHeaders (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTAnimationHeaders (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTBlobHeaders (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTImageHeaders (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTLinkingHeaders (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTNetworkHeaders (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTSettingsHeaders (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTTextHeaders (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTVibrationHeaders (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-Core/RCTWebSocket (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTDeprecation
+ - React-Core/Default (= 0.76.1)
+ - React-cxxreact
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
+ - SocketRocket (= 0.7.1)
+ - Yoga
+ - React-CoreModules (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTTypeSafety (= 0.76.1)
+ - React-Core/CoreModulesHeaders (= 0.76.1)
+ - React-jsi (= 0.76.1)
+ - React-jsinspector
+ - React-NativeModulesApple
+ - React-RCTBlob
+ - React-RCTImage (= 0.76.1)
+ - ReactCodegen
+ - ReactCommon
+ - SocketRocket (= 0.7.1)
+ - React-cxxreact (0.76.1):
+ - boost
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker (= 0.76.1)
+ - React-debug (= 0.76.1)
+ - React-jsi (= 0.76.1)
+ - React-jsinspector
+ - React-logger (= 0.76.1)
+ - React-perflogger (= 0.76.1)
+ - React-runtimeexecutor (= 0.76.1)
+ - React-timing (= 0.76.1)
+ - React-debug (0.76.1)
+ - React-defaultsnativemodule (0.76.1):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-domnativemodule
+ - React-Fabric
+ - React-featureflags
+ - React-featureflagsnativemodule
+ - React-graphics
+ - React-idlecallbacksnativemodule
+ - React-ImageManager
+ - React-microtasksnativemodule
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-domnativemodule (0.76.1):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricComponents
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-Fabric (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/animations (= 0.76.1)
+ - React-Fabric/attributedstring (= 0.76.1)
+ - React-Fabric/componentregistry (= 0.76.1)
+ - React-Fabric/componentregistrynative (= 0.76.1)
+ - React-Fabric/components (= 0.76.1)
+ - React-Fabric/core (= 0.76.1)
+ - React-Fabric/dom (= 0.76.1)
+ - React-Fabric/imagemanager (= 0.76.1)
+ - React-Fabric/leakchecker (= 0.76.1)
+ - React-Fabric/mounting (= 0.76.1)
+ - React-Fabric/observers (= 0.76.1)
+ - React-Fabric/scheduler (= 0.76.1)
+ - React-Fabric/telemetry (= 0.76.1)
+ - React-Fabric/templateprocessor (= 0.76.1)
+ - React-Fabric/uimanager (= 0.76.1)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/animations (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/attributedstring (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/componentregistry (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/componentregistrynative (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.76.1)
+ - React-Fabric/components/root (= 0.76.1)
+ - React-Fabric/components/view (= 0.76.1)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/legacyviewmanagerinterop (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/root (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/view (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-Fabric/core (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/dom (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/imagemanager (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/leakchecker (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/mounting (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/observers (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/observers/events (= 0.76.1)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/observers/events (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/scheduler (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/observers/events
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-performancetimeline
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/telemetry (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/templateprocessor (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/uimanager (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/uimanager/consistency (= 0.76.1)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererconsistency
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/uimanager/consistency (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererconsistency
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-FabricComponents (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-FabricComponents/components (= 0.76.1)
+ - React-FabricComponents/textlayoutmanager (= 0.76.1)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-FabricComponents/components/inputaccessory (= 0.76.1)
+ - React-FabricComponents/components/iostextinput (= 0.76.1)
+ - React-FabricComponents/components/modal (= 0.76.1)
+ - React-FabricComponents/components/rncore (= 0.76.1)
+ - React-FabricComponents/components/safeareaview (= 0.76.1)
+ - React-FabricComponents/components/scrollview (= 0.76.1)
+ - React-FabricComponents/components/text (= 0.76.1)
+ - React-FabricComponents/components/textinput (= 0.76.1)
+ - React-FabricComponents/components/unimplementedview (= 0.76.1)
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/inputaccessory (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/iostextinput (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/modal (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/rncore (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/safeareaview (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/scrollview (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/text (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/textinput (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/components/unimplementedview (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricComponents/textlayoutmanager (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-FabricImage (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - RCTRequired (= 0.76.1)
+ - RCTTypeSafety (= 0.76.1)
+ - React-Fabric
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-jsiexecutor (= 0.76.1)
+ - React-logger
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon
+ - Yoga
+ - React-featureflags (0.76.1)
+ - React-featureflagsnativemodule (0.76.1):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-graphics (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-jsi
+ - React-jsiexecutor
+ - React-utils
+ - React-hermes (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - React-cxxreact (= 0.76.1)
+ - React-jsi
+ - React-jsiexecutor (= 0.76.1)
+ - React-jsinspector
+ - React-perflogger (= 0.76.1)
+ - React-runtimeexecutor
+ - React-idlecallbacksnativemodule (0.76.1):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-ImageManager (0.76.1):
+ - glog
+ - RCT-Folly/Fabric
- React-Core/Default
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
+ - React-debug
+ - React-Fabric
+ - React-graphics
+ - React-rendererdebug
+ - React-utils
+ - React-jserrorhandler (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-cxxreact
+ - React-debug
+ - React-jsi
+ - React-jsi (0.76.1):
+ - boost
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - React-jsiexecutor (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - React-cxxreact (= 0.76.1)
+ - React-jsi (= 0.76.1)
+ - React-jsinspector
+ - React-perflogger (= 0.76.1)
+ - React-jsinspector (0.76.1):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - React-featureflags
+ - React-jsi
+ - React-perflogger (= 0.76.1)
+ - React-runtimeexecutor (= 0.76.1)
+ - React-jsitracing (0.76.1):
+ - React-jsi
+ - React-logger (0.76.1):
+ - glog
+ - React-Mapbuffer (0.76.1):
+ - glog
+ - React-debug
+ - React-microtasksnativemodule (0.76.1):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
- Yoga
- - React-Core/Default (0.70.9):
+ - react-native-image-picker (7.1.2):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
- Yoga
- - React-Core/DevSupport (0.70.9):
+ - react-native-safe-area-context (4.14.0):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default (= 0.70.9)
- - React-Core/RCTWebSocket (= 0.70.9)
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-jsinspector (= 0.70.9)
- - React-perflogger (= 0.70.9)
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - react-native-safe-area-context/common (= 4.14.0)
+ - react-native-safe-area-context/fabric (= 4.14.0)
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
- Yoga
- - React-Core/RCTActionSheetHeaders (0.70.9):
+ - react-native-safe-area-context/common (4.14.0):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
- Yoga
- - React-Core/RCTAnimationHeaders (0.70.9):
+ - react-native-safe-area-context/fabric (4.14.0):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - react-native-safe-area-context/common
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
- Yoga
- - React-Core/RCTBlobHeaders (0.70.9):
+ - React-nativeconfig (0.76.1)
+ - React-NativeModulesApple (0.76.1):
+ - glog
+ - hermes-engine
+ - React-callinvoker
+ - React-Core
+ - React-cxxreact
+ - React-jsi
+ - React-jsinspector
+ - React-runtimeexecutor
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - React-perflogger (0.76.1):
+ - DoubleConversion
+ - RCT-Folly (= 2024.01.01.00)
+ - React-performancetimeline (0.76.1):
+ - RCT-Folly (= 2024.01.01.00)
+ - React-cxxreact
+ - React-timing
+ - React-RCTActionSheet (0.76.1):
+ - React-Core/RCTActionSheetHeaders (= 0.76.1)
+ - React-RCTAnimation (0.76.1):
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTTypeSafety
+ - React-Core/RCTAnimationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCodegen
+ - ReactCommon
+ - React-RCTAppDelegate (0.76.1):
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-CoreModules
+ - React-debug
+ - React-defaultsnativemodule
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-hermes
+ - React-nativeconfig
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-RCTImage
+ - React-RCTNetwork
+ - React-rendererdebug
+ - React-RuntimeApple
+ - React-RuntimeCore
+ - React-RuntimeHermes
+ - React-runtimescheduler
+ - React-utils
+ - ReactCodegen
+ - ReactCommon
+ - React-RCTBlob (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - React-Core/RCTBlobHeaders
+ - React-Core/RCTWebSocket
+ - React-jsi
+ - React-jsinspector
+ - React-NativeModulesApple
+ - React-RCTNetwork
+ - ReactCodegen
+ - ReactCommon
+ - React-RCTFabric (0.76.1):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricComponents
+ - React-FabricImage
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-jsinspector
+ - React-nativeconfig
+ - React-performancetimeline
+ - React-RCTImage
+ - React-RCTText
+ - React-rendererconsistency
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - Yoga
+ - React-RCTImage (0.76.1):
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTTypeSafety
+ - React-Core/RCTImageHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTNetwork
+ - ReactCodegen
+ - ReactCommon
+ - React-RCTLinking (0.76.1):
+ - React-Core/RCTLinkingHeaders (= 0.76.1)
+ - React-jsi (= 0.76.1)
+ - React-NativeModulesApple
+ - ReactCodegen
+ - ReactCommon
+ - ReactCommon/turbomodule/core (= 0.76.1)
+ - React-RCTNetwork (0.76.1):
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTTypeSafety
+ - React-Core/RCTNetworkHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCodegen
+ - ReactCommon
+ - React-RCTSettings (0.76.1):
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTTypeSafety
+ - React-Core/RCTSettingsHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCodegen
+ - ReactCommon
+ - React-RCTText (0.76.1):
+ - React-Core/RCTTextHeaders (= 0.76.1)
+ - Yoga
+ - React-RCTVibration (0.76.1):
+ - RCT-Folly (= 2024.01.01.00)
+ - React-Core/RCTVibrationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCodegen
+ - ReactCommon
+ - React-rendererconsistency (0.76.1)
+ - React-rendererdebug (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - RCT-Folly (= 2024.01.01.00)
+ - React-debug
+ - React-rncore (0.76.1)
+ - React-RuntimeApple (0.76.1):
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-callinvoker
- React-Core/Default
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
+ - React-CoreModules
+ - React-cxxreact
+ - React-jserrorhandler
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-Mapbuffer
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-RuntimeCore
+ - React-runtimeexecutor
+ - React-RuntimeHermes
+ - React-runtimescheduler
+ - React-utils
+ - React-RuntimeCore (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-cxxreact
+ - React-featureflags
+ - React-jserrorhandler
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector
+ - React-performancetimeline
+ - React-runtimeexecutor
+ - React-runtimescheduler
+ - React-utils
+ - React-runtimeexecutor (0.76.1):
+ - React-jsi (= 0.76.1)
+ - React-RuntimeHermes (0.76.1):
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2024.01.01.00)
+ - React-featureflags
+ - React-hermes
+ - React-jsi
+ - React-jsinspector
+ - React-jsitracing
+ - React-nativeconfig
+ - React-RuntimeCore
+ - React-utils
+ - React-runtimescheduler (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker
+ - React-cxxreact
+ - React-debug
+ - React-featureflags
+ - React-jsi
+ - React-performancetimeline
+ - React-rendererconsistency
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-timing
+ - React-utils
+ - React-timing (0.76.1)
+ - React-utils (0.76.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - React-debug
+ - React-jsi (= 0.76.1)
+ - ReactCodegen (0.76.1):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricImage
+ - React-featureflags
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-NativeModulesApple
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - ReactCommon (0.76.1):
+ - ReactCommon/turbomodule (= 0.76.1)
+ - ReactCommon/turbomodule (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker (= 0.76.1)
+ - React-cxxreact (= 0.76.1)
+ - React-jsi (= 0.76.1)
+ - React-logger (= 0.76.1)
+ - React-perflogger (= 0.76.1)
+ - ReactCommon/turbomodule/bridging (= 0.76.1)
+ - ReactCommon/turbomodule/core (= 0.76.1)
+ - ReactCommon/turbomodule/bridging (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker (= 0.76.1)
+ - React-cxxreact (= 0.76.1)
+ - React-jsi (= 0.76.1)
+ - React-logger (= 0.76.1)
+ - React-perflogger (= 0.76.1)
+ - ReactCommon/turbomodule/core (0.76.1):
+ - DoubleConversion
+ - fmt (= 9.1.0)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - React-callinvoker (= 0.76.1)
+ - React-cxxreact (= 0.76.1)
+ - React-debug (= 0.76.1)
+ - React-featureflags (= 0.76.1)
+ - React-jsi (= 0.76.1)
+ - React-logger (= 0.76.1)
+ - React-perflogger (= 0.76.1)
+ - React-utils (= 0.76.1)
+ - RNAudioRecorderPlayer (3.6.12):
+ - React-Core
+ - RNCAsyncStorage (2.0.0):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
- Yoga
- - React-Core/RCTImageHeaders (0.70.9):
+ - RNCMaskedView (0.3.2):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
- Yoga
- - React-Core/RCTLinkingHeaders (0.70.9):
+ - RNCPicker (2.9.0):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
- Yoga
- - React-Core/RCTNetworkHeaders (0.70.9):
+ - RNDeviceInfo (14.0.0):
+ - React-Core
+ - RNFS (2.20.0):
+ - React-Core
+ - RNGestureHandler (2.20.2):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
- Yoga
- - React-Core/RCTSettingsHeaders (0.70.9):
+ - RNPermissions (5.1.0):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
- Yoga
- - React-Core/RCTTextHeaders (0.70.9):
+ - RNReanimated (3.16.1):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - RNReanimated/reanimated (= 3.16.1)
+ - RNReanimated/worklets (= 3.16.1)
- Yoga
- - React-Core/RCTVibrationHeaders (0.70.9):
+ - RNReanimated/reanimated (3.16.1):
+ - DoubleConversion
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
- - Yoga
- - React-Core/RCTWebSocket (0.70.9):
- - glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default (= 0.70.9)
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-perflogger (= 0.70.9)
- - Yoga
- - React-CoreModules (0.70.9):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.70.9)
- - React-Codegen (= 0.70.9)
- - React-Core/CoreModulesHeaders (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-RCTImage (= 0.70.9)
- - ReactCommon/turbomodule/core (= 0.70.9)
- - React-cxxreact (0.70.9):
- - boost (= 1.76.0)
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.07.22.00)
- - React-callinvoker (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsinspector (= 0.70.9)
- - React-logger (= 0.70.9)
- - React-perflogger (= 0.70.9)
- - React-runtimeexecutor (= 0.70.9)
- - React-hermes (0.70.9):
- - DoubleConversion
- - glog
- - hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - RCT-Folly/Futures (= 2021.07.22.00)
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-jsiexecutor (= 0.70.9)
- - React-jsinspector (= 0.70.9)
- - React-perflogger (= 0.70.9)
- - React-jsi (0.70.9):
- - boost (= 1.76.0)
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.07.22.00)
- - React-jsi/Default (= 0.70.9)
- - React-jsi/Default (0.70.9):
- - boost (= 1.76.0)
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.07.22.00)
- - React-jsiexecutor (0.70.9):
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.07.22.00)
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-perflogger (= 0.70.9)
- - React-jsinspector (0.70.9)
- - React-logger (0.70.9):
- - glog
- - react-native-camera (4.2.1):
- - React-Core
- - react-native-camera/RCT (= 4.2.1)
- - react-native-camera/RN (= 4.2.1)
- - react-native-camera/BarcodeDetectorMLKit (4.2.1):
- - GoogleMLKit/BarcodeScanning
- - React-Core
- - react-native-camera/RCT
- - react-native-camera/RN
- - react-native-camera/RCT (4.2.1):
- - React-Core
- - react-native-camera/RN (4.2.1):
- - React-Core
- - react-native-safe-area-context (4.9.0):
- - React-Core
- - react-native-splash-screen (3.3.0):
- - React-Core
- - React-perflogger (0.70.9)
- - React-RCTActionSheet (0.70.9):
- - React-Core/RCTActionSheetHeaders (= 0.70.9)
- - React-RCTAnimation (0.70.9):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.70.9)
- - React-Codegen (= 0.70.9)
- - React-Core/RCTAnimationHeaders (= 0.70.9)
- - React-jsi (= 0.70.9)
- - ReactCommon/turbomodule/core (= 0.70.9)
- - React-RCTBlob (0.70.9):
- - RCT-Folly (= 2021.07.22.00)
- - React-Codegen (= 0.70.9)
- - React-Core/RCTBlobHeaders (= 0.70.9)
- - React-Core/RCTWebSocket (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-RCTNetwork (= 0.70.9)
- - ReactCommon/turbomodule/core (= 0.70.9)
- - React-RCTImage (0.70.9):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.70.9)
- - React-Codegen (= 0.70.9)
- - React-Core/RCTImageHeaders (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-RCTNetwork (= 0.70.9)
- - ReactCommon/turbomodule/core (= 0.70.9)
- - React-RCTLinking (0.70.9):
- - React-Codegen (= 0.70.9)
- - React-Core/RCTLinkingHeaders (= 0.70.9)
- - React-jsi (= 0.70.9)
- - ReactCommon/turbomodule/core (= 0.70.9)
- - React-RCTNetwork (0.70.9):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.70.9)
- - React-Codegen (= 0.70.9)
- - React-Core/RCTNetworkHeaders (= 0.70.9)
- - React-jsi (= 0.70.9)
- - ReactCommon/turbomodule/core (= 0.70.9)
- - React-RCTSettings (0.70.9):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.70.9)
- - React-Codegen (= 0.70.9)
- - React-Core/RCTSettingsHeaders (= 0.70.9)
- - React-jsi (= 0.70.9)
- - ReactCommon/turbomodule/core (= 0.70.9)
- - React-RCTText (0.70.9):
- - React-Core/RCTTextHeaders (= 0.70.9)
- - React-RCTVibration (0.70.9):
- - RCT-Folly (= 2021.07.22.00)
- - React-Codegen (= 0.70.9)
- - React-Core/RCTVibrationHeaders (= 0.70.9)
- - React-jsi (= 0.70.9)
- - ReactCommon/turbomodule/core (= 0.70.9)
- - React-runtimeexecutor (0.70.9):
- - React-jsi (= 0.70.9)
- - ReactCommon/turbomodule/core (0.70.9):
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.07.22.00)
- - React-bridging (= 0.70.9)
- - React-callinvoker (= 0.70.9)
- - React-Core (= 0.70.9)
- - React-cxxreact (= 0.70.9)
- - React-jsi (= 0.70.9)
- - React-logger (= 0.70.9)
- - React-perflogger (= 0.70.9)
- - RNAudioRecorderPlayer (3.5.1):
- - React-Core
- - RNCAsyncStorage (1.23.1):
- - React-Core
- - RNCMaskedView (0.3.1):
- - React-Core
- - RNCPicker (2.7.2):
- - React-Core
- - RNDeviceInfo (10.13.1):
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
- - RNFS (2.20.0):
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - RNReanimated/reanimated/apple (= 3.16.1)
+ - Yoga
+ - RNReanimated/reanimated/apple (3.16.1):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
- - RNGestureHandler (2.9.0):
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - RNReanimated/worklets (3.16.1):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
- - RNImageCropPicker (0.40.3):
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - RNScreens (3.35.0):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
- React-RCTImage
- - RNImageCropPicker/QBImagePickerController (= 0.40.3)
- - TOCropViewController
- - RNImageCropPicker/QBImagePickerController (0.40.3):
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - RNScreens/common (= 3.35.0)
+ - Yoga
+ - RNScreens/common (3.35.0):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
- React-RCTImage
- - TOCropViewController
- - RNPermissions (4.1.5):
- - React-Core
- - RNReanimated (2.17.0):
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - RNSentry (5.35.0):
- DoubleConversion
- - FBLazyVector
- - FBReactNativeSpec
- glog
- - RCT-Folly
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
- - React-callinvoker
- React-Core
- - React-Core/DevSupport
- - React-Core/RCTWebSocket
- - React-CoreModules
- - React-cxxreact
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-RCTActionSheet
- - React-RCTAnimation
- - React-RCTBlob
- - React-RCTImage
- - React-RCTLinking
- - React-RCTNetwork
- - React-RCTSettings
- - React-RCTText
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-hermes
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
+ - Sentry/HybridSDK (= 8.37.0)
- Yoga
- - RNScreens (3.18.2):
+ - RNSoundPlayer (0.14.3):
- React-Core
- - React-RCTImage
- - RNSentry (5.20.0):
+ - RNSVG (15.9.0):
+ - DoubleConversion
+ - glog
- hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
- - React-hermes
- - Sentry/HybridSDK (= 8.21.0)
- - RNSoundPlayer (0.13.2):
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - RNSVG/common (= 15.9.0)
+ - Yoga
+ - RNSVG/common (15.9.0):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - RNVectorIcons (10.2.0):
+ - DoubleConversion
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2024.01.01.00)
+ - RCTRequired
+ - RCTTypeSafety
- React-Core
- - RNSVG (15.1.0):
+ - React-debug
+ - React-Fabric
+ - React-featureflags
+ - React-graphics
+ - React-ImageManager
+ - React-NativeModulesApple
+ - React-RCTFabric
+ - React-rendererdebug
+ - React-utils
+ - ReactCodegen
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - Sentry/HybridSDK (8.37.0)
+ - SocketRocket (0.7.1)
+ - TextToSpeech (4.1.1):
- React-Core
- - RNVectorIcons (10.0.3):
+ - VisionCamera (4.6.1):
+ - VisionCamera/Core (= 4.6.1)
+ - VisionCamera/React (= 4.6.1)
+ - VisionCamera/Core (4.6.1)
+ - VisionCamera/React (4.6.1):
- React-Core
- - Sentry/HybridSDK (8.21.0):
- - SentryPrivate (= 8.21.0)
- - SentryPrivate (8.21.0)
- - TextToSpeech (4.1.0):
- - React
- - TOCropViewController (2.6.1)
- - Yoga (1.14.0)
+ - Yoga (0.0.0)
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`)
+ - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
- - hermes-engine (from `../node_modules/react-native/sdks/hermes/hermes-engine.podspec`)
- - libevent (~> 2.1.12)
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
+ - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
+ - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
+ - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
- React (from `../node_modules/react-native/`)
- - React-bridging (from `../node_modules/react-native/ReactCommon`)
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
- - React-Codegen (from `build/generated/ios`)
- React-Core (from `../node_modules/react-native/`)
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
- 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-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
+ - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
+ - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
+ - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
+ - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
- React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
+ - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
+ - 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-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
- - react-native-camera (from `../node_modules/react-native-camera`)
- - react-native-camera/BarcodeDetectorMLKit (from `../node_modules/react-native-camera`)
+ - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
+ - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
+ - react-native-image-picker (from `../node_modules/react-native-image-picker`)
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
- - react-native-splash-screen (from `../node_modules/react-native-splash-screen`)
+ - 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-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
- 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-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
+ - React-rncore (from `../node_modules/react-native/ReactCommon`)
+ - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
+ - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
+ - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
+ - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
+ - ReactCodegen (from `build/generated/ios`)
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
- RNAudioRecorderPlayer (from `../node_modules/react-native-audio-recorder-player`)
- "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
@@ -500,7 +2014,6 @@ DEPENDENCIES:
- RNDeviceInfo (from `../node_modules/react-native-device-info`)
- RNFS (from `../node_modules/react-native-fs`)
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
- - RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`)
- RNPermissions (from `../node_modules/react-native-permissions`)
- RNReanimated (from `../node_modules/react-native-reanimated`)
- RNScreens (from `../node_modules/react-native-screens`)
@@ -509,28 +2022,13 @@ DEPENDENCIES:
- RNSVG (from `../node_modules/react-native-svg`)
- RNVectorIcons (from `../node_modules/react-native-vector-icons`)
- TextToSpeech (from `../node_modules/react-native-tts`)
+ - VisionCamera (from `../node_modules/react-native-vision-camera`)
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
SPEC REPOS:
trunk:
- - fmt
- - GoogleDataTransport
- - GoogleMLKit
- - GoogleToolboxForMac
- - GoogleUtilities
- - GoogleUtilitiesComponents
- - GTMSessionFetcher
- - libevent
- - MLImage
- - MLKitBarcodeScanning
- - MLKitCommon
- - MLKitVision
- - nanopb
- - PromisesObjC
- - Protobuf
- Sentry
- - SentryPrivate
- - TOCropViewController
+ - SocketRocket
EXTERNAL SOURCES:
boost:
@@ -539,56 +2037,93 @@ EXTERNAL SOURCES:
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
FBLazyVector:
:path: "../node_modules/react-native/Libraries/FBLazyVector"
- FBReactNativeSpec:
- :path: "../node_modules/react-native/React/FBReactNativeSpec"
+ fmt:
+ :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
glog:
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
hermes-engine:
- :podspec: "../node_modules/react-native/sdks/hermes/hermes-engine.podspec"
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
+ :tag: hermes-2024-09-09-RNv0.76.0-db6d12e202e15f7a446d8848d6ca8f7abb3cfb32
RCT-Folly:
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
+ RCTDeprecation:
+ :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
RCTRequired:
- :path: "../node_modules/react-native/Libraries/RCTRequired"
+ :path: "../node_modules/react-native/Libraries/Required"
RCTTypeSafety:
:path: "../node_modules/react-native/Libraries/TypeSafety"
React:
:path: "../node_modules/react-native/"
- React-bridging:
- :path: "../node_modules/react-native/ReactCommon"
React-callinvoker:
:path: "../node_modules/react-native/ReactCommon/callinvoker"
- React-Codegen:
- :path: build/generated/ios
React-Core:
:path: "../node_modules/react-native/"
React-CoreModules:
:path: "../node_modules/react-native/React/CoreModules"
React-cxxreact:
:path: "../node_modules/react-native/ReactCommon/cxxreact"
+ React-debug:
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
+ React-defaultsnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
+ React-domnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
+ React-Fabric:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-FabricComponents:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-FabricImage:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-featureflags:
+ :path: "../node_modules/react-native/ReactCommon/react/featureflags"
+ React-featureflagsnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
+ React-graphics:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
React-hermes:
:path: "../node_modules/react-native/ReactCommon/hermes"
+ React-idlecallbacksnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
+ 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-jsitracing:
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
React-logger:
:path: "../node_modules/react-native/ReactCommon/logger"
- react-native-camera:
- :path: "../node_modules/react-native-camera"
+ React-Mapbuffer:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-microtasksnativemodule:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
+ react-native-image-picker:
+ :path: "../node_modules/react-native-image-picker"
react-native-safe-area-context:
:path: "../node_modules/react-native-safe-area-context"
- react-native-splash-screen:
- :path: "../node_modules/react-native-splash-screen"
+ React-nativeconfig:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-NativeModulesApple:
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
React-perflogger:
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
+ React-performancetimeline:
+ :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
React-RCTActionSheet:
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
React-RCTAnimation:
:path: "../node_modules/react-native/Libraries/NativeAnimation"
+ React-RCTAppDelegate:
+ :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:
@@ -601,8 +2136,28 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/Libraries/Text"
React-RCTVibration:
:path: "../node_modules/react-native/Libraries/Vibration"
+ React-rendererconsistency:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
+ React-rendererdebug:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
+ React-rncore:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-RuntimeApple:
+ :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
+ React-RuntimeCore:
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
React-runtimeexecutor:
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
+ React-RuntimeHermes:
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
+ React-runtimescheduler:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
+ React-timing:
+ :path: "../node_modules/react-native/ReactCommon/react/timing"
+ React-utils:
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
+ ReactCodegen:
+ :path: build/generated/ios
ReactCommon:
:path: "../node_modules/react-native/ReactCommon"
RNAudioRecorderPlayer:
@@ -619,8 +2174,6 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-fs"
RNGestureHandler:
:path: "../node_modules/react-native-gesture-handler"
- RNImageCropPicker:
- :path: "../node_modules/react-native-image-crop-picker"
RNPermissions:
:path: "../node_modules/react-native-permissions"
RNReanimated:
@@ -637,82 +2190,96 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-vector-icons"
TextToSpeech:
:path: "../node_modules/react-native-tts"
+ VisionCamera:
+ :path: "../node_modules/react-native-vision-camera"
Yoga:
:path: "../node_modules/react-native/ReactCommon/yoga"
SPEC CHECKSUMS:
- boost: a7c83b31436843459a1961bfd74b96033dc77234
+ boost: 1dca942403ed9342f98334bf4c3621f011aa7946
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
- FBLazyVector: bc76253beb7463b688aa6af913b822ed631de31a
- FBReactNativeSpec: 85d34420d92cb178897de05e3aba90e7a8568162
- fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
+ FBLazyVector: 7075bb12898bc3998fd60f4b7ca422496cc2cdf7
+ fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
- GoogleDataTransport: 1c8145da7117bd68bbbed00cf304edb6a24de00f
- GoogleMLKit: 0017a6a8372e1a182139b9def4d89be5d87ca5a7
- GoogleToolboxForMac: 8bef7c7c5cf7291c687cf5354f39f9db6399ad34
- GoogleUtilities: 1d20a6ad97ef46f67bbdec158ce00563a671ebb7
- GoogleUtilitiesComponents: 679b2c881db3b615a2777504623df6122dd20afe
- GTMSessionFetcher: 5595ec75acf5be50814f81e9189490412bad82ba
- hermes-engine: 918ec5addfbc430c9f443376d739f088b6dc96c3
- libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
- MLImage: 489dfec109f21da8621b28d476401aaf7a0d4ff4
- MLKitBarcodeScanning: d92fe1911001ec36870162c5a0eb206f612b7169
- MLKitCommon: f6da6c5659618c070b50a80db01248ebe2964175
- MLKitVision: 96c96571190b7f63eddf4a12068ce8a8689e0d2c
- nanopb: b552cce312b6c8484180ef47159bc0f65a1f0431
- PromisesObjC: ab77feca74fa2823e7af4249b8326368e61014cb
- Protobuf: 02524ec14183fe08fb259741659e79683788158b
- RCT-Folly: 0080d0a6ebf2577475bda044aa59e2ca1f909cda
- RCTRequired: db184d894eed9e15f1fa80c3372595b7ec360580
- RCTTypeSafety: c9bf4c53ad246e4c94a49d91353ed19a8df5952f
- React: 3ccb97e5c4672199746cefa622fd595d4cc9319d
- React-bridging: 60a99ddb74281e2047f1a85912c7075a75269285
- React-callinvoker: aea0b555a18d03e91d1d10b1c4eacc9d9dfb581a
- React-Codegen: 3d757143a6f27a84958f49466a3b18716845d192
- React-Core: b1e6334eedacb3dc3adae163ccdde5e6ca26d18b
- React-CoreModules: 74122da11de87771f2461c757ab0c29defddd4ea
- React-cxxreact: bbca1cdf5165761529edff94ed117b95ccbc877a
- React-hermes: ee7245fc80f61eee8918a5046ed84b0b740a15f4
- React-jsi: a015cacfe56047914e425d0177133c35409e2462
- React-jsiexecutor: d3f6d9242d4c93e7f0bdb27cb5510003bc98445c
- React-jsinspector: d76d32327f21d4f40dcf696231fdbbca60de4711
- React-logger: 1b3522f1e05c6360e93df3607a016c39e30a7351
- react-native-camera: 3eae183c1d111103963f3dd913b65d01aef8110f
- react-native-safe-area-context: b97eb6f9e3b7f437806c2ce5983f479f8eb5de4b
- react-native-splash-screen: 4312f786b13a81b5169ef346d76d33bc0c6dc457
- React-perflogger: cce000b5caa4bcecbb29ee9cfdb47f26202d2599
- React-RCTActionSheet: ba29f52a82d970e2aba5804490ecaea587c7a751
- React-RCTAnimation: 36efe35933875c9aeea612f7d2c0394fa22552c1
- React-RCTBlob: 8dd4dd76ab8384ceae2bd78141880cb0fdd6640a
- React-RCTImage: 3e779bb3f8e5184b5af19134c7d866f22d60d966
- React-RCTLinking: 5051e59b8a625a82a7bc613687855193a567765c
- React-RCTNetwork: e160ffdb54f0f054911341c2889fd2c541ce0ba7
- React-RCTSettings: 2fc3aaaad0bea7adc1596ff2c54b97a1febe2f7b
- React-RCTText: eb1c72e61dd7dbe2c291c1d6f342cc5da351545b
- React-RCTVibration: 7fee53a28038a1b3c5c66dfd7656e29ac6d5c04d
- React-runtimeexecutor: ed23be8c1e02b73e7e2f88ac7eaab8faf6961a38
- ReactCommon: 153bd73ed963731a8e3e7f03a747b353fed7363e
- RNAudioRecorderPlayer: 308940de4f9d1448a064874fd9d83479ae47c7a7
- RNCAsyncStorage: 826b603ae9c0f88b5ac4e956801f755109fa4d5c
- RNCMaskedView: 090213d32d8b3bb83a4dcb7d12c18f0152591906
- RNCPicker: 82ccad5b08259dc09310082118cbb6c136d7da67
- RNDeviceInfo: 4f9c7cfd6b9db1b05eb919620a001cf35b536423
+ hermes-engine: 46f1ffbf0297f4298862068dd4c274d4ac17a1fd
+ RCT-Folly: bf5c0376ffe4dd2cf438dcf86db385df9fdce648
+ RCTDeprecation: fde92935b3caa6cb65cbff9fbb7d3a9867ffb259
+ RCTRequired: 75c6cee42d21c1530a6f204ba32ff57335d19007
+ RCTTypeSafety: 7e6fe47bfb693c50d4669db1a480ca5331795f5b
+ React: 8e73704cdd5c7f801936776d2fc434c605a7827b
+ React-callinvoker: fa27d1e091e683de88f576e6a5d4efc171929a4c
+ React-Core: 8dd14bffcc9b877091b698e45701160669a31f91
+ React-CoreModules: b4437acf2ef25ce3689c84df661dc5d806559b35
+ React-cxxreact: 6125cd820da7e18f9ca8343b3c42ee61634a4e0d
+ React-debug: f474f5c202a277f76c81bf7cf26284f2c09880d7
+ React-defaultsnativemodule: 7141fa704531cbf7a7e7af3bc02adfa367e831a7
+ React-domnativemodule: c1806b8584a53ed912012a4d8b2c6f96a84c77a3
+ React-Fabric: ba9636cfc7f9b77df6cb7edb2c70d0237026404b
+ React-FabricComponents: c408da05a4ea5ba071732245b4a7f48f904e610a
+ React-FabricImage: c409858f319f11709b49ffa6c5bca4faf794cb44
+ React-featureflags: 929732439d139ac0662e08f009f1a51ed2b91ed3
+ React-featureflagsnativemodule: 02dd903d4cbe4fae0e6cd02bc32a09d30543282f
+ React-graphics: a5cad35307286e9f83e212834e95fef4010d03d0
+ React-hermes: 14aafa9630579b84c2167b563bdb8c811970a03e
+ React-idlecallbacksnativemodule: 69581ac44bd355acce3739c3fe380c0f6d7a6d09
+ React-ImageManager: 41945afb3ace0c52255057ec4ae6af6f5a23539f
+ React-jserrorhandler: ecbc4622df7ab3d0066a4313cde4172d45745508
+ React-jsi: ff383df87c7047e976a66be45df59e4e0db5346e
+ React-jsiexecutor: 2bb8b172f226f2f502521d33dd7666e701d45f45
+ React-jsinspector: 4d51b903543f21076b658ef8412f3102778dbc92
+ React-jsitracing: 654f4d9cb9fd99b3d96f239ceb215ae49ce28ac0
+ React-logger: 97c9dafae1f1a638001a9d1d0e93d431f2f9cb7b
+ React-Mapbuffer: 3146a13424f9fec2ea1f1462d49d566e4d69b732
+ React-microtasksnativemodule: 02d218c79c72d373a92a8552183f4ead0d1c6e05
+ react-native-image-picker: ba5067f7d833b9081102c0a33dd0188eb21d92dc
+ react-native-safe-area-context: 2500e4fe998caad50ad3bc51ec23ef951308569e
+ React-nativeconfig: 93fe8c85a8c40820c57814e30f3e44b94c995a7b
+ React-NativeModulesApple: b3e076fd0d7b73417fe1e8c8b26e3c57ae9b74aa
+ React-perflogger: 1c55bcd3c392137cbaf0d21d8bb87ce9a0cebb15
+ React-performancetimeline: e89249db10b8f7bf8f72c2e9bd471ac37d48b753
+ React-RCTActionSheet: 9407c795fbeee35da2dae3cd6b5c4e5da6ff8bd3
+ React-RCTAnimation: 7ee1c2a77aab7e5c568611d8092a994cfcbe8410
+ React-RCTAppDelegate: 10c2b0c434baf5a71b53d5c86c4d8d0dbd6bb380
+ React-RCTBlob: 761072706300d22624ec2d6bf860b77d95ebd3da
+ React-RCTFabric: 871d38933a94554d9e27963aa4bb67184dc7529e
+ React-RCTImage: b6614fde902ec9647f15236da94df2d24c40523f
+ React-RCTLinking: 25950eda5d5f786bfb3daf513ea7d848555a2a93
+ React-RCTNetwork: b69407c4119fd7a1cc07db4a94563f2546f8770d
+ React-RCTSettings: b310a4923446c3a8950fa866c8cf83323a9e1b87
+ React-RCTText: 77c6eda5be1dee657f5183f75fe0fdcdb7b2b35d
+ React-RCTVibration: b4889c7702aea1b07316be1ec0de2e36e9a4d077
+ React-rendererconsistency: 5ef1c4642fd6365bf6d5d4e29a3ae02c3a1b8980
+ React-rendererdebug: 7f6a24cbb5008a22ccb34a0d031a259b006facf6
+ React-rncore: 0e5394ce20a9d2bf12409d14395588c7b9e6e9ce
+ React-RuntimeApple: bbe293f233d17304c9597309acde7505080fd53d
+ React-RuntimeCore: 5a1cbfc3e7af4fbdea2b9b1efd39cd51a4d4006f
+ React-runtimeexecutor: ffac5f09795a5e881477e0d72a0fa6385456bed3
+ React-RuntimeHermes: 0a1fd1c150faed8341887dd89895eeb8d4d2d3c5
+ React-runtimescheduler: e7df538274de0c65736068e40efc0d2228f42d0d
+ React-timing: b3b233fe819d9e5b6ca32b605aa732621bdfa5aa
+ React-utils: 5362bd16a9563f9916e7a56c011ddc533507650f
+ ReactCodegen: 865bafc5c17ec2181620ced1a32c39c38ab2951d
+ ReactCommon: 422e364463f33e336fc4db196aeb50fd801d90d6
+ RNAudioRecorderPlayer: 224c7de87722938aedce04000d09baa633148f5b
+ RNCAsyncStorage: 597673c6086d359029afefef8fd5859f1f35ab87
+ RNCMaskedView: c22a01dd2d0744c16b56e06eb8720512b900988c
+ RNCPicker: b978067931744f5a7316b48b8dcf145d4d722672
+ RNDeviceInfo: 6192a9c9167e256803e554038b22b3b2b40163dc
RNFS: 4ac0f0ea233904cb798630b3c077808c06931688
- RNGestureHandler: 071d7a9ad81e8b83fe7663b303d132406a7d8f39
- RNImageCropPicker: e7ab6fb43d2fc3e84651e786ef4a080d63b0ed3d
- RNPermissions: 21eb37e6d608f1c0e5337e149bc9a64d5efba8a6
- RNReanimated: bec7736122a268883bdede07f1bf9cf4b40158db
- RNScreens: 34cc502acf1b916c582c60003dc3089fa01dc66d
- RNSentry: 5381e9284aec59a546e4a7d40e33ad0839b99c1e
- RNSoundPlayer: 369105c565b8fe6ea0a43fc882dc81eba444e842
- RNSVG: 50cf2c7018e57cf5d3522d98d0a3a4dd6bf9d093
- RNVectorIcons: bc7ee28cadf39c77a49232a14738dfce690f66cd
- Sentry: ebc12276bd17613a114ab359074096b6b3725203
- SentryPrivate: d651efb234cf385ec9a1cdd3eff94b5e78a0e0fe
- TextToSpeech: b3aa777ff5585705f179c0a2436bfd0926d1716e
- TOCropViewController: edfd4f25713d56905ad1e0b9f5be3fbe0f59c863
- Yoga: dc109b79db907f0f589fc423e991b09ec42d2295
+ RNGestureHandler: fc5ce5bf284640d3af6431c3a5c3bc121e98d045
+ RNPermissions: d411018addac964cb2c5d8556163e1fbc8089ace
+ RNReanimated: 77242c6d67416988a2fd9f5cf574bb3e60016362
+ RNScreens: e389d6a6a66a4f0d3662924ecae803073ccce8ec
+ RNSentry: 7a6805aabd54413e582cc7b86f5b60840799f775
+ RNSoundPlayer: 490822518cc1d6d80495ca7e3223df5869c30851
+ RNSVG: b2fbe96b2bb3887752f8abc1f495953847e90384
+ RNVectorIcons: 07792a9538e8577c1263fcad187712e90d65d8fb
+ Sentry: ee060c09b2f7ec1240e95c766ab44c04c7bdb052
+ SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
+ TextToSpeech: 2b930ec3756afde499061f4f01ea895e1f75dccb
+ VisionCamera: c95a8ad535f527562be1fb05fb2fd324578e769c
+ Yoga: 157bed1c62656587df4639d4dc29714898f8fb10
-PODFILE CHECKSUM: 22bf9bd9952cddf3cb70df6b3631afd6ce85db78
+PODFILE CHECKSUM: 15651b8fd6741c5d7dc4e0a7399d820b2bab5596
COCOAPODS: 1.14.3
diff --git a/ios/PrivacyInfo.xcprivacy b/ios/PrivacyInfo.xcprivacy
new file mode 100644
index 000000000..73661ec65
--- /dev/null
+++ b/ios/PrivacyInfo.xcprivacy
@@ -0,0 +1,45 @@
+
+
+
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryFileTimestamp
+ NSPrivacyAccessedAPITypeReasons
+
+ C617.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategorySystemBootTime
+ NSPrivacyAccessedAPITypeReasons
+
+ 35F9.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryUserDefaults
+ NSPrivacyAccessedAPITypeReasons
+
+ CA92.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryDiskSpace
+ NSPrivacyAccessedAPITypeReasons
+
+ 85F4.1
+
+
+
+ NSPrivacyCollectedDataTypes
+
+ NSPrivacyTracking
+
+
+
diff --git a/jest.config.ts b/jest.config.ts
index 41212210c..a1d0d405f 100644
--- a/jest.config.ts
+++ b/jest.config.ts
@@ -7,7 +7,6 @@ export default {
automock: false,
moduleDirectories: ['node_modules'],
moduleNameMapper: {
- '.+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub',
'\\.svg': '/src/__mocks__/svgrMock.js',
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
diff --git a/jest.setup.ts b/jest.setup.ts
index ae8f52e5e..39194d605 100644
--- a/jest.setup.ts
+++ b/jest.setup.ts
@@ -1,5 +1,6 @@
import mockAsyncStorage from '@react-native-async-storage/async-storage/jest/async-storage-mock'
import '@testing-library/jest-native/extend-expect'
+import { Animated } from 'react-native'
import 'react-native-gesture-handler/jestSetup'
import mockSafeAreaContext from 'react-native-safe-area-context/jest/mock'
@@ -15,8 +16,6 @@ jest.mock('react-native-reanimated', () => {
return Reanimated
})
-// Silence the warning: Animated: `useNativeDriver` is not supported because the native animated module is missing
-jest.mock('react-native/Libraries/Animated/NativeAnimatedHelper')
jest.mock('react-native/Libraries/EventEmitter/NativeEventEmitter')
jest.mock('@react-native-async-storage/async-storage', () => mockAsyncStorage)
@@ -33,3 +32,8 @@ beforeEach(() => {
jest.clearAllMocks()
mockAsyncStorage.clear()
})
+
+// @ts-expect-error https://github.com/software-mansion/react-native-reanimated/issues/2766#issuecomment-1569765201
+Animated.timing = () => ({
+ start: () => jest.fn(),
+})
diff --git a/metro.config.ci.js b/metro.config.ci.js
index 9703edf7c..f59fceba2 100644
--- a/metro.config.ci.js
+++ b/metro.config.ci.js
@@ -1,15 +1,12 @@
-// eslint-disable-next-line @typescript-eslint/no-var-requires
+// eslint-disable-next-line @typescript-eslint/no-var-requires,@typescript-eslint/no-require-imports
const defaultConfig = require('./metro.config.js')
-module.exports = (async () => {
- const config = await defaultConfig
- return {
- ...config,
- // eslint-disable-next-line
- maxWorkers: process.env.TOTAL_CPUS || 1 /* CircleCI: The issue with this on Dockerized services such as CircleCI is
+module.exports = {
+ ...defaultConfig,
+ // eslint-disable-next-line
+ maxWorkers: process.env.TOTAL_CPUS || 1 /* CircleCI: The issue with this on Dockerized services such as CircleCI is
that the container thinks it has access to all of the hosts cores,
although its being limited down to 4 by another process.
https://github.com/facebook/create-react-app/issues/4870 */,
- cacheStores: [],
- }
-})()
+ cacheStores: [],
+}
diff --git a/metro.config.js b/metro.config.js
index 3e489fca3..befae901d 100644
--- a/metro.config.js
+++ b/metro.config.js
@@ -1,31 +1,26 @@
+const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config')
+const { wrapWithReanimatedMetroConfig } = require('react-native-reanimated/metro-config')
+
/**
- * Metro configuration for React Native
- * https://github.com/facebook/react-native
- *
- * @format
+ * Metro configuration
+ * https://reactnative.dev/docs/metro
*/
-const { getDefaultConfig } = require('metro-config')
+/** @type {import('metro-config').MetroConfig} */
+const defaultConfig = getDefaultConfig(__dirname)
+const {
+ resolver: { assetExts, sourceExts },
+} = defaultConfig
+
+/** @type {import('metro-config').MetroConfig} */
+const config = {
+ resolver: {
+ assetExts: assetExts.filter(ext => ext !== 'svg'),
+ sourceExts: [...sourceExts, 'svg'],
+ },
+ transformer: {
+ babelTransformerPath: require.resolve('react-native-svg-transformer'),
+ },
+}
-module.exports = (async () => {
- const {
- resolver: { sourceExts, assetExts },
- } = await getDefaultConfig()
- return {
- transformer: {
- getTransformOptions: async () => ({
- transform: {
- experimentalImportSupport: false,
- inlineRequires: true,
- },
- }),
- babelTransformerPath: require.resolve('react-native-svg-transformer'),
- },
- resolver: {
- assetExts: [...assetExts.filter(ext => ext !== 'svg')],
- // 'cjs' file extension needed for axios-cache-interceptor
- // https://github.com/facebook/metro/issues/535
- sourceExts: [...sourceExts, 'svg', 'cjs'],
- },
- }
-})()
+module.exports = wrapWithReanimatedMetroConfig(mergeConfig(getDefaultConfig(__dirname), config))
diff --git a/package.json b/package.json
index 5f49bbf0c..e48a27a29 100644
--- a/package.json
+++ b/package.json
@@ -4,8 +4,8 @@
"private": true,
"packageManager": "yarn@3.2.2",
"scripts": {
- "android": "react-native run-android --no-packager",
- "android:production": "react-native run-android --no-packager --variant=release",
+ "android": "react-native run-android --no-packager --active-arch-only",
+ "android:production": "react-native run-android --no-packager --mode=release",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest --verbose --maxWorkers=1",
@@ -23,89 +23,88 @@
"create-release-note": "bash ./release-notes/createReleaseNotes.sh $1"
},
"dependencies": {
- "@react-native-async-storage/async-storage": "^1.23.1",
- "@react-native-masked-view/masked-view": "^0.3.1",
- "@react-native-picker/picker": "^2.7.2",
- "@react-navigation/bottom-tabs": "^6.5.20",
- "@react-navigation/elements": "^1.3.30",
- "@react-navigation/native": "6.1.17",
- "@react-navigation/stack": "6.3.29",
- "@sentry/react-native": "^5.20.0",
- "@sentry/types": "^7.108.0",
- "axios": "^1.6.8",
- "axios-cache-interceptor": "1.5.1",
- "deprecated-react-native-prop-types": "^4.0.0",
+ "@react-native-async-storage/async-storage": "^2.0.0",
+ "@react-native-masked-view/masked-view": "^0.3.2",
+ "@react-native-picker/picker": "^2.9.0",
+ "@react-navigation/bottom-tabs": "^6.6.1",
+ "@react-navigation/elements": "^1.3.31",
+ "@react-navigation/native": "6.1.18",
+ "@react-navigation/stack": "6.4.1",
+ "@sentry/react-native": "^5.35.0",
+ "@sentry/types": "^8.38.0",
+ "axios": "^1.7.7",
+ "axios-cache-interceptor": "1.6.2",
"normalize-strings": "^1.1.1",
- "react": "18.1.0",
- "react-native": "0.70.9",
- "react-native-audio-recorder-player": "3.5.1",
- "react-native-device-info": "^10.13.1",
- "react-native-element-dropdown": "^2.10.4",
+ "react": "18.3.1",
+ "react-native": "0.76.1",
+ "react-native-audio-recorder-player": "^3.6.12",
+ "react-native-device-info": "^14.0.0",
+ "react-native-element-dropdown": "^2.12.2",
"react-native-fs": "^2.20.0",
- "react-native-gesture-handler": "2.9.0",
+ "react-native-gesture-handler": "^2.20.2",
"react-native-image-picker": "^7.1.2",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
- "react-native-paper": "5.12.3",
- "react-native-permissions": "^4.1.5",
- "react-native-popover-view": "^5.1.8",
+ "react-native-paper": "5.12.5",
+ "react-native-permissions": "^5.1.0",
+ "react-native-popover-view": "^5.1.9",
"react-native-progress": "^5.0.1",
- "react-native-reanimated": "2.17.0",
+ "react-native-reanimated": "^3.16.1",
"react-native-responsive-screen": "^1.4.2",
- "react-native-safe-area-context": "^4.9.0",
- "react-native-screens": "3.18.2",
- "react-native-sound-player": "0.13.2",
- "react-native-splash-screen": "^3.3.0",
- "react-native-svg": "^15.1.0",
- "react-native-svg-transformer": "^1.3.0",
- "react-native-tts": "4.1.0",
- "react-native-vector-icons": "^10.0.3",
- "react-native-vision-camera": "^4.5.3",
- "react-navigation-header-buttons": "^10.0.0",
+ "react-native-safe-area-context": "^4.14.0",
+ "react-native-screens": "^3.35.0",
+ "react-native-sound-player": "0.14.3",
+ "react-native-svg": "^15.9.0",
+ "react-native-svg-transformer": "^1.5.0",
+ "react-native-tts": "4.1.1",
+ "react-native-vector-icons": "^10.2.0",
+ "react-native-vision-camera": "^4.6.1",
+ "react-navigation-header-buttons": "^11.2.1",
"string-similarity": "^4.0.4",
- "styled-components": "^6.1.8",
+ "styled-components": "^6.1.13",
"victory-native": "^36.9.2"
},
"devDependencies": {
- "@babel/core": "^7.24.3",
+ "@babel/core": "^7.26.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
- "@babel/preset-env": "^7.24.3",
- "@babel/preset-typescript": "^7.24.1",
- "@babel/runtime": "^7.24.1",
+ "@babel/preset-env": "^7.26.0",
+ "@babel/preset-typescript": "^7.26.0",
+ "@babel/runtime": "^7.26.0",
+ "@react-native-community/cli": "15.1.2",
+ "@react-native-community/cli-platform-android": "15.1.2",
+ "@react-native-community/cli-platform-ios": "15.1.2",
+ "@react-native/babel-preset": "0.76.1",
+ "@react-native/metro-config": "0.76.1",
"@testing-library/jest-native": "^5.4.3",
- "@testing-library/react-native": "^12.4.4",
+ "@testing-library/react-native": "^12.8.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
- "@types/babel__core": "^7",
- "@types/jest": "^29.5.12",
- "@types/node": "^20.11.30",
- "@types/react-native": "^0.70.19",
- "@types/react-test-renderer": "^18.0.7",
+ "@types/jest": "^29.5.14",
+ "@types/node": "^20.17.6",
+ "@types/react-test-renderer": "^18.3.0",
"@types/string-similarity": "^4.0.2",
"@types/uniqid": "^5.3.4",
- "@typescript-eslint/eslint-plugin": "^7.4.0",
- "@typescript-eslint/parser": "^7.4.0",
- "eslint": "^8.57.0",
+ "@typescript-eslint/eslint-plugin": "^8.14.0",
+ "@typescript-eslint/parser": "^8.14.0",
+ "babel-jest": "^29.7.0",
+ "eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-diff": "^2.0.3",
- "eslint-plugin-import": "^2.29.1",
- "eslint-plugin-jest": "^27.9.0",
- "eslint-plugin-jsx-a11y": "^6.8.0",
+ "eslint-plugin-import": "^2.31.0",
+ "eslint-plugin-jest": "^28.9.0",
+ "eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-jsx-expressions": "^1.3.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
- "eslint-plugin-promise": "^6.1.1",
- "eslint-plugin-react": "^7.34.1",
- "eslint-plugin-react-hooks": "^4.6.0",
+ "eslint-plugin-promise": "^7.1.0",
+ "eslint-plugin-react": "^7.37.2",
+ "eslint-plugin-react-hooks": "^5.0.0",
"jest": "^29.7.0",
- "jest-transform-stub": "^2.0.0",
- "metro-react-native-babel-preset": "0.72.3",
"patch-package": "^8.0.0",
- "prettier": "^3.2.5",
- "react-dom": "18.2.0",
- "react-test-renderer": "18.2.0",
- "ts-jest": "^29.1.2",
+ "prettier": "^3.3.3",
+ "react-test-renderer": "^18.3.1",
+ "ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
- "typescript": "^5.4.3"
+ "typescript": "^5.6.3"
}
}
diff --git a/patches/react-native-audio-recorder-player+3.5.1.patch b/patches/react-native-audio-recorder-player+3.5.1.patch
deleted file mode 100644
index 6a02ee125..000000000
--- a/patches/react-native-audio-recorder-player+3.5.1.patch
+++ /dev/null
@@ -1,4025 +0,0 @@
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/.transforms/1074abf937aa2e6e3bf6d87bd7a32c8e/results.bin b/node_modules/react-native-audio-recorder-player/android/build/.transforms/1074abf937aa2e6e3bf6d87bd7a32c8e/results.bin
-new file mode 100644
-index 0000000..1ed65e0
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/.transforms/1074abf937aa2e6e3bf6d87bd7a32c8e/results.bin
-@@ -0,0 +1 @@
-+i/
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/results.bin b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/results.bin
-new file mode 100644
-index 0000000..5ff383e
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/results.bin
-@@ -0,0 +1 @@
-+o/debug
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/BuildConfig.dex b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/BuildConfig.dex
-new file mode 100644
-index 0000000..42766a7
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/BuildConfig.dex differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$Companion.dex b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$Companion.dex
-new file mode 100644
-index 0000000..22958b2
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$Companion.dex differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startPlayer$1$1.dex b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startPlayer$1$1.dex
-new file mode 100644
-index 0000000..4a70684
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startPlayer$1$1.dex differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startRecorder$1.dex b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startRecorder$1.dex
-new file mode 100644
-index 0000000..c7495ed
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startRecorder$1.dex differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule.dex b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule.dex
-new file mode 100644
-index 0000000..9824c2d
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule.dex differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerPackage.dex b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerPackage.dex
-new file mode 100644
-index 0000000..7e1e07c
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerPackage.dex differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/desugar_graph.bin b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/desugar_graph.bin
-new file mode 100644
-index 0000000..601f245
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/.transforms/9e91f1e88ba1d332c42e5e80e74458d0/transformed/desugar_graph.bin differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/generated/source/buildConfig/debug/com/dooboolab/audiorecorderplayer/BuildConfig.java b/node_modules/react-native-audio-recorder-player/android/build/generated/source/buildConfig/debug/com/dooboolab/audiorecorderplayer/BuildConfig.java
-new file mode 100644
-index 0000000..40a8c21
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/generated/source/buildConfig/debug/com/dooboolab/audiorecorderplayer/BuildConfig.java
-@@ -0,0 +1,10 @@
-+/**
-+ * Automatically generated file. DO NOT MODIFY
-+ */
-+package com.dooboolab.audiorecorderplayer;
-+
-+public final class BuildConfig {
-+ public static final boolean DEBUG = Boolean.parseBoolean("true");
-+ public static final String LIBRARY_PACKAGE_NAME = "com.dooboolab.audiorecorderplayer";
-+ public static final String BUILD_TYPE = "debug";
-+}
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/node_modules/react-native-audio-recorder-player/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml
-new file mode 100644
-index 0000000..da15c6f
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml
-@@ -0,0 +1,11 @@
-+
-+
-+
-+
-+
-+
-+
-+
-\ No newline at end of file
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json b/node_modules/react-native-audio-recorder-player/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json
-new file mode 100644
-index 0000000..250fb66
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json
-@@ -0,0 +1,16 @@
-+{
-+ "version": 2,
-+ "artifactType": {
-+ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
-+ "kind": "Directory"
-+ },
-+ "applicationId": "com.dooboolab.audiorecorderplayer",
-+ "variantName": "debug",
-+ "elements": [
-+ {
-+ "type": "SINGLE",
-+ "filters": [],
-+ "outputFile": "AndroidManifest.xml"
-+ }
-+ ]
-+}
-\ No newline at end of file
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/aar_metadata/debug/aar-metadata.properties b/node_modules/react-native-audio-recorder-player/android/build/intermediates/aar_metadata/debug/aar-metadata.properties
-new file mode 100644
-index 0000000..d8560bd
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/aar_metadata/debug/aar-metadata.properties
-@@ -0,0 +1,2 @@
-+aarFormatVersion=1.0
-+aarMetadataVersion=1.0
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/node_modules/react-native-audio-recorder-player/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json
-new file mode 100644
-index 0000000..9e26dfe
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json
-@@ -0,0 +1 @@
-+{}
-\ No newline at end of file
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/compile_library_classes_jar/debug/classes.jar b/node_modules/react-native-audio-recorder-player/android/build/intermediates/compile_library_classes_jar/debug/classes.jar
-new file mode 100644
-index 0000000..762ce0e
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/intermediates/compile_library_classes_jar/debug/classes.jar differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/compile_r_class_jar/debug/R.jar b/node_modules/react-native-audio-recorder-player/android/build/intermediates/compile_r_class_jar/debug/R.jar
-new file mode 100644
-index 0000000..df5c0fe
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/intermediates/compile_r_class_jar/debug/R.jar differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/compile_symbol_list/debug/R.txt b/node_modules/react-native-audio-recorder-player/android/build/intermediates/compile_symbol_list/debug/R.txt
-new file mode 100644
-index 0000000..d20252e
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/compile_symbol_list/debug/R.txt
-@@ -0,0 +1,1874 @@
-+int anim abc_fade_in 0x0
-+int anim abc_fade_out 0x0
-+int anim abc_grow_fade_in_from_bottom 0x0
-+int anim abc_popup_enter 0x0
-+int anim abc_popup_exit 0x0
-+int anim abc_shrink_fade_out_from_bottom 0x0
-+int anim abc_slide_in_bottom 0x0
-+int anim abc_slide_in_top 0x0
-+int anim abc_slide_out_bottom 0x0
-+int anim abc_slide_out_top 0x0
-+int anim abc_tooltip_enter 0x0
-+int anim abc_tooltip_exit 0x0
-+int anim catalyst_fade_in 0x0
-+int anim catalyst_fade_out 0x0
-+int anim catalyst_push_up_in 0x0
-+int anim catalyst_push_up_out 0x0
-+int anim catalyst_slide_down 0x0
-+int anim catalyst_slide_up 0x0
-+int attr actionBarDivider 0x0
-+int attr actionBarItemBackground 0x0
-+int attr actionBarPopupTheme 0x0
-+int attr actionBarSize 0x0
-+int attr actionBarSplitStyle 0x0
-+int attr actionBarStyle 0x0
-+int attr actionBarTabBarStyle 0x0
-+int attr actionBarTabStyle 0x0
-+int attr actionBarTabTextStyle 0x0
-+int attr actionBarTheme 0x0
-+int attr actionBarWidgetTheme 0x0
-+int attr actionButtonStyle 0x0
-+int attr actionDropDownStyle 0x0
-+int attr actionLayout 0x0
-+int attr actionMenuTextAppearance 0x0
-+int attr actionMenuTextColor 0x0
-+int attr actionModeBackground 0x0
-+int attr actionModeCloseButtonStyle 0x0
-+int attr actionModeCloseDrawable 0x0
-+int attr actionModeCopyDrawable 0x0
-+int attr actionModeCutDrawable 0x0
-+int attr actionModeFindDrawable 0x0
-+int attr actionModePasteDrawable 0x0
-+int attr actionModePopupWindowStyle 0x0
-+int attr actionModeSelectAllDrawable 0x0
-+int attr actionModeShareDrawable 0x0
-+int attr actionModeSplitBackground 0x0
-+int attr actionModeStyle 0x0
-+int attr actionModeWebSearchDrawable 0x0
-+int attr actionOverflowButtonStyle 0x0
-+int attr actionOverflowMenuStyle 0x0
-+int attr actionProviderClass 0x0
-+int attr actionViewClass 0x0
-+int attr activityChooserViewStyle 0x0
-+int attr actualImageResource 0x0
-+int attr actualImageScaleType 0x0
-+int attr actualImageUri 0x0
-+int attr alertDialogButtonGroupStyle 0x0
-+int attr alertDialogCenterButtons 0x0
-+int attr alertDialogStyle 0x0
-+int attr alertDialogTheme 0x0
-+int attr allowStacking 0x0
-+int attr alpha 0x0
-+int attr alphabeticModifiers 0x0
-+int attr arrowHeadLength 0x0
-+int attr arrowShaftLength 0x0
-+int attr autoCompleteTextViewStyle 0x0
-+int attr autoSizeMaxTextSize 0x0
-+int attr autoSizeMinTextSize 0x0
-+int attr autoSizePresetSizes 0x0
-+int attr autoSizeStepGranularity 0x0
-+int attr autoSizeTextType 0x0
-+int attr autofillInlineSuggestionChip 0x0
-+int attr autofillInlineSuggestionEndIconStyle 0x0
-+int attr autofillInlineSuggestionStartIconStyle 0x0
-+int attr autofillInlineSuggestionSubtitle 0x0
-+int attr autofillInlineSuggestionTitle 0x0
-+int attr background 0x0
-+int attr backgroundImage 0x0
-+int attr backgroundSplit 0x0
-+int attr backgroundStacked 0x0
-+int attr backgroundTint 0x0
-+int attr backgroundTintMode 0x0
-+int attr barLength 0x0
-+int attr borderlessButtonStyle 0x0
-+int attr buttonBarButtonStyle 0x0
-+int attr buttonBarNegativeButtonStyle 0x0
-+int attr buttonBarNeutralButtonStyle 0x0
-+int attr buttonBarPositiveButtonStyle 0x0
-+int attr buttonBarStyle 0x0
-+int attr buttonGravity 0x0
-+int attr buttonIconDimen 0x0
-+int attr buttonPanelSideLayout 0x0
-+int attr buttonStyle 0x0
-+int attr buttonStyleSmall 0x0
-+int attr buttonTint 0x0
-+int attr buttonTintMode 0x0
-+int attr checkboxStyle 0x0
-+int attr checkedTextViewStyle 0x0
-+int attr closeIcon 0x0
-+int attr closeItemLayout 0x0
-+int attr collapseContentDescription 0x0
-+int attr collapseIcon 0x0
-+int attr color 0x0
-+int attr colorAccent 0x0
-+int attr colorBackgroundFloating 0x0
-+int attr colorButtonNormal 0x0
-+int attr colorControlActivated 0x0
-+int attr colorControlHighlight 0x0
-+int attr colorControlNormal 0x0
-+int attr colorError 0x0
-+int attr colorPrimary 0x0
-+int attr colorPrimaryDark 0x0
-+int attr colorSwitchThumbNormal 0x0
-+int attr commitIcon 0x0
-+int attr contentDescription 0x0
-+int attr contentInsetEnd 0x0
-+int attr contentInsetEndWithActions 0x0
-+int attr contentInsetLeft 0x0
-+int attr contentInsetRight 0x0
-+int attr contentInsetStart 0x0
-+int attr contentInsetStartWithNavigation 0x0
-+int attr controlBackground 0x0
-+int attr coordinatorLayoutStyle 0x0
-+int attr customNavigationLayout 0x0
-+int attr defaultQueryHint 0x0
-+int attr dialogCornerRadius 0x0
-+int attr dialogPreferredPadding 0x0
-+int attr dialogTheme 0x0
-+int attr displayOptions 0x0
-+int attr divider 0x0
-+int attr dividerHorizontal 0x0
-+int attr dividerPadding 0x0
-+int attr dividerVertical 0x0
-+int attr drawableSize 0x0
-+int attr drawerArrowStyle 0x0
-+int attr dropDownListViewStyle 0x0
-+int attr dropdownListPreferredItemHeight 0x0
-+int attr editTextBackground 0x0
-+int attr editTextColor 0x0
-+int attr editTextStyle 0x0
-+int attr elevation 0x0
-+int attr expandActivityOverflowButtonDrawable 0x0
-+int attr fadeDuration 0x0
-+int attr failureImage 0x0
-+int attr failureImageScaleType 0x0
-+int attr firstBaselineToTopHeight 0x0
-+int attr font 0x0
-+int attr fontFamily 0x0
-+int attr fontProviderAuthority 0x0
-+int attr fontProviderCerts 0x0
-+int attr fontProviderFetchStrategy 0x0
-+int attr fontProviderFetchTimeout 0x0
-+int attr fontProviderPackage 0x0
-+int attr fontProviderQuery 0x0
-+int attr fontStyle 0x0
-+int attr fontVariationSettings 0x0
-+int attr fontWeight 0x0
-+int attr gapBetweenBars 0x0
-+int attr goIcon 0x0
-+int attr height 0x0
-+int attr hideOnContentScroll 0x0
-+int attr homeAsUpIndicator 0x0
-+int attr homeLayout 0x0
-+int attr icon 0x0
-+int attr iconTint 0x0
-+int attr iconTintMode 0x0
-+int attr iconifiedByDefault 0x0
-+int attr imageButtonStyle 0x0
-+int attr indeterminateProgressStyle 0x0
-+int attr initialActivityCount 0x0
-+int attr isAutofillInlineSuggestionTheme 0x0
-+int attr isLightTheme 0x0
-+int attr itemPadding 0x0
-+int attr keylines 0x0
-+int attr lastBaselineToBottomHeight 0x0
-+int attr layout 0x0
-+int attr layout_anchor 0x0
-+int attr layout_anchorGravity 0x0
-+int attr layout_behavior 0x0
-+int attr layout_dodgeInsetEdges 0x0
-+int attr layout_insetEdge 0x0
-+int attr layout_keyline 0x0
-+int attr lineHeight 0x0
-+int attr listChoiceBackgroundIndicator 0x0
-+int attr listDividerAlertDialog 0x0
-+int attr listItemLayout 0x0
-+int attr listLayout 0x0
-+int attr listMenuViewStyle 0x0
-+int attr listPopupWindowStyle 0x0
-+int attr listPreferredItemHeight 0x0
-+int attr listPreferredItemHeightLarge 0x0
-+int attr listPreferredItemHeightSmall 0x0
-+int attr listPreferredItemPaddingLeft 0x0
-+int attr listPreferredItemPaddingRight 0x0
-+int attr logo 0x0
-+int attr logoDescription 0x0
-+int attr maxButtonHeight 0x0
-+int attr measureWithLargestChild 0x0
-+int attr multiChoiceItemLayout 0x0
-+int attr navigationContentDescription 0x0
-+int attr navigationIcon 0x0
-+int attr navigationMode 0x0
-+int attr numericModifiers 0x0
-+int attr overlapAnchor 0x0
-+int attr overlayImage 0x0
-+int attr paddingBottomNoButtons 0x0
-+int attr paddingEnd 0x0
-+int attr paddingStart 0x0
-+int attr paddingTopNoTitle 0x0
-+int attr panelBackground 0x0
-+int attr panelMenuListTheme 0x0
-+int attr panelMenuListWidth 0x0
-+int attr placeholderImage 0x0
-+int attr placeholderImageScaleType 0x0
-+int attr popupMenuStyle 0x0
-+int attr popupTheme 0x0
-+int attr popupWindowStyle 0x0
-+int attr preserveIconSpacing 0x0
-+int attr pressedStateOverlayImage 0x0
-+int attr progressBarAutoRotateInterval 0x0
-+int attr progressBarImage 0x0
-+int attr progressBarImageScaleType 0x0
-+int attr progressBarPadding 0x0
-+int attr progressBarStyle 0x0
-+int attr queryBackground 0x0
-+int attr queryHint 0x0
-+int attr radioButtonStyle 0x0
-+int attr ratingBarStyle 0x0
-+int attr ratingBarStyleIndicator 0x0
-+int attr ratingBarStyleSmall 0x0
-+int attr retryImage 0x0
-+int attr retryImageScaleType 0x0
-+int attr roundAsCircle 0x0
-+int attr roundBottomEnd 0x0
-+int attr roundBottomLeft 0x0
-+int attr roundBottomRight 0x0
-+int attr roundBottomStart 0x0
-+int attr roundTopEnd 0x0
-+int attr roundTopLeft 0x0
-+int attr roundTopRight 0x0
-+int attr roundTopStart 0x0
-+int attr roundWithOverlayColor 0x0
-+int attr roundedCornerRadius 0x0
-+int attr roundingBorderColor 0x0
-+int attr roundingBorderPadding 0x0
-+int attr roundingBorderWidth 0x0
-+int attr searchHintIcon 0x0
-+int attr searchIcon 0x0
-+int attr searchViewStyle 0x0
-+int attr seekBarStyle 0x0
-+int attr selectableItemBackground 0x0
-+int attr selectableItemBackgroundBorderless 0x0
-+int attr showAsAction 0x0
-+int attr showDividers 0x0
-+int attr showText 0x0
-+int attr showTitle 0x0
-+int attr singleChoiceItemLayout 0x0
-+int attr spinBars 0x0
-+int attr spinnerDropDownItemStyle 0x0
-+int attr spinnerStyle 0x0
-+int attr splitTrack 0x0
-+int attr srcCompat 0x0
-+int attr state_above_anchor 0x0
-+int attr statusBarBackground 0x0
-+int attr subMenuArrow 0x0
-+int attr submitBackground 0x0
-+int attr subtitle 0x0
-+int attr subtitleTextAppearance 0x0
-+int attr subtitleTextColor 0x0
-+int attr subtitleTextStyle 0x0
-+int attr suggestionRowLayout 0x0
-+int attr switchMinWidth 0x0
-+int attr switchPadding 0x0
-+int attr switchStyle 0x0
-+int attr switchTextAppearance 0x0
-+int attr textAllCaps 0x0
-+int attr textAppearanceLargePopupMenu 0x0
-+int attr textAppearanceListItem 0x0
-+int attr textAppearanceListItemSecondary 0x0
-+int attr textAppearanceListItemSmall 0x0
-+int attr textAppearancePopupMenuHeader 0x0
-+int attr textAppearanceSearchResultSubtitle 0x0
-+int attr textAppearanceSearchResultTitle 0x0
-+int attr textAppearanceSmallPopupMenu 0x0
-+int attr textColorAlertDialogListItem 0x0
-+int attr textColorSearchUrl 0x0
-+int attr theme 0x0
-+int attr thickness 0x0
-+int attr thumbTextPadding 0x0
-+int attr thumbTint 0x0
-+int attr thumbTintMode 0x0
-+int attr tickMark 0x0
-+int attr tickMarkTint 0x0
-+int attr tickMarkTintMode 0x0
-+int attr tint 0x0
-+int attr tintMode 0x0
-+int attr title 0x0
-+int attr titleMargin 0x0
-+int attr titleMarginBottom 0x0
-+int attr titleMarginEnd 0x0
-+int attr titleMarginStart 0x0
-+int attr titleMarginTop 0x0
-+int attr titleMargins 0x0
-+int attr titleTextAppearance 0x0
-+int attr titleTextColor 0x0
-+int attr titleTextStyle 0x0
-+int attr toolbarNavigationButtonStyle 0x0
-+int attr toolbarStyle 0x0
-+int attr tooltipForegroundColor 0x0
-+int attr tooltipFrameBackground 0x0
-+int attr tooltipText 0x0
-+int attr track 0x0
-+int attr trackTint 0x0
-+int attr trackTintMode 0x0
-+int attr ttcIndex 0x0
-+int attr viewAspectRatio 0x0
-+int attr viewInflaterClass 0x0
-+int attr voiceIcon 0x0
-+int attr windowActionBar 0x0
-+int attr windowActionBarOverlay 0x0
-+int attr windowActionModeOverlay 0x0
-+int attr windowFixedHeightMajor 0x0
-+int attr windowFixedHeightMinor 0x0
-+int attr windowFixedWidthMajor 0x0
-+int attr windowFixedWidthMinor 0x0
-+int attr windowMinWidthMajor 0x0
-+int attr windowMinWidthMinor 0x0
-+int attr windowNoTitle 0x0
-+int bool abc_action_bar_embed_tabs 0x0
-+int bool abc_allow_stacked_button_bar 0x0
-+int bool abc_config_actionMenuItemAllCaps 0x0
-+int color abc_background_cache_hint_selector_material_dark 0x0
-+int color abc_background_cache_hint_selector_material_light 0x0
-+int color abc_btn_colored_borderless_text_material 0x0
-+int color abc_btn_colored_text_material 0x0
-+int color abc_color_highlight_material 0x0
-+int color abc_hint_foreground_material_dark 0x0
-+int color abc_hint_foreground_material_light 0x0
-+int color abc_input_method_navigation_guard 0x0
-+int color abc_primary_text_disable_only_material_dark 0x0
-+int color abc_primary_text_disable_only_material_light 0x0
-+int color abc_primary_text_material_dark 0x0
-+int color abc_primary_text_material_light 0x0
-+int color abc_search_url_text 0x0
-+int color abc_search_url_text_normal 0x0
-+int color abc_search_url_text_pressed 0x0
-+int color abc_search_url_text_selected 0x0
-+int color abc_secondary_text_material_dark 0x0
-+int color abc_secondary_text_material_light 0x0
-+int color abc_tint_btn_checkable 0x0
-+int color abc_tint_default 0x0
-+int color abc_tint_edittext 0x0
-+int color abc_tint_seek_thumb 0x0
-+int color abc_tint_spinner 0x0
-+int color abc_tint_switch_track 0x0
-+int color accent_material_dark 0x0
-+int color accent_material_light 0x0
-+int color background_floating_material_dark 0x0
-+int color background_floating_material_light 0x0
-+int color background_material_dark 0x0
-+int color background_material_light 0x0
-+int color bright_foreground_disabled_material_dark 0x0
-+int color bright_foreground_disabled_material_light 0x0
-+int color bright_foreground_inverse_material_dark 0x0
-+int color bright_foreground_inverse_material_light 0x0
-+int color bright_foreground_material_dark 0x0
-+int color bright_foreground_material_light 0x0
-+int color browser_actions_bg_grey 0x0
-+int color browser_actions_divider_color 0x0
-+int color browser_actions_text_color 0x0
-+int color browser_actions_title_color 0x0
-+int color button_material_dark 0x0
-+int color button_material_light 0x0
-+int color catalyst_logbox_background 0x0
-+int color catalyst_redbox_background 0x0
-+int color dim_foreground_disabled_material_dark 0x0
-+int color dim_foreground_disabled_material_light 0x0
-+int color dim_foreground_material_dark 0x0
-+int color dim_foreground_material_light 0x0
-+int color error_color_material_dark 0x0
-+int color error_color_material_light 0x0
-+int color foreground_material_dark 0x0
-+int color foreground_material_light 0x0
-+int color highlighted_text_material_dark 0x0
-+int color highlighted_text_material_light 0x0
-+int color material_blue_grey_800 0x0
-+int color material_blue_grey_900 0x0
-+int color material_blue_grey_950 0x0
-+int color material_deep_teal_200 0x0
-+int color material_deep_teal_500 0x0
-+int color material_grey_100 0x0
-+int color material_grey_300 0x0
-+int color material_grey_50 0x0
-+int color material_grey_600 0x0
-+int color material_grey_800 0x0
-+int color material_grey_850 0x0
-+int color material_grey_900 0x0
-+int color notification_action_color_filter 0x0
-+int color notification_icon_bg_color 0x0
-+int color primary_dark_material_dark 0x0
-+int color primary_dark_material_light 0x0
-+int color primary_material_dark 0x0
-+int color primary_material_light 0x0
-+int color primary_text_default_material_dark 0x0
-+int color primary_text_default_material_light 0x0
-+int color primary_text_disabled_material_dark 0x0
-+int color primary_text_disabled_material_light 0x0
-+int color ripple_material_dark 0x0
-+int color ripple_material_light 0x0
-+int color secondary_text_default_material_dark 0x0
-+int color secondary_text_default_material_light 0x0
-+int color secondary_text_disabled_material_dark 0x0
-+int color secondary_text_disabled_material_light 0x0
-+int color switch_thumb_disabled_material_dark 0x0
-+int color switch_thumb_disabled_material_light 0x0
-+int color switch_thumb_material_dark 0x0
-+int color switch_thumb_material_light 0x0
-+int color switch_thumb_normal_material_dark 0x0
-+int color switch_thumb_normal_material_light 0x0
-+int color tooltip_background_dark 0x0
-+int color tooltip_background_light 0x0
-+int dimen abc_action_bar_content_inset_material 0x0
-+int dimen abc_action_bar_content_inset_with_nav 0x0
-+int dimen abc_action_bar_default_height_material 0x0
-+int dimen abc_action_bar_default_padding_end_material 0x0
-+int dimen abc_action_bar_default_padding_start_material 0x0
-+int dimen abc_action_bar_elevation_material 0x0
-+int dimen abc_action_bar_icon_vertical_padding_material 0x0
-+int dimen abc_action_bar_overflow_padding_end_material 0x0
-+int dimen abc_action_bar_overflow_padding_start_material 0x0
-+int dimen abc_action_bar_stacked_max_height 0x0
-+int dimen abc_action_bar_stacked_tab_max_width 0x0
-+int dimen abc_action_bar_subtitle_bottom_margin_material 0x0
-+int dimen abc_action_bar_subtitle_top_margin_material 0x0
-+int dimen abc_action_button_min_height_material 0x0
-+int dimen abc_action_button_min_width_material 0x0
-+int dimen abc_action_button_min_width_overflow_material 0x0
-+int dimen abc_alert_dialog_button_bar_height 0x0
-+int dimen abc_alert_dialog_button_dimen 0x0
-+int dimen abc_button_inset_horizontal_material 0x0
-+int dimen abc_button_inset_vertical_material 0x0
-+int dimen abc_button_padding_horizontal_material 0x0
-+int dimen abc_button_padding_vertical_material 0x0
-+int dimen abc_cascading_menus_min_smallest_width 0x0
-+int dimen abc_config_prefDialogWidth 0x0
-+int dimen abc_control_corner_material 0x0
-+int dimen abc_control_inset_material 0x0
-+int dimen abc_control_padding_material 0x0
-+int dimen abc_dialog_corner_radius_material 0x0
-+int dimen abc_dialog_fixed_height_major 0x0
-+int dimen abc_dialog_fixed_height_minor 0x0
-+int dimen abc_dialog_fixed_width_major 0x0
-+int dimen abc_dialog_fixed_width_minor 0x0
-+int dimen abc_dialog_list_padding_bottom_no_buttons 0x0
-+int dimen abc_dialog_list_padding_top_no_title 0x0
-+int dimen abc_dialog_min_width_major 0x0
-+int dimen abc_dialog_min_width_minor 0x0
-+int dimen abc_dialog_padding_material 0x0
-+int dimen abc_dialog_padding_top_material 0x0
-+int dimen abc_dialog_title_divider_material 0x0
-+int dimen abc_disabled_alpha_material_dark 0x0
-+int dimen abc_disabled_alpha_material_light 0x0
-+int dimen abc_dropdownitem_icon_width 0x0
-+int dimen abc_dropdownitem_text_padding_left 0x0
-+int dimen abc_dropdownitem_text_padding_right 0x0
-+int dimen abc_edit_text_inset_bottom_material 0x0
-+int dimen abc_edit_text_inset_horizontal_material 0x0
-+int dimen abc_edit_text_inset_top_material 0x0
-+int dimen abc_floating_window_z 0x0
-+int dimen abc_list_item_padding_horizontal_material 0x0
-+int dimen abc_panel_menu_list_width 0x0
-+int dimen abc_progress_bar_height_material 0x0
-+int dimen abc_search_view_preferred_height 0x0
-+int dimen abc_search_view_preferred_width 0x0
-+int dimen abc_seekbar_track_background_height_material 0x0
-+int dimen abc_seekbar_track_progress_height_material 0x0
-+int dimen abc_select_dialog_padding_start_material 0x0
-+int dimen abc_switch_padding 0x0
-+int dimen abc_text_size_body_1_material 0x0
-+int dimen abc_text_size_body_2_material 0x0
-+int dimen abc_text_size_button_material 0x0
-+int dimen abc_text_size_caption_material 0x0
-+int dimen abc_text_size_display_1_material 0x0
-+int dimen abc_text_size_display_2_material 0x0
-+int dimen abc_text_size_display_3_material 0x0
-+int dimen abc_text_size_display_4_material 0x0
-+int dimen abc_text_size_headline_material 0x0
-+int dimen abc_text_size_large_material 0x0
-+int dimen abc_text_size_medium_material 0x0
-+int dimen abc_text_size_menu_header_material 0x0
-+int dimen abc_text_size_menu_material 0x0
-+int dimen abc_text_size_small_material 0x0
-+int dimen abc_text_size_subhead_material 0x0
-+int dimen abc_text_size_subtitle_material_toolbar 0x0
-+int dimen abc_text_size_title_material 0x0
-+int dimen abc_text_size_title_material_toolbar 0x0
-+int dimen autofill_inline_suggestion_icon_size 0x0
-+int dimen browser_actions_context_menu_max_width 0x0
-+int dimen browser_actions_context_menu_min_padding 0x0
-+int dimen compat_button_inset_horizontal_material 0x0
-+int dimen compat_button_inset_vertical_material 0x0
-+int dimen compat_button_padding_horizontal_material 0x0
-+int dimen compat_button_padding_vertical_material 0x0
-+int dimen compat_control_corner_material 0x0
-+int dimen compat_notification_large_icon_max_height 0x0
-+int dimen compat_notification_large_icon_max_width 0x0
-+int dimen disabled_alpha_material_dark 0x0
-+int dimen disabled_alpha_material_light 0x0
-+int dimen highlight_alpha_material_colored 0x0
-+int dimen highlight_alpha_material_dark 0x0
-+int dimen highlight_alpha_material_light 0x0
-+int dimen hint_alpha_material_dark 0x0
-+int dimen hint_alpha_material_light 0x0
-+int dimen hint_pressed_alpha_material_dark 0x0
-+int dimen hint_pressed_alpha_material_light 0x0
-+int dimen notification_action_icon_size 0x0
-+int dimen notification_action_text_size 0x0
-+int dimen notification_big_circle_margin 0x0
-+int dimen notification_content_margin_start 0x0
-+int dimen notification_large_icon_height 0x0
-+int dimen notification_large_icon_width 0x0
-+int dimen notification_main_column_padding_top 0x0
-+int dimen notification_media_narrow_margin 0x0
-+int dimen notification_right_icon_size 0x0
-+int dimen notification_right_side_padding_top 0x0
-+int dimen notification_small_icon_background_padding 0x0
-+int dimen notification_small_icon_size_as_large 0x0
-+int dimen notification_subtext_size 0x0
-+int dimen notification_top_pad 0x0
-+int dimen notification_top_pad_large_text 0x0
-+int dimen tooltip_corner_radius 0x0
-+int dimen tooltip_horizontal_padding 0x0
-+int dimen tooltip_margin 0x0
-+int dimen tooltip_precise_anchor_extra_offset 0x0
-+int dimen tooltip_precise_anchor_threshold 0x0
-+int dimen tooltip_vertical_padding 0x0
-+int dimen tooltip_y_offset_non_touch 0x0
-+int dimen tooltip_y_offset_touch 0x0
-+int drawable abc_ab_share_pack_mtrl_alpha 0x0
-+int drawable abc_action_bar_item_background_material 0x0
-+int drawable abc_btn_borderless_material 0x0
-+int drawable abc_btn_check_material 0x0
-+int drawable abc_btn_check_to_on_mtrl_000 0x0
-+int drawable abc_btn_check_to_on_mtrl_015 0x0
-+int drawable abc_btn_colored_material 0x0
-+int drawable abc_btn_default_mtrl_shape 0x0
-+int drawable abc_btn_radio_material 0x0
-+int drawable abc_btn_radio_to_on_mtrl_000 0x0
-+int drawable abc_btn_radio_to_on_mtrl_015 0x0
-+int drawable abc_btn_switch_to_on_mtrl_00001 0x0
-+int drawable abc_btn_switch_to_on_mtrl_00012 0x0
-+int drawable abc_cab_background_internal_bg 0x0
-+int drawable abc_cab_background_top_material 0x0
-+int drawable abc_cab_background_top_mtrl_alpha 0x0
-+int drawable abc_control_background_material 0x0
-+int drawable abc_dialog_material_background 0x0
-+int drawable abc_edit_text_material 0x0
-+int drawable abc_ic_ab_back_material 0x0
-+int drawable abc_ic_arrow_drop_right_black_24dp 0x0
-+int drawable abc_ic_clear_material 0x0
-+int drawable abc_ic_commit_search_api_mtrl_alpha 0x0
-+int drawable abc_ic_go_search_api_material 0x0
-+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0
-+int drawable abc_ic_menu_cut_mtrl_alpha 0x0
-+int drawable abc_ic_menu_overflow_material 0x0
-+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0
-+int drawable abc_ic_menu_selectall_mtrl_alpha 0x0
-+int drawable abc_ic_menu_share_mtrl_alpha 0x0
-+int drawable abc_ic_search_api_material 0x0
-+int drawable abc_ic_star_black_16dp 0x0
-+int drawable abc_ic_star_black_36dp 0x0
-+int drawable abc_ic_star_black_48dp 0x0
-+int drawable abc_ic_star_half_black_16dp 0x0
-+int drawable abc_ic_star_half_black_36dp 0x0
-+int drawable abc_ic_star_half_black_48dp 0x0
-+int drawable abc_ic_voice_search_api_material 0x0
-+int drawable abc_item_background_holo_dark 0x0
-+int drawable abc_item_background_holo_light 0x0
-+int drawable abc_list_divider_material 0x0
-+int drawable abc_list_divider_mtrl_alpha 0x0
-+int drawable abc_list_focused_holo 0x0
-+int drawable abc_list_longpressed_holo 0x0
-+int drawable abc_list_pressed_holo_dark 0x0
-+int drawable abc_list_pressed_holo_light 0x0
-+int drawable abc_list_selector_background_transition_holo_dark 0x0
-+int drawable abc_list_selector_background_transition_holo_light 0x0
-+int drawable abc_list_selector_disabled_holo_dark 0x0
-+int drawable abc_list_selector_disabled_holo_light 0x0
-+int drawable abc_list_selector_holo_dark 0x0
-+int drawable abc_list_selector_holo_light 0x0
-+int drawable abc_menu_hardkey_panel_mtrl_mult 0x0
-+int drawable abc_popup_background_mtrl_mult 0x0
-+int drawable abc_ratingbar_indicator_material 0x0
-+int drawable abc_ratingbar_material 0x0
-+int drawable abc_ratingbar_small_material 0x0
-+int drawable abc_scrubber_control_off_mtrl_alpha 0x0
-+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0
-+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0
-+int drawable abc_scrubber_primary_mtrl_alpha 0x0
-+int drawable abc_scrubber_track_mtrl_alpha 0x0
-+int drawable abc_seekbar_thumb_material 0x0
-+int drawable abc_seekbar_tick_mark_material 0x0
-+int drawable abc_seekbar_track_material 0x0
-+int drawable abc_spinner_mtrl_am_alpha 0x0
-+int drawable abc_spinner_textfield_background_material 0x0
-+int drawable abc_switch_thumb_material 0x0
-+int drawable abc_switch_track_mtrl_alpha 0x0
-+int drawable abc_tab_indicator_material 0x0
-+int drawable abc_tab_indicator_mtrl_alpha 0x0
-+int drawable abc_text_cursor_material 0x0
-+int drawable abc_text_select_handle_left_mtrl_dark 0x0
-+int drawable abc_text_select_handle_left_mtrl_light 0x0
-+int drawable abc_text_select_handle_middle_mtrl_dark 0x0
-+int drawable abc_text_select_handle_middle_mtrl_light 0x0
-+int drawable abc_text_select_handle_right_mtrl_dark 0x0
-+int drawable abc_text_select_handle_right_mtrl_light 0x0
-+int drawable abc_textfield_activated_mtrl_alpha 0x0
-+int drawable abc_textfield_default_mtrl_alpha 0x0
-+int drawable abc_textfield_search_activated_mtrl_alpha 0x0
-+int drawable abc_textfield_search_default_mtrl_alpha 0x0
-+int drawable abc_textfield_search_material 0x0
-+int drawable abc_vector_test 0x0
-+int drawable autofill_inline_suggestion_chip_background 0x0
-+int drawable notification_action_background 0x0
-+int drawable notification_bg 0x0
-+int drawable notification_bg_low 0x0
-+int drawable notification_bg_low_normal 0x0
-+int drawable notification_bg_low_pressed 0x0
-+int drawable notification_bg_normal 0x0
-+int drawable notification_bg_normal_pressed 0x0
-+int drawable notification_icon_background 0x0
-+int drawable notification_template_icon_bg 0x0
-+int drawable notification_template_icon_low_bg 0x0
-+int drawable notification_tile_bg 0x0
-+int drawable notify_panel_notification_icon_bg 0x0
-+int drawable redbox_top_border_background 0x0
-+int drawable tooltip_frame_dark 0x0
-+int drawable tooltip_frame_light 0x0
-+int id accessibility_action_clickable_span 0x0
-+int id accessibility_actions 0x0
-+int id accessibility_custom_action_0 0x0
-+int id accessibility_custom_action_1 0x0
-+int id accessibility_custom_action_10 0x0
-+int id accessibility_custom_action_11 0x0
-+int id accessibility_custom_action_12 0x0
-+int id accessibility_custom_action_13 0x0
-+int id accessibility_custom_action_14 0x0
-+int id accessibility_custom_action_15 0x0
-+int id accessibility_custom_action_16 0x0
-+int id accessibility_custom_action_17 0x0
-+int id accessibility_custom_action_18 0x0
-+int id accessibility_custom_action_19 0x0
-+int id accessibility_custom_action_2 0x0
-+int id accessibility_custom_action_20 0x0
-+int id accessibility_custom_action_21 0x0
-+int id accessibility_custom_action_22 0x0
-+int id accessibility_custom_action_23 0x0
-+int id accessibility_custom_action_24 0x0
-+int id accessibility_custom_action_25 0x0
-+int id accessibility_custom_action_26 0x0
-+int id accessibility_custom_action_27 0x0
-+int id accessibility_custom_action_28 0x0
-+int id accessibility_custom_action_29 0x0
-+int id accessibility_custom_action_3 0x0
-+int id accessibility_custom_action_30 0x0
-+int id accessibility_custom_action_31 0x0
-+int id accessibility_custom_action_4 0x0
-+int id accessibility_custom_action_5 0x0
-+int id accessibility_custom_action_6 0x0
-+int id accessibility_custom_action_7 0x0
-+int id accessibility_custom_action_8 0x0
-+int id accessibility_custom_action_9 0x0
-+int id accessibility_hint 0x0
-+int id accessibility_label 0x0
-+int id accessibility_role 0x0
-+int id accessibility_state 0x0
-+int id accessibility_value 0x0
-+int id action_bar 0x0
-+int id action_bar_activity_content 0x0
-+int id action_bar_container 0x0
-+int id action_bar_root 0x0
-+int id action_bar_spinner 0x0
-+int id action_bar_subtitle 0x0
-+int id action_bar_title 0x0
-+int id action_container 0x0
-+int id action_context_bar 0x0
-+int id action_divider 0x0
-+int id action_image 0x0
-+int id action_menu_divider 0x0
-+int id action_menu_presenter 0x0
-+int id action_mode_bar 0x0
-+int id action_mode_bar_stub 0x0
-+int id action_mode_close_button 0x0
-+int id action_text 0x0
-+int id actions 0x0
-+int id activity_chooser_view_content 0x0
-+int id add 0x0
-+int id alertTitle 0x0
-+int id async 0x0
-+int id autofill_inline_suggestion_end_icon 0x0
-+int id autofill_inline_suggestion_start_icon 0x0
-+int id autofill_inline_suggestion_subtitle 0x0
-+int id autofill_inline_suggestion_title 0x0
-+int id blocking 0x0
-+int id bottom 0x0
-+int id browser_actions_header_text 0x0
-+int id browser_actions_menu_item_icon 0x0
-+int id browser_actions_menu_item_text 0x0
-+int id browser_actions_menu_items 0x0
-+int id browser_actions_menu_view 0x0
-+int id buttonPanel 0x0
-+int id catalyst_redbox_title 0x0
-+int id center 0x0
-+int id centerCrop 0x0
-+int id centerInside 0x0
-+int id checkbox 0x0
-+int id chronometer 0x0
-+int id content 0x0
-+int id contentPanel 0x0
-+int id custom 0x0
-+int id customPanel 0x0
-+int id decor_content_parent 0x0
-+int id default_activity_button 0x0
-+int id dialog_button 0x0
-+int id edit_query 0x0
-+int id end 0x0
-+int id expand_activities_button 0x0
-+int id expanded_menu 0x0
-+int id fitBottomStart 0x0
-+int id fitCenter 0x0
-+int id fitEnd 0x0
-+int id fitStart 0x0
-+int id fitXY 0x0
-+int id focusCrop 0x0
-+int id forever 0x0
-+int id fps_text 0x0
-+int id group_divider 0x0
-+int id home 0x0
-+int id icon 0x0
-+int id icon_group 0x0
-+int id image 0x0
-+int id info 0x0
-+int id italic 0x0
-+int id left 0x0
-+int id line1 0x0
-+int id line3 0x0
-+int id listMode 0x0
-+int id list_item 0x0
-+int id message 0x0
-+int id multiply 0x0
-+int id none 0x0
-+int id normal 0x0
-+int id notification_background 0x0
-+int id notification_main_column 0x0
-+int id notification_main_column_container 0x0
-+int id parentPanel 0x0
-+int id progress_circular 0x0
-+int id progress_horizontal 0x0
-+int id radio 0x0
-+int id react_test_id 0x0
-+int id right 0x0
-+int id right_icon 0x0
-+int id right_side 0x0
-+int id rn_frame_file 0x0
-+int id rn_frame_method 0x0
-+int id rn_redbox_dismiss_button 0x0
-+int id rn_redbox_line_separator 0x0
-+int id rn_redbox_loading_indicator 0x0
-+int id rn_redbox_reload_button 0x0
-+int id rn_redbox_report_button 0x0
-+int id rn_redbox_report_label 0x0
-+int id rn_redbox_stack 0x0
-+int id screen 0x0
-+int id scrollIndicatorDown 0x0
-+int id scrollIndicatorUp 0x0
-+int id scrollView 0x0
-+int id search_badge 0x0
-+int id search_bar 0x0
-+int id search_button 0x0
-+int id search_close_btn 0x0
-+int id search_edit_frame 0x0
-+int id search_go_btn 0x0
-+int id search_mag_icon 0x0
-+int id search_plate 0x0
-+int id search_src_text 0x0
-+int id search_voice_btn 0x0
-+int id select_dialog_listview 0x0
-+int id shortcut 0x0
-+int id spacer 0x0
-+int id split_action_bar 0x0
-+int id src_atop 0x0
-+int id src_in 0x0
-+int id src_over 0x0
-+int id start 0x0
-+int id submenuarrow 0x0
-+int id submit_area 0x0
-+int id tabMode 0x0
-+int id tag_accessibility_actions 0x0
-+int id tag_accessibility_clickable_spans 0x0
-+int id tag_accessibility_heading 0x0
-+int id tag_accessibility_pane_title 0x0
-+int id tag_screen_reader_focusable 0x0
-+int id tag_transition_group 0x0
-+int id tag_unhandled_key_event_manager 0x0
-+int id tag_unhandled_key_listeners 0x0
-+int id text 0x0
-+int id text2 0x0
-+int id textSpacerNoButtons 0x0
-+int id textSpacerNoTitle 0x0
-+int id time 0x0
-+int id title 0x0
-+int id titleDividerNoCustom 0x0
-+int id title_template 0x0
-+int id top 0x0
-+int id topPanel 0x0
-+int id uniform 0x0
-+int id up 0x0
-+int id view_tag_instance_handle 0x0
-+int id view_tag_native_id 0x0
-+int id wrap_content 0x0
-+int integer abc_config_activityDefaultDur 0x0
-+int integer abc_config_activityShortDur 0x0
-+int integer cancel_button_image_alpha 0x0
-+int integer config_tooltipAnimTime 0x0
-+int integer react_native_dev_server_port 0x0
-+int integer react_native_inspector_proxy_port 0x0
-+int integer status_bar_notification_info_maxnum 0x0
-+int layout abc_action_bar_title_item 0x0
-+int layout abc_action_bar_up_container 0x0
-+int layout abc_action_menu_item_layout 0x0
-+int layout abc_action_menu_layout 0x0
-+int layout abc_action_mode_bar 0x0
-+int layout abc_action_mode_close_item_material 0x0
-+int layout abc_activity_chooser_view 0x0
-+int layout abc_activity_chooser_view_list_item 0x0
-+int layout abc_alert_dialog_button_bar_material 0x0
-+int layout abc_alert_dialog_material 0x0
-+int layout abc_alert_dialog_title_material 0x0
-+int layout abc_cascading_menu_item_layout 0x0
-+int layout abc_dialog_title_material 0x0
-+int layout abc_expanded_menu_layout 0x0
-+int layout abc_list_menu_item_checkbox 0x0
-+int layout abc_list_menu_item_icon 0x0
-+int layout abc_list_menu_item_layout 0x0
-+int layout abc_list_menu_item_radio 0x0
-+int layout abc_popup_menu_header_item_layout 0x0
-+int layout abc_popup_menu_item_layout 0x0
-+int layout abc_screen_content_include 0x0
-+int layout abc_screen_simple 0x0
-+int layout abc_screen_simple_overlay_action_mode 0x0
-+int layout abc_screen_toolbar 0x0
-+int layout abc_search_dropdown_item_icons_2line 0x0
-+int layout abc_search_view 0x0
-+int layout abc_select_dialog_material 0x0
-+int layout abc_tooltip 0x0
-+int layout autofill_inline_suggestion 0x0
-+int layout browser_actions_context_menu_page 0x0
-+int layout browser_actions_context_menu_row 0x0
-+int layout custom_dialog 0x0
-+int layout dev_loading_view 0x0
-+int layout fps_view 0x0
-+int layout notification_action 0x0
-+int layout notification_action_tombstone 0x0
-+int layout notification_template_custom_big 0x0
-+int layout notification_template_icon_group 0x0
-+int layout notification_template_part_chronometer 0x0
-+int layout notification_template_part_time 0x0
-+int layout redbox_item_frame 0x0
-+int layout redbox_item_title 0x0
-+int layout redbox_view 0x0
-+int layout select_dialog_item_material 0x0
-+int layout select_dialog_multichoice_material 0x0
-+int layout select_dialog_singlechoice_material 0x0
-+int layout support_simple_spinner_dropdown_item 0x0
-+int string abc_action_bar_home_description 0x0
-+int string abc_action_bar_up_description 0x0
-+int string abc_action_menu_overflow_description 0x0
-+int string abc_action_mode_done 0x0
-+int string abc_activity_chooser_view_see_all 0x0
-+int string abc_activitychooserview_choose_application 0x0
-+int string abc_capital_off 0x0
-+int string abc_capital_on 0x0
-+int string abc_font_family_body_1_material 0x0
-+int string abc_font_family_body_2_material 0x0
-+int string abc_font_family_button_material 0x0
-+int string abc_font_family_caption_material 0x0
-+int string abc_font_family_display_1_material 0x0
-+int string abc_font_family_display_2_material 0x0
-+int string abc_font_family_display_3_material 0x0
-+int string abc_font_family_display_4_material 0x0
-+int string abc_font_family_headline_material 0x0
-+int string abc_font_family_menu_material 0x0
-+int string abc_font_family_subhead_material 0x0
-+int string abc_font_family_title_material 0x0
-+int string abc_menu_alt_shortcut_label 0x0
-+int string abc_menu_ctrl_shortcut_label 0x0
-+int string abc_menu_delete_shortcut_label 0x0
-+int string abc_menu_enter_shortcut_label 0x0
-+int string abc_menu_function_shortcut_label 0x0
-+int string abc_menu_meta_shortcut_label 0x0
-+int string abc_menu_shift_shortcut_label 0x0
-+int string abc_menu_space_shortcut_label 0x0
-+int string abc_menu_sym_shortcut_label 0x0
-+int string abc_prepend_shortcut_label 0x0
-+int string abc_search_hint 0x0
-+int string abc_searchview_description_clear 0x0
-+int string abc_searchview_description_query 0x0
-+int string abc_searchview_description_search 0x0
-+int string abc_searchview_description_submit 0x0
-+int string abc_searchview_description_voice 0x0
-+int string abc_shareactionprovider_share_with 0x0
-+int string abc_shareactionprovider_share_with_application 0x0
-+int string abc_toolbar_collapse_description 0x0
-+int string alert_description 0x0
-+int string catalyst_change_bundle_location 0x0
-+int string catalyst_copy_button 0x0
-+int string catalyst_debug 0x0
-+int string catalyst_debug_chrome 0x0
-+int string catalyst_debug_chrome_stop 0x0
-+int string catalyst_debug_connecting 0x0
-+int string catalyst_debug_error 0x0
-+int string catalyst_debug_open 0x0
-+int string catalyst_debug_stop 0x0
-+int string catalyst_devtools_open 0x0
-+int string catalyst_dismiss_button 0x0
-+int string catalyst_heap_capture 0x0
-+int string catalyst_hot_reloading 0x0
-+int string catalyst_hot_reloading_auto_disable 0x0
-+int string catalyst_hot_reloading_auto_enable 0x0
-+int string catalyst_hot_reloading_stop 0x0
-+int string catalyst_inspector 0x0
-+int string catalyst_inspector_stop 0x0
-+int string catalyst_loading_from_url 0x0
-+int string catalyst_open_flipper_error 0x0
-+int string catalyst_perf_monitor 0x0
-+int string catalyst_perf_monitor_stop 0x0
-+int string catalyst_reload 0x0
-+int string catalyst_reload_button 0x0
-+int string catalyst_reload_error 0x0
-+int string catalyst_report_button 0x0
-+int string catalyst_sample_profiler_disable 0x0
-+int string catalyst_sample_profiler_enable 0x0
-+int string catalyst_settings 0x0
-+int string catalyst_settings_title 0x0
-+int string combobox_description 0x0
-+int string copy_toast_msg 0x0
-+int string fallback_menu_item_copy_link 0x0
-+int string fallback_menu_item_open_in_browser 0x0
-+int string fallback_menu_item_share_link 0x0
-+int string header_description 0x0
-+int string image_description 0x0
-+int string imagebutton_description 0x0
-+int string link_description 0x0
-+int string menu_description 0x0
-+int string menubar_description 0x0
-+int string menuitem_description 0x0
-+int string progressbar_description 0x0
-+int string radiogroup_description 0x0
-+int string rn_tab_description 0x0
-+int string scrollbar_description 0x0
-+int string search_menu_title 0x0
-+int string spinbutton_description 0x0
-+int string state_busy_description 0x0
-+int string state_collapsed_description 0x0
-+int string state_expanded_description 0x0
-+int string state_mixed_description 0x0
-+int string state_off_description 0x0
-+int string state_on_description 0x0
-+int string state_unselected_description 0x0
-+int string status_bar_notification_info_overflow 0x0
-+int string summary_description 0x0
-+int string tablist_description 0x0
-+int string timer_description 0x0
-+int string toolbar_description 0x0
-+int style AlertDialog_AppCompat 0x0
-+int style AlertDialog_AppCompat_Light 0x0
-+int style Animation_AppCompat_Dialog 0x0
-+int style Animation_AppCompat_DropDownUp 0x0
-+int style Animation_AppCompat_Tooltip 0x0
-+int style Animation_Catalyst_LogBox 0x0
-+int style Animation_Catalyst_RedBox 0x0
-+int style Base_AlertDialog_AppCompat 0x0
-+int style Base_AlertDialog_AppCompat_Light 0x0
-+int style Base_Animation_AppCompat_Dialog 0x0
-+int style Base_Animation_AppCompat_DropDownUp 0x0
-+int style Base_Animation_AppCompat_Tooltip 0x0
-+int style Base_DialogWindowTitleBackground_AppCompat 0x0
-+int style Base_DialogWindowTitle_AppCompat 0x0
-+int style Base_TextAppearance_AppCompat 0x0
-+int style Base_TextAppearance_AppCompat_Body1 0x0
-+int style Base_TextAppearance_AppCompat_Body2 0x0
-+int style Base_TextAppearance_AppCompat_Button 0x0
-+int style Base_TextAppearance_AppCompat_Caption 0x0
-+int style Base_TextAppearance_AppCompat_Display1 0x0
-+int style Base_TextAppearance_AppCompat_Display2 0x0
-+int style Base_TextAppearance_AppCompat_Display3 0x0
-+int style Base_TextAppearance_AppCompat_Display4 0x0
-+int style Base_TextAppearance_AppCompat_Headline 0x0
-+int style Base_TextAppearance_AppCompat_Inverse 0x0
-+int style Base_TextAppearance_AppCompat_Large 0x0
-+int style Base_TextAppearance_AppCompat_Large_Inverse 0x0
-+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0
-+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0
-+int style Base_TextAppearance_AppCompat_Medium 0x0
-+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0
-+int style Base_TextAppearance_AppCompat_Menu 0x0
-+int style Base_TextAppearance_AppCompat_SearchResult 0x0
-+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0
-+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0
-+int style Base_TextAppearance_AppCompat_Small 0x0
-+int style Base_TextAppearance_AppCompat_Small_Inverse 0x0
-+int style Base_TextAppearance_AppCompat_Subhead 0x0
-+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0
-+int style Base_TextAppearance_AppCompat_Title 0x0
-+int style Base_TextAppearance_AppCompat_Title_Inverse 0x0
-+int style Base_TextAppearance_AppCompat_Tooltip 0x0
-+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0
-+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0
-+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0
-+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0
-+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0
-+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0
-+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0
-+int style Base_TextAppearance_AppCompat_Widget_Button 0x0
-+int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0
-+int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0
-+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0
-+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0
-+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0
-+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0
-+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0
-+int style Base_TextAppearance_AppCompat_Widget_Switch 0x0
-+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0
-+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0
-+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0
-+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0
-+int style Base_ThemeOverlay_AppCompat 0x0
-+int style Base_ThemeOverlay_AppCompat_ActionBar 0x0
-+int style Base_ThemeOverlay_AppCompat_Dark 0x0
-+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0
-+int style Base_ThemeOverlay_AppCompat_Dialog 0x0
-+int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0
-+int style Base_ThemeOverlay_AppCompat_Light 0x0
-+int style Base_Theme_AppCompat 0x0
-+int style Base_Theme_AppCompat_CompactMenu 0x0
-+int style Base_Theme_AppCompat_Dialog 0x0
-+int style Base_Theme_AppCompat_DialogWhenLarge 0x0
-+int style Base_Theme_AppCompat_Dialog_Alert 0x0
-+int style Base_Theme_AppCompat_Dialog_FixedSize 0x0
-+int style Base_Theme_AppCompat_Dialog_MinWidth 0x0
-+int style Base_Theme_AppCompat_Light 0x0
-+int style Base_Theme_AppCompat_Light_DarkActionBar 0x0
-+int style Base_Theme_AppCompat_Light_Dialog 0x0
-+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0
-+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0
-+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0
-+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0
-+int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0
-+int style Base_V21_Theme_AppCompat 0x0
-+int style Base_V21_Theme_AppCompat_Dialog 0x0
-+int style Base_V21_Theme_AppCompat_Light 0x0
-+int style Base_V21_Theme_AppCompat_Light_Dialog 0x0
-+int style Base_V22_Theme_AppCompat 0x0
-+int style Base_V22_Theme_AppCompat_Light 0x0
-+int style Base_V23_Theme_AppCompat 0x0
-+int style Base_V23_Theme_AppCompat_Light 0x0
-+int style Base_V26_Theme_AppCompat 0x0
-+int style Base_V26_Theme_AppCompat_Light 0x0
-+int style Base_V26_Widget_AppCompat_Toolbar 0x0
-+int style Base_V28_Theme_AppCompat 0x0
-+int style Base_V28_Theme_AppCompat_Light 0x0
-+int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0
-+int style Base_V7_Theme_AppCompat 0x0
-+int style Base_V7_Theme_AppCompat_Dialog 0x0
-+int style Base_V7_Theme_AppCompat_Light 0x0
-+int style Base_V7_Theme_AppCompat_Light_Dialog 0x0
-+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0
-+int style Base_V7_Widget_AppCompat_EditText 0x0
-+int style Base_V7_Widget_AppCompat_Toolbar 0x0
-+int style Base_Widget_AppCompat_ActionBar 0x0
-+int style Base_Widget_AppCompat_ActionBar_Solid 0x0
-+int style Base_Widget_AppCompat_ActionBar_TabBar 0x0
-+int style Base_Widget_AppCompat_ActionBar_TabText 0x0
-+int style Base_Widget_AppCompat_ActionBar_TabView 0x0
-+int style Base_Widget_AppCompat_ActionButton 0x0
-+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0
-+int style Base_Widget_AppCompat_ActionButton_Overflow 0x0
-+int style Base_Widget_AppCompat_ActionMode 0x0
-+int style Base_Widget_AppCompat_ActivityChooserView 0x0
-+int style Base_Widget_AppCompat_AutoCompleteTextView 0x0
-+int style Base_Widget_AppCompat_Button 0x0
-+int style Base_Widget_AppCompat_ButtonBar 0x0
-+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0
-+int style Base_Widget_AppCompat_Button_Borderless 0x0
-+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0
-+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0
-+int style Base_Widget_AppCompat_Button_Colored 0x0
-+int style Base_Widget_AppCompat_Button_Small 0x0
-+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0
-+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0
-+int style Base_Widget_AppCompat_CompoundButton_Switch 0x0
-+int style Base_Widget_AppCompat_DrawerArrowToggle 0x0
-+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0
-+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0
-+int style Base_Widget_AppCompat_EditText 0x0
-+int style Base_Widget_AppCompat_ImageButton 0x0
-+int style Base_Widget_AppCompat_Light_ActionBar 0x0
-+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0
-+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0
-+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0
-+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0
-+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0
-+int style Base_Widget_AppCompat_Light_PopupMenu 0x0
-+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0
-+int style Base_Widget_AppCompat_ListMenuView 0x0
-+int style Base_Widget_AppCompat_ListPopupWindow 0x0
-+int style Base_Widget_AppCompat_ListView 0x0
-+int style Base_Widget_AppCompat_ListView_DropDown 0x0
-+int style Base_Widget_AppCompat_ListView_Menu 0x0
-+int style Base_Widget_AppCompat_PopupMenu 0x0
-+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0
-+int style Base_Widget_AppCompat_PopupWindow 0x0
-+int style Base_Widget_AppCompat_ProgressBar 0x0
-+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0
-+int style Base_Widget_AppCompat_RatingBar 0x0
-+int style Base_Widget_AppCompat_RatingBar_Indicator 0x0
-+int style Base_Widget_AppCompat_RatingBar_Small 0x0
-+int style Base_Widget_AppCompat_SearchView 0x0
-+int style Base_Widget_AppCompat_SearchView_ActionBar 0x0
-+int style Base_Widget_AppCompat_SeekBar 0x0
-+int style Base_Widget_AppCompat_SeekBar_Discrete 0x0
-+int style Base_Widget_AppCompat_Spinner 0x0
-+int style Base_Widget_AppCompat_Spinner_Underlined 0x0
-+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0
-+int style Base_Widget_AppCompat_Toolbar 0x0
-+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0
-+int style CalendarDatePickerDialog 0x0
-+int style CalendarDatePickerStyle 0x0
-+int style DialogAnimationFade 0x0
-+int style DialogAnimationSlide 0x0
-+int style Platform_AppCompat 0x0
-+int style Platform_AppCompat_Light 0x0
-+int style Platform_ThemeOverlay_AppCompat 0x0
-+int style Platform_ThemeOverlay_AppCompat_Dark 0x0
-+int style Platform_ThemeOverlay_AppCompat_Light 0x0
-+int style Platform_V21_AppCompat 0x0
-+int style Platform_V21_AppCompat_Light 0x0
-+int style Platform_V25_AppCompat 0x0
-+int style Platform_V25_AppCompat_Light 0x0
-+int style Platform_Widget_AppCompat_Spinner 0x0
-+int style RtlOverlay_DialogWindowTitle_AppCompat 0x0
-+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0
-+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0
-+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0
-+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0
-+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0
-+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0
-+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0
-+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0
-+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0
-+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0
-+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0
-+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0
-+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0
-+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0
-+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0
-+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0
-+int style SpinnerDatePickerDialog 0x0
-+int style SpinnerDatePickerStyle 0x0
-+int style TextAppearance_AppCompat 0x0
-+int style TextAppearance_AppCompat_Body1 0x0
-+int style TextAppearance_AppCompat_Body2 0x0
-+int style TextAppearance_AppCompat_Button 0x0
-+int style TextAppearance_AppCompat_Caption 0x0
-+int style TextAppearance_AppCompat_Display1 0x0
-+int style TextAppearance_AppCompat_Display2 0x0
-+int style TextAppearance_AppCompat_Display3 0x0
-+int style TextAppearance_AppCompat_Display4 0x0
-+int style TextAppearance_AppCompat_Headline 0x0
-+int style TextAppearance_AppCompat_Inverse 0x0
-+int style TextAppearance_AppCompat_Large 0x0
-+int style TextAppearance_AppCompat_Large_Inverse 0x0
-+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0
-+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0
-+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0
-+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0
-+int style TextAppearance_AppCompat_Medium 0x0
-+int style TextAppearance_AppCompat_Medium_Inverse 0x0
-+int style TextAppearance_AppCompat_Menu 0x0
-+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0
-+int style TextAppearance_AppCompat_SearchResult_Title 0x0
-+int style TextAppearance_AppCompat_Small 0x0
-+int style TextAppearance_AppCompat_Small_Inverse 0x0
-+int style TextAppearance_AppCompat_Subhead 0x0
-+int style TextAppearance_AppCompat_Subhead_Inverse 0x0
-+int style TextAppearance_AppCompat_Title 0x0
-+int style TextAppearance_AppCompat_Title_Inverse 0x0
-+int style TextAppearance_AppCompat_Tooltip 0x0
-+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0
-+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0
-+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0
-+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0
-+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0
-+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0
-+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0
-+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0
-+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0
-+int style TextAppearance_AppCompat_Widget_Button 0x0
-+int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0
-+int style TextAppearance_AppCompat_Widget_Button_Colored 0x0
-+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0
-+int style TextAppearance_AppCompat_Widget_DropDownItem 0x0
-+int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0
-+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0
-+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0
-+int style TextAppearance_AppCompat_Widget_Switch 0x0
-+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0
-+int style TextAppearance_Compat_Notification 0x0
-+int style TextAppearance_Compat_Notification_Info 0x0
-+int style TextAppearance_Compat_Notification_Line2 0x0
-+int style TextAppearance_Compat_Notification_Time 0x0
-+int style TextAppearance_Compat_Notification_Title 0x0
-+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0
-+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0
-+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0
-+int style Theme 0x0
-+int style ThemeOverlay_AppCompat 0x0
-+int style ThemeOverlay_AppCompat_ActionBar 0x0
-+int style ThemeOverlay_AppCompat_Dark 0x0
-+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0
-+int style ThemeOverlay_AppCompat_Dialog 0x0
-+int style ThemeOverlay_AppCompat_Dialog_Alert 0x0
-+int style ThemeOverlay_AppCompat_Light 0x0
-+int style Theme_AppCompat 0x0
-+int style Theme_AppCompat_CompactMenu 0x0
-+int style Theme_AppCompat_DayNight 0x0
-+int style Theme_AppCompat_DayNight_DarkActionBar 0x0
-+int style Theme_AppCompat_DayNight_Dialog 0x0
-+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0
-+int style Theme_AppCompat_DayNight_Dialog_Alert 0x0
-+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0
-+int style Theme_AppCompat_DayNight_NoActionBar 0x0
-+int style Theme_AppCompat_Dialog 0x0
-+int style Theme_AppCompat_DialogWhenLarge 0x0
-+int style Theme_AppCompat_Dialog_Alert 0x0
-+int style Theme_AppCompat_Dialog_MinWidth 0x0
-+int style Theme_AppCompat_Light 0x0
-+int style Theme_AppCompat_Light_DarkActionBar 0x0
-+int style Theme_AppCompat_Light_Dialog 0x0
-+int style Theme_AppCompat_Light_DialogWhenLarge 0x0
-+int style Theme_AppCompat_Light_Dialog_Alert 0x0
-+int style Theme_AppCompat_Light_Dialog_MinWidth 0x0
-+int style Theme_AppCompat_Light_NoActionBar 0x0
-+int style Theme_AppCompat_NoActionBar 0x0
-+int style Theme_AutofillInlineSuggestion 0x0
-+int style Theme_Catalyst 0x0
-+int style Theme_Catalyst_LogBox 0x0
-+int style Theme_Catalyst_RedBox 0x0
-+int style Theme_FullScreenDialog 0x0
-+int style Theme_FullScreenDialogAnimatedFade 0x0
-+int style Theme_FullScreenDialogAnimatedSlide 0x0
-+int style Theme_ReactNative_AppCompat_Light 0x0
-+int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x0
-+int style Widget_AppCompat_ActionBar 0x0
-+int style Widget_AppCompat_ActionBar_Solid 0x0
-+int style Widget_AppCompat_ActionBar_TabBar 0x0
-+int style Widget_AppCompat_ActionBar_TabText 0x0
-+int style Widget_AppCompat_ActionBar_TabView 0x0
-+int style Widget_AppCompat_ActionButton 0x0
-+int style Widget_AppCompat_ActionButton_CloseMode 0x0
-+int style Widget_AppCompat_ActionButton_Overflow 0x0
-+int style Widget_AppCompat_ActionMode 0x0
-+int style Widget_AppCompat_ActivityChooserView 0x0
-+int style Widget_AppCompat_AutoCompleteTextView 0x0
-+int style Widget_AppCompat_Button 0x0
-+int style Widget_AppCompat_ButtonBar 0x0
-+int style Widget_AppCompat_ButtonBar_AlertDialog 0x0
-+int style Widget_AppCompat_Button_Borderless 0x0
-+int style Widget_AppCompat_Button_Borderless_Colored 0x0
-+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0
-+int style Widget_AppCompat_Button_Colored 0x0
-+int style Widget_AppCompat_Button_Small 0x0
-+int style Widget_AppCompat_CompoundButton_CheckBox 0x0
-+int style Widget_AppCompat_CompoundButton_RadioButton 0x0
-+int style Widget_AppCompat_CompoundButton_Switch 0x0
-+int style Widget_AppCompat_DrawerArrowToggle 0x0
-+int style Widget_AppCompat_DropDownItem_Spinner 0x0
-+int style Widget_AppCompat_EditText 0x0
-+int style Widget_AppCompat_ImageButton 0x0
-+int style Widget_AppCompat_Light_ActionBar 0x0
-+int style Widget_AppCompat_Light_ActionBar_Solid 0x0
-+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0
-+int style Widget_AppCompat_Light_ActionBar_TabBar 0x0
-+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0
-+int style Widget_AppCompat_Light_ActionBar_TabText 0x0
-+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0
-+int style Widget_AppCompat_Light_ActionBar_TabView 0x0
-+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0
-+int style Widget_AppCompat_Light_ActionButton 0x0
-+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0
-+int style Widget_AppCompat_Light_ActionButton_Overflow 0x0
-+int style Widget_AppCompat_Light_ActionMode_Inverse 0x0
-+int style Widget_AppCompat_Light_ActivityChooserView 0x0
-+int style Widget_AppCompat_Light_AutoCompleteTextView 0x0
-+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0
-+int style Widget_AppCompat_Light_ListPopupWindow 0x0
-+int style Widget_AppCompat_Light_ListView_DropDown 0x0
-+int style Widget_AppCompat_Light_PopupMenu 0x0
-+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0
-+int style Widget_AppCompat_Light_SearchView 0x0
-+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0
-+int style Widget_AppCompat_ListMenuView 0x0
-+int style Widget_AppCompat_ListPopupWindow 0x0
-+int style Widget_AppCompat_ListView 0x0
-+int style Widget_AppCompat_ListView_DropDown 0x0
-+int style Widget_AppCompat_ListView_Menu 0x0
-+int style Widget_AppCompat_PopupMenu 0x0
-+int style Widget_AppCompat_PopupMenu_Overflow 0x0
-+int style Widget_AppCompat_PopupWindow 0x0
-+int style Widget_AppCompat_ProgressBar 0x0
-+int style Widget_AppCompat_ProgressBar_Horizontal 0x0
-+int style Widget_AppCompat_RatingBar 0x0
-+int style Widget_AppCompat_RatingBar_Indicator 0x0
-+int style Widget_AppCompat_RatingBar_Small 0x0
-+int style Widget_AppCompat_SearchView 0x0
-+int style Widget_AppCompat_SearchView_ActionBar 0x0
-+int style Widget_AppCompat_SeekBar 0x0
-+int style Widget_AppCompat_SeekBar_Discrete 0x0
-+int style Widget_AppCompat_Spinner 0x0
-+int style Widget_AppCompat_Spinner_DropDown 0x0
-+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0
-+int style Widget_AppCompat_Spinner_Underlined 0x0
-+int style Widget_AppCompat_TextView_SpinnerItem 0x0
-+int style Widget_AppCompat_Toolbar 0x0
-+int style Widget_AppCompat_Toolbar_Button_Navigation 0x0
-+int style Widget_Autofill 0x0
-+int style Widget_Autofill_InlineSuggestionChip 0x0
-+int style Widget_Autofill_InlineSuggestionEndIconStyle 0x0
-+int style Widget_Autofill_InlineSuggestionStartIconStyle 0x0
-+int style Widget_Autofill_InlineSuggestionSubtitle 0x0
-+int style Widget_Autofill_InlineSuggestionTitle 0x0
-+int style Widget_Compat_NotificationActionContainer 0x0
-+int style Widget_Compat_NotificationActionText 0x0
-+int style Widget_Support_CoordinatorLayout 0x0
-+int style redboxButton 0x0
-+int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable ActionBar_background 0
-+int styleable ActionBar_backgroundSplit 1
-+int styleable ActionBar_backgroundStacked 2
-+int styleable ActionBar_contentInsetEnd 3
-+int styleable ActionBar_contentInsetEndWithActions 4
-+int styleable ActionBar_contentInsetLeft 5
-+int styleable ActionBar_contentInsetRight 6
-+int styleable ActionBar_contentInsetStart 7
-+int styleable ActionBar_contentInsetStartWithNavigation 8
-+int styleable ActionBar_customNavigationLayout 9
-+int styleable ActionBar_displayOptions 10
-+int styleable ActionBar_divider 11
-+int styleable ActionBar_elevation 12
-+int styleable ActionBar_height 13
-+int styleable ActionBar_hideOnContentScroll 14
-+int styleable ActionBar_homeAsUpIndicator 15
-+int styleable ActionBar_homeLayout 16
-+int styleable ActionBar_icon 17
-+int styleable ActionBar_indeterminateProgressStyle 18
-+int styleable ActionBar_itemPadding 19
-+int styleable ActionBar_logo 20
-+int styleable ActionBar_navigationMode 21
-+int styleable ActionBar_popupTheme 22
-+int styleable ActionBar_progressBarPadding 23
-+int styleable ActionBar_progressBarStyle 24
-+int styleable ActionBar_subtitle 25
-+int styleable ActionBar_subtitleTextStyle 26
-+int styleable ActionBar_title 27
-+int styleable ActionBar_titleTextStyle 28
-+int[] styleable ActionBarLayout { 0x10100b3 }
-+int styleable ActionBarLayout_android_layout_gravity 0
-+int[] styleable ActionMenuItemView { 0x101013f }
-+int styleable ActionMenuItemView_android_minWidth 0
-+int[] styleable ActionMenuView { }
-+int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable ActionMode_background 0
-+int styleable ActionMode_backgroundSplit 1
-+int styleable ActionMode_closeItemLayout 2
-+int styleable ActionMode_height 3
-+int styleable ActionMode_subtitleTextStyle 4
-+int styleable ActionMode_titleTextStyle 5
-+int[] styleable ActivityChooserView { 0x0, 0x0 }
-+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
-+int styleable ActivityChooserView_initialActivityCount 1
-+int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable AlertDialog_android_layout 0
-+int styleable AlertDialog_buttonIconDimen 1
-+int styleable AlertDialog_buttonPanelSideLayout 2
-+int styleable AlertDialog_listItemLayout 3
-+int styleable AlertDialog_listLayout 4
-+int styleable AlertDialog_multiChoiceItemLayout 5
-+int styleable AlertDialog_showTitle 6
-+int styleable AlertDialog_singleChoiceItemLayout 7
-+int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
-+int styleable AnimatedStateListDrawableCompat_android_constantSize 0
-+int styleable AnimatedStateListDrawableCompat_android_dither 1
-+int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2
-+int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3
-+int styleable AnimatedStateListDrawableCompat_android_variablePadding 4
-+int styleable AnimatedStateListDrawableCompat_android_visible 5
-+int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 }
-+int styleable AnimatedStateListDrawableItem_android_drawable 0
-+int styleable AnimatedStateListDrawableItem_android_id 1
-+int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 }
-+int styleable AnimatedStateListDrawableTransition_android_drawable 0
-+int styleable AnimatedStateListDrawableTransition_android_fromId 1
-+int styleable AnimatedStateListDrawableTransition_android_reversible 2
-+int styleable AnimatedStateListDrawableTransition_android_toId 3
-+int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 }
-+int styleable AppCompatImageView_android_src 0
-+int styleable AppCompatImageView_srcCompat 1
-+int styleable AppCompatImageView_tint 2
-+int styleable AppCompatImageView_tintMode 3
-+int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 }
-+int styleable AppCompatSeekBar_android_thumb 0
-+int styleable AppCompatSeekBar_tickMark 1
-+int styleable AppCompatSeekBar_tickMarkTint 2
-+int styleable AppCompatSeekBar_tickMarkTintMode 3
-+int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 }
-+int styleable AppCompatTextHelper_android_drawableBottom 0
-+int styleable AppCompatTextHelper_android_drawableEnd 1
-+int styleable AppCompatTextHelper_android_drawableLeft 2
-+int styleable AppCompatTextHelper_android_drawableRight 3
-+int styleable AppCompatTextHelper_android_drawableStart 4
-+int styleable AppCompatTextHelper_android_drawableTop 5
-+int styleable AppCompatTextHelper_android_textAppearance 6
-+int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable AppCompatTextView_android_textAppearance 0
-+int styleable AppCompatTextView_autoSizeMaxTextSize 1
-+int styleable AppCompatTextView_autoSizeMinTextSize 2
-+int styleable AppCompatTextView_autoSizePresetSizes 3
-+int styleable AppCompatTextView_autoSizeStepGranularity 4
-+int styleable AppCompatTextView_autoSizeTextType 5
-+int styleable AppCompatTextView_firstBaselineToTopHeight 6
-+int styleable AppCompatTextView_fontFamily 7
-+int styleable AppCompatTextView_lastBaselineToBottomHeight 8
-+int styleable AppCompatTextView_lineHeight 9
-+int styleable AppCompatTextView_textAllCaps 10
-+int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable AppCompatTheme_actionBarDivider 0
-+int styleable AppCompatTheme_actionBarItemBackground 1
-+int styleable AppCompatTheme_actionBarPopupTheme 2
-+int styleable AppCompatTheme_actionBarSize 3
-+int styleable AppCompatTheme_actionBarSplitStyle 4
-+int styleable AppCompatTheme_actionBarStyle 5
-+int styleable AppCompatTheme_actionBarTabBarStyle 6
-+int styleable AppCompatTheme_actionBarTabStyle 7
-+int styleable AppCompatTheme_actionBarTabTextStyle 8
-+int styleable AppCompatTheme_actionBarTheme 9
-+int styleable AppCompatTheme_actionBarWidgetTheme 10
-+int styleable AppCompatTheme_actionButtonStyle 11
-+int styleable AppCompatTheme_actionDropDownStyle 12
-+int styleable AppCompatTheme_actionMenuTextAppearance 13
-+int styleable AppCompatTheme_actionMenuTextColor 14
-+int styleable AppCompatTheme_actionModeBackground 15
-+int styleable AppCompatTheme_actionModeCloseButtonStyle 16
-+int styleable AppCompatTheme_actionModeCloseDrawable 17
-+int styleable AppCompatTheme_actionModeCopyDrawable 18
-+int styleable AppCompatTheme_actionModeCutDrawable 19
-+int styleable AppCompatTheme_actionModeFindDrawable 20
-+int styleable AppCompatTheme_actionModePasteDrawable 21
-+int styleable AppCompatTheme_actionModePopupWindowStyle 22
-+int styleable AppCompatTheme_actionModeSelectAllDrawable 23
-+int styleable AppCompatTheme_actionModeShareDrawable 24
-+int styleable AppCompatTheme_actionModeSplitBackground 25
-+int styleable AppCompatTheme_actionModeStyle 26
-+int styleable AppCompatTheme_actionModeWebSearchDrawable 27
-+int styleable AppCompatTheme_actionOverflowButtonStyle 28
-+int styleable AppCompatTheme_actionOverflowMenuStyle 29
-+int styleable AppCompatTheme_activityChooserViewStyle 30
-+int styleable AppCompatTheme_alertDialogButtonGroupStyle 31
-+int styleable AppCompatTheme_alertDialogCenterButtons 32
-+int styleable AppCompatTheme_alertDialogStyle 33
-+int styleable AppCompatTheme_alertDialogTheme 34
-+int styleable AppCompatTheme_android_windowAnimationStyle 35
-+int styleable AppCompatTheme_android_windowIsFloating 36
-+int styleable AppCompatTheme_autoCompleteTextViewStyle 37
-+int styleable AppCompatTheme_borderlessButtonStyle 38
-+int styleable AppCompatTheme_buttonBarButtonStyle 39
-+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
-+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
-+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
-+int styleable AppCompatTheme_buttonBarStyle 43
-+int styleable AppCompatTheme_buttonStyle 44
-+int styleable AppCompatTheme_buttonStyleSmall 45
-+int styleable AppCompatTheme_checkboxStyle 46
-+int styleable AppCompatTheme_checkedTextViewStyle 47
-+int styleable AppCompatTheme_colorAccent 48
-+int styleable AppCompatTheme_colorBackgroundFloating 49
-+int styleable AppCompatTheme_colorButtonNormal 50
-+int styleable AppCompatTheme_colorControlActivated 51
-+int styleable AppCompatTheme_colorControlHighlight 52
-+int styleable AppCompatTheme_colorControlNormal 53
-+int styleable AppCompatTheme_colorError 54
-+int styleable AppCompatTheme_colorPrimary 55
-+int styleable AppCompatTheme_colorPrimaryDark 56
-+int styleable AppCompatTheme_colorSwitchThumbNormal 57
-+int styleable AppCompatTheme_controlBackground 58
-+int styleable AppCompatTheme_dialogCornerRadius 59
-+int styleable AppCompatTheme_dialogPreferredPadding 60
-+int styleable AppCompatTheme_dialogTheme 61
-+int styleable AppCompatTheme_dividerHorizontal 62
-+int styleable AppCompatTheme_dividerVertical 63
-+int styleable AppCompatTheme_dropDownListViewStyle 64
-+int styleable AppCompatTheme_dropdownListPreferredItemHeight 65
-+int styleable AppCompatTheme_editTextBackground 66
-+int styleable AppCompatTheme_editTextColor 67
-+int styleable AppCompatTheme_editTextStyle 68
-+int styleable AppCompatTheme_homeAsUpIndicator 69
-+int styleable AppCompatTheme_imageButtonStyle 70
-+int styleable AppCompatTheme_listChoiceBackgroundIndicator 71
-+int styleable AppCompatTheme_listDividerAlertDialog 72
-+int styleable AppCompatTheme_listMenuViewStyle 73
-+int styleable AppCompatTheme_listPopupWindowStyle 74
-+int styleable AppCompatTheme_listPreferredItemHeight 75
-+int styleable AppCompatTheme_listPreferredItemHeightLarge 76
-+int styleable AppCompatTheme_listPreferredItemHeightSmall 77
-+int styleable AppCompatTheme_listPreferredItemPaddingLeft 78
-+int styleable AppCompatTheme_listPreferredItemPaddingRight 79
-+int styleable AppCompatTheme_panelBackground 80
-+int styleable AppCompatTheme_panelMenuListTheme 81
-+int styleable AppCompatTheme_panelMenuListWidth 82
-+int styleable AppCompatTheme_popupMenuStyle 83
-+int styleable AppCompatTheme_popupWindowStyle 84
-+int styleable AppCompatTheme_radioButtonStyle 85
-+int styleable AppCompatTheme_ratingBarStyle 86
-+int styleable AppCompatTheme_ratingBarStyleIndicator 87
-+int styleable AppCompatTheme_ratingBarStyleSmall 88
-+int styleable AppCompatTheme_searchViewStyle 89
-+int styleable AppCompatTheme_seekBarStyle 90
-+int styleable AppCompatTheme_selectableItemBackground 91
-+int styleable AppCompatTheme_selectableItemBackgroundBorderless 92
-+int styleable AppCompatTheme_spinnerDropDownItemStyle 93
-+int styleable AppCompatTheme_spinnerStyle 94
-+int styleable AppCompatTheme_switchStyle 95
-+int styleable AppCompatTheme_textAppearanceLargePopupMenu 96
-+int styleable AppCompatTheme_textAppearanceListItem 97
-+int styleable AppCompatTheme_textAppearanceListItemSecondary 98
-+int styleable AppCompatTheme_textAppearanceListItemSmall 99
-+int styleable AppCompatTheme_textAppearancePopupMenuHeader 100
-+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101
-+int styleable AppCompatTheme_textAppearanceSearchResultTitle 102
-+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103
-+int styleable AppCompatTheme_textColorAlertDialogListItem 104
-+int styleable AppCompatTheme_textColorSearchUrl 105
-+int styleable AppCompatTheme_toolbarNavigationButtonStyle 106
-+int styleable AppCompatTheme_toolbarStyle 107
-+int styleable AppCompatTheme_tooltipForegroundColor 108
-+int styleable AppCompatTheme_tooltipFrameBackground 109
-+int styleable AppCompatTheme_viewInflaterClass 110
-+int styleable AppCompatTheme_windowActionBar 111
-+int styleable AppCompatTheme_windowActionBarOverlay 112
-+int styleable AppCompatTheme_windowActionModeOverlay 113
-+int styleable AppCompatTheme_windowFixedHeightMajor 114
-+int styleable AppCompatTheme_windowFixedHeightMinor 115
-+int styleable AppCompatTheme_windowFixedWidthMajor 116
-+int styleable AppCompatTheme_windowFixedWidthMinor 117
-+int styleable AppCompatTheme_windowMinWidthMajor 118
-+int styleable AppCompatTheme_windowMinWidthMinor 119
-+int styleable AppCompatTheme_windowNoTitle 120
-+int[] styleable Autofill_InlineSuggestion { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionChip 0
-+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionEndIconStyle 1
-+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionStartIconStyle 2
-+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionSubtitle 3
-+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionTitle 4
-+int styleable Autofill_InlineSuggestion_isAutofillInlineSuggestionTheme 5
-+int[] styleable ButtonBarLayout { 0x0 }
-+int styleable ButtonBarLayout_allowStacking 0
-+int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 }
-+int styleable ColorStateListItem_alpha 0
-+int styleable ColorStateListItem_android_alpha 1
-+int styleable ColorStateListItem_android_color 2
-+int[] styleable CompoundButton { 0x1010107, 0x0, 0x0 }
-+int styleable CompoundButton_android_button 0
-+int styleable CompoundButton_buttonTint 1
-+int styleable CompoundButton_buttonTintMode 2
-+int[] styleable CoordinatorLayout { 0x0, 0x0 }
-+int styleable CoordinatorLayout_keylines 0
-+int styleable CoordinatorLayout_statusBarBackground 1
-+int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable CoordinatorLayout_Layout_android_layout_gravity 0
-+int styleable CoordinatorLayout_Layout_layout_anchor 1
-+int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
-+int styleable CoordinatorLayout_Layout_layout_behavior 3
-+int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
-+int styleable CoordinatorLayout_Layout_layout_insetEdge 5
-+int styleable CoordinatorLayout_Layout_layout_keyline 6
-+int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable DrawerArrowToggle_arrowHeadLength 0
-+int styleable DrawerArrowToggle_arrowShaftLength 1
-+int styleable DrawerArrowToggle_barLength 2
-+int styleable DrawerArrowToggle_color 3
-+int styleable DrawerArrowToggle_drawableSize 4
-+int styleable DrawerArrowToggle_gapBetweenBars 5
-+int styleable DrawerArrowToggle_spinBars 6
-+int styleable DrawerArrowToggle_thickness 7
-+int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable FontFamily_fontProviderAuthority 0
-+int styleable FontFamily_fontProviderCerts 1
-+int styleable FontFamily_fontProviderFetchStrategy 2
-+int styleable FontFamily_fontProviderFetchTimeout 3
-+int styleable FontFamily_fontProviderPackage 4
-+int styleable FontFamily_fontProviderQuery 5
-+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable FontFamilyFont_android_font 0
-+int styleable FontFamilyFont_android_fontStyle 1
-+int styleable FontFamilyFont_android_fontVariationSettings 2
-+int styleable FontFamilyFont_android_fontWeight 3
-+int styleable FontFamilyFont_android_ttcIndex 4
-+int styleable FontFamilyFont_font 5
-+int styleable FontFamilyFont_fontStyle 6
-+int styleable FontFamilyFont_fontVariationSettings 7
-+int styleable FontFamilyFont_fontWeight 8
-+int styleable FontFamilyFont_ttcIndex 9
-+int[] styleable GenericDraweeHierarchy { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable GenericDraweeHierarchy_actualImageScaleType 0
-+int styleable GenericDraweeHierarchy_backgroundImage 1
-+int styleable GenericDraweeHierarchy_fadeDuration 2
-+int styleable GenericDraweeHierarchy_failureImage 3
-+int styleable GenericDraweeHierarchy_failureImageScaleType 4
-+int styleable GenericDraweeHierarchy_overlayImage 5
-+int styleable GenericDraweeHierarchy_placeholderImage 6
-+int styleable GenericDraweeHierarchy_placeholderImageScaleType 7
-+int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8
-+int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9
-+int styleable GenericDraweeHierarchy_progressBarImage 10
-+int styleable GenericDraweeHierarchy_progressBarImageScaleType 11
-+int styleable GenericDraweeHierarchy_retryImage 12
-+int styleable GenericDraweeHierarchy_retryImageScaleType 13
-+int styleable GenericDraweeHierarchy_roundAsCircle 14
-+int styleable GenericDraweeHierarchy_roundBottomEnd 15
-+int styleable GenericDraweeHierarchy_roundBottomLeft 16
-+int styleable GenericDraweeHierarchy_roundBottomRight 17
-+int styleable GenericDraweeHierarchy_roundBottomStart 18
-+int styleable GenericDraweeHierarchy_roundTopEnd 19
-+int styleable GenericDraweeHierarchy_roundTopLeft 20
-+int styleable GenericDraweeHierarchy_roundTopRight 21
-+int styleable GenericDraweeHierarchy_roundTopStart 22
-+int styleable GenericDraweeHierarchy_roundWithOverlayColor 23
-+int styleable GenericDraweeHierarchy_roundedCornerRadius 24
-+int styleable GenericDraweeHierarchy_roundingBorderColor 25
-+int styleable GenericDraweeHierarchy_roundingBorderPadding 26
-+int styleable GenericDraweeHierarchy_roundingBorderWidth 27
-+int styleable GenericDraweeHierarchy_viewAspectRatio 28
-+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
-+int styleable GradientColor_android_centerColor 0
-+int styleable GradientColor_android_centerX 1
-+int styleable GradientColor_android_centerY 2
-+int styleable GradientColor_android_endColor 3
-+int styleable GradientColor_android_endX 4
-+int styleable GradientColor_android_endY 5
-+int styleable GradientColor_android_gradientRadius 6
-+int styleable GradientColor_android_startColor 7
-+int styleable GradientColor_android_startX 8
-+int styleable GradientColor_android_startY 9
-+int styleable GradientColor_android_tileMode 10
-+int styleable GradientColor_android_type 11
-+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
-+int styleable GradientColorItem_android_color 0
-+int styleable GradientColorItem_android_offset 1
-+int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 }
-+int styleable LinearLayoutCompat_android_baselineAligned 0
-+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1
-+int styleable LinearLayoutCompat_android_gravity 2
-+int styleable LinearLayoutCompat_android_orientation 3
-+int styleable LinearLayoutCompat_android_weightSum 4
-+int styleable LinearLayoutCompat_divider 5
-+int styleable LinearLayoutCompat_dividerPadding 6
-+int styleable LinearLayoutCompat_measureWithLargestChild 7
-+int styleable LinearLayoutCompat_showDividers 8
-+int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 }
-+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
-+int styleable LinearLayoutCompat_Layout_android_layout_height 1
-+int styleable LinearLayoutCompat_Layout_android_layout_weight 2
-+int styleable LinearLayoutCompat_Layout_android_layout_width 3
-+int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad }
-+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
-+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
-+int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 }
-+int styleable MenuGroup_android_checkableBehavior 0
-+int styleable MenuGroup_android_enabled 1
-+int styleable MenuGroup_android_id 2
-+int styleable MenuGroup_android_menuCategory 3
-+int styleable MenuGroup_android_orderInCategory 4
-+int styleable MenuGroup_android_visible 5
-+int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable MenuItem_actionLayout 0
-+int styleable MenuItem_actionProviderClass 1
-+int styleable MenuItem_actionViewClass 2
-+int styleable MenuItem_alphabeticModifiers 3
-+int styleable MenuItem_android_alphabeticShortcut 4
-+int styleable MenuItem_android_checkable 5
-+int styleable MenuItem_android_checked 6
-+int styleable MenuItem_android_enabled 7
-+int styleable MenuItem_android_icon 8
-+int styleable MenuItem_android_id 9
-+int styleable MenuItem_android_menuCategory 10
-+int styleable MenuItem_android_numericShortcut 11
-+int styleable MenuItem_android_onClick 12
-+int styleable MenuItem_android_orderInCategory 13
-+int styleable MenuItem_android_title 14
-+int styleable MenuItem_android_titleCondensed 15
-+int styleable MenuItem_android_visible 16
-+int styleable MenuItem_contentDescription 17
-+int styleable MenuItem_iconTint 18
-+int styleable MenuItem_iconTintMode 19
-+int styleable MenuItem_numericModifiers 20
-+int styleable MenuItem_showAsAction 21
-+int styleable MenuItem_tooltipText 22
-+int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 }
-+int styleable MenuView_android_headerBackground 0
-+int styleable MenuView_android_horizontalDivider 1
-+int styleable MenuView_android_itemBackground 2
-+int styleable MenuView_android_itemIconDisabledAlpha 3
-+int styleable MenuView_android_itemTextAppearance 4
-+int styleable MenuView_android_verticalDivider 5
-+int styleable MenuView_android_windowAnimationStyle 6
-+int styleable MenuView_preserveIconSpacing 7
-+int styleable MenuView_subMenuArrow 8
-+int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 }
-+int styleable PopupWindow_android_popupAnimationStyle 0
-+int styleable PopupWindow_android_popupBackground 1
-+int styleable PopupWindow_overlapAnchor 2
-+int[] styleable PopupWindowBackgroundState { 0x0 }
-+int styleable PopupWindowBackgroundState_state_above_anchor 0
-+int[] styleable RecycleListView { 0x0, 0x0 }
-+int styleable RecycleListView_paddingBottomNoButtons 0
-+int styleable RecycleListView_paddingTopNoTitle 1
-+int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable SearchView_android_focusable 0
-+int styleable SearchView_android_imeOptions 1
-+int styleable SearchView_android_inputType 2
-+int styleable SearchView_android_maxWidth 3
-+int styleable SearchView_closeIcon 4
-+int styleable SearchView_commitIcon 5
-+int styleable SearchView_defaultQueryHint 6
-+int styleable SearchView_goIcon 7
-+int styleable SearchView_iconifiedByDefault 8
-+int styleable SearchView_layout 9
-+int styleable SearchView_queryBackground 10
-+int styleable SearchView_queryHint 11
-+int styleable SearchView_searchHintIcon 12
-+int styleable SearchView_searchIcon 13
-+int styleable SearchView_submitBackground 14
-+int styleable SearchView_suggestionRowLayout 15
-+int styleable SearchView_voiceIcon 16
-+int[] styleable SimpleDraweeView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable SimpleDraweeView_actualImageResource 0
-+int styleable SimpleDraweeView_actualImageScaleType 1
-+int styleable SimpleDraweeView_actualImageUri 2
-+int styleable SimpleDraweeView_backgroundImage 3
-+int styleable SimpleDraweeView_fadeDuration 4
-+int styleable SimpleDraweeView_failureImage 5
-+int styleable SimpleDraweeView_failureImageScaleType 6
-+int styleable SimpleDraweeView_overlayImage 7
-+int styleable SimpleDraweeView_placeholderImage 8
-+int styleable SimpleDraweeView_placeholderImageScaleType 9
-+int styleable SimpleDraweeView_pressedStateOverlayImage 10
-+int styleable SimpleDraweeView_progressBarAutoRotateInterval 11
-+int styleable SimpleDraweeView_progressBarImage 12
-+int styleable SimpleDraweeView_progressBarImageScaleType 13
-+int styleable SimpleDraweeView_retryImage 14
-+int styleable SimpleDraweeView_retryImageScaleType 15
-+int styleable SimpleDraweeView_roundAsCircle 16
-+int styleable SimpleDraweeView_roundBottomEnd 17
-+int styleable SimpleDraweeView_roundBottomLeft 18
-+int styleable SimpleDraweeView_roundBottomRight 19
-+int styleable SimpleDraweeView_roundBottomStart 20
-+int styleable SimpleDraweeView_roundTopEnd 21
-+int styleable SimpleDraweeView_roundTopLeft 22
-+int styleable SimpleDraweeView_roundTopRight 23
-+int styleable SimpleDraweeView_roundTopStart 24
-+int styleable SimpleDraweeView_roundWithOverlayColor 25
-+int styleable SimpleDraweeView_roundedCornerRadius 26
-+int styleable SimpleDraweeView_roundingBorderColor 27
-+int styleable SimpleDraweeView_roundingBorderPadding 28
-+int styleable SimpleDraweeView_roundingBorderWidth 29
-+int styleable SimpleDraweeView_viewAspectRatio 30
-+int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 }
-+int styleable Spinner_android_dropDownWidth 0
-+int styleable Spinner_android_entries 1
-+int styleable Spinner_android_popupBackground 2
-+int styleable Spinner_android_prompt 3
-+int styleable Spinner_popupTheme 4
-+int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
-+int styleable StateListDrawable_android_constantSize 0
-+int styleable StateListDrawable_android_dither 1
-+int styleable StateListDrawable_android_enterFadeDuration 2
-+int styleable StateListDrawable_android_exitFadeDuration 3
-+int styleable StateListDrawable_android_variablePadding 4
-+int styleable StateListDrawable_android_visible 5
-+int[] styleable StateListDrawableItem { 0x1010199 }
-+int styleable StateListDrawableItem_android_drawable 0
-+int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable SwitchCompat_android_textOff 0
-+int styleable SwitchCompat_android_textOn 1
-+int styleable SwitchCompat_android_thumb 2
-+int styleable SwitchCompat_showText 3
-+int styleable SwitchCompat_splitTrack 4
-+int styleable SwitchCompat_switchMinWidth 5
-+int styleable SwitchCompat_switchPadding 6
-+int styleable SwitchCompat_switchTextAppearance 7
-+int styleable SwitchCompat_thumbTextPadding 8
-+int styleable SwitchCompat_thumbTint 9
-+int styleable SwitchCompat_thumbTintMode 10
-+int styleable SwitchCompat_track 11
-+int styleable SwitchCompat_trackTint 12
-+int styleable SwitchCompat_trackTintMode 13
-+int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0 }
-+int styleable TextAppearance_android_fontFamily 0
-+int styleable TextAppearance_android_shadowColor 1
-+int styleable TextAppearance_android_shadowDx 2
-+int styleable TextAppearance_android_shadowDy 3
-+int styleable TextAppearance_android_shadowRadius 4
-+int styleable TextAppearance_android_textColor 5
-+int styleable TextAppearance_android_textColorHint 6
-+int styleable TextAppearance_android_textColorLink 7
-+int styleable TextAppearance_android_textSize 8
-+int styleable TextAppearance_android_textStyle 9
-+int styleable TextAppearance_android_typeface 10
-+int styleable TextAppearance_fontFamily 11
-+int styleable TextAppearance_textAllCaps 12
-+int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-+int styleable Toolbar_android_gravity 0
-+int styleable Toolbar_android_minHeight 1
-+int styleable Toolbar_buttonGravity 2
-+int styleable Toolbar_collapseContentDescription 3
-+int styleable Toolbar_collapseIcon 4
-+int styleable Toolbar_contentInsetEnd 5
-+int styleable Toolbar_contentInsetEndWithActions 6
-+int styleable Toolbar_contentInsetLeft 7
-+int styleable Toolbar_contentInsetRight 8
-+int styleable Toolbar_contentInsetStart 9
-+int styleable Toolbar_contentInsetStartWithNavigation 10
-+int styleable Toolbar_logo 11
-+int styleable Toolbar_logoDescription 12
-+int styleable Toolbar_maxButtonHeight 13
-+int styleable Toolbar_navigationContentDescription 14
-+int styleable Toolbar_navigationIcon 15
-+int styleable Toolbar_popupTheme 16
-+int styleable Toolbar_subtitle 17
-+int styleable Toolbar_subtitleTextAppearance 18
-+int styleable Toolbar_subtitleTextColor 19
-+int styleable Toolbar_title 20
-+int styleable Toolbar_titleMargin 21
-+int styleable Toolbar_titleMarginBottom 22
-+int styleable Toolbar_titleMarginEnd 23
-+int styleable Toolbar_titleMarginStart 24
-+int styleable Toolbar_titleMarginTop 25
-+int styleable Toolbar_titleMargins 26
-+int styleable Toolbar_titleTextAppearance 27
-+int styleable Toolbar_titleTextColor 28
-+int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 }
-+int styleable View_android_focusable 0
-+int styleable View_android_theme 1
-+int styleable View_paddingEnd 2
-+int styleable View_paddingStart 3
-+int styleable View_theme 4
-+int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 }
-+int styleable ViewBackgroundHelper_android_background 0
-+int styleable ViewBackgroundHelper_backgroundTint 1
-+int styleable ViewBackgroundHelper_backgroundTintMode 2
-+int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 }
-+int styleable ViewStubCompat_android_id 0
-+int styleable ViewStubCompat_android_inflatedId 1
-+int styleable ViewStubCompat_android_layout 2
-+int xml image_share_filepaths 0x0
-+int xml rn_dev_preferences 0x0
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
-new file mode 100644
-index 0000000..74405ce
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
-@@ -0,0 +1,2 @@
-+
-+
-\ No newline at end of file
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
-new file mode 100644
-index 0000000..fc50c0f
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
-@@ -0,0 +1,2 @@
-+
-+
-\ No newline at end of file
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/packageDebugAssets/merger.xml
-new file mode 100644
-index 0000000..1bbd46e
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/packageDebugAssets/merger.xml
-@@ -0,0 +1,2 @@
-+
-+
-\ No newline at end of file
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties
-new file mode 100644
-index 0000000..778cd74
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties
-@@ -0,0 +1 @@
-+#Tue Nov 15 17:40:50 CET 2022
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/packageDebugResources/merger.xml b/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/packageDebugResources/merger.xml
-new file mode 100644
-index 0000000..58cd554
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/incremental/packageDebugResources/merger.xml
-@@ -0,0 +1,2 @@
-+
-+
-\ No newline at end of file
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/javac/debug/classes/com/dooboolab/audiorecorderplayer/BuildConfig.class b/node_modules/react-native-audio-recorder-player/android/build/intermediates/javac/debug/classes/com/dooboolab/audiorecorderplayer/BuildConfig.class
-new file mode 100644
-index 0000000..9cd419b
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/intermediates/javac/debug/classes/com/dooboolab/audiorecorderplayer/BuildConfig.class differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/library_java_res/debug/res.jar b/node_modules/react-native-audio-recorder-player/android/build/intermediates/library_java_res/debug/res.jar
-new file mode 100644
-index 0000000..2c86fc3
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/intermediates/library_java_res/debug/res.jar differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/local_only_symbol_list/debug/R-def.txt b/node_modules/react-native-audio-recorder-player/android/build/intermediates/local_only_symbol_list/debug/R-def.txt
-new file mode 100644
-index 0000000..78ac5b8
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/local_only_symbol_list/debug/R-def.txt
-@@ -0,0 +1,2 @@
-+R_DEF: Internal format may change without notice
-+local
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/node_modules/react-native-audio-recorder-player/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
-new file mode 100644
-index 0000000..f7847a7
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
-@@ -0,0 +1,15 @@
-+1
-+2
-+4
-+5 /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+7 android:targetSdkVersion="30" />
-+7-->/Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+8
-+9
-+9-->/Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml:5:5-71
-+9-->/Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml:5:22-68
-+10
-+11
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml b/node_modules/react-native-audio-recorder-player/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml
-new file mode 100644
-index 0000000..da15c6f
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml
-@@ -0,0 +1,11 @@
-+
-+
-+
-+
-+
-+
-+
-+
-\ No newline at end of file
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/navigation_json/debug/navigation.json b/node_modules/react-native-audio-recorder-player/android/build/intermediates/navigation_json/debug/navigation.json
-new file mode 100644
-index 0000000..0637a08
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/navigation_json/debug/navigation.json
-@@ -0,0 +1 @@
-+[]
-\ No newline at end of file
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/packaged_manifests/debug/output-metadata.json b/node_modules/react-native-audio-recorder-player/android/build/intermediates/packaged_manifests/debug/output-metadata.json
-new file mode 100644
-index 0000000..1907bd4
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/packaged_manifests/debug/output-metadata.json
-@@ -0,0 +1,16 @@
-+{
-+ "version": 2,
-+ "artifactType": {
-+ "type": "PACKAGED_MANIFESTS",
-+ "kind": "Directory"
-+ },
-+ "applicationId": "com.dooboolab.audiorecorderplayer",
-+ "variantName": "debug",
-+ "elements": [
-+ {
-+ "type": "SINGLE",
-+ "filters": [],
-+ "outputFile": "../../merged_manifest/debug/AndroidManifest.xml"
-+ }
-+ ]
-+}
-\ No newline at end of file
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/META-INF/react-native-audio-recorder-player_debug.kotlin_module b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/META-INF/react-native-audio-recorder-player_debug.kotlin_module
-new file mode 100644
-index 0000000..70f0f69
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/META-INF/react-native-audio-recorder-player_debug.kotlin_module differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/BuildConfig.class b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/BuildConfig.class
-new file mode 100644
-index 0000000..9cd419b
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/BuildConfig.class differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$Companion.class b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$Companion.class
-new file mode 100644
-index 0000000..5570b3b
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$Companion.class differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startPlayer$1$1.class b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startPlayer$1$1.class
-new file mode 100644
-index 0000000..cb23892
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startPlayer$1$1.class differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startRecorder$1.class b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startRecorder$1.class
-new file mode 100644
-index 0000000..846767a
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startRecorder$1.class differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule.class b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule.class
-new file mode 100644
-index 0000000..3852f34
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule.class differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerPackage.class b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerPackage.class
-new file mode 100644
-index 0000000..d125623
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/intermediates/runtime_library_classes_dir/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerPackage.class differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt b/node_modules/react-native-audio-recorder-player/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
-new file mode 100644
-index 0000000..2a00050
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
-@@ -0,0 +1,1394 @@
-+com.dooboolab.audiorecorderplayer
-+anim abc_fade_in
-+anim abc_fade_out
-+anim abc_grow_fade_in_from_bottom
-+anim abc_popup_enter
-+anim abc_popup_exit
-+anim abc_shrink_fade_out_from_bottom
-+anim abc_slide_in_bottom
-+anim abc_slide_in_top
-+anim abc_slide_out_bottom
-+anim abc_slide_out_top
-+anim abc_tooltip_enter
-+anim abc_tooltip_exit
-+anim catalyst_fade_in
-+anim catalyst_fade_out
-+anim catalyst_push_up_in
-+anim catalyst_push_up_out
-+anim catalyst_slide_down
-+anim catalyst_slide_up
-+attr actionBarDivider
-+attr actionBarItemBackground
-+attr actionBarPopupTheme
-+attr actionBarSize
-+attr actionBarSplitStyle
-+attr actionBarStyle
-+attr actionBarTabBarStyle
-+attr actionBarTabStyle
-+attr actionBarTabTextStyle
-+attr actionBarTheme
-+attr actionBarWidgetTheme
-+attr actionButtonStyle
-+attr actionDropDownStyle
-+attr actionLayout
-+attr actionMenuTextAppearance
-+attr actionMenuTextColor
-+attr actionModeBackground
-+attr actionModeCloseButtonStyle
-+attr actionModeCloseDrawable
-+attr actionModeCopyDrawable
-+attr actionModeCutDrawable
-+attr actionModeFindDrawable
-+attr actionModePasteDrawable
-+attr actionModePopupWindowStyle
-+attr actionModeSelectAllDrawable
-+attr actionModeShareDrawable
-+attr actionModeSplitBackground
-+attr actionModeStyle
-+attr actionModeWebSearchDrawable
-+attr actionOverflowButtonStyle
-+attr actionOverflowMenuStyle
-+attr actionProviderClass
-+attr actionViewClass
-+attr activityChooserViewStyle
-+attr actualImageResource
-+attr actualImageScaleType
-+attr actualImageUri
-+attr alertDialogButtonGroupStyle
-+attr alertDialogCenterButtons
-+attr alertDialogStyle
-+attr alertDialogTheme
-+attr allowStacking
-+attr alpha
-+attr alphabeticModifiers
-+attr arrowHeadLength
-+attr arrowShaftLength
-+attr autoCompleteTextViewStyle
-+attr autoSizeMaxTextSize
-+attr autoSizeMinTextSize
-+attr autoSizePresetSizes
-+attr autoSizeStepGranularity
-+attr autoSizeTextType
-+attr autofillInlineSuggestionChip
-+attr autofillInlineSuggestionEndIconStyle
-+attr autofillInlineSuggestionStartIconStyle
-+attr autofillInlineSuggestionSubtitle
-+attr autofillInlineSuggestionTitle
-+attr background
-+attr backgroundImage
-+attr backgroundSplit
-+attr backgroundStacked
-+attr backgroundTint
-+attr backgroundTintMode
-+attr barLength
-+attr borderlessButtonStyle
-+attr buttonBarButtonStyle
-+attr buttonBarNegativeButtonStyle
-+attr buttonBarNeutralButtonStyle
-+attr buttonBarPositiveButtonStyle
-+attr buttonBarStyle
-+attr buttonGravity
-+attr buttonIconDimen
-+attr buttonPanelSideLayout
-+attr buttonStyle
-+attr buttonStyleSmall
-+attr buttonTint
-+attr buttonTintMode
-+attr checkboxStyle
-+attr checkedTextViewStyle
-+attr closeIcon
-+attr closeItemLayout
-+attr collapseContentDescription
-+attr collapseIcon
-+attr color
-+attr colorAccent
-+attr colorBackgroundFloating
-+attr colorButtonNormal
-+attr colorControlActivated
-+attr colorControlHighlight
-+attr colorControlNormal
-+attr colorError
-+attr colorPrimary
-+attr colorPrimaryDark
-+attr colorSwitchThumbNormal
-+attr commitIcon
-+attr contentDescription
-+attr contentInsetEnd
-+attr contentInsetEndWithActions
-+attr contentInsetLeft
-+attr contentInsetRight
-+attr contentInsetStart
-+attr contentInsetStartWithNavigation
-+attr controlBackground
-+attr coordinatorLayoutStyle
-+attr customNavigationLayout
-+attr defaultQueryHint
-+attr dialogCornerRadius
-+attr dialogPreferredPadding
-+attr dialogTheme
-+attr displayOptions
-+attr divider
-+attr dividerHorizontal
-+attr dividerPadding
-+attr dividerVertical
-+attr drawableSize
-+attr drawerArrowStyle
-+attr dropDownListViewStyle
-+attr dropdownListPreferredItemHeight
-+attr editTextBackground
-+attr editTextColor
-+attr editTextStyle
-+attr elevation
-+attr expandActivityOverflowButtonDrawable
-+attr fadeDuration
-+attr failureImage
-+attr failureImageScaleType
-+attr firstBaselineToTopHeight
-+attr font
-+attr fontFamily
-+attr fontProviderAuthority
-+attr fontProviderCerts
-+attr fontProviderFetchStrategy
-+attr fontProviderFetchTimeout
-+attr fontProviderPackage
-+attr fontProviderQuery
-+attr fontStyle
-+attr fontVariationSettings
-+attr fontWeight
-+attr gapBetweenBars
-+attr goIcon
-+attr height
-+attr hideOnContentScroll
-+attr homeAsUpIndicator
-+attr homeLayout
-+attr icon
-+attr iconTint
-+attr iconTintMode
-+attr iconifiedByDefault
-+attr imageButtonStyle
-+attr indeterminateProgressStyle
-+attr initialActivityCount
-+attr isAutofillInlineSuggestionTheme
-+attr isLightTheme
-+attr itemPadding
-+attr keylines
-+attr lastBaselineToBottomHeight
-+attr layout
-+attr layout_anchor
-+attr layout_anchorGravity
-+attr layout_behavior
-+attr layout_dodgeInsetEdges
-+attr layout_insetEdge
-+attr layout_keyline
-+attr lineHeight
-+attr listChoiceBackgroundIndicator
-+attr listDividerAlertDialog
-+attr listItemLayout
-+attr listLayout
-+attr listMenuViewStyle
-+attr listPopupWindowStyle
-+attr listPreferredItemHeight
-+attr listPreferredItemHeightLarge
-+attr listPreferredItemHeightSmall
-+attr listPreferredItemPaddingLeft
-+attr listPreferredItemPaddingRight
-+attr logo
-+attr logoDescription
-+attr maxButtonHeight
-+attr measureWithLargestChild
-+attr multiChoiceItemLayout
-+attr navigationContentDescription
-+attr navigationIcon
-+attr navigationMode
-+attr numericModifiers
-+attr overlapAnchor
-+attr overlayImage
-+attr paddingBottomNoButtons
-+attr paddingEnd
-+attr paddingStart
-+attr paddingTopNoTitle
-+attr panelBackground
-+attr panelMenuListTheme
-+attr panelMenuListWidth
-+attr placeholderImage
-+attr placeholderImageScaleType
-+attr popupMenuStyle
-+attr popupTheme
-+attr popupWindowStyle
-+attr preserveIconSpacing
-+attr pressedStateOverlayImage
-+attr progressBarAutoRotateInterval
-+attr progressBarImage
-+attr progressBarImageScaleType
-+attr progressBarPadding
-+attr progressBarStyle
-+attr queryBackground
-+attr queryHint
-+attr radioButtonStyle
-+attr ratingBarStyle
-+attr ratingBarStyleIndicator
-+attr ratingBarStyleSmall
-+attr retryImage
-+attr retryImageScaleType
-+attr roundAsCircle
-+attr roundBottomEnd
-+attr roundBottomLeft
-+attr roundBottomRight
-+attr roundBottomStart
-+attr roundTopEnd
-+attr roundTopLeft
-+attr roundTopRight
-+attr roundTopStart
-+attr roundWithOverlayColor
-+attr roundedCornerRadius
-+attr roundingBorderColor
-+attr roundingBorderPadding
-+attr roundingBorderWidth
-+attr searchHintIcon
-+attr searchIcon
-+attr searchViewStyle
-+attr seekBarStyle
-+attr selectableItemBackground
-+attr selectableItemBackgroundBorderless
-+attr showAsAction
-+attr showDividers
-+attr showText
-+attr showTitle
-+attr singleChoiceItemLayout
-+attr spinBars
-+attr spinnerDropDownItemStyle
-+attr spinnerStyle
-+attr splitTrack
-+attr srcCompat
-+attr state_above_anchor
-+attr statusBarBackground
-+attr subMenuArrow
-+attr submitBackground
-+attr subtitle
-+attr subtitleTextAppearance
-+attr subtitleTextColor
-+attr subtitleTextStyle
-+attr suggestionRowLayout
-+attr switchMinWidth
-+attr switchPadding
-+attr switchStyle
-+attr switchTextAppearance
-+attr textAllCaps
-+attr textAppearanceLargePopupMenu
-+attr textAppearanceListItem
-+attr textAppearanceListItemSecondary
-+attr textAppearanceListItemSmall
-+attr textAppearancePopupMenuHeader
-+attr textAppearanceSearchResultSubtitle
-+attr textAppearanceSearchResultTitle
-+attr textAppearanceSmallPopupMenu
-+attr textColorAlertDialogListItem
-+attr textColorSearchUrl
-+attr theme
-+attr thickness
-+attr thumbTextPadding
-+attr thumbTint
-+attr thumbTintMode
-+attr tickMark
-+attr tickMarkTint
-+attr tickMarkTintMode
-+attr tint
-+attr tintMode
-+attr title
-+attr titleMargin
-+attr titleMarginBottom
-+attr titleMarginEnd
-+attr titleMarginStart
-+attr titleMarginTop
-+attr titleMargins
-+attr titleTextAppearance
-+attr titleTextColor
-+attr titleTextStyle
-+attr toolbarNavigationButtonStyle
-+attr toolbarStyle
-+attr tooltipForegroundColor
-+attr tooltipFrameBackground
-+attr tooltipText
-+attr track
-+attr trackTint
-+attr trackTintMode
-+attr ttcIndex
-+attr viewAspectRatio
-+attr viewInflaterClass
-+attr voiceIcon
-+attr windowActionBar
-+attr windowActionBarOverlay
-+attr windowActionModeOverlay
-+attr windowFixedHeightMajor
-+attr windowFixedHeightMinor
-+attr windowFixedWidthMajor
-+attr windowFixedWidthMinor
-+attr windowMinWidthMajor
-+attr windowMinWidthMinor
-+attr windowNoTitle
-+bool abc_action_bar_embed_tabs
-+bool abc_allow_stacked_button_bar
-+bool abc_config_actionMenuItemAllCaps
-+color abc_background_cache_hint_selector_material_dark
-+color abc_background_cache_hint_selector_material_light
-+color abc_btn_colored_borderless_text_material
-+color abc_btn_colored_text_material
-+color abc_color_highlight_material
-+color abc_hint_foreground_material_dark
-+color abc_hint_foreground_material_light
-+color abc_input_method_navigation_guard
-+color abc_primary_text_disable_only_material_dark
-+color abc_primary_text_disable_only_material_light
-+color abc_primary_text_material_dark
-+color abc_primary_text_material_light
-+color abc_search_url_text
-+color abc_search_url_text_normal
-+color abc_search_url_text_pressed
-+color abc_search_url_text_selected
-+color abc_secondary_text_material_dark
-+color abc_secondary_text_material_light
-+color abc_tint_btn_checkable
-+color abc_tint_default
-+color abc_tint_edittext
-+color abc_tint_seek_thumb
-+color abc_tint_spinner
-+color abc_tint_switch_track
-+color accent_material_dark
-+color accent_material_light
-+color background_floating_material_dark
-+color background_floating_material_light
-+color background_material_dark
-+color background_material_light
-+color bright_foreground_disabled_material_dark
-+color bright_foreground_disabled_material_light
-+color bright_foreground_inverse_material_dark
-+color bright_foreground_inverse_material_light
-+color bright_foreground_material_dark
-+color bright_foreground_material_light
-+color browser_actions_bg_grey
-+color browser_actions_divider_color
-+color browser_actions_text_color
-+color browser_actions_title_color
-+color button_material_dark
-+color button_material_light
-+color catalyst_logbox_background
-+color catalyst_redbox_background
-+color dim_foreground_disabled_material_dark
-+color dim_foreground_disabled_material_light
-+color dim_foreground_material_dark
-+color dim_foreground_material_light
-+color error_color_material_dark
-+color error_color_material_light
-+color foreground_material_dark
-+color foreground_material_light
-+color highlighted_text_material_dark
-+color highlighted_text_material_light
-+color material_blue_grey_800
-+color material_blue_grey_900
-+color material_blue_grey_950
-+color material_deep_teal_200
-+color material_deep_teal_500
-+color material_grey_100
-+color material_grey_300
-+color material_grey_50
-+color material_grey_600
-+color material_grey_800
-+color material_grey_850
-+color material_grey_900
-+color notification_action_color_filter
-+color notification_icon_bg_color
-+color primary_dark_material_dark
-+color primary_dark_material_light
-+color primary_material_dark
-+color primary_material_light
-+color primary_text_default_material_dark
-+color primary_text_default_material_light
-+color primary_text_disabled_material_dark
-+color primary_text_disabled_material_light
-+color ripple_material_dark
-+color ripple_material_light
-+color secondary_text_default_material_dark
-+color secondary_text_default_material_light
-+color secondary_text_disabled_material_dark
-+color secondary_text_disabled_material_light
-+color switch_thumb_disabled_material_dark
-+color switch_thumb_disabled_material_light
-+color switch_thumb_material_dark
-+color switch_thumb_material_light
-+color switch_thumb_normal_material_dark
-+color switch_thumb_normal_material_light
-+color tooltip_background_dark
-+color tooltip_background_light
-+dimen abc_action_bar_content_inset_material
-+dimen abc_action_bar_content_inset_with_nav
-+dimen abc_action_bar_default_height_material
-+dimen abc_action_bar_default_padding_end_material
-+dimen abc_action_bar_default_padding_start_material
-+dimen abc_action_bar_elevation_material
-+dimen abc_action_bar_icon_vertical_padding_material
-+dimen abc_action_bar_overflow_padding_end_material
-+dimen abc_action_bar_overflow_padding_start_material
-+dimen abc_action_bar_stacked_max_height
-+dimen abc_action_bar_stacked_tab_max_width
-+dimen abc_action_bar_subtitle_bottom_margin_material
-+dimen abc_action_bar_subtitle_top_margin_material
-+dimen abc_action_button_min_height_material
-+dimen abc_action_button_min_width_material
-+dimen abc_action_button_min_width_overflow_material
-+dimen abc_alert_dialog_button_bar_height
-+dimen abc_alert_dialog_button_dimen
-+dimen abc_button_inset_horizontal_material
-+dimen abc_button_inset_vertical_material
-+dimen abc_button_padding_horizontal_material
-+dimen abc_button_padding_vertical_material
-+dimen abc_cascading_menus_min_smallest_width
-+dimen abc_config_prefDialogWidth
-+dimen abc_control_corner_material
-+dimen abc_control_inset_material
-+dimen abc_control_padding_material
-+dimen abc_dialog_corner_radius_material
-+dimen abc_dialog_fixed_height_major
-+dimen abc_dialog_fixed_height_minor
-+dimen abc_dialog_fixed_width_major
-+dimen abc_dialog_fixed_width_minor
-+dimen abc_dialog_list_padding_bottom_no_buttons
-+dimen abc_dialog_list_padding_top_no_title
-+dimen abc_dialog_min_width_major
-+dimen abc_dialog_min_width_minor
-+dimen abc_dialog_padding_material
-+dimen abc_dialog_padding_top_material
-+dimen abc_dialog_title_divider_material
-+dimen abc_disabled_alpha_material_dark
-+dimen abc_disabled_alpha_material_light
-+dimen abc_dropdownitem_icon_width
-+dimen abc_dropdownitem_text_padding_left
-+dimen abc_dropdownitem_text_padding_right
-+dimen abc_edit_text_inset_bottom_material
-+dimen abc_edit_text_inset_horizontal_material
-+dimen abc_edit_text_inset_top_material
-+dimen abc_floating_window_z
-+dimen abc_list_item_padding_horizontal_material
-+dimen abc_panel_menu_list_width
-+dimen abc_progress_bar_height_material
-+dimen abc_search_view_preferred_height
-+dimen abc_search_view_preferred_width
-+dimen abc_seekbar_track_background_height_material
-+dimen abc_seekbar_track_progress_height_material
-+dimen abc_select_dialog_padding_start_material
-+dimen abc_switch_padding
-+dimen abc_text_size_body_1_material
-+dimen abc_text_size_body_2_material
-+dimen abc_text_size_button_material
-+dimen abc_text_size_caption_material
-+dimen abc_text_size_display_1_material
-+dimen abc_text_size_display_2_material
-+dimen abc_text_size_display_3_material
-+dimen abc_text_size_display_4_material
-+dimen abc_text_size_headline_material
-+dimen abc_text_size_large_material
-+dimen abc_text_size_medium_material
-+dimen abc_text_size_menu_header_material
-+dimen abc_text_size_menu_material
-+dimen abc_text_size_small_material
-+dimen abc_text_size_subhead_material
-+dimen abc_text_size_subtitle_material_toolbar
-+dimen abc_text_size_title_material
-+dimen abc_text_size_title_material_toolbar
-+dimen autofill_inline_suggestion_icon_size
-+dimen browser_actions_context_menu_max_width
-+dimen browser_actions_context_menu_min_padding
-+dimen compat_button_inset_horizontal_material
-+dimen compat_button_inset_vertical_material
-+dimen compat_button_padding_horizontal_material
-+dimen compat_button_padding_vertical_material
-+dimen compat_control_corner_material
-+dimen compat_notification_large_icon_max_height
-+dimen compat_notification_large_icon_max_width
-+dimen disabled_alpha_material_dark
-+dimen disabled_alpha_material_light
-+dimen highlight_alpha_material_colored
-+dimen highlight_alpha_material_dark
-+dimen highlight_alpha_material_light
-+dimen hint_alpha_material_dark
-+dimen hint_alpha_material_light
-+dimen hint_pressed_alpha_material_dark
-+dimen hint_pressed_alpha_material_light
-+dimen notification_action_icon_size
-+dimen notification_action_text_size
-+dimen notification_big_circle_margin
-+dimen notification_content_margin_start
-+dimen notification_large_icon_height
-+dimen notification_large_icon_width
-+dimen notification_main_column_padding_top
-+dimen notification_media_narrow_margin
-+dimen notification_right_icon_size
-+dimen notification_right_side_padding_top
-+dimen notification_small_icon_background_padding
-+dimen notification_small_icon_size_as_large
-+dimen notification_subtext_size
-+dimen notification_top_pad
-+dimen notification_top_pad_large_text
-+dimen tooltip_corner_radius
-+dimen tooltip_horizontal_padding
-+dimen tooltip_margin
-+dimen tooltip_precise_anchor_extra_offset
-+dimen tooltip_precise_anchor_threshold
-+dimen tooltip_vertical_padding
-+dimen tooltip_y_offset_non_touch
-+dimen tooltip_y_offset_touch
-+drawable abc_ab_share_pack_mtrl_alpha
-+drawable abc_action_bar_item_background_material
-+drawable abc_btn_borderless_material
-+drawable abc_btn_check_material
-+drawable abc_btn_check_to_on_mtrl_000
-+drawable abc_btn_check_to_on_mtrl_015
-+drawable abc_btn_colored_material
-+drawable abc_btn_default_mtrl_shape
-+drawable abc_btn_radio_material
-+drawable abc_btn_radio_to_on_mtrl_000
-+drawable abc_btn_radio_to_on_mtrl_015
-+drawable abc_btn_switch_to_on_mtrl_00001
-+drawable abc_btn_switch_to_on_mtrl_00012
-+drawable abc_cab_background_internal_bg
-+drawable abc_cab_background_top_material
-+drawable abc_cab_background_top_mtrl_alpha
-+drawable abc_control_background_material
-+drawable abc_dialog_material_background
-+drawable abc_edit_text_material
-+drawable abc_ic_ab_back_material
-+drawable abc_ic_arrow_drop_right_black_24dp
-+drawable abc_ic_clear_material
-+drawable abc_ic_commit_search_api_mtrl_alpha
-+drawable abc_ic_go_search_api_material
-+drawable abc_ic_menu_copy_mtrl_am_alpha
-+drawable abc_ic_menu_cut_mtrl_alpha
-+drawable abc_ic_menu_overflow_material
-+drawable abc_ic_menu_paste_mtrl_am_alpha
-+drawable abc_ic_menu_selectall_mtrl_alpha
-+drawable abc_ic_menu_share_mtrl_alpha
-+drawable abc_ic_search_api_material
-+drawable abc_ic_star_black_16dp
-+drawable abc_ic_star_black_36dp
-+drawable abc_ic_star_black_48dp
-+drawable abc_ic_star_half_black_16dp
-+drawable abc_ic_star_half_black_36dp
-+drawable abc_ic_star_half_black_48dp
-+drawable abc_ic_voice_search_api_material
-+drawable abc_item_background_holo_dark
-+drawable abc_item_background_holo_light
-+drawable abc_list_divider_material
-+drawable abc_list_divider_mtrl_alpha
-+drawable abc_list_focused_holo
-+drawable abc_list_longpressed_holo
-+drawable abc_list_pressed_holo_dark
-+drawable abc_list_pressed_holo_light
-+drawable abc_list_selector_background_transition_holo_dark
-+drawable abc_list_selector_background_transition_holo_light
-+drawable abc_list_selector_disabled_holo_dark
-+drawable abc_list_selector_disabled_holo_light
-+drawable abc_list_selector_holo_dark
-+drawable abc_list_selector_holo_light
-+drawable abc_menu_hardkey_panel_mtrl_mult
-+drawable abc_popup_background_mtrl_mult
-+drawable abc_ratingbar_indicator_material
-+drawable abc_ratingbar_material
-+drawable abc_ratingbar_small_material
-+drawable abc_scrubber_control_off_mtrl_alpha
-+drawable abc_scrubber_control_to_pressed_mtrl_000
-+drawable abc_scrubber_control_to_pressed_mtrl_005
-+drawable abc_scrubber_primary_mtrl_alpha
-+drawable abc_scrubber_track_mtrl_alpha
-+drawable abc_seekbar_thumb_material
-+drawable abc_seekbar_tick_mark_material
-+drawable abc_seekbar_track_material
-+drawable abc_spinner_mtrl_am_alpha
-+drawable abc_spinner_textfield_background_material
-+drawable abc_switch_thumb_material
-+drawable abc_switch_track_mtrl_alpha
-+drawable abc_tab_indicator_material
-+drawable abc_tab_indicator_mtrl_alpha
-+drawable abc_text_cursor_material
-+drawable abc_text_select_handle_left_mtrl_dark
-+drawable abc_text_select_handle_left_mtrl_light
-+drawable abc_text_select_handle_middle_mtrl_dark
-+drawable abc_text_select_handle_middle_mtrl_light
-+drawable abc_text_select_handle_right_mtrl_dark
-+drawable abc_text_select_handle_right_mtrl_light
-+drawable abc_textfield_activated_mtrl_alpha
-+drawable abc_textfield_default_mtrl_alpha
-+drawable abc_textfield_search_activated_mtrl_alpha
-+drawable abc_textfield_search_default_mtrl_alpha
-+drawable abc_textfield_search_material
-+drawable abc_vector_test
-+drawable autofill_inline_suggestion_chip_background
-+drawable notification_action_background
-+drawable notification_bg
-+drawable notification_bg_low
-+drawable notification_bg_low_normal
-+drawable notification_bg_low_pressed
-+drawable notification_bg_normal
-+drawable notification_bg_normal_pressed
-+drawable notification_icon_background
-+drawable notification_template_icon_bg
-+drawable notification_template_icon_low_bg
-+drawable notification_tile_bg
-+drawable notify_panel_notification_icon_bg
-+drawable redbox_top_border_background
-+drawable tooltip_frame_dark
-+drawable tooltip_frame_light
-+id accessibility_action_clickable_span
-+id accessibility_actions
-+id accessibility_custom_action_0
-+id accessibility_custom_action_1
-+id accessibility_custom_action_10
-+id accessibility_custom_action_11
-+id accessibility_custom_action_12
-+id accessibility_custom_action_13
-+id accessibility_custom_action_14
-+id accessibility_custom_action_15
-+id accessibility_custom_action_16
-+id accessibility_custom_action_17
-+id accessibility_custom_action_18
-+id accessibility_custom_action_19
-+id accessibility_custom_action_2
-+id accessibility_custom_action_20
-+id accessibility_custom_action_21
-+id accessibility_custom_action_22
-+id accessibility_custom_action_23
-+id accessibility_custom_action_24
-+id accessibility_custom_action_25
-+id accessibility_custom_action_26
-+id accessibility_custom_action_27
-+id accessibility_custom_action_28
-+id accessibility_custom_action_29
-+id accessibility_custom_action_3
-+id accessibility_custom_action_30
-+id accessibility_custom_action_31
-+id accessibility_custom_action_4
-+id accessibility_custom_action_5
-+id accessibility_custom_action_6
-+id accessibility_custom_action_7
-+id accessibility_custom_action_8
-+id accessibility_custom_action_9
-+id accessibility_hint
-+id accessibility_label
-+id accessibility_role
-+id accessibility_state
-+id accessibility_value
-+id action_bar
-+id action_bar_activity_content
-+id action_bar_container
-+id action_bar_root
-+id action_bar_spinner
-+id action_bar_subtitle
-+id action_bar_title
-+id action_container
-+id action_context_bar
-+id action_divider
-+id action_image
-+id action_menu_divider
-+id action_menu_presenter
-+id action_mode_bar
-+id action_mode_bar_stub
-+id action_mode_close_button
-+id action_text
-+id actions
-+id activity_chooser_view_content
-+id add
-+id alertTitle
-+id async
-+id autofill_inline_suggestion_end_icon
-+id autofill_inline_suggestion_start_icon
-+id autofill_inline_suggestion_subtitle
-+id autofill_inline_suggestion_title
-+id blocking
-+id bottom
-+id browser_actions_header_text
-+id browser_actions_menu_item_icon
-+id browser_actions_menu_item_text
-+id browser_actions_menu_items
-+id browser_actions_menu_view
-+id buttonPanel
-+id catalyst_redbox_title
-+id center
-+id centerCrop
-+id centerInside
-+id checkbox
-+id chronometer
-+id content
-+id contentPanel
-+id custom
-+id customPanel
-+id decor_content_parent
-+id default_activity_button
-+id dialog_button
-+id edit_query
-+id end
-+id expand_activities_button
-+id expanded_menu
-+id fitBottomStart
-+id fitCenter
-+id fitEnd
-+id fitStart
-+id fitXY
-+id focusCrop
-+id forever
-+id fps_text
-+id group_divider
-+id home
-+id icon
-+id icon_group
-+id image
-+id info
-+id italic
-+id left
-+id line1
-+id line3
-+id listMode
-+id list_item
-+id message
-+id multiply
-+id none
-+id normal
-+id notification_background
-+id notification_main_column
-+id notification_main_column_container
-+id parentPanel
-+id progress_circular
-+id progress_horizontal
-+id radio
-+id react_test_id
-+id right
-+id right_icon
-+id right_side
-+id rn_frame_file
-+id rn_frame_method
-+id rn_redbox_dismiss_button
-+id rn_redbox_line_separator
-+id rn_redbox_loading_indicator
-+id rn_redbox_reload_button
-+id rn_redbox_report_button
-+id rn_redbox_report_label
-+id rn_redbox_stack
-+id screen
-+id scrollIndicatorDown
-+id scrollIndicatorUp
-+id scrollView
-+id search_badge
-+id search_bar
-+id search_button
-+id search_close_btn
-+id search_edit_frame
-+id search_go_btn
-+id search_mag_icon
-+id search_plate
-+id search_src_text
-+id search_voice_btn
-+id select_dialog_listview
-+id shortcut
-+id spacer
-+id split_action_bar
-+id src_atop
-+id src_in
-+id src_over
-+id start
-+id submenuarrow
-+id submit_area
-+id tabMode
-+id tag_accessibility_actions
-+id tag_accessibility_clickable_spans
-+id tag_accessibility_heading
-+id tag_accessibility_pane_title
-+id tag_screen_reader_focusable
-+id tag_transition_group
-+id tag_unhandled_key_event_manager
-+id tag_unhandled_key_listeners
-+id text
-+id text2
-+id textSpacerNoButtons
-+id textSpacerNoTitle
-+id time
-+id title
-+id titleDividerNoCustom
-+id title_template
-+id top
-+id topPanel
-+id uniform
-+id up
-+id view_tag_instance_handle
-+id view_tag_native_id
-+id wrap_content
-+integer abc_config_activityDefaultDur
-+integer abc_config_activityShortDur
-+integer cancel_button_image_alpha
-+integer config_tooltipAnimTime
-+integer react_native_dev_server_port
-+integer react_native_inspector_proxy_port
-+integer status_bar_notification_info_maxnum
-+layout abc_action_bar_title_item
-+layout abc_action_bar_up_container
-+layout abc_action_menu_item_layout
-+layout abc_action_menu_layout
-+layout abc_action_mode_bar
-+layout abc_action_mode_close_item_material
-+layout abc_activity_chooser_view
-+layout abc_activity_chooser_view_list_item
-+layout abc_alert_dialog_button_bar_material
-+layout abc_alert_dialog_material
-+layout abc_alert_dialog_title_material
-+layout abc_cascading_menu_item_layout
-+layout abc_dialog_title_material
-+layout abc_expanded_menu_layout
-+layout abc_list_menu_item_checkbox
-+layout abc_list_menu_item_icon
-+layout abc_list_menu_item_layout
-+layout abc_list_menu_item_radio
-+layout abc_popup_menu_header_item_layout
-+layout abc_popup_menu_item_layout
-+layout abc_screen_content_include
-+layout abc_screen_simple
-+layout abc_screen_simple_overlay_action_mode
-+layout abc_screen_toolbar
-+layout abc_search_dropdown_item_icons_2line
-+layout abc_search_view
-+layout abc_select_dialog_material
-+layout abc_tooltip
-+layout autofill_inline_suggestion
-+layout browser_actions_context_menu_page
-+layout browser_actions_context_menu_row
-+layout custom_dialog
-+layout dev_loading_view
-+layout fps_view
-+layout notification_action
-+layout notification_action_tombstone
-+layout notification_template_custom_big
-+layout notification_template_icon_group
-+layout notification_template_part_chronometer
-+layout notification_template_part_time
-+layout redbox_item_frame
-+layout redbox_item_title
-+layout redbox_view
-+layout select_dialog_item_material
-+layout select_dialog_multichoice_material
-+layout select_dialog_singlechoice_material
-+layout support_simple_spinner_dropdown_item
-+string abc_action_bar_home_description
-+string abc_action_bar_up_description
-+string abc_action_menu_overflow_description
-+string abc_action_mode_done
-+string abc_activity_chooser_view_see_all
-+string abc_activitychooserview_choose_application
-+string abc_capital_off
-+string abc_capital_on
-+string abc_font_family_body_1_material
-+string abc_font_family_body_2_material
-+string abc_font_family_button_material
-+string abc_font_family_caption_material
-+string abc_font_family_display_1_material
-+string abc_font_family_display_2_material
-+string abc_font_family_display_3_material
-+string abc_font_family_display_4_material
-+string abc_font_family_headline_material
-+string abc_font_family_menu_material
-+string abc_font_family_subhead_material
-+string abc_font_family_title_material
-+string abc_menu_alt_shortcut_label
-+string abc_menu_ctrl_shortcut_label
-+string abc_menu_delete_shortcut_label
-+string abc_menu_enter_shortcut_label
-+string abc_menu_function_shortcut_label
-+string abc_menu_meta_shortcut_label
-+string abc_menu_shift_shortcut_label
-+string abc_menu_space_shortcut_label
-+string abc_menu_sym_shortcut_label
-+string abc_prepend_shortcut_label
-+string abc_search_hint
-+string abc_searchview_description_clear
-+string abc_searchview_description_query
-+string abc_searchview_description_search
-+string abc_searchview_description_submit
-+string abc_searchview_description_voice
-+string abc_shareactionprovider_share_with
-+string abc_shareactionprovider_share_with_application
-+string abc_toolbar_collapse_description
-+string alert_description
-+string catalyst_change_bundle_location
-+string catalyst_copy_button
-+string catalyst_debug
-+string catalyst_debug_chrome
-+string catalyst_debug_chrome_stop
-+string catalyst_debug_connecting
-+string catalyst_debug_error
-+string catalyst_debug_open
-+string catalyst_debug_stop
-+string catalyst_devtools_open
-+string catalyst_dismiss_button
-+string catalyst_heap_capture
-+string catalyst_hot_reloading
-+string catalyst_hot_reloading_auto_disable
-+string catalyst_hot_reloading_auto_enable
-+string catalyst_hot_reloading_stop
-+string catalyst_inspector
-+string catalyst_inspector_stop
-+string catalyst_loading_from_url
-+string catalyst_open_flipper_error
-+string catalyst_perf_monitor
-+string catalyst_perf_monitor_stop
-+string catalyst_reload
-+string catalyst_reload_button
-+string catalyst_reload_error
-+string catalyst_report_button
-+string catalyst_sample_profiler_disable
-+string catalyst_sample_profiler_enable
-+string catalyst_settings
-+string catalyst_settings_title
-+string combobox_description
-+string copy_toast_msg
-+string fallback_menu_item_copy_link
-+string fallback_menu_item_open_in_browser
-+string fallback_menu_item_share_link
-+string header_description
-+string image_description
-+string imagebutton_description
-+string link_description
-+string menu_description
-+string menubar_description
-+string menuitem_description
-+string progressbar_description
-+string radiogroup_description
-+string rn_tab_description
-+string scrollbar_description
-+string search_menu_title
-+string spinbutton_description
-+string state_busy_description
-+string state_collapsed_description
-+string state_expanded_description
-+string state_mixed_description
-+string state_off_description
-+string state_on_description
-+string state_unselected_description
-+string status_bar_notification_info_overflow
-+string summary_description
-+string tablist_description
-+string timer_description
-+string toolbar_description
-+style AlertDialog_AppCompat
-+style AlertDialog_AppCompat_Light
-+style Animation_AppCompat_Dialog
-+style Animation_AppCompat_DropDownUp
-+style Animation_AppCompat_Tooltip
-+style Animation_Catalyst_LogBox
-+style Animation_Catalyst_RedBox
-+style Base_AlertDialog_AppCompat
-+style Base_AlertDialog_AppCompat_Light
-+style Base_Animation_AppCompat_Dialog
-+style Base_Animation_AppCompat_DropDownUp
-+style Base_Animation_AppCompat_Tooltip
-+style Base_DialogWindowTitleBackground_AppCompat
-+style Base_DialogWindowTitle_AppCompat
-+style Base_TextAppearance_AppCompat
-+style Base_TextAppearance_AppCompat_Body1
-+style Base_TextAppearance_AppCompat_Body2
-+style Base_TextAppearance_AppCompat_Button
-+style Base_TextAppearance_AppCompat_Caption
-+style Base_TextAppearance_AppCompat_Display1
-+style Base_TextAppearance_AppCompat_Display2
-+style Base_TextAppearance_AppCompat_Display3
-+style Base_TextAppearance_AppCompat_Display4
-+style Base_TextAppearance_AppCompat_Headline
-+style Base_TextAppearance_AppCompat_Inverse
-+style Base_TextAppearance_AppCompat_Large
-+style Base_TextAppearance_AppCompat_Large_Inverse
-+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
-+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
-+style Base_TextAppearance_AppCompat_Medium
-+style Base_TextAppearance_AppCompat_Medium_Inverse
-+style Base_TextAppearance_AppCompat_Menu
-+style Base_TextAppearance_AppCompat_SearchResult
-+style Base_TextAppearance_AppCompat_SearchResult_Subtitle
-+style Base_TextAppearance_AppCompat_SearchResult_Title
-+style Base_TextAppearance_AppCompat_Small
-+style Base_TextAppearance_AppCompat_Small_Inverse
-+style Base_TextAppearance_AppCompat_Subhead
-+style Base_TextAppearance_AppCompat_Subhead_Inverse
-+style Base_TextAppearance_AppCompat_Title
-+style Base_TextAppearance_AppCompat_Title_Inverse
-+style Base_TextAppearance_AppCompat_Tooltip
-+style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
-+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
-+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
-+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title
-+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
-+style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
-+style Base_TextAppearance_AppCompat_Widget_ActionMode_Title
-+style Base_TextAppearance_AppCompat_Widget_Button
-+style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
-+style Base_TextAppearance_AppCompat_Widget_Button_Colored
-+style Base_TextAppearance_AppCompat_Widget_Button_Inverse
-+style Base_TextAppearance_AppCompat_Widget_DropDownItem
-+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
-+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
-+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
-+style Base_TextAppearance_AppCompat_Widget_Switch
-+style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
-+style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
-+style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
-+style Base_TextAppearance_Widget_AppCompat_Toolbar_Title
-+style Base_ThemeOverlay_AppCompat
-+style Base_ThemeOverlay_AppCompat_ActionBar
-+style Base_ThemeOverlay_AppCompat_Dark
-+style Base_ThemeOverlay_AppCompat_Dark_ActionBar
-+style Base_ThemeOverlay_AppCompat_Dialog
-+style Base_ThemeOverlay_AppCompat_Dialog_Alert
-+style Base_ThemeOverlay_AppCompat_Light
-+style Base_Theme_AppCompat
-+style Base_Theme_AppCompat_CompactMenu
-+style Base_Theme_AppCompat_Dialog
-+style Base_Theme_AppCompat_DialogWhenLarge
-+style Base_Theme_AppCompat_Dialog_Alert
-+style Base_Theme_AppCompat_Dialog_FixedSize
-+style Base_Theme_AppCompat_Dialog_MinWidth
-+style Base_Theme_AppCompat_Light
-+style Base_Theme_AppCompat_Light_DarkActionBar
-+style Base_Theme_AppCompat_Light_Dialog
-+style Base_Theme_AppCompat_Light_DialogWhenLarge
-+style Base_Theme_AppCompat_Light_Dialog_Alert
-+style Base_Theme_AppCompat_Light_Dialog_FixedSize
-+style Base_Theme_AppCompat_Light_Dialog_MinWidth
-+style Base_V21_ThemeOverlay_AppCompat_Dialog
-+style Base_V21_Theme_AppCompat
-+style Base_V21_Theme_AppCompat_Dialog
-+style Base_V21_Theme_AppCompat_Light
-+style Base_V21_Theme_AppCompat_Light_Dialog
-+style Base_V22_Theme_AppCompat
-+style Base_V22_Theme_AppCompat_Light
-+style Base_V23_Theme_AppCompat
-+style Base_V23_Theme_AppCompat_Light
-+style Base_V26_Theme_AppCompat
-+style Base_V26_Theme_AppCompat_Light
-+style Base_V26_Widget_AppCompat_Toolbar
-+style Base_V28_Theme_AppCompat
-+style Base_V28_Theme_AppCompat_Light
-+style Base_V7_ThemeOverlay_AppCompat_Dialog
-+style Base_V7_Theme_AppCompat
-+style Base_V7_Theme_AppCompat_Dialog
-+style Base_V7_Theme_AppCompat_Light
-+style Base_V7_Theme_AppCompat_Light_Dialog
-+style Base_V7_Widget_AppCompat_AutoCompleteTextView
-+style Base_V7_Widget_AppCompat_EditText
-+style Base_V7_Widget_AppCompat_Toolbar
-+style Base_Widget_AppCompat_ActionBar
-+style Base_Widget_AppCompat_ActionBar_Solid
-+style Base_Widget_AppCompat_ActionBar_TabBar
-+style Base_Widget_AppCompat_ActionBar_TabText
-+style Base_Widget_AppCompat_ActionBar_TabView
-+style Base_Widget_AppCompat_ActionButton
-+style Base_Widget_AppCompat_ActionButton_CloseMode
-+style Base_Widget_AppCompat_ActionButton_Overflow
-+style Base_Widget_AppCompat_ActionMode
-+style Base_Widget_AppCompat_ActivityChooserView
-+style Base_Widget_AppCompat_AutoCompleteTextView
-+style Base_Widget_AppCompat_Button
-+style Base_Widget_AppCompat_ButtonBar
-+style Base_Widget_AppCompat_ButtonBar_AlertDialog
-+style Base_Widget_AppCompat_Button_Borderless
-+style Base_Widget_AppCompat_Button_Borderless_Colored
-+style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
-+style Base_Widget_AppCompat_Button_Colored
-+style Base_Widget_AppCompat_Button_Small
-+style Base_Widget_AppCompat_CompoundButton_CheckBox
-+style Base_Widget_AppCompat_CompoundButton_RadioButton
-+style Base_Widget_AppCompat_CompoundButton_Switch
-+style Base_Widget_AppCompat_DrawerArrowToggle
-+style Base_Widget_AppCompat_DrawerArrowToggle_Common
-+style Base_Widget_AppCompat_DropDownItem_Spinner
-+style Base_Widget_AppCompat_EditText
-+style Base_Widget_AppCompat_ImageButton
-+style Base_Widget_AppCompat_Light_ActionBar
-+style Base_Widget_AppCompat_Light_ActionBar_Solid
-+style Base_Widget_AppCompat_Light_ActionBar_TabBar
-+style Base_Widget_AppCompat_Light_ActionBar_TabText
-+style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
-+style Base_Widget_AppCompat_Light_ActionBar_TabView
-+style Base_Widget_AppCompat_Light_PopupMenu
-+style Base_Widget_AppCompat_Light_PopupMenu_Overflow
-+style Base_Widget_AppCompat_ListMenuView
-+style Base_Widget_AppCompat_ListPopupWindow
-+style Base_Widget_AppCompat_ListView
-+style Base_Widget_AppCompat_ListView_DropDown
-+style Base_Widget_AppCompat_ListView_Menu
-+style Base_Widget_AppCompat_PopupMenu
-+style Base_Widget_AppCompat_PopupMenu_Overflow
-+style Base_Widget_AppCompat_PopupWindow
-+style Base_Widget_AppCompat_ProgressBar
-+style Base_Widget_AppCompat_ProgressBar_Horizontal
-+style Base_Widget_AppCompat_RatingBar
-+style Base_Widget_AppCompat_RatingBar_Indicator
-+style Base_Widget_AppCompat_RatingBar_Small
-+style Base_Widget_AppCompat_SearchView
-+style Base_Widget_AppCompat_SearchView_ActionBar
-+style Base_Widget_AppCompat_SeekBar
-+style Base_Widget_AppCompat_SeekBar_Discrete
-+style Base_Widget_AppCompat_Spinner
-+style Base_Widget_AppCompat_Spinner_Underlined
-+style Base_Widget_AppCompat_TextView_SpinnerItem
-+style Base_Widget_AppCompat_Toolbar
-+style Base_Widget_AppCompat_Toolbar_Button_Navigation
-+style CalendarDatePickerDialog
-+style CalendarDatePickerStyle
-+style DialogAnimationFade
-+style DialogAnimationSlide
-+style Platform_AppCompat
-+style Platform_AppCompat_Light
-+style Platform_ThemeOverlay_AppCompat
-+style Platform_ThemeOverlay_AppCompat_Dark
-+style Platform_ThemeOverlay_AppCompat_Light
-+style Platform_V21_AppCompat
-+style Platform_V21_AppCompat_Light
-+style Platform_V25_AppCompat
-+style Platform_V25_AppCompat_Light
-+style Platform_Widget_AppCompat_Spinner
-+style RtlOverlay_DialogWindowTitle_AppCompat
-+style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
-+style RtlOverlay_Widget_AppCompat_DialogTitle_Icon
-+style RtlOverlay_Widget_AppCompat_PopupMenuItem
-+style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
-+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
-+style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
-+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
-+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
-+style RtlOverlay_Widget_AppCompat_SearchView_MagIcon
-+style RtlOverlay_Widget_AppCompat_Search_DropDown
-+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
-+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
-+style RtlOverlay_Widget_AppCompat_Search_DropDown_Query
-+style RtlOverlay_Widget_AppCompat_Search_DropDown_Text
-+style RtlUnderlay_Widget_AppCompat_ActionButton
-+style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
-+style SpinnerDatePickerDialog
-+style SpinnerDatePickerStyle
-+style TextAppearance_AppCompat
-+style TextAppearance_AppCompat_Body1
-+style TextAppearance_AppCompat_Body2
-+style TextAppearance_AppCompat_Button
-+style TextAppearance_AppCompat_Caption
-+style TextAppearance_AppCompat_Display1
-+style TextAppearance_AppCompat_Display2
-+style TextAppearance_AppCompat_Display3
-+style TextAppearance_AppCompat_Display4
-+style TextAppearance_AppCompat_Headline
-+style TextAppearance_AppCompat_Inverse
-+style TextAppearance_AppCompat_Large
-+style TextAppearance_AppCompat_Large_Inverse
-+style TextAppearance_AppCompat_Light_SearchResult_Subtitle
-+style TextAppearance_AppCompat_Light_SearchResult_Title
-+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
-+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
-+style TextAppearance_AppCompat_Medium
-+style TextAppearance_AppCompat_Medium_Inverse
-+style TextAppearance_AppCompat_Menu
-+style TextAppearance_AppCompat_SearchResult_Subtitle
-+style TextAppearance_AppCompat_SearchResult_Title
-+style TextAppearance_AppCompat_Small
-+style TextAppearance_AppCompat_Small_Inverse
-+style TextAppearance_AppCompat_Subhead
-+style TextAppearance_AppCompat_Subhead_Inverse
-+style TextAppearance_AppCompat_Title
-+style TextAppearance_AppCompat_Title_Inverse
-+style TextAppearance_AppCompat_Tooltip
-+style TextAppearance_AppCompat_Widget_ActionBar_Menu
-+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle
-+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
-+style TextAppearance_AppCompat_Widget_ActionBar_Title
-+style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
-+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle
-+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
-+style TextAppearance_AppCompat_Widget_ActionMode_Title
-+style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
-+style TextAppearance_AppCompat_Widget_Button
-+style TextAppearance_AppCompat_Widget_Button_Borderless_Colored
-+style TextAppearance_AppCompat_Widget_Button_Colored
-+style TextAppearance_AppCompat_Widget_Button_Inverse
-+style TextAppearance_AppCompat_Widget_DropDownItem
-+style TextAppearance_AppCompat_Widget_PopupMenu_Header
-+style TextAppearance_AppCompat_Widget_PopupMenu_Large
-+style TextAppearance_AppCompat_Widget_PopupMenu_Small
-+style TextAppearance_AppCompat_Widget_Switch
-+style TextAppearance_AppCompat_Widget_TextView_SpinnerItem
-+style TextAppearance_Compat_Notification
-+style TextAppearance_Compat_Notification_Info
-+style TextAppearance_Compat_Notification_Line2
-+style TextAppearance_Compat_Notification_Time
-+style TextAppearance_Compat_Notification_Title
-+style TextAppearance_Widget_AppCompat_ExpandedMenu_Item
-+style TextAppearance_Widget_AppCompat_Toolbar_Subtitle
-+style TextAppearance_Widget_AppCompat_Toolbar_Title
-+style Theme
-+style ThemeOverlay_AppCompat
-+style ThemeOverlay_AppCompat_ActionBar
-+style ThemeOverlay_AppCompat_Dark
-+style ThemeOverlay_AppCompat_Dark_ActionBar
-+style ThemeOverlay_AppCompat_Dialog
-+style ThemeOverlay_AppCompat_Dialog_Alert
-+style ThemeOverlay_AppCompat_Light
-+style Theme_AppCompat
-+style Theme_AppCompat_CompactMenu
-+style Theme_AppCompat_DayNight
-+style Theme_AppCompat_DayNight_DarkActionBar
-+style Theme_AppCompat_DayNight_Dialog
-+style Theme_AppCompat_DayNight_DialogWhenLarge
-+style Theme_AppCompat_DayNight_Dialog_Alert
-+style Theme_AppCompat_DayNight_Dialog_MinWidth
-+style Theme_AppCompat_DayNight_NoActionBar
-+style Theme_AppCompat_Dialog
-+style Theme_AppCompat_DialogWhenLarge
-+style Theme_AppCompat_Dialog_Alert
-+style Theme_AppCompat_Dialog_MinWidth
-+style Theme_AppCompat_Light
-+style Theme_AppCompat_Light_DarkActionBar
-+style Theme_AppCompat_Light_Dialog
-+style Theme_AppCompat_Light_DialogWhenLarge
-+style Theme_AppCompat_Light_Dialog_Alert
-+style Theme_AppCompat_Light_Dialog_MinWidth
-+style Theme_AppCompat_Light_NoActionBar
-+style Theme_AppCompat_NoActionBar
-+style Theme_AutofillInlineSuggestion
-+style Theme_Catalyst
-+style Theme_Catalyst_LogBox
-+style Theme_Catalyst_RedBox
-+style Theme_FullScreenDialog
-+style Theme_FullScreenDialogAnimatedFade
-+style Theme_FullScreenDialogAnimatedSlide
-+style Theme_ReactNative_AppCompat_Light
-+style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen
-+style Widget_AppCompat_ActionBar
-+style Widget_AppCompat_ActionBar_Solid
-+style Widget_AppCompat_ActionBar_TabBar
-+style Widget_AppCompat_ActionBar_TabText
-+style Widget_AppCompat_ActionBar_TabView
-+style Widget_AppCompat_ActionButton
-+style Widget_AppCompat_ActionButton_CloseMode
-+style Widget_AppCompat_ActionButton_Overflow
-+style Widget_AppCompat_ActionMode
-+style Widget_AppCompat_ActivityChooserView
-+style Widget_AppCompat_AutoCompleteTextView
-+style Widget_AppCompat_Button
-+style Widget_AppCompat_ButtonBar
-+style Widget_AppCompat_ButtonBar_AlertDialog
-+style Widget_AppCompat_Button_Borderless
-+style Widget_AppCompat_Button_Borderless_Colored
-+style Widget_AppCompat_Button_ButtonBar_AlertDialog
-+style Widget_AppCompat_Button_Colored
-+style Widget_AppCompat_Button_Small
-+style Widget_AppCompat_CompoundButton_CheckBox
-+style Widget_AppCompat_CompoundButton_RadioButton
-+style Widget_AppCompat_CompoundButton_Switch
-+style Widget_AppCompat_DrawerArrowToggle
-+style Widget_AppCompat_DropDownItem_Spinner
-+style Widget_AppCompat_EditText
-+style Widget_AppCompat_ImageButton
-+style Widget_AppCompat_Light_ActionBar
-+style Widget_AppCompat_Light_ActionBar_Solid
-+style Widget_AppCompat_Light_ActionBar_Solid_Inverse
-+style Widget_AppCompat_Light_ActionBar_TabBar
-+style Widget_AppCompat_Light_ActionBar_TabBar_Inverse
-+style Widget_AppCompat_Light_ActionBar_TabText
-+style Widget_AppCompat_Light_ActionBar_TabText_Inverse
-+style Widget_AppCompat_Light_ActionBar_TabView
-+style Widget_AppCompat_Light_ActionBar_TabView_Inverse
-+style Widget_AppCompat_Light_ActionButton
-+style Widget_AppCompat_Light_ActionButton_CloseMode
-+style Widget_AppCompat_Light_ActionButton_Overflow
-+style Widget_AppCompat_Light_ActionMode_Inverse
-+style Widget_AppCompat_Light_ActivityChooserView
-+style Widget_AppCompat_Light_AutoCompleteTextView
-+style Widget_AppCompat_Light_DropDownItem_Spinner
-+style Widget_AppCompat_Light_ListPopupWindow
-+style Widget_AppCompat_Light_ListView_DropDown
-+style Widget_AppCompat_Light_PopupMenu
-+style Widget_AppCompat_Light_PopupMenu_Overflow
-+style Widget_AppCompat_Light_SearchView
-+style Widget_AppCompat_Light_Spinner_DropDown_ActionBar
-+style Widget_AppCompat_ListMenuView
-+style Widget_AppCompat_ListPopupWindow
-+style Widget_AppCompat_ListView
-+style Widget_AppCompat_ListView_DropDown
-+style Widget_AppCompat_ListView_Menu
-+style Widget_AppCompat_PopupMenu
-+style Widget_AppCompat_PopupMenu_Overflow
-+style Widget_AppCompat_PopupWindow
-+style Widget_AppCompat_ProgressBar
-+style Widget_AppCompat_ProgressBar_Horizontal
-+style Widget_AppCompat_RatingBar
-+style Widget_AppCompat_RatingBar_Indicator
-+style Widget_AppCompat_RatingBar_Small
-+style Widget_AppCompat_SearchView
-+style Widget_AppCompat_SearchView_ActionBar
-+style Widget_AppCompat_SeekBar
-+style Widget_AppCompat_SeekBar_Discrete
-+style Widget_AppCompat_Spinner
-+style Widget_AppCompat_Spinner_DropDown
-+style Widget_AppCompat_Spinner_DropDown_ActionBar
-+style Widget_AppCompat_Spinner_Underlined
-+style Widget_AppCompat_TextView_SpinnerItem
-+style Widget_AppCompat_Toolbar
-+style Widget_AppCompat_Toolbar_Button_Navigation
-+style Widget_Autofill
-+style Widget_Autofill_InlineSuggestionChip
-+style Widget_Autofill_InlineSuggestionEndIconStyle
-+style Widget_Autofill_InlineSuggestionStartIconStyle
-+style Widget_Autofill_InlineSuggestionSubtitle
-+style Widget_Autofill_InlineSuggestionTitle
-+style Widget_Compat_NotificationActionContainer
-+style Widget_Compat_NotificationActionText
-+style Widget_Support_CoordinatorLayout
-+style redboxButton
-+styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle
-+styleable ActionBarLayout android_layout_gravity
-+styleable ActionMenuItemView android_minWidth
-+styleable ActionMenuView
-+styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle
-+styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount
-+styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout
-+styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
-+styleable AnimatedStateListDrawableItem android_drawable android_id
-+styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId
-+styleable AppCompatImageView android_src srcCompat tint tintMode
-+styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode
-+styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance
-+styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType firstBaselineToTopHeight fontFamily lastBaselineToBottomHeight lineHeight textAllCaps
-+styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingLeft listPreferredItemPaddingRight panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
-+styleable Autofill_InlineSuggestion autofillInlineSuggestionChip autofillInlineSuggestionEndIconStyle autofillInlineSuggestionStartIconStyle autofillInlineSuggestionSubtitle autofillInlineSuggestionTitle isAutofillInlineSuggestionTheme
-+styleable ButtonBarLayout allowStacking
-+styleable ColorStateListItem alpha android_alpha android_color
-+styleable CompoundButton android_button buttonTint buttonTintMode
-+styleable CoordinatorLayout keylines statusBarBackground
-+styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline
-+styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness
-+styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery
-+styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex
-+styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio
-+styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type
-+styleable GradientColorItem android_color android_offset
-+styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers
-+styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width
-+styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset
-+styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible
-+styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText
-+styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow
-+styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor
-+styleable PopupWindowBackgroundState state_above_anchor
-+styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle
-+styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon
-+styleable SimpleDraweeView actualImageResource actualImageScaleType actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio
-+styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme
-+styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
-+styleable StateListDrawableItem android_drawable
-+styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode
-+styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textSize android_textStyle android_typeface fontFamily textAllCaps
-+styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor
-+styleable View android_focusable android_theme paddingEnd paddingStart theme
-+styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode
-+styleable ViewStubCompat android_id android_inflatedId android_layout
-+xml image_share_filepaths
-+xml rn_dev_preferences
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/build-history.bin b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/build-history.bin
-new file mode 100644
-index 0000000..9a7013a
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/build-history.bin differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab
-new file mode 100644
-index 0000000..4f593fc
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream
-new file mode 100644
-index 0000000..6d26511
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len
-new file mode 100644
-index 0000000..b2af336
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len
-new file mode 100644
-index 0000000..01bdaa1
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at
-new file mode 100644
-index 0000000..1f1d610
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i
-new file mode 100644
-index 0000000..43bcede
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len
-new file mode 100644
-index 0000000..131e265
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab
-new file mode 100644
-index 0000000..f2a5238
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
-new file mode 100644
-index 0000000..501b331
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len
-new file mode 100644
-index 0000000..db95775
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len
-new file mode 100644
-index 0000000..a9f80ae
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at
-new file mode 100644
-index 0000000..fe23964
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i
-new file mode 100644
-index 0000000..7df736a
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len
-new file mode 100644
-index 0000000..131e265
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
-new file mode 100644
-index 0000000..6346813
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
-new file mode 100644
-index 0000000..501b331
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
-new file mode 100644
-index 0000000..db95775
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
-new file mode 100644
-index 0000000..a9f80ae
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
-new file mode 100644
-index 0000000..8d59a6e
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
-new file mode 100644
-index 0000000..7df736a
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
-new file mode 100644
-index 0000000..131e265
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab
-new file mode 100644
-index 0000000..3de1ac5
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
-new file mode 100644
-index 0000000..e833359
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
-new file mode 100644
-index 0000000..bc32683
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
-new file mode 100644
-index 0000000..ec8f944
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
-new file mode 100644
-index 0000000..d5c3923
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
-new file mode 100644
-index 0000000..2e87718
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
-new file mode 100644
-index 0000000..131e265
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab
-new file mode 100644
-index 0000000..d0bdfab
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream
-new file mode 100644
-index 0000000..2917584
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len
-new file mode 100644
-index 0000000..c6582fd
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len
-new file mode 100644
-index 0000000..93a595b
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at
-new file mode 100644
-index 0000000..e4c3dbf
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i
-new file mode 100644
-index 0000000..56dc7cd
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len
-new file mode 100644
-index 0000000..131e265
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab
-new file mode 100644
-index 0000000..c8fca8d
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
-new file mode 100644
-index 0000000..8756354
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
-new file mode 100644
-index 0000000..b2af336
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len
-new file mode 100644
-index 0000000..01bdaa1
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
-new file mode 100644
-index 0000000..a68d925
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i
-new file mode 100644
-index 0000000..b108b65
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
-new file mode 100644
-index 0000000..131e265
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab
-new file mode 100644
-index 0000000..76d200e
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream
-new file mode 100644
-index 0000000..c7ea851
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
-new file mode 100644
-index 0000000..2a17e6e
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len
-new file mode 100644
-index 0000000..a9f80ae
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at
-new file mode 100644
-index 0000000..6f5fdf1
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i
-new file mode 100644
-index 0000000..d32cbd1
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len
-new file mode 100644
-index 0000000..131e265
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab
-new file mode 100644
-index 0000000..12f2354
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream
-new file mode 100644
-index 0000000..2283dd1
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
-new file mode 100644
-index 0000000..456103f
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len
-new file mode 100644
-index 0000000..01bdaa1
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at
-new file mode 100644
-index 0000000..ff9d0b3
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i
-new file mode 100644
-index 0000000..fa34a6d
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len
-new file mode 100644
-index 0000000..131e265
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab
-new file mode 100644
-index 0000000..2ceb12b
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab
-@@ -0,0 +1,2 @@
-+2
-+0
-\ No newline at end of file
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab
-new file mode 100644
-index 0000000..83e707e
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream
-new file mode 100644
-index 0000000..8756354
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len
-new file mode 100644
-index 0000000..b2af336
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len
-new file mode 100644
-index 0000000..01bdaa1
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at
-new file mode 100644
-index 0000000..7d30a43
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i
-new file mode 100644
-index 0000000..5e25ca4
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len
-new file mode 100644
-index 0000000..131e265
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab
-new file mode 100644
-index 0000000..16663fa
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream
-new file mode 100644
-index 0000000..100d205
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len
-new file mode 100644
-index 0000000..ccfcbf4
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len
-new file mode 100644
-index 0000000..01bdaa1
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at
-new file mode 100644
-index 0000000..97e1a05
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i
-new file mode 100644
-index 0000000..f768a77
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len
-new file mode 100644
-index 0000000..131e265
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab
-new file mode 100644
-index 0000000..52f383d
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream
-new file mode 100644
-index 0000000..dbc473f
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len
-new file mode 100644
-index 0000000..5deb17b
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len
-new file mode 100644
-index 0000000..c45b33f
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at
-new file mode 100644
-index 0000000..cd02516
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i
-new file mode 100644
-index 0000000..7ec2a2b
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len
-new file mode 100644
-index 0000000..131e265
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/last-build.bin b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/last-build.bin
-new file mode 100644
-index 0000000..0ec1fb4
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/kotlin/compileDebugKotlin/last-build.bin differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-audio-recorder-player/android/build/outputs/logs/manifest-merger-debug-report.txt
-new file mode 100644
-index 0000000..4ea9d89
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/outputs/logs/manifest-merger-debug-report.txt
-@@ -0,0 +1,29 @@
-+-- Merging decision tree log ---
-+manifest
-+ADDED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml:2:1-6:12
-+INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml:2:1-6:12
-+INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml:2:1-6:12
-+ package
-+ ADDED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml:3:11-54
-+ INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+ INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+ xmlns:android
-+ ADDED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml:2:11-69
-+uses-permission#android.permission.RECORD_AUDIO
-+ADDED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml:5:5-71
-+ android:name
-+ ADDED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml:5:22-68
-+uses-sdk
-+INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml reason: use-sdk injection requested
-+INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+ android:targetSdkVersion
-+ INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+ ADDED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+ INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+ android:minSdkVersion
-+ INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+ ADDED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+ INJECTED from /Users/afischer/projects/lunes-app/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt b/node_modules/react-native-audio-recorder-player/android/build/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt
-new file mode 100644
-index 0000000..ba6b867
---- /dev/null
-+++ b/node_modules/react-native-audio-recorder-player/android/build/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt
-@@ -0,0 +1,2 @@
-+com/dooboolab/audiorecorderplayer/BuildConfig.java
-+ com.dooboolab.audiorecorderplayer.BuildConfig
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/META-INF/react-native-audio-recorder-player_debug.kotlin_module b/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/META-INF/react-native-audio-recorder-player_debug.kotlin_module
-new file mode 100644
-index 0000000..70f0f69
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/META-INF/react-native-audio-recorder-player_debug.kotlin_module differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$Companion.class b/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$Companion.class
-new file mode 100644
-index 0000000..5570b3b
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$Companion.class differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startPlayer$1$1.class b/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startPlayer$1$1.class
-new file mode 100644
-index 0000000..cb23892
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startPlayer$1$1.class differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startRecorder$1.class b/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startRecorder$1.class
-new file mode 100644
-index 0000000..846767a
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule$startRecorder$1.class differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule.class b/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule.class
-new file mode 100644
-index 0000000..3852f34
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerModule.class differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerPackage.class b/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerPackage.class
-new file mode 100644
-index 0000000..d125623
-Binary files /dev/null and b/node_modules/react-native-audio-recorder-player/android/build/tmp/kotlin-classes/debug/com/dooboolab/audiorecorderplayer/RNAudioRecorderPlayerPackage.class differ
-diff --git a/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml b/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-index bce36eb..b4e434a 100644
---- a/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-+++ b/node_modules/react-native-audio-recorder-player/android/src/main/AndroidManifest.xml
-@@ -3,6 +3,5 @@
- package="com.dooboolab.audiorecorderplayer">
-
-
--
-
-
-\ No newline at end of file
-diff --git a/node_modules/react-native-audio-recorder-player/android/src/main/java/com/dooboolab.audiorecorderplayer/RNAudioRecorderPlayerModule.kt b/node_modules/react-native-audio-recorder-player/android/src/main/java/com/dooboolab.audiorecorderplayer/RNAudioRecorderPlayerModule.kt
-index 8bd601e..16b46da 100644
---- a/node_modules/react-native-audio-recorder-player/android/src/main/java/com/dooboolab.audiorecorderplayer/RNAudioRecorderPlayerModule.kt
-+++ b/node_modules/react-native-audio-recorder-player/android/src/main/java/com/dooboolab.audiorecorderplayer/RNAudioRecorderPlayerModule.kt
-@@ -38,11 +38,9 @@ class RNAudioRecorderPlayerModule(private val reactContext: ReactApplicationCont
- fun startRecorder(path: String, audioSet: ReadableMap?, meteringEnabled: Boolean, promise: Promise) {
- try {
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M &&
-- (ActivityCompat.checkSelfPermission(reactContext, Manifest.permission.RECORD_AUDIO) != PackageManager.PERMISSION_GRANTED ||
-- ActivityCompat.checkSelfPermission(reactContext, Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED)) {
-+ (ActivityCompat.checkSelfPermission(reactContext, Manifest.permission.RECORD_AUDIO) != PackageManager.PERMISSION_GRANTED)) {
- ActivityCompat.requestPermissions((currentActivity)!!, arrayOf(
-- Manifest.permission.RECORD_AUDIO,
-- Manifest.permission.WRITE_EXTERNAL_STORAGE), 0)
-+ Manifest.permission.RECORD_AUDIO), 0)
- promise.reject("No permission granted.", "Try again after adding permission.")
- return
- }
-diff --git a/node_modules/react-native-audio-recorder-player/index.ts b/node_modules/react-native-audio-recorder-player/index.ts
-index ea4a6e8..503311c 100644
---- a/node_modules/react-native-audio-recorder-player/index.ts
-+++ b/node_modules/react-native-audio-recorder-player/index.ts
-@@ -149,13 +149,13 @@ export type PlayBackType = {
- };
-
- class AudioRecorderPlayer {
-- private _isRecording: boolean;
-- private _isPlaying: boolean;
-- private _hasPaused: boolean;
-- private _hasPausedRecord: boolean;
-- private _recorderSubscription: EmitterSubscription;
-- private _playerSubscription: EmitterSubscription;
-- private _playerCallback: (event: PlayBackType) => void;
-+ private _isRecording!: boolean;
-+ private _isPlaying!: boolean;
-+ private _hasPaused!: boolean;
-+ private _hasPausedRecord!: boolean;
-+ private _recorderSubscription!: EmitterSubscription | null;
-+ private _playerSubscription!: EmitterSubscription;
-+ private _playerCallback!: ((event: PlayBackType) => void) | null;
-
- mmss = (secs: number): string => {
- let minutes = Math.floor(secs / 60);
-@@ -330,7 +330,7 @@ class AudioRecorderPlayer {
- startPlayer = async (
- uri?: string,
- httpHeaders?: Record,
-- ): Promise => {
-+ ): Promise => {
- if (!uri) {
- uri = 'DEFAULT';
- }
-@@ -378,7 +378,7 @@ class AudioRecorderPlayer {
- * Pause playing.
- * @returns {Promise}
- */
-- pausePlayer = async (): Promise => {
-+ pausePlayer = async (): Promise => {
- if (!this._isPlaying) {
- return 'No audio playing';
- }
diff --git a/patchfiles/react-native-audio-recorder-player+3.5.1/AndroidManifest.xml b/patchfiles/react-native-audio-recorder-player+3.5.1/AndroidManifest.xml
deleted file mode 100644
index b4e434ac6..000000000
--- a/patchfiles/react-native-audio-recorder-player+3.5.1/AndroidManifest.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/patchfiles/react-native-audio-recorder-player+3.5.1/RNAudioRecorderPlayerModule.kt b/patchfiles/react-native-audio-recorder-player+3.5.1/RNAudioRecorderPlayerModule.kt
deleted file mode 100644
index 16b46da17..000000000
--- a/patchfiles/react-native-audio-recorder-player+3.5.1/RNAudioRecorderPlayerModule.kt
+++ /dev/null
@@ -1,363 +0,0 @@
-package com.dooboolab.audiorecorderplayer
-
-import android.Manifest
-import android.content.pm.PackageManager
-import android.media.MediaPlayer
-import android.media.MediaRecorder
-import android.net.Uri
-import android.os.Build
-import android.os.Handler
-import android.os.Looper
-import android.os.SystemClock
-import android.util.Log
-import androidx.core.app.ActivityCompat
-import com.facebook.react.bridge.*
-import com.facebook.react.modules.core.DeviceEventManagerModule.RCTDeviceEventEmitter
-import com.facebook.react.modules.core.PermissionListener
-import java.io.IOException
-import java.util.*
-import kotlin.math.log10
-
-class RNAudioRecorderPlayerModule(private val reactContext: ReactApplicationContext) : ReactContextBaseJavaModule(reactContext), PermissionListener {
- private var audioFileURL = ""
- private var subsDurationMillis = 500
- private var _meteringEnabled = false
- private var mediaRecorder: MediaRecorder? = null
- private var mediaPlayer: MediaPlayer? = null
- private var recorderRunnable: Runnable? = null
- private var mTask: TimerTask? = null
- private var mTimer: Timer? = null
- private var pausedRecordTime = 0L
- private var totalPausedRecordTime = 0L
- var recordHandler: Handler? = Handler(Looper.getMainLooper())
- override fun getName(): String {
- return tag
- }
-
- @ReactMethod
- fun startRecorder(path: String, audioSet: ReadableMap?, meteringEnabled: Boolean, promise: Promise) {
- try {
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M &&
- (ActivityCompat.checkSelfPermission(reactContext, Manifest.permission.RECORD_AUDIO) != PackageManager.PERMISSION_GRANTED)) {
- ActivityCompat.requestPermissions((currentActivity)!!, arrayOf(
- Manifest.permission.RECORD_AUDIO), 0)
- promise.reject("No permission granted.", "Try again after adding permission.")
- return
- }
- } catch (ne: NullPointerException) {
- Log.w(tag, ne.toString())
- promise.reject("No permission granted.", "Try again after adding permission.")
- return
- }
- audioFileURL = if (((path == "DEFAULT"))) "${reactContext.cacheDir}/$defaultFileName" else path
- _meteringEnabled = meteringEnabled
-
- if (mediaRecorder == null) {
- mediaRecorder = MediaRecorder()
- }
-
- if (audioSet != null) {
- mediaRecorder!!.setAudioSource(if (audioSet.hasKey("AudioSourceAndroid")) audioSet.getInt("AudioSourceAndroid") else MediaRecorder.AudioSource.MIC)
- mediaRecorder!!.setOutputFormat(if (audioSet.hasKey("OutputFormatAndroid")) audioSet.getInt("OutputFormatAndroid") else MediaRecorder.OutputFormat.MPEG_4)
- mediaRecorder!!.setAudioEncoder(if (audioSet.hasKey("AudioEncoderAndroid")) audioSet.getInt("AudioEncoderAndroid") else MediaRecorder.AudioEncoder.AAC)
- mediaRecorder!!.setAudioSamplingRate(if (audioSet.hasKey("AudioSamplingRateAndroid")) audioSet.getInt("AudioSamplingRateAndroid") else 48000)
- mediaRecorder!!.setAudioEncodingBitRate(if (audioSet.hasKey("AudioEncodingBitRateAndroid")) audioSet.getInt("AudioEncodingBitRateAndroid") else 128000)
- } else {
- mediaRecorder!!.setAudioSource(MediaRecorder.AudioSource.MIC)
- mediaRecorder!!.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4)
- mediaRecorder!!.setAudioEncoder(MediaRecorder.AudioEncoder.AAC)
- mediaRecorder!!.setAudioEncodingBitRate(128000)
- mediaRecorder!!.setAudioSamplingRate(48000)
- }
- mediaRecorder!!.setOutputFile(audioFileURL)
-
- try {
- mediaRecorder!!.prepare()
- totalPausedRecordTime = 0L
- mediaRecorder!!.start()
- val systemTime = SystemClock.elapsedRealtime()
- recorderRunnable = object : Runnable {
- override fun run() {
- val time = SystemClock.elapsedRealtime() - systemTime - totalPausedRecordTime
- val obj = Arguments.createMap()
- obj.putDouble("currentPosition", time.toDouble())
- if (_meteringEnabled) {
- var maxAmplitude = 0
- if (mediaRecorder != null) {
- maxAmplitude = mediaRecorder!!.maxAmplitude
- }
- var dB = -160.0
- val maxAudioSize = 32767.0
- if (maxAmplitude > 0) {
- dB = 20 * log10(maxAmplitude / maxAudioSize)
- }
- obj.putInt("currentMetering", dB.toInt())
- }
- sendEvent(reactContext, "rn-recordback", obj)
- recordHandler!!.postDelayed(this, subsDurationMillis.toLong())
- }
- }
- (recorderRunnable as Runnable).run()
- promise.resolve("file:///$audioFileURL")
- } catch (e: Exception) {
- Log.e(tag, "Exception: ", e)
- promise.reject("startRecord", e.message)
- }
- }
-
- @ReactMethod
- fun resumeRecorder(promise: Promise) {
- if (mediaRecorder == null) {
- promise.reject("resumeReocrder", "Recorder is null.")
- return
- }
-
- try {
- mediaRecorder!!.resume()
- totalPausedRecordTime += SystemClock.elapsedRealtime() - pausedRecordTime;
- recorderRunnable?.let { recordHandler!!.postDelayed(it, subsDurationMillis.toLong()) }
- promise.resolve("Recorder resumed.")
- } catch (e: Exception) {
- Log.e(tag, "Recorder resume: " + e.message)
- promise.reject("resumeRecorder", e.message)
- }
- }
-
- @ReactMethod
- fun pauseRecorder(promise: Promise) {
- if (mediaRecorder == null) {
- promise.reject("pauseRecorder", "Recorder is null.")
- return
- }
-
- try {
- mediaRecorder!!.pause()
- pausedRecordTime = SystemClock.elapsedRealtime();
- recorderRunnable?.let { recordHandler!!.removeCallbacks(it) };
- promise.resolve("Recorder paused.")
- } catch (e: Exception) {
- Log.e(tag, "pauseRecorder exception: " + e.message)
- promise.reject("pauseRecorder", e.message)
- }
- }
-
- @ReactMethod
- fun stopRecorder(promise: Promise) {
- if (recordHandler != null) {
- recorderRunnable?.let { recordHandler!!.removeCallbacks(it) }
- }
-
- if (mediaRecorder == null) {
- promise.reject("stopRecord", "recorder is null.")
- return
- }
-
- try {
- mediaRecorder!!.stop()
- } catch (stopException: RuntimeException) {
- stopException.message?.let { Log.d(tag,"" + it) }
- promise.reject("stopRecord", stopException.message)
- }
-
- mediaRecorder!!.release()
- mediaRecorder = null
- promise.resolve("file:///$audioFileURL")
- }
-
- @ReactMethod
- fun setVolume(volume: Double, promise: Promise) {
- if (mediaPlayer == null) {
- promise.reject("setVolume", "player is null.")
- return
- }
-
- val mVolume = volume.toFloat()
- mediaPlayer!!.setVolume(mVolume, mVolume)
- promise.resolve("set volume")
- }
-
- @ReactMethod
- fun startPlayer(path: String, httpHeaders: ReadableMap?, promise: Promise) {
- if (mediaPlayer != null) {
- val isPaused = !mediaPlayer!!.isPlaying && mediaPlayer!!.currentPosition > 1
-
- if (isPaused) {
- mediaPlayer!!.start()
- promise.resolve("player resumed.")
- return
- }
-
- Log.e(tag, "Player is already running. Stop it first.")
- promise.reject("startPlay", "Player is already running. Stop it first.")
- return
- } else {
- mediaPlayer = MediaPlayer()
- }
-
- try {
- if ((path == "DEFAULT")) {
- mediaPlayer!!.setDataSource("${reactContext.cacheDir}/$defaultFileName")
- } else {
- if (httpHeaders != null) {
- val headers: MutableMap = HashMap()
- val iterator = httpHeaders.keySetIterator()
- while (iterator.hasNextKey()) {
- val key = iterator.nextKey()
- headers.put(key, httpHeaders.getString(key))
- }
- mediaPlayer!!.setDataSource(currentActivity!!.applicationContext, Uri.parse(path), headers)
- } else {
- mediaPlayer!!.setDataSource(path)
- }
- }
-
- mediaPlayer!!.setOnPreparedListener { mp ->
- Log.d(tag, "mediaplayer prepared and start")
- mp.start()
- /**
- * Set timer task to send event to RN.
- */
- mTask = object : TimerTask() {
- override fun run() {
- val obj = Arguments.createMap()
- obj.putInt("duration", mp.duration)
- obj.putInt("currentPosition", mp.currentPosition)
- sendEvent(reactContext, "rn-playback", obj)
- }
- }
-
- mTimer = Timer()
- mTimer!!.schedule(mTask, 0, subsDurationMillis.toLong())
- val resolvedPath = if (((path == "DEFAULT"))) "${reactContext.cacheDir}/$defaultFileName" else path
- promise.resolve(resolvedPath)
- }
-
- /**
- * Detect when finish playing.
- */
- mediaPlayer!!.setOnCompletionListener { mp ->
- /**
- * Send last event
- */
- val obj = Arguments.createMap()
- obj.putInt("duration", mp.duration)
- obj.putInt("currentPosition", mp.duration)
- sendEvent(reactContext, "rn-playback", obj)
- /**
- * Reset player.
- */
- Log.d(tag, "Plays completed.")
- mTimer!!.cancel()
- mp.stop()
- mp.release()
- mediaPlayer = null
- }
-
- mediaPlayer!!.prepare()
- } catch (e: IOException) {
- Log.e(tag, "startPlay() io exception")
- promise.reject("startPlay", e.message)
- } catch (e: NullPointerException) {
- Log.e(tag, "startPlay() null exception")
- }
- }
-
- @ReactMethod
- fun resumePlayer(promise: Promise) {
- if (mediaPlayer == null) {
- promise.reject("resume", "mediaPlayer is null on resume.")
- return
- }
-
- if (mediaPlayer!!.isPlaying) {
- promise.reject("resume", "mediaPlayer is already running.")
- return
- }
-
- try {
- mediaPlayer!!.seekTo(mediaPlayer!!.currentPosition)
- mediaPlayer!!.start()
- promise.resolve("resume player")
- } catch (e: Exception) {
- Log.e(tag, "mediaPlayer resume: " + e.message)
- promise.reject("resume", e.message)
- }
- }
-
- @ReactMethod
- fun pausePlayer(promise: Promise) {
- if (mediaPlayer == null) {
- promise.reject("pausePlay", "mediaPlayer is null on pause.")
- return
- }
-
- try {
- mediaPlayer!!.pause()
- promise.resolve("pause player")
- } catch (e: Exception) {
- Log.e(tag, "pausePlay exception: " + e.message)
- promise.reject("pausePlay", e.message)
- }
- }
-
- @ReactMethod
- fun seekToPlayer(time: Double, promise: Promise) {
- if (mediaPlayer == null) {
- promise.reject("seekTo", "mediaPlayer is null on seek.")
- return
- }
-
- mediaPlayer!!.seekTo(time.toInt())
- promise.resolve("pause player")
- }
-
- private fun sendEvent(reactContext: ReactContext,
- eventName: String,
- params: WritableMap?) {
- reactContext
- .getJSModule(RCTDeviceEventEmitter::class.java)
- .emit(eventName, params)
- }
-
- @ReactMethod
- fun stopPlayer(promise: Promise) {
- if (mTimer != null) {
- mTimer!!.cancel()
- }
-
- if (mediaPlayer == null) {
- promise.resolve("Already stopped player")
- return
- }
-
- try {
- mediaPlayer!!.release()
- mediaPlayer = null
- promise.resolve("stopped player")
- } catch (e: Exception) {
- Log.e(tag, "stopPlay exception: " + e.message)
- promise.reject("stopPlay", e.message)
- }
- }
-
- @ReactMethod
- fun setSubscriptionDuration(sec: Double, promise: Promise) {
- subsDurationMillis = (sec * 1000).toInt()
- promise.resolve("setSubscriptionDuration: $subsDurationMillis")
- }
-
- override fun onRequestPermissionsResult(requestCode: Int, permissions: Array, grantResults: IntArray): Boolean {
- var requestRecordAudioPermission: Int = 200
-
- when (requestCode) {
- requestRecordAudioPermission -> if (grantResults[0] == PackageManager.PERMISSION_GRANTED) return true
- }
-
- return false
- }
-
- companion object {
- private var tag = "RNAudioRecorderPlayer"
- private var defaultFileName = "sound.mp4"
- }
-}
diff --git a/patchfiles/react-native-audio-recorder-player+3.5.1/index.ts b/patchfiles/react-native-audio-recorder-player+3.5.1/index.ts
deleted file mode 100644
index 843419e49..000000000
--- a/patchfiles/react-native-audio-recorder-player+3.5.1/index.ts
+++ /dev/null
@@ -1,392 +0,0 @@
-import { DeviceEventEmitter, EmitterSubscription, NativeEventEmitter, NativeModules, Platform } from 'react-native'
-
-const { RNAudioRecorderPlayer } = NativeModules
-
-export enum AudioSourceAndroidType {
- DEFAULT = 0,
- MIC,
- VOICE_UPLINK,
- VOICE_DOWNLINK,
- VOICE_CALL,
- CAMCORDER,
- VOICE_RECOGNITION,
- VOICE_COMMUNICATION,
- REMOTE_SUBMIX,
- UNPROCESSED,
- RADIO_TUNER = 1998,
- HOTWORD,
-}
-
-export enum OutputFormatAndroidType {
- DEFAULT = 0,
- THREE_GPP,
- MPEG_4,
- AMR_NB,
- AMR_WB,
- AAC_ADIF,
- AAC_ADTS,
- OUTPUT_FORMAT_RTP_AVP,
- MPEG_2_TS,
- WEBM,
-}
-
-export enum AudioEncoderAndroidType {
- DEFAULT = 0,
- AMR_NB,
- AMR_WB,
- AAC,
- HE_AAC,
- AAC_ELD,
- VORBIS,
-}
-
-export enum AVEncodingOption {
- lpcm = 'lpcm',
- ima4 = 'ima4',
- aac = 'aac',
- MAC3 = 'MAC3',
- MAC6 = 'MAC6',
- ulaw = 'ulaw',
- alaw = 'alaw',
- mp1 = 'mp1',
- mp2 = 'mp2',
- mp4 = 'mp4',
- alac = 'alac',
- amr = 'amr',
- flac = 'flac',
- opus = 'opus',
-}
-
-type AVEncodingType =
- | AVEncodingOption.lpcm
- | AVEncodingOption.ima4
- | AVEncodingOption.aac
- | AVEncodingOption.MAC3
- | AVEncodingOption.MAC6
- | AVEncodingOption.ulaw
- | AVEncodingOption.alaw
- | AVEncodingOption.mp1
- | AVEncodingOption.mp2
- | AVEncodingOption.mp4
- | AVEncodingOption.alac
- | AVEncodingOption.amr
- | AVEncodingOption.flac
- | AVEncodingOption.opus
-
-export enum AVModeIOSOption {
- gamechat = 'gamechat',
- measurement = 'measurement',
- movieplayback = 'movieplayback',
- spokenaudio = 'spokenaudio',
- videochat = 'videochat',
- videorecording = 'videorecording',
- voicechat = 'voicechat',
- voiceprompt = 'voiceprompt',
-}
-
-export type AVModeIOSType =
- | AVModeIOSOption.gamechat
- | AVModeIOSOption.measurement
- | AVModeIOSOption.movieplayback
- | AVModeIOSOption.spokenaudio
- | AVModeIOSOption.videochat
- | AVModeIOSOption.videorecording
- | AVModeIOSOption.voicechat
- | AVModeIOSOption.voiceprompt
-
-export enum AVEncoderAudioQualityIOSType {
- min = 0,
- low = 32,
- medium = 64,
- high = 96,
- max = 127,
-}
-
-export enum AVLinearPCMBitDepthKeyIOSType {
- 'bit8' = 8,
- 'bit16' = 16,
- 'bit24' = 24,
- 'bit32' = 32,
-}
-
-export interface AudioSet {
- AVSampleRateKeyIOS?: number
- AVFormatIDKeyIOS?: AVEncodingType
- AVModeIOS?: AVModeIOSType
- AVNumberOfChannelsKeyIOS?: number
- AVEncoderAudioQualityKeyIOS?: AVEncoderAudioQualityIOSType
- AudioSourceAndroid?: AudioSourceAndroidType
- AVLinearPCMBitDepthKeyIOS?: AVLinearPCMBitDepthKeyIOSType
- AVLinearPCMIsBigEndianKeyIOS?: boolean
- AVLinearPCMIsFloatKeyIOS?: boolean
- AVLinearPCMIsNonInterleavedIOS?: boolean
- OutputFormatAndroid?: OutputFormatAndroidType
- AudioEncoderAndroid?: AudioEncoderAndroidType
- AudioEncodingBitRateAndroid?: number
- AudioSamplingRateAndroid?: number
-}
-
-const pad = (num: number): string => {
- return ('0' + num).slice(-2)
-}
-
-export type RecordBackType = {
- isRecording?: boolean
- currentPosition: number
- currentMetering?: number
-}
-
-export type PlayBackType = {
- isMuted?: boolean
- currentPosition: number
- duration: number
-}
-
-class AudioRecorderPlayer {
- private _isRecording!: boolean
- private _isPlaying!: boolean
- private _hasPaused!: boolean
- private _hasPausedRecord!: boolean
- private _recorderSubscription!: EmitterSubscription | null
- private _playerSubscription!: EmitterSubscription
- private _playerCallback!: ((event: PlayBackType) => void) | null
-
- mmss = (secs: number): string => {
- let minutes = Math.floor(secs / 60)
-
- secs = secs % 60
- minutes = minutes % 60
-
- return pad(minutes) + ':' + pad(secs)
- }
-
- mmssss = (milisecs: number): string => {
- const secs = Math.floor(milisecs / 1000)
- const minutes = Math.floor(secs / 60)
- const seconds = secs % 60
- const miliseconds = Math.floor((milisecs % 1000) / 10)
-
- return pad(minutes) + ':' + pad(seconds) + ':' + pad(miliseconds)
- }
-
- /**
- * Set listerner from native module for recorder.
- * @returns {callBack((e: RecordBackType): void)}
- */
-
- addRecordBackListener = (callback: (recordingMeta: RecordBackType) => void): void => {
- if (Platform.OS === 'android') {
- this._recorderSubscription = DeviceEventEmitter.addListener('rn-recordback', callback)
- } else {
- const myModuleEvt = new NativeEventEmitter(RNAudioRecorderPlayer)
-
- this._recorderSubscription = myModuleEvt.addListener('rn-recordback', callback)
- }
- }
-
- /**
- * Remove listener for recorder.
- * @returns {void}
- */
- removeRecordBackListener = (): void => {
- if (this._recorderSubscription) {
- this._recorderSubscription.remove()
- this._recorderSubscription = null
- }
- }
-
- /**
- * Set listener from native module for player.
- * @returns {callBack((e: PlayBackType): void)}
- */
- addPlayBackListener = (callback: (playbackMeta: PlayBackType) => void): void => {
- this._playerCallback = callback
- }
-
- /**
- * remove listener for player.
- * @returns {void}
- */
- removePlayBackListener = (): void => {
- this._playerCallback = null
- }
-
- /**
- * start recording with param.
- * @param {string} uri audio uri.
- * @returns {Promise}
- */
- startRecorder = async (uri?: string, audioSets?: AudioSet, meteringEnabled?: boolean): Promise => {
- if (!this._isRecording) {
- this._isRecording = true
-
- return RNAudioRecorderPlayer.startRecorder(uri ?? 'DEFAULT', audioSets, meteringEnabled ?? false)
- }
-
- return 'Already recording'
- }
-
- /**
- * Pause recording.
- * @returns {Promise}
- */
- pauseRecorder = async (): Promise => {
- if (!this._hasPausedRecord) {
- this._hasPausedRecord = true
-
- return RNAudioRecorderPlayer.pauseRecorder()
- }
-
- return 'Already paused recording.'
- }
-
- /**
- * Resume recording.
- * @returns {Promise}
- */
- resumeRecorder = async (): Promise => {
- if (this._hasPausedRecord) {
- this._hasPausedRecord = false
-
- return RNAudioRecorderPlayer.resumeRecorder()
- }
-
- return 'Currently recording.'
- }
-
- /**
- * stop recording.
- * @returns {Promise}
- */
- stopRecorder = async (): Promise => {
- if (this._isRecording) {
- this._isRecording = false
- this._hasPausedRecord = false
-
- return RNAudioRecorderPlayer.stopRecorder()
- }
-
- return 'Already stopped'
- }
-
- /**
- * Resume playing.
- * @returns {Promise}
- */
- resumePlayer = async (): Promise => {
- if (!this._isPlaying) {
- return 'No audio playing'
- }
-
- if (this._hasPaused) {
- this._hasPaused = false
-
- return RNAudioRecorderPlayer.resumePlayer()
- }
-
- return 'Already playing'
- }
-
- playerCallback = (event: PlayBackType): void => {
- if (this._playerCallback) {
- this._playerCallback(event)
- }
-
- if (event.currentPosition === event.duration) {
- this.stopPlayer()
- }
- }
-
- /**
- * Start playing with param.
- * @param {string} uri audio uri.
- * @param {Record} httpHeaders Set of http headers.
- * @returns {Promise}
- */
- startPlayer = async (uri?: string, httpHeaders?: Record): Promise => {
- if (!uri) {
- uri = 'DEFAULT'
- }
-
- if (!this._playerSubscription) {
- if (Platform.OS === 'android') {
- this._playerSubscription = DeviceEventEmitter.addListener('rn-playback', this.playerCallback)
- } else {
- const myModuleEvt = new NativeEventEmitter(RNAudioRecorderPlayer)
-
- this._playerSubscription = myModuleEvt.addListener('rn-playback', this.playerCallback)
- }
- }
-
- if (!this._isPlaying || this._hasPaused) {
- this._isPlaying = true
- this._hasPaused = false
-
- return RNAudioRecorderPlayer.startPlayer(uri, httpHeaders)
- }
- }
-
- /**
- * Stop playing.
- * @returns {Promise}
- */
- stopPlayer = async (): Promise => {
- if (this._isPlaying) {
- this._isPlaying = false
- this._hasPaused = false
-
- return RNAudioRecorderPlayer.stopPlayer()
- }
-
- return 'Already stopped playing'
- }
-
- /**
- * Pause playing.
- * @returns {Promise}
- */
- pausePlayer = async (): Promise => {
- if (!this._isPlaying) {
- return 'No audio playing'
- }
-
- if (!this._hasPaused) {
- this._hasPaused = true
-
- return RNAudioRecorderPlayer.pausePlayer()
- }
- }
-
- /**
- * Seek to.
- * @param {number} time position seek to in millisecond.
- * @returns {Promise}
- */
- seekToPlayer = async (time: number): Promise => {
- return RNAudioRecorderPlayer.seekToPlayer(time)
- }
-
- /**
- * Set volume.
- * @param {number} setVolume set volume.
- * @returns {Promise}
- */
- setVolume = async (volume: number): Promise => {
- if (volume < 0 || volume > 1) {
- throw new Error('Value of volume should be between 0.0 to 1.0')
- }
-
- return RNAudioRecorderPlayer.setVolume(volume)
- }
-
- /**
- * Set subscription duration. Default is 0.5.
- * @param {number} sec subscription callback duration in seconds.
- * @returns {Promise}
- */
- setSubscriptionDuration = async (sec: number): Promise => {
- return RNAudioRecorderPlayer.setSubscriptionDuration(sec)
- }
-}
-
-export default AudioRecorderPlayer
diff --git a/src/@types/styled.d.ts b/src/@types/styled.d.ts
index bac88d752..fd93d5d59 100644
--- a/src/@types/styled.d.ts
+++ b/src/@types/styled.d.ts
@@ -3,6 +3,6 @@ import 'styled-components'
import { Theme } from '../constants/theme'
declare module 'styled-components' {
- // eslint-disable-next-line @typescript-eslint/no-empty-interface, @typescript-eslint/consistent-type-definitions
+ // eslint-disable-next-line @typescript-eslint/no-empty-interface,@typescript-eslint/consistent-type-definitions,@typescript-eslint/no-empty-object-type
export interface DefaultTheme extends Theme {}
}
diff --git a/src/App.tsx b/src/App.tsx
index 0cddce8fd..cb3ba0d5d 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,9 +1,9 @@
-import React, { ReactElement, useEffect } from 'react'
+import { NavigationContainer } from '@react-navigation/native'
+import React, { ReactElement } from 'react'
import { LogBox } from 'react-native'
import 'react-native-gesture-handler'
import { initialWindowMetrics, SafeAreaProvider } from 'react-native-safe-area-context'
-import SplashScreen from 'react-native-splash-screen'
-import { OverflowMenuProvider } from 'react-navigation-header-buttons'
+import { HeaderButtonsProvider } from 'react-navigation-header-buttons'
import { ThemeProvider } from 'styled-components/native'
import theme from './constants/theme'
@@ -12,25 +12,19 @@ import { initSentry } from './services/sentry'
LogBox.ignoreLogs(['NativeEventEmitter'])
-const SPLASH_SCREEN_DURATION = 3000
-
const App = (): ReactElement => {
initSentry()
LogBox.ignoreLogs(['EventEmitter.removeListener'])
- useEffect(() => {
- setTimeout(() => {
- SplashScreen.hide()
- }, SPLASH_SCREEN_DURATION)
- }, [])
-
return (
-
-
-
+
+
+
+
+
)
diff --git a/src/__tests__/App.spec.tsx b/src/__tests__/App.spec.tsx
index 1348169f9..7993e8102 100644
--- a/src/__tests__/App.spec.tsx
+++ b/src/__tests__/App.spec.tsx
@@ -1,14 +1,12 @@
import { act, render } from '@testing-library/react-native'
import React, { ReactNode } from 'react'
import { View } from 'react-native'
-import SplashScreen from 'react-native-splash-screen'
import App from '../App'
jest.mock('react-navigation-header-buttons', () => ({
- OverflowMenuProvider: ({ children }: { children: ReactNode }) => {children} ,
+ HeaderButtonsProvider: ({ children }: { children: ReactNode }) => {children} ,
}))
-jest.mock('react-native-splash-screen', () => ({ hide: jest.fn() }))
jest.mock('../navigation/Navigator', () => {
const Text = require('react-native').Text
return () => Navigator
@@ -24,7 +22,6 @@ describe('App', () => {
jest.advanceTimersByTime(3000)
})
- expect(SplashScreen.hide).toHaveBeenCalled()
expect(getByText('Navigator')).toBeTruthy()
})
})
diff --git a/src/components/CameraOverlay.tsx b/src/components/CameraOverlay.tsx
index b32c7fa18..169fa9102 100644
--- a/src/components/CameraOverlay.tsx
+++ b/src/components/CameraOverlay.tsx
@@ -9,7 +9,7 @@ import useGrantPermissions from '../hooks/useGrantPermissions'
import { getLabels } from '../services/helpers'
import NotAuthorisedView from './NotAuthorisedView'
-const Container = styled.View`
+const Container = styled.SafeAreaView`
flex: 1;
background-color: ${props => props.theme.colors.background};
`
diff --git a/src/components/ImageCarousel.tsx b/src/components/ImageCarousel.tsx
index ee93cc72f..9c284f5a9 100644
--- a/src/components/ImageCarousel.tsx
+++ b/src/components/ImageCarousel.tsx
@@ -86,7 +86,7 @@ const ImageCarousel = ({ images, minimized = false }: ImageCarouselProps): React
)
const renderItem = (item: Item): ReactElement => (
-
+
)
return (
diff --git a/src/components/NotAuthorisedView.tsx b/src/components/NotAuthorisedView.tsx
index 2bbfef134..f2c2e408c 100644
--- a/src/components/NotAuthorisedView.tsx
+++ b/src/components/NotAuthorisedView.tsx
@@ -1,5 +1,5 @@
import React, { ReactElement } from 'react'
-import { Linking } from 'react-native'
+import { openSettings } from 'react-native-permissions'
import styled from 'styled-components/native'
import { BUTTONS_THEME } from '../constants/data'
@@ -26,15 +26,15 @@ type NotAuthorizedViewProps = {
}
const NotAuthorisedView = ({ setVisible, description }: NotAuthorizedViewProps): ReactElement => {
- const openSettings = () => {
- Linking.openSettings().catch(reportError)
+ const safeOpenSettings = () => {
+ openSettings().catch(reportError)
}
return (
{description}
setVisible(false)} label={getLabels().general.back} buttonTheme={BUTTONS_THEME.outlined} />
-
+
)
}
diff --git a/src/components/__tests__/ExerciseHeader.spec.tsx b/src/components/__tests__/ExerciseHeader.spec.tsx
index 4d811b92e..1f47f0b3b 100644
--- a/src/components/__tests__/ExerciseHeader.spec.tsx
+++ b/src/components/__tests__/ExerciseHeader.spec.tsx
@@ -20,7 +20,7 @@ describe('ExerciseHeader', () => {
it('should render header', () => {
const goBack = CommonActions.goBack()
- const { getByText, getByTestId } = render(
+ const { getByText, getByTestId, queryByTestId } = render(
{
exerciseKey={ExerciseKeys.vocabularyList}
/>,
)
- expect(getByTestId('customModal')).toBeTruthy()
- expect(getByTestId('customModal').props.visible).toBe(false)
+ expect(queryByTestId('customModal')).toBeFalsy()
act(BackHandler.mockPressBack)
diff --git a/src/components/__tests__/ImageCarousel.spec.tsx b/src/components/__tests__/ImageCarousel.spec.tsx
index 72e611616..dab9efcf5 100644
--- a/src/components/__tests__/ImageCarousel.spec.tsx
+++ b/src/components/__tests__/ImageCarousel.spec.tsx
@@ -25,15 +25,14 @@ describe('ImageCarousel', () => {
const getUri = (image: ReactTestInstance): string => image.props.source[0].uri
- // TODO #1010: Uncomment after upgrading react-native and fixing roles
- it.skip('should display the images', async () => {
- const { getByTestId, findAllByRole } = render( )
+ it('should display the images', async () => {
+ const { getByTestId, getAllByTestId } = render( )
const row = getByTestId('Swipeable')
expect(row).toBeTruthy()
const swipeable = row.children[0] as ReactTestInstance
- const displayedImages = await findAllByRole('image')
+ const displayedImages = getAllByTestId('image')
expect(displayedImages).toHaveLength(1)
const firstImage = displayedImages[0]
@@ -45,7 +44,7 @@ describe('ImageCarousel', () => {
// as the image is then rendered and accessible by role, even without swiping
swipeable.instance.loadImage(1) // load the second image
- const swipedDisplayedImages = await findAllByRole('image')
+ const swipedDisplayedImages = getAllByTestId('image')
expect(swipedDisplayedImages).toHaveLength(2)
const swipedFirstImage = swipedDisplayedImages[0]
diff --git a/src/components/__tests__/NotAuthorisedView.spec.tsx b/src/components/__tests__/NotAuthorisedView.spec.tsx
index 6e736a2fa..1b1ed2d10 100644
--- a/src/components/__tests__/NotAuthorisedView.spec.tsx
+++ b/src/components/__tests__/NotAuthorisedView.spec.tsx
@@ -1,15 +1,12 @@
import { fireEvent } from '@testing-library/react-native'
-import { mocked } from 'jest-mock'
import React from 'react'
-import { Linking } from 'react-native'
+import { openSettings } from 'react-native-permissions'
import { getLabels } from '../../services/helpers'
import render from '../../testing/render'
import NotAuthorisedView from '../NotAuthorisedView'
-jest.mock('react-native/Libraries/Linking/Linking', () => ({
- openSettings: jest.fn(),
-}))
+jest.mock('react-native-permissions', () => require('react-native-permissions/mock'))
describe('NotAuthorisedView', () => {
const setVisible = jest.fn()
@@ -38,7 +35,6 @@ describe('NotAuthorisedView', () => {
})
it('should open settings successfully', () => {
- mocked(Linking.openSettings).mockImplementationOnce(Promise.resolve)
const { getByText } = render(
{
)
const message = getByText(getLabels().settings.settings)
fireEvent.press(message)
- expect(Linking.openSettings).toBeDefined()
+ expect(openSettings).toBeDefined()
})
})
diff --git a/src/navigation/Navigator.tsx b/src/navigation/Navigator.tsx
index fb85cb85f..cf85d82a4 100644
--- a/src/navigation/Navigator.tsx
+++ b/src/navigation/Navigator.tsx
@@ -1,4 +1,3 @@
-import { NavigationContainer } from '@react-navigation/native'
import { createStackNavigator } from '@react-navigation/stack'
import React from 'react'
import { heightPercentageToDP as hp } from 'react-native-responsive-screen'
@@ -35,58 +34,56 @@ const HomeStackNavigator = (): JSX.Element | null => {
}
return (
-
-
-
- options(manageSelection, navigation)}
- />
- options(manageSelection, navigation)}
- />
-
- options(route.params.discipline.parentTitle ?? overview, navigation)}
- />
- options(overviewExercises, navigation, false)}
- />
- options('', navigation, true)}
- />
- options(cancelExercise, navigation, true)}
- />
- options(cancelExercise, navigation, true)}
- />
- options(cancelExercise, navigation, true)}
- />
-
-
-
+
+
+ options(manageSelection, navigation)}
+ />
+ options(manageSelection, navigation)}
+ />
+
+ options(route.params.discipline.parentTitle ?? overview, navigation)}
+ />
+ options(overviewExercises, navigation, false)}
+ />
+ options('', navigation, true)}
+ />
+ options(cancelExercise, navigation, true)}
+ />
+ options(cancelExercise, navigation, true)}
+ />
+ options(cancelExercise, navigation, true)}
+ />
+
+
)
}
diff --git a/src/routes/add-custom-discipline/__tests__/AddCustomDisciplineScreen.spec.tsx b/src/routes/add-custom-discipline/__tests__/AddCustomDisciplineScreen.spec.tsx
index 005ae6599..3303f6748 100644
--- a/src/routes/add-custom-discipline/__tests__/AddCustomDisciplineScreen.spec.tsx
+++ b/src/routes/add-custom-discipline/__tests__/AddCustomDisciplineScreen.spec.tsx
@@ -3,6 +3,7 @@ import { fireEvent, waitFor } from '@testing-library/react-native'
import { mocked } from 'jest-mock'
import React from 'react'
import { View } from 'react-native'
+import { Code } from 'react-native-vision-camera'
import { loadDiscipline } from '../../../hooks/useLoadDiscipline'
import { setCustomDisciplines } from '../../../services/AsyncStorage'
@@ -15,8 +16,11 @@ import AddCustomDisciplineScreen from '../AddCustomDisciplineScreen'
jest.mock('@react-navigation/native')
jest.mock('../../../hooks/useLoadDiscipline')
-jest.mock('react-native-camera', () => ({
- RNCamera: () => ,
+type OnCodeScanned = (codes: Code[]) => Code[]
+jest.mock('react-native-vision-camera', () => ({
+ Camera: () => ,
+ useCameraDevice: () => ({ id: 'device1' }),
+ useCodeScanner: ({ onCodeScanned }: { onCodeScanned: OnCodeScanned }) => ({ onCodeScanned }),
}))
jest.mock('react-native-permissions', () => require('react-native-permissions/mock'))
diff --git a/src/routes/add-custom-discipline/components/__tests__/QRCodeReaderOverlay.spec.tsx b/src/routes/add-custom-discipline/components/__tests__/QRCodeReaderOverlay.spec.tsx
index 867f65f38..f8df2e747 100644
--- a/src/routes/add-custom-discipline/components/__tests__/QRCodeReaderOverlay.spec.tsx
+++ b/src/routes/add-custom-discipline/components/__tests__/QRCodeReaderOverlay.spec.tsx
@@ -1,20 +1,30 @@
import { fireEvent } from '@testing-library/react-native'
import React from 'react'
import { Pressable, View } from 'react-native'
+import { Code } from 'react-native-vision-camera'
import render from '../../../../testing/render'
import QRCodeReaderOverlay from '../QRCodeReaderOverlay'
const apiCode = 'scanned-api-code'
+jest.mock('../../../../hooks/useAppState', () => ({
+ __esModule: true,
+ default: () => () => jest.fn(),
+}))
jest.mock('react-native-permissions', () => require('react-native-permissions/mock'))
-jest.mock('react-native-camera', () => ({
- RNCamera: ({ onBarCodeRead }: { onBarCodeRead: ({ data }: { data: string }) => void }) => (
+const codes: Code[] = [{ type: 'qr', value: 'scanned-api-code' }]
+type OnCodeScanned = (codes: Code[]) => Code[]
+
+jest.mock('react-native-vision-camera', () => ({
+ Camera: ({ codeScanner }: { codeScanner: { onCodeScanned: OnCodeScanned } }) => (
- onBarCodeRead({ data: apiCode })} />
+ codeScanner.onCodeScanned(codes)} />
),
+ useCameraDevice: () => ({ id: 'device1' }),
+ useCodeScanner: ({ onCodeScanned }: { onCodeScanned: OnCodeScanned }) => ({ onCodeScanned }),
}))
describe('QRCodeReaderOverlay', () => {
diff --git a/src/routes/choice-exercises/__tests__/WordChoiceExerciseScreen.spec.tsx b/src/routes/choice-exercises/__tests__/WordChoiceExerciseScreen.spec.tsx
index 7dc75b71a..fb2716683 100644
--- a/src/routes/choice-exercises/__tests__/WordChoiceExerciseScreen.spec.tsx
+++ b/src/routes/choice-exercises/__tests__/WordChoiceExerciseScreen.spec.tsx
@@ -9,12 +9,14 @@ import createNavigationMock from '../../../testing/createNavigationPropMock'
import render from '../../../testing/render'
import WordChoiceExerciseScreen from '../WordChoiceExerciseScreen'
-jest.useFakeTimers()
-
jest.mock('../../../components/FavoriteButton', () => {
const Text = require('react-native').Text
return () => FavoriteButton
})
+jest.mock('../../../components/CheatMode', () => {
+ const Text = require('react-native').Text
+ return () => CheatMode
+})
jest.mock('../../../services/helpers', () => ({
...jest.requireActual('../../../services/helpers'),
shuffleArray: jest.fn(it => it),
diff --git a/src/routes/exercises/__tests__/StandardExercisesScreen.spec.tsx b/src/routes/exercises/__tests__/StandardExercisesScreen.spec.tsx
index 18a3554e0..2e22b7129 100644
--- a/src/routes/exercises/__tests__/StandardExercisesScreen.spec.tsx
+++ b/src/routes/exercises/__tests__/StandardExercisesScreen.spec.tsx
@@ -55,8 +55,10 @@ describe('StandardExercisesScreen', () => {
})
it('should show modal that the lesson is not available yet on navigation if locked', async () => {
- const { getByText, getByTestId } = render( )
- expect(getByTestId('locking-modal')).toHaveProp('visible', false)
+ const { getByText, getByTestId, queryByTestId } = render(
+ ,
+ )
+ expect(queryByTestId('locking-modal')).toBeFalsy()
const lockedExercise = getByText(EXERCISES[1].title)
fireEvent.press(lockedExercise)
expect(getByTestId('locking-modal')).toHaveProp('visible', true)
diff --git a/src/routes/home/components/ProfessionDetails.tsx b/src/routes/home/components/ProfessionDetails.tsx
index cade6d322..70491288a 100644
--- a/src/routes/home/components/ProfessionDetails.tsx
+++ b/src/routes/home/components/ProfessionDetails.tsx
@@ -53,7 +53,7 @@ const ProfessionDetails = ({
<>
{
const Text = require('react-native').Text
@@ -30,7 +29,8 @@ describe('DisciplineCard', () => {
mockUseLoadAsyncWithData(mockDisciplines()[0])
const { getByText, findByText } = renderDisciplineCard()
expect(getByText(mockDisciplines()[0].title)).toBeDefined()
- expect(findByText(labels.home.continue)).toBeDefined()
+ const element = await findByText(labels.home.start)
+ expect(element).toBeDefined()
})
it('should display loading', () => {
diff --git a/src/routes/process-user-vocabulary/UserVocabularyProcessScreen.tsx b/src/routes/process-user-vocabulary/UserVocabularyProcessScreen.tsx
index 954731ef7..919886af6 100644
--- a/src/routes/process-user-vocabulary/UserVocabularyProcessScreen.tsx
+++ b/src/routes/process-user-vocabulary/UserVocabularyProcessScreen.tsx
@@ -11,7 +11,7 @@ import Button from '../../components/Button'
import CustomTextInput from '../../components/CustomTextInput'
import Dropdown from '../../components/Dropdown'
import RouteWrapper from '../../components/RouteWrapper'
-import { TitleWithSpacing } from '../../components/Title'
+import Title from '../../components/Title'
import { ContentError } from '../../components/text/Content'
import { HintText } from '../../components/text/Hint'
import {
@@ -58,6 +58,10 @@ const ThumbnailContainer = styled.View`
flex-direction: row;
`
+const StyledTitle = styled(Title)`
+ margin-top: 0;
+`
+
type UserVocabularyProcessScreenProps = {
navigation: StackNavigationProp
route: RouteProp
@@ -190,7 +194,7 @@ const UserVocabularyProcessScreen = ({ navigation, route }: UserVocabularyProces
return (
-
+
() => {
const { Text } = require('react-native')
return AudioPlayer
})
-jest.mock('react-native-image-crop-picker', () => ({
- openPicker: jest.fn(),
+jest.mock('react-native-image-picker', () => ({
+ launchImageLibrary: jest.fn(),
+}))
+jest.mock('react-native-vision-camera', () => ({
+ Camera: jest.fn(),
+ useCameraDevice: jest.fn(),
}))
Date.now = jest.fn(() => 2000)
diff --git a/src/routes/process-user-vocabulary/components/ImageSelectionOverlay.tsx b/src/routes/process-user-vocabulary/components/ImageSelectionOverlay.tsx
index ecedbb6f7..25b3707e1 100644
--- a/src/routes/process-user-vocabulary/components/ImageSelectionOverlay.tsx
+++ b/src/routes/process-user-vocabulary/components/ImageSelectionOverlay.tsx
@@ -1,5 +1,5 @@
import React, { ReactElement, useRef } from 'react'
-import { Pressable } from 'react-native'
+import { Platform, Pressable } from 'react-native'
import { launchImageLibrary } from 'react-native-image-picker'
import { Camera, useCameraDevice } from 'react-native-vision-camera'
import styled from 'styled-components/native'
@@ -48,9 +48,10 @@ const ImageSelectionOverlay = ({ setVisible, pushImage }: ImageSelectionOverlayP
const takePhoto = async () => {
try {
if (camera.current) {
- const data = await camera.current.takePhoto()
+ const file = await camera.current.takePhoto()
+ const filePath = Platform.OS === 'ios' ? file.path : `file://${file.path}`
+ pushImage(filePath)
setVisible(false)
- pushImage(`file://${data.path}`)
}
} catch (error) {
reportError(error)
@@ -70,20 +71,18 @@ const ImageSelectionOverlay = ({ setVisible, pushImage }: ImageSelectionOverlayP
}
}
- if (!device) {
- return null
- }
-
return (
-
+ {device && (
+
+ )}
diff --git a/src/routes/process-user-vocabulary/components/__tests__/ImageSelectionOverlay.spec.tsx b/src/routes/process-user-vocabulary/components/__tests__/ImageSelectionOverlay.spec.tsx
index 1e7111421..19c4b60c7 100644
--- a/src/routes/process-user-vocabulary/components/__tests__/ImageSelectionOverlay.spec.tsx
+++ b/src/routes/process-user-vocabulary/components/__tests__/ImageSelectionOverlay.spec.tsx
@@ -1,4 +1,4 @@
-import React, { ReactElement, ReactNode } from 'react'
+import React, { ReactElement } from 'react'
import { View } from 'react-native'
import render from '../../../../testing/render'
@@ -8,12 +8,18 @@ jest.mock('../../../../components/CameraOverlay', () => ({ children }: { childre
{children}
))
-jest.mock('react-native-camera', () => ({
- RNCamera: ({ children }: { children: ReactNode }) => {children} ,
+jest.mock('../../../../hooks/useAppState', () => ({
+ __esModule: true,
+ default: () => () => jest.fn(),
}))
-jest.mock('react-native-image-crop-picker', () => ({
- openPicker: jest.fn(),
+jest.mock('react-native-vision-camera', () => ({
+ Camera: jest.fn(),
+ useCameraDevice: jest.fn(() => ({ id: 'device1' })),
+}))
+
+jest.mock('react-native-image-picker', () => ({
+ launchImageLibrary: jest.fn(),
}))
jest.mock('react-native-permissions', () => require('react-native-permissions/mock'))
diff --git a/src/routes/repetition/__tests__/RepetitionScreen.spec.tsx b/src/routes/repetition/__tests__/RepetitionScreen.spec.tsx
index f0ee1ac8a..d7bdbb8ef 100644
--- a/src/routes/repetition/__tests__/RepetitionScreen.spec.tsx
+++ b/src/routes/repetition/__tests__/RepetitionScreen.spec.tsx
@@ -26,11 +26,10 @@ describe('RepetitionScreen', () => {
})
it('should open modal on icon click', async () => {
- const { getByTestId } = render( )
+ const { getByTestId, queryByTestId } = render( )
const isInfoIconPressed = getByTestId('info-circle-black-icon')
expect(isInfoIconPressed).toBeDefined()
- expect(getByTestId('infoModal')).toBeTruthy()
- expect(getByTestId('infoModal').props.visible).toBe(false)
+ expect(queryByTestId('infoModal')).toBeFalsy()
fireEvent.press(isInfoIconPressed)
expect(getByTestId('infoModal')).toBeTruthy()
expect(getByTestId('infoModal').props.visible).toBe(true)
diff --git a/src/routes/write-exercise/components/InteractionSection.tsx b/src/routes/write-exercise/components/InteractionSection.tsx
index a9da88f1b..f167e077e 100644
--- a/src/routes/write-exercise/components/InteractionSection.tsx
+++ b/src/routes/write-exercise/components/InteractionSection.tsx
@@ -110,6 +110,7 @@ const InteractionSection = (props: InteractionSectionProps): ReactElement => {
case 'incorrect':
return theme.colors.incorrect
case 'similar':
+ case null:
default:
return theme.colors.almostCorrect
}
diff --git a/src/routes/write-exercise/components/MissingArticlePopover.tsx b/src/routes/write-exercise/components/MissingArticlePopover.tsx
index 9886cce92..b9dd3076a 100644
--- a/src/routes/write-exercise/components/MissingArticlePopover.tsx
+++ b/src/routes/write-exercise/components/MissingArticlePopover.tsx
@@ -44,6 +44,7 @@ const MissingArticlePopover = forwardRef(({ isVisible, setIsPopoverVisible }: Po
testID='popover'
isVisible={isVisible}
onRequestClose={() => setIsPopoverVisible(false)}
+ // @ts-expect-error no idea what the correct type is here
from={ref}
placement={PopoverPlacement.TOP}
popoverStyle={styles.popover}
diff --git a/src/services/__tests__/url.spec.ts b/src/services/__tests__/url.spec.ts
index 82e83b497..b9b303209 100644
--- a/src/services/__tests__/url.spec.ts
+++ b/src/services/__tests__/url.spec.ts
@@ -3,15 +3,16 @@ import { Linking } from 'react-native'
import { openExternalUrl } from '../url'
-jest.mock('react-native/Libraries/Linking/Linking', () => ({
- canOpenURL: jest.fn(),
- openURL: jest.fn(),
+jest.mock('react-native', () => ({
+ Linking: {
+ canOpenURL: jest.fn(),
+ openURL: jest.fn(),
+ },
}))
describe('url', () => {
it('should successfully open an url', async () => {
mocked(Linking.canOpenURL).mockResolvedValueOnce(true)
- mocked(Linking.openURL).mockImplementationOnce(Promise.resolve)
const url = 'https://lunes-app.de'
diff --git a/yarn.lock b/yarn.lock
index 1ec429190..a99ccd646 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5,13 +5,6 @@ __metadata:
version: 6
cacheKey: 8c0
-"@aashutoshrathi/word-wrap@npm:^1.2.3":
- version: 1.2.6
- resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
- checksum: 53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
- languageName: node
- linkType: hard
-
"@ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
@@ -22,65 +15,25 @@ __metadata:
languageName: node
linkType: hard
-"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.23.5, @babel/code-frame@npm:^7.24.1, @babel/code-frame@npm:^7.24.2":
- version: 7.24.2
- resolution: "@babel/code-frame@npm:7.24.2"
- dependencies:
- "@babel/highlight": ^7.24.2
- picocolors: ^1.0.0
- checksum: d1d4cba89475ab6aab7a88242e1fd73b15ecb9f30c109b69752956434d10a26a52cbd37727c4eca104b6d45227bd1dfce39a6a6f4a14c9b2f07f871e968cf406
- languageName: node
- linkType: hard
-
-"@babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0":
- version: 7.26.0
- resolution: "@babel/code-frame@npm:7.26.0"
+"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.24.7, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0":
+ version: 7.26.2
+ resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": ^7.25.9
js-tokens: ^4.0.0
picocolors: ^1.0.0
- checksum: 46f7e367714be736b52ea3c01b24f47e2102e210fb83021d1c8237d8fc511b9538909e16e2fcdbb5cb6173e0794e28624309a59014e52fcfb7bde908f5284388
+ checksum: 7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8
languageName: node
linkType: hard
-"@babel/compat-data@npm:^7.13.11, @babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.23.5":
- version: 7.24.1
- resolution: "@babel/compat-data@npm:7.24.1"
- checksum: 8a1935450345c326b14ea632174696566ef9b353bd0d6fb682456c0774342eeee7654877ced410f24a731d386fdcbf980b75083fc764964d6f816b65792af2f5
- languageName: node
- linkType: hard
-
-"@babel/compat-data@npm:^7.25.9, @babel/compat-data@npm:^7.26.0":
- version: 7.26.0
- resolution: "@babel/compat-data@npm:7.26.0"
- checksum: 6325c9151a3c9b0a3a807e854a26255ef66d989bff331475a935af9bb18f160e0fffe6aed550e4e96b63f91efcd874bfbaab2a1f4a2f8d25645d712a0de590fb
- languageName: node
- linkType: hard
-
-"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.16, @babel/core@npm:^7.21.3, @babel/core@npm:^7.23.9":
- version: 7.24.3
- resolution: "@babel/core@npm:7.24.3"
- dependencies:
- "@ampproject/remapping": ^2.2.0
- "@babel/code-frame": ^7.24.2
- "@babel/generator": ^7.24.1
- "@babel/helper-compilation-targets": ^7.23.6
- "@babel/helper-module-transforms": ^7.23.3
- "@babel/helpers": ^7.24.1
- "@babel/parser": ^7.24.1
- "@babel/template": ^7.24.0
- "@babel/traverse": ^7.24.1
- "@babel/types": ^7.24.0
- convert-source-map: ^2.0.0
- debug: ^4.1.0
- gensync: ^1.0.0-beta.2
- json5: ^2.2.3
- semver: ^6.3.1
- checksum: e6e756b6de27d0312514a005688fa1915c521ad4269a388913eff2120a546538078f8488d6d16e86f851872f263cb45a6bbae08738297afb9382600d2ac342a9
+"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.25.9, @babel/compat-data@npm:^7.26.0":
+ version: 7.26.2
+ resolution: "@babel/compat-data@npm:7.26.2"
+ checksum: c9b5f3724828d17f728a778f9d66c19b55c018d0d76de6d731178cca64f182c22b71400a73bf2b65dcc4fcfe52b630088a94d5902911b54206aa90e3ffe07d12
languageName: node
linkType: hard
-"@babel/core@npm:^7.14.0, @babel/core@npm:^7.24.3":
+"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.16, @babel/core@npm:^7.21.3, @babel/core@npm:^7.23.9, @babel/core@npm:^7.25.2, @babel/core@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/core@npm:7.26.0"
dependencies:
@@ -114,7 +67,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/generator@npm:^7.14.0":
+"@babel/generator@npm:^7.23.0, @babel/generator@npm:^7.25.0, @babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0, @babel/generator@npm:^7.7.2":
version: 7.26.2
resolution: "@babel/generator@npm:7.26.2"
dependencies:
@@ -127,40 +80,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/generator@npm:^7.23.0, @babel/generator@npm:^7.24.1, @babel/generator@npm:^7.7.2":
- version: 7.24.1
- resolution: "@babel/generator@npm:7.24.1"
- dependencies:
- "@babel/types": ^7.24.0
- "@jridgewell/gen-mapping": ^0.3.5
- "@jridgewell/trace-mapping": ^0.3.25
- jsesc: ^2.5.1
- checksum: f0eea7497657cdf68cfb4b7d181588e1498eefd1f303d73b0d8ca9b21a6db27136a6f5beb8f988b6bdcd4249870826080950450fd310951de42ecf36df274881
- languageName: node
- linkType: hard
-
-"@babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0":
- version: 7.26.0
- resolution: "@babel/generator@npm:7.26.0"
- dependencies:
- "@babel/parser": ^7.26.0
- "@babel/types": ^7.26.0
- "@jridgewell/gen-mapping": ^0.3.5
- "@jridgewell/trace-mapping": ^0.3.25
- jsesc: ^3.0.2
- checksum: b6bb9185f19a97eaf58e04a6d39a13237076678e7ed16b6321dea914535d4bf6a8d7727c9dcb65539845aa0096b326eb67be4bab764bd74bcfd848e2eda68609
- languageName: node
- linkType: hard
-
-"@babel/helper-annotate-as-pure@npm:^7.14.5, @babel/helper-annotate-as-pure@npm:^7.22.5":
- version: 7.22.5
- resolution: "@babel/helper-annotate-as-pure@npm:7.22.5"
- dependencies:
- "@babel/types": ^7.22.5
- checksum: 5a80dc364ddda26b334bbbc0f6426cab647381555ef7d0cd32eb284e35b867c012ce6ce7d52a64672ed71383099c99d32765b3d260626527bb0e3470b0f58e45
- languageName: node
- linkType: hard
-
"@babel/helper-annotate-as-pure@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-annotate-as-pure@npm:7.25.9"
@@ -180,20 +99,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.23.6":
- version: 7.23.6
- resolution: "@babel/helper-compilation-targets@npm:7.23.6"
- dependencies:
- "@babel/compat-data": ^7.23.5
- "@babel/helper-validator-option": ^7.23.5
- browserslist: ^4.22.2
- lru-cache: ^5.1.1
- semver: ^6.3.1
- checksum: ba38506d11185f48b79abf439462ece271d3eead1673dd8814519c8c903c708523428806f05f2ec5efd0c56e4e278698fac967e5a4b5ee842c32415da54bc6fa
- languageName: node
- linkType: hard
-
-"@babel/helper-compilation-targets@npm:^7.25.9":
+"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-compilation-targets@npm:7.25.9"
dependencies:
@@ -206,26 +112,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.24.1":
- version: 7.24.1
- resolution: "@babel/helper-create-class-features-plugin@npm:7.24.1"
- dependencies:
- "@babel/helper-annotate-as-pure": ^7.22.5
- "@babel/helper-environment-visitor": ^7.22.20
- "@babel/helper-function-name": ^7.23.0
- "@babel/helper-member-expression-to-functions": ^7.23.0
- "@babel/helper-optimise-call-expression": ^7.22.5
- "@babel/helper-replace-supers": ^7.24.1
- "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5
- "@babel/helper-split-export-declaration": ^7.22.6
- semver: ^6.3.1
- peerDependencies:
- "@babel/core": ^7.0.0
- checksum: 45372890634c37deefc81f44b7d958fe210f7da7d8a2239c9849c6041a56536f74bf3aa2d115bc06d5680d0dc49c1303f74a045d76ae0dd1592c7d5c0c268ebc
- languageName: node
- linkType: hard
-
-"@babel/helper-create-class-features-plugin@npm:^7.25.9":
+"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-create-class-features-plugin@npm:7.25.9"
dependencies:
@@ -242,20 +129,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.15, @babel/helper-create-regexp-features-plugin@npm:^7.22.5":
- version: 7.22.15
- resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.15"
- dependencies:
- "@babel/helper-annotate-as-pure": ^7.22.5
- regexpu-core: ^5.3.1
- semver: ^6.3.1
- peerDependencies:
- "@babel/core": ^7.0.0
- checksum: 8eba4c1b7b94a83e7a82df5c3e504584ff0ba6ab8710a67ecc2c434a7fb841a29c2f5c94d2de51f25446119a1df538fa90b37bd570db22ddd5e7147fe98277c6
- languageName: node
- linkType: hard
-
-"@babel/helper-create-regexp-features-plugin@npm:^7.25.9":
+"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.25.9"
dependencies:
@@ -268,39 +142,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-define-polyfill-provider@npm:^0.2.2":
- version: 0.2.3
- resolution: "@babel/helper-define-polyfill-provider@npm:0.2.3"
- dependencies:
- "@babel/helper-compilation-targets": ^7.13.0
- "@babel/helper-module-imports": ^7.12.13
- "@babel/helper-plugin-utils": ^7.13.0
- "@babel/traverse": ^7.13.0
- debug: ^4.1.1
- lodash.debounce: ^4.0.8
- resolve: ^1.14.2
- semver: ^6.1.2
- peerDependencies:
- "@babel/core": ^7.4.0-0
- checksum: 4070639e48e397d05efbb147c305b0a7a7bfb8004b65b2a18d33b55b4d3366f7494e398af9fd026687fefc78d39d34cd7ba3ddcb24b6acf5e11dfeea14998e9a
- languageName: node
- linkType: hard
-
-"@babel/helper-define-polyfill-provider@npm:^0.6.1":
- version: 0.6.1
- resolution: "@babel/helper-define-polyfill-provider@npm:0.6.1"
- dependencies:
- "@babel/helper-compilation-targets": ^7.22.6
- "@babel/helper-plugin-utils": ^7.22.5
- debug: ^4.1.1
- lodash.debounce: ^4.0.8
- resolve: ^1.14.2
- peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: 210e1c8ac118f7c5a0ef5b42c4267c3db2f59b1ebc666a275d442b86896de4a66ef93539d702870f172f9749cd44c89f53056a5b17e619c3142b12ed4e4e6aae
- languageName: node
- linkType: hard
-
"@babel/helper-define-polyfill-provider@npm:^0.6.2":
version: 0.6.2
resolution: "@babel/helper-define-polyfill-provider@npm:0.6.2"
@@ -316,38 +157,31 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-environment-visitor@npm:^7.18.9, @babel/helper-environment-visitor@npm:^7.22.20":
- version: 7.22.20
- resolution: "@babel/helper-environment-visitor@npm:7.22.20"
- checksum: e762c2d8f5d423af89bd7ae9abe35bd4836d2eb401af868a63bbb63220c513c783e25ef001019418560b3fdc6d9a6fb67e6c0b650bcdeb3a2ac44b5c3d2bdd94
- languageName: node
- linkType: hard
-
-"@babel/helper-function-name@npm:^7.22.5, @babel/helper-function-name@npm:^7.23.0":
- version: 7.23.0
- resolution: "@babel/helper-function-name@npm:7.23.0"
+"@babel/helper-environment-visitor@npm:^7.22.20":
+ version: 7.24.7
+ resolution: "@babel/helper-environment-visitor@npm:7.24.7"
dependencies:
- "@babel/template": ^7.22.15
- "@babel/types": ^7.23.0
- checksum: d771dd1f3222b120518176733c52b7cadac1c256ff49b1889dbbe5e3fed81db855b8cc4e40d949c9d3eae0e795e8229c1c8c24c0e83f27cfa6ee3766696c6428
+ "@babel/types": ^7.24.7
+ checksum: 36ece78882b5960e2d26abf13cf15ff5689bf7c325b10a2895a74a499e712de0d305f8d78bb382dd3c05cfba7e47ec98fe28aab5674243e0625cd38438dd0b2d
languageName: node
linkType: hard
-"@babel/helper-hoist-variables@npm:^7.22.5":
- version: 7.22.5
- resolution: "@babel/helper-hoist-variables@npm:7.22.5"
+"@babel/helper-function-name@npm:^7.23.0":
+ version: 7.24.7
+ resolution: "@babel/helper-function-name@npm:7.24.7"
dependencies:
- "@babel/types": ^7.22.5
- checksum: 60a3077f756a1cd9f14eb89f0037f487d81ede2b7cfe652ea6869cd4ec4c782b0fb1de01b8494b9a2d2050e3d154d7d5ad3be24806790acfb8cbe2073bf1e208
+ "@babel/template": ^7.24.7
+ "@babel/types": ^7.24.7
+ checksum: e5e41e6cf86bd0f8bf272cbb6e7c5ee0f3e9660414174435a46653efba4f2479ce03ce04abff2aa2ef9359cf057c79c06cb7b134a565ad9c0e8a50dcdc3b43c4
languageName: node
linkType: hard
-"@babel/helper-member-expression-to-functions@npm:^7.23.0":
- version: 7.23.0
- resolution: "@babel/helper-member-expression-to-functions@npm:7.23.0"
+"@babel/helper-hoist-variables@npm:^7.22.5":
+ version: 7.24.7
+ resolution: "@babel/helper-hoist-variables@npm:7.24.7"
dependencies:
- "@babel/types": ^7.23.0
- checksum: b810daddf093ffd0802f1429052349ed9ea08ef7d0c56da34ffbcdecbdafac86f95bdea2fe30e0e0e629febc7dd41b56cb5eacc10d1a44336d37b755dac31fa4
+ "@babel/types": ^7.24.7
+ checksum: 19ee37563bbd1219f9d98991ad0e9abef77803ee5945fd85aa7aa62a67c69efca9a801696a1b58dda27f211e878b3327789e6fd2a6f6c725ccefe36774b5ce95
languageName: node
linkType: hard
@@ -361,15 +195,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.14.5, @babel/helper-module-imports@npm:^7.22.15":
- version: 7.24.3
- resolution: "@babel/helper-module-imports@npm:7.24.3"
- dependencies:
- "@babel/types": ^7.24.0
- checksum: 052c188adcd100f5e8b6ff0c9643ddaabc58b6700d3bbbc26804141ad68375a9f97d9d173658d373d31853019e65f62610239e3295cdd58e573bdcb2fded188d
- languageName: node
- linkType: hard
-
"@babel/helper-module-imports@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-module-imports@npm:7.25.9"
@@ -380,21 +205,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-module-transforms@npm:^7.23.3":
- version: 7.23.3
- resolution: "@babel/helper-module-transforms@npm:7.23.3"
- dependencies:
- "@babel/helper-environment-visitor": ^7.22.20
- "@babel/helper-module-imports": ^7.22.15
- "@babel/helper-simple-access": ^7.22.5
- "@babel/helper-split-export-declaration": ^7.22.6
- "@babel/helper-validator-identifier": ^7.22.20
- peerDependencies:
- "@babel/core": ^7.0.0
- checksum: 211e1399d0c4993671e8e5c2b25383f08bee40004ace5404ed4065f0e9258cc85d99c1b82fd456c030ce5cfd4d8f310355b54ef35de9924eabfc3dff1331d946
- languageName: node
- linkType: hard
-
"@babel/helper-module-transforms@npm:^7.25.9, @babel/helper-module-transforms@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/helper-module-transforms@npm:7.26.0"
@@ -408,15 +218,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-optimise-call-expression@npm:^7.22.5":
- version: 7.22.5
- resolution: "@babel/helper-optimise-call-expression@npm:7.22.5"
- dependencies:
- "@babel/types": ^7.22.5
- checksum: 31b41a764fc3c585196cf5b776b70cf4705c132e4ce9723f39871f215f2ddbfb2e28a62f9917610f67c8216c1080482b9b05f65dd195dae2a52cef461f2ac7b8
- languageName: node
- linkType: hard
-
"@babel/helper-optimise-call-expression@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-optimise-call-expression@npm:7.25.9"
@@ -426,33 +227,13 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.13.0, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.24.0, @babel/helper-plugin-utils@npm:^7.8.0":
- version: 7.24.0
- resolution: "@babel/helper-plugin-utils@npm:7.24.0"
- checksum: 90f41bd1b4dfe7226b1d33a4bb745844c5c63e400f9e4e8bf9103a7ceddd7d425d65333b564d9daba3cebd105985764d51b4bd4c95822b97c2e3ac1201a8a5da
- languageName: node
- linkType: hard
-
-"@babel/helper-plugin-utils@npm:^7.25.9":
+"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.25.9, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.25.9
resolution: "@babel/helper-plugin-utils@npm:7.25.9"
checksum: 483066a1ba36ff16c0116cd24f93de05de746a603a777cd695ac7a1b034928a65a4ecb35f255761ca56626435d7abdb73219eba196f9aa83b6c3c3169325599d
languageName: node
linkType: hard
-"@babel/helper-remap-async-to-generator@npm:^7.18.9":
- version: 7.22.20
- resolution: "@babel/helper-remap-async-to-generator@npm:7.22.20"
- dependencies:
- "@babel/helper-annotate-as-pure": ^7.22.5
- "@babel/helper-environment-visitor": ^7.22.20
- "@babel/helper-wrap-function": ^7.22.20
- peerDependencies:
- "@babel/core": ^7.0.0
- checksum: aa93aa74250b636d477e8d863fbe59d4071f8c2654841b7ac608909e480c1cf3ff7d7af5a4038568829ad09d810bb681668cbe497d9c89ba5c352793dc9edf1e
- languageName: node
- linkType: hard
-
"@babel/helper-remap-async-to-generator@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-remap-async-to-generator@npm:7.25.9"
@@ -466,19 +247,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-replace-supers@npm:^7.24.1":
- version: 7.24.1
- resolution: "@babel/helper-replace-supers@npm:7.24.1"
- dependencies:
- "@babel/helper-environment-visitor": ^7.22.20
- "@babel/helper-member-expression-to-functions": ^7.23.0
- "@babel/helper-optimise-call-expression": ^7.22.5
- peerDependencies:
- "@babel/core": ^7.0.0
- checksum: d39a3df7892b7c3c0e307fb229646168a9bd35e26a72080c2530729322600e8cff5f738f44a14860a2358faffa741b6a6a0d6749f113387b03ddbfa0ec10e1a0
- languageName: node
- linkType: hard
-
"@babel/helper-replace-supers@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-replace-supers@npm:7.25.9"
@@ -492,15 +260,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-simple-access@npm:^7.22.5":
- version: 7.22.5
- resolution: "@babel/helper-simple-access@npm:7.22.5"
- dependencies:
- "@babel/types": ^7.22.5
- checksum: f0cf81a30ba3d09a625fd50e5a9069e575c5b6719234e04ee74247057f8104beca89ed03e9217b6e9b0493434cedc18c5ecca4cea6244990836f1f893e140369
- languageName: node
- linkType: hard
-
"@babel/helper-simple-access@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-simple-access@npm:7.25.9"
@@ -511,16 +270,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0, @babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5":
- version: 7.22.5
- resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5"
- dependencies:
- "@babel/types": ^7.22.5
- checksum: ab7fa2aa709ab49bb8cd86515a1e715a3108c4bb9a616965ba76b43dc346dee66d1004ccf4d222b596b6224e43e04cbc5c3a34459501b388451f8c589fbc3691
- languageName: node
- linkType: hard
-
-"@babel/helper-skip-transparent-expression-wrappers@npm:^7.25.9":
+"@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0, @babel/helper-skip-transparent-expression-wrappers@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.25.9"
dependencies:
@@ -531,18 +281,11 @@ __metadata:
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.22.6":
- version: 7.22.6
- resolution: "@babel/helper-split-export-declaration@npm:7.22.6"
+ version: 7.24.7
+ resolution: "@babel/helper-split-export-declaration@npm:7.24.7"
dependencies:
- "@babel/types": ^7.22.5
- checksum: d83e4b623eaa9622c267d3c83583b72f3aac567dc393dda18e559d79187961cb29ae9c57b2664137fc3d19508370b12ec6a81d28af73a50e0846819cb21c6e44
- languageName: node
- linkType: hard
-
-"@babel/helper-string-parser@npm:^7.23.4":
- version: 7.24.1
- resolution: "@babel/helper-string-parser@npm:7.24.1"
- checksum: 2f9bfcf8d2f9f083785df0501dbab92770111ece2f90d120352fda6dd2a7d47db11b807d111e6f32aa1ba6d763fe2dc6603d153068d672a5d0ad33ca802632b2
+ "@babel/types": ^7.24.7
+ checksum: 0254577d7086bf09b01bbde98f731d4fcf4b7c3fa9634fdb87929801307c1f6202a1352e3faa5492450fa8da4420542d44de604daf540704ff349594a78184f6
languageName: node
linkType: hard
@@ -553,27 +296,13 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-validator-identifier@npm:^7.16.7, @babel/helper-validator-identifier@npm:^7.22.20":
- version: 7.22.20
- resolution: "@babel/helper-validator-identifier@npm:7.22.20"
- checksum: dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
- languageName: node
- linkType: hard
-
-"@babel/helper-validator-identifier@npm:^7.25.9":
+"@babel/helper-validator-identifier@npm:^7.16.7, @babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d
languageName: node
linkType: hard
-"@babel/helper-validator-option@npm:^7.18.6, @babel/helper-validator-option@npm:^7.23.5":
- version: 7.23.5
- resolution: "@babel/helper-validator-option@npm:7.23.5"
- checksum: af45d5c0defb292ba6fd38979e8f13d7da63f9623d8ab9ededc394f67eb45857d2601278d151ae9affb6e03d5d608485806cd45af08b4468a0515cf506510e94
- languageName: node
- linkType: hard
-
"@babel/helper-validator-option@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-option@npm:7.25.9"
@@ -581,17 +310,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-wrap-function@npm:^7.22.20":
- version: 7.22.20
- resolution: "@babel/helper-wrap-function@npm:7.22.20"
- dependencies:
- "@babel/helper-function-name": ^7.22.5
- "@babel/template": ^7.22.15
- "@babel/types": ^7.22.19
- checksum: 97b5f42ff4d305318ff2f99a5f59d3e97feff478333b2d893c4f85456d3c66372070f71d7bf9141f598c8cf2741c49a15918193633c427a88d170d98eb8c46eb
- languageName: node
- linkType: hard
-
"@babel/helper-wrap-function@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-wrap-function@npm:7.25.9"
@@ -603,17 +321,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helpers@npm:^7.24.1":
- version: 7.24.1
- resolution: "@babel/helpers@npm:7.24.1"
- dependencies:
- "@babel/template": ^7.24.0
- "@babel/traverse": ^7.24.1
- "@babel/types": ^7.24.0
- checksum: b3445860ae749fc664682b291f092285e949114e8336784ae29f88eb4c176279b01cc6740005a017a0389ae4b4e928d5bbbc01de7da7e400c972e3d6f792063a
- languageName: node
- linkType: hard
-
"@babel/helpers@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/helpers@npm:7.26.0"
@@ -624,28 +331,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/highlight@npm:^7.24.2":
- version: 7.24.2
- resolution: "@babel/highlight@npm:7.24.2"
- dependencies:
- "@babel/helper-validator-identifier": ^7.22.20
- chalk: ^2.4.2
- js-tokens: ^4.0.0
- picocolors: ^1.0.0
- checksum: 98ce00321daedeed33a4ed9362dc089a70375ff1b3b91228b9f05e6591d387a81a8cba68886e207861b8871efa0bc997ceabdd9c90f6cce3ee1b2f7f941b42db
- languageName: node
- linkType: hard
-
-"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.5, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.0, @babel/parser@npm:^7.24.1":
- version: 7.24.1
- resolution: "@babel/parser@npm:7.24.1"
- bin:
- parser: ./bin/babel-parser.js
- checksum: d2a8b99aa5f33182b69d5569367403a40e7c027ae3b03a1f81fd8ac9b06ceb85b31f6ee4267fb90726dc2ac99909c6bdaa9cf16c379efab73d8dfe85cee32c50
- languageName: node
- linkType: hard
-
-"@babel/parser@npm:^7.14.0, @babel/parser@npm:^7.26.2":
+"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.13.16, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.5, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/parser@npm:7.26.2"
dependencies:
@@ -656,17 +342,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0":
- version: 7.26.1
- resolution: "@babel/parser@npm:7.26.1"
- dependencies:
- "@babel/types": ^7.26.0
- bin:
- parser: ./bin/babel-parser.js
- checksum: dc7d4e6b7eb667fa0784e7e2c3f6f92ca12ad72242f6d4311995310dae55093f02acdb595b69b0dbbf04cb61ad87156ac03186ff32eacfa35149c655bc22c14b
- languageName: node
- linkType: hard
-
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.25.9"
@@ -726,21 +401,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-proposal-async-generator-functions@npm:^7.0.0":
- version: 7.20.7
- resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.20.7"
- dependencies:
- "@babel/helper-environment-visitor": ^7.18.9
- "@babel/helper-plugin-utils": ^7.20.2
- "@babel/helper-remap-async-to-generator": ^7.18.9
- "@babel/plugin-syntax-async-generators": ^7.8.4
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 0f4bc01805704ae4840536acc9888c50a32250e9188d025063bd17fe77ed171a12361c3dc83ce99664dcd73aec612accb8da95b0d8b825c854931b2860c0bfb5
- 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.13.0":
version: 7.18.6
resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6"
dependencies:
@@ -752,19 +413,18 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-proposal-export-default-from@npm:^7.0.0":
- version: 7.14.5
- resolution: "@babel/plugin-proposal-export-default-from@npm:7.14.5"
+"@babel/plugin-proposal-export-default-from@npm:^7.24.7":
+ version: 7.25.9
+ resolution: "@babel/plugin-proposal-export-default-from@npm:7.25.9"
dependencies:
- "@babel/helper-plugin-utils": ^7.14.5
- "@babel/plugin-syntax-export-default-from": ^7.14.5
+ "@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: b09bf59b90893aa718218c94eca4fb5a49f870bbbee511fcbc3b2ce9484d6aed4570fef0334856c89ff799c1463056b8031e19c6676740fb62557cddf3494b36
+ checksum: 6d7ca2d8179d97c38cbcc327129c70103b95797a048c6d244fa8f3eb35b8aebc8122957dc25f20d9923fe6e75f16e2a4d649f1d80a63a9fed2d8b9eda85bd650
languageName: node
linkType: hard
-"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.0.0, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.13.8":
+"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.13.8":
version: 7.18.6
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.18.6"
dependencies:
@@ -776,34 +436,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-proposal-object-rest-spread@npm:^7.0.0":
- version: 7.20.7
- resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.20.7"
- dependencies:
- "@babel/compat-data": ^7.20.5
- "@babel/helper-compilation-targets": ^7.20.7
- "@babel/helper-plugin-utils": ^7.20.2
- "@babel/plugin-syntax-object-rest-spread": ^7.8.3
- "@babel/plugin-transform-parameters": ^7.20.7
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: b9818749bb49d8095df64c45db682448d04743d96722984cbfd375733b2585c26d807f84b4fdb28474f2d614be6a6ffe3d96ffb121840e9e5345b2ccc0438bd8
- languageName: node
- linkType: hard
-
-"@babel/plugin-proposal-optional-catch-binding@npm:^7.0.0":
- version: 7.14.5
- resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.14.5"
- dependencies:
- "@babel/helper-plugin-utils": ^7.14.5
- "@babel/plugin-syntax-optional-catch-binding": ^7.8.3
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 4eb3f503525eb9bfb96fd8598de2f7b64caa5cc0fc109f385f9bd27306c6ddaaa7a9f4b6d3057e4050f9b0d43fd8dc123f531954d42ef8a5537e848567ab7f1c
- languageName: node
- linkType: hard
-
-"@babel/plugin-proposal-optional-chaining@npm:^7.0.0, @babel/plugin-proposal-optional-chaining@npm:^7.13.12":
+"@babel/plugin-proposal-optional-chaining@npm:^7.13.12":
version: 7.21.0
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.21.0"
dependencies:
@@ -859,7 +492,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-class-properties@npm:^7.0.0, @babel/plugin-syntax-class-properties@npm:^7.8.3":
+"@babel/plugin-syntax-class-properties@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
@@ -870,7 +503,18 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-dynamic-import@npm:^7.0.0":
+"@babel/plugin-syntax-class-static-block@npm:^7.14.5":
+ version: 7.14.5
+ resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.14.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 4464bf9115f4a2d02ce1454411baf9cfb665af1da53709c5c56953e5e2913745b0fcce82982a00463d6facbdd93445c691024e310b91431a1e2f024b158f6371
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-syntax-dynamic-import@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3"
dependencies:
@@ -881,18 +525,18 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-export-default-from@npm:^7.0.0, @babel/plugin-syntax-export-default-from@npm:^7.14.5":
- version: 7.14.5
- resolution: "@babel/plugin-syntax-export-default-from@npm:7.14.5"
+"@babel/plugin-syntax-export-default-from@npm:^7.24.7":
+ version: 7.25.9
+ resolution: "@babel/plugin-syntax-export-default-from@npm:7.25.9"
dependencies:
- "@babel/helper-plugin-utils": ^7.14.5
+ "@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: baa00b2e4d270749e604eb7c8750abc54195dc0582bca358d9c1e42563c2032e4aa71571f35c9e932570bac1658edd76b27b387d13ee9dc839b72f8a53d1168e
+ checksum: 10267af3a2bed893acb17b1e1e5e6a3aafcdcb202d54ac295bfa95ac11c66336a9c36cc73b4adc2b10a41a8ecc0c3390808ab16a99c24a76f8c74313ba32be63
languageName: node
linkType: hard
-"@babel/plugin-syntax-flow@npm:^7.0.0, @babel/plugin-syntax-flow@npm:^7.2.0, @babel/plugin-syntax-flow@npm:^7.25.9":
+"@babel/plugin-syntax-flow@npm:^7.12.1, @babel/plugin-syntax-flow@npm:^7.25.9":
version: 7.26.0
resolution: "@babel/plugin-syntax-flow@npm:7.26.0"
dependencies:
@@ -903,17 +547,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-flow@npm:^7.24.1":
- version: 7.24.1
- resolution: "@babel/plugin-syntax-flow@npm:7.24.1"
- dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 618de04360a96111408abdaafaba2efbaef0d90faad029d50e0281eaad5d7c7bd2ce4420bbac0ee27ad84c2b7bbc3e48f782064f81ed5bc40c398637991004c7
- languageName: node
- linkType: hard
-
"@babel/plugin-syntax-import-assertions@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/plugin-syntax-import-assertions@npm:7.26.0"
@@ -925,7 +558,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-import-attributes@npm:^7.26.0":
+"@babel/plugin-syntax-import-attributes@npm:^7.24.7, @babel/plugin-syntax-import-attributes@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/plugin-syntax-import-attributes@npm:7.26.0"
dependencies:
@@ -936,7 +569,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-import-meta@npm:^7.8.3":
+"@babel/plugin-syntax-import-meta@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
@@ -958,7 +591,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.25.9":
+"@babel/plugin-syntax-jsx@npm:^7.25.9, @babel/plugin-syntax-jsx@npm:^7.7.2":
version: 7.25.9
resolution: "@babel/plugin-syntax-jsx@npm:7.25.9"
dependencies:
@@ -969,18 +602,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-jsx@npm:^7.14.5, @babel/plugin-syntax-jsx@npm:^7.24.1, @babel/plugin-syntax-jsx@npm:^7.7.2":
- version: 7.24.1
- resolution: "@babel/plugin-syntax-jsx@npm:7.24.1"
- dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 6cec76fbfe6ca81c9345c2904d8d9a8a0df222f9269f0962ed6eb2eb8f3f10c2f15e993d1ef09dbaf97726bf1792b5851cf5bd9a769f966a19448df6be95d19a
- languageName: node
- linkType: hard
-
-"@babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
+"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
@@ -991,7 +613,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.0.0, @babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
+"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
@@ -1002,7 +624,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-numeric-separator@npm:^7.8.3":
+"@babel/plugin-syntax-numeric-separator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
@@ -1013,7 +635,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:
@@ -1035,7 +657,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-optional-chaining@npm:^7.0.0, @babel/plugin-syntax-optional-chaining@npm:^7.8.3":
+"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
@@ -1046,29 +668,29 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-syntax-top-level-await@npm:^7.8.3":
+"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5":
version: 7.14.5
- resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
+ resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 14bf6e65d5bc1231ffa9def5f0ef30b19b51c218fcecaa78cd1bdf7939dfdf23f90336080b7f5196916368e399934ce5d581492d8292b46a2fb569d8b2da106f
+ checksum: 69822772561706c87f0a65bc92d0772cea74d6bc0911537904a676d5ff496a6d3ac4e05a166d8125fce4a16605bace141afc3611074e170a994e66e5397787f3
languageName: node
linkType: hard
-"@babel/plugin-syntax-typescript@npm:^7.24.1, @babel/plugin-syntax-typescript@npm:^7.7.2":
- version: 7.24.1
- resolution: "@babel/plugin-syntax-typescript@npm:7.24.1"
+"@babel/plugin-syntax-top-level-await@npm:^7.14.5":
+ version: 7.14.5
+ resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
+ "@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 7a81e277dcfe3138847e8e5944e02a42ff3c2e864aea6f33fd9b70d1556d12b0e70f0d56cc1985d353c91bcbf8fe163e6cc17418da21129b7f7f1d8b9ac00c93
+ checksum: 14bf6e65d5bc1231ffa9def5f0ef30b19b51c218fcecaa78cd1bdf7939dfdf23f90336080b7f5196916368e399934ce5d581492d8292b46a2fb569d8b2da106f
languageName: node
linkType: hard
-"@babel/plugin-syntax-typescript@npm:^7.25.9":
+"@babel/plugin-syntax-typescript@npm:^7.25.9, @babel/plugin-syntax-typescript@npm:^7.7.2":
version: 7.25.9
resolution: "@babel/plugin-syntax-typescript@npm:7.25.9"
dependencies:
@@ -1091,18 +713,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-arrow-functions@npm:^7.0.0":
- version: 7.24.1
- resolution: "@babel/plugin-transform-arrow-functions@npm:7.24.1"
- dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: f44bfacf087dc21b422bab99f4e9344ee7b695b05c947dacae66de05c723ab9d91800be7edc1fa016185e8c819f3aca2b4a5f66d8a4d1e47d9bad80b8fa55b8e
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-arrow-functions@npm:^7.25.9":
+"@babel/plugin-transform-arrow-functions@npm:^7.0.0-0, @babel/plugin-transform-arrow-functions@npm:^7.24.7, @babel/plugin-transform-arrow-functions@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-arrow-functions@npm:7.25.9"
dependencies:
@@ -1113,7 +724,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-async-generator-functions@npm:^7.25.9":
+"@babel/plugin-transform-async-generator-functions@npm:^7.25.4, @babel/plugin-transform-async-generator-functions@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-async-generator-functions@npm:7.25.9"
dependencies:
@@ -1126,7 +737,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-async-to-generator@npm:^7.0.0, @babel/plugin-transform-async-to-generator@npm:^7.25.9":
+"@babel/plugin-transform-async-to-generator@npm:^7.24.7, @babel/plugin-transform-async-to-generator@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-async-to-generator@npm:7.25.9"
dependencies:
@@ -1139,7 +750,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-block-scoped-functions@npm:^7.0.0, @babel/plugin-transform-block-scoped-functions@npm:^7.25.9":
+"@babel/plugin-transform-block-scoped-functions@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.25.9"
dependencies:
@@ -1150,18 +761,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-block-scoping@npm:^7.0.0":
- version: 7.24.1
- resolution: "@babel/plugin-transform-block-scoping@npm:7.24.1"
- dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 1a230ad95d9672626831e22df9b4838901681fa11d44c3811d71ca64ea53f5e87de2abef865f70fe62657053278d9034cc4ea3bab0fd3300bdf9e73b3f85f97a
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-block-scoping@npm:^7.25.9":
+"@babel/plugin-transform-block-scoping@npm:^7.25.0, @babel/plugin-transform-block-scoping@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-block-scoping@npm:7.25.9"
dependencies:
@@ -1172,7 +772,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-class-properties@npm:^7.25.9":
+"@babel/plugin-transform-class-properties@npm:^7.0.0-0, @babel/plugin-transform-class-properties@npm:^7.25.4, @babel/plugin-transform-class-properties@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-class-properties@npm:7.25.9"
dependencies:
@@ -1196,25 +796,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-classes@npm:^7.0.0":
- version: 7.24.1
- resolution: "@babel/plugin-transform-classes@npm:7.24.1"
- dependencies:
- "@babel/helper-annotate-as-pure": ^7.22.5
- "@babel/helper-compilation-targets": ^7.23.6
- "@babel/helper-environment-visitor": ^7.22.20
- "@babel/helper-function-name": ^7.23.0
- "@babel/helper-plugin-utils": ^7.24.0
- "@babel/helper-replace-supers": ^7.24.1
- "@babel/helper-split-export-declaration": ^7.22.6
- globals: ^11.1.0
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 586a95826be4d68056fa23d8e6c34353ce2ea59bf3ca8cf62bc784e60964d492d76e1b48760c43fd486ffb65a79d3fed9a4f91289e4f526f88c3b6acc0dfb00e
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-classes@npm:^7.25.9":
+"@babel/plugin-transform-classes@npm:^7.0.0-0, @babel/plugin-transform-classes@npm:^7.25.4, @babel/plugin-transform-classes@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-classes@npm:7.25.9"
dependencies:
@@ -1230,19 +812,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-computed-properties@npm:^7.0.0":
- version: 7.24.1
- resolution: "@babel/plugin-transform-computed-properties@npm:7.24.1"
- dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
- "@babel/template": ^7.24.0
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 8292c508b656b7722e2c2ca0f6f31339852e3ed2b9b80f6e068a4010e961b431ca109ecd467fc906283f4b1574c1e7b1cb68d35a4dea12079d386c15ff7e0eac
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-computed-properties@npm:^7.25.9":
+"@babel/plugin-transform-computed-properties@npm:^7.24.7, @babel/plugin-transform-computed-properties@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-computed-properties@npm:7.25.9"
dependencies:
@@ -1254,7 +824,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-destructuring@npm:^7.0.0, @babel/plugin-transform-destructuring@npm:^7.25.9":
+"@babel/plugin-transform-destructuring@npm:^7.24.8, @babel/plugin-transform-destructuring@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-destructuring@npm:7.25.9"
dependencies:
@@ -1311,7 +881,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-exponentiation-operator@npm:^7.0.0, @babel/plugin-transform-exponentiation-operator@npm:^7.25.9":
+"@babel/plugin-transform-exponentiation-operator@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.25.9"
dependencies:
@@ -1334,7 +904,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-flow-strip-types@npm:^7.0.0":
+"@babel/plugin-transform-flow-strip-types@npm:^7.25.2, @babel/plugin-transform-flow-strip-types@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-flow-strip-types@npm:7.25.9"
dependencies:
@@ -1346,19 +916,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-flow-strip-types@npm:^7.18.6":
- version: 7.24.1
- resolution: "@babel/plugin-transform-flow-strip-types@npm:7.24.1"
- dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
- "@babel/plugin-syntax-flow": ^7.24.1
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: e6aa9cbad0441867598d390d4df65bc8c6b797574673e4eedbdae0cc528e81e00f4b2cd38f7d138b0f04bcdd2540384a9812d5d76af5abfa06aee1c7fc20ca58
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-for-of@npm:^7.0.0, @babel/plugin-transform-for-of@npm:^7.25.9":
+"@babel/plugin-transform-for-of@npm:^7.24.7, @babel/plugin-transform-for-of@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-for-of@npm:7.25.9"
dependencies:
@@ -1370,20 +928,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-function-name@npm:^7.0.0":
- version: 7.24.1
- resolution: "@babel/plugin-transform-function-name@npm:7.24.1"
- dependencies:
- "@babel/helper-compilation-targets": ^7.23.6
- "@babel/helper-function-name": ^7.23.0
- "@babel/helper-plugin-utils": ^7.24.0
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 65c1735ec3b5e43db9b5aebf3c16171c04b3050c92396b9e22dda0d2aaf51f43fdcf147f70a40678fd9a4ee2272a5acec4826e9c21bcf968762f4c184897ad75
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-function-name@npm:^7.25.9":
+"@babel/plugin-transform-function-name@npm:^7.25.1, @babel/plugin-transform-function-name@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-function-name@npm:7.25.9"
dependencies:
@@ -1407,18 +952,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-literals@npm:^7.0.0":
- version: 7.24.1
- resolution: "@babel/plugin-transform-literals@npm:7.24.1"
- dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: a27cc7d565ee57b5a2bf136fa889c5c2f5988545ae7b3b2c83a7afe5dd37dfac80dca88b1c633c65851ce6af7d2095c04c01228657ce0198f918e64b5ccd01fa
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-literals@npm:^7.25.9":
+"@babel/plugin-transform-literals@npm:^7.25.2, @babel/plugin-transform-literals@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-literals@npm:7.25.9"
dependencies:
@@ -1429,7 +963,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-logical-assignment-operators@npm:^7.25.9":
+"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.7, @babel/plugin-transform-logical-assignment-operators@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.25.9"
dependencies:
@@ -1440,7 +974,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-member-expression-literals@npm:^7.0.0, @babel/plugin-transform-member-expression-literals@npm:^7.25.9":
+"@babel/plugin-transform-member-expression-literals@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.25.9"
dependencies:
@@ -1463,20 +997,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-modules-commonjs@npm:^7.0.0, @babel/plugin-transform-modules-commonjs@npm:^7.13.8, @babel/plugin-transform-modules-commonjs@npm:^7.24.1":
- version: 7.24.1
- resolution: "@babel/plugin-transform-modules-commonjs@npm:7.24.1"
- dependencies:
- "@babel/helper-module-transforms": ^7.23.3
- "@babel/helper-plugin-utils": ^7.24.0
- "@babel/helper-simple-access": ^7.22.5
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: efb3ea2047604a7eb44a9289311ebb29842fe6510ff8b66a77a60440448c65e1312a60dc48191ed98246bdbd163b5b6f3348a0669bcc0e3809e69c7c776b20fa
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-modules-commonjs@npm:^7.25.9":
+"@babel/plugin-transform-modules-commonjs@npm:^7.13.8, @babel/plugin-transform-modules-commonjs@npm:^7.24.8, @babel/plugin-transform-modules-commonjs@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.25.9"
dependencies:
@@ -1515,19 +1036,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.0.0":
- version: 7.22.5
- resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.22.5"
- dependencies:
- "@babel/helper-create-regexp-features-plugin": ^7.22.5
- "@babel/helper-plugin-utils": ^7.22.5
- peerDependencies:
- "@babel/core": ^7.0.0
- checksum: b0b072bef303670b5a98307bc37d1ac326cb7ad40ea162b89a03c2ffc465451be7ef05be95cb81ed28bfeb29670dc98fe911f793a67bceab18b4cb4c81ef48f3
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.25.9":
+"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.24.7, @babel/plugin-transform-named-capturing-groups-regex@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.25.9"
dependencies:
@@ -1550,7 +1059,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.25.9":
+"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.0.0-0, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.7, @babel/plugin-transform-nullish-coalescing-operator@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.25.9"
dependencies:
@@ -1561,7 +1070,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-numeric-separator@npm:^7.25.9":
+"@babel/plugin-transform-numeric-separator@npm:^7.24.7, @babel/plugin-transform-numeric-separator@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-numeric-separator@npm:7.25.9"
dependencies:
@@ -1572,18 +1081,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-object-assign@npm:^7.16.7":
- version: 7.25.9
- resolution: "@babel/plugin-transform-object-assign@npm:7.25.9"
- dependencies:
- "@babel/helper-plugin-utils": ^7.25.9
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: ef1e6a0bd962cf4a63134163a80a3b9b0a07bf386b70a5a3583d23cb0c6cdca5f9838c95d3459e05ea7259e0fe80c32d870ce08e83465ef6cac8413fe7359ed3
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-object-rest-spread@npm:^7.25.9":
+"@babel/plugin-transform-object-rest-spread@npm:^7.24.7, @babel/plugin-transform-object-rest-spread@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-object-rest-spread@npm:7.25.9"
dependencies:
@@ -1596,7 +1094,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-object-super@npm:^7.0.0, @babel/plugin-transform-object-super@npm:^7.25.9":
+"@babel/plugin-transform-object-super@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-object-super@npm:7.25.9"
dependencies:
@@ -1608,7 +1106,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-optional-catch-binding@npm:^7.25.9":
+"@babel/plugin-transform-optional-catch-binding@npm:^7.24.7, @babel/plugin-transform-optional-catch-binding@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.25.9"
dependencies:
@@ -1619,7 +1117,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-optional-chaining@npm:^7.25.9":
+"@babel/plugin-transform-optional-chaining@npm:^7.0.0-0, @babel/plugin-transform-optional-chaining@npm:^7.24.8, @babel/plugin-transform-optional-chaining@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-optional-chaining@npm:7.25.9"
dependencies:
@@ -1631,18 +1129,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-parameters@npm:^7.0.0, @babel/plugin-transform-parameters@npm:^7.20.7":
- version: 7.24.1
- resolution: "@babel/plugin-transform-parameters@npm:7.24.1"
- dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: eee8d2f72d3ee0876dc8d85f949f4adf34685cfe36c814ebc20c96315f3891a53d43c764d636b939e34d55e6a6a4af9aa57ed0d7f9439eb5771a07277c669e55
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-parameters@npm:^7.25.9":
+"@babel/plugin-transform-parameters@npm:^7.24.7, @babel/plugin-transform-parameters@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-parameters@npm:7.25.9"
dependencies:
@@ -1653,7 +1140,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-private-methods@npm:^7.25.9":
+"@babel/plugin-transform-private-methods@npm:^7.24.7, @babel/plugin-transform-private-methods@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-private-methods@npm:7.25.9"
dependencies:
@@ -1665,7 +1152,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-private-property-in-object@npm:^7.25.9":
+"@babel/plugin-transform-private-property-in-object@npm:^7.24.7, @babel/plugin-transform-private-property-in-object@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-private-property-in-object@npm:7.25.9"
dependencies:
@@ -1678,7 +1165,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-property-literals@npm:^7.0.0, @babel/plugin-transform-property-literals@npm:^7.25.9":
+"@babel/plugin-transform-property-literals@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-property-literals@npm:7.25.9"
dependencies:
@@ -1689,55 +1176,55 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-react-display-name@npm:^7.0.0":
- version: 7.15.1
- resolution: "@babel/plugin-transform-react-display-name@npm:7.15.1"
+"@babel/plugin-transform-react-display-name@npm:^7.24.7":
+ version: 7.25.9
+ resolution: "@babel/plugin-transform-react-display-name@npm:7.25.9"
dependencies:
- "@babel/helper-plugin-utils": ^7.14.5
+ "@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 1fbd360db8028f7fda7a191de373bb63caec5efd30c05a89abb9de42924b6b1af2fb53a70d9da2fd23aa93a4854b79c5ae6a05de9428685230299f6acbaa4617
+ checksum: 63a0f962d64e71baf87c212755419e25c637d2d95ea6fdc067df26b91e606ae186442ae815b99a577eca9bf5404d9577ecad218a3cf42d0e9e286ca7b003a992
languageName: node
linkType: hard
-"@babel/plugin-transform-react-jsx-self@npm:^7.0.0":
- version: 7.14.9
- resolution: "@babel/plugin-transform-react-jsx-self@npm:7.14.9"
+"@babel/plugin-transform-react-jsx-self@npm:^7.24.7":
+ version: 7.25.9
+ resolution: "@babel/plugin-transform-react-jsx-self@npm:7.25.9"
dependencies:
- "@babel/helper-plugin-utils": ^7.14.5
+ "@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 7f43e497bc2de64722d7ffc5c8b02fde009d2fbf7daf328a6a12ad962268e632b8f9a3b97732fc127fd70d2ad1f702e26deb7e33d178233f4327d4bde43c72f7
+ checksum: ce0e289f6af93d7c4dc6b385512199c5bb138ae61507b4d5117ba88b6a6b5092f704f1bdf80080b7d69b1b8c36649f2a0b250e8198667d4d30c08bbb1546bd99
languageName: node
linkType: hard
-"@babel/plugin-transform-react-jsx-source@npm:^7.0.0":
- version: 7.14.5
- resolution: "@babel/plugin-transform-react-jsx-source@npm:7.14.5"
+"@babel/plugin-transform-react-jsx-source@npm:^7.24.7":
+ version: 7.25.9
+ resolution: "@babel/plugin-transform-react-jsx-source@npm:7.25.9"
dependencies:
- "@babel/helper-plugin-utils": ^7.14.5
+ "@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 23daec4b3549e6cb3538027dba071ae7ceccd1fb4ea8ad2bb5748811719c798f2f805d3a724672644712c780d5bd67a9585c25cd3019d7f5718a78b92d2f6af3
+ checksum: fc9ee08efc9be7cbd2cc6788bbf92579adf3cab37912481f1b915221be3d22b0613b5b36a721df5f4c0ab65efe8582fcf8673caab83e6e1ce4cc04ceebf57dfa
languageName: node
linkType: hard
-"@babel/plugin-transform-react-jsx@npm:^7.0.0":
- version: 7.14.9
- resolution: "@babel/plugin-transform-react-jsx@npm:7.14.9"
+"@babel/plugin-transform-react-jsx@npm:^7.25.2":
+ version: 7.25.9
+ resolution: "@babel/plugin-transform-react-jsx@npm:7.25.9"
dependencies:
- "@babel/helper-annotate-as-pure": ^7.14.5
- "@babel/helper-module-imports": ^7.14.5
- "@babel/helper-plugin-utils": ^7.14.5
- "@babel/plugin-syntax-jsx": ^7.14.5
- "@babel/types": ^7.14.9
+ "@babel/helper-annotate-as-pure": ^7.25.9
+ "@babel/helper-module-imports": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/plugin-syntax-jsx": ^7.25.9
+ "@babel/types": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: f5bf432dacab57d879a848b852269626df046b08aac2dee02f604be2bd92fdf5f62c58c57085e97df8980267ead38b21d6e090829a48779b2ecd3742eebb52c7
+ checksum: 5c9947e8ed141f7606f54da3e05eea1074950c5b8354c39df69cb7f43cb5a83c6c9d7973b24bc3d89341c8611f8ad50830a98ab10d117d850e6bdd8febdce221
languageName: node
linkType: hard
-"@babel/plugin-transform-regenerator@npm:^7.25.9":
+"@babel/plugin-transform-regenerator@npm:^7.24.7, @babel/plugin-transform-regenerator@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-regenerator@npm:7.25.9"
dependencies:
@@ -1772,34 +1259,23 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-runtime@npm:^7.0.0":
- version: 7.15.0
- resolution: "@babel/plugin-transform-runtime@npm:7.15.0"
- dependencies:
- "@babel/helper-module-imports": ^7.14.5
- "@babel/helper-plugin-utils": ^7.14.5
- babel-plugin-polyfill-corejs2: ^0.2.2
- babel-plugin-polyfill-corejs3: ^0.2.2
- babel-plugin-polyfill-regenerator: ^0.2.2
- semver: ^6.3.0
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 8afd6088a82e2d9cff2e3692b79c3dda2b0fa432a1934554d8f9805d5ab65a439bece92524631c1782d7e35a68deebe0ec23bf33c5c4f11563a4d83449efe0cb
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-shorthand-properties@npm:^7.0.0":
- version: 7.24.1
- resolution: "@babel/plugin-transform-shorthand-properties@npm:7.24.1"
+"@babel/plugin-transform-runtime@npm:^7.24.7":
+ version: 7.25.9
+ resolution: "@babel/plugin-transform-runtime@npm:7.25.9"
dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
+ "@babel/helper-module-imports": ^7.25.9
+ "@babel/helper-plugin-utils": ^7.25.9
+ babel-plugin-polyfill-corejs2: ^0.4.10
+ babel-plugin-polyfill-corejs3: ^0.10.6
+ babel-plugin-polyfill-regenerator: ^0.6.1
+ semver: ^6.3.1
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 8273347621183aada3cf1f3019d8d5f29467ba13a75b72cb405bc7f23b7e05fd85f4edb1e4d9f0103153dddb61826a42dc24d466480d707f8932c1923a4c25fa
+ checksum: 888a4998ba0a2313de347954c9a8dfeccbff0633c69d33aee385b8878eba2b429dbfb00c3cc04f6bca454b9be8afa01ebbd73defb7fbbb6e2d3086205c07758b
languageName: node
linkType: hard
-"@babel/plugin-transform-shorthand-properties@npm:^7.25.9":
+"@babel/plugin-transform-shorthand-properties@npm:^7.0.0-0, @babel/plugin-transform-shorthand-properties@npm:^7.24.7, @babel/plugin-transform-shorthand-properties@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-shorthand-properties@npm:7.25.9"
dependencies:
@@ -1810,19 +1286,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-spread@npm:^7.0.0":
- version: 7.24.1
- resolution: "@babel/plugin-transform-spread@npm:7.24.1"
- dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
- "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 50a0302e344546d57e5c9f4dea575f88e084352eeac4e9a3e238c41739eef2df1daf4a7ebbb3ccb7acd3447f6a5ce9938405f98bf5f5583deceb8257f5a673c9
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-spread@npm:^7.25.9":
+"@babel/plugin-transform-spread@npm:^7.24.7, @babel/plugin-transform-spread@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-spread@npm:7.25.9"
dependencies:
@@ -1834,18 +1298,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-sticky-regex@npm:^7.0.0":
- version: 7.24.1
- resolution: "@babel/plugin-transform-sticky-regex@npm:7.24.1"
- dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 786fe2ae11ef9046b9fa95677935abe495031eebf1274ad03f2054a20adea7b9dbd00336ac0b143f7924bc562e5e09793f6e8613607674b97e067d4838ccc4a0
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-sticky-regex@npm:^7.25.9":
+"@babel/plugin-transform-sticky-regex@npm:^7.24.7, @babel/plugin-transform-sticky-regex@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-sticky-regex@npm:7.25.9"
dependencies:
@@ -1856,7 +1309,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-template-literals@npm:^7.0.0, @babel/plugin-transform-template-literals@npm:^7.25.9":
+"@babel/plugin-transform-template-literals@npm:^7.0.0-0, @babel/plugin-transform-template-literals@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-template-literals@npm:7.25.9"
dependencies:
@@ -1878,21 +1331,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-typescript@npm:^7.24.1, @babel/plugin-transform-typescript@npm:^7.5.0":
- version: 7.24.1
- resolution: "@babel/plugin-transform-typescript@npm:7.24.1"
- dependencies:
- "@babel/helper-annotate-as-pure": ^7.22.5
- "@babel/helper-create-class-features-plugin": ^7.24.1
- "@babel/helper-plugin-utils": ^7.24.0
- "@babel/plugin-syntax-typescript": ^7.24.1
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 9abce423ed2d3cb9398b09e3ed9efea661e92bd32e919f5c7942ac4bad4c5fd23a1d575bb7444d8c92261b68fb626552e0d9eea960372b6b6f54c2c9699a2649
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-typescript@npm:^7.25.9":
+"@babel/plugin-transform-typescript@npm:^7.25.2, @babel/plugin-transform-typescript@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-typescript@npm:7.25.9"
dependencies:
@@ -1930,19 +1369,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-unicode-regex@npm:^7.0.0":
- version: 7.24.1
- resolution: "@babel/plugin-transform-unicode-regex@npm:7.24.1"
- dependencies:
- "@babel/helper-create-regexp-features-plugin": ^7.22.15
- "@babel/helper-plugin-utils": ^7.24.0
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 6046ab38e5d14ed97dbb921bd79ac1d7ad9d3286da44a48930e980b16896db2df21e093563ec3c916a630dc346639bf47c5924a33902a06fe3bbb5cdc7ef5f2f
- languageName: node
- linkType: hard
-
-"@babel/plugin-transform-unicode-regex@npm:^7.25.9":
+"@babel/plugin-transform-unicode-regex@npm:^7.0.0-0, @babel/plugin-transform-unicode-regex@npm:^7.24.7, @babel/plugin-transform-unicode-regex@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-transform-unicode-regex@npm:7.25.9"
dependencies:
@@ -1966,7 +1393,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/preset-env@npm:^7.24.3":
+"@babel/preset-env@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/preset-env@npm:7.26.0"
dependencies:
@@ -2046,15 +1473,15 @@ __metadata:
linkType: hard
"@babel/preset-flow@npm:^7.13.13":
- version: 7.18.6
- resolution: "@babel/preset-flow@npm:7.18.6"
+ version: 7.25.9
+ resolution: "@babel/preset-flow@npm:7.25.9"
dependencies:
- "@babel/helper-plugin-utils": ^7.18.6
- "@babel/helper-validator-option": ^7.18.6
- "@babel/plugin-transform-flow-strip-types": ^7.18.6
+ "@babel/helper-plugin-utils": ^7.25.9
+ "@babel/helper-validator-option": ^7.25.9
+ "@babel/plugin-transform-flow-strip-types": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 9fcc9b4a4ade598af0253e22e56a32431502fd92f208305a340a9f35e3ca43c3b472399c55d615092dbdab9d86fe2fc9b866926fdb30ffd9704b77d1b2e2c85d
+ checksum: dc640a4868c40262b66c8b29a65c04aa7288a5359e6a79518b0394fb422254ef3aec489aeb71334eddf775ce006a8e077eff608580906e37b39c87bb122c7080
languageName: node
linkType: hard
@@ -2071,22 +1498,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/preset-typescript@npm:^7.13.0, @babel/preset-typescript@npm:^7.16.7":
- version: 7.24.1
- resolution: "@babel/preset-typescript@npm:7.24.1"
- dependencies:
- "@babel/helper-plugin-utils": ^7.24.0
- "@babel/helper-validator-option": ^7.23.5
- "@babel/plugin-syntax-jsx": ^7.24.1
- "@babel/plugin-transform-modules-commonjs": ^7.24.1
- "@babel/plugin-transform-typescript": ^7.24.1
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 0033dc6fbc898ed0d8017c83a2dd5e095c82909e2f83e48cf9f305e3e9287148758c179ad90f27912cf98ca68bfec3643c57c70c0ca34d3a6c50dc8243aef406
- languageName: node
- linkType: hard
-
-"@babel/preset-typescript@npm:^7.24.1":
+"@babel/preset-typescript@npm:^7.13.0, @babel/preset-typescript@npm:^7.16.7, @babel/preset-typescript@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/preset-typescript@npm:7.26.0"
dependencies:
@@ -2102,28 +1514,21 @@ __metadata:
linkType: hard
"@babel/register@npm:^7.13.16":
- version: 7.18.9
- resolution: "@babel/register@npm:7.18.9"
+ version: 7.25.9
+ resolution: "@babel/register@npm:7.25.9"
dependencies:
clone-deep: ^4.0.1
find-cache-dir: ^2.0.0
make-dir: ^2.1.0
- pirates: ^4.0.5
+ pirates: ^4.0.6
source-map-support: ^0.5.16
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: b19c1445adf202732a2e0d554749257da22e56f0fc159709200d962413fbd4e7bd1d684222e60c08a2b8ad8fe511d8699fbc978d92816953fc9cbb6cbcc40d63
+ checksum: f988437c94e0fe449308eecad00c04108c5f1a2b4c4b428635e3f402d9a38655e1884d594c80160e977a0e91455b9443de59829cc45f4d4f91e16b042e4c96d1
languageName: node
linkType: hard
-"@babel/regjsgen@npm:^0.8.0":
- version: 0.8.0
- resolution: "@babel/regjsgen@npm:0.8.0"
- checksum: 4f3ddd8c7c96d447e05c8304c1d5ba3a83fcabd8a716bc1091c2f31595cdd43a3a055fff7cb5d3042b8cb7d402d78820fcb4e05d896c605a7d8bcf30f2424c4a
- languageName: node
- linkType: hard
-
-"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.24.1":
+"@babel/runtime@npm:^7.25.0, @babel/runtime@npm:^7.26.0, @babel/runtime@npm:^7.8.4":
version: 7.26.0
resolution: "@babel/runtime@npm:7.26.0"
dependencies:
@@ -2132,34 +1537,29 @@ __metadata:
languageName: node
linkType: hard
-"@babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.8.4":
- version: 7.24.1
- resolution: "@babel/runtime@npm:7.24.1"
- dependencies:
- regenerator-runtime: ^0.14.0
- checksum: 500c6a99ddd84f37c7bc5dbc84777af47b1372b20e879941670451d55484faf18a673c5ebee9ca2b0f36208a729417873b35b1b92e76f811620f6adf7b8cb0f1
- languageName: node
- linkType: hard
-
-"@babel/template@npm:^7.0.0, @babel/template@npm:^7.22.15, @babel/template@npm:^7.24.0, @babel/template@npm:^7.3.3":
- version: 7.24.0
- resolution: "@babel/template@npm:7.24.0"
+"@babel/template@npm:^7.24.7, @babel/template@npm:^7.25.0, @babel/template@npm:^7.25.9, @babel/template@npm:^7.3.3":
+ version: 7.25.9
+ resolution: "@babel/template@npm:7.25.9"
dependencies:
- "@babel/code-frame": ^7.23.5
- "@babel/parser": ^7.24.0
- "@babel/types": ^7.24.0
- checksum: 9d3dd8d22fe1c36bc3bdef6118af1f4b030aaf6d7d2619f5da203efa818a2185d717523486c111de8d99a8649ddf4bbf6b2a7a64962d8411cf6a8fa89f010e54
+ "@babel/code-frame": ^7.25.9
+ "@babel/parser": ^7.25.9
+ "@babel/types": ^7.25.9
+ checksum: ebe677273f96a36c92cc15b7aa7b11cc8bc8a3bb7a01d55b2125baca8f19cae94ff3ce15f1b1880fb8437f3a690d9f89d4e91f16fc1dc4d3eb66226d128983ab
languageName: node
linkType: hard
-"@babel/template@npm:^7.25.9":
+"@babel/traverse--for-generate-function-map@npm:@babel/traverse@^7.25.3, @babel/traverse@npm:^7.25.3, @babel/traverse@npm:^7.25.9":
version: 7.25.9
- resolution: "@babel/template@npm:7.25.9"
+ resolution: "@babel/traverse@npm:7.25.9"
dependencies:
"@babel/code-frame": ^7.25.9
+ "@babel/generator": ^7.25.9
"@babel/parser": ^7.25.9
+ "@babel/template": ^7.25.9
"@babel/types": ^7.25.9
- checksum: ebe677273f96a36c92cc15b7aa7b11cc8bc8a3bb7a01d55b2125baca8f19cae94ff3ce15f1b1880fb8437f3a690d9f89d4e91f16fc1dc4d3eb66226d128983ab
+ debug: ^4.3.1
+ globals: ^11.1.0
+ checksum: e90be586a714da4adb80e6cb6a3c5cfcaa9b28148abdafb065e34cc109676fc3db22cf98cd2b2fff66ffb9b50c0ef882cab0f466b6844be0f6c637b82719bba1
languageName: node
linkType: hard
@@ -2181,39 +1581,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/traverse@npm:^7.13.0, @babel/traverse@npm:^7.24.1":
- version: 7.24.1
- resolution: "@babel/traverse@npm:7.24.1"
- dependencies:
- "@babel/code-frame": ^7.24.1
- "@babel/generator": ^7.24.1
- "@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.24.1
- "@babel/types": ^7.24.0
- debug: ^4.3.1
- globals: ^11.1.0
- checksum: c087b918f6823776537ba246136c70e7ce0719fc05361ebcbfd16f4e6f2f6f1f8f4f9167f1d9b675f27d12074839605189cc9d689de20b89a85e7c140f23daab
- languageName: node
- linkType: hard
-
-"@babel/traverse@npm:^7.14.0, @babel/traverse@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/traverse@npm:7.25.9"
- dependencies:
- "@babel/code-frame": ^7.25.9
- "@babel/generator": ^7.25.9
- "@babel/parser": ^7.25.9
- "@babel/template": ^7.25.9
- "@babel/types": ^7.25.9
- debug: ^4.3.1
- globals: ^11.1.0
- checksum: e90be586a714da4adb80e6cb6a3c5cfcaa9b28148abdafb065e34cc109676fc3db22cf98cd2b2fff66ffb9b50c0ef882cab0f466b6844be0f6c637b82719bba1
- languageName: node
- linkType: hard
-
"@babel/types@npm:7.17.0":
version: 7.17.0
resolution: "@babel/types@npm:7.17.0"
@@ -2224,18 +1591,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/types@npm:^7.0.0, @babel/types@npm:^7.14.9, @babel/types@npm:^7.17.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.22.19, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.24.0, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3":
- version: 7.24.0
- resolution: "@babel/types@npm:7.24.0"
- dependencies:
- "@babel/helper-string-parser": ^7.23.4
- "@babel/helper-validator-identifier": ^7.22.20
- to-fast-properties: ^2.0.0
- checksum: 777a0bb5dbe038ca4c905fdafb1cdb6bdd10fe9d63ce13eca0bd91909363cbad554a53dc1f902004b78c1dcbc742056f877f2c99eeedff647333b1fadf51235d
- languageName: node
- linkType: hard
-
-"@babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0":
+"@babel/types@npm:^7.0.0, @babel/types@npm:^7.17.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.23.0, @babel/types@npm:^7.24.7, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4":
version: 7.26.0
resolution: "@babel/types@npm:7.26.0"
dependencies:
@@ -2306,20 +1662,20 @@ __metadata:
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
- version: 4.4.0
- resolution: "@eslint-community/eslint-utils@npm:4.4.0"
+ version: 4.4.1
+ resolution: "@eslint-community/eslint-utils@npm:4.4.1"
dependencies:
- eslint-visitor-keys: ^3.3.0
+ eslint-visitor-keys: ^3.4.3
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- checksum: 7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
+ checksum: 2aa0ac2fc50ff3f234408b10900ed4f1a0b19352f21346ad4cc3d83a1271481bdda11097baa45d484dd564c895e0762a27a8240be7a256b3ad47129e96528252
languageName: node
linkType: hard
-"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
- version: 4.10.0
- resolution: "@eslint-community/regexpp@npm:4.10.0"
- checksum: c5f60ef1f1ea7649fa7af0e80a5a79f64b55a8a8fa5086de4727eb4c86c652aedee407a9c143b8995d2c0b2d75c1222bec9ba5d73dbfc1f314550554f0979ef4
+"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.1":
+ version: 4.12.1
+ resolution: "@eslint-community/regexpp@npm:4.12.1"
+ checksum: a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6
languageName: node
linkType: hard
@@ -2340,28 +1696,21 @@ __metadata:
languageName: node
linkType: hard
-"@eslint/js@npm:8.57.0":
- version: 8.57.0
- resolution: "@eslint/js@npm:8.57.0"
- checksum: 9a518bb8625ba3350613903a6d8c622352ab0c6557a59fe6ff6178bf882bf57123f9d92aa826ee8ac3ee74b9c6203fe630e9ee00efb03d753962dcf65ee4bd94
+"@eslint/js@npm:8.57.1":
+ version: 8.57.1
+ resolution: "@eslint/js@npm:8.57.1"
+ checksum: b489c474a3b5b54381c62e82b3f7f65f4b8a5eaaed126546520bf2fede5532a8ed53212919fed1e9048dcf7f37167c8561d58d0ba4492a4244004e7793805223
languageName: node
linkType: hard
-"@gar/promisify@npm:^1.1.3":
- version: 1.1.3
- resolution: "@gar/promisify@npm:1.1.3"
- checksum: 0b3c9958d3cd17f4add3574975e3115ae05dc7f1298a60810414b16f6f558c137b5fb3cd3905df380bacfd955ec13f67c1e6710cbb5c246a7e8d65a8289b2bff
- languageName: node
- linkType: hard
-
-"@hapi/hoek@npm:^9.0.0":
- version: 9.2.1
- resolution: "@hapi/hoek@npm:9.2.1"
- checksum: 76d6635207af99908712d9a1425364d872dc8ca284174f2091998ceb24a94900e5fe76f8013d2c096b43dd1dda2c4dde1b56027fc082c697f4c40d7c6f333a03
+"@hapi/hoek@npm:^9.0.0, @hapi/hoek@npm:^9.3.0":
+ version: 9.3.0
+ resolution: "@hapi/hoek@npm:9.3.0"
+ checksum: a096063805051fb8bba4c947e293c664b05a32b47e13bc654c0dd43813a1cec993bdd8f29ceb838020299e1d0f89f68dc0d62a603c13c9cc8541963f0beca055
languageName: node
linkType: hard
-"@hapi/topo@npm:^5.0.0":
+"@hapi/topo@npm:^5.1.0":
version: 5.1.0
resolution: "@hapi/topo@npm:5.1.0"
dependencies:
@@ -2370,14 +1719,14 @@ __metadata:
languageName: node
linkType: hard
-"@humanwhocodes/config-array@npm:^0.11.14":
- version: 0.11.14
- resolution: "@humanwhocodes/config-array@npm:0.11.14"
+"@humanwhocodes/config-array@npm:^0.13.0":
+ version: 0.13.0
+ resolution: "@humanwhocodes/config-array@npm:0.13.0"
dependencies:
- "@humanwhocodes/object-schema": ^2.0.2
+ "@humanwhocodes/object-schema": ^2.0.3
debug: ^4.3.1
minimatch: ^3.0.5
- checksum: 66f725b4ee5fdd8322c737cb5013e19fac72d4d69c8bf4b7feb192fcb83442b035b92186f8e9497c220e58b2d51a080f28a73f7899bc1ab288c3be172c467541
+ checksum: 205c99e756b759f92e1f44a3dc6292b37db199beacba8f26c2165d4051fe73a4ae52fdcfd08ffa93e7e5cb63da7c88648f0e84e197d154bbbbe137b2e0dd332e
languageName: node
linkType: hard
@@ -2388,10 +1737,31 @@ __metadata:
languageName: node
linkType: hard
-"@humanwhocodes/object-schema@npm:^2.0.2":
- version: 2.0.2
- resolution: "@humanwhocodes/object-schema@npm:2.0.2"
- checksum: 6fd83dc320231d71c4541d0244051df61f301817e9f9da9fd4cb7e44ec8aacbde5958c1665b0c419401ab935114fdf532a6ad5d4e7294b1af2f347dd91a6983f
+"@humanwhocodes/object-schema@npm:^2.0.3":
+ version: 2.0.3
+ resolution: "@humanwhocodes/object-schema@npm:2.0.3"
+ checksum: 80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c
+ languageName: node
+ linkType: hard
+
+"@isaacs/cliui@npm:^8.0.2":
+ version: 8.0.2
+ resolution: "@isaacs/cliui@npm:8.0.2"
+ dependencies:
+ string-width: ^5.1.2
+ string-width-cjs: "npm:string-width@^4.2.0"
+ strip-ansi: ^7.0.1
+ strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
+ wrap-ansi: ^8.1.0
+ wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
+ checksum: b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
+ languageName: node
+ linkType: hard
+
+"@isaacs/ttlcache@npm:^1.4.1":
+ version: 1.4.1
+ resolution: "@isaacs/ttlcache@npm:1.4.1"
+ checksum: 6921de516917b02673a58e543c2b06fd04237cbf6d089ca22d6e98defa4b1e9a48258cb071d6b581284bb497bea687320788830541511297eecbe6e93a665bbf
languageName: node
linkType: hard
@@ -2470,12 +1840,12 @@ __metadata:
languageName: node
linkType: hard
-"@jest/create-cache-key-function@npm:^27.0.1":
- version: 27.5.1
- resolution: "@jest/create-cache-key-function@npm:27.5.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:
- "@jest/types": ^27.5.1
- checksum: 1890ac93fad852e0a98c31de1e5f2c548974aefd36e838d27b70834dda1654a153ed6a52258447ebacfd47463e9bdb83750631bee827797c7b9973c083998a96
+ "@jest/types": ^29.6.3
+ checksum: 5c47ef62205264adf77b1ff26b969ce9fe84920b8275c3c5e83f4236859d6ae5e4e7027af99eef04a8e334c4e424d44af3e167972083406070aca733ac2a2795
languageName: node
linkType: hard
@@ -2653,19 +2023,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: 4598b302398db0eb77168b75a6c58148ea02cc9b9f21c5d1bbe985c1c9257110a5653cf7b901c3cab87fba231e3fed83633687f1c0903b4bc6939ab2a8452504
- languageName: node
- linkType: hard
-
"@jest/types@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/types@npm:29.6.3"
@@ -2705,10 +2062,20 @@ __metadata:
languageName: node
linkType: hard
+"@jridgewell/source-map@npm:^0.3.3":
+ version: 0.3.6
+ resolution: "@jridgewell/source-map@npm:0.3.6"
+ dependencies:
+ "@jridgewell/gen-mapping": ^0.3.5
+ "@jridgewell/trace-mapping": ^0.3.25
+ checksum: 6a4ecc713ed246ff8e5bdcc1ef7c49aaa93f7463d948ba5054dda18b02dcc6a055e2828c577bcceee058f302ce1fc95595713d44f5c45e43d459f88d267f2f04
+ languageName: node
+ linkType: hard
+
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
- version: 1.4.15
- resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
- checksum: 0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5
+ version: 1.5.0
+ resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
+ checksum: 2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
languageName: node
linkType: hard
@@ -2759,250 +2126,246 @@ __metadata:
languageName: node
linkType: hard
-"@npmcli/fs@npm:^2.1.0":
- version: 2.1.1
- resolution: "@npmcli/fs@npm:2.1.1"
+"@npmcli/agent@npm:^2.0.0":
+ version: 2.2.2
+ resolution: "@npmcli/agent@npm:2.2.2"
dependencies:
- "@gar/promisify": ^1.1.3
- semver: ^7.3.5
- checksum: a553c45cef26b846170ee10c04a177d915aaf3ac128ac4ff7e4afb2619aad4b4aef37a945f1e6bfdeaf60a56dec0a3fd75031e082ea0b930182a50bf648ca09b
+ agent-base: ^7.1.0
+ http-proxy-agent: ^7.0.0
+ https-proxy-agent: ^7.0.1
+ lru-cache: ^10.0.1
+ socks-proxy-agent: ^8.0.3
+ checksum: 325e0db7b287d4154ecd164c0815c08007abfb07653cc57bceded17bb7fd240998a3cbdbe87d700e30bef494885eccc725ab73b668020811d56623d145b524ae
languageName: node
linkType: hard
-"@npmcli/move-file@npm:^2.0.0":
- version: 2.0.0
- resolution: "@npmcli/move-file@npm:2.0.0"
+"@npmcli/fs@npm:^3.1.0":
+ version: 3.1.1
+ resolution: "@npmcli/fs@npm:3.1.1"
dependencies:
- mkdirp: ^1.0.4
- rimraf: ^3.0.2
- checksum: 3a1920e02fa05c1c06c63b7a9614f440403942ce849cc59a2b2aed3e29f2871c4009fdf17de29d84bea3c43f2c370fbcf78d8bcb051339939eaf7cdcb7fb7132
+ semver: ^7.3.5
+ checksum: c37a5b4842bfdece3d14dfdb054f73fe15ed2d3da61b34ff76629fb5b1731647c49166fd2a8bf8b56fcfa51200382385ea8909a3cbecdad612310c114d3f6c99
+ languageName: node
+ linkType: hard
+
+"@pkgjs/parseargs@npm:^0.11.0":
+ version: 0.11.0
+ resolution: "@pkgjs/parseargs@npm:0.11.0"
+ checksum: 5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
-"@react-native-async-storage/async-storage@npm:^1.23.1":
- version: 1.24.0
- resolution: "@react-native-async-storage/async-storage@npm:1.24.0"
+"@react-native-async-storage/async-storage@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "@react-native-async-storage/async-storage@npm:2.0.0"
dependencies:
merge-options: ^3.0.4
peerDependencies:
- react-native: ^0.0.0-0 || >=0.60 <1.0
- checksum: cad2098ef84251f2ab8ebc07b750e585a20ac7ca07f26e5441e957a76f2b66f01d10ef5fbddb63d675431377b31beb5208548093e1eb17d262d2184b51133f4d
+ react-native: ^0.0.0-0 || >=0.65 <1.0
+ checksum: e09c93aecd2e0509c8d58fa2435d2aaadc7025910102a8d7ed21b4b6ee74ec680f0b2d9eb1e5f0f5b524b48f4dc868cd12a71452686f88664c3deb35ea83f370
languageName: node
linkType: hard
-"@react-native-community/cli-clean@npm:^9.2.1":
- version: 9.2.1
- resolution: "@react-native-community/cli-clean@npm:9.2.1"
+"@react-native-community/cli-clean@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli-clean@npm:15.1.2"
dependencies:
- "@react-native-community/cli-tools": ^9.2.1
+ "@react-native-community/cli-tools": 15.1.2
chalk: ^4.1.2
- execa: ^1.0.0
- prompts: ^2.4.0
- checksum: e4b30ab36dbf727a35454cf57ba7e4f4eddd46ae3cd577b15dd4b9935d019a98aaf0b9b02439a6cbb3db0058eabc9cf902dd6047c11df0014b0c8b9d77d6aa8d
+ execa: ^5.0.0
+ fast-glob: ^3.3.2
+ checksum: 74e793731dae96e09573ad45f2d3b7ffa4b88abadb861bad14a59ba2c18f446f6029d894ae66add1c646c52b4bbc1e22b85a0534a8fb33623cab2a76f0f8ae12
languageName: node
linkType: hard
-"@react-native-community/cli-config@npm:^9.2.1":
- version: 9.2.1
- resolution: "@react-native-community/cli-config@npm:9.2.1"
+"@react-native-community/cli-config-android@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli-config-android@npm:15.1.2"
dependencies:
- "@react-native-community/cli-tools": ^9.2.1
- cosmiconfig: ^5.1.0
- deepmerge: ^3.2.0
- glob: ^7.1.3
- joi: ^17.2.1
- checksum: c18a8bcb9f8b163e6f9bc5e0ff98f439bb4279bba66780a1af20d7e4f6f2d1bb89a50f51002c41c539cb1e0897b780f1a8935221eb1c85ee70f51627f24d7a8f
+ "@react-native-community/cli-tools": 15.1.2
+ chalk: ^4.1.2
+ fast-glob: ^3.3.2
+ fast-xml-parser: ^4.4.1
+ checksum: 90fd0fa8743c657adf529ed49d598c99d3abff5a41f33a755104841cd1acb2d25181371bab148a06a19e991815fca84d0fdd3a8904e3e45615bc4cd81d1db3a4
languageName: node
linkType: hard
-"@react-native-community/cli-debugger-ui@npm:^9.0.0":
- version: 9.0.0
- resolution: "@react-native-community/cli-debugger-ui@npm:9.0.0"
+"@react-native-community/cli-config-apple@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli-config-apple@npm:15.1.2"
dependencies:
- serve-static: ^1.13.1
- checksum: 9ddff985d50c5ae90a71e28387f1d21e5f0bba2ae18dedff9ee24ef6233d6ddc9622d8295d5244104074f1d2ae280fb471456af4a5bb3510c395e12f576c9477
+ "@react-native-community/cli-tools": 15.1.2
+ chalk: ^4.1.2
+ execa: ^5.0.0
+ fast-glob: ^3.3.2
+ checksum: b6bb3694df337ccec28190aec4ec09cb0cd6ee8823471dd38bc359f840990bc040c58296750ebdbf4a85fba07ca4dbd6ebd25173d81516ad5d9acc533b176128
languageName: node
linkType: hard
-"@react-native-community/cli-doctor@npm:^9.3.0":
- version: 9.3.0
- resolution: "@react-native-community/cli-doctor@npm:9.3.0"
+"@react-native-community/cli-config@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli-config@npm:15.1.2"
dependencies:
- "@react-native-community/cli-config": ^9.2.1
- "@react-native-community/cli-platform-ios": ^9.3.0
- "@react-native-community/cli-tools": ^9.2.1
+ "@react-native-community/cli-tools": 15.1.2
chalk: ^4.1.2
- command-exists: ^1.2.8
- envinfo: ^7.7.2
- execa: ^1.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: ^6.3.0
- strip-ansi: ^5.2.0
- sudo-prompt: ^9.0.0
- wcwidth: ^1.0.1
- checksum: bf066004789ab547a6f2bd8203563c120c3f643ab13f8216109e13d53e01be1568edb5a39ce51ba4bb1987aceedcd1b4812d9e2f031565c59189d0f59e5bbb1a
+ cosmiconfig: ^9.0.0
+ deepmerge: ^4.3.0
+ fast-glob: ^3.3.2
+ joi: ^17.2.1
+ checksum: 4a41cd515eb6f1eb2b35035b890fcd0500b563dd3b560a1fb388e26c436afef2622195a013f1828ab11ead686c3dc3788c5c7e38fd20b50784dbea98dec2bd48
languageName: node
linkType: hard
-"@react-native-community/cli-hermes@npm:^9.3.1":
- version: 9.3.4
- resolution: "@react-native-community/cli-hermes@npm:9.3.4"
+"@react-native-community/cli-debugger-ui@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli-debugger-ui@npm:15.1.2"
dependencies:
- "@react-native-community/cli-platform-android": ^9.3.4
- "@react-native-community/cli-tools": ^9.2.1
- chalk: ^4.1.2
- hermes-profile-transformer: ^0.0.6
- ip: ^1.1.5
- checksum: 335d62d45b65cc4a5264197763c0e916b98ab61f567e9ad9250138a85f9af1b99424274ccb0a9ee5539c777030c9cd234fb6b1d21b2e8bc0363eaf000425cf8a
+ serve-static: ^1.13.1
+ checksum: 64110e347a04b68443a8d6b1e4214eeca74d00182217fa185e8e1d0679324ca16424d798dd99abb0747f1be1a3cfefefad99e29e6bd0c03094d941bb218a57bd
languageName: node
linkType: hard
-"@react-native-community/cli-platform-android@npm:9.3.1":
- version: 9.3.1
- resolution: "@react-native-community/cli-platform-android@npm:9.3.1"
+"@react-native-community/cli-doctor@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli-doctor@npm:15.1.2"
dependencies:
- "@react-native-community/cli-tools": ^9.2.1
+ "@react-native-community/cli-config": 15.1.2
+ "@react-native-community/cli-platform-android": 15.1.2
+ "@react-native-community/cli-platform-apple": 15.1.2
+ "@react-native-community/cli-platform-ios": 15.1.2
+ "@react-native-community/cli-tools": 15.1.2
chalk: ^4.1.2
- execa: ^1.0.0
- fs-extra: ^8.1.0
- glob: ^7.1.3
- logkitty: ^0.7.1
- slash: ^3.0.0
- checksum: 5e6449f790fbd41889f22f1b7c9fc17f47c35c310bf2911a9a8ff3369532f644c7f881c2218b1b64af480e08e010a4486fa79d5a3c542c5f3c892b38bb181c68
+ command-exists: ^1.2.8
+ deepmerge: ^4.3.0
+ envinfo: ^7.13.0
+ execa: ^5.0.0
+ node-stream-zip: ^1.9.1
+ ora: ^5.4.1
+ semver: ^7.5.2
+ strip-ansi: ^5.2.0
+ wcwidth: ^1.0.1
+ yaml: ^2.2.1
+ checksum: 8554b1e351658682ae09421b2b1ab073471937174e5ea3811529de5c3e06993f4f00a9c78934fcb0b7460a9e8f886fc2d4b025bb3d54f7018c9d6379aabbd8cf
languageName: node
linkType: hard
-"@react-native-community/cli-platform-android@npm:^9.3.4":
- version: 9.3.4
- resolution: "@react-native-community/cli-platform-android@npm:9.3.4"
+"@react-native-community/cli-platform-android@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli-platform-android@npm:15.1.2"
dependencies:
- "@react-native-community/cli-tools": ^9.2.1
+ "@react-native-community/cli-config-android": 15.1.2
+ "@react-native-community/cli-tools": 15.1.2
chalk: ^4.1.2
- execa: ^1.0.0
- fs-extra: ^8.1.0
- glob: ^7.1.3
+ execa: ^5.0.0
logkitty: ^0.7.1
- slash: ^3.0.0
- checksum: d04b031fe01d3d252596b0cf9aafd16a617cc2eae60351e3c6629fd9f6ac188bcb6c31406a8d5109bcf25b4e52fbc02a057169ca86657f69e66ee2f0207325c3
+ checksum: ee709a2d6c2025ff3ad4e9dc8849dfc41b6846af2ee2bad704a534347e04f27021d0deecfe0c7349f589fb3474678f31cd1d7a9d6db5f78cf5aa201c7a196cff
languageName: node
linkType: hard
-"@react-native-community/cli-platform-ios@npm:9.3.0, @react-native-community/cli-platform-ios@npm:^9.3.0":
- version: 9.3.0
- resolution: "@react-native-community/cli-platform-ios@npm:9.3.0"
+"@react-native-community/cli-platform-apple@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli-platform-apple@npm:15.1.2"
dependencies:
- "@react-native-community/cli-tools": ^9.2.1
+ "@react-native-community/cli-config-apple": 15.1.2
+ "@react-native-community/cli-tools": 15.1.2
chalk: ^4.1.2
- execa: ^1.0.0
- glob: ^7.1.3
- ora: ^5.4.1
- checksum: 76270e3959919d432805162a00db7ed5cb6c43858dd43d4f6e4d4f6e7b95601cb5b5c97248359a371c2c955ee1fd6f94f3e5f2e4ec30f3b61e5b057472213fd7
+ execa: ^5.0.0
+ fast-xml-parser: ^4.4.1
+ checksum: fd11664cd76e118303ab4fe0b2b2875fbb2d20a4c24399c6131a608ad8049eb05650b05c0365ba2200c0364f05e97b7776bfa478084c66ea019849a9325655c3
languageName: node
linkType: hard
-"@react-native-community/cli-plugin-metro@npm:^9.2.1":
- version: 9.3.3
- resolution: "@react-native-community/cli-plugin-metro@npm:9.3.3"
+"@react-native-community/cli-platform-ios@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli-platform-ios@npm:15.1.2"
dependencies:
- "@react-native-community/cli-server-api": ^9.2.1
- "@react-native-community/cli-tools": ^9.2.1
- chalk: ^4.1.2
- metro: 0.72.4
- metro-config: 0.72.4
- metro-core: 0.72.4
- metro-react-native-babel-transformer: 0.72.4
- metro-resolver: 0.72.4
- metro-runtime: 0.72.4
- readline: ^1.3.0
- checksum: 0c7a8d07d4b7fe9d1177555437cc89e75a8b71bf72f7e1ef012db7b6f099a630127c6a96d8143fa23ac4e0dc3937f3a18a920e81e91fe38c0add214804e59965
+ "@react-native-community/cli-platform-apple": 15.1.2
+ checksum: 442bed43ff55280d94f2ea2f1b9ce2e95a8913fc36e89ec24139f263f51ee1a553a272933217adef57426cc2453b17c8c152d760727010d08b77b341264ae106
languageName: node
linkType: hard
-"@react-native-community/cli-server-api@npm:^9.2.1":
- version: 9.2.1
- resolution: "@react-native-community/cli-server-api@npm:9.2.1"
+"@react-native-community/cli-server-api@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli-server-api@npm:15.1.2"
dependencies:
- "@react-native-community/cli-debugger-ui": ^9.0.0
- "@react-native-community/cli-tools": ^9.2.1
+ "@react-native-community/cli-debugger-ui": 15.1.2
+ "@react-native-community/cli-tools": 15.1.2
compression: ^1.7.1
connect: ^3.6.5
- errorhandler: ^1.5.0
+ errorhandler: ^1.5.1
nocache: ^3.0.1
pretty-format: ^26.6.2
serve-static: ^1.13.1
- ws: ^7.5.1
- checksum: 0657ba28c996db6d80c56de378952b53dfff9f7471fd1cf99bac77c7525c9c63c5eb96301c695314fbfcd6a64674e25fe34b5378d7c2fc9353015616576ed878
+ ws: ^6.2.3
+ checksum: acc7a6b19cc59289133f3bd3686ea8267bddafa082befd5260ea22cc9f496e192ba53fb48f563d154ca45bd15dfbea2d08e17db95eb140895a44d6a8d1dca1ef
languageName: node
linkType: hard
-"@react-native-community/cli-tools@npm:^9.2.1":
- version: 9.2.1
- resolution: "@react-native-community/cli-tools@npm:9.2.1"
+"@react-native-community/cli-tools@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli-tools@npm:15.1.2"
dependencies:
appdirsjs: ^1.2.4
chalk: ^4.1.2
+ execa: ^5.0.0
find-up: ^5.0.0
mime: ^2.4.1
- node-fetch: ^2.6.0
open: ^6.2.0
ora: ^5.4.1
- semver: ^6.3.0
+ prompts: ^2.4.2
+ semver: ^7.5.2
shell-quote: ^1.7.3
- checksum: 324a234af23c859d98a79244b765bcf5e0506cf2cd58d8204310d4b0c747f19a1b19b477b6c39a97faf9687d6418edaebe123f006e9147585b09f2bb21eb5932
+ sudo-prompt: ^9.0.0
+ checksum: bce9bc5731e952041da870b8a4ad8e95ae83d26af9030937ea93435364fff49ee328bb04f17791cb8455242ed38f8bbcd1d16b3243cb6383ae90f996ef42be47
languageName: node
linkType: hard
-"@react-native-community/cli-types@npm:^9.1.0":
- version: 9.1.0
- resolution: "@react-native-community/cli-types@npm:9.1.0"
+"@react-native-community/cli-types@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli-types@npm:15.1.2"
dependencies:
joi: ^17.2.1
- checksum: 4cf0374545829654ca3b4a1a2522484acfa43391c2c90363a222434202e784a55d1686ce72d9230868df0d6d3b453d4439680aba773a76cdaae058af6dc5de0d
+ checksum: 2b9ad27ae29638868824bf5038b915ddd8c331216c14ae061bc5a93096cf80dfd3eb32f0910109c50ba31625766b22e6f4e80facf64a9bc4d477381f1dc67601
languageName: node
linkType: hard
-"@react-native-community/cli@npm:9.3.2":
- version: 9.3.2
- resolution: "@react-native-community/cli@npm:9.3.2"
+"@react-native-community/cli@npm:15.1.2":
+ version: 15.1.2
+ resolution: "@react-native-community/cli@npm:15.1.2"
dependencies:
- "@react-native-community/cli-clean": ^9.2.1
- "@react-native-community/cli-config": ^9.2.1
- "@react-native-community/cli-debugger-ui": ^9.0.0
- "@react-native-community/cli-doctor": ^9.3.0
- "@react-native-community/cli-hermes": ^9.3.1
- "@react-native-community/cli-plugin-metro": ^9.2.1
- "@react-native-community/cli-server-api": ^9.2.1
- "@react-native-community/cli-tools": ^9.2.1
- "@react-native-community/cli-types": ^9.1.0
+ "@react-native-community/cli-clean": 15.1.2
+ "@react-native-community/cli-config": 15.1.2
+ "@react-native-community/cli-debugger-ui": 15.1.2
+ "@react-native-community/cli-doctor": 15.1.2
+ "@react-native-community/cli-server-api": 15.1.2
+ "@react-native-community/cli-tools": 15.1.2
+ "@react-native-community/cli-types": 15.1.2
chalk: ^4.1.2
- commander: ^9.4.0
- execa: ^1.0.0
- find-up: ^4.1.0
+ commander: ^9.4.1
+ deepmerge: ^4.3.0
+ execa: ^5.0.0
+ find-up: ^5.0.0
fs-extra: ^8.1.0
graceful-fs: ^4.1.3
- prompts: ^2.4.0
- semver: ^6.3.0
+ prompts: ^2.4.2
+ semver: ^7.5.2
bin:
- react-native: build/bin.js
- checksum: 0fe195da6579f2519c14f1477337c7d8a5bbaf0571f6cd3eadc9b0279c09f3390bc1dfee1bc61ab982fa349dcd7a2b975a7ac51140a4e4b879a4c345e2994fcc
+ rnc-cli: build/bin.js
+ checksum: f2ca7848dd0540e4d53af17f066d745f631fb948e8b1248d3b6dedd38452cbc7fda61e1da07a703191144f6fbfb64b3436d9c885b8a228fec2dc4f439df09820
languageName: node
linkType: hard
-"@react-native-masked-view/masked-view@npm:^0.3.1":
- version: 0.3.1
- resolution: "@react-native-masked-view/masked-view@npm:0.3.1"
+"@react-native-masked-view/masked-view@npm:^0.3.2":
+ version: 0.3.2
+ resolution: "@react-native-masked-view/masked-view@npm:0.3.2"
peerDependencies:
react: ">=16"
react-native: ">=0.57"
- checksum: e8823e69caa4f916546de528faa9beb69d25311adecaeb37a5a3e2871141754e895d1b5faa01bc0ca07b4d4b676d940191917803da53208b1be8fef857e5b502
+ checksum: 4ec84b7af2ded49dc21f17cc723a0ef341076cbe40cf758dd2daff8734bea63ba83e2fee7e63958984385314b8915b6804135997e07697abdd4141217c847fe9
languageName: node
linkType: hard
-"@react-native-picker/picker@npm:^2.7.2":
+"@react-native-picker/picker@npm:^2.9.0":
version: 2.9.0
resolution: "@react-native-picker/picker@npm:2.9.0"
peerDependencies:
@@ -3012,35 +2375,216 @@ __metadata:
languageName: node
linkType: hard
-"@react-native/assets@npm:1.0.0":
- version: 1.0.0
- resolution: "@react-native/assets@npm:1.0.0"
- checksum: 5b0d96279ff65cd6c98a28a9fd368c9e15eae613c685d5a0ad07bc57bbc6f8e5c101ebea5f81df881e803b633b8bbf17b1ea4bba9ccc42958732a38abc6fdf0f
+"@react-native/assets-registry@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/assets-registry@npm:0.76.1"
+ checksum: cab379c78de38c478a1bc2289df4becd6a3a7ac6f5a2da9f37fbb49a10662c1adf61b1da8a9282c380be66842c6b6c3a9d4df2ab69060e974e31f032a2795723
languageName: node
linkType: hard
-"@react-native/normalize-color@npm:*, @react-native/normalize-color@npm:2.0.0":
- version: 2.0.0
- resolution: "@react-native/normalize-color@npm:2.0.0"
- checksum: 4d833078dda38858e472ec88b6fbbfe442b3411cfe744b39a39a1c4f3e93148d653a568366e6f1c78533a9c0fec5ec82af33f6927090fe4f0778db2aff80140a
+"@react-native/babel-plugin-codegen@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/babel-plugin-codegen@npm:0.76.1"
+ dependencies:
+ "@react-native/codegen": 0.76.1
+ checksum: 382928aed967b56803e6598a123d6a2bb27dda2b175298f8afcd0a047c3d02172ac2d61e35a088500cb96caffa39fe18f9a8452dfd5818b05c281a59e81d6c83
languageName: node
linkType: hard
-"@react-native/normalize-colors@npm:<0.73.0":
- version: 0.72.0
- resolution: "@react-native/normalize-colors@npm:0.72.0"
- checksum: 741615ff23bead068a8a74e7b24fb2bcf074c9c4522f7329e8372597552eb26c3cdb6c0984dd564da9e5c3d1b61ec07b2e29f12a14f326d6e589480317dd833f
+"@react-native/babel-preset@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/babel-preset@npm:0.76.1"
+ dependencies:
+ "@babel/core": ^7.25.2
+ "@babel/plugin-proposal-export-default-from": ^7.24.7
+ "@babel/plugin-syntax-dynamic-import": ^7.8.3
+ "@babel/plugin-syntax-export-default-from": ^7.24.7
+ "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
+ "@babel/plugin-syntax-optional-chaining": ^7.8.3
+ "@babel/plugin-transform-arrow-functions": ^7.24.7
+ "@babel/plugin-transform-async-generator-functions": ^7.25.4
+ "@babel/plugin-transform-async-to-generator": ^7.24.7
+ "@babel/plugin-transform-block-scoping": ^7.25.0
+ "@babel/plugin-transform-class-properties": ^7.25.4
+ "@babel/plugin-transform-classes": ^7.25.4
+ "@babel/plugin-transform-computed-properties": ^7.24.7
+ "@babel/plugin-transform-destructuring": ^7.24.8
+ "@babel/plugin-transform-flow-strip-types": ^7.25.2
+ "@babel/plugin-transform-for-of": ^7.24.7
+ "@babel/plugin-transform-function-name": ^7.25.1
+ "@babel/plugin-transform-literals": ^7.25.2
+ "@babel/plugin-transform-logical-assignment-operators": ^7.24.7
+ "@babel/plugin-transform-modules-commonjs": ^7.24.8
+ "@babel/plugin-transform-named-capturing-groups-regex": ^7.24.7
+ "@babel/plugin-transform-nullish-coalescing-operator": ^7.24.7
+ "@babel/plugin-transform-numeric-separator": ^7.24.7
+ "@babel/plugin-transform-object-rest-spread": ^7.24.7
+ "@babel/plugin-transform-optional-catch-binding": ^7.24.7
+ "@babel/plugin-transform-optional-chaining": ^7.24.8
+ "@babel/plugin-transform-parameters": ^7.24.7
+ "@babel/plugin-transform-private-methods": ^7.24.7
+ "@babel/plugin-transform-private-property-in-object": ^7.24.7
+ "@babel/plugin-transform-react-display-name": ^7.24.7
+ "@babel/plugin-transform-react-jsx": ^7.25.2
+ "@babel/plugin-transform-react-jsx-self": ^7.24.7
+ "@babel/plugin-transform-react-jsx-source": ^7.24.7
+ "@babel/plugin-transform-regenerator": ^7.24.7
+ "@babel/plugin-transform-runtime": ^7.24.7
+ "@babel/plugin-transform-shorthand-properties": ^7.24.7
+ "@babel/plugin-transform-spread": ^7.24.7
+ "@babel/plugin-transform-sticky-regex": ^7.24.7
+ "@babel/plugin-transform-typescript": ^7.25.2
+ "@babel/plugin-transform-unicode-regex": ^7.24.7
+ "@babel/template": ^7.25.0
+ "@react-native/babel-plugin-codegen": 0.76.1
+ babel-plugin-syntax-hermes-parser: ^0.23.1
+ babel-plugin-transform-flow-enums: ^0.0.2
+ react-refresh: ^0.14.0
+ peerDependencies:
+ "@babel/core": "*"
+ checksum: 3c39636684aaa0c9f23a96e83e657307c7e94bdf61fd12eaaf7a9446c19ea9225e4556c987a3afb5d472b7d6191af6f5c1c6cbd80f51f287d0b63f0c590d83ee
languageName: node
linkType: hard
-"@react-native/polyfills@npm:2.0.0":
- version: 2.0.0
- resolution: "@react-native/polyfills@npm:2.0.0"
- checksum: 6202e584464a7584f178b424f524d37b9967002c75a435f6cc05dd3c6c2df62a0c880e87500331a1ea580f0d4b5dcdc6512463488abbc02fb9baf5e8745d7f97
+"@react-native/codegen@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/codegen@npm:0.76.1"
+ dependencies:
+ "@babel/parser": ^7.25.3
+ glob: ^7.1.1
+ hermes-parser: 0.23.1
+ invariant: ^2.2.4
+ jscodeshift: ^0.14.0
+ mkdirp: ^0.5.1
+ nullthrows: ^1.1.1
+ yargs: ^17.6.2
+ peerDependencies:
+ "@babel/preset-env": ^7.1.6
+ checksum: 087e763df614590754f3790d35eabd8e26fdc076be41e9c39708844bd690d91163914b62f96fd1df4086214db3f9f9a01cda97bc32188ce245e1f86452da3895
+ languageName: node
+ linkType: hard
+
+"@react-native/community-cli-plugin@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/community-cli-plugin@npm:0.76.1"
+ dependencies:
+ "@react-native/dev-middleware": 0.76.1
+ "@react-native/metro-babel-transformer": 0.76.1
+ chalk: ^4.0.0
+ execa: ^5.1.1
+ invariant: ^2.2.4
+ metro: ^0.81.0
+ metro-config: ^0.81.0
+ metro-core: ^0.81.0
+ node-fetch: ^2.2.0
+ readline: ^1.3.0
+ peerDependencies:
+ "@react-native-community/cli-server-api": "*"
+ peerDependenciesMeta:
+ "@react-native-community/cli-server-api":
+ optional: true
+ checksum: 64608038afafb44e851f6b98be0b1f3a45aee9a791cafe5c9211aae731db68938d29a403701bb8569db91f5ebf41823c75850e7b7756518abbe572cde9139470
+ languageName: node
+ linkType: hard
+
+"@react-native/debugger-frontend@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/debugger-frontend@npm:0.76.1"
+ checksum: 7fc49ae2625f6166facd19ef61f6b68771576414936c7330f74d04da9ff37152c3ef673266690277953fdc8e20b8cae191d69913e39d67eae69ff784b72e2f99
+ languageName: node
+ linkType: hard
+
+"@react-native/dev-middleware@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/dev-middleware@npm:0.76.1"
+ dependencies:
+ "@isaacs/ttlcache": ^1.4.1
+ "@react-native/debugger-frontend": 0.76.1
+ chrome-launcher: ^0.15.2
+ chromium-edge-launcher: ^0.2.0
+ connect: ^3.6.5
+ debug: ^2.2.0
+ nullthrows: ^1.1.1
+ open: ^7.0.3
+ selfsigned: ^2.4.1
+ serve-static: ^1.13.1
+ ws: ^6.2.3
+ checksum: c60c6b003df7903fe288a09d28bd1fbc5ce014778b71c5059f3605f941463e36949804b09d8980d3be345768b9cc0e5eccd69653d7e3d6361a237d3ad6f5e2b2
+ languageName: node
+ linkType: hard
+
+"@react-native/gradle-plugin@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/gradle-plugin@npm:0.76.1"
+ checksum: 7056ff70ff42d9575eb35fd63ce7accb42caffb08839bcf32abd5a83e3016be9e8b56a115e927b45302c94e3ad88e928283354577fc77547b13c0c84183e016b
+ languageName: node
+ linkType: hard
+
+"@react-native/js-polyfills@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/js-polyfills@npm:0.76.1"
+ checksum: 4dbf213e4bddb68a27cc8f9b776866f5480ca507de3daee30f66a7f68326c9533a0fe215e9bc3e71eb97c42a0218903e659182265178cb2635a080c464218939
+ languageName: node
+ linkType: hard
+
+"@react-native/metro-babel-transformer@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/metro-babel-transformer@npm:0.76.1"
+ dependencies:
+ "@babel/core": ^7.25.2
+ "@react-native/babel-preset": 0.76.1
+ hermes-parser: 0.23.1
+ nullthrows: ^1.1.1
+ peerDependencies:
+ "@babel/core": "*"
+ checksum: cacdca11847d11c6d1dba3c57b26f43054296676c1f846455297d1eb869b8830f6278b701c8b42e63da25f24dc7e97512f56d515f15718c4c3e77e8908bfe4e4
+ languageName: node
+ linkType: hard
+
+"@react-native/metro-config@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/metro-config@npm:0.76.1"
+ dependencies:
+ "@react-native/js-polyfills": 0.76.1
+ "@react-native/metro-babel-transformer": 0.76.1
+ metro-config: ^0.81.0
+ metro-runtime: ^0.81.0
+ checksum: 6649196478425a6c754ec97f56f811706de2e44eb23a0b4da4ecb98ac4bfed350fcf37afc6afdf1c7850120863329cf2be00c708330c77a7f01a28c7816968b9
+ languageName: node
+ linkType: hard
+
+"@react-native/normalize-color@npm:*":
+ version: 2.1.0
+ resolution: "@react-native/normalize-color@npm:2.1.0"
+ checksum: 95814a1e2aac9c00dfc2c65f9e2caec07f70d3dba903b5640f5cf24605bf39863e572f2a5138a85d1c514fb3c33f6931595e0a9f738a58b5c220ee74f2bec13b
languageName: node
linkType: hard
-"@react-navigation/bottom-tabs@npm:^6.5.20":
+"@react-native/normalize-colors@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/normalize-colors@npm:0.76.1"
+ checksum: 44a3849de811cf91481339321e644566a5c1971bc276df46b608431926c70a00bf30c3bd7b2a81032ca6e88d57a39ae6630e8c6afdc6782383ecea44eeba2f84
+ languageName: node
+ linkType: hard
+
+"@react-native/virtualized-lists@npm:0.76.1":
+ version: 0.76.1
+ resolution: "@react-native/virtualized-lists@npm:0.76.1"
+ dependencies:
+ invariant: ^2.2.4
+ nullthrows: ^1.1.1
+ peerDependencies:
+ "@types/react": ^18.2.6
+ react: "*"
+ react-native: "*"
+ peerDependenciesMeta:
+ "@types/react":
+ optional: true
+ checksum: f8b07e2d7167e61eda26247b9edecc99c518ca5b025de8058a87916294f47bfaf2210ec41d4e812be882d5c4f7f3153b45a5d9056694a0595d1348e1b3d0f406
+ languageName: node
+ linkType: hard
+
+"@react-navigation/bottom-tabs@npm:^6.6.1":
version: 6.6.1
resolution: "@react-navigation/bottom-tabs@npm:6.6.1"
dependencies:
@@ -3057,7 +2601,7 @@ __metadata:
languageName: node
linkType: hard
-"@react-navigation/core@npm:^6.4.16":
+"@react-navigation/core@npm:^6.4.17":
version: 6.4.17
resolution: "@react-navigation/core@npm:6.4.17"
dependencies:
@@ -3073,7 +2617,7 @@ __metadata:
languageName: node
linkType: hard
-"@react-navigation/elements@npm:^1.3.30, @react-navigation/elements@npm:^1.3.31":
+"@react-navigation/elements@npm:^1.3.31":
version: 1.3.31
resolution: "@react-navigation/elements@npm:1.3.31"
peerDependencies:
@@ -3085,18 +2629,18 @@ __metadata:
languageName: node
linkType: hard
-"@react-navigation/native@npm:6.1.17":
- version: 6.1.17
- resolution: "@react-navigation/native@npm:6.1.17"
+"@react-navigation/native@npm:6.1.18":
+ version: 6.1.18
+ resolution: "@react-navigation/native@npm:6.1.18"
dependencies:
- "@react-navigation/core": ^6.4.16
+ "@react-navigation/core": ^6.4.17
escape-string-regexp: ^4.0.0
fast-deep-equal: ^3.1.3
nanoid: ^3.1.23
peerDependencies:
react: "*"
react-native: "*"
- checksum: 54ff0978d94cf373ce6650be6ae8b28a4f0fbb5b329b1d540d8606083ebf9531bf34d4d77beb797462890959cef3c078580258e13267dde95d310ffbec56d16e
+ checksum: 1f7138da298067f537a22c5ab2e8e8529e83df8f87c5c61e84afdcd49d6ba1409f44a33bac3bd08bb11bcfba3f1c84574b7aa0a67b28531e4520d485bd4e3b9b
languageName: node
linkType: hard
@@ -3109,11 +2653,11 @@ __metadata:
languageName: node
linkType: hard
-"@react-navigation/stack@npm:6.3.29":
- version: 6.3.29
- resolution: "@react-navigation/stack@npm:6.3.29"
+"@react-navigation/stack@npm:6.4.1":
+ version: 6.4.1
+ resolution: "@react-navigation/stack@npm:6.4.1"
dependencies:
- "@react-navigation/elements": ^1.3.30
+ "@react-navigation/elements": ^1.3.31
color: ^4.2.3
warn-once: ^0.1.0
peerDependencies:
@@ -3123,119 +2667,134 @@ __metadata:
react-native-gesture-handler: ">= 1.0.0"
react-native-safe-area-context: ">= 3.0.0"
react-native-screens: ">= 3.0.0"
- checksum: 983943cf305f73e9e4637aa7f43bbe228473b4736eb80a238906b7ae5ddf7a9f421ad2ecb09a7220f7a6a5848e724d371483fbe09f3b77f8cd9bb2d52706a83b
+ checksum: 6bc28e5e4e99161a538c1cb9752d70727704ca7b4137e71a44992dfe2ff6e0a3028353184424af1457ec59a4ea6ef9757fc99203280fd7339f36e61b80c9050a
+ languageName: node
+ linkType: hard
+
+"@rtsao/scc@npm:^1.1.0":
+ version: 1.1.0
+ resolution: "@rtsao/scc@npm:1.1.0"
+ checksum: b5bcfb0d87f7d1c1c7c0f7693f53b07866ed9fec4c34a97a8c948fb9a7c0082e416ce4d3b60beb4f5e167cbe04cdeefbf6771320f3ede059b9ce91188c409a5b
languageName: node
linkType: hard
-"@sentry-internal/feedback@npm:7.100.1":
- version: 7.100.1
- resolution: "@sentry-internal/feedback@npm:7.100.1"
+"@sentry-internal/feedback@npm:7.119.1":
+ version: 7.119.1
+ resolution: "@sentry-internal/feedback@npm:7.119.1"
dependencies:
- "@sentry/core": 7.100.1
- "@sentry/types": 7.100.1
- "@sentry/utils": 7.100.1
- checksum: a9b8f4e3c7204f2494eca2867cac35090366de098c97d55e0baf370d51e940f5495e89669edcc329e1e84f00a26c276b9dcb590335a7fc83d10351f9d91bab83
+ "@sentry/core": 7.119.1
+ "@sentry/types": 7.119.1
+ "@sentry/utils": 7.119.1
+ checksum: d032d183eebca60dfc160bf41f520846fce389ea9df8d18f5e907827bfea64b26b240c5d72563b77638ebb84084bda2feeae452e831aaba7ee69e6d745e41341
languageName: node
linkType: hard
-"@sentry-internal/replay-canvas@npm:7.100.1":
- version: 7.100.1
- resolution: "@sentry-internal/replay-canvas@npm:7.100.1"
+"@sentry-internal/replay-canvas@npm:7.119.1":
+ version: 7.119.1
+ resolution: "@sentry-internal/replay-canvas@npm:7.119.1"
dependencies:
- "@sentry/core": 7.100.1
- "@sentry/replay": 7.100.1
- "@sentry/types": 7.100.1
- "@sentry/utils": 7.100.1
- checksum: 75fea031d77b98692c94953c915ce34b221844f2f2b2a71f7260a8566ca0ed6ce6e8b6274053b732e3cc6147379be137a427c527e729d4882e562a79e5662c3c
+ "@sentry/core": 7.119.1
+ "@sentry/replay": 7.119.1
+ "@sentry/types": 7.119.1
+ "@sentry/utils": 7.119.1
+ checksum: 2ceccf1ffebb3335dfc99b4b4245b4771da41004ef57bfb12111e0792cb708ef0f0b436620ea023e99295722326edd55cc1463e9a60b64049f785835f2cbb04b
languageName: node
linkType: hard
-"@sentry-internal/tracing@npm:7.100.1":
- version: 7.100.1
- resolution: "@sentry-internal/tracing@npm:7.100.1"
+"@sentry-internal/tracing@npm:7.119.1":
+ version: 7.119.1
+ resolution: "@sentry-internal/tracing@npm:7.119.1"
dependencies:
- "@sentry/core": 7.100.1
- "@sentry/types": 7.100.1
- "@sentry/utils": 7.100.1
- checksum: 41b4bb1c72de0f22bca00171493b448f373e158e6f6427daf177ca5e42d1987bd39ebb7ca6cfc0b40195eaeb8d7842463de80033745072328d874a5cfcecc641
+ "@sentry/core": 7.119.1
+ "@sentry/types": 7.119.1
+ "@sentry/utils": 7.119.1
+ checksum: f578c29f9c9ac59230d76deccbccd54e6011737e37c76d2c483b1a06ad11473700e1a062c99ddd6334c97843d452036295d3faa1afe4e8d63e14b7de7427b30a
+ languageName: node
+ linkType: hard
+
+"@sentry/babel-plugin-component-annotate@npm:2.20.1":
+ version: 2.20.1
+ resolution: "@sentry/babel-plugin-component-annotate@npm:2.20.1"
+ checksum: 83d9e203902ae2601a1b8fcb528c044b42a7275996df2dc775e67804b516f1467b132014d799322871777e40b1ee7d09605c8a1572d67541c1b7556049514d0d
languageName: node
linkType: hard
-"@sentry/browser@npm:7.100.1":
- version: 7.100.1
- resolution: "@sentry/browser@npm:7.100.1"
+"@sentry/browser@npm:7.119.1":
+ version: 7.119.1
+ resolution: "@sentry/browser@npm:7.119.1"
dependencies:
- "@sentry-internal/feedback": 7.100.1
- "@sentry-internal/replay-canvas": 7.100.1
- "@sentry-internal/tracing": 7.100.1
- "@sentry/core": 7.100.1
- "@sentry/replay": 7.100.1
- "@sentry/types": 7.100.1
- "@sentry/utils": 7.100.1
- checksum: a15bb761dc20b1c56071494b7079230fb3885ff240440de9c96a8344e218476060bcb5b461294ba99ff71cfec179ca07ee7cc49a900401044dcc58e15cc4ee6f
+ "@sentry-internal/feedback": 7.119.1
+ "@sentry-internal/replay-canvas": 7.119.1
+ "@sentry-internal/tracing": 7.119.1
+ "@sentry/core": 7.119.1
+ "@sentry/integrations": 7.119.1
+ "@sentry/replay": 7.119.1
+ "@sentry/types": 7.119.1
+ "@sentry/utils": 7.119.1
+ checksum: a14f25bc2ec9b61a40482a965265b22e43fbde97d583e8ece3168ed20c0a27fd9ac39ef90af6c359f0103a3ef8d61ab3bdea01a6ba69fcd8c1a9210bb18f1cd3
languageName: node
linkType: hard
-"@sentry/cli-darwin@npm:2.30.0":
- version: 2.30.0
- resolution: "@sentry/cli-darwin@npm:2.30.0"
+"@sentry/cli-darwin@npm:2.37.0":
+ version: 2.37.0
+ resolution: "@sentry/cli-darwin@npm:2.37.0"
conditions: os=darwin
languageName: node
linkType: hard
-"@sentry/cli-linux-arm64@npm:2.30.0":
- version: 2.30.0
- resolution: "@sentry/cli-linux-arm64@npm:2.30.0"
+"@sentry/cli-linux-arm64@npm:2.37.0":
+ version: 2.37.0
+ resolution: "@sentry/cli-linux-arm64@npm:2.37.0"
conditions: (os=linux | os=freebsd) & cpu=arm64
languageName: node
linkType: hard
-"@sentry/cli-linux-arm@npm:2.30.0":
- version: 2.30.0
- resolution: "@sentry/cli-linux-arm@npm:2.30.0"
+"@sentry/cli-linux-arm@npm:2.37.0":
+ version: 2.37.0
+ resolution: "@sentry/cli-linux-arm@npm:2.37.0"
conditions: (os=linux | os=freebsd) & cpu=arm
languageName: node
linkType: hard
-"@sentry/cli-linux-i686@npm:2.30.0":
- version: 2.30.0
- resolution: "@sentry/cli-linux-i686@npm:2.30.0"
+"@sentry/cli-linux-i686@npm:2.37.0":
+ version: 2.37.0
+ resolution: "@sentry/cli-linux-i686@npm:2.37.0"
conditions: (os=linux | os=freebsd) & (cpu=x86 | cpu=ia32)
languageName: node
linkType: hard
-"@sentry/cli-linux-x64@npm:2.30.0":
- version: 2.30.0
- resolution: "@sentry/cli-linux-x64@npm:2.30.0"
+"@sentry/cli-linux-x64@npm:2.37.0":
+ version: 2.37.0
+ resolution: "@sentry/cli-linux-x64@npm:2.37.0"
conditions: (os=linux | os=freebsd) & cpu=x64
languageName: node
linkType: hard
-"@sentry/cli-win32-i686@npm:2.30.0":
- version: 2.30.0
- resolution: "@sentry/cli-win32-i686@npm:2.30.0"
+"@sentry/cli-win32-i686@npm:2.37.0":
+ version: 2.37.0
+ resolution: "@sentry/cli-win32-i686@npm:2.37.0"
conditions: os=win32 & (cpu=x86 | cpu=ia32)
languageName: node
linkType: hard
-"@sentry/cli-win32-x64@npm:2.30.0":
- version: 2.30.0
- resolution: "@sentry/cli-win32-x64@npm:2.30.0"
+"@sentry/cli-win32-x64@npm:2.37.0":
+ version: 2.37.0
+ resolution: "@sentry/cli-win32-x64@npm:2.37.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
-"@sentry/cli@npm:2.30.0":
- version: 2.30.0
- resolution: "@sentry/cli@npm:2.30.0"
+"@sentry/cli@npm:2.37.0":
+ version: 2.37.0
+ resolution: "@sentry/cli@npm:2.37.0"
dependencies:
- "@sentry/cli-darwin": 2.30.0
- "@sentry/cli-linux-arm": 2.30.0
- "@sentry/cli-linux-arm64": 2.30.0
- "@sentry/cli-linux-i686": 2.30.0
- "@sentry/cli-linux-x64": 2.30.0
- "@sentry/cli-win32-i686": 2.30.0
- "@sentry/cli-win32-x64": 2.30.0
+ "@sentry/cli-darwin": 2.37.0
+ "@sentry/cli-linux-arm": 2.37.0
+ "@sentry/cli-linux-arm64": 2.37.0
+ "@sentry/cli-linux-i686": 2.37.0
+ "@sentry/cli-linux-x64": 2.37.0
+ "@sentry/cli-win32-i686": 2.37.0
+ "@sentry/cli-win32-x64": 2.37.0
https-proxy-agent: ^5.0.0
node-fetch: ^2.6.7
progress: ^2.0.3
@@ -3258,55 +2817,78 @@ __metadata:
optional: true
bin:
sentry-cli: bin/sentry-cli
- checksum: e6dd703acfc34ebf6d5cd1e2aedd9c8c9b5cb1772458fe1ceaa7a82fb09a5438d37bc5db25602ecf55583f258d77bcf113baf4f14d1d3612b6d49906b9c6dee8
+ checksum: a6e5e3510b7b6a5b3414a2b2bee3bd9c3066b05f70ff20ff65df1d7fb384458182d12a8a0f0319af02e8dbaf6f5e5d23da394eb6bdb8b9face3909699d0f9495
+ languageName: node
+ linkType: hard
+
+"@sentry/core@npm:7.119.0":
+ version: 7.119.0
+ resolution: "@sentry/core@npm:7.119.0"
+ dependencies:
+ "@sentry/types": 7.119.0
+ "@sentry/utils": 7.119.0
+ checksum: 6f2246a9a6ea5dbec8422fccd265aaf8e20582eaf03f1199ef526a41e5939b861cf5050a07975f17c0920c86b4c8cf3416e805131c713899da49d74d529d0697
+ languageName: node
+ linkType: hard
+
+"@sentry/core@npm:7.119.1":
+ version: 7.119.1
+ resolution: "@sentry/core@npm:7.119.1"
+ dependencies:
+ "@sentry/types": 7.119.1
+ "@sentry/utils": 7.119.1
+ checksum: b847298b10c1282e60ea163724b918c9e2022245474265f22c35ef3d98056a78b22a8072dda88661fefc61f1f1408b6aeb020dddb44ff11febea60a7e0f748a3
languageName: node
linkType: hard
-"@sentry/core@npm:7.100.1":
- version: 7.100.1
- resolution: "@sentry/core@npm:7.100.1"
+"@sentry/hub@npm:7.119.0":
+ version: 7.119.0
+ resolution: "@sentry/hub@npm:7.119.0"
dependencies:
- "@sentry/types": 7.100.1
- "@sentry/utils": 7.100.1
- checksum: 83c65068101d41018c223b0e0d1de7d08b8fdfca0dec24456f658fcdf06fbf8b6eebd83d98f744cbd50ea39bdfd62ce22d4f68fbacee6f54017dafc360fc1fc6
+ "@sentry/core": 7.119.0
+ "@sentry/types": 7.119.0
+ "@sentry/utils": 7.119.0
+ checksum: 92d5799a9d8775c4d4a54629eee11c1d63d8c8f9cd08ac2a79f63a93e89292e5b21b8812e3ebd9e33eeb5713208d4540f74250f7ad62e0097843e734ec2b8495
languageName: node
linkType: hard
-"@sentry/hub@npm:7.100.1":
- version: 7.100.1
- resolution: "@sentry/hub@npm:7.100.1"
+"@sentry/integrations@npm:7.119.0":
+ version: 7.119.0
+ resolution: "@sentry/integrations@npm:7.119.0"
dependencies:
- "@sentry/core": 7.100.1
- "@sentry/types": 7.100.1
- "@sentry/utils": 7.100.1
- checksum: fa9edcc2842051d424344a97de5d4f20ea52d917b5471530b1730a3effba6a07382ba73d56566b23196949ac8c6d5c346094b8ad56d872b80147b4f7b69de4d3
+ "@sentry/core": 7.119.0
+ "@sentry/types": 7.119.0
+ "@sentry/utils": 7.119.0
+ localforage: ^1.8.1
+ checksum: 1e539f0234067587380fbedb132ad4b11f715d229f1fe1571c4c545f23e6dae867d8484d825c271599e1f22d62dc66e481a78e86e6a8653fe60ddcb11b04d93b
languageName: node
linkType: hard
-"@sentry/integrations@npm:7.100.1":
- version: 7.100.1
- resolution: "@sentry/integrations@npm:7.100.1"
+"@sentry/integrations@npm:7.119.1":
+ version: 7.119.1
+ resolution: "@sentry/integrations@npm:7.119.1"
dependencies:
- "@sentry/core": 7.100.1
- "@sentry/types": 7.100.1
- "@sentry/utils": 7.100.1
+ "@sentry/core": 7.119.1
+ "@sentry/types": 7.119.1
+ "@sentry/utils": 7.119.1
localforage: ^1.8.1
- checksum: 91cc98e0a0a02c328358c6e250263e569dea129411cef5040d9c10e17e7e86dcb56955945c4dd6ca6ee54fa5e029d66d655c0228eb73ba9d8e92c4d1551c5c34
+ checksum: 929a9627a839f1826df30782a541c163e961712d0c5cc3afeec6318cc5f5dd5211a2a9e063cc0a470912cb717fef40a746dcca129089c3d2ab63026ae7d84aa5
languageName: node
linkType: hard
-"@sentry/react-native@npm:^5.20.0":
- version: 5.20.0
- resolution: "@sentry/react-native@npm:5.20.0"
+"@sentry/react-native@npm:^5.35.0":
+ version: 5.35.0
+ resolution: "@sentry/react-native@npm:5.35.0"
dependencies:
- "@sentry/browser": 7.100.1
- "@sentry/cli": 2.30.0
- "@sentry/core": 7.100.1
- "@sentry/hub": 7.100.1
- "@sentry/integrations": 7.100.1
- "@sentry/react": 7.100.1
- "@sentry/types": 7.100.1
- "@sentry/utils": 7.100.1
+ "@sentry/babel-plugin-component-annotate": 2.20.1
+ "@sentry/browser": 7.119.1
+ "@sentry/cli": 2.37.0
+ "@sentry/core": 7.119.1
+ "@sentry/hub": 7.119.0
+ "@sentry/integrations": 7.119.0
+ "@sentry/react": 7.119.1
+ "@sentry/types": 7.119.1
+ "@sentry/utils": 7.119.1
peerDependencies:
expo: ">=49.0.0"
react: ">=17.0.0"
@@ -3316,70 +2898,86 @@ __metadata:
optional: true
bin:
sentry-expo-upload-sourcemaps: scripts/expo-upload-sourcemaps.js
- checksum: d783691da628b5d54f2e38167ae6eef5494f01558ae9bf09fce2794a0033443f1aa10738250c97d1beacadc664911868790460f8d6e82a9a5a8e53d6f0cc319d
+ checksum: 5479f9cc175137c1a0128430bd43585f30d1087a48bcd7fe9bbc5a6f5ac898966466491198bf1d223dfd47a9ae5099849af22a4e09fc578c34e871f34a67c131
languageName: node
linkType: hard
-"@sentry/react@npm:7.100.1":
- version: 7.100.1
- resolution: "@sentry/react@npm:7.100.1"
+"@sentry/react@npm:7.119.1":
+ version: 7.119.1
+ resolution: "@sentry/react@npm:7.119.1"
dependencies:
- "@sentry/browser": 7.100.1
- "@sentry/core": 7.100.1
- "@sentry/types": 7.100.1
- "@sentry/utils": 7.100.1
+ "@sentry/browser": 7.119.1
+ "@sentry/core": 7.119.1
+ "@sentry/types": 7.119.1
+ "@sentry/utils": 7.119.1
hoist-non-react-statics: ^3.3.2
peerDependencies:
react: 15.x || 16.x || 17.x || 18.x
- checksum: 9a9c5761269a30bd90e0add263986ac8b7a8068f52a371717f1153af79773d69b6504372602a6b331f2c6d63f6af582b94793c7b518e81e5b24900224e1c810b
+ checksum: 05f3e90ee81d4d2f50c48b1b8a1e39a711602565059a1fbb9b9763492fd9be9659d129e2366163d278a8e41bc370dcd0d36da0009a8f7fdb8a5954b5dcdac562
languageName: node
linkType: hard
-"@sentry/replay@npm:7.100.1":
- version: 7.100.1
- resolution: "@sentry/replay@npm:7.100.1"
+"@sentry/replay@npm:7.119.1":
+ version: 7.119.1
+ resolution: "@sentry/replay@npm:7.119.1"
dependencies:
- "@sentry-internal/tracing": 7.100.1
- "@sentry/core": 7.100.1
- "@sentry/types": 7.100.1
- "@sentry/utils": 7.100.1
- checksum: c398560ed32ccb8f9e7397545a0e7f872a2e8cd7034f6328ebaa45eaa0634a09f4d687b14e2c90cab942427654b6bad15f6f49bd145ea3e3d64ae9660b5d4d47
+ "@sentry-internal/tracing": 7.119.1
+ "@sentry/core": 7.119.1
+ "@sentry/types": 7.119.1
+ "@sentry/utils": 7.119.1
+ checksum: 73e4a999de77dbc0bf05f7d97d6b7640cdfbdccda96f6af6cf31073048e906f48a05d1fd624cbdc97198f8a45ae83a7e1b4cd479733ae597a4aff4a42d7bdf62
+ languageName: node
+ linkType: hard
+
+"@sentry/types@npm:7.119.0":
+ version: 7.119.0
+ resolution: "@sentry/types@npm:7.119.0"
+ checksum: b2ca256ef1d7fb156d455908aa3e021cb2f58100355961fca454d0c5e6c1b8d1a949c479c136dbceca2b76dabcd71cd950e089c576f7e424effbe60f0c0bbaa6
languageName: node
linkType: hard
-"@sentry/types@npm:7.100.1":
- version: 7.100.1
- resolution: "@sentry/types@npm:7.100.1"
- checksum: 80c959fafff49103ed8d63f6fa0f1a7efba685b8fcd95611c166276064cb0c24b21c68ee77beedd688ed9f4b902f7f44a7a4e6d52efe23ea2c80acc44d37ef5a
+"@sentry/types@npm:7.119.1":
+ version: 7.119.1
+ resolution: "@sentry/types@npm:7.119.1"
+ checksum: 841a19bf5b1f03e24dda90542f9ff3192b0c27448066ed631ba96c4220563597c0c0d0542929b06e22c40647485e3f0479c436cc01632bfb344ab45d6e929d69
languageName: node
linkType: hard
-"@sentry/types@npm:^7.108.0":
- version: 7.108.0
- resolution: "@sentry/types@npm:7.108.0"
- checksum: 464ad6e430008fe3cfd3e30df7273b8cdeccfd474d19d05a9ac419749d4adad89c643b20af79199a614bff820cdd1aa01dc3df74307861bec7e90e4d8ac63ea4
+"@sentry/types@npm:^8.38.0":
+ version: 8.38.0
+ resolution: "@sentry/types@npm:8.38.0"
+ checksum: 615ee4d8732cefc74eb19330662eae297321a992f080efff1f15bf2957c72d211240b17ea8712bbbe88da5b29c1604efa4166ef51e745ebef58609290ef72bfe
languageName: node
linkType: hard
-"@sentry/utils@npm:7.100.1":
- version: 7.100.1
- resolution: "@sentry/utils@npm:7.100.1"
+"@sentry/utils@npm:7.119.0":
+ version: 7.119.0
+ resolution: "@sentry/utils@npm:7.119.0"
dependencies:
- "@sentry/types": 7.100.1
- checksum: c0e995bdc253a39aa497ca2135920c335c0f1a2c0c51e486255b2435919323648befe75cc5674845671f9e9beffdf2118a28670b87d7038a9633b19fe728cfb2
+ "@sentry/types": 7.119.0
+ checksum: 5fd5e5bb0a45548d65baa6c4a04481e750433daa53ce2caa0baa0db19a912b74168290043f8605ed5c10cef7db744efdca2130020d9f59dca3a89d818492daf5
languageName: node
linkType: hard
-"@sideway/address@npm:^4.1.0":
- version: 4.1.2
- resolution: "@sideway/address@npm:4.1.2"
+"@sentry/utils@npm:7.119.1":
+ version: 7.119.1
+ resolution: "@sentry/utils@npm:7.119.1"
+ dependencies:
+ "@sentry/types": 7.119.1
+ checksum: f6516c7b40483468dc16b26c392f7aa9ee50928251b588ef21a8ab0499c558c6e3d36cc9da3d71199ac6c9e27b4adc444b49d17db53bcbcebe12efe90f25b307
+ languageName: node
+ linkType: hard
+
+"@sideway/address@npm:^4.1.5":
+ version: 4.1.5
+ resolution: "@sideway/address@npm:4.1.5"
dependencies:
"@hapi/hoek": ^9.0.0
- checksum: ab43d3e2bdd90df84eac0af0b165392b67e7ebe6bcd222b732008b517f8429a27c278d787e062814c9304e21a0e2fd4d34a0c3288160ed14075d4636d61973bc
+ checksum: 638eb6f7e7dba209053dd6c8da74d7cc995e2b791b97644d0303a7dd3119263bcb7225a4f6804d4db2bc4f96e5a9d262975a014f58eae4d1753c27cbc96ef959
languageName: node
linkType: hard
-"@sideway/formula@npm:^3.0.0":
+"@sideway/formula@npm:^3.0.1":
version: 3.0.1
resolution: "@sideway/formula@npm:3.0.1"
checksum: 3fe81fa9662efc076bf41612b060eb9b02e846ea4bea5bd114f1662b7f1541e9dedcf98aff0d24400bcb92f113964a50e0290b86e284edbdf6346fa9b7e2bf2c
@@ -3575,7 +3173,7 @@ __metadata:
languageName: node
linkType: hard
-"@testing-library/react-native@npm:^12.4.4":
+"@testing-library/react-native@npm:^12.8.1":
version: 12.8.1
resolution: "@testing-library/react-native@npm:12.8.1"
dependencies:
@@ -3594,13 +3192,6 @@ __metadata:
languageName: node
linkType: hard
-"@tootallnate/once@npm:2":
- version: 2.0.0
- resolution: "@tootallnate/once@npm:2.0.0"
- checksum: 073bfa548026b1ebaf1659eb8961e526be22fa77139b10d60e712f46d2f0f05f4e6c8bec62a087d41088ee9e29faa7f54838568e475ab2f776171003c3920858
- languageName: node
- linkType: hard
-
"@trivago/prettier-plugin-sort-imports@npm:^4.3.0":
version: 4.3.0
resolution: "@trivago/prettier-plugin-sort-imports@npm:4.3.0"
@@ -3629,34 +3220,34 @@ __metadata:
linkType: hard
"@tsconfig/node10@npm:^1.0.7":
- version: 1.0.8
- resolution: "@tsconfig/node10@npm:1.0.8"
- checksum: d400f7b5c02acd74620f892c0f41cea39e7c1b5f7f272ad6f127f4b1fba23346b2d8e30d272731a733675494145f6aa74f9faf050390c034c7c553123ab979b3
+ version: 1.0.11
+ resolution: "@tsconfig/node10@npm:1.0.11"
+ checksum: 28a0710e5d039e0de484bdf85fee883bfd3f6a8980601f4d44066b0a6bcd821d31c4e231d1117731c4e24268bd4cf2a788a6787c12fc7f8d11014c07d582783c
languageName: node
linkType: hard
"@tsconfig/node12@npm:^1.0.7":
- version: 1.0.9
- resolution: "@tsconfig/node12@npm:1.0.9"
- checksum: fc1fb68a89d8a641953036d23d95fe68f69f74d37a499db20791b09543ad23afe7ae9ee0840eea92dd470bdcba69eef6f1ed3fe90ba64d763bcd3f738e364597
+ version: 1.0.11
+ resolution: "@tsconfig/node12@npm:1.0.11"
+ checksum: dddca2b553e2bee1308a056705103fc8304e42bb2d2cbd797b84403a223b25c78f2c683ec3e24a095e82cd435387c877239bffcb15a590ba817cd3f6b9a99fd9
languageName: node
linkType: hard
"@tsconfig/node14@npm:^1.0.0":
- version: 1.0.1
- resolution: "@tsconfig/node14@npm:1.0.1"
- checksum: abd4e27d9ad712e1e229716a3dbf35d5cbb580d624a82d67414e7606cefd85d502e58800a2ab930d46a428fcfcb199436283b1a88e47d738ca1a5f7fd022ee74
+ version: 1.0.3
+ resolution: "@tsconfig/node14@npm:1.0.3"
+ checksum: 67c1316d065fdaa32525bc9449ff82c197c4c19092b9663b23213c8cbbf8d88b6ed6a17898e0cbc2711950fbfaf40388938c1c748a2ee89f7234fc9e7fe2bf44
languageName: node
linkType: hard
"@tsconfig/node16@npm:^1.0.2":
- version: 1.0.2
- resolution: "@tsconfig/node16@npm:1.0.2"
- checksum: d402706562444a173d48810d13fdf866c78f1b876ed8962eeac6c7cddf4e29e8aaa06dc28093219e3e9eb6316799cf4d9a7acba62c6a4e215ee0c94d83f9081f
+ version: 1.0.4
+ resolution: "@tsconfig/node16@npm:1.0.4"
+ checksum: 05f8f2734e266fb1839eb1d57290df1664fe2aa3b0fdd685a9035806daa635f7519bf6d5d9b33f6e69dd545b8c46bd6e2b5c79acb2b1f146e885f7f11a42a5bb
languageName: node
linkType: hard
-"@types/babel__core@npm:^7, @types/babel__core@npm:^7.1.14":
+"@types/babel__core@npm:^7.1.14":
version: 7.20.5
resolution: "@types/babel__core@npm:7.20.5"
dependencies:
@@ -3670,30 +3261,30 @@ __metadata:
linkType: hard
"@types/babel__generator@npm:*":
- version: 7.6.3
- resolution: "@types/babel__generator@npm:7.6.3"
+ version: 7.6.8
+ resolution: "@types/babel__generator@npm:7.6.8"
dependencies:
"@babel/types": ^7.0.0
- checksum: 13921f2661cd0f1fe0c73dacbeac1e65580182d289911a8df7edb441656e58e2907e3e7f517f8bbf8dbe179892f8afef5f951f682ea12778e66dc21b64614091
+ checksum: f0ba105e7d2296bf367d6e055bb22996886c114261e2cb70bf9359556d0076c7a57239d019dee42bb063f565bade5ccb46009bce2044b2952d964bf9a454d6d2
languageName: node
linkType: hard
"@types/babel__template@npm:*":
- version: 7.4.1
- resolution: "@types/babel__template@npm:7.4.1"
+ version: 7.4.4
+ resolution: "@types/babel__template@npm:7.4.4"
dependencies:
"@babel/parser": ^7.1.0
"@babel/types": ^7.0.0
- checksum: 6f180e96c39765487f27e861d43eebed341ec7a2fc06cdf5a52c22872fae67f474ca165d149c708f4fd9d5482beb66c0a92f77411b234bb30262ed2303e50b1a
+ checksum: cc84f6c6ab1eab1427e90dd2b76ccee65ce940b778a9a67be2c8c39e1994e6f5bbc8efa309f6cea8dc6754994524cd4d2896558df76d92e7a1f46ecffee7112b
languageName: node
linkType: hard
"@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.0.6":
- version: 7.14.2
- resolution: "@types/babel__traverse@npm:7.14.2"
+ version: 7.20.6
+ resolution: "@types/babel__traverse@npm:7.20.6"
dependencies:
- "@babel/types": ^7.3.0
- checksum: 39abd9c0f8858efe3fa955f52d24ec8d953582080702cea29fd5592e697ac624e04e81da3c2b2be8f4f1387350e651802b4f1c481a9f64b002d144bd2152142b
+ "@babel/types": ^7.20.7
+ checksum: 7ba7db61a53e28cac955aa99af280d2600f15a8c056619c05b6fc911cbe02c61aa4f2823299221b23ce0cce00b294c0e5f618ec772aa3f247523c2e48cf7b888
languageName: node
linkType: hard
@@ -3776,38 +3367,38 @@ __metadata:
linkType: hard
"@types/hammerjs@npm:^2.0.36":
- version: 2.0.40
- resolution: "@types/hammerjs@npm:2.0.40"
- checksum: 0ff9dc3649915c59dd893b88736b215bb7cf0c0c87f7f2b4a8a1049e1dd3112eaa93a36c3d6d80e9dcd322144e3a17d91da7419facdf8f240a1d6347c32c7abe
+ version: 2.0.46
+ resolution: "@types/hammerjs@npm:2.0.46"
+ checksum: f3c1cb20dc2f0523f7b8c76065078544d50d8ae9b0edc1f62fed657210ed814266ff2dfa835d2c157a075991001eec3b64c88bf92e3e6e895c0db78d05711d06
languageName: node
linkType: hard
"@types/istanbul-lib-coverage@npm:*, @types/istanbul-lib-coverage@npm:^2.0.0, @types/istanbul-lib-coverage@npm:^2.0.1":
- version: 2.0.3
- resolution: "@types/istanbul-lib-coverage@npm:2.0.3"
- checksum: 820d093eed629844074ae6b94b7d131eb0aacf33b9c952488d20ccab9dadf1376dbb33a461960ace5bc58208b5fac3ff5991283e9bf07914150998ebdfb0115e
+ version: 2.0.6
+ resolution: "@types/istanbul-lib-coverage@npm:2.0.6"
+ checksum: 3948088654f3eeb45363f1db158354fb013b362dba2a5c2c18c559484d5eb9f6fd85b23d66c0a7c2fcfab7308d0a585b14dadaca6cc8bf89ebfdc7f8f5102fb7
languageName: node
linkType: hard
"@types/istanbul-lib-report@npm:*":
- version: 3.0.0
- resolution: "@types/istanbul-lib-report@npm:3.0.0"
+ version: 3.0.3
+ resolution: "@types/istanbul-lib-report@npm:3.0.3"
dependencies:
"@types/istanbul-lib-coverage": "*"
- checksum: 7ced458631276a28082ee40645224c3cdd8b861961039ff811d841069171c987ec7e50bc221845ec0d04df0022b2f457a21fb2f816dab2fbe64d59377b32031f
+ checksum: 247e477bbc1a77248f3c6de5dadaae85ff86ac2d76c5fc6ab1776f54512a745ff2a5f791d22b942e3990ddbd40f3ef5289317c4fca5741bedfaa4f01df89051c
languageName: node
linkType: hard
"@types/istanbul-reports@npm:^3.0.0":
- version: 3.0.1
- resolution: "@types/istanbul-reports@npm:3.0.1"
+ version: 3.0.4
+ resolution: "@types/istanbul-reports@npm:3.0.4"
dependencies:
"@types/istanbul-lib-report": "*"
- checksum: e147f0db9346a0cae9a359220bc76f7c78509fb6979a2597feb24d64b6e8328d2d26f9d152abbd59c6bca721e4ea2530af20116d01df50815efafd1e151fd777
+ checksum: 1647fd402aced5b6edac87274af14ebd6b3a85447ef9ad11853a70fd92a98d35f81a5d3ea9fcb5dbb5834e800c6e35b64475e33fcae6bfa9acc70d61497c54ee
languageName: node
linkType: hard
-"@types/jest@npm:^29.5.12":
+"@types/jest@npm:^29.5.14":
version: 29.5.14
resolution: "@types/jest@npm:29.5.14"
dependencies:
@@ -3817,7 +3408,7 @@ __metadata:
languageName: node
linkType: hard
-"@types/json-schema@npm:^7.0.12, @types/json-schema@npm:^7.0.9":
+"@types/json-schema@npm:^7.0.12":
version: 7.0.15
resolution: "@types/json-schema@npm:7.0.15"
checksum: a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db
@@ -3831,64 +3422,56 @@ __metadata:
languageName: node
linkType: hard
-"@types/node@npm:*":
- version: 20.11.30
- resolution: "@types/node@npm:20.11.30"
+"@types/node-forge@npm:^1.3.0":
+ version: 1.3.11
+ resolution: "@types/node-forge@npm:1.3.11"
dependencies:
- undici-types: ~5.26.4
- checksum: 867cfaf969c6d8850d8d7304e7ab739898a50ecb1395b61ff2335644f5f48d7a46fbc4a14cee967aed65ec134b61a746edae70d1f32f11321ccf29165e3bc4e6
+ "@types/node": "*"
+ checksum: 3d7d23ca0ba38ac0cf74028393bd70f31169ab9aba43f21deb787840170d307d662644bac07287495effe2812ddd7ac8a14dbd43f16c2936bbb06312e96fc3b9
languageName: node
linkType: hard
-"@types/node@npm:^20.11.30":
- version: 20.17.4
- resolution: "@types/node@npm:20.17.4"
+"@types/node@npm:*":
+ version: 22.8.7
+ resolution: "@types/node@npm:22.8.7"
dependencies:
- undici-types: ~6.19.2
- checksum: ce6e0a75bbc6b292db4c3bb72884f588753d8751699a3f4a60d5ba4ec1f0fa3d3f08547eacfaf9de517831960c1d6ca3430a28493b5d13b8beacb76e912da35c
+ undici-types: ~6.19.8
+ checksum: 14372885db80059ed6e92c320b2bcd8f7dc271698adce11f51aa0f424a3f82aa1749a4f66321b87043791b894346b2458d514cbb65ce70167c2fd8a78a124947
languageName: node
linkType: hard
-"@types/prop-types@npm:*":
- version: 15.7.4
- resolution: "@types/prop-types@npm:15.7.4"
- checksum: 014bb826592fab01499931259969aafc21d5a8ff4ece3e3fb8e2b5186bed17656f7dcdccf9a98c27fee74d7d0697aa3f53ea971a72679597f0ca0c3d5ca585d3
+"@types/node@npm:^20.17.6":
+ version: 20.17.6
+ resolution: "@types/node@npm:20.17.6"
+ dependencies:
+ undici-types: ~6.19.2
+ checksum: 5918c7ff8368bbe6d06d5e739c8ae41a9db41628f28760c60cda797be7d233406f07c4d0e6fdd960a0a342ec4173c2217eb6624e06bece21c1f1dd1b92805c15
languageName: node
linkType: hard
-"@types/react-native@npm:^0.70.19":
- version: 0.70.19
- resolution: "@types/react-native@npm:0.70.19"
- dependencies:
- "@types/react": "*"
- checksum: 09a5191dd0f3b85abfa8939df585860ba11a666d888846c7fd7d8d5d1cd72a39224e154403f90a5b82f1dc6c896fa3447e4f5061b2d3e102d0ce798e559d7f13
+"@types/prop-types@npm:*":
+ version: 15.7.13
+ resolution: "@types/prop-types@npm:15.7.13"
+ checksum: 1b20fc67281902c6743379960247bc161f3f0406ffc0df8e7058745a85ea1538612109db0406290512947f9632fe9e10e7337bf0ce6338a91d6c948df16a7c61
languageName: node
linkType: hard
-"@types/react-test-renderer@npm:^18.0.7":
- version: 18.0.7
- resolution: "@types/react-test-renderer@npm:18.0.7"
+"@types/react-test-renderer@npm:^18.3.0":
+ version: 18.3.0
+ resolution: "@types/react-test-renderer@npm:18.3.0"
dependencies:
"@types/react": "*"
- checksum: 45cbe963354acee2ab090979d856763c84f59ef7b63477d1fef5d0fd52760b69aa67bbd205fbd3bd36264620fce72c8e407735a9f2009c40ca50da59b0058c34
+ checksum: 3c9748be52e8e659e7adf91dea6939486463264e6f633bf21c4cb116de18af7bef0595568a1e588160420b2f65289473075dda1cb417c2875df8cf7a09f5d913
languageName: node
linkType: hard
"@types/react@npm:*":
- version: 17.0.35
- resolution: "@types/react@npm:17.0.35"
+ version: 18.3.12
+ resolution: "@types/react@npm:18.3.12"
dependencies:
"@types/prop-types": "*"
- "@types/scheduler": "*"
csstype: ^3.0.2
- checksum: c24aeae3ca1b2621e30d98b28b9cfd3bcb3971ab3fc2273547543fa2bd98f9d5bffda841953297aaee6fe946ad0c22df6516258e00bb47f4b5e41a23164839ed
- languageName: node
- linkType: hard
-
-"@types/scheduler@npm:*":
- version: 0.16.2
- resolution: "@types/scheduler@npm:0.16.2"
- checksum: 89a3a922f03609b61c270d534226791edeedcb1b06f0225d5543ac17830254624ef9d8a97ad05418e4ce549dd545bddf1ff28cb90658ff10721ad14556ca68a5
+ checksum: 8bae8d9a41619804561574792e29112b413044eb0d53746dde2b9720c1f9a59f71c895bbd7987cd8ce9500b00786e53bc032dced38cddf42910458e145675290
languageName: node
linkType: hard
@@ -3900,9 +3483,9 @@ __metadata:
linkType: hard
"@types/stack-utils@npm:^2.0.0":
- version: 2.0.1
- resolution: "@types/stack-utils@npm:2.0.1"
- checksum: 3327ee919a840ffe907bbd5c1d07dfd79137dd9732d2d466cf717ceec5bb21f66296173c53bb56cff95fae4185b9cd6770df3e9745fe4ba528bbc4975f54d13f
+ version: 2.0.3
+ resolution: "@types/stack-utils@npm:2.0.3"
+ checksum: 1f4658385ae936330581bcb8aa3a066df03867d90281cdf89cc356d404bd6579be0f11902304e1f775d92df22c6dd761d4451c804b0a4fba973e06211e9bd77c
languageName: node
linkType: hard
@@ -3928,89 +3511,68 @@ __metadata:
linkType: hard
"@types/yargs-parser@npm:*":
- version: 20.2.1
- resolution: "@types/yargs-parser@npm:20.2.1"
- checksum: 9171590c7f6762fa753cfe25b3d61f468ed4eebc011c3856fffc4937b14bff03b6b02fe93246ae7e01c4e09a6c3aa980a1637d7171869e32041992340f5445bc
+ version: 21.0.3
+ resolution: "@types/yargs-parser@npm:21.0.3"
+ checksum: e71c3bd9d0b73ca82e10bee2064c384ab70f61034bbfb78e74f5206283fc16a6d85267b606b5c22cb2a3338373586786fed595b2009825d6a9115afba36560a0
languageName: node
linkType: hard
"@types/yargs@npm:^15.0.0":
- version: 15.0.14
- resolution: "@types/yargs@npm:15.0.14"
- dependencies:
- "@types/yargs-parser": "*"
- checksum: 49eb8ad456c218a6dc8abd90a6f635a3ef44bb59161fbee2e9208f86fcb931668bb3559cad8cfe9a84d9c32b98034e37fefc2d728c3a077784b51971f0766b2e
- languageName: node
- linkType: hard
-
-"@types/yargs@npm:^16.0.0":
- version: 16.0.9
- resolution: "@types/yargs@npm:16.0.9"
+ version: 15.0.19
+ resolution: "@types/yargs@npm:15.0.19"
dependencies:
"@types/yargs-parser": "*"
- checksum: be24bd9a56c97ddb2964c1c18f5b9fe8271a50e100dc6945989901aae58f7ce6fb8f3a591c749a518401b6301358dbd1997e83c36138a297094feae7f9ac8211
+ checksum: 9fe9b8645304a628006cbba2d1990fb015e2727274d0e3853f321a379a1242d1da2c15d2f56cff0d4313ae94f0383ccf834c3bded9fb3589608aefb3432fcf00
languageName: node
linkType: hard
"@types/yargs@npm:^17.0.8":
- version: 17.0.32
- resolution: "@types/yargs@npm:17.0.32"
+ version: 17.0.33
+ resolution: "@types/yargs@npm:17.0.33"
dependencies:
"@types/yargs-parser": "*"
- checksum: 2095e8aad8a4e66b86147415364266b8d607a3b95b4239623423efd7e29df93ba81bb862784a6e08664f645cc1981b25fd598f532019174cd3e5e1e689e1cccf
+ checksum: d16937d7ac30dff697801c3d6f235be2166df42e4a88bf730fa6dc09201de3727c0a9500c59a672122313341de5f24e45ee0ff579c08ce91928e519090b7906b
languageName: node
linkType: hard
-"@typescript-eslint/eslint-plugin@npm:^7.4.0":
- version: 7.4.0
- resolution: "@typescript-eslint/eslint-plugin@npm:7.4.0"
+"@typescript-eslint/eslint-plugin@npm:^8.14.0":
+ version: 8.14.0
+ resolution: "@typescript-eslint/eslint-plugin@npm:8.14.0"
dependencies:
- "@eslint-community/regexpp": ^4.5.1
- "@typescript-eslint/scope-manager": 7.4.0
- "@typescript-eslint/type-utils": 7.4.0
- "@typescript-eslint/utils": 7.4.0
- "@typescript-eslint/visitor-keys": 7.4.0
- debug: ^4.3.4
+ "@eslint-community/regexpp": ^4.10.0
+ "@typescript-eslint/scope-manager": 8.14.0
+ "@typescript-eslint/type-utils": 8.14.0
+ "@typescript-eslint/utils": 8.14.0
+ "@typescript-eslint/visitor-keys": 8.14.0
graphemer: ^1.4.0
- ignore: ^5.2.4
+ ignore: ^5.3.1
natural-compare: ^1.4.0
- semver: ^7.5.4
- ts-api-utils: ^1.0.1
+ ts-api-utils: ^1.3.0
peerDependencies:
- "@typescript-eslint/parser": ^7.0.0
- eslint: ^8.56.0
+ "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0
+ eslint: ^8.57.0 || ^9.0.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: 840da6536da48e95602ee11450485bdba34d357f2b6dbbad4cc80d2491a3ee4eda35bd23345f4c9cfc0e3c3b05bd1257bb40ea32fe27b023252bb3177668c642
+ checksum: 46c82eb45be82ffec0ab04728a5180691b1d17002c669864861a3044b6d2105a75ca23cc80d18721b40b5e7dff1eff4ed68a43d726e25d55f3e466a9fbeeb873
languageName: node
linkType: hard
-"@typescript-eslint/parser@npm:^7.4.0":
- version: 7.4.0
- resolution: "@typescript-eslint/parser@npm:7.4.0"
+"@typescript-eslint/parser@npm:^8.14.0":
+ version: 8.14.0
+ resolution: "@typescript-eslint/parser@npm:8.14.0"
dependencies:
- "@typescript-eslint/scope-manager": 7.4.0
- "@typescript-eslint/types": 7.4.0
- "@typescript-eslint/typescript-estree": 7.4.0
- "@typescript-eslint/visitor-keys": 7.4.0
+ "@typescript-eslint/scope-manager": 8.14.0
+ "@typescript-eslint/types": 8.14.0
+ "@typescript-eslint/typescript-estree": 8.14.0
+ "@typescript-eslint/visitor-keys": 8.14.0
debug: ^4.3.4
peerDependencies:
- eslint: ^8.56.0
+ eslint: ^8.57.0 || ^9.0.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: 70ae32d406685e83fc26b4f4d3eb90c59965e0ff4fec4fd89ecd3cb386376bedb75cd8c11691b9de4743243d61a7d17ae242fe6c689a7c443a8977bc9755700b
- languageName: node
- linkType: hard
-
-"@typescript-eslint/scope-manager@npm:5.30.5":
- version: 5.30.5
- resolution: "@typescript-eslint/scope-manager@npm:5.30.5"
- dependencies:
- "@typescript-eslint/types": 5.30.5
- "@typescript-eslint/visitor-keys": 5.30.5
- checksum: dc1c4ac4cda9f450682b9269775211b7123bc2f6b3c612f31aed8ed6a60e3ef89817f2f8230e5dfed342dbde28d4088cadf9a2165557ed229766c506cfe2a133
+ checksum: 522b7afd25cd302c0510cc71985ba55ff92ecc5dbe3fc74a76fefea0169252fdd4b8cad6291fef05f63dfc173951af450dca20859c7f23e387b2e7410e8b97b1
languageName: node
linkType: hard
@@ -4024,37 +3586,28 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/scope-manager@npm:7.4.0":
- version: 7.4.0
- resolution: "@typescript-eslint/scope-manager@npm:7.4.0"
+"@typescript-eslint/scope-manager@npm:8.14.0":
+ version: 8.14.0
+ resolution: "@typescript-eslint/scope-manager@npm:8.14.0"
dependencies:
- "@typescript-eslint/types": 7.4.0
- "@typescript-eslint/visitor-keys": 7.4.0
- checksum: d1dddf6819d753063fbbcae2cd01e861d0162a9755c6c786901654ccb9d316ca1dcc5887a61fb70e72372db4c2e67c6d1890f09d8b0270971c18b48808765ba9
+ "@typescript-eslint/types": 8.14.0
+ "@typescript-eslint/visitor-keys": 8.14.0
+ checksum: 1e1295c6f9febadf63559aad328b23d960510ce6b4c9f74e10d881c3858fa7f1db767cd1af5272d2fe7c9c5c7daebee71854e6f841e413e5d70af282f6616e26
languageName: node
linkType: hard
-"@typescript-eslint/type-utils@npm:7.4.0":
- version: 7.4.0
- resolution: "@typescript-eslint/type-utils@npm:7.4.0"
+"@typescript-eslint/type-utils@npm:8.14.0":
+ version: 8.14.0
+ resolution: "@typescript-eslint/type-utils@npm:8.14.0"
dependencies:
- "@typescript-eslint/typescript-estree": 7.4.0
- "@typescript-eslint/utils": 7.4.0
+ "@typescript-eslint/typescript-estree": 8.14.0
+ "@typescript-eslint/utils": 8.14.0
debug: ^4.3.4
- ts-api-utils: ^1.0.1
- peerDependencies:
- eslint: ^8.56.0
+ ts-api-utils: ^1.3.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: 17cc4159095f978fe885dba7299fc3bdb89b74068f2c30aff55b3281a2920ab0a8f5ebb15276bd3dd22ae5504e15dc6ac5021c8f0a5c05cf3f5e514f90049c96
- languageName: node
- linkType: hard
-
-"@typescript-eslint/types@npm:5.30.5":
- version: 5.30.5
- resolution: "@typescript-eslint/types@npm:5.30.5"
- checksum: 4a864c213bfae70c6ae8ace43158075ef7118f3f60054c933c61eca1d2fc941ad92a44682626f35d2dedc8747157214af27cfe1a7d27f597e38a8f6a545ad19e
+ checksum: 42616a664b38ca418e13504247e5e1bad6ae85c045b48e5735ffab977d4bd58cc86fb9d2292bbb314fa408d78d4b0454c3a27dbf9f881f9921917a942825c806
languageName: node
linkType: hard
@@ -4065,28 +3618,10 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/types@npm:7.4.0":
- version: 7.4.0
- resolution: "@typescript-eslint/types@npm:7.4.0"
- checksum: 685df163cdd6d546de8a2d22896e461777a89756faf1f34342c959e7d3f4cc75b1f47a96da50483fe1da75d06515bb105f58339d277ad7e02c15ab61c90ad097
- languageName: node
- linkType: hard
-
-"@typescript-eslint/typescript-estree@npm:5.30.5":
- version: 5.30.5
- resolution: "@typescript-eslint/typescript-estree@npm:5.30.5"
- dependencies:
- "@typescript-eslint/types": 5.30.5
- "@typescript-eslint/visitor-keys": 5.30.5
- debug: ^4.3.4
- globby: ^11.1.0
- is-glob: ^4.0.3
- semver: ^7.3.7
- tsutils: ^3.21.0
- peerDependenciesMeta:
- typescript:
- optional: true
- checksum: 7e28a459610c0f2c13ea4dce2020608f747dd5437e1b22154a93aec03f33fa5928561c09f24afe652ac20e3646de2979e689b4fe1f770e66c4894216466ea1c5
+"@typescript-eslint/types@npm:8.14.0":
+ version: 8.14.0
+ resolution: "@typescript-eslint/types@npm:8.14.0"
+ checksum: 7707f900e24e60e6780c5705f69627b7c0ef912cb3b095dfc8f4a0c84e866c66b1c4c10278cf99724560dc66985ec640750c4192786a09b853f9bb4c3ca5a7ce
languageName: node
linkType: hard
@@ -4109,55 +3644,36 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/typescript-estree@npm:7.4.0":
- version: 7.4.0
- resolution: "@typescript-eslint/typescript-estree@npm:7.4.0"
+"@typescript-eslint/typescript-estree@npm:8.14.0":
+ version: 8.14.0
+ resolution: "@typescript-eslint/typescript-estree@npm:8.14.0"
dependencies:
- "@typescript-eslint/types": 7.4.0
- "@typescript-eslint/visitor-keys": 7.4.0
+ "@typescript-eslint/types": 8.14.0
+ "@typescript-eslint/visitor-keys": 8.14.0
debug: ^4.3.4
- globby: ^11.1.0
+ fast-glob: ^3.3.2
is-glob: ^4.0.3
- minimatch: 9.0.3
- semver: ^7.5.4
- ts-api-utils: ^1.0.1
+ minimatch: ^9.0.4
+ semver: ^7.6.0
+ ts-api-utils: ^1.3.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: 31910f9283bcb2db7d3dd77b5a3b0c52e9769cd296e78a5ba742360f9e1971a6a3e1b5eb31109b4d584a62c2caa3075a346c5413b55e28cda0226a73865d62b7
+ checksum: 5e890d22bd067095f871cf144907a8c302db5b5f014c58906ad58d7f23569951cba805042eac6844744e5abb0d3648c9cc221a91b0703da0a8d6345dc1f83e74
languageName: node
linkType: hard
-"@typescript-eslint/utils@npm:7.4.0":
- version: 7.4.0
- resolution: "@typescript-eslint/utils@npm:7.4.0"
+"@typescript-eslint/utils@npm:8.14.0, @typescript-eslint/utils@npm:^6.0.0 || ^7.0.0 || ^8.0.0":
+ version: 8.14.0
+ resolution: "@typescript-eslint/utils@npm:8.14.0"
dependencies:
"@eslint-community/eslint-utils": ^4.4.0
- "@types/json-schema": ^7.0.12
- "@types/semver": ^7.5.0
- "@typescript-eslint/scope-manager": 7.4.0
- "@typescript-eslint/types": 7.4.0
- "@typescript-eslint/typescript-estree": 7.4.0
- semver: ^7.5.4
- peerDependencies:
- eslint: ^8.56.0
- checksum: 347897e0c20e752b62988cbc6477a3788140671692f383355c1fa21e21272561a1bb81927cf99b4ec6fe6094fdb4d010e330ef58674020513e9209992db8aac1
- languageName: node
- linkType: hard
-
-"@typescript-eslint/utils@npm:^5.10.0":
- version: 5.30.5
- resolution: "@typescript-eslint/utils@npm:5.30.5"
- dependencies:
- "@types/json-schema": ^7.0.9
- "@typescript-eslint/scope-manager": 5.30.5
- "@typescript-eslint/types": 5.30.5
- "@typescript-eslint/typescript-estree": 5.30.5
- eslint-scope: ^5.1.1
- eslint-utils: ^3.0.0
+ "@typescript-eslint/scope-manager": 8.14.0
+ "@typescript-eslint/types": 8.14.0
+ "@typescript-eslint/typescript-estree": 8.14.0
peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- checksum: 976a6a8fba762d9bd3e41109f5ec453e0113f9a646a81d818c881038ba669671516fcc8f5a7b8f9f14c2cd9fcd809494eaed2af514a51701d4e4fbf130bfe695
+ eslint: ^8.57.0 || ^9.0.0
+ checksum: 1fcc2651d870832a799a5d1c85fc9421853508a006d6a6073c8316b012489dda77e123d13aea8f53eb9030a2da2c0eb273a6946a9941caa2519b99b33e89b720
languageName: node
linkType: hard
@@ -4178,16 +3694,6 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/visitor-keys@npm:5.30.5":
- version: 5.30.5
- resolution: "@typescript-eslint/visitor-keys@npm:5.30.5"
- dependencies:
- "@typescript-eslint/types": 5.30.5
- eslint-visitor-keys: ^3.3.0
- checksum: 20ecb642bae7aa806840e5fca95f8d180339da65a295b87c9713efe65bb77f809e2a56252d8297619d2ffde47306ab5f2ed8ed398cbf27c61bbcbc8781bd7e52
- languageName: node
- linkType: hard
-
"@typescript-eslint/visitor-keys@npm:6.21.0":
version: 6.21.0
resolution: "@typescript-eslint/visitor-keys@npm:6.21.0"
@@ -4198,13 +3704,13 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/visitor-keys@npm:7.4.0":
- version: 7.4.0
- resolution: "@typescript-eslint/visitor-keys@npm:7.4.0"
+"@typescript-eslint/visitor-keys@npm:8.14.0":
+ version: 8.14.0
+ resolution: "@typescript-eslint/visitor-keys@npm:8.14.0"
dependencies:
- "@typescript-eslint/types": 7.4.0
- eslint-visitor-keys: ^3.4.1
- checksum: bd2ca99f4a771494b89124a1e4cd7f3c817ca4916b8a0168c5c226a245f25cf646b10095100fb8cb6d97134f63fa5bb15098daa94f48657b65332e8671ffdb52
+ "@typescript-eslint/types": 8.14.0
+ eslint-visitor-keys: ^3.4.3
+ checksum: d0faf70ed9ecff5e36694bbb161a90bea6db59e0e79a7d4f264d67d565c12b13733d664b736b2730935f013c87ce3155cea954a533d28e99987681bc5f6259c3
languageName: node
linkType: hard
@@ -4222,10 +3728,10 @@ __metadata:
languageName: node
linkType: hard
-"abbrev@npm:1":
- version: 1.1.1
- resolution: "abbrev@npm:1.1.1"
- checksum: 3f762677702acb24f65e813070e306c61fafe25d4b2583f9dfc935131f774863f3addd5741572ed576bd69cabe473c5af18e1e108b829cb7b6b4747884f726e6
+"abbrev@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "abbrev@npm:2.0.0"
+ checksum: f742a5a107473946f426c691c08daba61a1d15942616f300b5d32fd735be88fef5cba24201757b6c407fd564555fb48c751cfa33519b2605c8a7aadd22baf372
languageName: node
linkType: hard
@@ -4238,20 +3744,13 @@ __metadata:
languageName: node
linkType: hard
-"absolute-path@npm:^0.0.0":
- version: 0.0.0
- resolution: "absolute-path@npm:0.0.0"
- checksum: 5ef1a7ef4968c5f9c953c9b5f185154f6b968205e48b2e1b07633ef5c71ccafcb9f50c8ababd5b3ef2a16e006aab0282a45869f170723b594b3b2bf8b6a20660
- languageName: node
- linkType: hard
-
-"accepts@npm:^1.3.7, accepts@npm:~1.3.5, accepts@npm:~1.3.7":
- version: 1.3.7
- resolution: "accepts@npm:1.3.7"
+"accepts@npm:^1.3.7, accepts@npm:~1.3.7":
+ version: 1.3.8
+ resolution: "accepts@npm:1.3.8"
dependencies:
- mime-types: ~2.1.24
- negotiator: 0.6.2
- checksum: 74c5fc6ad208529258916abc240640caa09d577c991f36bc15916a537b6a2e72ef051c204499297bf7e78357d19e86eb989fb81f558d004be44a33fdc17a9057
+ mime-types: ~2.1.34
+ negotiator: 0.6.3
+ checksum: 3a35c5f5586cfb9a21163ca47a5f77ac34fa8ceb5d17d2fa2c0d81f41cbd7f8c6fa52c77e2c039acc0f4d09e71abdc51144246900f6bef5e3c4b333f77d89362
languageName: node
linkType: hard
@@ -4265,22 +3764,24 @@ __metadata:
linkType: hard
"acorn-walk@npm:^8.1.1":
- version: 8.2.0
- resolution: "acorn-walk@npm:8.2.0"
- checksum: dbe92f5b2452c93e960c5594e666dd1fae141b965ff2cb4a1e1d0381e3e4db4274c5ce4ffa3d681a86ca2a8d4e29d5efc0670a08e23fd2800051ea387df56ca2
+ version: 8.3.4
+ resolution: "acorn-walk@npm:8.3.4"
+ dependencies:
+ acorn: ^8.11.0
+ checksum: 76537ac5fb2c37a64560feaf3342023dadc086c46da57da363e64c6148dc21b57d49ace26f949e225063acb6fb441eabffd89f7a3066de5ad37ab3e328927c62
languageName: node
linkType: hard
-"acorn@npm:^8.4.1, acorn@npm:^8.9.0":
- version: 8.11.3
- resolution: "acorn@npm:8.11.3"
+"acorn@npm:^8.11.0, acorn@npm:^8.4.1, acorn@npm:^8.8.2, acorn@npm:^8.9.0":
+ version: 8.14.0
+ resolution: "acorn@npm:8.14.0"
bin:
acorn: bin/acorn
- checksum: 3ff155f8812e4a746fee8ecff1f227d527c4c45655bb1fad6347c3cb58e46190598217551b1500f18542d2bbe5c87120cb6927f5a074a59166fbdd9468f0a299
+ checksum: 6d4ee461a7734b2f48836ee0fbb752903606e576cc100eb49340295129ca0b452f3ba91ddd4424a1d4406a98adfb2ebb6bd0ff4c49d7a0930c10e462719bbfd7
languageName: node
linkType: hard
-"agent-base@npm:6, agent-base@npm:^6.0.2":
+"agent-base@npm:6":
version: 6.0.2
resolution: "agent-base@npm:6.0.2"
dependencies:
@@ -4289,14 +3790,12 @@ __metadata:
languageName: node
linkType: hard
-"agentkeepalive@npm:^4.2.1":
- version: 4.2.1
- resolution: "agentkeepalive@npm:4.2.1"
+"agent-base@npm:^7.0.2, agent-base@npm:^7.1.0, agent-base@npm:^7.1.1":
+ version: 7.1.1
+ resolution: "agent-base@npm:7.1.1"
dependencies:
- debug: ^4.1.0
- depd: ^1.1.2
- humanize-ms: ^1.2.1
- checksum: 259dafa84a9e1f9e277ac8b31995a7a4f4db36a1df1710e9d413d98c6c013ab81370ad585d92038045cc8657662e578b07fd60b312b212f59ad426b10e1d6dce
+ debug: ^4.3.4
+ checksum: e59ce7bed9c63bf071a30cc471f2933862044c97fd9958967bfe22521d7a0f601ce4ed5a8c011799d0c726ca70312142ae193bbebb60f576b52be19d4a363b50
languageName: node
linkType: hard
@@ -4363,7 +3862,14 @@ __metadata:
languageName: node
linkType: hard
-"ansi-styles@npm:^3.2.0, ansi-styles@npm:^3.2.1":
+"ansi-regex@npm:^6.0.1":
+ version: 6.1.0
+ resolution: "ansi-regex@npm:6.1.0"
+ checksum: a91daeddd54746338478eef88af3439a7edf30f8e23196e2d6ed182da9add559c601266dbef01c2efa46a958ad6f1f8b176799657616c702b5b02e799e7fd8dc
+ languageName: node
+ linkType: hard
+
+"ansi-styles@npm:^3.2.0":
version: 3.2.1
resolution: "ansi-styles@npm:3.2.1"
dependencies:
@@ -4388,37 +3894,27 @@ __metadata:
languageName: node
linkType: hard
+"ansi-styles@npm:^6.1.0":
+ version: 6.2.1
+ resolution: "ansi-styles@npm:6.2.1"
+ checksum: 5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c
+ languageName: node
+ linkType: hard
+
"anymatch@npm:^3.0.3":
- version: 3.1.2
- resolution: "anymatch@npm:3.1.2"
+ version: 3.1.3
+ resolution: "anymatch@npm:3.1.3"
dependencies:
normalize-path: ^3.0.0
picomatch: ^2.0.4
- checksum: 900645535aee46ed7958f4f5b5e38abcbf474b5230406e913de15fc9a1310f0d5322775deb609688efe31010fa57831e55d36040b19826c22ce61d537e9b9759
+ checksum: 57b06ae984bc32a0d22592c87384cd88fe4511b1dd7581497831c56d41939c8a001b28e7b853e1450f2bf61992dfcaa8ae2d0d161a0a90c4fb631ef07098fbac
languageName: node
linkType: hard
"appdirsjs@npm:^1.2.4":
- version: 1.2.6
- resolution: "appdirsjs@npm:1.2.6"
- checksum: 2dc087819a8acd747d08c3649af44af3d2ec1b4e67ed80779c3a7c58eecb1dc8625e0b8466cc6052ab4df1ac39c1e3bed5a50d2a0a85f4142d343343af1e13d0
- languageName: node
- linkType: hard
-
-"aproba@npm:^1.0.3 || ^2.0.0":
- version: 2.0.0
- resolution: "aproba@npm:2.0.0"
- checksum: d06e26384a8f6245d8c8896e138c0388824e259a329e0c9f196b4fa533c82502a6fd449586e3604950a0c42921832a458bb3aa0aa9f0ba449cfd4f50fd0d09b5
- languageName: node
- linkType: hard
-
-"are-we-there-yet@npm:^3.0.0":
- version: 3.0.1
- resolution: "are-we-there-yet@npm:3.0.1"
- dependencies:
- delegates: ^1.0.0
- readable-stream: ^3.6.0
- checksum: 8373f289ba42e4b5ec713bb585acdac14b5702c75f2a458dc985b9e4fa5762bc5b46b40a21b72418a3ed0cfb5e35bdc317ef1ae132f3035f633d581dd03168c3
+ version: 1.2.7
+ resolution: "appdirsjs@npm:1.2.7"
+ checksum: 79dd8d7a764cdde2b47efc4383e054814be917ba0cd661ee324bdf3fd11542834548316faea31344f96a7ebc898b5f89c11d1418f825a1d40c396bf1ecb0902b
languageName: node
linkType: hard
@@ -4445,12 +3941,10 @@ __metadata:
languageName: node
linkType: hard
-"aria-query@npm:^5.3.0":
- version: 5.3.0
- resolution: "aria-query@npm:5.3.0"
- dependencies:
- dequal: ^2.0.3
- checksum: 2bff0d4eba5852a9dd578ecf47eaef0e82cc52569b48469b0aac2db5145db0b17b7a58d9e01237706d1e14b7a1b0ac9b78e9c97027ad97679dd8f91b85da1469
+"aria-query@npm:^5.3.2":
+ version: 5.3.2
+ resolution: "aria-query@npm:5.3.2"
+ checksum: 003c7e3e2cff5540bf7a7893775fc614de82b0c5dde8ae823d47b7a28a9d4da1f7ed85f340bdb93d5649caa927755f0e31ecc7ab63edfdfc00c8ef07e505e03e
languageName: node
linkType: hard
@@ -4464,7 +3958,7 @@ __metadata:
languageName: node
linkType: hard
-"array-includes@npm:^3.1.6, array-includes@npm:^3.1.7":
+"array-includes@npm:^3.1.6, array-includes@npm:^3.1.8":
version: 3.1.8
resolution: "array-includes@npm:3.1.8"
dependencies:
@@ -4485,7 +3979,7 @@ __metadata:
languageName: node
linkType: hard
-"array.prototype.findlast@npm:^1.2.4":
+"array.prototype.findlast@npm:^1.2.5":
version: 1.2.5
resolution: "array.prototype.findlast@npm:1.2.5"
dependencies:
@@ -4499,7 +3993,7 @@ __metadata:
languageName: node
linkType: hard
-"array.prototype.findlastindex@npm:^1.2.3":
+"array.prototype.findlastindex@npm:^1.2.5":
version: 1.2.5
resolution: "array.prototype.findlastindex@npm:1.2.5"
dependencies:
@@ -4537,28 +4031,16 @@ __metadata:
languageName: node
linkType: hard
-"array.prototype.toreversed@npm:^1.1.2":
- version: 1.1.2
- resolution: "array.prototype.toreversed@npm:1.1.2"
- dependencies:
- call-bind: ^1.0.2
- define-properties: ^1.2.0
- es-abstract: ^1.22.1
- es-shim-unscopables: ^1.0.0
- checksum: 2b7627ea85eae1e80ecce665a500cc0f3355ac83ee4a1a727562c7c2a1d5f1c0b4dd7b65c468ec6867207e452ba01256910a2c0b41486bfdd11acf875a7a3435
- languageName: node
- linkType: hard
-
-"array.prototype.tosorted@npm:^1.1.3":
- version: 1.1.3
- resolution: "array.prototype.tosorted@npm:1.1.3"
+"array.prototype.tosorted@npm:^1.1.4":
+ version: 1.1.4
+ resolution: "array.prototype.tosorted@npm:1.1.4"
dependencies:
- call-bind: ^1.0.5
+ call-bind: ^1.0.7
define-properties: ^1.2.1
- es-abstract: ^1.22.3
- es-errors: ^1.1.0
+ es-abstract: ^1.23.3
+ es-errors: ^1.3.0
es-shim-unscopables: ^1.0.2
- checksum: a27e1ca51168ecacf6042901f5ef021e43c8fa04b6c6b6f2a30bac3645cd2b519cecbe0bc45db1b85b843f64dc3207f0268f700b4b9fbdec076d12d432cf0865
+ checksum: eb3c4c4fc0381b0bf6dba2ea4d48d367c2827a0d4236a5718d97caaccc6b78f11f4cadf090736e86301d295a6aa4967ed45568f92ced51be8cbbacd9ca410943
languageName: node
linkType: hard
@@ -4615,7 +4097,7 @@ __metadata:
languageName: node
linkType: hard
-"async@npm:^3.2.2, async@npm:^3.2.3":
+"async@npm:^3.2.3":
version: 3.2.6
resolution: "async@npm:3.2.6"
checksum: 36484bb15ceddf07078688d95e27076379cc2f87b10c03b6dd8a83e89475a3c8df5848859dd06a4c95af1e4c16fc973de0171a77f18ea00be899aca2a4f85e70
@@ -4645,27 +4127,27 @@ __metadata:
languageName: node
linkType: hard
-"axe-core@npm:=4.7.0":
- version: 4.7.0
- resolution: "axe-core@npm:4.7.0"
- checksum: 89ac5712b5932ac7d23398b4cb5ba081c394a086e343acc68ba49c83472706e18e0799804e8388c779dcdacc465377deb29f2714241d3fbb389cf3a6b275c9ba
+"axe-core@npm:^4.10.0":
+ version: 4.10.2
+ resolution: "axe-core@npm:4.10.2"
+ checksum: 0e20169077de96946a547fce0df39d9aeebe0077f9d3eeff4896518b96fde857f80b98f0d4279274a7178791744dd5a54bb4f322de45b4f561ffa2586ff9a09d
languageName: node
linkType: hard
-"axios-cache-interceptor@npm:1.5.1":
- version: 1.5.1
- resolution: "axios-cache-interceptor@npm:1.5.1"
+"axios-cache-interceptor@npm:1.6.2":
+ version: 1.6.2
+ resolution: "axios-cache-interceptor@npm:1.6.2"
dependencies:
- cache-parser: 1.2.4
+ cache-parser: 1.2.5
fast-defer: 1.1.8
- object-code: 1.3.2
+ object-code: 1.3.3
peerDependencies:
axios: ^1
- checksum: bf8afe51affc17f71bb7509cf8b6a37cabdfec24374aeb05912c5b332f8374deedd36824f832a8a2da2e97ead32aca0ebd0b3534bfd22e08732e8f2f01cdeb14
+ checksum: 24c3c7d2264d78d8af495c50b15ba52b42451615d43c76d220cbd4fe387dbb5709a6511c016991d5d9177823acb67fca086bdafe183efb133b9ace0295893172
languageName: node
linkType: hard
-"axios@npm:^1.6.8":
+"axios@npm:^1.7.7":
version: 1.7.7
resolution: "axios@npm:1.7.7"
dependencies:
@@ -4676,12 +4158,10 @@ __metadata:
languageName: node
linkType: hard
-"axobject-query@npm:^3.2.1":
- version: 3.2.1
- resolution: "axobject-query@npm:3.2.1"
- dependencies:
- dequal: ^2.0.3
- checksum: f7debc2012e456139b57d888c223f6d3cb4b61eb104164a85e3d346273dd6ef0bc9a04b6660ca9407704a14a8e05fa6b6eb9d55f44f348c7210de7ffb350c3a7
+"axobject-query@npm:^4.1.0":
+ version: 4.1.0
+ resolution: "axobject-query@npm:4.1.0"
+ checksum: c470e4f95008f232eadd755b018cb55f16c03ccf39c027b941cd8820ac6b68707ce5d7368a46756db4256fbc91bb4ead368f84f7fb034b2b7932f082f6dc0775
languageName: node
linkType: hard
@@ -4736,29 +4216,16 @@ __metadata:
languageName: node
linkType: hard
-"babel-plugin-polyfill-corejs2@npm:^0.2.2":
- version: 0.2.2
- resolution: "babel-plugin-polyfill-corejs2@npm:0.2.2"
- dependencies:
- "@babel/compat-data": ^7.13.11
- "@babel/helper-define-polyfill-provider": ^0.2.2
- semver: ^6.1.1
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 7fb5129204c31d46474b78f7ceaa117b6e740edc8dfc7a32aeb82d766f8815b06bcee09b95d0ddcfd71dbf9b237887b16adf06d18e1ef0e4689213bb2b2bf9ee
- languageName: node
- linkType: hard
-
"babel-plugin-polyfill-corejs2@npm:^0.4.10":
- version: 0.4.10
- resolution: "babel-plugin-polyfill-corejs2@npm:0.4.10"
+ version: 0.4.11
+ resolution: "babel-plugin-polyfill-corejs2@npm:0.4.11"
dependencies:
"@babel/compat-data": ^7.22.6
- "@babel/helper-define-polyfill-provider": ^0.6.1
+ "@babel/helper-define-polyfill-provider": ^0.6.2
semver: ^6.3.1
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: 910bfb1d809cae49cf43348f9b1e4a5e4c895aa25686fdd2ff8af7b7a996b88ad39597707905d097e08d4e70e14340ac935082ef4e035e77f68741f813f2a80d
+ checksum: b2217bc8d5976cf8142453ed44daabf0b2e0e75518f24eac83b54a8892e87a88f1bd9089daa92fd25df979ecd0acfd29b6bc28c4182c1c46344cee15ef9bce84
languageName: node
linkType: hard
@@ -4774,103 +4241,57 @@ __metadata:
languageName: node
linkType: hard
-"babel-plugin-polyfill-corejs3@npm:^0.2.2":
- version: 0.2.4
- resolution: "babel-plugin-polyfill-corejs3@npm:0.2.4"
+"babel-plugin-polyfill-regenerator@npm:^0.6.1":
+ version: 0.6.2
+ resolution: "babel-plugin-polyfill-regenerator@npm:0.6.2"
dependencies:
- "@babel/helper-define-polyfill-provider": ^0.2.2
- core-js-compat: ^3.14.0
+ "@babel/helper-define-polyfill-provider": ^0.6.2
peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 8e5fe8241da26ddea7322782906df9d38f6e42362e0eee5ad3be7d23398b107826c894f5714e14391709a2d4319ee643678130897394190640c25efdf78847c0
+ "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ checksum: bc541037cf7620bc84ddb75a1c0ce3288f90e7d2799c070a53f8a495c8c8ae0316447becb06f958dd25dcce2a2fce855d318ecfa48036a1ddb218d55aa38a744
languageName: node
linkType: hard
-"babel-plugin-polyfill-regenerator@npm:^0.2.2":
- version: 0.2.2
- resolution: "babel-plugin-polyfill-regenerator@npm:0.2.2"
+"babel-plugin-syntax-hermes-parser@npm:^0.23.1":
+ version: 0.23.1
+ resolution: "babel-plugin-syntax-hermes-parser@npm:0.23.1"
dependencies:
- "@babel/helper-define-polyfill-provider": ^0.2.2
- peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: 87ca62b1bcb67cd4d9b0076683203bca985a7e5a9702533a60363d2fef8a5471aa0e2411555fb9623d3a1a0987315199a99221bcf07fa2c89cf444a7aac5fd32
+ hermes-parser: 0.23.1
+ checksum: 538ab28721836a6de004d63e3890b481b7ff3eeccf556943eb40619bf9363dc5239e3508881167f83d849458fe88d7696d49388e99e0df59543fdfb7681c87b3
languageName: node
linkType: hard
-"babel-plugin-polyfill-regenerator@npm:^0.6.1":
- version: 0.6.1
- resolution: "babel-plugin-polyfill-regenerator@npm:0.6.1"
+"babel-plugin-transform-flow-enums@npm:^0.0.2":
+ version: 0.0.2
+ resolution: "babel-plugin-transform-flow-enums@npm:0.0.2"
dependencies:
- "@babel/helper-define-polyfill-provider": ^0.6.1
- peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
- checksum: 0b55a35a75a261f62477d8d0f0c4a8e3b66f109323ce301d7de6898e168c41224de3bc26a92f48f2c7fcc19dfd1fc60fe71098bfd4f804a0463ff78586892403
- 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: 67e3d6a706637097526b2d3046d3124d3efd3aac28b47af940c2f8df01b8d7ffeb4cdf5648f3b5eac3f098f5b61c4845e306f34301c869e5e14db6ae8b77f699
+ "@babel/plugin-syntax-flow": ^7.12.1
+ checksum: aa9d022d8d4be0e7c4f1ff7e5308fe7e0ff4d6f9099449913e3a11c1e81916623a8f36432da180a9aa3f53ea534dca4401fe33d6528f043f40357cfa790ee778
languageName: node
linkType: hard
"babel-preset-current-node-syntax@npm:^1.0.0":
- version: 1.0.1
- resolution: "babel-preset-current-node-syntax@npm:1.0.1"
+ version: 1.1.0
+ resolution: "babel-preset-current-node-syntax@npm:1.1.0"
dependencies:
"@babel/plugin-syntax-async-generators": ^7.8.4
"@babel/plugin-syntax-bigint": ^7.8.3
- "@babel/plugin-syntax-class-properties": ^7.8.3
- "@babel/plugin-syntax-import-meta": ^7.8.3
+ "@babel/plugin-syntax-class-properties": ^7.12.13
+ "@babel/plugin-syntax-class-static-block": ^7.14.5
+ "@babel/plugin-syntax-import-attributes": ^7.24.7
+ "@babel/plugin-syntax-import-meta": ^7.10.4
"@babel/plugin-syntax-json-strings": ^7.8.3
- "@babel/plugin-syntax-logical-assignment-operators": ^7.8.3
+ "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
- "@babel/plugin-syntax-numeric-separator": ^7.8.3
+ "@babel/plugin-syntax-numeric-separator": ^7.10.4
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-syntax-optional-catch-binding": ^7.8.3
"@babel/plugin-syntax-optional-chaining": ^7.8.3
- "@babel/plugin-syntax-top-level-await": ^7.8.3
- peerDependencies:
- "@babel/core": ^7.0.0
- checksum: 5ba39a3a0e6c37d25e56a4fb843be632dac98d54706d8a0933f9bcb1a07987a96d55c2b5a6c11788a74063fb2534fe68c1f1dbb6c93626850c785e0938495627
- 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
+ "@babel/plugin-syntax-private-property-in-object": ^7.14.5
+ "@babel/plugin-syntax-top-level-await": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 2be440c0fd7d1df247417be35644cb89f40a300e7fcdc44878b737ec49b04380eff422e4ebdc7bb5efd5ecfef45b634fc5fe11c3a409a50c9084e81083037902
+ checksum: 0b838d4412e3322cb4436f246e24e9c00bebcedfd8f00a2f51489db683bd35406bbd55a700759c28d26959c6e03f84dd6a1426f576f440267c1d7a73c5717281
languageName: node
linkType: hard
@@ -4900,7 +4321,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: f23823513b63173a001030fae4f2dabe283b99a9d324ade3ad3d148e218134676f1ee8568c877cd79ec1c53158dcf2d2ba527a97c606618928ba99dd930102bf
@@ -4944,7 +4365,7 @@ __metadata:
languageName: node
linkType: hard
-"braces@npm:^3.0.1":
+"braces@npm:^3.0.3":
version: 3.0.3
resolution: "braces@npm:3.0.3"
dependencies:
@@ -4953,21 +4374,7 @@ __metadata:
languageName: node
linkType: hard
-"browserslist@npm:^4.22.2, browserslist@npm:^4.23.0":
- version: 4.23.0
- resolution: "browserslist@npm:4.23.0"
- dependencies:
- caniuse-lite: ^1.0.30001587
- electron-to-chromium: ^1.4.668
- node-releases: ^2.0.14
- update-browserslist-db: ^1.0.13
- bin:
- browserslist: cli.js
- checksum: 8e9cc154529062128d02a7af4d8adeead83ca1df8cd9ee65a88e2161039f3d68a4d40fea7353cab6bae4c16182dec2fdd9a1cf7dc2a2935498cee1af0e998943
- languageName: node
- linkType: hard
-
-"browserslist@npm:^4.23.3, browserslist@npm:^4.24.0":
+"browserslist@npm:^4.24.0, browserslist@npm:^4.24.2":
version: 4.24.2
resolution: "browserslist@npm:4.24.2"
dependencies:
@@ -5016,43 +4423,37 @@ __metadata:
languageName: node
linkType: hard
-"bytes@npm:3.0.0":
- version: 3.0.0
- resolution: "bytes@npm:3.0.0"
- checksum: 91d42c38601c76460519ffef88371caacaea483a354c8e4b8808e7b027574436a5713337c003ea3de63ee4991c2a9a637884fdfe7f761760d746929d9e8fec60
+"bytes@npm:3.1.2":
+ version: 3.1.2
+ resolution: "bytes@npm:3.1.2"
+ checksum: 76d1c43cbd602794ad8ad2ae94095cddeb1de78c5dddaa7005c51af10b0176c69971a6d88e805a90c2b6550d76636e43c40d8427a808b8645ede885de4a0358e
languageName: node
linkType: hard
-"cacache@npm:^16.1.0":
- version: 16.1.1
- resolution: "cacache@npm:16.1.1"
+"cacache@npm:^18.0.0":
+ version: 18.0.4
+ resolution: "cacache@npm:18.0.4"
dependencies:
- "@npmcli/fs": ^2.1.0
- "@npmcli/move-file": ^2.0.0
- chownr: ^2.0.0
- fs-minipass: ^2.1.0
- glob: ^8.0.1
- infer-owner: ^1.0.4
- lru-cache: ^7.7.1
- minipass: ^3.1.6
- minipass-collect: ^1.0.2
+ "@npmcli/fs": ^3.1.0
+ fs-minipass: ^3.0.0
+ glob: ^10.2.2
+ lru-cache: ^10.0.1
+ minipass: ^7.0.3
+ minipass-collect: ^2.0.1
minipass-flush: ^1.0.5
minipass-pipeline: ^1.2.4
- mkdirp: ^1.0.4
p-map: ^4.0.0
- promise-inflight: ^1.0.1
- rimraf: ^3.0.2
- ssri: ^9.0.0
+ ssri: ^10.0.0
tar: ^6.1.11
- unique-filename: ^1.1.1
- checksum: 8f257699d9bfe41c40340522cb4920ce88b35d07ea7733f92c5e56ead390ae43468035627385a3d6019ad89dd96e8bc3eeca646980290921406ec1fa9199ba7d
+ unique-filename: ^3.0.0
+ checksum: 6c055bafed9de4f3dcc64ac3dc7dd24e863210902b7c470eb9ce55a806309b3efff78033e3d8b4f7dcc5d467f2db43c6a2857aaaf26f0094b8a351d44c42179f
languageName: node
linkType: hard
-"cache-parser@npm:1.2.4":
- version: 1.2.4
- resolution: "cache-parser@npm:1.2.4"
- checksum: 5f9ee096b3cd42224208aae8bb82f4dc63b9a49f6d92898973854dc2e63fef281ef658932ea9c0b9c15ba0ff18f51a43a007624f1ef60820b06047488f1125fb
+"cache-parser@npm:1.2.5":
+ version: 1.2.5
+ resolution: "cache-parser@npm:1.2.5"
+ checksum: 08ef9b465a0af87565f12448a2c250934f4c02f1247a9c519759139a0e2db5584f45ffa8401ce721f7e5a8f8ba1faf3ddc1e99c29e5e93aba01f7e1f4ee8ef9a
languageName: node
linkType: hard
@@ -5108,7 +4509,7 @@ __metadata:
languageName: node
linkType: hard
-"camelcase@npm:^6.0.0, camelcase@npm:^6.2.0":
+"camelcase@npm:^6.2.0":
version: 6.3.0
resolution: "camelcase@npm:6.3.0"
checksum: 0d701658219bd3116d12da3eab31acddb3f9440790c0792e0d398f0a520a6a4058018e546862b6fba89d7ae990efaeb97da71e1913e9ebf5a8b5621a3d55c710
@@ -5116,34 +4517,16 @@ __metadata:
linkType: hard
"camelize@npm:^1.0.0":
- version: 1.0.0
- resolution: "camelize@npm:1.0.0"
- checksum: b2cf60c12d002f6f5bff1dc56dedd9fa98767af2090c9699a0cd4da48d02f0b3939d09722028145555528b82da3140a117f92f1f9ecc7928af4fb3bfe86fec35
- languageName: node
- linkType: hard
-
-"caniuse-lite@npm:^1.0.30001587":
- version: 1.0.30001627
- resolution: "caniuse-lite@npm:1.0.30001627"
- checksum: 67d39ca4bead791876c42220b4fe5bd22ba03dbec42f102f0ea9271be3df21bfdb6ba2b0f0dd9eb339eebfc96de3a42a3a5f3fc179ef47229ee5055301217572
+ version: 1.0.1
+ resolution: "camelize@npm:1.0.1"
+ checksum: 4c9ac55efd356d37ac483bad3093758236ab686192751d1c9daa43188cc5a07b09bd431eb7458a4efd9ca22424bba23253e7b353feb35d7c749ba040de2385fb
languageName: node
linkType: hard
"caniuse-lite@npm:^1.0.30001669":
- version: 1.0.30001674
- resolution: "caniuse-lite@npm:1.0.30001674"
- checksum: 6ec4170fb5274f074fdfa6f372c40245fe94f5984df705ddc133c55f2c662eb4af5a4900441a24ef7e4f31e1dac338b7af4ce7a304ffc432958331c953e3f45f
- languageName: node
- linkType: hard
-
-"chalk@npm:^2.4.2":
- version: 2.4.2
- resolution: "chalk@npm:2.4.2"
- dependencies:
- ansi-styles: ^3.2.1
- escape-string-regexp: ^1.0.5
- supports-color: ^5.3.0
- checksum: e6543f02ec877732e3a2d1c3c3323ddb4d39fbab687c23f526e25bd4c6a9bf3b83a696e8c769d078e04e5754921648f7821b2a2acfd16c550435fd630026e073
+ version: 1.0.30001677
+ resolution: "caniuse-lite@npm:1.0.30001677"
+ checksum: 22b4aa738b213b5d0bc820c26ba23fa265ca90a5c59776e1a686b9ab6fff9120d0825fd920c0a601a4b65056ef40d01548405feb95c8dd6083255f50c71a0864
languageName: node
linkType: hard
@@ -5171,6 +4554,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: fc01abc19af753bb089744362c0de48707f32ea15779407b06fb569e029a6b1fbaa78107165539d768915cf54b5c38594e73d95563c34127873e3826fb43c636
+ languageName: node
+ linkType: hard
+
+"chromium-edge-launcher@npm:^0.2.0":
+ version: 0.2.0
+ resolution: "chromium-edge-launcher@npm:0.2.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: 880972816dd9b95c0eb77d1f707569667a8cce7cc29fe9c8d199c47fdfbe4971e9da3e5a29f61c4ecec29437ac7cebbbb5afc30bec96306579d1121e7340606a
+ languageName: node
+ linkType: hard
+
"ci-info@npm:^2.0.0":
version: 2.0.0
resolution: "ci-info@npm:2.0.0"
@@ -5186,9 +4597,9 @@ __metadata:
linkType: hard
"cjs-module-lexer@npm:^1.0.0":
- version: 1.2.2
- resolution: "cjs-module-lexer@npm:1.2.2"
- checksum: 83330e1feda2e3699b8c305bfa8f841b41822049393f5eefeb574e60bde556e2a251ee9b7971cde0cb47ac4f7823bf4ab4a6005b8471f86ad9f5509eefb66cbd
+ version: 1.4.1
+ resolution: "cjs-module-lexer@npm:1.4.1"
+ checksum: 5a7d8279629c9ba8ccf38078c2fed75b7737973ced22b9b5a54180efa57fb2fe2bb7bec6aec55e3b8f3f5044f5d7b240347ad9bd285e7c3d0ee5b0a1d0504dfc
languageName: node
linkType: hard
@@ -5209,9 +4620,9 @@ __metadata:
linkType: hard
"cli-spinners@npm:^2.5.0":
- version: 2.7.0
- resolution: "cli-spinners@npm:2.7.0"
- checksum: 5c781ace5c8f304ae4d138837f19cf88f03a97de3c3e388f9d1d6434146f06f6ce2a161d6237b3bb86448a05fbcbb20084f3fea96077e42a655b273e39c6f08d
+ version: 2.9.2
+ resolution: "cli-spinners@npm:2.9.2"
+ checksum: 907a1c227ddf0d7a101e7ab8b300affc742ead4b4ebe920a5bf1bc6d45dce2958fcd195eb28fa25275062fe6fa9b109b93b63bc8033396ed3bcb50297008b3a3
languageName: node
linkType: hard
@@ -5274,9 +4685,9 @@ __metadata:
linkType: hard
"collect-v8-coverage@npm:^1.0.0":
- version: 1.0.1
- resolution: "collect-v8-coverage@npm:1.0.1"
- checksum: df8192811a773d10978fd25060124e4228d9a86bab40de3f18df5ce1a3730832351a52ba1c0e3915d5bd638298fc7bc9723760d25f534462746e269a6f0ac91c
+ version: 1.0.2
+ resolution: "collect-v8-coverage@npm:1.0.2"
+ checksum: ed7008e2e8b6852c5483b444a3ae6e976e088d4335a85aa0a9db2861c5f1d31bd2d7ff97a60469b3388deeba661a619753afbe201279fb159b4b9548ab8269a1
languageName: node
linkType: hard
@@ -5322,15 +4733,6 @@ __metadata:
languageName: node
linkType: hard
-"color-support@npm:^1.1.3":
- version: 1.1.3
- resolution: "color-support@npm:1.1.3"
- bin:
- color-support: bin.js
- checksum: 8ffeaa270a784dc382f62d9be0a98581db43e11eee301af14734a6d089bd456478b1a8b3e7db7ca7dc5b18a75f828f775c44074020b51c05fc00e6d0992b1cc6
- languageName: node
- linkType: hard
-
"color@npm:^3.1.2":
version: 3.2.1
resolution: "color@npm:3.2.1"
@@ -5374,6 +4776,20 @@ __metadata:
languageName: node
linkType: hard
+"commander@npm:^12.0.0":
+ version: 12.1.0
+ resolution: "commander@npm:12.1.0"
+ checksum: 6e1996680c083b3b897bfc1cfe1c58dfbcd9842fd43e1aaf8a795fbc237f65efcc860a3ef457b318e73f29a4f4a28f6403c3d653d021d960e4632dd45bde54a9
+ languageName: node
+ linkType: hard
+
+"commander@npm:^2.20.0":
+ version: 2.20.3
+ resolution: "commander@npm:2.20.3"
+ checksum: 74c781a5248c2402a0a3e966a0a2bba3c054aad144f5c023364be83265e796b20565aa9feff624132ff629aa64e16999fa40a743c10c12f7c61e96a794b99288
+ languageName: node
+ linkType: hard
+
"commander@npm:^7.2.0":
version: 7.2.0
resolution: "commander@npm:7.2.0"
@@ -5381,20 +4797,13 @@ __metadata:
languageName: node
linkType: hard
-"commander@npm:^9.4.0":
+"commander@npm:^9.4.1":
version: 9.5.0
resolution: "commander@npm:9.5.0"
checksum: 5f7784fbda2aaec39e89eb46f06a999e00224b3763dc65976e05929ec486e174fe9aac2655f03ba6a5e83875bd173be5283dc19309b7c65954701c02025b3c1d
languageName: node
linkType: hard
-"commander@npm:~2.14.1":
- version: 2.14.1
- resolution: "commander@npm:2.14.1"
- checksum: b29bb0220fb27645a958a9cbecc5c138adeb4d151a17d43acd5c8cd7ffed1a64e502a20338e3faad235c5c8e23df893dd02dfe6eddf47f90fc51b51825084719
- languageName: node
- linkType: hard
-
"commondir@npm:^1.0.1":
version: 1.0.1
resolution: "commondir@npm:1.0.1"
@@ -5402,7 +4811,7 @@ __metadata:
languageName: node
linkType: hard
-"compressible@npm:~2.0.16":
+"compressible@npm:~2.0.18":
version: 2.0.18
resolution: "compressible@npm:2.0.18"
dependencies:
@@ -5412,17 +4821,17 @@ __metadata:
linkType: hard
"compression@npm:^1.7.1":
- version: 1.7.4
- resolution: "compression@npm:1.7.4"
+ version: 1.7.5
+ resolution: "compression@npm:1.7.5"
dependencies:
- accepts: ~1.3.5
- bytes: 3.0.0
- compressible: ~2.0.16
+ bytes: 3.1.2
+ compressible: ~2.0.18
debug: 2.6.9
+ negotiator: ~0.6.4
on-headers: ~1.0.2
- safe-buffer: 5.1.2
+ safe-buffer: 5.2.1
vary: ~1.1.2
- checksum: 138db836202a406d8a14156a5564fb1700632a76b6e7d1546939472895a5304f2b23c80d7a22bf44c767e87a26e070dbc342ea63bb45ee9c863354fa5556bbbc
+ checksum: 35c9d2d57c86d8107eab5e637f2146fcefec8475a2ff3e162f5eb0982ff856d385fb5d8c9823c3d50e075f2d9304bc622dac3df27bfef0355309c0a5307861c5
languageName: node
linkType: hard
@@ -5452,13 +4861,6 @@ __metadata:
languageName: node
linkType: hard
-"console-control-strings@npm:^1.1.0":
- version: 1.1.0
- resolution: "console-control-strings@npm:1.1.0"
- checksum: 7ab51d30b52d461412cd467721bb82afe695da78fff8f29fe6f6b9cbaac9a2328e27a22a966014df9532100f6dd85370460be8130b9c677891ba36d96a343f50
- languageName: node
- linkType: hard
-
"convert-source-map@npm:^2.0.0":
version: 2.0.0
resolution: "convert-source-map@npm:2.0.0"
@@ -5466,21 +4868,12 @@ __metadata:
languageName: node
linkType: hard
-"core-js-compat@npm:^3.14.0":
- version: 3.36.1
- resolution: "core-js-compat@npm:3.36.1"
- dependencies:
- browserslist: ^4.23.0
- checksum: 70fba18a4095cd8ac04e5ba8cee251e328935859cf2851c1f67770068ea9f9fe71accb1b7de17cd3c9a28d304a4c41712bd9aa895110ebb6e3be71b666b029d1
- languageName: node
- linkType: hard
-
"core-js-compat@npm:^3.38.0, core-js-compat@npm:^3.38.1":
- version: 3.38.1
- resolution: "core-js-compat@npm:3.38.1"
+ version: 3.39.0
+ resolution: "core-js-compat@npm:3.39.0"
dependencies:
- browserslist: ^4.23.3
- checksum: d8bc8a35591fc5fbf3e376d793f298ec41eb452619c7ef9de4ea59b74be06e9fda799e0dcbf9ba59880dae87e3b41fb191d744ffc988315642a1272bb9442b31
+ browserslist: ^4.24.2
+ checksum: 880579a3dab235e3b6350f1e324269c600753b48e891ea859331618d5051e68b7a95db6a03ad2f3cc7df4397318c25a5bc7740562ad39e94f56568638d09d414
languageName: node
linkType: hard
@@ -5491,7 +4884,7 @@ __metadata:
languageName: node
linkType: hard
-"cosmiconfig@npm:^5.0.5, cosmiconfig@npm:^5.1.0":
+"cosmiconfig@npm:^5.0.5":
version: 5.2.1
resolution: "cosmiconfig@npm:5.2.1"
dependencies:
@@ -5520,6 +4913,23 @@ __metadata:
languageName: node
linkType: hard
+"cosmiconfig@npm:^9.0.0":
+ version: 9.0.0
+ resolution: "cosmiconfig@npm:9.0.0"
+ dependencies:
+ env-paths: ^2.2.1
+ import-fresh: ^3.3.0
+ js-yaml: ^4.1.0
+ parse-json: ^5.2.0
+ peerDependencies:
+ typescript: ">=4.9.5"
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ checksum: 1c1703be4f02a250b1d6ca3267e408ce16abfe8364193891afc94c2d5c060b69611fdc8d97af74b7e6d5d1aac0ab2fb94d6b079573146bc2d756c2484ce5f0ee
+ languageName: node
+ linkType: hard
+
"create-jest@npm:^29.7.0":
version: 29.7.0
resolution: "create-jest@npm:29.7.0"
@@ -5544,20 +4954,7 @@ __metadata:
languageName: node
linkType: hard
-"cross-spawn@npm:^6.0.0":
- version: 6.0.5
- resolution: "cross-spawn@npm:6.0.5"
- dependencies:
- nice-try: ^1.0.4
- path-key: ^2.0.1
- semver: ^5.5.0
- shebang-command: ^1.2.0
- which: ^1.2.9
- checksum: e05544722e9d7189b4292c66e42b7abeb21db0d07c91b785f4ae5fefceb1f89e626da2703744657b287e86dcd4af57b54567cef75159957ff7a8a761d9055012
- languageName: node
- linkType: hard
-
-"cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3":
+"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3":
version: 7.0.3
resolution: "cross-spawn@npm:7.0.3"
dependencies:
@@ -5645,20 +5042,13 @@ __metadata:
languageName: node
linkType: hard
-"csstype@npm:3.1.3":
+"csstype@npm:3.1.3, csstype@npm:^3.0.2":
version: 3.1.3
resolution: "csstype@npm:3.1.3"
checksum: 80c089d6f7e0c5b2bd83cf0539ab41474198579584fa10d86d0cafe0642202343cbc119e076a0b1aece191989477081415d66c9fefbf3c957fc2fc4b7009f248
languageName: node
linkType: hard
-"csstype@npm:^3.0.2":
- version: 3.1.2
- resolution: "csstype@npm:3.1.2"
- checksum: 32c038af259897c807ac738d9eab16b3d86747c72b09d5c740978e06f067f9b7b1737e1b75e407c7ab1fe1543dc95f20e202b4786aeb1b8d3bdf5d5ce655e6c6
- languageName: node
- linkType: hard
-
"d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:^3.1.6":
version: 3.2.4
resolution: "d3-array@npm:3.2.4"
@@ -5800,13 +5190,13 @@ __metadata:
linkType: hard
"dayjs@npm:^1.8.15":
- version: 1.10.7
- resolution: "dayjs@npm:1.10.7"
- checksum: 2ce908776ea5b383dba2c01c72290ff12ad97cafa81b9c72a9cc4f801d736d592f20bd992ea1dff083ab80e807080b5af21f634bb09e67f89f66582a9059053a
+ version: 1.11.13
+ resolution: "dayjs@npm:1.11.13"
+ checksum: a3caf6ac8363c7dade9d1ee797848ddcf25c1ace68d9fe8678ecf8ba0675825430de5d793672ec87b24a69bf04a1544b176547b2539982275d5542a7955f35b7
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:
@@ -5815,15 +5205,15 @@ __metadata:
languageName: node
linkType: hard
-"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4":
- version: 4.3.4
- resolution: "debug@npm:4.3.4"
+"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4":
+ version: 4.3.7
+ resolution: "debug@npm:4.3.7"
dependencies:
- ms: 2.1.2
+ ms: ^2.1.3
peerDependenciesMeta:
supports-color:
optional: true
- checksum: cedbec45298dd5c501d01b92b119cd3faebe5438c3917ff11ae1bff86a6c722930ac9c8659792824013168ba6db7c4668225d845c633fbdafbbf902a6389f736
+ checksum: 1471db19c3b06d485a622d62f65947a19a23fbd0dd73f7fd3eafb697eec5360cde447fb075919987899b1a2096e85d35d4eb5a4de09a57600ac9cf7e6c8e768b
languageName: node
linkType: hard
@@ -5851,14 +5241,14 @@ __metadata:
linkType: hard
"dedent@npm:^1.0.0":
- version: 1.5.1
- resolution: "dedent@npm:1.5.1"
+ version: 1.5.3
+ resolution: "dedent@npm:1.5.3"
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
babel-plugin-macros:
optional: true
- checksum: f8612cd5b00aab58b18bb95572dca08dc2d49720bfa7201a444c3dae430291e8a06d4928614a6ec8764d713927f44bce9c990d3b8238fca2f430990ddc17c070
+ checksum: d94bde6e6f780be4da4fd760288fcf755ec368872f4ac5218197200d86430aeb8d90a003a840bff1c20221188e3f23adced0119cb811c6873c70d0ac66d12832
languageName: node
linkType: hard
@@ -5876,7 +5266,7 @@ __metadata:
languageName: node
linkType: hard
-"deepmerge@npm:^4.2.2, deepmerge@npm:^4.3.1":
+"deepmerge@npm:^4.2.2, deepmerge@npm:^4.3.0, deepmerge@npm:^4.3.1":
version: 4.3.1
resolution: "deepmerge@npm:4.3.1"
checksum: e53481aaf1aa2c4082b5342be6b6d8ad9dfe387bc92ce197a66dea08bd4265904a087e75e464f14d1347cf2ac8afe1e4c16b266e0561cc5df29382d3c5f80044
@@ -5884,11 +5274,11 @@ __metadata:
linkType: hard
"defaults@npm:^1.0.3":
- version: 1.0.3
- resolution: "defaults@npm:1.0.3"
+ version: 1.0.4
+ resolution: "defaults@npm:1.0.4"
dependencies:
clone: ^1.0.2
- checksum: c9ba6718eb293fa701652e28967b87102fc13d8e33997748191ad8ed3b2235714bd3661e8505bed06994e6b4604a1281c35462ec328c2bbedd79ebbf7e82adb2
+ checksum: 9cfbe498f5c8ed733775db62dfd585780387d93c17477949e1670bfcfb9346e0281ce8c4bf9f4ac1fc0f9b851113bd6dc9e41182ea1644ccd97de639fa13c35a
languageName: node
linkType: hard
@@ -5937,13 +5327,6 @@ __metadata:
languageName: node
linkType: hard
-"delegates@npm:^1.0.0":
- version: 1.0.0
- resolution: "delegates@npm:1.0.0"
- checksum: ba05874b91148e1db4bf254750c042bf2215febd23a6d3cda2e64896aef79745fbd4b9996488bd3cafb39ce19dbce0fd6e3b6665275638befffe1c9b312b91b5
- languageName: node
- linkType: hard
-
"denodeify@npm:^1.2.1":
version: 1.2.1
resolution: "denodeify@npm:1.2.1"
@@ -5958,13 +5341,6 @@ __metadata:
languageName: node
linkType: hard
-"depd@npm:^1.1.2":
- version: 1.1.2
- resolution: "depd@npm:1.1.2"
- checksum: acb24aaf936ef9a227b6be6d495f0d2eb20108a9a6ad40585c5bda1a897031512fef6484e4fdbb80bd249fdaa82841fa1039f416ece03188e677ba11bcfda249
- languageName: node
- linkType: hard
-
"deprecated-react-native-prop-types@npm:^2.3.0":
version: 2.3.0
resolution: "deprecated-react-native-prop-types@npm:2.3.0"
@@ -5976,24 +5352,6 @@ __metadata:
languageName: node
linkType: hard
-"deprecated-react-native-prop-types@npm:^4.0.0":
- version: 4.2.3
- resolution: "deprecated-react-native-prop-types@npm:4.2.3"
- dependencies:
- "@react-native/normalize-colors": <0.73.0
- invariant: ^2.2.4
- prop-types: ^15.8.1
- checksum: 04134ee58b7e1e46f055805ca390bd5ad88a8cf97cf44a120bf350ad02c3dbfab8539efa2e267740b3d72b1b5c623a55afa609ca417a69c91ad4626808294938
- languageName: node
- linkType: hard
-
-"dequal@npm:^2.0.3":
- version: 2.0.3
- resolution: "dequal@npm:2.0.3"
- checksum: f98860cdf58b64991ae10205137c0e97d384c3a4edc7f807603887b7c4b850af1224a33d88012009f150861cbee4fa2d322c4cc04b9313bee312e47f6ecaa888
- languageName: node
- linkType: hard
-
"destroy@npm:1.2.0":
version: 1.2.0
resolution: "destroy@npm:1.2.0"
@@ -6067,7 +5425,7 @@ __metadata:
languageName: node
linkType: hard
-"domhandler@npm:^5.0.1, domhandler@npm:^5.0.2":
+"domhandler@npm:^5.0.2, domhandler@npm:^5.0.3":
version: 5.0.3
resolution: "domhandler@npm:5.0.3"
dependencies:
@@ -6077,22 +5435,13 @@ __metadata:
linkType: hard
"domutils@npm:^3.0.1":
- version: 3.0.1
- resolution: "domutils@npm:3.0.1"
+ version: 3.1.0
+ resolution: "domutils@npm:3.1.0"
dependencies:
dom-serializer: ^2.0.0
domelementtype: ^2.3.0
- domhandler: ^5.0.1
- checksum: 8ec14e7e54f58cae0062fa9aaf97c05a094733ff6df8ede588c57d96799ceb45d1ea46479e8dd285f43af43b3e7618a501b2b41d2c2080078d5947b5fee2b5f9
- languageName: node
- linkType: hard
-
-"dooboolab-welcome@npm:^1.3.2":
- version: 1.3.2
- resolution: "dooboolab-welcome@npm:1.3.2"
- bin:
- dooboolab-welcome: bin/hello.js
- checksum: 79914ca018bffbfb80862e872ababda9b39add38821c97df95da0bc2d975084a91dcaf4bbbe040cb2d2fb38b779281474cbbb8c6363e149e69bd66e9806bbeee
+ domhandler: ^5.0.3
+ checksum: 342d64cf4d07b8a0573fb51e0a6312a88fb520c7fefd751870bf72fa5fc0f2e0cb9a3958a573610b1d608c6e2a69b8e9b4b40f0bfb8f87a71bce4f180cca1887
languageName: node
linkType: hard
@@ -6106,6 +5455,13 @@ __metadata:
languageName: node
linkType: hard
+"eastasianwidth@npm:^0.2.0":
+ version: 0.2.0
+ resolution: "eastasianwidth@npm:0.2.0"
+ checksum: 26f364ebcdb6395f95124fda411f63137a4bfb5d3a06453f7f23dfe52502905bd84e0488172e0f9ec295fdc45f05c23d5d91baf16bd26f0fe9acd777a188dc39
+ languageName: node
+ linkType: hard
+
"ee-first@npm:1.1.1":
version: 1.1.1
resolution: "ee-first@npm:1.1.1"
@@ -6124,17 +5480,10 @@ __metadata:
languageName: node
linkType: hard
-"electron-to-chromium@npm:^1.4.668":
- version: 1.4.715
- resolution: "electron-to-chromium@npm:1.4.715"
- checksum: 6c49b7f3ad41b9f0ecd36cc564333d238a4b7ab51c4928d6e19f25d1e3d2aa9311428fb6e45f02823eb05792acc584513f7cea0dbd27b0758de5f21c2142126b
- languageName: node
- linkType: hard
-
"electron-to-chromium@npm:^1.5.41":
- version: 1.5.49
- resolution: "electron-to-chromium@npm:1.5.49"
- checksum: 7b22141c7ebea2f49b87adcbe2b353919abbe44066c50e5e44dd47759c4ef07f0a802b9fc8ce2eaa832a293945b6d49064c859f0fef36d10c12fb46af2c1005d
+ version: 1.5.50
+ resolution: "electron-to-chromium@npm:1.5.50"
+ checksum: 8b77b18ae833bfe2173e346ac33b8d66b5b5acf0cf5de65df9799f4d482334c938aa0950e4d01391d5fab8994f46c0e9059f4517843e7b8d861f9b0c49eb4c5d
languageName: node
linkType: hard
@@ -6182,15 +5531,6 @@ __metadata:
languageName: node
linkType: hard
-"end-of-stream@npm:^1.1.0":
- version: 1.4.4
- resolution: "end-of-stream@npm:1.4.4"
- dependencies:
- once: ^1.4.0
- checksum: 870b423afb2d54bb8d243c63e07c170409d41e20b47eeef0727547aea5740bd6717aca45597a9f2745525667a6b804c1e7bede41f856818faee5806dd9ff3975
- languageName: node
- linkType: hard
-
"entities@npm:^4.2.0, entities@npm:^4.4.0":
version: 4.5.0
resolution: "entities@npm:4.5.0"
@@ -6198,14 +5538,14 @@ __metadata:
languageName: node
linkType: hard
-"env-paths@npm:^2.2.0":
+"env-paths@npm:^2.2.0, env-paths@npm:^2.2.1":
version: 2.2.1
resolution: "env-paths@npm:2.2.1"
checksum: 285325677bf00e30845e330eec32894f5105529db97496ee3f598478e50f008c5352a41a30e5e72ec9de8a542b5a570b85699cd63bd2bc646dbcb9f311d83bc4
languageName: node
linkType: hard
-"envinfo@npm:^7.7.2":
+"envinfo@npm:^7.13.0":
version: 7.14.0
resolution: "envinfo@npm:7.14.0"
bin:
@@ -6231,15 +5571,15 @@ __metadata:
linkType: hard
"error-stack-parser@npm:^2.0.6":
- version: 2.0.6
- resolution: "error-stack-parser@npm:2.0.6"
+ version: 2.1.4
+ resolution: "error-stack-parser@npm:2.1.4"
dependencies:
- stackframe: ^1.1.1
- checksum: 4a09ea8d6309f2ad492d8e5e417ddf3aeed17440e6747ea128f8423de1e6b9f24db9220845426ab43224481ebe6ec52e92aaff8211e7d28b79f462a220745352
+ stackframe: ^1.3.4
+ checksum: 7679b780043c98b01fc546725484e0cfd3071bf5c906bbe358722972f04abf4fc3f0a77988017665bab367f6ef3fc2d0185f7528f45966b83e7c99c02d5509b9
languageName: node
linkType: hard
-"errorhandler@npm:^1.5.0":
+"errorhandler@npm:^1.5.1":
version: 1.5.1
resolution: "errorhandler@npm:1.5.1"
dependencies:
@@ -6249,9 +5589,9 @@ __metadata:
languageName: node
linkType: hard
-"es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.0, es-abstract@npm:^1.23.1, es-abstract@npm:^1.23.2":
- version: 1.23.2
- resolution: "es-abstract@npm:1.23.2"
+"es-abstract@npm:^1.17.5, es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.0, es-abstract@npm:^1.23.1, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3":
+ version: 1.23.3
+ resolution: "es-abstract@npm:1.23.3"
dependencies:
array-buffer-byte-length: ^1.0.1
arraybuffer.prototype.slice: ^1.0.3
@@ -6292,14 +5632,14 @@ __metadata:
safe-regex-test: ^1.0.3
string.prototype.trim: ^1.2.9
string.prototype.trimend: ^1.0.8
- string.prototype.trimstart: ^1.0.7
+ string.prototype.trimstart: ^1.0.8
typed-array-buffer: ^1.0.2
typed-array-byte-length: ^1.0.1
typed-array-byte-offset: ^1.0.2
- typed-array-length: ^1.0.5
+ typed-array-length: ^1.0.6
unbox-primitive: ^1.0.2
which-typed-array: ^1.1.15
- checksum: 1262ebb7cdb79f255fc7d1f4505c0de2d88d117a0b21d0c984c28a0126efa717ef011f07d502353987cbade39f12c0a5ae59aef0b1231a51ce1b991e4e87c8bb
+ checksum: d27e9afafb225c6924bee9971a7f25f20c314f2d6cb93a63cada4ac11dcf42040896a6c22e5fb8f2a10767055ed4ddf400be3b1eb12297d281726de470b75666
languageName: node
linkType: hard
@@ -6312,32 +5652,32 @@ __metadata:
languageName: node
linkType: hard
-"es-errors@npm:^1.1.0, es-errors@npm:^1.2.1, es-errors@npm:^1.3.0":
+"es-errors@npm:^1.2.1, es-errors@npm:^1.3.0":
version: 1.3.0
resolution: "es-errors@npm:1.3.0"
checksum: 0a61325670072f98d8ae3b914edab3559b6caa980f08054a3b872052640d91da01d38df55df797fcc916389d77fc92b8d5906cf028f4db46d7e3003abecbca85
languageName: node
linkType: hard
-"es-iterator-helpers@npm:^1.0.15, es-iterator-helpers@npm:^1.0.17":
- version: 1.0.18
- resolution: "es-iterator-helpers@npm:1.0.18"
+"es-iterator-helpers@npm:^1.1.0":
+ version: 1.1.0
+ resolution: "es-iterator-helpers@npm:1.1.0"
dependencies:
call-bind: ^1.0.7
define-properties: ^1.2.1
- es-abstract: ^1.23.0
+ es-abstract: ^1.23.3
es-errors: ^1.3.0
es-set-tostringtag: ^2.0.3
function-bind: ^1.1.2
get-intrinsic: ^1.2.4
- globalthis: ^1.0.3
+ globalthis: ^1.0.4
has-property-descriptors: ^1.0.2
has-proto: ^1.0.3
has-symbols: ^1.0.3
internal-slot: ^1.0.7
- iterator.prototype: ^1.1.2
+ iterator.prototype: ^1.1.3
safe-array-concat: ^1.1.2
- checksum: 93be402e01fa3d8bf62fcadd2fb3055126ffcfe8846911b10b85918ef46775252696c84e6191ec8125bedb61e92242ad1a54a86118436ba19814720cb9ff4aed
+ checksum: 84d6c240c7da6e62323b336cb1497781546dab16bebdbd879ccfdf588979712d3e941d41165b6c2ffce5a03a7b929d4e6131d3124d330da1a0e2bfa1da7cd99f
languageName: node
linkType: hard
@@ -6381,14 +5721,7 @@ __metadata:
languageName: node
linkType: hard
-"escalade@npm:^3.1.1":
- version: 3.1.1
- resolution: "escalade@npm:3.1.1"
- checksum: afd02e6ca91ffa813e1108b5e7756566173d6bc0d1eb951cb44d6b21702ec17c1cf116cfe75d4a2b02e05acb0b808a7a9387d0d1ca5cf9c04ad03a8445c3e46d
- languageName: node
- linkType: hard
-
-"escalade@npm:^3.2.0":
+"escalade@npm:^3.1.1, escalade@npm:^3.2.0":
version: 3.2.0
resolution: "escalade@npm:3.2.0"
checksum: ced4dd3a78e15897ed3be74e635110bbf3b08877b0a41be50dcb325ee0e0b5f65fc2d50e9845194d7c4633f327e2e1c6cce00a71b617c5673df0374201d67f65
@@ -6402,13 +5735,6 @@ __metadata:
languageName: node
linkType: hard
-"escape-string-regexp@npm:^1.0.5":
- version: 1.0.5
- resolution: "escape-string-regexp@npm:1.0.5"
- checksum: a968ad453dd0c2724e14a4f20e177aaf32bb384ab41b674a8454afe9a41c5e6fe8903323e0a1052f56289d04bd600f81278edf140b0fcc02f5cac98d0f5b5371
- languageName: node
- linkType: hard
-
"escape-string-regexp@npm:^2.0.0":
version: 2.0.0
resolution: "escape-string-regexp@npm:2.0.0"
@@ -6477,15 +5803,15 @@ __metadata:
languageName: node
linkType: hard
-"eslint-module-utils@npm:^2.8.0":
- version: 2.8.1
- resolution: "eslint-module-utils@npm:2.8.1"
+"eslint-module-utils@npm:^2.12.0":
+ version: 2.12.0
+ resolution: "eslint-module-utils@npm:2.12.0"
dependencies:
debug: ^3.2.7
peerDependenciesMeta:
eslint:
optional: true
- checksum: 1aeeb97bf4b688d28de136ee57c824480c37691b40fa825c711a4caf85954e94b99c06ac639d7f1f6c1d69223bd21bcb991155b3e589488e958d5b83dfd0f882
+ checksum: 4d8b46dcd525d71276f9be9ffac1d2be61c9d54cc53c992e6333cf957840dee09381842b1acbbb15fc6b255ebab99cd481c5007ab438e5455a14abe1a0468558
languageName: node
linkType: hard
@@ -6510,74 +5836,75 @@ __metadata:
languageName: node
linkType: hard
-"eslint-plugin-import@npm:^2.29.1":
- version: 2.29.1
- resolution: "eslint-plugin-import@npm:2.29.1"
+"eslint-plugin-import@npm:^2.31.0":
+ version: 2.31.0
+ resolution: "eslint-plugin-import@npm:2.31.0"
dependencies:
- array-includes: ^3.1.7
- array.prototype.findlastindex: ^1.2.3
+ "@rtsao/scc": ^1.1.0
+ array-includes: ^3.1.8
+ array.prototype.findlastindex: ^1.2.5
array.prototype.flat: ^1.3.2
array.prototype.flatmap: ^1.3.2
debug: ^3.2.7
doctrine: ^2.1.0
eslint-import-resolver-node: ^0.3.9
- eslint-module-utils: ^2.8.0
- hasown: ^2.0.0
- is-core-module: ^2.13.1
+ eslint-module-utils: ^2.12.0
+ hasown: ^2.0.2
+ is-core-module: ^2.15.1
is-glob: ^4.0.3
minimatch: ^3.1.2
- object.fromentries: ^2.0.7
- object.groupby: ^1.0.1
- object.values: ^1.1.7
+ object.fromentries: ^2.0.8
+ object.groupby: ^1.0.3
+ object.values: ^1.2.0
semver: ^6.3.1
+ string.prototype.trimend: ^1.0.8
tsconfig-paths: ^3.15.0
peerDependencies:
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
- checksum: 5f35dfbf4e8e67f741f396987de9504ad125c49f4144508a93282b4ea0127e052bde65ab6def1f31b6ace6d5d430be698333f75bdd7dca3bc14226c92a083196
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
+ checksum: e21d116ddd1900e091ad120b3eb68c5dd5437fe2c930f1211781cd38b246f090a6b74d5f3800b8255a0ed29782591521ad44eb21c5534960a8f1fb4040fd913a
languageName: node
linkType: hard
-"eslint-plugin-jest@npm:^27.9.0":
- version: 27.9.0
- resolution: "eslint-plugin-jest@npm:27.9.0"
+"eslint-plugin-jest@npm:^28.9.0":
+ version: 28.9.0
+ resolution: "eslint-plugin-jest@npm:28.9.0"
dependencies:
- "@typescript-eslint/utils": ^5.10.0
+ "@typescript-eslint/utils": ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependencies:
- "@typescript-eslint/eslint-plugin": ^5.0.0 || ^6.0.0 || ^7.0.0
- eslint: ^7.0.0 || ^8.0.0
+ "@typescript-eslint/eslint-plugin": ^6.0.0 || ^7.0.0 || ^8.0.0
+ eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
jest: "*"
peerDependenciesMeta:
"@typescript-eslint/eslint-plugin":
optional: true
jest:
optional: true
- checksum: b8b09f7d8ba3d84a8779a6e95702a6e4dce45ab034e4edf5ddb631e77cd38dcdf791dfd9228e0a0d1d80d1eb2d278deb62ad2ec39f10fb8fd43cec07304e0c38
+ checksum: 56b0d2fb18a32bf56b0eb8c7790c355513535a239451d9d00184829cbd0ba35b6c68eec64e850a6299453f9c37338b6797d3184594c0326c8fdcc029024065b8
languageName: node
linkType: hard
-"eslint-plugin-jsx-a11y@npm:^6.8.0":
- version: 6.8.0
- resolution: "eslint-plugin-jsx-a11y@npm:6.8.0"
+"eslint-plugin-jsx-a11y@npm:^6.10.2":
+ version: 6.10.2
+ resolution: "eslint-plugin-jsx-a11y@npm:6.10.2"
dependencies:
- "@babel/runtime": ^7.23.2
- aria-query: ^5.3.0
- array-includes: ^3.1.7
+ aria-query: ^5.3.2
+ array-includes: ^3.1.8
array.prototype.flatmap: ^1.3.2
ast-types-flow: ^0.0.8
- axe-core: =4.7.0
- axobject-query: ^3.2.1
+ axe-core: ^4.10.0
+ axobject-query: ^4.1.0
damerau-levenshtein: ^1.0.8
emoji-regex: ^9.2.2
- es-iterator-helpers: ^1.0.15
- hasown: ^2.0.0
+ hasown: ^2.0.2
jsx-ast-utils: ^3.3.5
language-tags: ^1.0.9
minimatch: ^3.1.2
- object.entries: ^1.1.7
- object.fromentries: ^2.0.7
+ object.fromentries: ^2.0.8
+ safe-regex-test: ^1.0.3
+ string.prototype.includes: ^2.0.1
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
- checksum: 199b883e526e6f9d7c54cb3f094abc54f11a1ec816db5fb6cae3b938eb0e503acc10ccba91ca7451633a9d0b9abc0ea03601844a8aba5fe88c5e8897c9ac8f49
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
+ checksum: d93354e03b0cf66f018d5c50964e074dffe4ddf1f9b535fa020d19c4ae45f89c1a16e9391ca61ac3b19f7042c751ac0d361a056a65cbd1de24718a53ff8daa6e
languageName: node
linkType: hard
@@ -6622,59 +5949,49 @@ __metadata:
languageName: node
linkType: hard
-"eslint-plugin-promise@npm:^6.1.1":
- version: 6.1.1
- resolution: "eslint-plugin-promise@npm:6.1.1"
+"eslint-plugin-promise@npm:^7.1.0":
+ version: 7.1.0
+ resolution: "eslint-plugin-promise@npm:7.1.0"
peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
- checksum: ec705741c110cd1cb4d702776e1c7f7fe60b671b71f706c88054ab443cf2767aae5a663928fb426373ba1095eaeda312a740a4f880546631f0e0727f298b3393
+ eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
+ checksum: bbc3406139715dfa5f48d04f6d5b5e82f68929d954b0fa3821eb8cd6dc381b210512cedd2d874e5de5381005d316566f4ae046a4750ce3f5f5cbf28a14cc0ab2
languageName: node
linkType: hard
-"eslint-plugin-react-hooks@npm:^4.6.0":
- version: 4.6.0
- resolution: "eslint-plugin-react-hooks@npm:4.6.0"
+"eslint-plugin-react-hooks@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "eslint-plugin-react-hooks@npm:5.0.0"
peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- checksum: 58c7e10ea5792c33346fcf5cb4024e14837035ce412ff99c2dcb7c4f903dc9b17939078f80bfef826301ce326582c396c00e8e0ac9d10ac2cde2b42d33763c65
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
+ checksum: bcb74b421f32e4203a7100405b57aab85526be4461e5a1da01bc537969a30012d2ee209a2c2a6cac543833a27188ce1e6ad71e4628d0bb4a2e5365cad86c5002
languageName: node
linkType: hard
-"eslint-plugin-react@npm:^7.34.1":
- version: 7.34.1
- resolution: "eslint-plugin-react@npm:7.34.1"
+"eslint-plugin-react@npm:^7.37.2":
+ version: 7.37.2
+ resolution: "eslint-plugin-react@npm:7.37.2"
dependencies:
- array-includes: ^3.1.7
- array.prototype.findlast: ^1.2.4
+ array-includes: ^3.1.8
+ array.prototype.findlast: ^1.2.5
array.prototype.flatmap: ^1.3.2
- array.prototype.toreversed: ^1.1.2
- array.prototype.tosorted: ^1.1.3
+ array.prototype.tosorted: ^1.1.4
doctrine: ^2.1.0
- es-iterator-helpers: ^1.0.17
+ es-iterator-helpers: ^1.1.0
estraverse: ^5.3.0
+ hasown: ^2.0.2
jsx-ast-utils: ^2.4.1 || ^3.0.0
minimatch: ^3.1.2
- object.entries: ^1.1.7
- object.fromentries: ^2.0.7
- object.hasown: ^1.1.3
- object.values: ^1.1.7
+ object.entries: ^1.1.8
+ object.fromentries: ^2.0.8
+ object.values: ^1.2.0
prop-types: ^15.8.1
resolve: ^2.0.0-next.5
semver: ^6.3.1
- string.prototype.matchall: ^4.0.10
+ string.prototype.matchall: ^4.0.11
+ string.prototype.repeat: ^1.0.0
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
- checksum: 7c61b1314d37a4ac2f2474f9571f801f1a1a5d81dcd4abbb5d07145406518722fb792367267757ee116bde254be9753242d6b93c9619110398b3fe1746e4848c
- languageName: node
- linkType: hard
-
-"eslint-scope@npm:^5.1.1":
- version: 5.1.1
- resolution: "eslint-scope@npm:5.1.1"
- dependencies:
- esrecurse: ^4.3.0
- estraverse: ^4.1.1
- checksum: d30ef9dc1c1cbdece34db1539a4933fe3f9b14e1ffb27ecc85987902ee663ad7c9473bbd49a9a03195a373741e62e2f807c4938992e019b511993d163450e70a
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
+ checksum: 01c498f263c201698bf653973760f86a07fa0cdec56c044f3eaa5ddaae71c64326015dfa5fde76ca8c5386ffe789fc79932624b614e13b6a1ad789fee3f7c491
languageName: node
linkType: hard
@@ -6697,17 +6014,6 @@ __metadata:
languageName: node
linkType: hard
-"eslint-utils@npm:^3.0.0":
- version: 3.0.0
- resolution: "eslint-utils@npm:3.0.0"
- dependencies:
- eslint-visitor-keys: ^2.0.0
- peerDependencies:
- eslint: ">=5"
- checksum: 45aa2b63667a8d9b474c98c28af908d0a592bed1a4568f3145cd49fb5d9510f545327ec95561625290313fe126e6d7bdfe3fdbdb6f432689fab6b9497d3bfb52
- languageName: node
- linkType: hard
-
"eslint-visitor-keys@npm:^1.1.0":
version: 1.3.0
resolution: "eslint-visitor-keys@npm:1.3.0"
@@ -6715,29 +6021,22 @@ __metadata:
languageName: node
linkType: hard
-"eslint-visitor-keys@npm:^2.0.0":
- version: 2.1.0
- resolution: "eslint-visitor-keys@npm:2.1.0"
- checksum: 9f0e3a2db751d84067d15977ac4b4472efd6b303e369e6ff241a99feac04da758f46d5add022c33d06b53596038dbae4b4aceb27c7e68b8dfc1055b35e495787
- languageName: node
- linkType: hard
-
-"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3":
+"eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3":
version: 3.4.3
resolution: "eslint-visitor-keys@npm:3.4.3"
checksum: 92708e882c0a5ffd88c23c0b404ac1628cf20104a108c745f240a13c332a11aac54f49a22d5762efbffc18ecbc9a580d1b7ad034bf5f3cc3307e5cbff2ec9820
languageName: node
linkType: hard
-"eslint@npm:^8.57.0":
- version: 8.57.0
- resolution: "eslint@npm:8.57.0"
+"eslint@npm:^8.57.1":
+ version: 8.57.1
+ resolution: "eslint@npm:8.57.1"
dependencies:
"@eslint-community/eslint-utils": ^4.2.0
"@eslint-community/regexpp": ^4.6.1
"@eslint/eslintrc": ^2.1.4
- "@eslint/js": 8.57.0
- "@humanwhocodes/config-array": ^0.11.14
+ "@eslint/js": 8.57.1
+ "@humanwhocodes/config-array": ^0.13.0
"@humanwhocodes/module-importer": ^1.0.1
"@nodelib/fs.walk": ^1.2.8
"@ungap/structured-clone": ^1.2.0
@@ -6773,7 +6072,7 @@ __metadata:
text-table: ^0.2.0
bin:
eslint: bin/eslint.js
- checksum: 00bb96fd2471039a312435a6776fe1fd557c056755eaa2b96093ef3a8508c92c8775d5f754768be6b1dddd09fdd3379ddb231eeb9b6c579ee17ea7d68000a529
+ checksum: 1fd31533086c1b72f86770a4d9d7058ee8b4643fd1cfd10c7aac1ecb8725698e88352a87805cf4b2ce890aa35947df4b4da9655fb7fdfa60dbb448a43f6ebcf1
languageName: node
linkType: hard
@@ -6799,11 +6098,11 @@ __metadata:
linkType: hard
"esquery@npm:^1.4.2":
- version: 1.5.0
- resolution: "esquery@npm:1.5.0"
+ version: 1.6.0
+ resolution: "esquery@npm:1.6.0"
dependencies:
estraverse: ^5.1.0
- checksum: a084bd049d954cc88ac69df30534043fb2aee5555b56246493f42f27d1e168f00d9e5d4192e46f10290d312dc30dc7d58994d61a609c579c1219d636996f9213
+ checksum: cb9065ec605f9da7a76ca6dadb0619dfb611e37a81e318732977d90fab50a256b95fee2d925fba7c2f3f0523aa16f91587246693bc09bc34d5a59575fe6e93d2
languageName: node
linkType: hard
@@ -6816,13 +6115,6 @@ __metadata:
languageName: node
linkType: hard
-"estraverse@npm:^4.1.1":
- version: 4.3.0
- resolution: "estraverse@npm:4.3.0"
- checksum: 9cb46463ef8a8a4905d3708a652d60122a0c20bb58dec7e0e12ab0e7235123d74214fc0141d743c381813e1b992767e2708194f6f6e0f9fd00c1b4e0887b8b6d
- languageName: node
- linkType: hard
-
"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0, estraverse@npm:^5.3.0":
version: 5.3.0
resolution: "estraverse@npm:5.3.0"
@@ -6845,28 +6137,13 @@ __metadata:
linkType: hard
"event-target-shim@npm:^5.0.0, event-target-shim@npm:^5.0.1":
- version: 5.0.1
- resolution: "event-target-shim@npm:5.0.1"
- checksum: 0255d9f936215fd206156fd4caa9e8d35e62075d720dc7d847e89b417e5e62cf1ce6c9b4e0a1633a9256de0efefaf9f8d26924b1f3c8620cffb9db78e7d3076b
- languageName: node
- linkType: hard
-
-"execa@npm:^1.0.0":
- version: 1.0.0
- resolution: "execa@npm:1.0.0"
- dependencies:
- cross-spawn: ^6.0.0
- get-stream: ^4.0.0
- is-stream: ^1.1.0
- npm-run-path: ^2.0.0
- p-finally: ^1.0.0
- signal-exit: ^3.0.0
- strip-eof: ^1.0.0
- checksum: cc71707c9aa4a2552346893ee63198bf70a04b5a1bc4f8a0ef40f1d03c319eae80932c59191f037990d7d102193e83a38ec72115fff814ec2fb3099f3661a590
+ version: 5.0.1
+ resolution: "event-target-shim@npm:5.0.1"
+ checksum: 0255d9f936215fd206156fd4caa9e8d35e62075d720dc7d847e89b417e5e62cf1ce6c9b4e0a1633a9256de0efefaf9f8d26924b1f3c8620cffb9db78e7d3076b
languageName: node
linkType: hard
-"execa@npm:^5.0.0":
+"execa@npm:^5.0.0, execa@npm:^5.1.1":
version: 5.1.1
resolution: "execa@npm:5.1.1"
dependencies:
@@ -6903,6 +6180,13 @@ __metadata:
languageName: node
linkType: hard
+"exponential-backoff@npm:^3.1.1":
+ version: 3.1.1
+ resolution: "exponential-backoff@npm:3.1.1"
+ checksum: 160456d2d647e6019640bd07111634d8c353038d9fa40176afb7cd49b0548bdae83b56d05e907c2cce2300b81cae35d800ef92fefb9d0208e190fa3b7d6bb579
+ languageName: node
+ linkType: hard
+
"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3":
version: 3.1.3
resolution: "fast-deep-equal@npm:3.1.3"
@@ -6917,16 +6201,16 @@ __metadata:
languageName: node
linkType: hard
-"fast-glob@npm:^3.2.9":
- version: 3.2.11
- resolution: "fast-glob@npm:3.2.11"
+"fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2":
+ version: 3.3.2
+ resolution: "fast-glob@npm:3.3.2"
dependencies:
"@nodelib/fs.stat": ^2.0.2
"@nodelib/fs.walk": ^1.2.3
glob-parent: ^5.1.2
merge2: ^1.3.0
micromatch: ^4.0.4
- checksum: f726d4d6545ae9ade242eba78ae418cd8beac6c9291cdc36fc6b3b4e54f04fa0ecde5767256f2a600d6e14dc49a841adb3aa4b5f3f0c06b35dd4f3954965443d
+ checksum: 42baad7b9cd40b63e42039132bde27ca2cb3a4950d0a0f9abe4639ea1aa9d3e3b40f98b1fe31cbc0cc17b664c9ea7447d911a152fa34ec5b72977b125a6fc845
languageName: node
linkType: hard
@@ -6944,21 +6228,32 @@ __metadata:
languageName: node
linkType: hard
+"fast-xml-parser@npm:^4.4.1":
+ version: 4.5.0
+ resolution: "fast-xml-parser@npm:4.5.0"
+ dependencies:
+ strnum: ^1.0.5
+ bin:
+ fxparser: src/cli/cli.js
+ checksum: 71d206c9e137f5c26af88d27dde0108068a5d074401901d643c500c36e95dfd828333a98bda020846c41f5b9b364e2b0e9be5b19b0bdcab5cf31559c07b80a95
+ languageName: node
+ linkType: hard
+
"fastq@npm:^1.6.0":
- version: 1.13.0
- resolution: "fastq@npm:1.13.0"
+ version: 1.17.1
+ resolution: "fastq@npm:1.17.1"
dependencies:
reusify: ^1.0.4
- checksum: 76c7b5dafb93c7e74359a3e6de834ce7a7c2e3a3184050ed4cb652661de55cf8d4895178d8d3ccd23069395056c7bb15450660d38fb382ca88c142b22694d7c9
+ checksum: 1095f16cea45fb3beff558bb3afa74ca7a9250f5a670b65db7ed585f92b4b48381445cd328b3d87323da81e43232b5d5978a8201bde84e0cd514310f1ea6da34
languageName: node
linkType: hard
"fb-watchman@npm:^2.0.0":
- version: 2.0.1
- resolution: "fb-watchman@npm:2.0.1"
+ version: 2.0.2
+ resolution: "fb-watchman@npm:2.0.2"
dependencies:
bser: 2.1.1
- checksum: 796ce6de1f915d4230771a6ad2219e0555275f2936d66022321845f7e69c65b10baa74959322b1ab94ac65b91307f1f09a6b8e2097a337ff113101ebbc4c6958
+ checksum: feae89ac148adb8f6ae8ccd87632e62b13563e6fb114cacb5265c51f585b17e2e268084519fb2edd133872f1d47a18e6bfd7e5e08625c0d41b93149694187581
languageName: node
linkType: hard
@@ -7061,43 +6356,44 @@ __metadata:
linkType: hard
"flat-cache@npm:^3.0.4":
- version: 3.0.4
- resolution: "flat-cache@npm:3.0.4"
+ version: 3.2.0
+ resolution: "flat-cache@npm:3.2.0"
dependencies:
- flatted: ^3.1.0
+ flatted: ^3.2.9
+ keyv: ^4.5.3
rimraf: ^3.0.2
- checksum: f274dcbadb09ad8d7b6edf2ee9b034bc40bf0c12638f6c4084e9f1d39208cb104a5ebbb24b398880ef048200eaa116852f73d2d8b72e8c9627aba8c3e27ca057
+ checksum: b76f611bd5f5d68f7ae632e3ae503e678d205cf97a17c6ab5b12f6ca61188b5f1f7464503efae6dc18683ed8f0b41460beb48ac4b9ac63fe6201296a91ba2f75
languageName: node
linkType: hard
-"flatted@npm:^3.1.0":
- version: 3.2.2
- resolution: "flatted@npm:3.2.2"
- checksum: 6e21d30a691867893d145dc1c231345ea96ed18249c3a551138322be5c5425209606ae568536953177db0376e91f916947a4ae956be21a240ca9af603cf73cb5
+"flatted@npm:^3.2.9":
+ version: 3.3.1
+ resolution: "flatted@npm:3.3.1"
+ checksum: 324166b125ee07d4ca9bcf3a5f98d915d5db4f39d711fba640a3178b959919aae1f7cfd8aabcfef5826ed8aa8a2aa14cc85b2d7d18ff638ddf4ae3df39573eaf
languageName: node
linkType: hard
-"flow-parser@npm:0.*":
- version: 0.164.0
- resolution: "flow-parser@npm:0.164.0"
- checksum: d2dbc5efb76d9f47555730f77334e44c1c21b466d271c662e3b036f9c0be7571ca0e6ab220617db5df0cebc52b0eafc558028881cce1c96b617dc686f26b5d90
+"flow-enums-runtime@npm:^0.0.6":
+ version: 0.0.6
+ resolution: "flow-enums-runtime@npm:0.0.6"
+ checksum: f0b9ca52dbf9cf30264ebf1af034ac7b80fb5e5ef009efc789b89a90aa17349a3ff5672b3b27c6eb89d5e02808fc0dfb7effbfc5a793451694d6cce48774d51e
languageName: node
linkType: hard
-"flow-parser@npm:^0.121.0":
- version: 0.121.0
- resolution: "flow-parser@npm:0.121.0"
- checksum: 831cf56b2ed987677fd056fd5a035aee88c9c474c507e14e8ffd85374da7b42236a7280a801fc893779331be638c2c4f8af3fb654a298f8ed16c209926450576
+"flow-parser@npm:0.*":
+ version: 0.251.1
+ resolution: "flow-parser@npm:0.251.1"
+ checksum: e52b9ae6251317e3255f804aeaa55079622e88dc2e5ff620d4974a35c19a5eb27f5781e74e8e133a05ffa4e05b60614b0668f49cb06d88d54e58b08748e5909f
languageName: node
linkType: hard
"follow-redirects@npm:^1.15.6":
- version: 1.15.6
- resolution: "follow-redirects@npm:1.15.6"
+ version: 1.15.9
+ resolution: "follow-redirects@npm:1.15.9"
peerDependenciesMeta:
debug:
optional: true
- checksum: 9ff767f0d7be6aa6870c82ac79cf0368cd73e01bbc00e9eb1c2a16fbb198ec105e3c9b6628bb98e9f3ac66fe29a957b9645bcb9a490bb7aa0d35f908b6b85071
+ checksum: 5829165bd112c3c0e82be6c15b1a58fa9dcfaede3b3c54697a82fe4a62dd5ae5e8222956b448d2f98e331525f05d00404aba7d696de9e761ef6e42fdc780244f
languageName: node
linkType: hard
@@ -7110,14 +6406,24 @@ __metadata:
languageName: node
linkType: hard
+"foreground-child@npm:^3.1.0":
+ version: 3.3.0
+ resolution: "foreground-child@npm:3.3.0"
+ dependencies:
+ cross-spawn: ^7.0.0
+ signal-exit: ^4.0.1
+ checksum: 028f1d41000553fcfa6c4bb5c372963bf3d9bf0b1f25a87d1a6253014343fb69dfb1b42d9625d7cf44c8ba429940f3d0ff718b62105d4d4a4f6ef8ca0a53faa2
+ languageName: node
+ linkType: hard
+
"form-data@npm:^4.0.0":
- version: 4.0.0
- resolution: "form-data@npm:4.0.0"
+ version: 4.0.1
+ resolution: "form-data@npm:4.0.1"
dependencies:
asynckit: ^0.4.0
combined-stream: ^1.0.8
mime-types: ^2.1.12
- checksum: cb6f3ac49180be03ff07ba3ff125f9eba2ff0b277fb33c7fc47569fc5e616882c5b1c69b9904c4c4187e97dd0419dd03b134174756f296dec62041e6527e2c6e
+ checksum: bb102d570be8592c23f4ea72d7df9daa50c7792eb0cf1c5d7e506c1706e7426a4e4ae48a35b109e91c85f1c0ec63774a21ae252b66f4eb981cb8efef7d0463c8
languageName: node
linkType: hard
@@ -7128,17 +6434,6 @@ __metadata:
languageName: node
linkType: hard
-"fs-extra@npm:^1.0.0":
- version: 1.0.0
- resolution: "fs-extra@npm:1.0.0"
- dependencies:
- graceful-fs: ^4.1.2
- jsonfile: ^2.1.0
- klaw: ^1.0.0
- checksum: 1128e46b3364f458ca07fbd186a05010b05255ad6ab17abc2a262086600f1925a9e5a259b9436ee42f57875e9ebb171348f25d4289fecd395b05488db9ceeda8
- languageName: node
- linkType: hard
-
"fs-extra@npm:^8.1.0":
version: 8.1.0
resolution: "fs-extra@npm:8.1.0"
@@ -7162,7 +6457,7 @@ __metadata:
languageName: node
linkType: hard
-"fs-minipass@npm:^2.0.0, fs-minipass@npm:^2.1.0":
+"fs-minipass@npm:^2.0.0":
version: 2.1.0
resolution: "fs-minipass@npm:2.1.0"
dependencies:
@@ -7171,6 +6466,15 @@ __metadata:
languageName: node
linkType: hard
+"fs-minipass@npm:^3.0.0":
+ version: 3.0.3
+ resolution: "fs-minipass@npm:3.0.3"
+ dependencies:
+ minipass: ^7.0.3
+ checksum: 63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94
+ languageName: node
+ linkType: hard
+
"fs.realpath@npm:^1.0.0":
version: 1.0.0
resolution: "fs.realpath@npm:1.0.0"
@@ -7178,7 +6482,7 @@ __metadata:
languageName: node
linkType: hard
-"fsevents@npm:^2.1.2":
+"fsevents@npm:^2.3.2":
version: 2.3.3
resolution: "fsevents@npm:2.3.3"
dependencies:
@@ -7188,17 +6492,7 @@ __metadata:
languageName: node
linkType: hard
-"fsevents@npm:^2.3.2":
- version: 2.3.2
- resolution: "fsevents@npm:2.3.2"
- dependencies:
- node-gyp: latest
- checksum: be78a3efa3e181cda3cf7a4637cb527bcebb0bd0ea0440105a3bb45b86f9245b307dc10a2507e8f4498a7d4ec349d1910f4d73e4d4495b16103106e07eee735b
- conditions: os=darwin
- languageName: node
- linkType: hard
-
-"fsevents@patch:fsevents@^2.1.2#~builtin":
+"fsevents@patch:fsevents@^2.3.2#~builtin":
version: 2.3.3
resolution: "fsevents@patch:fsevents@npm%3A2.3.3#~builtin::version=2.3.3&hash=18f3a7"
dependencies:
@@ -7207,15 +6501,6 @@ __metadata:
languageName: node
linkType: hard
-"fsevents@patch:fsevents@^2.3.2#~builtin":
- version: 2.3.2
- resolution: "fsevents@patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=18f3a7"
- dependencies:
- node-gyp: latest
- conditions: os=darwin
- languageName: node
- linkType: hard
-
"function-bind@npm:^1.1.2":
version: 1.1.2
resolution: "function-bind@npm:1.1.2"
@@ -7223,7 +6508,7 @@ __metadata:
languageName: node
linkType: hard
-"function.prototype.name@npm:^1.1.5, function.prototype.name@npm:^1.1.6":
+"function.prototype.name@npm:^1.1.6":
version: 1.1.6
resolution: "function.prototype.name@npm:1.1.6"
dependencies:
@@ -7242,22 +6527,6 @@ __metadata:
languageName: node
linkType: hard
-"gauge@npm:^4.0.3":
- version: 4.0.4
- resolution: "gauge@npm:4.0.4"
- dependencies:
- aproba: ^1.0.3 || ^2.0.0
- color-support: ^1.1.3
- console-control-strings: ^1.1.0
- has-unicode: ^2.0.1
- signal-exit: ^3.0.7
- string-width: ^4.2.3
- strip-ansi: ^6.0.1
- wide-align: ^1.1.5
- checksum: ef10d7981113d69225135f994c9f8c4369d945e64a8fc721d655a3a38421b738c9fe899951721d1b47b73c41fdb5404ac87cc8903b2ecbed95d2800363e7e58c
- languageName: node
- linkType: hard
-
"gensync@npm:^1.0.0-beta.2":
version: 1.0.0-beta.2
resolution: "gensync@npm:1.0.0-beta.2"
@@ -7292,15 +6561,6 @@ __metadata:
languageName: node
linkType: hard
-"get-stream@npm:^4.0.0":
- version: 4.1.0
- resolution: "get-stream@npm:4.1.0"
- dependencies:
- pump: ^3.0.0
- checksum: 294d876f667694a5ca23f0ca2156de67da950433b6fb53024833733975d32582896dbc7f257842d331809979efccf04d5e0b6b75ad4d45744c45f193fd497539
- languageName: node
- linkType: hard
-
"get-stream@npm:^6.0.0":
version: 6.0.1
resolution: "get-stream@npm:6.0.1"
@@ -7337,30 +6597,33 @@ __metadata:
languageName: node
linkType: hard
-"glob@npm:^7.1.3, glob@npm:^7.1.4":
- version: 7.1.7
- resolution: "glob@npm:7.1.7"
+"glob@npm:^10.2.2, glob@npm:^10.3.10":
+ version: 10.4.5
+ resolution: "glob@npm:10.4.5"
dependencies:
- fs.realpath: ^1.0.0
- inflight: ^1.0.4
- inherits: 2
- minimatch: ^3.0.4
- once: ^1.3.0
- path-is-absolute: ^1.0.0
- checksum: 173245e6f9ccf904309eb7ef4a44a11f3bf68e9e341dff5a28b5db0dd7123b7506daf41497f3437a0710f57198187b758c2351eeaabce4d16935e956920da6a4
+ foreground-child: ^3.1.0
+ jackspeak: ^3.1.2
+ minimatch: ^9.0.4
+ minipass: ^7.1.2
+ package-json-from-dist: ^1.0.0
+ path-scurry: ^1.11.1
+ bin:
+ glob: dist/esm/bin.mjs
+ checksum: 19a9759ea77b8e3ca0a43c2f07ecddc2ad46216b786bb8f993c445aee80d345925a21e5280c7b7c6c59e860a0154b84e4b2b60321fea92cd3c56b4a7489f160e
languageName: node
linkType: hard
-"glob@npm:^8.0.1":
- version: 8.0.3
- resolution: "glob@npm:8.0.3"
+"glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4":
+ version: 7.2.3
+ resolution: "glob@npm:7.2.3"
dependencies:
fs.realpath: ^1.0.0
inflight: ^1.0.4
inherits: 2
- minimatch: ^5.0.1
+ minimatch: ^3.1.1
once: ^1.3.0
- checksum: 07ebaf2ed83e76b10901ec4982040ebd85458b787b4386f751a0514f6c8e416ed6c9eec5a892571eb0ef00b09d1bd451f72b5d9fb7b63770efd400532486e731
+ path-is-absolute: ^1.0.0
+ checksum: 65676153e2b0c9095100fe7f25a778bf45608eeb32c6048cf307f579649bcc30353277b3b898a3792602c65764e5baa4f643714dfbdfd64ea271d210c7a425fe
languageName: node
linkType: hard
@@ -7380,12 +6643,13 @@ __metadata:
languageName: node
linkType: hard
-"globalthis@npm:^1.0.3":
- version: 1.0.3
- resolution: "globalthis@npm:1.0.3"
+"globalthis@npm:^1.0.3, globalthis@npm:^1.0.4":
+ version: 1.0.4
+ resolution: "globalthis@npm:1.0.4"
dependencies:
- define-properties: ^1.1.3
- checksum: 0db6e9af102a5254630351557ac15e6909bc7459d3e3f6b001e59fe784c96d31108818f032d9095739355a88467459e6488ff16584ee6250cd8c27dec05af4b0
+ define-properties: ^1.2.1
+ gopd: ^1.0.1
+ checksum: 9d156f313af79d80b1566b93e19285f481c591ad6d0d319b4be5e03750d004dde40a39a0f26f7e635f9007a3600802f53ecd85a759b86f109e80a5f705e01846
languageName: node
linkType: hard
@@ -7413,13 +6677,6 @@ __metadata:
linkType: hard
"graceful-fs@npm:^4.1.11, graceful-fs@npm:^4.1.3, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6, graceful-fs@npm:^4.2.9":
- version: 4.2.10
- resolution: "graceful-fs@npm:4.2.10"
- checksum: 4223a833e38e1d0d2aea630c2433cfb94ddc07dfc11d511dbd6be1d16688c5be848acc31f9a5d0d0ddbfb56d2ee5a6ae0278aceeb0ca6a13f27e06b9956fb952
- languageName: node
- linkType: hard
-
-"graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.9":
version: 4.2.11
resolution: "graceful-fs@npm:4.2.11"
checksum: 386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2
@@ -7440,13 +6697,6 @@ __metadata:
languageName: node
linkType: hard
-"has-flag@npm:^3.0.0":
- version: 3.0.0
- resolution: "has-flag@npm:3.0.0"
- checksum: 1c6c83b14b8b1b3c25b0727b8ba3e3b647f99e9e6e13eb7322107261de07a4c1be56fc0d45678fc376e09772a3a1642ccdaf8fc69bdf123b6c086598397ce473
- languageName: node
- linkType: hard
-
"has-flag@npm:^4.0.0":
version: 4.0.0
resolution: "has-flag@npm:4.0.0"
@@ -7486,13 +6736,6 @@ __metadata:
languageName: node
linkType: hard
-"has-unicode@npm:^2.0.1":
- version: 2.0.1
- resolution: "has-unicode@npm:2.0.1"
- checksum: ebdb2f4895c26bb08a8a100b62d362e49b2190bcfd84b76bc4be1a3bd4d254ec52d0dd9f2fbcc093fc5eb878b20c52146f9dfd33e2686ed28982187be593b47c
- languageName: node
- linkType: hard
-
"hasown@npm:^2.0.0, hasown@npm:^2.0.1, hasown@npm:^2.0.2":
version: 2.0.2
resolution: "hasown@npm:2.0.2"
@@ -7502,28 +6745,35 @@ __metadata:
languageName: node
linkType: hard
-"hermes-estree@npm:0.8.0":
- version: 0.8.0
- resolution: "hermes-estree@npm:0.8.0"
- checksum: 091bca8dcd656d80eff7ff2dee13891698e0fe1d77265e6ed5a3c7d5ed7817a1e6bc997e3acec4b37bcca33558e56021510bc8621e90ec91fbf1b290a9be958c
+"hermes-estree@npm:0.23.1":
+ version: 0.23.1
+ resolution: "hermes-estree@npm:0.23.1"
+ checksum: 59ca9f3980419fcf511a172f0ee9960d86c8ba44ea8bc13d3bd0b6208e9540db1a0a9e46b0e797151f11b0e8e33b2bf850907aef4a5c9ac42c53809cefefc405
languageName: node
linkType: hard
-"hermes-parser@npm:0.8.0":
- version: 0.8.0
- resolution: "hermes-parser@npm:0.8.0"
+"hermes-estree@npm:0.24.0":
+ version: 0.24.0
+ resolution: "hermes-estree@npm:0.24.0"
+ checksum: d622d8998e8c67e1e220f98d3b8bbad227c34d8a2757b3de714b37f4fb436656872a1eb7cd3b146e341db5bb217da5dd6cd4f94494eb92190d30368ae0e30cb8
+ languageName: node
+ linkType: hard
+
+"hermes-parser@npm:0.23.1":
+ version: 0.23.1
+ resolution: "hermes-parser@npm:0.23.1"
dependencies:
- hermes-estree: 0.8.0
- checksum: c239f757f8461c2ee376cfd8dd8f3b640bb375b960dee99249ed8648e0ce27a7dc9d735e018ebd2522ffdee3ae6296ec51211efb2ac64476d76bf2ba60e795a7
+ hermes-estree: 0.23.1
+ checksum: 56907e6136d2297543922dd9f8ee27378ef010c11dc1e0b4a0866faab2c527613b0edcda5e1ebc0daa0ca1ae6528734dfc479e18267aabe4dce0c7198217fd97
languageName: node
linkType: hard
-"hermes-profile-transformer@npm:^0.0.6":
- version: 0.0.6
- resolution: "hermes-profile-transformer@npm:0.0.6"
+"hermes-parser@npm:0.24.0":
+ version: 0.24.0
+ resolution: "hermes-parser@npm:0.24.0"
dependencies:
- source-map: ^0.7.3
- checksum: d772faa712f97ec009cb8de1f6b2dc26af491d1baaea92af7649fbb9cafd60a9c7a499de32d23ba7606e501147bfb2daf14e477c967f11e3de8a1e41ecf626c7
+ hermes-estree: 0.24.0
+ checksum: 7159497a425cef0e6259f5db01480110c031e86772c6ff0ef73664be94448c3f004a10ef1ec8ff32faf6a069b69f1c15f7007ff9c520b212f9a31410832285f7
languageName: node
linkType: hard
@@ -7543,7 +6793,7 @@ __metadata:
languageName: node
linkType: hard
-"http-cache-semantics@npm:^4.1.0":
+"http-cache-semantics@npm:^4.1.1":
version: 4.1.1
resolution: "http-cache-semantics@npm:4.1.1"
checksum: ce1319b8a382eb3cbb4a37c19f6bfe14e5bb5be3d09079e885e8c513ab2d3cd9214902f8a31c9dc4e37022633ceabfc2d697405deeaf1b8f3552bb4ed996fdfc
@@ -7563,24 +6813,33 @@ __metadata:
languageName: node
linkType: hard
-"http-proxy-agent@npm:^5.0.0":
- version: 5.0.0
- resolution: "http-proxy-agent@npm:5.0.0"
+"http-proxy-agent@npm:^7.0.0":
+ version: 7.0.2
+ resolution: "http-proxy-agent@npm:7.0.2"
dependencies:
- "@tootallnate/once": 2
- agent-base: 6
- debug: 4
- checksum: 32a05e413430b2c1e542e5c74b38a9f14865301dd69dff2e53ddb684989440e3d2ce0c4b64d25eb63cf6283e6265ff979a61cf93e3ca3d23047ddfdc8df34a32
+ agent-base: ^7.1.0
+ debug: ^4.3.4
+ checksum: 4207b06a4580fb85dd6dff521f0abf6db517489e70863dca1a0291daa7f2d3d2d6015a57bd702af068ea5cf9f1f6ff72314f5f5b4228d299c0904135d2aef921
languageName: node
linkType: hard
"https-proxy-agent@npm:^5.0.0":
- version: 5.0.0
- resolution: "https-proxy-agent@npm:5.0.0"
+ version: 5.0.1
+ resolution: "https-proxy-agent@npm:5.0.1"
dependencies:
agent-base: 6
debug: 4
- checksum: 670c04f7f0effb5a449c094ea037cbcfb28a5ab93ed22e8c343095202cc7288027869a5a21caf4ee3b8ea06f9624ef1e1fc9044669c0fd92617654ff39f30806
+ checksum: 6dd639f03434003577c62b27cafdb864784ef19b2de430d8ae2a1d45e31c4fd60719e5637b44db1a88a046934307da7089e03d6089ec3ddacc1189d8de8897d1
+ languageName: node
+ linkType: hard
+
+"https-proxy-agent@npm:^7.0.1":
+ version: 7.0.5
+ resolution: "https-proxy-agent@npm:7.0.5"
+ dependencies:
+ agent-base: ^7.0.2
+ debug: 4
+ checksum: 2490e3acec397abeb88807db52cac59102d5ed758feee6df6112ab3ccd8325e8a1ce8bce6f4b66e5470eca102d31e425ace904242e4fa28dbe0c59c4bafa7b2c
languageName: node
linkType: hard
@@ -7591,12 +6850,12 @@ __metadata:
languageName: node
linkType: hard
-"humanize-ms@npm:^1.2.1":
- version: 1.2.1
- resolution: "humanize-ms@npm:1.2.1"
- dependencies:
- ms: ^2.0.0
- checksum: f34a2c20161d02303c2807badec2f3b49cbfbbb409abd4f95a07377ae01cfe6b59e3d15ac609cffcd8f2521f0eb37b7e1091acf65da99aa2a4f1ad63c21e7e7a
+"hyochan-welcome@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "hyochan-welcome@npm:1.0.1"
+ bin:
+ hyochan-welcome: bin/hello.js
+ checksum: a1e499188e71f9183ec199aa0fbf340e764442f494df025ef52f66896339ae3f7633257bed21e3dc9ea2b8b6150a49b07483d94a28e053f92be243cb9be90c55
languageName: node
linkType: hard
@@ -7616,19 +6875,21 @@ __metadata:
languageName: node
linkType: hard
-"ignore@npm:^5.1.1, ignore@npm:^5.2.0, ignore@npm:^5.2.4":
- version: 5.3.1
- resolution: "ignore@npm:5.3.1"
- checksum: 703f7f45ffb2a27fb2c5a8db0c32e7dee66b33a225d28e8db4e1be6474795f606686a6e3bcc50e1aa12f2042db4c9d4a7d60af3250511de74620fbed052ea4cd
+"ignore@npm:^5.1.1, ignore@npm:^5.2.0, ignore@npm:^5.3.1":
+ version: 5.3.2
+ resolution: "ignore@npm:5.3.2"
+ checksum: f9f652c957983634ded1e7f02da3b559a0d4cc210fca3792cb67f1b153623c9c42efdc1c4121af171e295444459fc4a9201101fb041b1104a3c000bccb188337
languageName: node
linkType: hard
-"image-size@npm:^0.6.0":
- version: 0.6.3
- resolution: "image-size@npm:0.6.3"
+"image-size@npm:^1.0.2":
+ version: 1.1.1
+ resolution: "image-size@npm:1.1.1"
+ dependencies:
+ queue: 6.0.2
bin:
image-size: bin/image-size.js
- checksum: 693464c665191cb4cbfc7e3923e977bcd89f51c891ec70d0133094f12096e41230de713d0fd4b10615ddff7dc14fc1af0c33e70954e3f002190306e6fa888943
+ checksum: 2660470096d12be82195f7e80fe03274689fbd14184afb78eaf66ade7cd06352518325814f88af4bde4b26647889fe49e573129f6e7ba8f5ff5b85cc7f559000
languageName: node
linkType: hard
@@ -7660,14 +6921,14 @@ __metadata:
linkType: hard
"import-local@npm:^3.0.2":
- version: 3.0.2
- resolution: "import-local@npm:3.0.2"
+ version: 3.2.0
+ resolution: "import-local@npm:3.2.0"
dependencies:
pkg-dir: ^4.2.0
resolve-cwd: ^3.0.0
bin:
import-local-fixture: fixtures/cli.js
- checksum: 593ec592c5c2c0849f94b81198077b53e342f02bd7a7cc3f8a3dd5b52f40a37003b3b2922a80b4e7b565c0f7c951a41849a03852c4e68144fff84bf892d129cb
+ checksum: 94cd6367a672b7e0cb026970c85b76902d2710a64896fa6de93bd5c571dd03b228c5759308959de205083e3b1c61e799f019c9e36ee8e9c523b993e1057f0433
languageName: node
linkType: hard
@@ -7685,13 +6946,6 @@ __metadata:
languageName: node
linkType: hard
-"infer-owner@npm:^1.0.4":
- version: 1.0.4
- resolution: "infer-owner@npm:1.0.4"
- checksum: a7b241e3149c26e37474e3435779487f42f36883711f198c45794703c7556bc38af224088bd4d1a221a45b8208ae2c2bcf86200383621434d0c099304481c5b9
- languageName: node
- linkType: hard
-
"inflight@npm:^1.0.4":
version: 1.0.6
resolution: "inflight@npm:1.0.6"
@@ -7727,7 +6981,7 @@ __metadata:
languageName: node
linkType: hard
-"invariant@npm:*, invariant@npm:>=2, invariant@npm:^2.2.4":
+"invariant@npm:*, invariant@npm:^2.2.4":
version: 2.2.4
resolution: "invariant@npm:2.2.4"
dependencies:
@@ -7736,17 +6990,13 @@ __metadata:
languageName: node
linkType: hard
-"ip@npm:^1.1.5":
- version: 1.1.9
- resolution: "ip@npm:1.1.9"
- checksum: 5af58bfe2110c9978acfd77a2ffcdf9d33a6ce1c72f49edbaf16958f7a8eb979b5163e43bb18938caf3aaa55cdacde4e470874c58ca3b4b112ea7a30461a0c27
- languageName: node
- linkType: hard
-
-"ip@npm:^2.0.0":
- version: 2.0.0
- resolution: "ip@npm:2.0.0"
- checksum: 8d186cc5585f57372847ae29b6eba258c68862055e18a75cc4933327232cb5c107f89800ce29715d542eef2c254fbb68b382e780a7414f9ee7caf60b7a473958
+"ip-address@npm:^9.0.5":
+ version: 9.0.5
+ resolution: "ip-address@npm:9.0.5"
+ dependencies:
+ jsbn: 1.1.0
+ sprintf-js: ^1.1.3
+ checksum: 331cd07fafcb3b24100613e4b53e1a2b4feab11e671e655d46dc09ee233da5011284d09ca40c4ecbdfe1d0004f462958675c224a804259f2f78d2465a87824bc
languageName: node
linkType: hard
@@ -7809,12 +7059,12 @@ __metadata:
languageName: node
linkType: hard
-"is-core-module@npm:^2.13.0, is-core-module@npm:^2.13.1":
- version: 2.13.1
- resolution: "is-core-module@npm:2.13.1"
+"is-core-module@npm:^2.13.0, is-core-module@npm:^2.15.1":
+ version: 2.15.1
+ resolution: "is-core-module@npm:2.15.1"
dependencies:
- hasown: ^2.0.0
- checksum: 2cba9903aaa52718f11c4896dabc189bab980870aae86a62dc0d5cedb546896770ee946fb14c84b7adf0735f5eaea4277243f1b95f5cefa90054f92fbcac2518
+ hasown: ^2.0.2
+ checksum: 53432f10c69c40bfd2fa8914133a68709ff9498c86c3bf5fca3cdf3145a56fd2168cbf4a43b29843a6202a120a5f9c5ffba0a4322e1e3441739bc0b641682612
languageName: node
linkType: hard
@@ -7936,11 +7186,11 @@ __metadata:
linkType: hard
"is-number-object@npm:^1.0.4":
- version: 1.0.6
- resolution: "is-number-object@npm:1.0.6"
+ version: 1.0.7
+ resolution: "is-number-object@npm:1.0.7"
dependencies:
has-tostringtag: ^1.0.0
- checksum: f3220cd4882ed6c18f08d5122d320b353bc3ceeab5d93dbefded56da70fb544eaa3f27323902dd64d76a84260504c9bf7f4743f2d1817c716658b972573ef6ff
+ checksum: aad266da1e530f1804a2b7bd2e874b4869f71c98590b3964f9d06cc9869b18f8d1f4778f838ecd2a11011bce20aeecb53cb269ba916209b79c24580416b74b1b
languageName: node
linkType: hard
@@ -8000,13 +7250,6 @@ __metadata:
languageName: node
linkType: hard
-"is-stream@npm:^1.1.0":
- version: 1.1.0
- resolution: "is-stream@npm:1.1.0"
- checksum: b8ae7971e78d2e8488d15f804229c6eed7ed36a28f8807a1815938771f4adff0e705218b7dab968270433f67103e4fef98062a0beea55d64835f705ee72c7002
- languageName: node
- linkType: hard
-
"is-stream@npm:^2.0.0":
version: 2.0.1
resolution: "is-stream@npm:2.0.1"
@@ -8081,7 +7324,7 @@ __metadata:
languageName: node
linkType: hard
-"is-wsl@npm:^2.1.1":
+"is-wsl@npm:^2.1.1, is-wsl@npm:^2.2.0":
version: 2.2.0
resolution: "is-wsl@npm:2.2.0"
dependencies:
@@ -8111,6 +7354,13 @@ __metadata:
languageName: node
linkType: hard
+"isexe@npm:^3.1.1":
+ version: 3.1.1
+ resolution: "isexe@npm:3.1.1"
+ checksum: 9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7
+ languageName: node
+ linkType: hard
+
"isobject@npm:^3.0.1":
version: 3.0.1
resolution: "isobject@npm:3.0.1"
@@ -8119,80 +7369,93 @@ __metadata:
linkType: hard
"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.0":
- version: 3.2.0
- resolution: "istanbul-lib-coverage@npm:3.2.0"
- checksum: 10ecb00a50cac2f506af8231ce523ffa1ac1310db0435c8ffaabb50c1d72539906583aa13c84f8835dc103998b9989edc3c1de989d2e2a96a91a9ba44e5db6b9
+ version: 3.2.2
+ resolution: "istanbul-lib-coverage@npm:3.2.2"
+ checksum: 6c7ff2106769e5f592ded1fb418f9f73b4411fd5a084387a5410538332b6567cd1763ff6b6cadca9b9eb2c443cce2f7ea7d7f1b8d315f9ce58539793b1e0922b
languageName: node
linkType: hard
"istanbul-lib-instrument@npm:^5.0.4":
- version: 5.1.0
- resolution: "istanbul-lib-instrument@npm:5.1.0"
+ version: 5.2.1
+ resolution: "istanbul-lib-instrument@npm:5.2.1"
dependencies:
"@babel/core": ^7.12.3
"@babel/parser": ^7.14.7
"@istanbuljs/schema": ^0.1.2
istanbul-lib-coverage: ^3.2.0
semver: ^6.3.0
- checksum: 9e6c86abf4df34552390cb2c5802640bfc612ee5be264a4cffc833df35889e224a8710a66be6956a40edf89e177900e1b3df1285671c1e560e4b6794c430ab6d
+ checksum: 8a1bdf3e377dcc0d33ec32fe2b6ecacdb1e4358fd0eb923d4326bb11c67622c0ceb99600a680f3dad5d29c66fc1991306081e339b4d43d0b8a2ab2e1d910a6ee
languageName: node
linkType: hard
"istanbul-lib-instrument@npm:^6.0.0":
- version: 6.0.2
- resolution: "istanbul-lib-instrument@npm:6.0.2"
+ version: 6.0.3
+ resolution: "istanbul-lib-instrument@npm:6.0.3"
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: 405c6ac037bf8c7ee7495980b0cd5544b2c53078c10534d0c9ceeb92a9ea7dcf8510f58ccfce31336458a8fa6ccef27b570bbb602abaa8c1650f5496a807477c
+ checksum: a1894e060dd2a3b9f046ffdc87b44c00a35516f5e6b7baf4910369acca79e506fc5323a816f811ae23d82334b38e3ddeb8b3b331bd2c860540793b59a8689128
languageName: node
linkType: hard
"istanbul-lib-report@npm:^3.0.0":
- version: 3.0.0
- resolution: "istanbul-lib-report@npm:3.0.0"
+ version: 3.0.1
+ resolution: "istanbul-lib-report@npm:3.0.1"
dependencies:
istanbul-lib-coverage: ^3.0.0
- make-dir: ^3.0.0
+ make-dir: ^4.0.0
supports-color: ^7.1.0
- checksum: 81b0d5187c7603ed71bdea0b701a7329f8146549ca19aa26d91b4a163aea756f9d55c1a6dc1dcd087e24dfcb99baa69e266a68644fbfd5dc98107d6f6f5948d2
+ checksum: 84323afb14392de8b6a5714bd7e9af845cfbd56cfe71ed276cda2f5f1201aea673c7111901227ee33e68e4364e288d73861eb2ed48f6679d1e69a43b6d9b3ba7
languageName: node
linkType: hard
"istanbul-lib-source-maps@npm:^4.0.0":
- version: 4.0.0
- resolution: "istanbul-lib-source-maps@npm:4.0.0"
+ version: 4.0.1
+ resolution: "istanbul-lib-source-maps@npm:4.0.1"
dependencies:
debug: ^4.1.1
istanbul-lib-coverage: ^3.0.0
source-map: ^0.6.1
- checksum: 66a8d44486ec302004df2cd7442cec44301badf680775b787edc8e82a27edafd646b5c724694b22cf95efb39097d2821eaa0851d4aca8897603cb5148db532a0
+ checksum: 19e4cc405016f2c906dff271a76715b3e881fa9faeb3f09a86cb99b8512b3a5ed19cadfe0b54c17ca0e54c1142c9c6de9330d65506e35873994e06634eebeb66
languageName: node
linkType: hard
"istanbul-reports@npm:^3.1.3":
- version: 3.1.3
- resolution: "istanbul-reports@npm:3.1.3"
+ version: 3.1.7
+ resolution: "istanbul-reports@npm:3.1.7"
dependencies:
html-escaper: ^2.0.0
istanbul-lib-report: ^3.0.0
- checksum: 703d23ed63633a6ac22846b31514e6a545597bbbb4b96b595b60adfd175ffddd0e134f1111baf6121dfdb81a229d69ff84781393ab8fce36b9c935383012c3a5
+ checksum: a379fadf9cf8dc5dfe25568115721d4a7eb82fbd50b005a6672aff9c6989b20cc9312d7865814e0859cd8df58cbf664482e1d3604be0afde1f7fc3ccc1394a51
languageName: node
linkType: hard
-"iterator.prototype@npm:^1.1.2":
- version: 1.1.2
- resolution: "iterator.prototype@npm:1.1.2"
+"iterator.prototype@npm:^1.1.3":
+ version: 1.1.3
+ resolution: "iterator.prototype@npm:1.1.3"
dependencies:
define-properties: ^1.2.1
get-intrinsic: ^1.2.1
has-symbols: ^1.0.3
reflect.getprototypeof: ^1.0.4
set-function-name: ^2.0.1
- checksum: a32151326095e916f306990d909f6bbf23e3221999a18ba686419535dcd1749b10ded505e89334b77dc4c7a58a8508978f0eb16c2c8573e6d412eb7eb894ea79
+ checksum: 68b0320c14291fbb3d8ed5a17e255d3127e7971bec19108076667e79c9ff4c7d69f99de4b0b3075c789c3f318366d7a0a35bb086eae0f2cf832dd58465b2f9e6
+ languageName: node
+ linkType: hard
+
+"jackspeak@npm:^3.1.2":
+ version: 3.4.3
+ resolution: "jackspeak@npm:3.4.3"
+ dependencies:
+ "@isaacs/cliui": ^8.0.2
+ "@pkgjs/parseargs": ^0.11.0
+ dependenciesMeta:
+ "@pkgjs/parseargs":
+ optional: true
+ checksum: 6acc10d139eaefdbe04d2f679e6191b3abf073f111edf10b1de5302c97ec93fffeb2fdd8681ed17f16268aa9dd4f8c588ed9d1d3bffbbfa6e8bf897cbb3149b9
languageName: node
linkType: hard
@@ -8354,7 +7617,7 @@ __metadata:
languageName: node
linkType: hard
-"jest-environment-node@npm:^29.7.0":
+"jest-environment-node@npm:^29.6.3, jest-environment-node@npm:^29.7.0":
version: 29.7.0
resolution: "jest-environment-node@npm:29.7.0"
dependencies:
@@ -8368,13 +7631,6 @@ __metadata:
languageName: node
linkType: hard
-"jest-get-type@npm:^26.3.0":
- version: 26.3.0
- resolution: "jest-get-type@npm:26.3.0"
- checksum: 112fc7f962d1c4625a51b6ccfe6e9c8e54ab80816bf8dbf2b1bf25d12c0f75c74ebad0c2f37622aea81019a2087451bfb12a46619ed6717e64ee875ea2de5520
- languageName: node
- linkType: hard
-
"jest-get-type@npm:^29.6.3":
version: 29.6.3
resolution: "jest-get-type@npm:29.6.3"
@@ -8456,21 +7712,14 @@ __metadata:
linkType: hard
"jest-pnp-resolver@npm:^1.2.2":
- version: 1.2.2
- resolution: "jest-pnp-resolver@npm:1.2.2"
+ version: 1.2.3
+ resolution: "jest-pnp-resolver@npm:1.2.3"
peerDependencies:
jest-resolve: "*"
peerDependenciesMeta:
jest-resolve:
optional: true
- checksum: f6ef6193f7f015830aea3a13a4fd9f53a60746bbaa2d56d18af4afd26ed1b527039c466c8d2447f68b149db8a912b9493a727f29b809ff883b8b5daec16e98ce
- languageName: node
- linkType: hard
-
-"jest-regex-util@npm:^27.0.6":
- version: 27.5.1
- resolution: "jest-regex-util@npm:27.5.1"
- checksum: f9790d417b667b38155c4bbd58f2afc0ad9f774381e5358776df02df3f29564069d4773c7ba050db6826bad8a4cc7ef82c3b4c65bfa508e419fdd063a9682c42
+ checksum: 86eec0c78449a2de733a6d3e316d49461af6a858070e113c97f75fb742a48c2396ea94150cbca44159ffd4a959f743a47a8b37a792ef6fdad2cf0a5cba973fac
languageName: node
linkType: hard
@@ -8567,16 +7816,6 @@ __metadata:
languageName: node
linkType: hard
-"jest-serializer@npm:^27.0.6":
- version: 27.5.1
- resolution: "jest-serializer@npm:27.5.1"
- dependencies:
- "@types/node": "*"
- graceful-fs: ^4.2.9
- checksum: 7a2b634a5a044b3ccf912a17032338309c90b50831a2e500f963b25e9a4ce9b550a1af1fb64f7c9a271ed6a1f951fca37bd0d61a0b286aefe197812193b0d825
- languageName: node
- linkType: hard
-
"jest-snapshot@npm:^29.7.0":
version: 29.7.0
resolution: "jest-snapshot@npm:29.7.0"
@@ -8605,27 +7844,6 @@ __metadata:
languageName: node
linkType: hard
-"jest-transform-stub@npm:^2.0.0":
- version: 2.0.0
- resolution: "jest-transform-stub@npm:2.0.0"
- checksum: 75c8c193882ab6d81d07fcd34b88decdaeccc39de5fcf1b8ea2af36870223d188f89ea8b150811ceec853329e2b1a22b66e8850d84bd4482f11a5325cabe16c2
- 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: 0f60cd2a2e09a6646ccd4ff489f1970282c0694724104979e897bd5164f91204726f5408572bf5e759d09e59d5c4e4dc65a643d2b630e06a10402bba07bf2a2e
- languageName: node
- linkType: hard
-
"jest-util@npm:^29.0.0, jest-util@npm:^29.7.0":
version: 29.7.0
resolution: "jest-util@npm:29.7.0"
@@ -8640,21 +7858,7 @@ __metadata:
languageName: node
linkType: hard
-"jest-validate@npm:^26.5.2":
- version: 26.6.2
- resolution: "jest-validate@npm:26.6.2"
- dependencies:
- "@jest/types": ^26.6.2
- camelcase: ^6.0.0
- chalk: ^4.0.0
- jest-get-type: ^26.3.0
- leven: ^3.1.0
- pretty-format: ^26.6.2
- checksum: 0c8df164641e797f80011e359553411e097ea495b95b41100be00d6c827bfd854e92ef8c528fe4cac0d113055a5075d1409f2616099ec648dbd6809bb0a29c67
- languageName: node
- linkType: hard
-
-"jest-validate@npm:^29.7.0":
+"jest-validate@npm:^29.6.3, jest-validate@npm:^29.7.0":
version: 29.7.0
resolution: "jest-validate@npm:29.7.0"
dependencies:
@@ -8684,18 +7888,7 @@ __metadata:
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: 8c4737ffd03887b3c6768e4cc3ca0269c0336c1e4b1b120943958ddb035ed2a0fc6acab6dc99631720a3720af4e708ff84fb45382ad1e83c27946adf3623969b
- languageName: node
- linkType: hard
-
-"jest-worker@npm:^29.7.0":
+"jest-worker@npm:^29.6.3, jest-worker@npm:^29.7.0":
version: 29.7.0
resolution: "jest-worker@npm:29.7.0"
dependencies:
@@ -8727,15 +7920,15 @@ __metadata:
linkType: hard
"joi@npm:^17.2.1":
- version: 17.4.2
- resolution: "joi@npm:17.4.2"
+ version: 17.13.3
+ resolution: "joi@npm:17.13.3"
dependencies:
- "@hapi/hoek": ^9.0.0
- "@hapi/topo": ^5.0.0
- "@sideway/address": ^4.1.0
- "@sideway/formula": ^3.0.0
+ "@hapi/hoek": ^9.3.0
+ "@hapi/topo": ^5.1.0
+ "@sideway/address": ^4.1.5
+ "@sideway/formula": ^3.0.1
"@sideway/pinpoint": ^2.0.0
- checksum: 548f317f97cc332dac96035eba4c1d4348c88bebabb055c60c9b025fdfc2f9bba7ccd1b3097c314f53c0407857a70cf6070aafd05f08e01f59c7171485b0c51e
+ checksum: 9262aef1da3f1bec5b03caf50c46368899fe03b8ff26cbe3d53af4584dd1049079fc97230bbf1500b6149db7cc765b9ee45f0deb24bb6fc3fa06229d7148c17f
languageName: node
linkType: hard
@@ -8769,10 +7962,17 @@ __metadata:
languageName: node
linkType: hard
-"jsc-android@npm:^250230.2.1":
- version: 250230.2.1
- resolution: "jsc-android@npm:250230.2.1"
- checksum: b8825e2ca12f813ac3229388ed049557ad6aa9a1f5535ef99844b0ea692a6a90824deb234c56e6850f4e1f7c688896213115fbe957d12fe1f593be8de045add7
+"jsbn@npm:1.1.0":
+ version: 1.1.0
+ resolution: "jsbn@npm:1.1.0"
+ checksum: 4f907fb78d7b712e11dea8c165fe0921f81a657d3443dde75359ed52eb2b5d33ce6773d97985a089f09a65edd80b11cb75c767b57ba47391fee4c969f7215c96
+ languageName: node
+ linkType: hard
+
+"jsc-android@npm:^250231.0.0":
+ version: 250231.0.0
+ resolution: "jsc-android@npm:250231.0.0"
+ checksum: 518ddbc9d41eb5f4f8a30244382044c87ce02756416866c4e129ae6655feb0bab744cf9d590d240916b005c3632554c7c33d388a84dc6d3e83733d0e8cee5c2f
languageName: node
linkType: hard
@@ -8832,12 +8032,10 @@ __metadata:
languageName: node
linkType: hard
-"jsesc@npm:~0.5.0":
- version: 0.5.0
- resolution: "jsesc@npm:0.5.0"
- bin:
- jsesc: bin/jsesc
- checksum: f93792440ae1d80f091b65f8ceddf8e55c4bb7f1a09dee5dcbdb0db5612c55c0f6045625aa6b7e8edb2e0a4feabd80ee48616dbe2d37055573a84db3d24f96d9
+"json-buffer@npm:3.0.1":
+ version: 3.0.1
+ resolution: "json-buffer@npm:3.0.1"
+ checksum: 0d1c91569d9588e7eef2b49b59851f297f3ab93c7b35c7c221e288099322be6b562767d11e4821da500f3219542b9afd2e54c5dc573107c1126ed1080f8e96d7
languageName: node
linkType: hard
@@ -8908,18 +8106,6 @@ __metadata:
languageName: node
linkType: hard
-"jsonfile@npm:^2.1.0":
- version: 2.4.0
- resolution: "jsonfile@npm:2.4.0"
- dependencies:
- graceful-fs: ^4.1.6
- dependenciesMeta:
- graceful-fs:
- optional: true
- checksum: 02ad746d9490686519b3369bc9572694076eb982e1b4982c5ad9b91bc3c0ad30d10c866bb26b7a87f0c4025a80222cd2962cb57083b5a6a475a9031eab8c8962
- languageName: node
- linkType: hard
-
"jsonfile@npm:^4.0.0":
version: 4.0.0
resolution: "jsonfile@npm:4.0.0"
@@ -8964,6 +8150,15 @@ __metadata:
languageName: node
linkType: hard
+"keyv@npm:^4.5.3":
+ version: 4.5.4
+ resolution: "keyv@npm:4.5.4"
+ dependencies:
+ json-buffer: 3.0.1
+ checksum: aa52f3c5e18e16bb6324876bb8b59dd02acf782a4b789c7b2ae21107fab95fab3890ed448d4f8dba80ce05391eeac4bfabb4f02a20221342982f806fa2cf271e
+ languageName: node
+ linkType: hard
+
"kind-of@npm:^6.0.2":
version: 6.0.3
resolution: "kind-of@npm:6.0.3"
@@ -8980,18 +8175,6 @@ __metadata:
languageName: node
linkType: hard
-"klaw@npm:^1.0.0":
- version: 1.3.1
- resolution: "klaw@npm:1.3.1"
- dependencies:
- graceful-fs: ^4.1.9
- dependenciesMeta:
- graceful-fs:
- optional: true
- checksum: da994768b02b3843cc994c99bad3cf1c8c67716beb4dd2834133c919e9e9ee788669fbe27d88ab0ad9a3991349c28280afccbde01c2318229b662dd7a05e4728
- languageName: node
- linkType: hard
-
"kleur@npm:^3.0.3":
version: 3.0.3
resolution: "kleur@npm:3.0.3"
@@ -9000,9 +8183,9 @@ __metadata:
linkType: hard
"language-subtag-registry@npm:^0.3.20":
- version: 0.3.22
- resolution: "language-subtag-registry@npm:0.3.22"
- checksum: d1e09971260a7cd3b9fdeb190d33af0b6e99c8697013537d9aaa15f7856d9d83aee128ba8078e219df0a7cf4b8dd18d1a0c188f6543b500d92a2689d2d114b70
+ version: 0.3.23
+ resolution: "language-subtag-registry@npm:0.3.23"
+ checksum: e9b05190421d2cd36dd6c95c28673019c927947cb6d94f40ba7e77a838629ee9675c94accf897fbebb07923187deb843b8fbb8935762df6edafe6c28dcb0b86c
languageName: node
linkType: hard
@@ -9041,6 +8224,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: 090431db34e9ce01b03b2a03b39e998807a7a86214f2e8da2ba9588c36841caf4474f96ef1b2deaf9fe58f2e00f9f51618e0b98edecc2d8c9dfc13185bf0adc8
+ languageName: node
+ linkType: hard
+
"lines-and-columns@npm:^1.1.6":
version: 1.2.4
resolution: "lines-and-columns@npm:1.2.4"
@@ -9092,13 +8285,6 @@ __metadata:
languageName: node
linkType: hard
-"lodash.isequal@npm:^4.5.0":
- version: 4.5.0
- resolution: "lodash.isequal@npm:4.5.0"
- checksum: dfdb2356db19631a4b445d5f37868a095e2402292d59539a987f134a8778c62a2810c2452d11ae9e6dcac71fc9de40a6fedcb20e2952a15b431ad8b29e50e28f
- languageName: node
- linkType: hard
-
"lodash.memoize@npm:^4.1.2":
version: 4.1.2
resolution: "lodash.memoize@npm:4.1.2"
@@ -9170,28 +8356,19 @@ __metadata:
languageName: node
linkType: hard
-"lru-cache@npm:^5.1.1":
- version: 5.1.1
- resolution: "lru-cache@npm:5.1.1"
- dependencies:
- yallist: ^3.0.2
- checksum: 89b2ef2ef45f543011e38737b8a8622a2f8998cddf0e5437174ef8f1f70a8b9d14a918ab3e232cb3ba343b7abddffa667f0b59075b2b80e6b4d63c3de6127482
- languageName: node
- linkType: hard
-
-"lru-cache@npm:^6.0.0":
- version: 6.0.0
- resolution: "lru-cache@npm:6.0.0"
- dependencies:
- yallist: ^4.0.0
- checksum: cb53e582785c48187d7a188d3379c181b5ca2a9c78d2bce3e7dee36f32761d1c42983da3fe12b55cb74e1779fa94cdc2e5367c028a9b35317184ede0c07a30a9
+"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0":
+ version: 10.4.3
+ resolution: "lru-cache@npm:10.4.3"
+ checksum: ebd04fbca961e6c1d6c0af3799adcc966a1babe798f685bb84e6599266599cd95d94630b10262f5424539bc4640107e8a33aa28585374abf561d30d16f4b39fb
languageName: node
linkType: hard
-"lru-cache@npm:^7.7.1":
- version: 7.13.1
- resolution: "lru-cache@npm:7.13.1"
- checksum: 72034557cdb0d2ae32e5c1db928ee32b6d2b3a3e7b5aae2860f4f4c7272fefd4ebc5292a9df1dde10d07a78517836c49d84d8b101df13c100343bba80839c6cf
+"lru-cache@npm:^5.1.1":
+ version: 5.1.1
+ resolution: "lru-cache@npm:5.1.1"
+ dependencies:
+ yallist: ^3.0.2
+ checksum: 89b2ef2ef45f543011e38737b8a8622a2f8998cddf0e5437174ef8f1f70a8b9d14a918ab3e232cb3ba343b7abddffa667f0b59075b2b80e6b4d63c3de6127482
languageName: node
linkType: hard
@@ -9199,87 +8376,86 @@ __metadata:
version: 0.0.0-use.local
resolution: "lunes@workspace:."
dependencies:
- "@babel/core": ^7.24.3
+ "@babel/core": ^7.26.0
"@babel/plugin-proposal-unicode-property-regex": ^7.18.6
- "@babel/preset-env": ^7.24.3
- "@babel/preset-typescript": ^7.24.1
- "@babel/runtime": ^7.24.1
- "@react-native-async-storage/async-storage": ^1.23.1
- "@react-native-masked-view/masked-view": ^0.3.1
- "@react-native-picker/picker": ^2.7.2
- "@react-navigation/bottom-tabs": ^6.5.20
- "@react-navigation/elements": ^1.3.30
- "@react-navigation/native": 6.1.17
- "@react-navigation/stack": 6.3.29
- "@sentry/react-native": ^5.20.0
- "@sentry/types": ^7.108.0
+ "@babel/preset-env": ^7.26.0
+ "@babel/preset-typescript": ^7.26.0
+ "@babel/runtime": ^7.26.0
+ "@react-native-async-storage/async-storage": ^2.0.0
+ "@react-native-community/cli": 15.1.2
+ "@react-native-community/cli-platform-android": 15.1.2
+ "@react-native-community/cli-platform-ios": 15.1.2
+ "@react-native-masked-view/masked-view": ^0.3.2
+ "@react-native-picker/picker": ^2.9.0
+ "@react-native/babel-preset": 0.76.1
+ "@react-native/metro-config": 0.76.1
+ "@react-navigation/bottom-tabs": ^6.6.1
+ "@react-navigation/elements": ^1.3.31
+ "@react-navigation/native": 6.1.18
+ "@react-navigation/stack": 6.4.1
+ "@sentry/react-native": ^5.35.0
+ "@sentry/types": ^8.38.0
"@testing-library/jest-native": ^5.4.3
- "@testing-library/react-native": ^12.4.4
+ "@testing-library/react-native": ^12.8.1
"@trivago/prettier-plugin-sort-imports": ^4.3.0
- "@types/babel__core": ^7
- "@types/jest": ^29.5.12
- "@types/node": ^20.11.30
- "@types/react-native": ^0.70.19
- "@types/react-test-renderer": ^18.0.7
+ "@types/jest": ^29.5.14
+ "@types/node": ^20.17.6
+ "@types/react-test-renderer": ^18.3.0
"@types/string-similarity": ^4.0.2
"@types/uniqid": ^5.3.4
- "@typescript-eslint/eslint-plugin": ^7.4.0
- "@typescript-eslint/parser": ^7.4.0
- axios: ^1.6.8
- axios-cache-interceptor: 1.5.1
- deprecated-react-native-prop-types: ^4.0.0
- eslint: ^8.57.0
+ "@typescript-eslint/eslint-plugin": ^8.14.0
+ "@typescript-eslint/parser": ^8.14.0
+ axios: ^1.7.7
+ axios-cache-interceptor: 1.6.2
+ babel-jest: ^29.7.0
+ eslint: ^8.57.1
eslint-config-airbnb: ^19.0.4
eslint-config-prettier: ^9.1.0
eslint-plugin-diff: ^2.0.3
- eslint-plugin-import: ^2.29.1
- eslint-plugin-jest: ^27.9.0
- eslint-plugin-jsx-a11y: ^6.8.0
+ eslint-plugin-import: ^2.31.0
+ eslint-plugin-jest: ^28.9.0
+ eslint-plugin-jsx-a11y: ^6.10.2
eslint-plugin-jsx-expressions: ^1.3.2
eslint-plugin-node: ^11.1.0
eslint-plugin-prefer-arrow: ^1.2.3
- eslint-plugin-promise: ^6.1.1
- eslint-plugin-react: ^7.34.1
- eslint-plugin-react-hooks: ^4.6.0
+ eslint-plugin-promise: ^7.1.0
+ eslint-plugin-react: ^7.37.2
+ eslint-plugin-react-hooks: ^5.0.0
jest: ^29.7.0
- jest-transform-stub: ^2.0.0
- metro-react-native-babel-preset: 0.72.3
normalize-strings: ^1.1.1
patch-package: ^8.0.0
- prettier: ^3.2.5
- react: 18.1.0
- react-dom: 18.2.0
- react-native: 0.70.9
- react-native-audio-recorder-player: 3.5.1
- react-native-device-info: ^10.13.1
- react-native-element-dropdown: ^2.10.4
+ prettier: ^3.3.3
+ react: 18.3.1
+ react-native: 0.76.1
+ react-native-audio-recorder-player: ^3.6.12
+ react-native-device-info: ^14.0.0
+ react-native-element-dropdown: ^2.12.2
react-native-fs: ^2.20.0
- react-native-gesture-handler: 2.9.0
+ react-native-gesture-handler: ^2.20.2
react-native-image-picker: ^7.1.2
react-native-image-zoom-viewer: ^3.0.1
react-native-keyboard-aware-scroll-view: ^0.9.5
- react-native-paper: 5.12.3
- react-native-permissions: ^4.1.5
- react-native-popover-view: ^5.1.8
+ react-native-paper: 5.12.5
+ react-native-permissions: ^5.1.0
+ react-native-popover-view: ^5.1.9
react-native-progress: ^5.0.1
- react-native-reanimated: 2.17.0
+ react-native-reanimated: ^3.16.1
react-native-responsive-screen: ^1.4.2
- react-native-safe-area-context: ^4.9.0
- react-native-screens: 3.18.2
- react-native-sound-player: 0.13.2
- react-native-splash-screen: ^3.3.0
- react-native-svg: ^15.1.0
- react-native-svg-transformer: ^1.3.0
- react-native-tts: 4.1.0
- react-native-vector-icons: ^10.0.3
- react-native-vision-camera: ^4.5.3
- react-navigation-header-buttons: ^10.0.0
- react-test-renderer: 18.2.0
+ react-native-safe-area-context: ^4.14.0
+ react-native-screens: ^3.35.0
+ react-native-sound-player: 0.14.3
+ react-native-svg: ^15.9.0
+ react-native-svg-transformer: ^1.5.0
+ react-native-tts: 4.1.1
+ react-native-vector-icons: ^10.2.0
+ react-native-vision-camera: ^4.6.1
+ react-navigation-header-buttons: ^11.2.1
+ react-test-renderer: ^18.3.1
string-similarity: ^4.0.4
- styled-components: ^6.1.8
- ts-jest: ^29.1.2
+ styled-components: ^6.1.13
+ ts-jest: ^29.2.5
ts-node: ^10.9.2
- typescript: ^5.4.3
+ typescript: ^5.6.3
victory-native: ^36.9.2
languageName: unknown
linkType: soft
@@ -9294,12 +8470,12 @@ __metadata:
languageName: node
linkType: hard
-"make-dir@npm:^3.0.0":
- version: 3.1.0
- resolution: "make-dir@npm:3.1.0"
+"make-dir@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "make-dir@npm:4.0.0"
dependencies:
- semver: ^6.0.0
- checksum: 56aaafefc49c2dfef02c5c95f9b196c4eb6988040cf2c712185c7fe5c99b4091591a7fc4d4eafaaefa70ff763a26f6ab8c3ff60b9e75ea19876f49b18667ecaa
+ semver: ^7.5.3
+ checksum: 69b98a6c0b8e5c4fe9acb61608a9fbcfca1756d910f51e5dbe7a9e5cfb74fca9b8a0c8a0ffdf1294a740826c1ab4871d5bf3f62f72a3049e5eac6541ddffed68
languageName: node
linkType: hard
@@ -9310,27 +8486,23 @@ __metadata:
languageName: node
linkType: hard
-"make-fetch-happen@npm:^10.0.3":
- version: 10.2.0
- resolution: "make-fetch-happen@npm:10.2.0"
+"make-fetch-happen@npm:^13.0.0":
+ version: 13.0.1
+ resolution: "make-fetch-happen@npm:13.0.1"
dependencies:
- agentkeepalive: ^4.2.1
- cacache: ^16.1.0
- http-cache-semantics: ^4.1.0
- http-proxy-agent: ^5.0.0
- https-proxy-agent: ^5.0.0
+ "@npmcli/agent": ^2.0.0
+ cacache: ^18.0.0
+ http-cache-semantics: ^4.1.1
is-lambda: ^1.0.1
- lru-cache: ^7.7.1
- minipass: ^3.1.6
- minipass-collect: ^1.0.2
- minipass-fetch: ^2.0.3
+ minipass: ^7.0.2
+ minipass-fetch: ^3.0.0
minipass-flush: ^1.0.5
minipass-pipeline: ^1.2.4
negotiator: ^0.6.3
+ proc-log: ^4.2.0
promise-retry: ^2.0.1
- socks-proxy-agent: ^7.0.0
- ssri: ^9.0.0
- checksum: ec51ded78f2d47be39aab4c4c1091e1850cf32b66472e252fc8927e26ad393c5c582178a95d5e77153566e9b2584909f2a7427ca5963f034b8ff0ba9c9f6518d
+ ssri: ^10.0.0
+ checksum: df5f4dbb6d98153b751bccf4dc4cc500de85a96a9331db9805596c46aa9f99d9555983954e6c1266d9f981ae37a9e4647f42b9a4bb5466f867f4012e582c9e7e
languageName: node
linkType: hard
@@ -9343,6 +8515,13 @@ __metadata:
languageName: node
linkType: hard
+"marky@npm:^1.2.2":
+ version: 1.2.5
+ resolution: "marky@npm:1.2.5"
+ checksum: ca8a011f287dab1ac3291df720fc32b366c4cd767347b63722966650405ce71ec6566f71d1e22e1768bf6461a7fd689b9038e7df0fcfb62eacf3a5a6dcac249e
+ languageName: node
+ linkType: hard
+
"mdn-data@npm:2.0.14":
version: 2.0.14
resolution: "mdn-data@npm:2.0.14"
@@ -9394,468 +8573,269 @@ __metadata:
languageName: node
linkType: hard
-"metro-babel-transformer@npm:0.72.3":
- version: 0.72.3
- resolution: "metro-babel-transformer@npm:0.72.3"
+"metro-babel-transformer@npm:0.81.0":
+ version: 0.81.0
+ resolution: "metro-babel-transformer@npm:0.81.0"
dependencies:
- "@babel/core": ^7.14.0
- hermes-parser: 0.8.0
- metro-source-map: 0.72.3
+ "@babel/core": ^7.25.2
+ flow-enums-runtime: ^0.0.6
+ hermes-parser: 0.24.0
nullthrows: ^1.1.1
- checksum: c51c107e3be2570fb375942503a84544457c7458b5f64fad1ce4eec22b890a8600b9e02523e77a5e648cc3e2878d2e27215caa2ef48a7651f1484742260d84a9
+ checksum: 3403668da1f0ca1c170606eabd61c7f1ca6aead49c6a767b1b9914d2edad57d4efb141d19da483fc7c5ed89d6cd695e81f3fc60accd4c2b93cd051ad17d93dc3
languageName: node
linkType: hard
-"metro-babel-transformer@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-babel-transformer@npm:0.72.4"
+"metro-cache-key@npm:0.81.0":
+ version: 0.81.0
+ resolution: "metro-cache-key@npm:0.81.0"
dependencies:
- "@babel/core": ^7.14.0
- hermes-parser: 0.8.0
- metro-source-map: 0.72.4
- nullthrows: ^1.1.1
- checksum: 6bf2560e9e0818d3086b1cd6c2ee896a2f46fbb4f9c46e07dab12da4c33558f0cd3d2d83668074ef9b07207f950520f026cecf2429684398d783ce07416369f1
+ flow-enums-runtime: ^0.0.6
+ checksum: 1f7d295d186c3541cbe7bc2737c780d32f1790a8114523cb6f0df4413a0d73020faf1f326c13a2daa815bc62767df663d6be988771ceabcaf16dfec9e865f202
languageName: node
linkType: hard
-"metro-cache-key@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-cache-key@npm:0.72.4"
- checksum: ff2ec51cef45d6474b347191da22c0dbd009e70d207376685b9a1e8433839b014fcc8065a097dd83c13128051863b0df713634d0c15d2e281a8855feed6d1acd
- languageName: node
- linkType: hard
-
-"metro-cache@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-cache@npm:0.72.4"
+"metro-cache@npm:0.81.0":
+ version: 0.81.0
+ resolution: "metro-cache@npm:0.81.0"
dependencies:
- metro-core: 0.72.4
- rimraf: ^2.5.4
- checksum: 23fcf72de3610dbbba3cc5f291465f707263f617ea22e2d29aa790ec3516d7564dafdae226926c221ed2a95e013fd47c0fcedf7562efc94d000a0b0ac7819ce5
+ exponential-backoff: ^3.1.1
+ flow-enums-runtime: ^0.0.6
+ metro-core: 0.81.0
+ checksum: 661cfc8d3bc9edb15e21933e357cb3ac69e3f7e1e0ae773ec7a8288020f45c2ce18895f07cdda8bf75858a38d5134817246c2f0cbef0ca8ff2d400ddc7dfffc6
languageName: node
linkType: hard
-"metro-config@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-config@npm:0.72.4"
+"metro-config@npm:0.81.0, metro-config@npm:^0.81.0":
+ version: 0.81.0
+ resolution: "metro-config@npm:0.81.0"
dependencies:
+ connect: ^3.6.5
cosmiconfig: ^5.0.5
- jest-validate: ^26.5.2
- metro: 0.72.4
- metro-cache: 0.72.4
- metro-core: 0.72.4
- metro-runtime: 0.72.4
- checksum: d48b182859e8d5a14ee5446f5840712311acd3585b35cca7d63f6965843d4084a8183e0cdd08fb1b1edc589e2a61a295e02ea811c8a339c8078f4aca247a4bb1
+ flow-enums-runtime: ^0.0.6
+ jest-validate: ^29.6.3
+ metro: 0.81.0
+ metro-cache: 0.81.0
+ metro-core: 0.81.0
+ metro-runtime: 0.81.0
+ checksum: deaa53ed4d7b5c145f1162371bc7d2d10097b5e1b008e7edbb96a893f4099bfea94e1bb7ecd41e09c9debf3633511ca74ec7fe1b6f98551984445dd8e5d37edf
languageName: node
linkType: hard
-"metro-core@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-core@npm:0.72.4"
+"metro-core@npm:0.81.0, metro-core@npm:^0.81.0":
+ version: 0.81.0
+ resolution: "metro-core@npm:0.81.0"
dependencies:
+ flow-enums-runtime: ^0.0.6
lodash.throttle: ^4.1.1
- metro-resolver: 0.72.4
- checksum: 6e6db19a875c48fa2913bcc187afa9562a96977cf9628c9a8dc7ee7b137354744ecdf49f76a851b04c27f73f0399ab0b4a730dbc07809af20697d1b16b636b1c
+ metro-resolver: 0.81.0
+ checksum: 9233daadb1ea3b3c6efc29e49f07e796ddccd9a020d71070618a90f8394dc20eb08bac8615ade2ed004e96c7169a39daff5f069d783245f1d5c2baab62599754
languageName: node
linkType: hard
-"metro-file-map@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-file-map@npm:0.72.4"
+"metro-file-map@npm:0.81.0":
+ version: 0.81.0
+ resolution: "metro-file-map@npm:0.81.0"
dependencies:
- abort-controller: ^3.0.0
anymatch: ^3.0.3
debug: ^2.2.0
fb-watchman: ^2.0.0
- fsevents: ^2.1.2
+ flow-enums-runtime: ^0.0.6
+ fsevents: ^2.3.2
graceful-fs: ^4.2.4
invariant: ^2.2.4
- jest-regex-util: ^27.0.6
- jest-serializer: ^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
walker: ^1.0.7
dependenciesMeta:
fsevents:
optional: true
- checksum: 72f0170faff78b490bb175b705ece5dd5b5baef683a5f3fd36f55317251d6b1977fc247543f18da1d516eee2b85ee2c6a6ec72ea39d8a8dc04ac681c9ed0595a
- languageName: node
- linkType: hard
-
-"metro-hermes-compiler@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-hermes-compiler@npm:0.72.4"
- checksum: 43144d50f4a16d0fe40d19ed110d3e467a0cd6b137ef5bb7a0bc00592f12e2afe7309e32955455bf8f1817d17cddc13faeaaff3dca183a8a6c0f57b3d1687706
- languageName: node
- linkType: hard
-
-"metro-inspector-proxy@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-inspector-proxy@npm:0.72.4"
- dependencies:
- connect: ^3.6.5
- debug: ^2.2.0
- ws: ^7.5.1
- yargs: ^15.3.1
- bin:
- metro-inspector-proxy: src/cli.js
- checksum: 7b6db492f6972bcfb2f15397e12564d06805713e58b8a7c58b5b6c6ac11a3b752345388f2e1529af878f62225d60a4addfd788a8cd0c17827b75391833b434f3
- languageName: node
- linkType: hard
-
-"metro-minify-uglify@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-minify-uglify@npm:0.72.4"
- dependencies:
- uglify-es: ^3.1.9
- checksum: 850302b9fa8c70d46e24520389ffced06486331fd362270b50e25a2459f382512bec2e8ad4e52e2bab73627d27b5dd7cc6a71ce224708adfc0c9a3986afb8178
- languageName: node
- linkType: hard
-
-"metro-react-native-babel-preset@npm:0.72.3":
- version: 0.72.3
- resolution: "metro-react-native-babel-preset@npm:0.72.3"
- dependencies:
- "@babel/core": ^7.14.0
- "@babel/plugin-proposal-async-generator-functions": ^7.0.0
- "@babel/plugin-proposal-class-properties": ^7.0.0
- "@babel/plugin-proposal-export-default-from": ^7.0.0
- "@babel/plugin-proposal-nullish-coalescing-operator": ^7.0.0
- "@babel/plugin-proposal-object-rest-spread": ^7.0.0
- "@babel/plugin-proposal-optional-catch-binding": ^7.0.0
- "@babel/plugin-proposal-optional-chaining": ^7.0.0
- "@babel/plugin-syntax-dynamic-import": ^7.0.0
- "@babel/plugin-syntax-export-default-from": ^7.0.0
- "@babel/plugin-syntax-flow": ^7.2.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.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-exponentiation-operator": ^7.0.0
- "@babel/plugin-transform-flow-strip-types": ^7.0.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-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-template-literals": ^7.0.0
- "@babel/plugin-transform-typescript": ^7.5.0
- "@babel/plugin-transform-unicode-regex": ^7.0.0
- "@babel/template": ^7.0.0
- react-refresh: ^0.4.0
- peerDependencies:
- "@babel/core": "*"
- checksum: 3675970cf4e39c8312c3021ee1b36a5d50d1dafcffb49252013ec1c7582b270519fbe26b25150b4abb71cf93cabc62673880fee6108783425fc7ead5882e848d
- languageName: node
- linkType: hard
-
-"metro-react-native-babel-preset@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-react-native-babel-preset@npm:0.72.4"
- dependencies:
- "@babel/core": ^7.14.0
- "@babel/plugin-proposal-async-generator-functions": ^7.0.0
- "@babel/plugin-proposal-class-properties": ^7.0.0
- "@babel/plugin-proposal-export-default-from": ^7.0.0
- "@babel/plugin-proposal-nullish-coalescing-operator": ^7.0.0
- "@babel/plugin-proposal-object-rest-spread": ^7.0.0
- "@babel/plugin-proposal-optional-catch-binding": ^7.0.0
- "@babel/plugin-proposal-optional-chaining": ^7.0.0
- "@babel/plugin-syntax-dynamic-import": ^7.0.0
- "@babel/plugin-syntax-export-default-from": ^7.0.0
- "@babel/plugin-syntax-flow": ^7.2.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.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-exponentiation-operator": ^7.0.0
- "@babel/plugin-transform-flow-strip-types": ^7.0.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-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-template-literals": ^7.0.0
- "@babel/plugin-transform-typescript": ^7.5.0
- "@babel/plugin-transform-unicode-regex": ^7.0.0
- "@babel/template": ^7.0.0
- react-refresh: ^0.4.0
- peerDependencies:
- "@babel/core": "*"
- checksum: 924534ba7864b0ffe34d2a0e73b8a53154698e5f5fe93df81f84a8c98512c34b4da4fadfd3ffc40129be7ce9e9db924cd2d314ed4d26877f4b06fc4623cb0d70
- languageName: node
- linkType: hard
-
-"metro-react-native-babel-transformer@npm:0.72.3":
- version: 0.72.3
- resolution: "metro-react-native-babel-transformer@npm:0.72.3"
- dependencies:
- "@babel/core": ^7.14.0
- babel-preset-fbjs: ^3.4.0
- hermes-parser: 0.8.0
- metro-babel-transformer: 0.72.3
- metro-react-native-babel-preset: 0.72.3
- metro-source-map: 0.72.3
- nullthrows: ^1.1.1
- peerDependencies:
- "@babel/core": "*"
- checksum: 8a52b42a8c6dc1ccb665fe150c4767dd6cb9ac07ad5d442c31093a88654255277f3f58ab5e1285be9184374028e6ab11b794631435361c56755d5789f8283c1f
- languageName: node
- linkType: hard
-
-"metro-react-native-babel-transformer@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-react-native-babel-transformer@npm:0.72.4"
- dependencies:
- "@babel/core": ^7.14.0
- babel-preset-fbjs: ^3.4.0
- hermes-parser: 0.8.0
- metro-babel-transformer: 0.72.4
- metro-react-native-babel-preset: 0.72.4
- metro-source-map: 0.72.4
- nullthrows: ^1.1.1
- peerDependencies:
- "@babel/core": "*"
- checksum: 2f96b605d5e1e1b192670d48e5e7323cae5847ab93de6966baa8b6bc13522d7d4f554e6b7f29ec0e97d5c1499bbe7202e067524d0e6ff01bcfe47ad00c238eda
- languageName: node
- linkType: hard
-
-"metro-resolver@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-resolver@npm:0.72.4"
- dependencies:
- absolute-path: ^0.0.0
- checksum: af1d36f69bab43fd4617f12750d15b7835b31de526cae0b2db9f353a7514ea16ffc4ba6b98aeff5953780041f2b1360a02482cb2a14d4a2f7fc6ee70df299e5a
- languageName: node
- linkType: hard
-
-"metro-runtime@npm:0.72.3":
- version: 0.72.3
- resolution: "metro-runtime@npm:0.72.3"
- dependencies:
- "@babel/runtime": ^7.0.0
- react-refresh: ^0.4.0
- checksum: a06d2228e636599e4dd01e17acae2913c1b5572e1fa107e5ebb71c5b6ada6414443d7b930170725eeaa4ba04374ad373860fa23fda5217e8d1b73bdfde77c88b
+ checksum: 0504612809590375d8a2f4d4d6f104b57fcc0913e7f9da83db1440314927a5a541a2ef7b09d3f5bb73ca1de07f437863d5f726deefcde1610a3bc84aae34ef89
languageName: node
linkType: hard
-"metro-runtime@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-runtime@npm:0.72.4"
+"metro-minify-terser@npm:0.81.0":
+ version: 0.81.0
+ resolution: "metro-minify-terser@npm:0.81.0"
dependencies:
- "@babel/runtime": ^7.0.0
- react-refresh: ^0.4.0
- checksum: f993dd692bda4adf16873576798b78a75fae9b79424f009e0fd3801037b923a2ca023d275cfe3b6f6eff7bf8d54eead9f3384f4529a7e8f0d36fc936ace6d1ce
+ flow-enums-runtime: ^0.0.6
+ terser: ^5.15.0
+ checksum: e2279cf15de743308c20325eb6a6ce5d48c8c3ddde07dab18542c9687a5684aeefc4ec8b5e8d701d43477989d17337dfd755a90cfc3d64ff907a205115f95543
languageName: node
linkType: hard
-"metro-source-map@npm:0.72.3":
- version: 0.72.3
- resolution: "metro-source-map@npm:0.72.3"
+"metro-resolver@npm:0.81.0":
+ version: 0.81.0
+ resolution: "metro-resolver@npm:0.81.0"
dependencies:
- "@babel/traverse": ^7.14.0
- "@babel/types": ^7.0.0
- invariant: ^2.2.4
- metro-symbolicate: 0.72.3
- nullthrows: ^1.1.1
- ob1: 0.72.3
- source-map: ^0.5.6
- vlq: ^1.0.0
- checksum: 6a259ee491cf52be30c77ae0432abc0e9eed8405e8ca9fc6ae4cd74aba740a76be5a82eacd4bdf788493d387b08d8c22813b4e1d3094e5756cc06b083455a604
+ flow-enums-runtime: ^0.0.6
+ checksum: 95d0d95450ca85f8256460b504609b352662b544835ea377d35b937347784c0e0438fce85fd984a2061de997491802bc6c4923de06d8520dadf6324206047561
languageName: node
linkType: hard
-"metro-source-map@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-source-map@npm:0.72.4"
+"metro-runtime@npm:0.81.0, metro-runtime@npm:^0.81.0":
+ version: 0.81.0
+ resolution: "metro-runtime@npm:0.81.0"
dependencies:
- "@babel/traverse": ^7.14.0
- "@babel/types": ^7.0.0
- invariant: ^2.2.4
- metro-symbolicate: 0.72.4
- nullthrows: ^1.1.1
- ob1: 0.72.4
- source-map: ^0.5.6
- vlq: ^1.0.0
- checksum: dacb80e732195e4c561a90687d54e9de5acae1a9fbadebc34df77c9f12089134bb211327d6e35ede3dc8cbc488bc3152aacd80c31301fbb39b62581946fb01f8
+ "@babel/runtime": ^7.25.0
+ flow-enums-runtime: ^0.0.6
+ checksum: 2904c8f37b3da9875e11cff2e034ccf90ad3df4d0f7b7b208b1cf6868dba0ff58aff8ea6acb862a22bfa4603a53f3fc3bc86071b7be53b62df4e7bab5ab10ade
languageName: node
linkType: hard
-"metro-symbolicate@npm:0.72.3":
- version: 0.72.3
- resolution: "metro-symbolicate@npm:0.72.3"
+"metro-source-map@npm:0.81.0, metro-source-map@npm:^0.81.0":
+ version: 0.81.0
+ resolution: "metro-source-map@npm:0.81.0"
dependencies:
+ "@babel/traverse": ^7.25.3
+ "@babel/traverse--for-generate-function-map": "npm:@babel/traverse@^7.25.3"
+ "@babel/types": ^7.25.2
+ flow-enums-runtime: ^0.0.6
invariant: ^2.2.4
- metro-source-map: 0.72.3
+ metro-symbolicate: 0.81.0
nullthrows: ^1.1.1
+ ob1: 0.81.0
source-map: ^0.5.6
- through2: ^2.0.1
vlq: ^1.0.0
- bin:
- metro-symbolicate: src/index.js
- checksum: cb676ab9b6bdb0b916c6333907358320661bfeb94667256c48beedd71648fac797c3f9386897667f13a7271927d57eb395a4629a4af72ce69f0463fca3fa2710
+ checksum: 9bb40f3deb55538f5567097cf432575be61c1762e4e3c4d7cfc4eed9caabbf285d64b8d15b83e3b6766f1aab358e3298a897530bd6b3bf44e65feac3a46b95da
languageName: node
linkType: hard
-"metro-symbolicate@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-symbolicate@npm:0.72.4"
+"metro-symbolicate@npm:0.81.0":
+ version: 0.81.0
+ resolution: "metro-symbolicate@npm:0.81.0"
dependencies:
+ flow-enums-runtime: ^0.0.6
invariant: ^2.2.4
- metro-source-map: 0.72.4
+ metro-source-map: 0.81.0
nullthrows: ^1.1.1
source-map: ^0.5.6
through2: ^2.0.1
vlq: ^1.0.0
bin:
metro-symbolicate: src/index.js
- checksum: 8a5124d91f382e084a78beb4983c66f4b9e40eb19703999463bd9d9d593529101db893d5f66857086ee6f47c83ed10c2c96dd412a200fa06904532818a56e05f
+ checksum: 187ebb34500c068d1a307cb9e1bd2cb03c535ba33d9df6ebdd32192ebb2688b419c5bb072a9c31b45284e4f35a674c002347fb5473e7f56c140643381ffd92f8
languageName: node
linkType: hard
-"metro-transform-plugins@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-transform-plugins@npm:0.72.4"
+"metro-transform-plugins@npm:0.81.0":
+ version: 0.81.0
+ resolution: "metro-transform-plugins@npm:0.81.0"
dependencies:
- "@babel/core": ^7.14.0
- "@babel/generator": ^7.14.0
- "@babel/template": ^7.0.0
- "@babel/traverse": ^7.14.0
+ "@babel/core": ^7.25.2
+ "@babel/generator": ^7.25.0
+ "@babel/template": ^7.25.0
+ "@babel/traverse": ^7.25.3
+ flow-enums-runtime: ^0.0.6
nullthrows: ^1.1.1
- checksum: 8e75f78c8918685e2204e1034004dabb922c7e74429a4b7d90b235ef5af5b473c28805671b4ae07fff9aa6d061f70058481f70472430d179fa9f53a4bef9ac0b
- languageName: node
- linkType: hard
-
-"metro-transform-worker@npm:0.72.4":
- version: 0.72.4
- resolution: "metro-transform-worker@npm:0.72.4"
- dependencies:
- "@babel/core": ^7.14.0
- "@babel/generator": ^7.14.0
- "@babel/parser": ^7.14.0
- "@babel/types": ^7.0.0
- babel-preset-fbjs: ^3.4.0
- metro: 0.72.4
- metro-babel-transformer: 0.72.4
- metro-cache: 0.72.4
- metro-cache-key: 0.72.4
- metro-hermes-compiler: 0.72.4
- metro-source-map: 0.72.4
- metro-transform-plugins: 0.72.4
+ checksum: 4fa520978eeacfa419ce88583c1f622e44cb776397f15d630286026b7e4399024395d490a0e65a2399b5dc14e6df10b0c67a224ce44a5cc0a93747c2c0781078
+ languageName: node
+ linkType: hard
+
+"metro-transform-worker@npm:0.81.0":
+ version: 0.81.0
+ resolution: "metro-transform-worker@npm:0.81.0"
+ dependencies:
+ "@babel/core": ^7.25.2
+ "@babel/generator": ^7.25.0
+ "@babel/parser": ^7.25.3
+ "@babel/types": ^7.25.2
+ flow-enums-runtime: ^0.0.6
+ metro: 0.81.0
+ metro-babel-transformer: 0.81.0
+ metro-cache: 0.81.0
+ metro-cache-key: 0.81.0
+ metro-minify-terser: 0.81.0
+ metro-source-map: 0.81.0
+ metro-transform-plugins: 0.81.0
nullthrows: ^1.1.1
- checksum: add14e25458de2467c4918571091da9e39961539c394281f9c687bf0a191738cf33ca6b0714d586285aa033381e259d9f303117a5db367d59a615e89cd1df75b
+ checksum: e4d07c2107eb74e1cbd341e396d13af9fb171109702b51bf1c8301c9cdaa2cb88c1e4e4b84b744bee7ecd4ff94219f00c580f14d6a40e4fc5f9db71ea527f6c8
languageName: node
linkType: hard
-"metro@npm:0.72.4":
- version: 0.72.4
- resolution: "metro@npm:0.72.4"
+"metro@npm:0.81.0, metro@npm:^0.81.0":
+ version: 0.81.0
+ resolution: "metro@npm:0.81.0"
dependencies:
- "@babel/code-frame": ^7.0.0
- "@babel/core": ^7.14.0
- "@babel/generator": ^7.14.0
- "@babel/parser": ^7.14.0
- "@babel/template": ^7.0.0
- "@babel/traverse": ^7.14.0
- "@babel/types": ^7.0.0
- absolute-path: ^0.0.0
+ "@babel/code-frame": ^7.24.7
+ "@babel/core": ^7.25.2
+ "@babel/generator": ^7.25.0
+ "@babel/parser": ^7.25.3
+ "@babel/template": ^7.25.0
+ "@babel/traverse": ^7.25.3
+ "@babel/types": ^7.25.2
accepts: ^1.3.7
- async: ^3.2.2
chalk: ^4.0.0
ci-info: ^2.0.0
connect: ^3.6.5
debug: ^2.2.0
denodeify: ^1.2.1
error-stack-parser: ^2.0.6
- fs-extra: ^1.0.0
+ flow-enums-runtime: ^0.0.6
graceful-fs: ^4.2.4
- hermes-parser: 0.8.0
- image-size: ^0.6.0
+ hermes-parser: 0.24.0
+ 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.72.4
- metro-cache: 0.72.4
- metro-cache-key: 0.72.4
- metro-config: 0.72.4
- metro-core: 0.72.4
- metro-file-map: 0.72.4
- metro-hermes-compiler: 0.72.4
- metro-inspector-proxy: 0.72.4
- metro-minify-uglify: 0.72.4
- metro-react-native-babel-preset: 0.72.4
- metro-resolver: 0.72.4
- metro-runtime: 0.72.4
- metro-source-map: 0.72.4
- metro-symbolicate: 0.72.4
- metro-transform-plugins: 0.72.4
- metro-transform-worker: 0.72.4
+ metro-babel-transformer: 0.81.0
+ metro-cache: 0.81.0
+ metro-cache-key: 0.81.0
+ metro-config: 0.81.0
+ metro-core: 0.81.0
+ metro-file-map: 0.81.0
+ metro-resolver: 0.81.0
+ metro-runtime: 0.81.0
+ metro-source-map: 0.81.0
+ metro-symbolicate: 0.81.0
+ metro-transform-plugins: 0.81.0
+ metro-transform-worker: 0.81.0
mime-types: ^2.1.27
- node-fetch: ^2.2.0
nullthrows: ^1.1.1
- rimraf: ^2.5.4
serialize-error: ^2.1.0
source-map: ^0.5.6
strip-ansi: ^6.0.0
- temp: 0.8.3
throat: ^5.0.0
- ws: ^7.5.1
- yargs: ^15.3.1
+ ws: ^7.5.10
+ yargs: ^17.6.2
bin:
metro: src/cli.js
- checksum: 4071c62b09e7062c4e0f817f32aab0c03d3bde434f8be04f9063a3620991222a108632f9098c1180fb89f420e97dabf66cae8d0fbc36ddd7e869008fbc68348c
+ checksum: 3b375620f2da65881a7cc8a016e71e0f1b71cb99357a8a9bf96c1e5cad229e43596be00f619e533534af72f2838a90655e22c668f6c41a8ae759d93685971415
languageName: node
linkType: hard
"micromatch@npm:^4.0.2, micromatch@npm:^4.0.4":
- version: 4.0.4
- resolution: "micromatch@npm:4.0.4"
+ version: 4.0.8
+ resolution: "micromatch@npm:4.0.8"
dependencies:
- braces: ^3.0.1
- picomatch: ^2.2.3
- checksum: 87bc95e3e52ebe413dbadd43c96e797c736bf238f154e3b546859493e83781b6f7fa4dfa54e423034fb9aeea65259ee6480551581271c348d8e19214910a5a64
+ braces: ^3.0.3
+ picomatch: ^2.3.1
+ checksum: 166fa6eb926b9553f32ef81f5f531d27b4ce7da60e5baf8c021d043b27a388fb95e46a8038d5045877881e673f8134122b59624d5cecbd16eb50a42e7a6b5ca8
+ languageName: node
+ linkType: hard
+
+"mime-db@npm:1.52.0":
+ version: 1.52.0
+ resolution: "mime-db@npm:1.52.0"
+ checksum: 0557a01deebf45ac5f5777fe7740b2a5c309c6d62d40ceab4e23da9f821899ce7a900b7ac8157d4548ddbb7beffe9abc621250e6d182b0397ec7f10c7b91a5aa
languageName: node
linkType: hard
-"mime-db@npm:1.50.0, mime-db@npm:>= 1.43.0 < 2":
- version: 1.50.0
- resolution: "mime-db@npm:1.50.0"
- checksum: 2719d80d8cf1b3209d2c354a0e0f73d3c1a896d416eb0b185ed680dc795f35c0ca0273e60f6ff8b02b058d9bd86a9dfc32619762fce0a6a6e55df8d48ab4276a
+"mime-db@npm:>= 1.43.0 < 2":
+ version: 1.53.0
+ resolution: "mime-db@npm:1.53.0"
+ checksum: 1dcc37ba8ed5d1c179f5c6f0837e8db19371d5f2ea3690c3c2f3fa8c3858f976851d3460b172b4dee78ebd606762cbb407aa398545fbacd539e519f858cd7bf4
languageName: node
linkType: hard
-"mime-types@npm:^2.1.12, mime-types@npm:^2.1.27, mime-types@npm:~2.1.24":
- version: 2.1.33
- resolution: "mime-types@npm:2.1.33"
+"mime-types@npm:^2.1.12, mime-types@npm:^2.1.27, mime-types@npm:~2.1.34":
+ version: 2.1.35
+ resolution: "mime-types@npm:2.1.35"
dependencies:
- mime-db: 1.50.0
- checksum: 251e5d7e2e2e7bf7d97d8f68af4eff737c8fde5a35845b2222318662c1ff336bf91a3a2baf4ad3cd8f00f1b2537a25d45d58e5327ee4c417cea53de1c24510b4
+ mime-db: 1.52.0
+ checksum: 82fb07ec56d8ff1fc999a84f2f217aa46cb6ed1033fefaabd5785b9a974ed225c90dc72fff460259e66b95b73648596dbcc50d51ed69cdf464af2d237d3149b2
languageName: node
linkType: hard
@@ -9869,11 +8849,11 @@ __metadata:
linkType: hard
"mime@npm:^2.4.1":
- version: 2.5.2
- resolution: "mime@npm:2.5.2"
+ version: 2.6.0
+ resolution: "mime@npm:2.6.0"
bin:
mime: cli.js
- checksum: 6feb4a221498b25913590c6d6b2e980d519b57a6fc07849be3b8ee507a8980211e11b371d2d53d92dd883e46e699cd6f7712e7d71743f036adb5b0a8ea3005d5
+ checksum: a7f2589900d9c16e3bdf7672d16a6274df903da958c1643c9c45771f0478f3846dcb1097f31eb9178452570271361e2149310931ec705c037210fc69639c8e6c
languageName: node
linkType: hard
@@ -9900,7 +8880,7 @@ __metadata:
languageName: node
linkType: hard
-"minimatch@npm:^3.0.2, minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.2":
+"minimatch@npm:^3.0.2, minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2":
version: 3.1.2
resolution: "minimatch@npm:3.1.2"
dependencies:
@@ -9910,42 +8890,51 @@ __metadata:
linkType: hard
"minimatch@npm:^5.0.1":
- version: 5.1.0
- resolution: "minimatch@npm:5.1.0"
+ version: 5.1.6
+ resolution: "minimatch@npm:5.1.6"
dependencies:
brace-expansion: ^2.0.1
- checksum: 21c4877438068da0728eeb678107ea716fd3c76fcde713c9d11b01d7d15c276071aa2fecfcd353b970a290cffd572c3ed43e0a64804470ab9ae97717ed13fb18
+ checksum: 3defdfd230914f22a8da203747c42ee3c405c39d4d37ffda284dac5e45b7e1f6c49aa8be606509002898e73091ff2a3bbfc59c2c6c71d4660609f63aa92f98e3
languageName: node
linkType: hard
-"minimist@npm:^1.2.0, minimist@npm:^1.2.5, minimist@npm:^1.2.6":
- version: 1.2.6
- resolution: "minimist@npm:1.2.6"
- checksum: d0b566204044481c4401abbd24cc75814e753b37268e7fe7ccc78612bf3e37bf1e45a6c43fb0b119445ea1c413c000bde013f320b7211974f2f49bcbec1d0dbf
+"minimatch@npm:^9.0.4":
+ version: 9.0.5
+ resolution: "minimatch@npm:9.0.5"
+ dependencies:
+ brace-expansion: ^2.0.1
+ checksum: de96cf5e35bdf0eab3e2c853522f98ffbe9a36c37797778d2665231ec1f20a9447a7e567cb640901f89e4daaa95ae5d70c65a9e8aa2bb0019b6facbc3c0575ed
languageName: node
linkType: hard
-"minipass-collect@npm:^1.0.2":
- version: 1.0.2
- resolution: "minipass-collect@npm:1.0.2"
+"minimist@npm:^1.2.0, minimist@npm:^1.2.6":
+ version: 1.2.8
+ resolution: "minimist@npm:1.2.8"
+ checksum: 19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6
+ languageName: node
+ linkType: hard
+
+"minipass-collect@npm:^2.0.1":
+ version: 2.0.1
+ resolution: "minipass-collect@npm:2.0.1"
dependencies:
- minipass: ^3.0.0
- checksum: 8f82bd1f3095b24f53a991b04b67f4c710c894e518b813f0864a31de5570441a509be1ca17e0bb92b047591a8fdbeb886f502764fefb00d2f144f4011791e898
+ minipass: ^7.0.3
+ checksum: 5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e
languageName: node
linkType: hard
-"minipass-fetch@npm:^2.0.3":
- version: 2.1.0
- resolution: "minipass-fetch@npm:2.1.0"
+"minipass-fetch@npm:^3.0.0":
+ version: 3.0.5
+ resolution: "minipass-fetch@npm:3.0.5"
dependencies:
encoding: ^0.1.13
- minipass: ^3.1.6
+ minipass: ^7.0.3
minipass-sized: ^1.0.3
minizlib: ^2.1.2
dependenciesMeta:
encoding:
optional: true
- checksum: 42c033fc1dfc245bd0d673922780dd68b769d3f9f973aeea2f03dd9fe37854a0a2892aa86c4db67e8179d2a271437212027419a866b91e5e2345fc56f9d1f71e
+ checksum: 9d702d57f556274286fdd97e406fc38a2f5c8d15e158b498d7393b1105974b21249289ec571fa2b51e038a4872bfc82710111cf75fae98c662f3d6f95e72152b
languageName: node
linkType: hard
@@ -9976,12 +8965,12 @@ __metadata:
languageName: node
linkType: hard
-"minipass@npm:^3.0.0, minipass@npm:^3.1.1, minipass@npm:^3.1.6":
- version: 3.3.5
- resolution: "minipass@npm:3.3.5"
+"minipass@npm:^3.0.0":
+ version: 3.3.6
+ resolution: "minipass@npm:3.3.6"
dependencies:
yallist: ^4.0.0
- checksum: f1bb39af4d6ce60f8a1e02e7ef7f09fffd882c83decb7edd5cb1711b6eff93b34833d1845b7883864f8fca2d2498b62c882fec735deff759c91444bf6e821266
+ checksum: a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c
languageName: node
linkType: hard
@@ -9992,6 +8981,13 @@ __metadata:
languageName: node
linkType: hard
+"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.1.2":
+ version: 7.1.2
+ resolution: "minipass@npm:7.1.2"
+ checksum: b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557
+ languageName: node
+ linkType: hard
+
"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2":
version: 2.1.2
resolution: "minizlib@npm:2.1.2"
@@ -10003,13 +8999,13 @@ __metadata:
linkType: hard
"mkdirp@npm:^0.5.1":
- version: 0.5.5
- resolution: "mkdirp@npm:0.5.5"
+ version: 0.5.6
+ resolution: "mkdirp@npm:0.5.6"
dependencies:
- minimist: ^1.2.5
+ minimist: ^1.2.6
bin:
mkdirp: bin/cmd.js
- checksum: 4469faeeba703bc46b7cdbe3097d6373747a581eb8b556ce41c8fd25a826eb3254466c6522ba823c2edb0b6f0da7beb91cf71f040bc4e361534a3e67f0994bd0
+ checksum: e2e2be789218807b58abced04e7b49851d9e46e88a2f9539242cc8a92c9b5c3a0b9bab360bd3014e02a140fc4fbc58e31176c408b493f8a2a6f4986bd7527b01
languageName: node
linkType: hard
@@ -10029,14 +9025,7 @@ __metadata:
languageName: node
linkType: hard
-"ms@npm:2.1.2":
- version: 2.1.2
- resolution: "ms@npm:2.1.2"
- checksum: a437714e2f90dbf881b5191d35a6db792efbca5badf112f87b9e1c712aace4b4b9b742dd6537f3edf90fd6f684de897cec230abde57e87883766712ddda297cc
- languageName: node
- linkType: hard
-
-"ms@npm:2.1.3, ms@npm:^2.0.0, ms@npm:^2.1.1":
+"ms@npm:2.1.3, ms@npm:^2.1.1, ms@npm:^2.1.3":
version: 2.1.3
resolution: "ms@npm:2.1.3"
checksum: d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48
@@ -10059,20 +9048,20 @@ __metadata:
languageName: node
linkType: hard
-"negotiator@npm:0.6.2":
- version: 0.6.2
- resolution: "negotiator@npm:0.6.2"
- checksum: cda4955b5a0d6624ff3322c9a9e7bfc039b8f2b0133708208edbb28be6ebb62c45493aee098374d8d0aeda60fc37dd08cf53cd60bd5fad3efb8fc36b52e3cdce
- languageName: node
- linkType: hard
-
-"negotiator@npm:^0.6.3":
+"negotiator@npm:0.6.3":
version: 0.6.3
resolution: "negotiator@npm:0.6.3"
checksum: 3ec9fd413e7bf071c937ae60d572bc67155262068ed522cf4b3be5edbe6ddf67d095ec03a3a14ebf8fc8e95f8e1d61be4869db0dbb0de696f6b837358bd43fc2
languageName: node
linkType: hard
+"negotiator@npm:^0.6.3, negotiator@npm:~0.6.4":
+ version: 0.6.4
+ resolution: "negotiator@npm:0.6.4"
+ checksum: 3e677139c7fb7628a6f36335bf11a885a62c21d5390204590a1a214a5631fcbe5ea74ef6a610b60afe84b4d975cbe0566a23f20ee17c77c73e74b80032108dea
+ languageName: node
+ linkType: hard
+
"neo-async@npm:^2.5.0":
version: 2.6.2
resolution: "neo-async@npm:2.6.2"
@@ -10080,13 +9069,6 @@ __metadata:
languageName: node
linkType: hard
-"nice-try@npm:^1.0.4":
- version: 1.0.5
- resolution: "nice-try@npm:1.0.5"
- checksum: 95568c1b73e1d0d4069a3e3061a2102d854513d37bcfda73300015b7ba4868d3b27c198d1dbbd8ebdef4112fc2ed9e895d4a0f2e1cce0bd334f2a1346dc9205f
- languageName: node
- linkType: hard
-
"no-case@npm:^3.0.4":
version: 3.0.4
resolution: "no-case@npm:3.0.4"
@@ -10104,6 +9086,13 @@ __metadata:
languageName: node
linkType: hard
+"node-abort-controller@npm:^3.1.1":
+ version: 3.1.1
+ resolution: "node-abort-controller@npm:3.1.1"
+ checksum: f7ad0e7a8e33809d4f3a0d1d65036a711c39e9d23e0319d80ebe076b9a3b4432b4d6b86a7fab65521de3f6872ffed36fc35d1327487c48eb88c517803403eda3
+ languageName: node
+ linkType: hard
+
"node-dir@npm:^0.1.17":
version: 0.1.17
resolution: "node-dir@npm:0.1.17"
@@ -10113,9 +9102,9 @@ __metadata:
languageName: node
linkType: hard
-"node-fetch@npm:^2.2.0, node-fetch@npm:^2.6.0, node-fetch@npm:^2.6.7":
- version: 2.6.9
- resolution: "node-fetch@npm:2.6.9"
+"node-fetch@npm:^2.2.0, node-fetch@npm:^2.6.7":
+ version: 2.7.0
+ resolution: "node-fetch@npm:2.7.0"
dependencies:
whatwg-url: ^5.0.0
peerDependencies:
@@ -10123,27 +9112,34 @@ __metadata:
peerDependenciesMeta:
encoding:
optional: true
- checksum: 7a4a0e027e509b741bec4172749103f158da23187ff251cb988dd54ea7267519c3fa11838971da0f5f3c54e79da3174e7bd72aa2179c9f69887511ece16c9c0f
+ checksum: b55786b6028208e6fbe594ccccc213cab67a72899c9234eb59dba51062a299ea853210fcf526998eaa2867b0963ad72338824450905679ff0fa304b8c5093ae8
+ languageName: node
+ linkType: hard
+
+"node-forge@npm:^1":
+ version: 1.3.1
+ resolution: "node-forge@npm:1.3.1"
+ checksum: e882819b251a4321f9fc1d67c85d1501d3004b4ee889af822fd07f64de3d1a8e272ff00b689570af0465d65d6bf5074df9c76e900e0aff23e60b847f2a46fbe8
languageName: node
linkType: hard
"node-gyp@npm:latest":
- version: 9.1.0
- resolution: "node-gyp@npm:9.1.0"
+ version: 10.2.0
+ resolution: "node-gyp@npm:10.2.0"
dependencies:
env-paths: ^2.2.0
- glob: ^7.1.4
+ exponential-backoff: ^3.1.1
+ glob: ^10.3.10
graceful-fs: ^4.2.6
- make-fetch-happen: ^10.0.3
- nopt: ^5.0.0
- npmlog: ^6.0.0
- rimraf: ^3.0.2
+ make-fetch-happen: ^13.0.0
+ nopt: ^7.0.0
+ proc-log: ^4.1.0
semver: ^7.3.5
- tar: ^6.1.2
- which: ^2.0.2
+ tar: ^6.2.1
+ which: ^4.0.0
bin:
node-gyp: bin/node-gyp.js
- checksum: 906a1ddcfadfdfcaad140bdf010bda42fe1c012b24c2176f58460fda4687a720f50753a1b9f3dd231fa25fb47abebe199d2c70ce84d3a4c134176c04bde2704d
+ checksum: 00630d67dbd09a45aee0a5d55c05e3916ca9e6d427ee4f7bc392d2d3dc5fad7449b21fc098dd38260a53d9dcc9c879b36704a1994235d4707e7271af7e9a835b
languageName: node
linkType: hard
@@ -10154,13 +9150,6 @@ __metadata:
languageName: node
linkType: hard
-"node-releases@npm:^2.0.14":
- version: 2.0.14
- resolution: "node-releases@npm:2.0.14"
- checksum: 199fc93773ae70ec9969bc6d5ac5b2bbd6eb986ed1907d751f411fef3ede0e4bfdb45ceb43711f8078bea237b6036db8b1bf208f6ff2b70c7d615afd157f3ab9
- languageName: node
- linkType: hard
-
"node-releases@npm:^2.0.18":
version: 2.0.18
resolution: "node-releases@npm:2.0.18"
@@ -10175,14 +9164,14 @@ __metadata:
languageName: node
linkType: hard
-"nopt@npm:^5.0.0":
- version: 5.0.0
- resolution: "nopt@npm:5.0.0"
+"nopt@npm:^7.0.0":
+ version: 7.2.1
+ resolution: "nopt@npm:7.2.1"
dependencies:
- abbrev: 1
+ abbrev: ^2.0.0
bin:
nopt: bin/nopt.js
- checksum: fc5c4f07155cb455bf5fc3dd149fac421c1a40fd83c6bfe83aa82b52f02c17c5e88301321318adaa27611c8a6811423d51d29deaceab5fa158b585a61a551061
+ checksum: a069c7c736767121242037a22a788863accfa932ab285a1eb569eb8cd534b09d17206f68c37f096ae785647435e0c5a5a0a67b42ec743e481a455e5ae6a6df81
languageName: node
linkType: hard
@@ -10200,15 +9189,6 @@ __metadata:
languageName: node
linkType: hard
-"npm-run-path@npm:^2.0.0":
- version: 2.0.2
- resolution: "npm-run-path@npm:2.0.2"
- dependencies:
- path-key: ^2.0.0
- checksum: 95549a477886f48346568c97b08c4fda9cdbf7ce8a4fbc2213f36896d0d19249e32d68d7451bdcbca8041b5fba04a6b2c4a618beaf19849505c05b700740f1de
- languageName: node
- linkType: hard
-
"npm-run-path@npm:^4.0.1":
version: 4.0.1
resolution: "npm-run-path@npm:4.0.1"
@@ -10218,18 +9198,6 @@ __metadata:
languageName: node
linkType: hard
-"npmlog@npm:^6.0.0":
- version: 6.0.2
- resolution: "npmlog@npm:6.0.2"
- dependencies:
- are-we-there-yet: ^3.0.0
- console-control-strings: ^1.1.0
- gauge: ^4.0.3
- set-blocking: ^2.0.0
- checksum: 0cacedfbc2f6139c746d9cd4a85f62718435ad0ca4a2d6459cd331dd33ae58206e91a0742c1558634efcde3f33f8e8e7fd3adf1bfe7978310cf00bd55cccf890
- languageName: node
- linkType: hard
-
"nth-check@npm:^2.0.1":
version: 2.1.1
resolution: "nth-check@npm:2.1.1"
@@ -10246,17 +9214,12 @@ __metadata:
languageName: node
linkType: hard
-"ob1@npm:0.72.3":
- version: 0.72.3
- resolution: "ob1@npm:0.72.3"
- checksum: 582d42d8bee5f44fbe520c11364b5d6790022ab191852fcd6098a6dcaf8fa70982671b89a85c7abeff52891dd51d28324872967584ba970df97ff9b0f0682ab0
- languageName: node
- linkType: hard
-
-"ob1@npm:0.72.4":
- version: 0.72.4
- resolution: "ob1@npm:0.72.4"
- checksum: 0d88fb38f11f9d32085d2abdc4b30fc43c4c25e35f1c225cd939c1da3643740be0a61a8d39c90c7b01463f154930869f3b82924472e4c17809f5623b1622cb64
+"ob1@npm:0.81.0":
+ version: 0.81.0
+ resolution: "ob1@npm:0.81.0"
+ dependencies:
+ flow-enums-runtime: ^0.0.6
+ checksum: 3deec3c18cfb44b483a850891e3ef8fdabf6a113f58cbcc753f1b535d35e80ca67f9cc05a9c6398f79d6840d32b5d287d9ead10279e13a9eea29fcba5ce552e1
languageName: node
linkType: hard
@@ -10267,17 +9230,17 @@ __metadata:
languageName: node
linkType: hard
-"object-code@npm:1.3.2":
- version: 1.3.2
- resolution: "object-code@npm:1.3.2"
- checksum: 4b8f3b96b17d456bb9a3226bbe38c2ea20d54e3d88cb53a8bc6d9d752709257f7b8b53a2a0cb4ac1dd6993b92b3dce166b5c762aaf4f40598932783b60989b25
+"object-code@npm:1.3.3":
+ version: 1.3.3
+ resolution: "object-code@npm:1.3.3"
+ checksum: 804650eb9b7f23f612c5ba7afbfccc0406f622d701491a690d0492f6e01252096cfba85186fd39883fda6b0e04d623aa8d9485395830223af2395df32d55a75e
languageName: node
linkType: hard
"object-inspect@npm:^1.13.1":
- version: 1.13.1
- resolution: "object-inspect@npm:1.13.1"
- checksum: fad603f408e345c82e946abdf4bfd774260a5ed3e5997a0b057c44153ac32c7271ff19e3a5ae39c858da683ba045ccac2f65245c12763ce4e8594f818f4a648d
+ version: 1.13.2
+ resolution: "object-inspect@npm:1.13.2"
+ checksum: b97835b4c91ec37b5fd71add84f21c3f1047d1d155d00c0fcd6699516c256d4fcc6ff17a1aced873197fe447f91a3964178fd2a67a1ee2120cdaf60e81a050b4
languageName: node
linkType: hard
@@ -10300,7 +9263,7 @@ __metadata:
languageName: node
linkType: hard
-"object.entries@npm:^1.1.5, object.entries@npm:^1.1.7":
+"object.entries@npm:^1.1.5, object.entries@npm:^1.1.8":
version: 1.1.8
resolution: "object.entries@npm:1.1.8"
dependencies:
@@ -10311,7 +9274,7 @@ __metadata:
languageName: node
linkType: hard
-"object.fromentries@npm:^2.0.7":
+"object.fromentries@npm:^2.0.8":
version: 2.0.8
resolution: "object.fromentries@npm:2.0.8"
dependencies:
@@ -10323,7 +9286,7 @@ __metadata:
languageName: node
linkType: hard
-"object.groupby@npm:^1.0.1":
+"object.groupby@npm:^1.0.3":
version: 1.0.3
resolution: "object.groupby@npm:1.0.3"
dependencies:
@@ -10334,18 +9297,7 @@ __metadata:
languageName: node
linkType: hard
-"object.hasown@npm:^1.1.3":
- version: 1.1.4
- resolution: "object.hasown@npm:1.1.4"
- dependencies:
- define-properties: ^1.2.1
- es-abstract: ^1.23.2
- es-object-atoms: ^1.0.0
- checksum: f23187b08d874ef1aea060118c8259eb7f99f93c15a50771d710569534119062b90e087b92952b2d0fb1bb8914d61fb0b43c57fb06f622aaad538fe6868ab987
- languageName: node
- linkType: hard
-
-"object.values@npm:^1.1.6, object.values@npm:^1.1.7":
+"object.values@npm:^1.1.6, object.values@npm:^1.2.0":
version: 1.2.0
resolution: "object.values@npm:1.2.0"
dependencies:
@@ -10381,7 +9333,7 @@ __metadata:
languageName: node
linkType: hard
-"once@npm:^1.3.0, once@npm:^1.3.1, once@npm:^1.4.0":
+"once@npm:^1.3.0":
version: 1.4.0
resolution: "once@npm:1.4.0"
dependencies:
@@ -10408,7 +9360,7 @@ __metadata:
languageName: node
linkType: hard
-"open@npm:^7.4.2":
+"open@npm:^7.0.3, open@npm:^7.4.2":
version: 7.4.2
resolution: "open@npm:7.4.2"
dependencies:
@@ -10419,16 +9371,16 @@ __metadata:
linkType: hard
"optionator@npm:^0.9.3":
- version: 0.9.3
- resolution: "optionator@npm:0.9.3"
+ version: 0.9.4
+ resolution: "optionator@npm:0.9.4"
dependencies:
- "@aashutoshrathi/word-wrap": ^1.2.3
deep-is: ^0.1.3
fast-levenshtein: ^2.0.6
levn: ^0.4.1
prelude-ls: ^1.2.1
type-check: ^0.4.0
- checksum: 66fba794d425b5be51353035cf3167ce6cfa049059cbb93229b819167687e0f48d2bc4603fcb21b091c99acb516aae1083624675b15c4765b2e4693a085e959c
+ word-wrap: ^1.2.5
+ checksum: 4afb687a059ee65b61df74dfe87d8d6815cd6883cb8b3d5883a910df72d0f5d029821f37025e4bccf4048873dbdb09acc6d303d27b8f76b1a80dd5a7d5334675
languageName: node
linkType: hard
@@ -10449,20 +9401,13 @@ __metadata:
languageName: node
linkType: hard
-"os-tmpdir@npm:^1.0.0, os-tmpdir@npm:~1.0.2":
+"os-tmpdir@npm:~1.0.2":
version: 1.0.2
resolution: "os-tmpdir@npm:1.0.2"
checksum: f438450224f8e2687605a8dd318f0db694b6293c5d835ae509a69e97c8de38b6994645337e5577f5001115470414638978cc49da1cdcc25106dad8738dc69990
languageName: node
linkType: hard
-"p-finally@npm:^1.0.0":
- version: 1.0.0
- resolution: "p-finally@npm:1.0.0"
- checksum: 6b8552339a71fe7bd424d01d8451eea92d379a711fc62f6b2fe64cad8a472c7259a236c9a22b4733abca0b5666ad503cb497792a0478c5af31ded793d00937e7
- languageName: node
- linkType: hard
-
"p-limit@npm:^2.0.0, p-limit@npm:^2.2.0":
version: 2.3.0
resolution: "p-limit@npm:2.3.0"
@@ -10524,6 +9469,13 @@ __metadata:
languageName: node
linkType: hard
+"package-json-from-dist@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "package-json-from-dist@npm:1.0.1"
+ checksum: 62ba2785eb655fec084a257af34dbe24292ab74516d6aecef97ef72d4897310bc6898f6c85b5cd22770eaa1ce60d55a0230e150fb6a966e3ecd6c511e23d164b
+ languageName: node
+ linkType: hard
+
"parent-module@npm:^1.0.0":
version: 1.0.1
resolution: "parent-module@npm:1.0.1"
@@ -10615,13 +9567,6 @@ __metadata:
languageName: node
linkType: hard
-"path-key@npm:^2.0.0, path-key@npm:^2.0.1":
- version: 2.0.1
- resolution: "path-key@npm:2.0.1"
- checksum: dd2044f029a8e58ac31d2bf34c34b93c3095c1481942960e84dd2faa95bbb71b9b762a106aead0646695330936414b31ca0bd862bf488a937ad17c8c5d73b32b
- languageName: node
- linkType: hard
-
"path-key@npm:^3.0.0, path-key@npm:^3.1.0":
version: 3.1.1
resolution: "path-key@npm:3.1.1"
@@ -10636,6 +9581,16 @@ __metadata:
languageName: node
linkType: hard
+"path-scurry@npm:^1.11.1":
+ version: 1.11.1
+ resolution: "path-scurry@npm:1.11.1"
+ dependencies:
+ lru-cache: ^10.2.0
+ minipass: ^5.0.0 || ^6.0.2 || ^7.0.0
+ checksum: 32a13711a2a505616ae1cc1b5076801e453e7aae6ac40ab55b388bb91b9d0547a52f5aaceff710ea400205f18691120d4431e520afbe4266b836fadede15872d
+ languageName: node
+ linkType: hard
+
"path-type@npm:^4.0.0":
version: 4.0.0
resolution: "path-type@npm:4.0.0"
@@ -10643,24 +9598,17 @@ __metadata:
languageName: node
linkType: hard
-"picocolors@npm:^1.0.0":
- version: 1.0.0
- resolution: "picocolors@npm:1.0.0"
- checksum: 20a5b249e331c14479d94ec6817a182fd7a5680debae82705747b2db7ec50009a5f6648d0621c561b0572703f84dbef0858abcbd5856d3c5511426afcb1961f7
- languageName: node
- linkType: hard
-
-"picocolors@npm:^1.1.0":
+"picocolors@npm:^1.0.0, picocolors@npm:^1.1.0":
version: 1.1.1
resolution: "picocolors@npm:1.1.1"
checksum: e2e3e8170ab9d7c7421969adaa7e1b31434f789afb9b3f115f6b96d91945041ac3ceb02e9ec6fe6510ff036bcc0bf91e69a1772edc0b707e12b19c0f2d6bcf58
languageName: node
linkType: hard
-"picomatch@npm:^2.0.4, picomatch@npm:^2.2.3":
- version: 2.3.0
- resolution: "picomatch@npm:2.3.0"
- checksum: a65bde78212368e16afb82429a0ea033d20a836270446acb53ec6e31d939bccf1213f788bc49361f7aff47b67c1fb74d898f99964f67f26ca07a3cd815ddbcbb
+"picomatch@npm:^2.0.4, picomatch@npm:^2.2.3, picomatch@npm:^2.3.1":
+ version: 2.3.1
+ resolution: "picomatch@npm:2.3.1"
+ checksum: 26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be
languageName: node
linkType: hard
@@ -10671,10 +9619,10 @@ __metadata:
languageName: node
linkType: hard
-"pirates@npm:^4.0.4, pirates@npm:^4.0.5":
- version: 4.0.5
- resolution: "pirates@npm:4.0.5"
- checksum: 58b6ff0f137a3d70ff34ac4802fd19819cdc19b53e9c95adecae6c7cfc77719a11f561ad85d46e79e520ef57c31145a564c8bc3bee8cfee75d441fab2928a51d
+"pirates@npm:^4.0.4, pirates@npm:^4.0.6":
+ version: 4.0.6
+ resolution: "pirates@npm:4.0.6"
+ checksum: 00d5fa51f8dded94d7429700fb91a0c1ead00ae2c7fd27089f0c5b63e6eca36197fe46384631872690a66f390c5e27198e99006ab77ae472692ab9c2ca903f36
languageName: node
linkType: hard
@@ -10704,9 +9652,9 @@ __metadata:
linkType: hard
"postcss-value-parser@npm:^4.0.2":
- version: 4.1.0
- resolution: "postcss-value-parser@npm:4.1.0"
- checksum: 55b30eaa103765a7cc0468d2a41da6e200f992f2634c63eb89a97dd9b722732365e30dba007c2c040a8cb0c94ba8b70b0c97bcd1de62318ebae72bb5de9537e0
+ version: 4.2.0
+ resolution: "postcss-value-parser@npm:4.2.0"
+ checksum: f4142a4f56565f77c1831168e04e3effd9ffcc5aebaf0f538eee4b2d465adfd4b85a44257bb48418202a63806a7da7fe9f56c330aebb3cac898e46b4cbf49161
languageName: node
linkType: hard
@@ -10728,16 +9676,16 @@ __metadata:
languageName: node
linkType: hard
-"prettier@npm:^3.2.5":
- version: 3.2.5
- resolution: "prettier@npm:3.2.5"
+"prettier@npm:^3.3.3":
+ version: 3.3.3
+ resolution: "prettier@npm:3.3.3"
bin:
prettier: bin/prettier.cjs
- checksum: ea327f37a7d46f2324a34ad35292af2ad4c4c3c3355da07313339d7e554320f66f65f91e856add8530157a733c6c4a897dc41b577056be5c24c40f739f5ee8c6
+ checksum: b85828b08e7505716324e4245549b9205c0cacb25342a030ba8885aba2039a115dbcf75a0b7ca3b37bc9d101ee61fab8113fc69ca3359f2a226f1ecc07ad2e26
languageName: node
linkType: hard
-"pretty-format@npm:^26.5.2, pretty-format@npm:^26.6.2":
+"pretty-format@npm:^26.6.2":
version: 26.6.2
resolution: "pretty-format@npm:26.6.2"
dependencies:
@@ -10760,6 +9708,13 @@ __metadata:
languageName: node
linkType: hard
+"proc-log@npm:^4.1.0, proc-log@npm:^4.2.0":
+ version: 4.2.0
+ resolution: "proc-log@npm:4.2.0"
+ checksum: 17db4757c2a5c44c1e545170e6c70a26f7de58feb985091fb1763f5081cab3d01b181fb2dd240c9f4a4255a1d9227d163d5771b7e69c9e49a561692db865efb9
+ languageName: node
+ linkType: hard
+
"process-nextick-args@npm:~2.0.0":
version: 2.0.1
resolution: "process-nextick-args@npm:2.0.1"
@@ -10774,13 +9729,6 @@ __metadata:
languageName: node
linkType: hard
-"promise-inflight@npm:^1.0.1":
- version: 1.0.1
- resolution: "promise-inflight@npm:1.0.1"
- checksum: d179d148d98fbff3d815752fa9a08a87d3190551d1420f17c4467f628214db12235ae068d98cd001f024453676d8985af8f28f002345646c4ece4600a79620bc
- languageName: node
- linkType: hard
-
"promise-retry@npm:^2.0.1":
version: 2.0.1
resolution: "promise-retry@npm:2.0.1"
@@ -10800,7 +9748,7 @@ __metadata:
languageName: node
linkType: hard
-"prompts@npm:^2.0.1, prompts@npm:^2.4.0":
+"prompts@npm:^2.0.1, prompts@npm:^2.4.2":
version: 2.4.2
resolution: "prompts@npm:2.4.2"
dependencies:
@@ -10828,20 +9776,10 @@ __metadata:
languageName: node
linkType: hard
-"pump@npm:^3.0.0":
- version: 3.0.2
- resolution: "pump@npm:3.0.2"
- dependencies:
- end-of-stream: ^1.1.0
- once: ^1.3.1
- checksum: 5ad655cb2a7738b4bcf6406b24ad0970d680649d996b55ad20d1be8e0c02394034e4c45ff7cd105d87f1e9b96a0e3d06fd28e11fae8875da26e7f7a8e2c9726f
- languageName: node
- linkType: hard
-
"punycode@npm:^2.1.0":
- version: 2.1.1
- resolution: "punycode@npm:2.1.1"
- checksum: 83815ca9b9177f055771f31980cbec7ffaef10257d50a95ab99b4a30f0404846e85fa6887ee1bbc0aaddb7bad6d96e2fa150a016051ff0f6b92be4ad613ddca8
+ version: 2.3.1
+ resolution: "punycode@npm:2.3.1"
+ checksum: 14f76a8206bc3464f794fb2e3d3cc665ae416c01893ad7a02b23766eb07159144ee612ad67af5e84fa4479ccfe67678c4feb126b0485651b302babf66f04f9e9
languageName: node
linkType: hard
@@ -10871,6 +9809,15 @@ __metadata:
languageName: node
linkType: hard
+"queue@npm:6.0.2":
+ version: 6.0.2
+ resolution: "queue@npm:6.0.2"
+ dependencies:
+ inherits: ~2.0.3
+ checksum: cf987476cc72e7d3aaabe23ccefaab1cd757a2b5e0c8d80b67c9575a6b5e1198807ffd4f0948a3f118b149d1111d810ee773473530b77a5c606673cac2c9c996
+ languageName: node
+ linkType: hard
+
"range-parser@npm:~1.2.1":
version: 1.2.1
resolution: "range-parser@npm:1.2.1"
@@ -10878,25 +9825,13 @@ __metadata:
languageName: node
linkType: hard
-"react-devtools-core@npm:4.24.0":
- version: 4.24.0
- resolution: "react-devtools-core@npm:4.24.0"
+"react-devtools-core@npm:^5.3.1":
+ version: 5.3.2
+ resolution: "react-devtools-core@npm:5.3.2"
dependencies:
shell-quote: ^1.6.1
ws: ^7
- checksum: f2b072eec77049516146292427d618773bdf8d231e2a45f594a84f2e6cb064f1fe565953ed141079079d7fd732791f3fe93c06a4376511f3906c27c233fa91a5
- languageName: node
- linkType: hard
-
-"react-dom@npm:18.2.0":
- version: 18.2.0
- resolution: "react-dom@npm:18.2.0"
- dependencies:
- loose-envify: ^1.1.0
- scheduler: ^0.23.0
- peerDependencies:
- react: ^18.2.0
- checksum: 66dfc5f93e13d0674e78ef41f92ed21dfb80f9c4ac4ac25a4b51046d41d4d2186abc915b897f69d3d0ebbffe6184e7c5876f2af26bfa956f179225d921be713a
+ checksum: 7165544ca5890af62e875eeda3f915e054dc734ad74f77d6490de32ba4fef6c1d30647bbb0643f769dd988913e0edc2bf2b1d6c2679e910150929a6312479cf3
languageName: node
linkType: hard
@@ -10908,18 +9843,18 @@ __metadata:
linkType: hard
"react-freeze@npm:^1.0.0":
- version: 1.0.0
- resolution: "react-freeze@npm:1.0.0"
+ version: 1.0.4
+ resolution: "react-freeze@npm:1.0.4"
peerDependencies:
- react: ^17.0.0
- checksum: b54bff261379b75dec9b8c7dd007672425ce905ef694d1c937d8ff21e43b2160c3807236a9485903998c07dfdb677f936a82a4a908b9fd61453b7bcd15944ac1
+ react: ">=17.0.0"
+ checksum: 8f51257c261bfefff86f618e958683536248f708019632d309ee5ebdd52f25d3c130660d06fb6f0f4fdef79f00f8ec7177233a872c2321f7d46b7e77ccc522a1
languageName: node
linkType: hard
-"react-is@npm:^16.12.0 || ^17.0.0 || ^18.0.0, react-is@npm:^18.0.0":
- version: 18.2.0
- resolution: "react-is@npm:18.2.0"
- checksum: 6eb5e4b28028c23e2bfcf73371e72cd4162e4ac7ab445ddae2afe24e347a37d6dc22fae6e1748632cd43c6d4f9b8f86dcf26bf9275e1874f436d129952528ae0
+"react-is@npm:^16.12.0 || ^17.0.0 || ^18.0.0, react-is@npm:^18.0.0, react-is@npm:^18.3.1":
+ version: 18.3.1
+ resolution: "react-is@npm:18.3.1"
+ checksum: f2f1e60010c683479e74c63f96b09fb41603527cd131a9959e2aee1e5a8b0caf270b365e5ca77d4a6b18aae659b60a86150bb3979073528877029b35aecd2072
languageName: node
linkType: hard
@@ -10937,47 +9872,28 @@ __metadata:
languageName: node
linkType: hard
-"react-is@npm:^18.2.0":
- version: 18.3.1
- resolution: "react-is@npm:18.3.1"
- checksum: f2f1e60010c683479e74c63f96b09fb41603527cd131a9959e2aee1e5a8b0caf270b365e5ca77d4a6b18aae659b60a86150bb3979073528877029b35aecd2072
- languageName: node
- linkType: hard
-
-"react-native-audio-recorder-player@npm:3.5.1":
- version: 3.5.1
- resolution: "react-native-audio-recorder-player@npm:3.5.1"
+"react-native-audio-recorder-player@npm:^3.6.12":
+ version: 3.6.12
+ resolution: "react-native-audio-recorder-player@npm:3.6.12"
dependencies:
- dooboolab-welcome: ^1.3.2
+ hyochan-welcome: ^1.0.0
peerDependencies:
react: "*"
react-native: "*"
- checksum: 49fd1106495e5c2681771102e609b57c8fee2c2a761d0a6b6a499423b7a8ddbc57abbb91b22f08fabc3820e5d62155fedb3a4b1669c31cd57902b0a60bb259dc
- languageName: node
- linkType: hard
-
-"react-native-codegen@npm:^0.70.6":
- version: 0.70.7
- resolution: "react-native-codegen@npm:0.70.7"
- dependencies:
- "@babel/parser": ^7.14.0
- flow-parser: ^0.121.0
- jscodeshift: ^0.14.0
- nullthrows: ^1.1.1
- checksum: d1f2d190f501c583e2da91ca3bd3cb79f2c20fe7a6e4fa066b040f2493f366b525ab848f5f70a27623336e10bb23281fec1982eb6f2da9bba77005733ad25978
+ checksum: 9e740463a43457bb1518361c79b691e803ad55c7f0fe8d7c49a97aecf31bdc87b03c0ba28a8f2a05b35bb83d08b5e2cc15af749903817f542406cfe9602abf32
languageName: node
linkType: hard
-"react-native-device-info@npm:^10.13.1":
- version: 10.13.1
- resolution: "react-native-device-info@npm:10.13.1"
+"react-native-device-info@npm:^14.0.0":
+ version: 14.0.0
+ resolution: "react-native-device-info@npm:14.0.0"
peerDependencies:
react-native: "*"
- checksum: a81083266cefec7d4dd9e32838ac8b67b19446b8b8d14e7d3dae3ce93a4ddfb84c1e8afc0046f99122246bcd35c4ab8fa76ecdd22643153f2a772bf4913e461b
+ checksum: ede87521d4a59062ece6d481801ea97637a15b8d1175e8aa716152aa75fb87e2517aafb25e4cebff9f716e4ac029d0bb98f44805aacdce6343f51f30bdaa597a
languageName: node
linkType: hard
-"react-native-element-dropdown@npm:^2.10.4":
+"react-native-element-dropdown@npm:^2.12.2":
version: 2.12.2
resolution: "react-native-element-dropdown@npm:2.12.2"
dependencies:
@@ -11005,26 +9921,18 @@ __metadata:
languageName: node
linkType: hard
-"react-native-gesture-handler@npm:2.9.0":
- version: 2.9.0
- resolution: "react-native-gesture-handler@npm:2.9.0"
+"react-native-gesture-handler@npm:^2.20.2":
+ version: 2.20.2
+ resolution: "react-native-gesture-handler@npm:2.20.2"
dependencies:
"@egjs/hammerjs": ^2.0.17
hoist-non-react-statics: ^3.3.0
invariant: ^2.2.4
- lodash: ^4.17.21
prop-types: ^15.7.2
peerDependencies:
react: "*"
react-native: "*"
- checksum: 722e7674b30d8db030212b253d6390d1b8e813b13177762aa0ccf798607191c99c53593a3e51c919c095a6b2267ee0fcc05ee11e18c527414f7335030e97e535
- languageName: node
- linkType: hard
-
-"react-native-gradle-plugin@npm:^0.70.3":
- version: 0.70.3
- resolution: "react-native-gradle-plugin@npm:0.70.3"
- checksum: eed18c7d9d062eb2fdb78e92f2c31964d82300b60da532ed9c7ffd6f4d68e2edf017158c1c44e469014c138b22558f3e56bf73ef6ee4b52b6d0828ce33e26baf
+ checksum: 94c16a40370adfaaff8af6aec5938a8d5c5704afaf7ec569d9e11c66ecc3b5c763314c091a76573885636c04d9e6084de3696d59595c56aac9eb17b2f28e5c6c
languageName: node
linkType: hard
@@ -11081,9 +9989,9 @@ __metadata:
languageName: node
linkType: hard
-"react-native-paper@npm:5.12.3":
- version: 5.12.3
- resolution: "react-native-paper@npm:5.12.3"
+"react-native-paper@npm:5.12.5":
+ version: 5.12.5
+ resolution: "react-native-paper@npm:5.12.5"
dependencies:
"@callstack/react-theme-provider": ^3.0.9
color: ^3.1.2
@@ -11093,13 +10001,13 @@ __metadata:
react-native: "*"
react-native-safe-area-context: "*"
react-native-vector-icons: "*"
- checksum: 0adc7c5dd3e47af357b9e0b700e9663d32d9e6e47cba10b26af76a4a63197bda47e5295d6bdc031904039aaa12b875a135fa512c323ea44d4c1ae97d68e1d356
+ checksum: feeeedae6fcd9684be04a8a9e9f568776d1680efa190cf0594d72fd91724985bbef2847e06e474ee6221dd1e236701e69c28f1e47f41cc0be8c99656ecf3f58c
languageName: node
linkType: hard
-"react-native-permissions@npm:^4.1.5":
- version: 4.1.5
- resolution: "react-native-permissions@npm:4.1.5"
+"react-native-permissions@npm:^5.1.0":
+ version: 5.1.0
+ resolution: "react-native-permissions@npm:5.1.0"
peerDependencies:
react: ">=18.1.0"
react-native: ">=0.70.0"
@@ -11107,11 +10015,11 @@ __metadata:
peerDependenciesMeta:
react-native-windows:
optional: true
- checksum: 93dd8ec9c4f5259b959fe0ec560c95c10518e893358b53acf9a380dca7d58e541274bf25cfe83e09c769b260fbce1361fa4497488b6bbcad499d8fb2cdefb5c0
+ checksum: eec4765aac4fa27a8d1bd5daf9496f059312879465f498f07fcbe3fe35c799b77d419007e2eb9895c90dfcdb1e53689d29655c5e6db8565c1e3a313203727ffa
languageName: node
linkType: hard
-"react-native-popover-view@npm:^5.1.8":
+"react-native-popover-view@npm:^5.1.9":
version: 5.1.9
resolution: "react-native-popover-view@npm:5.1.9"
dependencies:
@@ -11132,21 +10040,26 @@ __metadata:
languageName: node
linkType: hard
-"react-native-reanimated@npm:2.17.0":
- version: 2.17.0
- resolution: "react-native-reanimated@npm:2.17.0"
+"react-native-reanimated@npm:^3.16.1":
+ version: 3.16.1
+ resolution: "react-native-reanimated@npm:3.16.1"
dependencies:
- "@babel/plugin-transform-object-assign": ^7.16.7
+ "@babel/plugin-transform-arrow-functions": ^7.0.0-0
+ "@babel/plugin-transform-class-properties": ^7.0.0-0
+ "@babel/plugin-transform-classes": ^7.0.0-0
+ "@babel/plugin-transform-nullish-coalescing-operator": ^7.0.0-0
+ "@babel/plugin-transform-optional-chaining": ^7.0.0-0
+ "@babel/plugin-transform-shorthand-properties": ^7.0.0-0
+ "@babel/plugin-transform-template-literals": ^7.0.0-0
+ "@babel/plugin-transform-unicode-regex": ^7.0.0-0
"@babel/preset-typescript": ^7.16.7
+ convert-source-map: ^2.0.0
invariant: ^2.2.4
- lodash.isequal: ^4.5.0
- setimmediate: ^1.0.5
- string-hash-64: ^1.0.3
peerDependencies:
"@babel/core": ^7.0.0-0
react: "*"
react-native: "*"
- checksum: 25ae0ed7f0f984558a2e89c5d78f9172e10a4a88467158bdb721919c0c438ef0fa13a04a9c3ffd853e1ab481eac0161c4352ca1cd7c76aa5f0c82f17573c311b
+ checksum: 18202fce7e96d7cd0dbab2f8938ddf89efa6687e5f17c43ba6548de5563efb270b7b8d7507598be706d5d53224bb12fcfcd70150d15ca5d9fd46cb2c54751d59
languageName: node
linkType: hard
@@ -11159,46 +10072,37 @@ __metadata:
languageName: node
linkType: hard
-"react-native-safe-area-context@npm:^4.9.0":
- version: 4.13.1
- resolution: "react-native-safe-area-context@npm:4.13.1"
+"react-native-safe-area-context@npm:^4.14.0":
+ version: 4.14.0
+ resolution: "react-native-safe-area-context@npm:4.14.0"
peerDependencies:
react: "*"
react-native: "*"
- checksum: 2f2023cfd4fa15dbbce08de94d8a85af808d71bbf47e4c9e11853d0b95167360e166a585089f1bcc4f56f422485584120cf9660fea3a275c1f5c5dda804fa99b
+ checksum: 70d71c5ec301fe811a1b3ca78555fdf3e845731177bc2ef72fb5e5d01fa97e9e14259114fe8c5366d91eceb57272887e19323d9355453353b82b2452c716a624
languageName: node
linkType: hard
-"react-native-screens@npm:3.18.2":
- version: 3.18.2
- resolution: "react-native-screens@npm:3.18.2"
+"react-native-screens@npm:^3.35.0":
+ version: 3.35.0
+ resolution: "react-native-screens@npm:3.35.0"
dependencies:
react-freeze: ^1.0.0
warn-once: ^0.1.0
peerDependencies:
react: "*"
react-native: "*"
- checksum: 967ceb760f7591b20bc47ced83343f17cabb99d0be2a400fea983bcbd8ffd13174aca88f30d449dde6b05d8ee7ed195f4b684a5c686dd355c35d547d718add1b
- languageName: node
- linkType: hard
-
-"react-native-sound-player@npm:0.13.2":
- version: 0.13.2
- resolution: "react-native-sound-player@npm:0.13.2"
- checksum: 318e361c8a6c5cf349ab7b300bb4b2fd4b51359fc5a6ee1a7a5a08b8c1ec31e89a24e745c07c0e9d110868aca994eb08f969aa152e0bdf06ebb6263cf13512e0
+ checksum: 51b4ae9a5432dc980d560ac07baaddda12a78f56f2106e0e9498f6b46d4928c26d8288c4818627903675cc8c4d3643f14358d3ae448a3de2cb962a16270c201d
languageName: node
linkType: hard
-"react-native-splash-screen@npm:^3.3.0":
- version: 3.3.0
- resolution: "react-native-splash-screen@npm:3.3.0"
- peerDependencies:
- react-native: ">=0.57.0"
- checksum: 0979585b4087dba0825c94393477fc0301210cfa09eae4a98336e91865765f3c774cf8b20c525b3cea74c588e1e4ff0aa9d7500292ad52979670aa59ab83f0a4
+"react-native-sound-player@npm:0.14.3":
+ version: 0.14.3
+ resolution: "react-native-sound-player@npm:0.14.3"
+ checksum: 267d574ffe585ab5177603030ac1661ca7d5754d852afc44e8ad9cc8decb40d274f0e0c03fe3896c61ae093ba32a68b2cd2f0f3ff89df477db362ca1e7f82b1a
languageName: node
linkType: hard
-"react-native-svg-transformer@npm:^1.3.0":
+"react-native-svg-transformer@npm:^1.5.0":
version: 1.5.0
resolution: "react-native-svg-transformer@npm:1.5.0"
dependencies:
@@ -11213,9 +10117,9 @@ __metadata:
languageName: node
linkType: hard
-"react-native-svg@npm:^15.1.0":
- version: 15.8.0
- resolution: "react-native-svg@npm:15.8.0"
+"react-native-svg@npm:^15.9.0":
+ version: 15.9.0
+ resolution: "react-native-svg@npm:15.9.0"
dependencies:
css-select: ^5.1.0
css-tree: ^1.1.3
@@ -11223,18 +10127,18 @@ __metadata:
peerDependencies:
react: "*"
react-native: "*"
- checksum: 03d2cb19c799da6ba41dea0dc414338d01a55549ea4e4a370315c8ec34e1c6de430a62b538f099423060edc8bea6df134f765bde862770059404617c3c296af8
+ checksum: b255528644756aa1bd9193746a25b2d48d501b9620d7b9291816235fe263ac909e535e6e3485c6039cadc040c83209f48e5cc522b93aef8c23839b6f8576c9b2
languageName: node
linkType: hard
-"react-native-tts@npm:4.1.0":
- version: 4.1.0
- resolution: "react-native-tts@npm:4.1.0"
- checksum: eed2967339041fb3384a39e93d6e7d6acab9a63eee290dde88ca78d7bab0794462a72102b43044c09a4b7d250a14ad9a884a485aedebddefcd5030c0daaa1329
+"react-native-tts@npm:4.1.1":
+ version: 4.1.1
+ resolution: "react-native-tts@npm:4.1.1"
+ checksum: c0bc867e350db40668474ddc5090b1a84a08073d84b809005a9fd200ccafc088f91d1dff0f90b8344cb8e72c4afac40c7ab40f541f56e665e0c971e8b75d39a3
languageName: node
linkType: hard
-"react-native-vector-icons@npm:^10.0.3":
+"react-native-vector-icons@npm:^10.2.0":
version: 10.2.0
resolution: "react-native-vector-icons@npm:10.2.0"
dependencies:
@@ -11249,9 +10153,9 @@ __metadata:
languageName: node
linkType: hard
-"react-native-vision-camera@npm:^4.5.3":
- version: 4.5.3
- resolution: "react-native-vision-camera@npm:4.5.3"
+"react-native-vision-camera@npm:^4.6.1":
+ version: 4.6.1
+ resolution: "react-native-vision-camera@npm:4.6.1"
peerDependencies:
"@shopify/react-native-skia": "*"
react: "*"
@@ -11265,70 +10169,82 @@ __metadata:
optional: true
react-native-worklets-core:
optional: true
- checksum: b17d5f55a7785727292ccee0b0fbcc171ddfefdf150a61374191ac6ef07ff90ee2bd4b76ffa9ff0673c4333ee00a877a2b5aa367aa2e01967b8113cf79f83e22
+ checksum: 21f5e5e2afaca41d46df2e9d979d87a030bde11c16829a61addf1e550d07f3703c488fdafdf268da8e05c629feed1b5504b0a37102eedb41a2ac5d91df48bff8
languageName: node
linkType: hard
-"react-native@npm:0.70.9":
- version: 0.70.9
- resolution: "react-native@npm:0.70.9"
+"react-native@npm:0.76.1":
+ version: 0.76.1
+ resolution: "react-native@npm:0.76.1"
dependencies:
- "@jest/create-cache-key-function": ^27.0.1
- "@react-native-community/cli": 9.3.2
- "@react-native-community/cli-platform-android": 9.3.1
- "@react-native-community/cli-platform-ios": 9.3.0
- "@react-native/assets": 1.0.0
- "@react-native/normalize-color": 2.0.0
- "@react-native/polyfills": 2.0.0
+ "@jest/create-cache-key-function": ^29.6.3
+ "@react-native/assets-registry": 0.76.1
+ "@react-native/codegen": 0.76.1
+ "@react-native/community-cli-plugin": 0.76.1
+ "@react-native/gradle-plugin": 0.76.1
+ "@react-native/js-polyfills": 0.76.1
+ "@react-native/normalize-colors": 0.76.1
+ "@react-native/virtualized-lists": 0.76.1
abort-controller: ^3.0.0
anser: ^1.4.9
- base64-js: ^1.1.2
+ ansi-regex: ^5.0.0
+ babel-jest: ^29.7.0
+ babel-plugin-syntax-hermes-parser: ^0.23.1
+ base64-js: ^1.5.1
+ chalk: ^4.0.0
+ commander: ^12.0.0
event-target-shim: ^5.0.1
+ flow-enums-runtime: ^0.0.6
+ glob: ^7.1.1
invariant: ^2.2.4
- jsc-android: ^250230.2.1
+ jest-environment-node: ^29.6.3
+ jsc-android: ^250231.0.0
memoize-one: ^5.0.0
- metro-react-native-babel-transformer: 0.72.3
- metro-runtime: 0.72.3
- metro-source-map: 0.72.3
+ metro-runtime: ^0.81.0
+ metro-source-map: ^0.81.0
mkdirp: ^0.5.1
nullthrows: ^1.1.1
- pretty-format: ^26.5.2
+ pretty-format: ^29.7.0
promise: ^8.3.0
- react-devtools-core: 4.24.0
- react-native-codegen: ^0.70.6
- react-native-gradle-plugin: ^0.70.3
- react-refresh: ^0.4.0
- react-shallow-renderer: ^16.15.0
+ react-devtools-core: ^5.3.1
+ react-refresh: ^0.14.0
regenerator-runtime: ^0.13.2
- scheduler: ^0.22.0
- stacktrace-parser: ^0.1.3
- use-sync-external-store: ^1.0.0
+ scheduler: 0.24.0-canary-efb381bbf-20230505
+ semver: ^7.1.3
+ stacktrace-parser: ^0.1.10
whatwg-fetch: ^3.0.0
- ws: ^6.1.4
+ ws: ^6.2.3
+ yargs: ^17.6.2
peerDependencies:
- react: 18.1.0
+ "@types/react": ^18.2.6
+ react: ^18.2.0
+ peerDependenciesMeta:
+ "@types/react":
+ optional: true
bin:
react-native: cli.js
- checksum: 98073752686393d4d760c7faaafe7258bb9982ae88160cc92ae6af0b2fdf909ce662558aaf591a1cd5fc61114051886b2342bda48b4d40544b532eb22519264f
+ checksum: cee6d34890dfce2e84dd8dbc530b0915ea3fa38e648eb829983c30cf9a6efb6123a61394b3c48e93c3fa031b063c04bb5790863a6e5a00c643c84923dd356532
languageName: node
linkType: hard
-"react-navigation-header-buttons@npm:^10.0.0":
- version: 10.0.0
- resolution: "react-navigation-header-buttons@npm:10.0.0"
+"react-navigation-header-buttons@npm:^11.2.1":
+ version: 11.2.1
+ resolution: "react-navigation-header-buttons@npm:11.2.1"
dependencies:
- invariant: ">=2"
+ react-to-imperative: ^0.2.0
peerDependencies:
- "@react-navigation/native": ">=5"
- react-native: ">=0.65.0"
- checksum: 4456b8dd796ed8a8c7c2f0cac9bfa3511ade9cba7aaffec6ec40b4852648994128e7ec1f544bbc5b1303c2b3c540071caf68487c4ecd9601b734f8625b6b73fd
+ "@react-navigation/elements": ">=1"
+ "@react-navigation/native": ">=6"
+ react: "*"
+ react-native: ">=0.72.0"
+ checksum: 91eddf0ae4b7e00d09d7b4f5bea8266094fa7698f96d66c364a2d169748d1ff21215118c6c76d9b7d48ca665fa59c1a2b811bbdb93507b6a6f47a3065ce1ac01
languageName: node
linkType: hard
-"react-refresh@npm:^0.4.0":
- version: 0.4.3
- resolution: "react-refresh@npm:0.4.3"
- checksum: 2b4e4b14b54bfbdfdd6d1c16b8476151b3e61083387061d4e5923b0342c678f6d0f23705835c3a04ab151bd92551d437395da3fb52ea7461a408f457d11ac6fa
+"react-refresh@npm:^0.14.0":
+ version: 0.14.2
+ resolution: "react-refresh@npm:0.14.2"
+ checksum: 875b72ef56b147a131e33f2abd6ec059d1989854b3ff438898e4f9310bfcc73acff709445b7ba843318a953cb9424bcc2c05af2b3d80011cee28f25aef3e2ebb
languageName: node
linkType: hard
@@ -11344,42 +10260,51 @@ __metadata:
languageName: node
linkType: hard
-"react-test-renderer@npm:18.2.0":
- version: 18.2.0
- resolution: "react-test-renderer@npm:18.2.0"
+"react-test-renderer@npm:^18.3.1":
+ version: 18.3.1
+ resolution: "react-test-renderer@npm:18.3.1"
dependencies:
- react-is: ^18.2.0
+ react-is: ^18.3.1
react-shallow-renderer: ^16.15.0
- scheduler: ^0.23.0
+ scheduler: ^0.23.2
peerDependencies:
- react: ^18.2.0
- checksum: 53dfada1da1e8dd0498a5601e9eea3dc6ca23c6c2694d1cab9712faea869c11e4ce1c9a618d674cb668a668b41fb6bcf9a7b0a078cd853b1922f002fa22f42c8
+ react: ^18.3.1
+ checksum: c633558ef9af33bc68f0c4dbb5163a004c4fb9eade7bd0a7cfc0355fb367f36bd9d96533c90b7e85a146be6c525113a15f58683d269e0177ad77e2b04d4fe51c
+ languageName: node
+ linkType: hard
+
+"react-to-imperative@npm:^0.2.0":
+ version: 0.2.0
+ resolution: "react-to-imperative@npm:0.2.0"
+ peerDependencies:
+ react: "*"
+ checksum: 561adbc15f97e2677ed14d85df3e9ef855567c691327ef2abcbeb34f27477a1cc63bbd5a6244d3f1070874171f3a92c5518dbb89b0e4f0802ee75217d460448c
languageName: node
linkType: hard
-"react@npm:18.1.0":
- version: 18.1.0
- resolution: "react@npm:18.1.0"
+"react@npm:18.3.1":
+ version: 18.3.1
+ resolution: "react@npm:18.3.1"
dependencies:
loose-envify: ^1.1.0
- checksum: 20592b045e82ce809c0fd76c63cb70a11a5e0905a569a08874043097fc1eab759e3a7681d36b3246464e97bab021c4a0d6490ee2fb79c55d176b94e8890ad93a
+ checksum: 283e8c5efcf37802c9d1ce767f302dd569dd97a70d9bb8c7be79a789b9902451e0d16334b05d73299b20f048cbc3c7d288bbbde10b701fa194e2089c237dbea3
languageName: node
linkType: hard
-"readable-stream@npm:^3.4.0, readable-stream@npm:^3.6.0":
- version: 3.6.0
- resolution: "readable-stream@npm:3.6.0"
+"readable-stream@npm:^3.4.0":
+ version: 3.6.2
+ resolution: "readable-stream@npm:3.6.2"
dependencies:
inherits: ^2.0.3
string_decoder: ^1.1.1
util-deprecate: ^1.0.1
- checksum: 937bedd29ac8a68331666291922bea892fa2be1a33269e582de9f844a2002f146cf831e39cd49fe6a378d3f0c27358f259ed0e20d20f0bdc6a3f8fc21fce42dc
+ checksum: e37be5c79c376fdd088a45fa31ea2e423e5d48854be7a22a58869b4e84d25047b193f6acb54f1012331e1bcd667ffb569c01b99d36b0bd59658fb33f513511b7
languageName: node
linkType: hard
"readable-stream@npm:~2.3.6":
- version: 2.3.7
- resolution: "readable-stream@npm:2.3.7"
+ version: 2.3.8
+ resolution: "readable-stream@npm:2.3.8"
dependencies:
core-util-is: ~1.0.0
inherits: ~2.0.3
@@ -11388,7 +10313,7 @@ __metadata:
safe-buffer: ~5.1.1
string_decoder: ~1.1.1
util-deprecate: ~1.0.1
- checksum: 1708755e6cf9daff6ff60fa5b4575636472289c5b95d38058a91f94732b8d024a940a0d4d955639195ce42c22cab16973ee8fea8deedd24b5fec3dd596465f86
+ checksum: 7efdb01f3853bc35ac62ea25493567bf588773213f5f4a79f9c365e1ad13bab845ac0dae7bc946270dc40c3929483228415e92a3fc600cc7e4548992f41ee3fa
languageName: node
linkType: hard
@@ -11436,15 +10361,6 @@ __metadata:
languageName: node
linkType: hard
-"regenerate-unicode-properties@npm:^10.1.0":
- version: 10.1.0
- resolution: "regenerate-unicode-properties@npm:10.1.0"
- dependencies:
- regenerate: ^1.4.2
- checksum: 17818ea6f67c5a4884b9e18842edc4b3838a12f62e24f843e80fbb6d8cb649274b5b86d98bb02075074e02021850e597a92ff6b58bbe5caba4bf5fd8e4e38b56
- languageName: node
- linkType: hard
-
"regenerate-unicode-properties@npm:^10.2.0":
version: 10.2.0
resolution: "regenerate-unicode-properties@npm:10.2.0"
@@ -11485,14 +10401,14 @@ __metadata:
linkType: hard
"regexp.prototype.flags@npm:^1.5.2":
- version: 1.5.2
- resolution: "regexp.prototype.flags@npm:1.5.2"
+ version: 1.5.3
+ resolution: "regexp.prototype.flags@npm:1.5.3"
dependencies:
- call-bind: ^1.0.6
+ call-bind: ^1.0.7
define-properties: ^1.2.1
es-errors: ^1.3.0
- set-function-name: ^2.0.1
- checksum: 0f3fc4f580d9c349f8b560b012725eb9c002f36daa0041b3fbf6f4238cb05932191a4d7d5db3b5e2caa336d5150ad0402ed2be81f711f9308fe7e1a9bf9bd552
+ set-function-name: ^2.0.2
+ checksum: e1a7c7dc42cc91abf73e47a269c4b3a8f225321b7f617baa25821f6a123a91d23a73b5152f21872c566e699207e1135d075d2251cd3e84cc96d82a910adf6020
languageName: node
linkType: hard
@@ -11503,20 +10419,6 @@ __metadata:
languageName: node
linkType: hard
-"regexpu-core@npm:^5.3.1":
- version: 5.3.2
- resolution: "regexpu-core@npm:5.3.2"
- dependencies:
- "@babel/regjsgen": ^0.8.0
- regenerate: ^1.4.2
- regenerate-unicode-properties: ^10.1.0
- regjsparser: ^0.9.1
- unicode-match-property-ecmascript: ^2.0.0
- unicode-match-property-value-ecmascript: ^2.1.0
- checksum: 7945d5ab10c8bbed3ca383d4274687ea825aee4ab93a9c51c6e31e1365edd5ea807f6908f800ba017b66c462944ba68011164e7055207747ab651f8111ef3770
- languageName: node
- linkType: hard
-
"regexpu-core@npm:^6.1.1":
version: 6.1.1
resolution: "regexpu-core@npm:6.1.1"
@@ -11549,17 +10451,6 @@ __metadata:
languageName: node
linkType: hard
-"regjsparser@npm:^0.9.1":
- version: 0.9.1
- resolution: "regjsparser@npm:0.9.1"
- dependencies:
- jsesc: ~0.5.0
- bin:
- regjsparser: bin/parser
- checksum: fe44fcf19a99fe4f92809b0b6179530e5ef313ff7f87df143b08ce9a2eb3c4b6189b43735d645be6e8f4033bfb015ed1ca54f0583bc7561bed53fd379feb8225
- languageName: node
- linkType: hard
-
"require-directory@npm:^2.1.1":
version: 2.1.1
resolution: "require-directory@npm:2.1.1"
@@ -11687,7 +10578,7 @@ __metadata:
languageName: node
linkType: hard
-"rimraf@npm:^2.5.4, rimraf@npm:^2.6.3":
+"rimraf@npm:^2.6.3":
version: 2.7.1
resolution: "rimraf@npm:2.7.1"
dependencies:
@@ -11709,15 +10600,6 @@ __metadata:
languageName: node
linkType: hard
-"rimraf@npm:~2.2.6":
- version: 2.2.8
- resolution: "rimraf@npm:2.2.8"
- bin:
- rimraf: ./bin.js
- checksum: 5d3ce4c1e874d184dbd416371730819f565ae6bd920f61c742a0704d6e23ae2c95f45f0d8bc20a4f9068342101f9c1656906fb086a18497f4a0f03db3c1610fa
- languageName: node
- linkType: hard
-
"rimraf@npm:~2.6.2":
version: 2.6.3
resolution: "rimraf@npm:2.6.3"
@@ -11750,20 +10632,20 @@ __metadata:
languageName: node
linkType: hard
-"safe-buffer@npm:5.1.2, safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1":
- version: 5.1.2
- resolution: "safe-buffer@npm:5.1.2"
- checksum: 780ba6b5d99cc9a40f7b951d47152297d0e260f0df01472a1b99d4889679a4b94a13d644f7dbc4f022572f09ae9005fa2fbb93bbbd83643316f365a3e9a45b21
- languageName: node
- linkType: hard
-
-"safe-buffer@npm:~5.2.0":
+"safe-buffer@npm:5.2.1, safe-buffer@npm:~5.2.0":
version: 5.2.1
resolution: "safe-buffer@npm:5.2.1"
checksum: 6501914237c0a86e9675d4e51d89ca3c21ffd6a31642efeba25ad65720bce6921c9e7e974e5be91a786b25aa058b5303285d3c15dbabf983a919f5f630d349f3
languageName: node
linkType: hard
+"safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1":
+ version: 5.1.2
+ resolution: "safe-buffer@npm:5.1.2"
+ checksum: 780ba6b5d99cc9a40f7b951d47152297d0e260f0df01472a1b99d4889679a4b94a13d644f7dbc4f022572f09ae9005fa2fbb93bbbd83643316f365a3e9a45b21
+ languageName: node
+ linkType: hard
+
"safe-regex-test@npm:^1.0.3":
version: 1.0.3
resolution: "safe-regex-test@npm:1.0.3"
@@ -11782,16 +10664,16 @@ __metadata:
languageName: node
linkType: hard
-"scheduler@npm:^0.22.0":
- version: 0.22.0
- resolution: "scheduler@npm:0.22.0"
+"scheduler@npm:0.24.0-canary-efb381bbf-20230505":
+ version: 0.24.0-canary-efb381bbf-20230505
+ resolution: "scheduler@npm:0.24.0-canary-efb381bbf-20230505"
dependencies:
loose-envify: ^1.1.0
- checksum: db3ee5927e66048c97ab3565ee91d7ca5036e75f9600953c6ab2f6fb80938df95d72be8ac077329c2f3f1411d4d88e31cc9f83440540e5d4a881f6d84b0ed6a6
+ checksum: 4fb594d64c692199117160bbd1a5261f03287f8ec59d9ca079a772e5fbb3139495ebda843324d7c8957c07390a0825acb6f72bd29827fb9e155d793db6c2e2bc
languageName: node
linkType: hard
-"scheduler@npm:^0.23.0":
+"scheduler@npm:^0.23.2":
version: 0.23.2
resolution: "scheduler@npm:0.23.2"
dependencies:
@@ -11800,7 +10682,17 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:^5.5.0, semver@npm:^5.6.0":
+"selfsigned@npm:^2.4.1":
+ version: 2.4.1
+ resolution: "selfsigned@npm:2.4.1"
+ dependencies:
+ "@types/node-forge": ^1.3.0
+ node-forge: ^1
+ checksum: 521829ec36ea042f7e9963bf1da2ed040a815cf774422544b112ec53b7edc0bc50a0f8cc2ae7aa6cc19afa967c641fd96a15de0fc650c68651e41277d2e1df09
+ languageName: node
+ linkType: hard
+
+"semver@npm:^5.6.0":
version: 5.7.2
resolution: "semver@npm:5.7.2"
bin:
@@ -11809,7 +10701,7 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:^6.0.0, semver@npm:^6.1.0, semver@npm:^6.1.1, semver@npm:^6.1.2, semver@npm:^6.3.0, semver@npm:^6.3.1":
+"semver@npm:^6.1.0, semver@npm:^6.3.0, semver@npm:^6.3.1":
version: 6.3.1
resolution: "semver@npm:6.3.1"
bin:
@@ -11818,18 +10710,7 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.5.3, semver@npm:^7.5.4":
- version: 7.6.0
- resolution: "semver@npm:7.6.0"
- dependencies:
- lru-cache: ^6.0.0
- bin:
- semver: bin/semver.js
- checksum: fbfe717094ace0aa8d6332d7ef5ce727259815bd8d8815700853f4faf23aacbd7192522f0dc5af6df52ef4fa85a355ebd2f5d39f554bd028200d6cf481ab9b53
- languageName: node
- linkType: hard
-
-"semver@npm:^7.6.3":
+"semver@npm:^7.1.3, semver@npm:^7.3.5, semver@npm:^7.5.2, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.3":
version: 7.6.3
resolution: "semver@npm:7.6.3"
bin:
@@ -11911,13 +10792,6 @@ __metadata:
languageName: node
linkType: hard
-"setimmediate@npm:^1.0.5":
- version: 1.0.5
- resolution: "setimmediate@npm:1.0.5"
- checksum: 5bae81bfdbfbd0ce992893286d49c9693c82b1bcc00dcaaf3a09c8f428fdeacf4190c013598b81875dfac2b08a572422db7df779a99332d0fce186d15a3e4d49
- languageName: node
- linkType: hard
-
"setprototypeof@npm:1.2.0":
version: 1.2.0
resolution: "setprototypeof@npm:1.2.0"
@@ -11941,15 +10815,6 @@ __metadata:
languageName: node
linkType: hard
-"shebang-command@npm:^1.2.0":
- version: 1.2.0
- resolution: "shebang-command@npm:1.2.0"
- dependencies:
- shebang-regex: ^1.0.0
- checksum: 7b20dbf04112c456b7fc258622dafd566553184ac9b6938dd30b943b065b21dabd3776460df534cc02480db5e1b6aec44700d985153a3da46e7db7f9bd21326d
- languageName: node
- linkType: hard
-
"shebang-command@npm:^2.0.0":
version: 2.0.0
resolution: "shebang-command@npm:2.0.0"
@@ -11959,13 +10824,6 @@ __metadata:
languageName: node
linkType: hard
-"shebang-regex@npm:^1.0.0":
- version: 1.0.0
- resolution: "shebang-regex@npm:1.0.0"
- checksum: 9abc45dee35f554ae9453098a13fdc2f1730e525a5eb33c51f096cc31f6f10a4b38074c1ebf354ae7bffa7229506083844008dfc3bb7818228568c0b2dc1fff2
- languageName: node
- linkType: hard
-
"shebang-regex@npm:^3.0.0":
version: 3.0.0
resolution: "shebang-regex@npm:3.0.0"
@@ -11974,9 +10832,9 @@ __metadata:
linkType: hard
"shell-quote@npm:^1.6.1, shell-quote@npm:^1.7.3":
- version: 1.8.0
- resolution: "shell-quote@npm:1.8.0"
- checksum: 651a201a1af981d49326fac8c005bbe2af97bc56fcabded0b22944c08eea0ba3bccfa497168d4bcb70508ca5802fe1cb83ca89a7e121eb0701d4c8b1d6c71a5d
+ version: 1.8.1
+ resolution: "shell-quote@npm:1.8.1"
+ checksum: 8cec6fd827bad74d0a49347057d40dfea1e01f12a6123bf82c4649f3ef152fc2bc6d6176e6376bffcd205d9d0ccb4f1f9acae889384d20baff92186f01ea455a
languageName: node
linkType: hard
@@ -11992,13 +10850,20 @@ __metadata:
languageName: node
linkType: hard
-"signal-exit@npm:^3.0.0, signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7":
+"signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7":
version: 3.0.7
resolution: "signal-exit@npm:3.0.7"
checksum: 25d272fa73e146048565e08f3309d5b942c1979a6f4a58a8c59d5fa299728e9c2fcd1a759ec870863b1fd38653670240cd420dad2ad9330c71f36608a6a1c912
languageName: node
linkType: hard
+"signal-exit@npm:^4.0.1":
+ version: 4.1.0
+ resolution: "signal-exit@npm:4.1.0"
+ checksum: 41602dce540e46d599edba9d9860193398d135f7ff72cab629db5171516cfae628d21e7bfccde1bbfdf11c48726bc2a6d1a8fb8701125852fbfda7cf19c6aa83
+ languageName: node
+ linkType: hard
+
"simple-swizzle@npm:^0.2.2":
version: 0.2.2
resolution: "simple-swizzle@npm:0.2.2"
@@ -12057,35 +10922,28 @@ __metadata:
languageName: node
linkType: hard
-"socks-proxy-agent@npm:^7.0.0":
- version: 7.0.0
- resolution: "socks-proxy-agent@npm:7.0.0"
+"socks-proxy-agent@npm:^8.0.3":
+ version: 8.0.4
+ resolution: "socks-proxy-agent@npm:8.0.4"
dependencies:
- agent-base: ^6.0.2
- debug: ^4.3.3
- socks: ^2.6.2
- checksum: b859f7eb8e96ec2c4186beea233ae59c02404094f3eb009946836af27d6e5c1627d1975a69b4d2e20611729ed543b6db3ae8481eb38603433c50d0345c987600
+ agent-base: ^7.1.1
+ debug: ^4.3.4
+ socks: ^2.8.3
+ checksum: 345593bb21b95b0508e63e703c84da11549f0a2657d6b4e3ee3612c312cb3a907eac10e53b23ede3557c6601d63252103494caa306b66560f43af7b98f53957a
languageName: node
linkType: hard
-"socks@npm:^2.6.2":
- version: 2.7.0
- resolution: "socks@npm:2.7.0"
+"socks@npm:^2.8.3":
+ version: 2.8.3
+ resolution: "socks@npm:2.8.3"
dependencies:
- ip: ^2.0.0
+ ip-address: ^9.0.5
smart-buffer: ^4.2.0
- checksum: 5cc9ea8d0f1fae370d7ac319b5dd8973fa24bc58d0194a8140687fd10be53a1f348b1b02b97932ce67ddae0edf459e5da0fe4b13cd5dd22ce46ac4d1a83239ec
- languageName: node
- linkType: hard
-
-"source-map-js@npm:^1.0.1":
- version: 1.2.0
- resolution: "source-map-js@npm:1.2.0"
- checksum: 7e5f896ac10a3a50fe2898e5009c58ff0dc102dcb056ed27a354623a0ece8954d4b2649e1a1b2b52ef2e161d26f8859c7710350930751640e71e374fe2d321a4
+ checksum: d54a52bf9325165770b674a67241143a3d8b4e4c8884560c4e0e078aace2a728dffc7f70150660f51b85797c4e1a3b82f9b7aa25e0a0ceae1a243365da5c51a7
languageName: node
linkType: hard
-"source-map-js@npm:^1.2.0":
+"source-map-js@npm:^1.0.1, source-map-js@npm:^1.2.0":
version: 1.2.1
resolution: "source-map-js@npm:1.2.1"
checksum: 7bda1fc4c197e3c6ff17de1b8b2c20e60af81b63a52cb32ec5a5d67a20a7d42651e2cb34ebe93833c5a2a084377e17455854fee3e21e7925c64a51b6a52b0faf
@@ -12102,13 +10960,13 @@ __metadata:
languageName: node
linkType: hard
-"source-map-support@npm:^0.5.16":
- version: 0.5.20
- resolution: "source-map-support@npm:0.5.20"
+"source-map-support@npm:^0.5.16, source-map-support@npm:~0.5.20":
+ version: 0.5.21
+ resolution: "source-map-support@npm:0.5.21"
dependencies:
buffer-from: ^1.0.0
source-map: ^0.6.0
- checksum: 84a909248b1b7971d37fde1f2488a5e3b7aa2d676f92373a8bddcf5b059574d09971b82d2911ae91feb8245f9f2b0e0766f73b9c51ffb26c0fd2df5d44938307
+ checksum: 9ee09942f415e0f721d6daad3917ec1516af746a8120bba7bb56278707a37f1eb8642bde456e98454b8a885023af81a16e646869975f06afc1a711fb90484e7d
languageName: node
linkType: hard
@@ -12126,13 +10984,6 @@ __metadata:
languageName: node
linkType: hard
-"source-map@npm:^0.7.3":
- version: 0.7.3
- resolution: "source-map@npm:0.7.3"
- checksum: 7d2ddb51f3d2451847692a9ac7808da2b2b3bf7aef92ece33128919040a7e74d9a5edfde7a781f035c974deff876afaf83f2e30484faffffb86484e7408f5d7c
- languageName: node
- linkType: hard
-
"split-on-first@npm:^1.0.0":
version: 1.1.0
resolution: "split-on-first@npm:1.1.0"
@@ -12140,6 +10991,13 @@ __metadata:
languageName: node
linkType: hard
+"sprintf-js@npm:^1.1.3":
+ version: 1.1.3
+ resolution: "sprintf-js@npm:1.1.3"
+ checksum: 09270dc4f30d479e666aee820eacd9e464215cdff53848b443964202bf4051490538e5dd1b42e1a65cf7296916ca17640aebf63dae9812749c7542ee5f288dec
+ languageName: node
+ linkType: hard
+
"sprintf-js@npm:~1.0.2":
version: 1.0.3
resolution: "sprintf-js@npm:1.0.3"
@@ -12147,32 +11005,32 @@ __metadata:
languageName: node
linkType: hard
-"ssri@npm:^9.0.0":
- version: 9.0.1
- resolution: "ssri@npm:9.0.1"
+"ssri@npm:^10.0.0":
+ version: 10.0.6
+ resolution: "ssri@npm:10.0.6"
dependencies:
- minipass: ^3.1.1
- checksum: c5d153ce03b5980d683ecaa4d805f6a03d8dc545736213803e168a1907650c46c08a4e5ce6d670a0205482b35c35713d9d286d9133bdd79853a406e22ad81f04
+ minipass: ^7.0.3
+ checksum: e5a1e23a4057a86a97971465418f22ea89bd439ac36ade88812dd920e4e61873e8abd6a9b72a03a67ef50faa00a2daf1ab745c5a15b46d03e0544a0296354227
languageName: node
linkType: hard
"stack-utils@npm:^2.0.3":
- version: 2.0.5
- resolution: "stack-utils@npm:2.0.5"
+ version: 2.0.6
+ resolution: "stack-utils@npm:2.0.6"
dependencies:
escape-string-regexp: ^2.0.0
- checksum: 059f828eed5b03b963e8200529c27bd92b105f2cac9dffc9edcbc739ea8fa108e4ec45d0da257d8e0f7b5ac98db5643a0787e5c25ceab1396f7123e1ee15a086
+ checksum: 651c9f87667e077584bbe848acaecc6049bc71979f1e9a46c7b920cad4431c388df0f51b8ad7cfd6eed3db97a2878d0fc8b3122979439ea8bac29c61c95eec8a
languageName: node
linkType: hard
-"stackframe@npm:^1.1.1":
- version: 1.2.0
- resolution: "stackframe@npm:1.2.0"
- checksum: b3ad9e9884eb4555e4be0c1359d700c10f2c9d01cddcd67f574bb2f99cec57b0d1b8e18ebbf68d633e904ba29830cae9b601545fb8b97724779a784f79a2586c
+"stackframe@npm:^1.3.4":
+ version: 1.3.4
+ resolution: "stackframe@npm:1.3.4"
+ checksum: 18410f7a1e0c5d211a4effa83bdbf24adbe8faa8c34db52e1cd3e89837518c592be60b60d8b7270ac53eeeb8b807cd11b399a41667f6c9abb41059c3ccc8a989
languageName: node
linkType: hard
-"stacktrace-parser@npm:^0.1.3":
+"stacktrace-parser@npm:^0.1.10":
version: 0.1.10
resolution: "stacktrace-parser@npm:0.1.10"
dependencies:
@@ -12202,13 +11060,6 @@ __metadata:
languageName: node
linkType: hard
-"string-hash-64@npm:^1.0.3":
- version: 1.0.3
- resolution: "string-hash-64@npm:1.0.3"
- checksum: ac175f71b383af1487ab16b4cc1b42b5302bea08bdf1cc1ea04bacb293fb9b35afc6c58260e1fc728627e7265519da01976822a188d493d7e7625b9628173ea3
- languageName: node
- linkType: hard
-
"string-length@npm:^4.0.1":
version: 4.0.2
resolution: "string-length@npm:4.0.2"
@@ -12226,7 +11077,7 @@ __metadata:
languageName: node
linkType: hard
-"string-width@npm:^1.0.2 || 2 || 3 || 4, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3":
+"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3":
version: 4.2.3
resolution: "string-width@npm:4.2.3"
dependencies:
@@ -12237,7 +11088,29 @@ __metadata:
languageName: node
linkType: hard
-"string.prototype.matchall@npm:^4.0.10":
+"string-width@npm:^5.0.1, string-width@npm:^5.1.2":
+ version: 5.1.2
+ resolution: "string-width@npm:5.1.2"
+ dependencies:
+ eastasianwidth: ^0.2.0
+ emoji-regex: ^9.2.2
+ strip-ansi: ^7.0.1
+ checksum: ab9c4264443d35b8b923cbdd513a089a60de339216d3b0ed3be3ba57d6880e1a192b70ae17225f764d7adbf5994e9bb8df253a944736c15a0240eff553c678ca
+ languageName: node
+ linkType: hard
+
+"string.prototype.includes@npm:^2.0.1":
+ version: 2.0.1
+ resolution: "string.prototype.includes@npm:2.0.1"
+ dependencies:
+ call-bind: ^1.0.7
+ define-properties: ^1.2.1
+ es-abstract: ^1.23.3
+ checksum: 25ce9c9b49128352a2618fbe8758b46f945817a58a4420f4799419e40a8d28f116e176c7590d767d5327a61e75c8f32c86171063f48e389b9fdd325f1bd04ee5
+ languageName: node
+ linkType: hard
+
+"string.prototype.matchall@npm:^4.0.11":
version: 4.0.11
resolution: "string.prototype.matchall@npm:4.0.11"
dependencies:
@@ -12257,6 +11130,16 @@ __metadata:
languageName: node
linkType: hard
+"string.prototype.repeat@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "string.prototype.repeat@npm:1.0.0"
+ dependencies:
+ define-properties: ^1.1.3
+ es-abstract: ^1.17.5
+ checksum: 94c7978566cffa1327d470fd924366438af9b04b497c43a9805e476e2e908aa37a1fd34cc0911156c17556dab62159d12c7b92b3cc304c3e1281fe4c8e668f40
+ languageName: node
+ linkType: hard
+
"string.prototype.trim@npm:^1.2.9":
version: 1.2.9
resolution: "string.prototype.trim@npm:1.2.9"
@@ -12280,7 +11163,7 @@ __metadata:
languageName: node
linkType: hard
-"string.prototype.trimstart@npm:^1.0.7":
+"string.prototype.trimstart@npm:^1.0.8":
version: 1.0.8
resolution: "string.prototype.trimstart@npm:1.0.8"
dependencies:
@@ -12309,6 +11192,15 @@ __metadata:
languageName: node
linkType: hard
+"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1":
+ version: 6.0.1
+ resolution: "strip-ansi@npm:6.0.1"
+ dependencies:
+ ansi-regex: ^5.0.1
+ checksum: 1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952
+ languageName: node
+ linkType: hard
+
"strip-ansi@npm:^5.0.0, strip-ansi@npm:^5.2.0":
version: 5.2.0
resolution: "strip-ansi@npm:5.2.0"
@@ -12318,12 +11210,12 @@ __metadata:
languageName: node
linkType: hard
-"strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1":
- version: 6.0.1
- resolution: "strip-ansi@npm:6.0.1"
+"strip-ansi@npm:^7.0.1":
+ version: 7.1.0
+ resolution: "strip-ansi@npm:7.1.0"
dependencies:
- ansi-regex: ^5.0.1
- checksum: 1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952
+ ansi-regex: ^6.0.1
+ checksum: a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4
languageName: node
linkType: hard
@@ -12341,13 +11233,6 @@ __metadata:
languageName: node
linkType: hard
-"strip-eof@npm:^1.0.0":
- version: 1.0.0
- resolution: "strip-eof@npm:1.0.0"
- checksum: f336beed8622f7c1dd02f2cbd8422da9208fae81daf184f73656332899978919d5c0ca84dc6cfc49ad1fc4dd7badcde5412a063cf4e0d7f8ed95a13a63f68f45
- languageName: node
- linkType: hard
-
"strip-final-newline@npm:^2.0.0":
version: 2.0.0
resolution: "strip-final-newline@npm:2.0.0"
@@ -12371,7 +11256,14 @@ __metadata:
languageName: node
linkType: hard
-"styled-components@npm:^6.1.8":
+"strnum@npm:^1.0.5":
+ version: 1.0.5
+ resolution: "strnum@npm:1.0.5"
+ checksum: 64fb8cc2effbd585a6821faa73ad97d4b553c8927e49086a162ffd2cc818787643390b89d567460a8e74300148d11ac052e21c921ef2049f2987f4b1b89a7ff1
+ languageName: node
+ linkType: hard
+
+"styled-components@npm:^6.1.13":
version: 6.1.13
resolution: "styled-components@npm:6.1.13"
dependencies:
@@ -12405,15 +11297,6 @@ __metadata:
languageName: node
linkType: hard
-"supports-color@npm:^5.3.0":
- version: 5.5.0
- resolution: "supports-color@npm:5.5.0"
- dependencies:
- has-flag: ^3.0.0
- checksum: 6ae5ff319bfbb021f8a86da8ea1f8db52fac8bd4d499492e30ec17095b58af11f0c55f8577390a749b1c4dde691b6a0315dab78f5f54c9b3d83f8fb5905c1c05
- languageName: node
- linkType: hard
-
"supports-color@npm:^7.1.0":
version: 7.2.0
resolution: "supports-color@npm:7.2.0"
@@ -12447,8 +11330,8 @@ __metadata:
linkType: hard
"svgo@npm:^3.0.2":
- version: 3.2.0
- resolution: "svgo@npm:3.2.0"
+ version: 3.3.2
+ resolution: "svgo@npm:3.3.2"
dependencies:
"@trysound/sax": 0.2.0
commander: ^7.2.0
@@ -12459,11 +11342,11 @@ __metadata:
picocolors: ^1.0.0
bin:
svgo: ./bin/svgo
- checksum: 28fa9061ccbcf2e3616d48d1feb613aaa05f8f290a329beb0e585914f1864385152934a7d4d683a4609fafbae3d51666633437c359c5c5ef74fb58ad09092a7c
+ checksum: a6badbd3d1d6dbb177f872787699ab34320b990d12e20798ecae915f0008796a0f3c69164f1485c9def399e0ce0a5683eb4a8045e51a5e1c364bb13a0d9f79e1
languageName: node
linkType: hard
-"tar@npm:^6.1.11, tar@npm:^6.1.2":
+"tar@npm:^6.1.11, tar@npm:^6.2.1":
version: 6.2.1
resolution: "tar@npm:6.2.1"
dependencies:
@@ -12477,16 +11360,6 @@ __metadata:
languageName: node
linkType: hard
-"temp@npm:0.8.3":
- version: 0.8.3
- resolution: "temp@npm:0.8.3"
- dependencies:
- os-tmpdir: ^1.0.0
- rimraf: ~2.2.6
- checksum: 649453e503d073f5b8fc7f8a15f3847cbc949a4b41a07e75a43562de1d87a880211f5487b9e7e32ebc8b26140e4907389d22fd1ec74987a4f6c930e8ae9d3dbb
- languageName: node
- linkType: hard
-
"temp@npm:^0.8.4":
version: 0.8.4
resolution: "temp@npm:0.8.4"
@@ -12496,6 +11369,20 @@ __metadata:
languageName: node
linkType: hard
+"terser@npm:^5.15.0":
+ version: 5.36.0
+ resolution: "terser@npm:5.36.0"
+ dependencies:
+ "@jridgewell/source-map": ^0.3.3
+ acorn: ^8.8.2
+ commander: ^2.20.0
+ source-map-support: ~0.5.20
+ bin:
+ terser: bin/terser
+ checksum: f4ed2bead19f64789ddcfb85b7cef78f3942f967b8890c54f57d1e35bc7d547d551c6a4c32210bce6ba45b1c738314bbfac6acbc6c762a45cd171777d0c120d9
+ languageName: node
+ linkType: hard
+
"test-exclude@npm:^6.0.0":
version: 6.0.0
resolution: "test-exclude@npm:6.0.0"
@@ -12577,16 +11464,16 @@ __metadata:
languageName: node
linkType: hard
-"ts-api-utils@npm:^1.0.1":
- version: 1.3.0
- resolution: "ts-api-utils@npm:1.3.0"
+"ts-api-utils@npm:^1.0.1, ts-api-utils@npm:^1.3.0":
+ version: 1.4.0
+ resolution: "ts-api-utils@npm:1.4.0"
peerDependencies:
typescript: ">=4.2.0"
- checksum: f54a0ba9ed56ce66baea90a3fa087a484002e807f28a8ccb2d070c75e76bde64bd0f6dce98b3802834156306050871b67eec325cb4e918015a360a3f0868c77c
+ checksum: 1b2bfa50ea52771d564bb143bb69010d25cda03ed573095fbac9b86f717012426443af6647e00e3db70fca60360482a30c1be7cf73c3521c321f6bf5e3594ea0
languageName: node
linkType: hard
-"ts-jest@npm:^29.1.2":
+"ts-jest@npm:^29.2.5":
version: 29.2.5
resolution: "ts-jest@npm:29.2.5"
dependencies:
@@ -12673,7 +11560,7 @@ __metadata:
languageName: node
linkType: hard
-"tslib@npm:2.6.2, tslib@npm:^2.0.1, tslib@npm:^2.0.3":
+"tslib@npm:2.6.2":
version: 2.6.2
resolution: "tslib@npm:2.6.2"
checksum: e03a8a4271152c8b26604ed45535954c0a45296e32445b4b87f8a5abdb2421f40b59b4ca437c4346af0f28179780d604094eb64546bee2019d903d01c6c19bdb
@@ -12687,6 +11574,13 @@ __metadata:
languageName: node
linkType: hard
+"tslib@npm:^2.0.1, tslib@npm:^2.0.3":
+ version: 2.8.1
+ resolution: "tslib@npm:2.8.1"
+ checksum: 9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62
+ languageName: node
+ linkType: hard
+
"tsutils@npm:^3.21.0":
version: 3.21.0
resolution: "tsutils@npm:3.21.0"
@@ -12773,7 +11667,7 @@ __metadata:
languageName: node
linkType: hard
-"typed-array-length@npm:^1.0.5":
+"typed-array-length@npm:^1.0.6":
version: 1.0.6
resolution: "typed-array-length@npm:1.0.6"
dependencies:
@@ -12787,35 +11681,23 @@ __metadata:
languageName: node
linkType: hard
-"typescript@npm:^5.4.3":
- version: 5.4.3
- resolution: "typescript@npm:5.4.3"
+"typescript@npm:^5.6.3":
+ version: 5.6.3
+ resolution: "typescript@npm:5.6.3"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
- checksum: 22443a8760c3668e256c0b34b6b45c359ef6cecc10c42558806177a7d500ab1a7d7aac1f976d712e26989ddf6731d2fbdd3212b7c73290a45127c1c43ba2005a
+ checksum: 44f61d3fb15c35359bc60399cb8127c30bae554cd555b8e2b46d68fa79d680354b83320ad419ff1b81a0bdf324197b29affe6cc28988cd6a74d4ac60c94f9799
languageName: node
linkType: hard
-"typescript@patch:typescript@^5.4.3#~builtin":
- version: 5.4.3
- resolution: "typescript@patch:typescript@npm%3A5.4.3#~builtin::version=5.4.3&hash=f456af"
+"typescript@patch:typescript@^5.6.3#~builtin":
+ version: 5.6.3
+ resolution: "typescript@patch:typescript@npm%3A5.6.3#~builtin::version=5.6.3&hash=f456af"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
- checksum: 1b50712759f1e4bf4bf6fe7e662235358b716972dec8aa9ca117dee531dbd7b417f5fe28f74d347b4447eec09a200c0372fe9cf1aad2e15a2bcf4a1a99db0820
- 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: 165b19b331f72aae4a0eeb4350606d8e5d39c82315ef8eaa8d3a0706d16be9282f6055b5e1e46914422b3e56520740fc68cec40a0b06e7fd6905b1f680528487
+ checksum: ac8307bb06bbfd08ae7137da740769b7d8c3ee5943188743bb622c621f8ad61d244767480f90fbd840277fbf152d8932aa20c33f867dea1bb5e79b187ca1a92f
languageName: node
linkType: hard
@@ -12831,14 +11713,7 @@ __metadata:
languageName: node
linkType: hard
-"undici-types@npm:~5.26.4":
- version: 5.26.5
- resolution: "undici-types@npm:5.26.5"
- checksum: bb673d7876c2d411b6eb6c560e0c571eef4a01c1c19925175d16e3a30c4c428181fb8d7ae802a261f283e4166a0ac435e2f505743aa9e45d893f9a3df017b501
- languageName: node
- linkType: hard
-
-"undici-types@npm:~6.19.2":
+"undici-types@npm:~6.19.2, undici-types@npm:~6.19.8":
version: 6.19.8
resolution: "undici-types@npm:6.19.8"
checksum: 078afa5990fba110f6824823ace86073b4638f1d5112ee26e790155f481f2a868cc3e0615505b6f4282bdf74a3d8caad715fd809e870c2bb0704e3ea6082f344
@@ -12846,9 +11721,9 @@ __metadata:
linkType: hard
"unicode-canonical-property-names-ecmascript@npm:^2.0.0":
- version: 2.0.0
- resolution: "unicode-canonical-property-names-ecmascript@npm:2.0.0"
- checksum: 0fe812641bcfa3ae433025178a64afb5d9afebc21a922dafa7cba971deebb5e4a37350423890750132a85c936c290fb988146d0b1bd86838ad4897f4fc5bd0de
+ version: 2.0.1
+ resolution: "unicode-canonical-property-names-ecmascript@npm:2.0.1"
+ checksum: f83bc492fdbe662860795ef37a85910944df7310cac91bd778f1c19ebc911e8b9cde84e703de631e5a2fcca3905e39896f8fc5fc6a44ddaf7f4aff1cda24f381
languageName: node
linkType: hard
@@ -12863,34 +11738,34 @@ __metadata:
linkType: hard
"unicode-match-property-value-ecmascript@npm:^2.1.0":
- version: 2.1.0
- resolution: "unicode-match-property-value-ecmascript@npm:2.1.0"
- checksum: f5b9499b9e0ffdc6027b744d528f17ec27dd7c15da03254ed06851feec47e0531f20d410910c8a49af4a6a190f4978413794c8d75ce112950b56d583b5d5c7f2
+ version: 2.2.0
+ resolution: "unicode-match-property-value-ecmascript@npm:2.2.0"
+ checksum: 1d0a2deefd97974ddff5b7cb84f9884177f4489928dfcebb4b2b091d6124f2739df51fc6ea15958e1b5637ac2a24cff9bf21ea81e45335086ac52c0b4c717d6d
languageName: node
linkType: hard
"unicode-property-aliases-ecmascript@npm:^2.0.0":
- version: 2.0.0
- resolution: "unicode-property-aliases-ecmascript@npm:2.0.0"
- checksum: db7f7ae188ce1a59b133a2c97021aebe30acc18a55f41074d126dcce5ac9d789dbd3ce7947e391b23db27f969251037b6ae05871d036aaa6cc0a6510c429aa1c
+ version: 2.1.0
+ resolution: "unicode-property-aliases-ecmascript@npm:2.1.0"
+ checksum: 50ded3f8c963c7785e48c510a3b7c6bc4e08a579551489aa0349680a35b1ceceec122e33b2b6c1b579d0be2250f34bb163ac35f5f8695fe10bbc67fb757f0af8
languageName: node
linkType: hard
-"unique-filename@npm:^1.1.1":
- version: 1.1.1
- resolution: "unique-filename@npm:1.1.1"
+"unique-filename@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "unique-filename@npm:3.0.0"
dependencies:
- unique-slug: ^2.0.0
- checksum: d005bdfaae6894da8407c4de2b52f38b3c58ec86e79fc2ee19939da3085374413b073478ec54e721dc8e32b102cf9e50d0481b8331abdc62202e774b789ea874
+ unique-slug: ^4.0.0
+ checksum: 6363e40b2fa758eb5ec5e21b3c7fb83e5da8dcfbd866cc0c199d5534c42f03b9ea9ab069769cc388e1d7ab93b4eeef28ef506ab5f18d910ef29617715101884f
languageName: node
linkType: hard
-"unique-slug@npm:^2.0.0":
- version: 2.0.2
- resolution: "unique-slug@npm:2.0.2"
+"unique-slug@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "unique-slug@npm:4.0.0"
dependencies:
imurmurhash: ^0.1.4
- checksum: 9eabc51680cf0b8b197811a48857e41f1364b25362300c1ff636c0eca5ec543a92a38786f59cf0697e62c6f814b11ecbe64e8093db71246468a1f03b80c83970
+ checksum: cb811d9d54eb5821b81b18205750be84cb015c20a4a44280794e915f5a0a70223ce39066781a354e872df3572e8155c228f43ff0cce94c7cbf4da2cc7cbdd635
languageName: node
linkType: hard
@@ -12915,20 +11790,6 @@ __metadata:
languageName: node
linkType: hard
-"update-browserslist-db@npm:^1.0.13":
- version: 1.0.13
- resolution: "update-browserslist-db@npm:1.0.13"
- dependencies:
- escalade: ^3.1.1
- picocolors: ^1.0.0
- peerDependencies:
- browserslist: ">= 4.21.0"
- bin:
- update-browserslist-db: cli.js
- checksum: e52b8b521c78ce1e0c775f356cd16a9c22c70d25f3e01180839c407a5dc787fb05a13f67560cbaf316770d26fa99f78f1acd711b1b54a4f35d4820d4ea7136e6
- languageName: node
- linkType: hard
-
"update-browserslist-db@npm:^1.1.1":
version: 1.1.1
resolution: "update-browserslist-db@npm:1.1.1"
@@ -12953,11 +11814,11 @@ __metadata:
linkType: hard
"use-latest-callback@npm:^0.1.5":
- version: 0.1.9
- resolution: "use-latest-callback@npm:0.1.9"
+ version: 0.1.11
+ resolution: "use-latest-callback@npm:0.1.11"
peerDependencies:
react: ">=16.8"
- checksum: 280fa1f36e6c4bcb0546d9196b45b9176fe3481aca422e587616fe10b0bec1d5d261c91c01789257d7f02064d506b2c5618c32365c58d0cc8876dc839fe1a83f
+ checksum: 8361ccd3e121552173a27fad67bd226e0cc8acf377073357a7ce83f516be3993b57111eb0e5a8748932543ff6bf4d202200de6e8ba6fa78ae111f44d05404128
languageName: node
linkType: hard
@@ -12970,15 +11831,6 @@ __metadata:
languageName: node
linkType: hard
-"use-sync-external-store@npm:^1.0.0":
- version: 1.2.2
- resolution: "use-sync-external-store@npm:1.2.2"
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- checksum: 23b1597c10adf15b26ade9e8c318d8cc0abc9ec0ab5fc7ca7338da92e89c2536abd150a5891bf076836c352fdfa104fc7231fb48f806fd9960e0cbe03601abaf
- languageName: node
- linkType: hard
-
"utf8@npm:^3.0.0":
version: 3.0.0
resolution: "utf8@npm:3.0.0"
@@ -13008,13 +11860,13 @@ __metadata:
linkType: hard
"v8-to-istanbul@npm:^9.0.1":
- version: 9.2.0
- resolution: "v8-to-istanbul@npm:9.2.0"
+ version: 9.3.0
+ resolution: "v8-to-istanbul@npm:9.3.0"
dependencies:
"@jridgewell/trace-mapping": ^0.3.12
"@types/istanbul-lib-coverage": ^2.0.1
convert-source-map: ^2.0.0
- checksum: e691ba4dd0dea4a884e52c37dbda30cce6f9eeafe9b26721e449429c6bb0f4b6d1e33fabe7711d0f67f7a34c3bfd56c873f7375bba0b1534e6a2843ce99550e5
+ checksum: 968bcf1c7c88c04df1ffb463c179558a2ec17aa49e49376120504958239d9e9dad5281aa05f2a78542b8557f2be0b0b4c325710262f3b838b40d703d5ed30c23
languageName: node
linkType: hard
@@ -13494,20 +12346,13 @@ __metadata:
languageName: node
linkType: hard
-"warn-once@npm:0.1.1":
+"warn-once@npm:0.1.1, warn-once@npm:^0.1.0":
version: 0.1.1
resolution: "warn-once@npm:0.1.1"
checksum: f531e7b2382124f51e6d8f97b8c865246db8ab6ff4e53257a2d274e0f02b97d7201eb35db481843dc155815e154ad7afb53b01c4d4db15fb5aa073562496aff7
languageName: node
linkType: hard
-"warn-once@npm:^0.1.0":
- version: 0.1.0
- resolution: "warn-once@npm:0.1.0"
- checksum: 609e1fbbcb5340be329c6a225015a9232bfeee47fb9de79ff89ae5e4c7e081b34553daf2637388e20837eb0c28ff7a5588062505a23ebec8ba76c8ef11b83d00
- languageName: node
- linkType: hard
-
"wcwidth@npm:^1.0.1":
version: 1.0.1
resolution: "wcwidth@npm:1.0.1"
@@ -13525,9 +12370,9 @@ __metadata:
linkType: hard
"whatwg-fetch@npm:^3.0.0":
- version: 3.6.2
- resolution: "whatwg-fetch@npm:3.6.2"
- checksum: cc10f6893fe71839250b6e2fa9bc293bcf0ca5b93129712a7d1097fb7528b3ff617eb065098dc972e74d1455378e514aa34c0901ded41584be16508db63477c8
+ version: 3.6.20
+ resolution: "whatwg-fetch@npm:3.6.20"
+ checksum: fa972dd14091321d38f36a4d062298df58c2248393ef9e8b154493c347c62e2756e25be29c16277396046d6eaa4b11bd174f34e6403fff6aaca9fb30fa1ff46d
languageName: node
linkType: hard
@@ -13555,11 +12400,11 @@ __metadata:
linkType: hard
"which-builtin-type@npm:^1.1.3":
- version: 1.1.3
- resolution: "which-builtin-type@npm:1.1.3"
+ version: 1.1.4
+ resolution: "which-builtin-type@npm:1.1.4"
dependencies:
- function.prototype.name: ^1.1.5
- has-tostringtag: ^1.0.0
+ function.prototype.name: ^1.1.6
+ has-tostringtag: ^1.0.2
is-async-function: ^2.0.0
is-date-object: ^1.0.5
is-finalizationregistry: ^1.0.2
@@ -13568,13 +12413,13 @@ __metadata:
is-weakref: ^1.0.2
isarray: ^2.0.5
which-boxed-primitive: ^1.0.2
- which-collection: ^1.0.1
- which-typed-array: ^1.1.9
- checksum: 2b7b234df3443b52f4fbd2b65b731804de8d30bcc4210ec84107ef377a81923cea7f2763b7fb78b394175cea59118bf3c41b9ffd2d643cb1d748ef93b33b6bd4
+ which-collection: ^1.0.2
+ which-typed-array: ^1.1.15
+ checksum: a4a76d20d869a81b1dbb4adea31edc7e6c1a4466d3ab7c2cd757c9219d48d3723b04076c85583257b0f0f8e3ebe5af337248b8ceed57b9051cb97bce5bd881d1
languageName: node
linkType: hard
-"which-collection@npm:^1.0.1":
+"which-collection@npm:^1.0.2":
version: 1.0.2
resolution: "which-collection@npm:1.0.2"
dependencies:
@@ -13587,13 +12432,13 @@ __metadata:
linkType: hard
"which-module@npm:^2.0.0":
- version: 2.0.0
- resolution: "which-module@npm:2.0.0"
- checksum: 946ffdbcd6f0cf517638f8f2319c6d51e528c3b41bc2c0f5dc3dc46047347abd7326aea5cdf5def0a8b32bdca313ac87a32ce5a76b943fe1ca876c4557e6b716
+ version: 2.0.1
+ resolution: "which-module@npm:2.0.1"
+ checksum: 087038e7992649eaffa6c7a4f3158d5b53b14cf5b6c1f0e043dccfacb1ba179d12f17545d5b85ebd94a42ce280a6fe65d0cbcab70f4fc6daad1dfae85e0e6a3e
languageName: node
linkType: hard
-"which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.15, which-typed-array@npm:^1.1.9":
+"which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.15":
version: 1.1.15
resolution: "which-typed-array@npm:1.1.15"
dependencies:
@@ -13606,17 +12451,6 @@ __metadata:
languageName: node
linkType: hard
-"which@npm:^1.2.9":
- version: 1.3.1
- resolution: "which@npm:1.3.1"
- dependencies:
- isexe: ^2.0.0
- bin:
- which: ./bin/which
- checksum: e945a8b6bbf6821aaaef7f6e0c309d4b615ef35699576d5489b4261da9539f70393c6b2ce700ee4321c18f914ebe5644bc4631b15466ffbaad37d83151f6af59
- languageName: node
- linkType: hard
-
"which@npm:^2.0.1, which@npm:^2.0.2":
version: 2.0.2
resolution: "which@npm:2.0.2"
@@ -13628,12 +12462,32 @@ __metadata:
languageName: node
linkType: hard
-"wide-align@npm:^1.1.5":
- version: 1.1.5
- resolution: "wide-align@npm:1.1.5"
+"which@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "which@npm:4.0.0"
+ dependencies:
+ isexe: ^3.1.1
+ bin:
+ node-which: bin/which.js
+ checksum: 449fa5c44ed120ccecfe18c433296a4978a7583bf2391c50abce13f76878d2476defde04d0f79db8165bdf432853c1f8389d0485ca6e8ebce3bbcded513d5e6a
+ languageName: node
+ linkType: hard
+
+"word-wrap@npm:^1.2.5":
+ version: 1.2.5
+ resolution: "word-wrap@npm:1.2.5"
+ checksum: e0e4a1ca27599c92a6ca4c32260e8a92e8a44f4ef6ef93f803f8ed823f486e0889fc0b93be4db59c8d51b3064951d25e43d434e95dc8c960cc3a63d65d00ba20
+ languageName: node
+ linkType: hard
+
+"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0":
+ version: 7.0.0
+ resolution: "wrap-ansi@npm:7.0.0"
dependencies:
- string-width: ^1.0.2 || 2 || 3 || 4
- checksum: 1d9c2a3e36dfb09832f38e2e699c367ef190f96b82c71f809bc0822c306f5379df87bab47bed27ea99106d86447e50eb972d3c516c2f95782807a9d082fbea95
+ ansi-styles: ^4.0.0
+ string-width: ^4.1.0
+ strip-ansi: ^6.0.0
+ checksum: d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da
languageName: node
linkType: hard
@@ -13648,14 +12502,14 @@ __metadata:
languageName: node
linkType: hard
-"wrap-ansi@npm:^7.0.0":
- version: 7.0.0
- resolution: "wrap-ansi@npm:7.0.0"
+"wrap-ansi@npm:^8.1.0":
+ version: 8.1.0
+ resolution: "wrap-ansi@npm:8.1.0"
dependencies:
- ansi-styles: ^4.0.0
- string-width: ^4.1.0
- strip-ansi: ^6.0.0
- checksum: d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da
+ ansi-styles: ^6.1.0
+ string-width: ^5.0.1
+ strip-ansi: ^7.0.1
+ checksum: 138ff58a41d2f877eae87e3282c0630fc2789012fc1af4d6bd626eeb9a2f9a65ca92005e6e69a75c7b85a68479fe7443c7dbe1eb8fbaa681a4491364b7c55c60
languageName: node
linkType: hard
@@ -13687,7 +12541,7 @@ __metadata:
languageName: node
linkType: hard
-"ws@npm:^6.1.4":
+"ws@npm:^6.2.3":
version: 6.2.3
resolution: "ws@npm:6.2.3"
dependencies:
@@ -13696,22 +12550,7 @@ __metadata:
languageName: node
linkType: hard
-"ws@npm:^7":
- version: 7.5.9
- resolution: "ws@npm:7.5.9"
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- checksum: aec4ef4eb65821a7dde7b44790f8699cfafb7978c9b080f6d7a98a7f8fc0ce674c027073a78574c94786ba7112cc90fa2cc94fc224ceba4d4b1030cff9662494
- languageName: node
- linkType: hard
-
-"ws@npm:^7.5.1":
+"ws@npm:^7, ws@npm:^7.5.10":
version: 7.5.10
resolution: "ws@npm:7.5.10"
peerDependencies:
@@ -13761,12 +12600,12 @@ __metadata:
languageName: node
linkType: hard
-"yaml@npm:^2.2.2":
- version: 2.4.1
- resolution: "yaml@npm:2.4.1"
+"yaml@npm:^2.2.1, yaml@npm:^2.2.2":
+ version: 2.6.0
+ resolution: "yaml@npm:2.6.0"
bin:
yaml: bin.mjs
- checksum: 816057dbaea16a7dfb0b868ace930f143dece96bbb4c4fbb6f38aa389166f897240d9fa535dbfd6b1b0d9442416f4abcc698e63f82394d0c67b329aa6c2be576
+ checksum: 9e74cdb91cc35512a1c41f5ce509b0e93cc1d00eff0901e4ba831ee75a71ddf0845702adcd6f4ee6c811319eb9b59653248462ab94fa021ab855543a75396ceb
languageName: node
linkType: hard
@@ -13794,7 +12633,7 @@ __metadata:
languageName: node
linkType: hard
-"yargs@npm:^15.1.0, yargs@npm:^15.3.1":
+"yargs@npm:^15.1.0":
version: 15.4.1
resolution: "yargs@npm:15.4.1"
dependencies:
@@ -13828,7 +12667,7 @@ __metadata:
languageName: node
linkType: hard
-"yargs@npm:^17.3.1":
+"yargs@npm:^17.3.1, yargs@npm:^17.6.2":
version: 17.7.2
resolution: "yargs@npm:17.7.2"
dependencies: