diff --git a/app.config.ts b/app.config.ts index cb6a15f..08b0d4f 100644 --- a/app.config.ts +++ b/app.config.ts @@ -39,8 +39,9 @@ export default ({config}: ConfigContext): ExpoConfig => ({ [ 'expo-build-properties', { - ios: {newArchEnabled: true}, - android: {newArchEnabled: true}, + // https://github.com/software-mansion/react-native-screens/issues/2219 + // ios: {newArchEnabled: true}, + // android: {newArchEnabled: true}, }, ], // @ts-ignore @@ -94,6 +95,7 @@ export default ({config}: ConfigContext): ExpoConfig => ({ entitlements: { 'com.apple.developer.applesignin': ['Default'], }, + googleServicesFile: process.env.GOOGLE_SERVICES_IOS, infoPlist: { LSApplicationQueriesSchemes: ['mailto'], CFBundleAllowMixedLocalizations: true, @@ -107,7 +109,7 @@ export default ({config}: ConfigContext): ExpoConfig => ({ }, }, android: { - googleServicesFile: process.env.GOOGLE_SERVICES_JSON, + googleServicesFile: process.env.GOOGLE_SERVICES_ANDROID, userInterfaceStyle: 'automatic', permissions: [ 'RECEIVE_BOOT_COMPLETED', diff --git a/app/(app)/(tabs)/profile.tsx b/app/(app)/(tabs)/profile.tsx index 610c4f8..ffedf42 100644 --- a/app/(app)/(tabs)/profile.tsx +++ b/app/(app)/(tabs)/profile.tsx @@ -81,7 +81,7 @@ const TagContainer = styled.View` `; const Tag = styled.View` - background-color: ${({theme}) => theme.role.accent}; + background-color: ${({theme}) => theme.role.link}; border-radius: 20px; padding: 6px 12px; margin-right: 8px; @@ -89,7 +89,7 @@ const Tag = styled.View` `; const TagText = styled.Text` - color: ${({theme}) => theme.text.basic}; + color: ${({theme}) => theme.text.contrast}; font-size: 14px; `; @@ -123,7 +123,7 @@ export default function Profile(): JSX.Element { gap: 4px; `} > - + {user?.github_id || ''} diff --git a/app/(app)/settings/profile-update.tsx b/app/(app)/settings/profile-update.tsx index 36cfe37..c4a8166 100644 --- a/app/(app)/settings/profile-update.tsx +++ b/app/(app)/settings/profile-update.tsx @@ -138,7 +138,7 @@ export default function ProfileUpdate(): JSX.Element { if (user) { setTags(tags); - setAuth((prev) => ({...prev, user})); + setAuth((prev) => ({...prev, user, tags})); back(); } } catch (error: any) { diff --git a/app/(auth)/sign-in.tsx b/app/(auth)/sign-in.tsx index 3ad214b..5bb19b0 100644 --- a/app/(auth)/sign-in.tsx +++ b/app/(auth)/sign-in.tsx @@ -17,7 +17,7 @@ import {t} from '../../src/STRINGS'; import {supabase} from '../../src/supabase'; import SocialSignInButton from '../../src/components/uis/SocialSignInButton'; import {showAlert} from '../../src/utils/alert'; -import { useSafeAreaInsets } from 'react-native-safe-area-context'; +import {useSafeAreaInsets} from 'react-native-safe-area-context'; const Container = styled.View` flex: 1; @@ -58,7 +58,6 @@ export default function SignIn(): JSX.Element { const googleSignIn = useCallback(async () => { try { await GoogleSignin.hasPlayServices(); - const userInfo = await GoogleSignin.signIn(); InteractionManager.runAfterInteractions(async () => { diff --git a/bun.lockb b/bun.lockb index 4bf1402..d93bdc3 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 5aff7e4..6cabcb0 100644 --- a/package.json +++ b/package.json @@ -44,31 +44,31 @@ "@react-native-async-storage/async-storage": "1.23.1", "@react-native-community/datetimepicker": "8.0.1", "@react-native-google-signin/google-signin": "^12.2.1", - "@shopify/flash-list": "^1.7.0", + "@shopify/flash-list": "1.6.4", "@supabase/supabase-js": "^2.44.2", "base64-arraybuffer": "^1.0.2", "date-fns": "^3.6.0", "dooboo-ui": "^0.2.35", - "expo": "~51.0.17", - "expo-apple-authentication": "^6.4.1", + "expo": "~51.0.24", + "expo-apple-authentication": "~6.4.2", "expo-constants": "~16.0.2", "expo-device": "~6.0.2", "expo-file-system": "^17.0.1", - "expo-font": "~12.0.7", - "expo-image": "~1.12.12", - "expo-image-picker": "~15.0.6", + "expo-font": "~12.0.9", + "expo-image": "~1.12.13", + "expo-image-picker": "~15.0.7", "expo-linear-gradient": "^13.0.2", "expo-linking": "~6.3.1", "expo-localization": "~15.0.3", - "expo-notifications": "~0.28.9", - "expo-router": "~3.5.17", + "expo-notifications": "~0.28.15", + "expo-router": "~3.5.20", "expo-screen-orientation": "~7.0.5", "expo-sharing": "~12.0.1", "expo-splash-screen": "~0.27.5", "expo-status-bar": "~1.12.1", - "expo-system-ui": "~3.0.6", + "expo-system-ui": "~3.0.7", "expo-tracking-transparency": "~4.0.2", - "expo-updates": "~0.25.18", + "expo-updates": "~0.25.21", "expo-video-thumbnails": "^8.0.0", "expo-web-browser": "~13.0.3", "i18n-js": "^4.4.3", @@ -77,7 +77,7 @@ "react": "18.2.0", "react-dom": "18.2.0", "react-hook-form": "^7.52.1", - "react-native": "0.74.2", + "react-native": "0.74.3", "react-native-device-info": "^11.1.0", "react-native-error-boundary": "^1.2.4", "react-native-gesture-handler": "~2.16.2", @@ -86,9 +86,9 @@ "react-native-parsed-text": "^0.0.22", "react-native-reanimated": "~3.10.1", "react-native-reanimated-carousel": "^3.5.1", - "react-native-safe-area-context": "4.10.1", + "react-native-safe-area-context": "4.10.5", "react-native-screens": "3.31.1", - "react-native-svg": "15.2.0", + "react-native-svg": "15.5.0", "react-native-tab-view": "^3.5.2", "react-native-url-polyfill": "^2.0.0", "react-native-web": "~0.19.12", @@ -122,8 +122,8 @@ "eslint-plugin-i18n-json": "^4.0.0", "eslint-plugin-jest": "^28.6.0", "eslint-plugin-prettier": "^5.1.3", - "expo-build-properties": "^0.12.3", - "expo-dev-client": "^4.0.19", + "expo-build-properties": "~0.12.4", + "expo-dev-client": "~4.0.21", "jest": "^29.7.0", "jest-expo": "~51.0.3", "jest-fetch-mock": "^3.0.3", diff --git a/yarn.lock b/yarn.lock index 3b3fcff..2608bcb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1,6 +1,6 @@ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. # yarn lockfile v1 -# bun ./bun.lockb --hash: 73B192BC4DAA018A-f349684f395b178f-A13F5F2B37BE2A0E-cc8faa60496b19a0 +# bun ./bun.lockb --hash: 7CD77351511846BA-fc6d6e09dc7eac81-AF9BA59A09CAF104-fd98276aee1c57fa "@aashutoshrathi/word-wrap@^1.2.3": @@ -16,14 +16,14 @@ "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@babel/code-frame@7.10.4": +"@babel/code-frame@~7.10.4": version "7.10.4" resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz" integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== dependencies: "@babel/highlight" "^7.10.4" -"@babel/code-frame@~7.10.4": +"@babel/code-frame@7.10.4": version "7.10.4" resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz" integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== @@ -1502,7 +1502,7 @@ "@babel/parser" "^7.24.0" "@babel/types" "^7.24.0" -"@babel/template@^7.24.7": +"@babel/template@^7.0.0", "@babel/template@^7.24.7": version "7.24.7" resolved "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz" integrity sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig== @@ -2531,6 +2531,89 @@ "@react-native/dev-middleware" "0.74.84" "@expo/code-signing-certificates" "0.0.5" +"@expo/cli@0.18.26": + version "0.18.26" + resolved "https://registry.npmjs.org/@expo/cli/-/cli-0.18.26.tgz" + integrity sha512-u9bTTXgcjaTloE9CHwxgrb8Me/Al4jiPykbVQpJydakH3GsIZfHy1zaLc7O39CoLjRz37WWi6Y5ZdgtQw9dCPQ== + dependencies: + ws "^8.12.1" + arg "5.0.2" + ora "3.4.0" + tar "^6.0.5" + glob "^7.1.7" + open "^8.3.0" + send "^0.18.0" + chalk "^4.0.0" + debug "^4.3.4" + tempy "^0.7.1" + getenv "^1.0.0" + is-wsl "^2.1.1" + md5hex "^1.0.0" + semver "^7.6.0" + accepts "^1.3.8" + cacache "^18.0.2" + ci-info "^3.3.0" + connect "^3.7.0" + graphql "15.8.0" + js-yaml "^3.13.1" + prompts "^2.3.2" + resolve "^1.22.2" + slugify "^1.3.4" + fs-extra "~8.1.0" + progress "2.0.3" + requireg "^0.2.2" + temp-dir "^2.0.0" + url-join "4.0.0" + "@expo/env" "~0.3.0" + fast-glob "^3.3.2" + form-data "^3.0.1" + is-docker "^2.0.0" + minimatch "^3.0.4" + picomatch "^3.0.1" + wrap-ansi "^7.0.0" + "@urql/core" "2.3.6" + better-opn "~3.0.2" + env-editor "^0.4.1" + node-fetch "^2.6.7" + node-forge "^1.3.1" + text-table "^0.2.0" + "@expo/plist" "^0.1.0" + graphql-tag "^2.10.1" + internal-ip "4.3.0" + "@expo/config" "~9.0.0-beta.0" + pretty-bytes "5.6.0" + resolve-from "^5.0.0" + "@expo/devcert" "^1.0.0" + bplist-parser "^0.3.1" + terminal-link "^2.1.1" + "@babel/runtime" "^7.20.0" + "@expo/xcpretty" "^4.3.0" + bplist-creator "0.0.7" + freeport-async "2.0.0" + "@expo/json-file" "^8.3.0" + "@expo/osascript" "^2.0.31" + lodash.debounce "^4.0.8" + npm-package-arg "^7.0.0" + qrcode-terminal "0.11.0" + resolve.exports "^2.0.2" + "@expo/image-utils" "^0.5.0" + "@expo/spawn-async" "^1.7.2" + https-proxy-agent "^5.0.1" + stacktrace-parser "^0.1.10" + "@expo/metro-config" "~0.18.6" + source-map-support "~0.5.21" + structured-headers "^0.4.1" + require-from-string "^2.0.2" + "@expo/config-plugins" "~8.0.8" + "@urql/exchange-retry" "0.3.0" + "@expo/package-manager" "^1.5.0" + "@expo/prebuild-config" "7.0.8" + "@expo/rudder-sdk-node" "1.1.1" + json-schema-deref-sync "^0.13.0" + find-yarn-workspace-root "~2.0.0" + "@react-native/dev-middleware" "0.74.85" + "@expo/code-signing-certificates" "0.0.5" + "@expo/code-signing-certificates@0.0.5": version "0.0.5" resolved "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz" @@ -2573,6 +2656,23 @@ slugify "^1.3.4" sucrase "3.34.0" +"@expo/config@9.0.3", "@expo/config@~9.0.0-beta.0": + version "9.0.3" + resolved "https://registry.npmjs.org/@expo/config/-/config-9.0.3.tgz" + integrity sha512-eOTNM8eOC8gZNHgenySRlc/lwmYY1NOgvjwA8LHuvPT7/eUwD93zrxu3lPD1Cc/P6C/2BcVdfH4hf0tLmDxnsg== + dependencies: + glob "7.1.6" + getenv "^1.0.0" + semver "^7.6.0" + slugify "^1.3.4" + sucrase "3.34.0" + resolve-from "^5.0.0" + "@expo/json-file" "^8.3.0" + "@babel/code-frame" "~7.10.4" + "@expo/config-types" "^51.0.0-unreleased" + require-from-string "^2.0.2" + "@expo/config-plugins" "~8.0.8" + "@expo/config-plugins@^4.1.5": version "4.1.5" resolved "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-4.1.5.tgz" @@ -2680,6 +2780,27 @@ "@expo/config-types" "^51.0.0-unreleased" "@expo/sdk-runtime-versions" "^1.0.0" +"@expo/config-plugins@8.0.8", "@expo/config-plugins@~8.0.8": + version "8.0.8" + resolved "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-8.0.8.tgz" + integrity sha512-Fvu6IO13EUw0R9WeqxUO37FkM62YJBNcZb9DyJAOgMz7Ez/vaKQGEjKt9cwT+Q6uirtCATMgaq6VWAW7YW8xXw== + dependencies: + glob "7.1.6" + chalk "^4.1.2" + debug "^4.3.1" + slash "^3.0.0" + xcode "^3.0.1" + getenv "^1.0.0" + semver "^7.5.4" + xml2js "0.6.0" + find-up "~5.0.0" + slugify "^1.6.6" + "@expo/plist" "^0.1.0" + resolve-from "^5.0.0" + "@expo/json-file" "~8.3.0" + "@expo/config-types" "^51.0.0-unreleased" + "@expo/sdk-runtime-versions" "^1.0.0" + "@expo/config-types@^45.0.0": version "45.0.0" resolved "https://registry.npmjs.org/@expo/config-types/-/config-types-45.0.0.tgz" @@ -2749,10 +2870,10 @@ p-limit "^3.1.0" resolve-from "^5.0.0" -"@expo/fingerprint@^0.10.0": - version "0.10.0" - resolved "https://registry.npmjs.org/@expo/fingerprint/-/fingerprint-0.10.0.tgz" - integrity sha512-yW2WV4YUGaak4K6MCJHR0sXRrOKA7IWtWsK3uG640eSug55t5VQBoF5KPx7n4+60QUKYKmw7u3vFZZb96OZFlA== +"@expo/fingerprint@^0.10.2": + version "0.10.2" + resolved "https://registry.npmjs.org/@expo/fingerprint/-/fingerprint-0.10.2.tgz" + integrity sha512-q75zb4AeB08efofCnEJIddS7kCe0TX8YjHSat204mq1RLUJjv2JAN1Zgyk5HW/4i8b/sMYst0HX+BLCtszb+2A== dependencies: chalk "^4.1.2" debug "^4.3.4" @@ -2918,6 +3039,30 @@ "@expo/spawn-async" "^1.7.2" find-yarn-workspace-root "~2.0.0" +"@expo/metro-config@0.18.10", "@expo/metro-config@~0.18.6": + version "0.18.10" + resolved "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.18.10.tgz" + integrity sha512-HTYQqKfV0JSuRp5aDvrPHezj5udXOWoXqHOjfTSnce2m13j6D0yYXTJNaKRhlgpPBrkg5DL7z1fL3zwDUpLM4w== + dependencies: + glob "^7.2.3" + chalk "^4.1.0" + debug "^4.3.2" + getenv "^1.0.0" + postcss "~8.4.32" + fs-extra "^9.1.0" + "@expo/env" "~0.3.0" + "@babel/core" "^7.20.0" + "@babel/types" "^7.20.0" + "@expo/config" "~9.0.0-beta.0" + jsc-safe-url "^0.2.4" + lightningcss "~1.19.0" + resolve-from "^5.0.0" + "@babel/parser" "^7.20.0" + "@expo/json-file" "~8.3.0" + "@babel/generator" "^7.20.5" + "@expo/spawn-async" "^1.7.2" + find-yarn-workspace-root "~2.0.0" + "@expo/metro-runtime@3.2.1": version "3.2.1" resolved "https://registry.npmjs.org/@expo/metro-runtime/-/metro-runtime-3.2.1.tgz" @@ -3035,6 +3180,23 @@ "@expo/config-plugins" "~8.0.0-beta.0" "@react-native/normalize-colors" "0.74.84" +"@expo/prebuild-config@7.0.8": + version "7.0.8" + resolved "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-7.0.8.tgz" + integrity sha512-wH9NVg6HiwF5y9x0TxiMEeBF+ITPGDXy5/i6OUheSrKpPgb0lF1Mwzl/f2fLPXBEpl+ZXOQ8LlLW32b7K9lrNg== + dependencies: + debug "^4.3.1" + semver "^7.6.0" + xml2js "0.6.0" + fs-extra "^9.0.0" + "@expo/config" "~9.0.0-beta.0" + resolve-from "^5.0.0" + "@expo/json-file" "^8.3.0" + "@expo/image-utils" "^0.5.0" + "@expo/config-types" "^51.0.0-unreleased" + "@expo/config-plugins" "~8.0.8" + "@react-native/normalize-colors" "0.74.85" + "@expo/react-native-action-sheet@^4.1.0": version "4.1.0" resolved "https://registry.npmjs.org/@expo/react-native-action-sheet/-/react-native-action-sheet-4.1.0.tgz" @@ -3707,6 +3869,29 @@ prompts "^2.4.2" semver "^7.5.2" +"@react-native-community/cli@13.6.9": + version "13.6.9" + resolved "https://registry.npmjs.org/@react-native-community/cli/-/cli-13.6.9.tgz" + integrity sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ== + dependencies: + "@react-native-community/cli-clean" "13.6.9" + "@react-native-community/cli-config" "13.6.9" + "@react-native-community/cli-debugger-ui" "13.6.9" + "@react-native-community/cli-doctor" "13.6.9" + "@react-native-community/cli-hermes" "13.6.9" + "@react-native-community/cli-server-api" "13.6.9" + "@react-native-community/cli-tools" "13.6.9" + "@react-native-community/cli-types" "13.6.9" + chalk "^4.1.2" + commander "^9.4.1" + deepmerge "^4.3.0" + execa "^5.0.0" + find-up "^4.1.0" + fs-extra "^8.1.0" + graceful-fs "^4.1.3" + prompts "^2.4.2" + semver "^7.5.2" + "@react-native-community/cli-clean@12.3.0": version "12.3.0" resolved "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-12.3.0.tgz" @@ -3736,6 +3921,16 @@ execa "^5.0.0" fast-glob "^3.3.2" +"@react-native-community/cli-clean@13.6.9": + version "13.6.9" + resolved "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-13.6.9.tgz" + integrity sha512-7Dj5+4p9JggxuVNOjPbduZBAP1SUgNhLKVw5noBUzT/3ZpUZkDM+RCSwyoyg8xKWoE4OrdUAXwAFlMcFDPKykA== + dependencies: + "@react-native-community/cli-tools" "13.6.9" + chalk "^4.1.2" + execa "^5.0.0" + fast-glob "^3.3.2" + "@react-native-community/cli-config@12.3.0": version "12.3.0" resolved "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-12.3.0.tgz" @@ -3772,6 +3967,18 @@ cosmiconfig "^5.1.0" "@react-native-community/cli-tools" "13.6.8" +"@react-native-community/cli-config@13.6.9": + version "13.6.9" + resolved "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-13.6.9.tgz" + integrity sha512-rFfVBcNojcMm+KKHE/xqpqXg8HoKl4EC7bFHUrahMJ+y/tZll55+oX/PGG37rzB8QzP2UbMQ19DYQKC1G7kXeg== + dependencies: + joi "^17.2.1" + chalk "^4.1.2" + deepmerge "^4.3.0" + fast-glob "^3.3.2" + cosmiconfig "^5.1.0" + "@react-native-community/cli-tools" "13.6.9" + "@react-native-community/cli-debugger-ui@12.3.0": version "12.3.0" resolved "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-12.3.0.tgz" @@ -3793,6 +4000,13 @@ dependencies: serve-static "^1.13.1" +"@react-native-community/cli-debugger-ui@13.6.9": + version "13.6.9" + resolved "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-13.6.9.tgz" + integrity sha512-TkN7IdFmGPPvTpAo3nCAH9uwGCPxWBEAwpqEZDrq0NWllI7Tdie8vDpGdrcuCcKalmhq6OYnkXzeBah7O1Ztpw== + dependencies: + serve-static "^1.13.1" + "@react-native-community/cli-doctor@12.3.0": version "12.3.0" resolved "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-12.3.0.tgz" @@ -3862,6 +4076,29 @@ wcwidth "^1.0.1" yaml "^2.2.1" +"@react-native-community/cli-doctor@13.6.9": + version "13.6.9" + resolved "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-13.6.9.tgz" + integrity sha512-5quFaLdWFQB+677GXh5dGU9I5eg2z6Vg4jOX9vKnc9IffwyIFAyJfCZHrxLSRPDGNXD7biDQUdoezXYGwb6P/A== + dependencies: + "@react-native-community/cli-config" "13.6.9" + "@react-native-community/cli-platform-android" "13.6.9" + "@react-native-community/cli-platform-apple" "13.6.9" + "@react-native-community/cli-platform-ios" "13.6.9" + "@react-native-community/cli-tools" "13.6.9" + chalk "^4.1.2" + command-exists "^1.2.8" + deepmerge "^4.3.0" + envinfo "^7.10.0" + execa "^5.0.0" + hermes-profile-transformer "^0.0.6" + 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" + "@react-native-community/cli-hermes@12.3.0": version "12.3.0" resolved "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-12.3.0.tgz" @@ -3893,6 +4130,16 @@ chalk "^4.1.2" hermes-profile-transformer "^0.0.6" +"@react-native-community/cli-hermes@13.6.9": + version "13.6.9" + resolved "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-13.6.9.tgz" + integrity sha512-GvwiwgvFw4Ws+krg2+gYj8sR3g05evmNjAHkKIKMkDTJjZ8EdyxbkifRUs1ZCq3TMZy2oeblZBXCJVOH4W7ZbA== + dependencies: + "@react-native-community/cli-platform-android" "13.6.9" + "@react-native-community/cli-tools" "13.6.9" + chalk "^4.1.2" + hermes-profile-transformer "^0.0.6" + "@react-native-community/cli-platform-android@12.3.0": version "12.3.0" resolved "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-12.3.0.tgz" @@ -3929,6 +4176,18 @@ fast-xml-parser "^4.2.4" logkitty "^0.7.1" +"@react-native-community/cli-platform-android@13.6.9": + version "13.6.9" + resolved "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-13.6.9.tgz" + integrity sha512-9KsYGdr08QhdvT3Ht7e8phQB3gDX9Fs427NJe0xnoBh+PDPTI2BD5ks5ttsH8CzEw8/P6H8tJCHq6hf2nxd9cw== + dependencies: + "@react-native-community/cli-tools" "13.6.9" + chalk "^4.1.2" + execa "^5.0.0" + fast-glob "^3.3.2" + fast-xml-parser "^4.2.4" + logkitty "^0.7.1" + "@react-native-community/cli-platform-apple@13.6.6": version "13.6.6" resolved "https://registry.npmjs.org/@react-native-community/cli-platform-apple/-/cli-platform-apple-13.6.6.tgz" @@ -3953,6 +4212,18 @@ fast-xml-parser "^4.0.12" "@react-native-community/cli-tools" "13.6.8" +"@react-native-community/cli-platform-apple@13.6.9": + version "13.6.9" + resolved "https://registry.npmjs.org/@react-native-community/cli-platform-apple/-/cli-platform-apple-13.6.9.tgz" + integrity sha512-KoeIHfhxMhKXZPXmhQdl6EE+jGKWwoO9jUVWgBvibpVmsNjo7woaG/tfJMEWfWF3najX1EkQAoJWpCDBMYWtlA== + dependencies: + "@react-native-community/cli-tools" "13.6.9" + chalk "^4.1.2" + execa "^5.0.0" + fast-glob "^3.3.2" + fast-xml-parser "^4.0.12" + ora "^5.4.1" + "@react-native-community/cli-platform-ios@12.3.0": version "12.3.0" resolved "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-12.3.0.tgz" @@ -3979,6 +4250,13 @@ dependencies: "@react-native-community/cli-platform-apple" "13.6.8" +"@react-native-community/cli-platform-ios@13.6.9": + version "13.6.9" + resolved "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-13.6.9.tgz" + integrity sha512-CiUcHlGs8vE0CAB4oi1f+dzniqfGuhWPNrDvae2nm8dewlahTBwIcK5CawyGezjcJoeQhjBflh9vloska+nlnw== + dependencies: + "@react-native-community/cli-platform-apple" "13.6.9" + "@react-native-community/cli-plugin-metro@12.3.0": version "12.3.0" resolved "https://registry.npmjs.org/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-12.3.0.tgz" @@ -4029,6 +4307,21 @@ serve-static "^1.13.1" ws "^6.2.2" +"@react-native-community/cli-server-api@13.6.9": + version "13.6.9" + resolved "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-13.6.9.tgz" + integrity sha512-W8FSlCPWymO+tlQfM3E0JmM8Oei5HZsIk5S0COOl0MRi8h0NmHI4WSTF2GCfbFZkcr2VI/fRsocoN8Au4EZAug== + dependencies: + "@react-native-community/cli-debugger-ui" "13.6.9" + "@react-native-community/cli-tools" "13.6.9" + compression "^1.7.1" + connect "^3.6.5" + errorhandler "^1.5.1" + nocache "^3.0.1" + pretty-format "^26.6.2" + serve-static "^1.13.1" + ws "^6.2.2" + "@react-native-community/cli-tools@12.3.0": version "12.3.0" resolved "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-12.3.0.tgz" @@ -4079,6 +4372,23 @@ shell-quote "^1.7.3" sudo-prompt "^9.0.0" +"@react-native-community/cli-tools@13.6.9": + version "13.6.9" + resolved "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-13.6.9.tgz" + integrity sha512-OXaSjoN0mZVw3nrAwcY1PC0uMfyTd9fz7Cy06dh+EJc+h0wikABsVRzV8cIOPrVV+PPEEXE0DBrH20T2puZzgQ== + 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 "^7.5.2" + shell-quote "^1.7.3" + sudo-prompt "^9.0.0" + "@react-native-community/cli-types@12.3.0": version "12.3.0" resolved "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-12.3.0.tgz" @@ -4100,6 +4410,13 @@ dependencies: joi "^17.2.1" +"@react-native-community/cli-types@13.6.9": + version "13.6.9" + resolved "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-13.6.9.tgz" + integrity sha512-RLxDppvRxXfs3hxceW/mShi+6o5yS+kFPnPqZTaMKKR5aSg7LwDpLQW4K2D22irEG8e6RKDkZUeH9aL3vO2O0w== + dependencies: + joi "^17.2.1" + "@react-native-community/datetimepicker@8.0.1": version "8.0.1" resolved "https://registry.npmjs.org/@react-native-community/datetimepicker/-/datetimepicker-8.0.1.tgz" @@ -4127,6 +4444,11 @@ resolved "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.74.84.tgz" integrity sha512-dzUhwyaX04QosWZ8zyaaNB/WYZIdeDN1lcpfQbqiOhZJShRH+FLTDVONE/dqlMQrP+EO7lDqF0RrlIt9lnOCQQ== +"@react-native/assets-registry@0.74.85": + version "0.74.85" + resolved "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.74.85.tgz" + integrity sha512-59YmIQxfGDw4aP9S/nAM+sjSFdW8fUP6fsqczCcXgL2YVEjyER9XCaUT0J1K+PdHep8pi05KUgIKUds8P3jbmA== + "@react-native/babel-plugin-codegen@0.73.2": version "0.73.2" resolved "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.73.2.tgz" @@ -4148,6 +4470,13 @@ dependencies: "@react-native/codegen" "0.74.84" +"@react-native/babel-plugin-codegen@0.74.85": + version "0.74.85" + resolved "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.74.85.tgz" + integrity sha512-48TSDclRB5OMXiImiJkLxyCfRyLsqkCgI8buugCZzvXcYslfV7gCvcyFyQldtcOmerV+CK4RAj7QS4hmB5Mr8Q== + dependencies: + "@react-native/codegen" "0.74.85" + "@react-native/babel-preset@*", "@react-native/babel-preset@0.73.19", "@react-native/babel-preset@^0.73.18": version "0.73.19" resolved "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.73.19.tgz" @@ -4294,6 +4623,55 @@ "@babel/plugin-proposal-logical-assignment-operators" "^7.18.0" "@babel/plugin-transform-named-capturing-groups-regex" "^7.0.0" +"@react-native/babel-preset@0.74.85": + version "0.74.85" + resolved "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.74.85.tgz" + integrity sha512-yMHUlN8INbK5BBwiBuQMftdWkpm1IgCsoJTKcGD2OpSgZhwwm8RUSvGhdRMzB2w7bsqqBmaEMleGtW6aCR7B9w== + dependencies: + "@babel/core" "^7.20.0" + react-refresh "^0.14.0" + "@babel/template" "^7.0.0" + "@babel/plugin-syntax-flow" "^7.18.0" + "@babel/plugin-transform-spread" "^7.0.0" + "@babel/plugin-transform-classes" "^7.0.0" + "@babel/plugin-transform-runtime" "^7.0.0" + "@babel/plugin-transform-literals" "^7.0.0" + "@babel/plugin-transform-react-jsx" "^7.0.0" + babel-plugin-transform-flow-enums "^0.0.2" + "@babel/plugin-transform-parameters" "^7.0.0" + "@babel/plugin-transform-typescript" "^7.5.0" + "@react-native/babel-plugin-codegen" "0.74.85" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" + "@babel/plugin-transform-sticky-regex" "^7.0.0" + "@babel/plugin-transform-block-scoping" "^7.0.0" + "@babel/plugin-transform-destructuring" "^7.20.0" + "@babel/plugin-transform-function-name" "^7.0.0" + "@babel/plugin-transform-unicode-regex" "^7.0.0" + "@babel/plugin-syntax-optional-chaining" "^7.0.0" + "@babel/plugin-transform-react-jsx-self" "^7.0.0" + "@babel/plugin-proposal-class-properties" "^7.18.0" + "@babel/plugin-transform-arrow-functions" "^7.0.0" + "@babel/plugin-transform-private-methods" "^7.22.5" + "@babel/plugin-proposal-numeric-separator" "^7.0.0" + "@babel/plugin-proposal-optional-chaining" "^7.20.0" + "@babel/plugin-syntax-export-default-from" "^7.0.0" + "@babel/plugin-transform-flow-strip-types" "^7.20.0" + "@babel/plugin-transform-modules-commonjs" "^7.0.0" + "@babel/plugin-transform-react-jsx-source" "^7.0.0" + "@babel/plugin-proposal-object-rest-spread" "^7.20.0" + "@babel/plugin-proposal-export-default-from" "^7.0.0" + "@babel/plugin-transform-async-to-generator" "^7.20.0" + "@babel/plugin-transform-react-display-name" "^7.0.0" + "@babel/plugin-transform-computed-properties" "^7.0.0" + "@babel/plugin-transform-shorthand-properties" "^7.0.0" + "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" + "@babel/plugin-proposal-async-generator-functions" "^7.0.0" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.0" + "@babel/plugin-transform-private-property-in-object" "^7.22.11" + "@babel/plugin-proposal-logical-assignment-operators" "^7.18.0" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.0.0" + "@react-native/codegen@0.73.2": version "0.73.2" resolved "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.73.2.tgz" @@ -4333,6 +4711,19 @@ "@babel/parser" "^7.20.0" hermes-parser "0.19.1" +"@react-native/codegen@0.74.85": + version "0.74.85" + resolved "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.74.85.tgz" + integrity sha512-N7QwoS4Hq/uQmoH83Ewedy6D0M7xbQsOU3OMcQf0eY3ltQ7S2hd9/R4UTalQWRn1OUJfXR6OG12QJ4FStKgV6Q== + dependencies: + glob "^7.1.1" + mkdirp "^0.5.1" + invariant "^2.2.4" + nullthrows "^1.1.1" + jscodeshift "^0.14.0" + "@babel/parser" "^7.20.0" + hermes-parser "0.19.1" + "@react-native/community-cli-plugin@0.73.12": version "0.73.12" resolved "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.73.12.tgz" @@ -4386,6 +4777,24 @@ "@react-native/metro-babel-transformer" "0.74.84" "@react-native-community/cli-server-api" "13.6.8" +"@react-native/community-cli-plugin@0.74.85": + version "0.74.85" + resolved "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.74.85.tgz" + integrity sha512-ODzND33eA2owAY3g9jgCdqB+BjAh8qJ7dvmSotXgrgDYr3MJMpd8gvHTIPe2fg4Kab+wk8uipRhrE0i0RYMwtQ== + dependencies: + chalk "^4.0.0" + execa "^5.1.1" + metro "^0.80.3" + readline "^1.3.0" + metro-core "^0.80.3" + node-fetch "^2.2.0" + querystring "^0.2.1" + metro-config "^0.80.3" + "@react-native/dev-middleware" "0.74.85" + "@react-native-community/cli-tools" "13.6.9" + "@react-native/metro-babel-transformer" "0.74.85" + "@react-native-community/cli-server-api" "13.6.9" + "@react-native/debugger-frontend@0.73.3": version "0.73.3" resolved "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.73.3.tgz" @@ -4401,6 +4810,11 @@ resolved "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.74.84.tgz" integrity sha512-YUEA03UNFbiYzHpYxlcS2D9+3eNT5YLGkl5yRg3nOSN6KbCc/OttGnNZme+tuSOJwjMN/vcvtDKYkTqjJw8U0A== +"@react-native/debugger-frontend@0.74.85": + version "0.74.85" + resolved "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.74.85.tgz" + integrity sha512-gUIhhpsYLUTYWlWw4vGztyHaX/kNlgVspSvKe2XaPA7o3jYKUoNLc3Ov7u70u/MBWfKdcEffWq44eSe3j3s5JQ== + "@react-native/dev-middleware@0.73.7", "@react-native/dev-middleware@^0.73.6": version "0.73.7" resolved "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.73.7.tgz" @@ -4455,6 +4869,25 @@ "@react-native/debugger-frontend" "0.74.84" "@rnx-kit/chromium-edge-launcher" "^1.0.0" +"@react-native/dev-middleware@0.74.85": + version "0.74.85" + resolved "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.74.85.tgz" + integrity sha512-BRmgCK5vnMmHaKRO+h8PKJmHHH3E6JFuerrcfE3wG2eZ1bcSr+QTu8DAlpxsDWvJvHpCi8tRJGauxd+Ssj/c7w== + dependencies: + ws "^6.2.2" + open "^7.0.3" + debug "^2.2.0" + connect "^3.6.5" + temp-dir "^2.0.0" + node-fetch "^2.2.0" + nullthrows "^1.1.1" + selfsigned "^2.4.1" + serve-static "^1.13.1" + chrome-launcher "^0.15.2" + "@isaacs/ttlcache" "^1.4.1" + "@react-native/debugger-frontend" "0.74.85" + "@rnx-kit/chromium-edge-launcher" "^1.0.0" + "@react-native/gradle-plugin@0.73.4": version "0.73.4" resolved "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.73.4.tgz" @@ -4470,6 +4903,11 @@ resolved "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.74.84.tgz" integrity sha512-wYWC5WWXqzCCe4PDogz9pNc4xH5ZamahW5XGSbrrYJ5V3walZ+7z43V6iEBJkZbLjj9YBcSttkXYGr1Xh4veAg== +"@react-native/gradle-plugin@0.74.85": + version "0.74.85" + resolved "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.74.85.tgz" + integrity sha512-1VQSLukJzaVMn1MYcs8Weo1nUW8xCas2XU1KuoV7OJPk6xPnEBFJmapmEGP5mWeEy7kcTXJmddEgy1wwW0tcig== + "@react-native/js-polyfills@0.73.1": version "0.73.1" resolved "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.73.1.tgz" @@ -4485,6 +4923,11 @@ resolved "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.74.84.tgz" integrity sha512-+PgxuUjBw9JVlz6m4ECsIJMLbDopnr4rpLmsG32hQaJrg0wMuvHtsgAY/J/aVCSG2GNUXexfjrnhc+O9yGOZXQ== +"@react-native/js-polyfills@0.74.85": + version "0.74.85" + resolved "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.74.85.tgz" + integrity sha512-gp4Rg9le3lVZeW7Cie6qLfekvRKZuhJ3LKgi1SFB4N154z1wIclypAJXVXgWBsy8JKJfTwRI+sffC4qZDlvzrg== + "@react-native/metro-babel-transformer@0.73.13": version "0.73.13" resolved "https://registry.npmjs.org/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.73.13.tgz" @@ -4515,6 +4958,16 @@ hermes-parser "0.19.1" "@react-native/babel-preset" "0.74.84" +"@react-native/metro-babel-transformer@0.74.85": + version "0.74.85" + resolved "https://registry.npmjs.org/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.74.85.tgz" + integrity sha512-JIrXqEwhTvWPtGArgMptIPGstMdXQIkwSjKVYt+7VC4a9Pw1GurIWanIJheEW6ZuCVvTc0VZkwglFz9JVjzDjA== + dependencies: + nullthrows "^1.1.1" + "@babel/core" "^7.20.0" + hermes-parser "0.19.1" + "@react-native/babel-preset" "0.74.85" + "@react-native/normalize-color@^2.0.0", "@react-native/normalize-color@^2.1.0": version "2.1.0" resolved "https://registry.npmjs.org/@react-native/normalize-color/-/normalize-color-2.1.0.tgz" @@ -4535,6 +4988,11 @@ resolved "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.84.tgz" integrity sha512-Y5W6x8cC5RuakUcTVUFNAIhUZ/tYpuqHZlRBoAuakrTwVuoNHXfQki8lj1KsYU7rW6e3VWgdEx33AfOQpdNp6A== +"@react-native/normalize-colors@0.74.85": + version "0.74.85" + resolved "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.85.tgz" + integrity sha512-pcE4i0X7y3hsAE0SpIl7t6dUc0B0NZLd1yv7ssm4FrLhWG+CGyIq4eFDXpmPU1XHmL5PPySxTAjEMiwv6tAmOw== + "@react-native/virtualized-lists@0.73.4": version "0.73.4" resolved "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.73.4.tgz" @@ -4559,6 +5017,14 @@ invariant "^2.2.4" nullthrows "^1.1.1" +"@react-native/virtualized-lists@0.74.85": + version "0.74.85" + resolved "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.74.85.tgz" + integrity sha512-jx2Zw0qlZteoQ+0KxRc7s4drsljLBEP534FaNZ950e9+CN9nVkLsV6rigcTjDR8wjKMSBWhKf0C0C3egYz7Ehg== + dependencies: + invariant "^2.2.4" + nullthrows "^1.1.1" + "@react-navigation/bottom-tabs@~6.5.7": version "6.5.11" resolved "https://registry.npmjs.org/@react-navigation/bottom-tabs/-/bottom-tabs-6.5.11.tgz" @@ -4704,13 +5170,13 @@ component-type "^1.2.1" join-component "^1.1.0" -"@shopify/flash-list@^1.7.0": - version "1.7.0" - resolved "https://registry.npmjs.org/@shopify/flash-list/-/flash-list-1.7.0.tgz" - integrity sha512-Uys8mWTb0Y34Ts1hD97KrVFbFH9oY7qbj/u1oSrAS5PJAackDFbndUEVuTYyXSyWxHY0sRutF5HgS1yNdhj+0A== +"@shopify/flash-list@1.6.4": + version "1.6.4" + resolved "https://registry.npmjs.org/@shopify/flash-list/-/flash-list-1.6.4.tgz" + integrity sha512-M2momcnY7swsvmpHIFDVbdOaFw4aQocJXA/lFP0Gpz+alQjFylqVKvszxl4atYO2SNbjxlb2L6hEP9WEcAknGQ== dependencies: - recyclerlistview "4.2.1" - tslib "2.6.3" + tslib "2.4.0" + recyclerlistview "4.2.0" "@sideway/address@^4.1.4": version "4.1.4" @@ -5551,7 +6017,7 @@ ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -ansi-styles@^4.1.0: +ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== @@ -5600,14 +6066,14 @@ ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -ansi-styles@^4.0.0: +ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" -ansi-styles@^4.1.0: +ansi-styles@^4.0.0: version "4.3.0" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== @@ -5663,7 +6129,7 @@ ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -ansi-styles@^4.0.0: +ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== @@ -5684,14 +6150,14 @@ ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -ansi-styles@^4.1.0: +ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" -ansi-styles@^4.0.0, ansi-styles@^4.1.0: +ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== @@ -5796,7 +6262,7 @@ ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -ansi-styles@^4.0.0, ansi-styles@^4.1.0: +ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== @@ -5817,7 +6283,7 @@ ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -ansi-styles@^4.1.0: +ansi-styles@^4.0.0: version "4.3.0" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== @@ -6254,6 +6720,22 @@ babel-preset-expo@~11.0.11: "@babel/plugin-transform-object-rest-spread" "^7.12.13" "@babel/plugin-transform-export-namespace-from" "^7.22.11" +babel-preset-expo@~11.0.12: + version "11.0.12" + resolved "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-11.0.12.tgz" + integrity sha512-hUuKdzSo8+H1oXQvKvlHRMHTxl+nN6YhFGlKiIxPa0E+gYfMEp8FnnStc/2Hwmip5rgJzQs6KF63KKRUc75xAg== + dependencies: + react-refresh "^0.14.2" + "@babel/preset-react" "^7.22.15" + "@babel/preset-typescript" "^7.23.0" + "@react-native/babel-preset" "0.74.85" + babel-plugin-react-compiler "^0.0.0-experimental-592953e-20240517" + babel-plugin-react-native-web "~0.19.10" + "@babel/plugin-proposal-decorators" "^7.12.9" + "@babel/plugin-transform-parameters" "^7.22.15" + "@babel/plugin-transform-object-rest-spread" "^7.12.13" + "@babel/plugin-transform-export-namespace-from" "^7.22.11" + babel-preset-fbjs@^3.4.0: version "3.4.0" resolved "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz" @@ -6605,7 +7087,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0: +chalk@^4.1.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6613,7 +7095,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.2: +chalk@^4.0.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6621,7 +7103,7 @@ chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.0: +chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6637,7 +7119,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.2: +chalk@^4.0.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6645,7 +7127,7 @@ chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0: +chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6653,7 +7135,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.2: +chalk@^4.0.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6685,7 +7167,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.0: +chalk@^4.0.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6701,7 +7183,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.2: +chalk@^4.0.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6717,7 +7199,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0: +chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6725,7 +7207,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.0, chalk@^4.1.2: +chalk@^4.1.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6733,7 +7215,7 @@ chalk@^4.1.0, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0: +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6749,7 +7231,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.0: +chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6765,7 +7247,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.2: +chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6773,7 +7255,7 @@ chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.0, chalk@^4.1.2: +chalk@^4.0.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6789,7 +7271,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0: +chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6797,7 +7279,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.2: +chalk@^4.0.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6821,7 +7303,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0: +chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6829,7 +7311,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.2: +chalk@^4.1.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6845,7 +7327,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.0, chalk@^4.1.2: +chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6853,7 +7335,7 @@ chalk@^4.1.0, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: +chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6877,7 +7359,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.2: +chalk@^4.0.0: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6885,7 +7367,7 @@ chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0: +chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -6933,7 +7415,7 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0: +chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -7932,7 +8414,7 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5: shebang-command "^1.2.0" which "^1.2.9" -cross-spawn@^7.0.3: +cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== @@ -7941,7 +8423,7 @@ cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: +cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== @@ -8168,21 +8650,21 @@ debug@2.6.9: dependencies: ms "2.0.0" -debug@2.6.9: +debug@2.6.9, debug@^2.2.0: version "2.6.9" resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" -debug@^2.2.0: +debug@2.6.9: version "2.6.9" resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" -debug@2.6.9: +debug@^2.6.9: version "2.6.9" resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== @@ -8203,7 +8685,7 @@ debug@^2.2.0: dependencies: ms "2.0.0" -debug@^2.6.9: +debug@^2.2.0: version "2.6.9" resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== @@ -9118,7 +9600,7 @@ execa@^5.0.0: signal-exit "^3.0.3" strip-final-newline "^2.0.0" -execa@^5.0.0, execa@^5.1.1: +execa@^5.0.0: version "5.1.1" resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== @@ -9163,7 +9645,7 @@ execa@^5.0.0: signal-exit "^3.0.3" strip-final-newline "^2.0.0" -execa@^5.0.0: +execa@^5.0.0, execa@^5.1.1: version "5.1.1" resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== @@ -9365,7 +9847,7 @@ expo@*: expo-modules-autolinking "1.11.1" whatwg-url-without-unicode "8.0.0-3" -expo@*, expo@~51.0.17: +expo@*: version "51.0.17" resolved "https://registry.npmjs.org/expo/-/expo-51.0.17.tgz" integrity sha512-VqLrdVMLdjCUhNuWWGdexqkiscnudY7OACafBrfqIFOejAeKceEaBU5YQIlNlOsKuB7PBMqDkhdZ+dG93Ul4ig== @@ -9386,10 +9868,31 @@ expo@*, expo@~51.0.17: expo-modules-autolinking "1.11.1" whatwg-url-without-unicode "8.0.0-3" -expo-apple-authentication@^6.4.1: - version "6.4.1" - resolved "https://registry.npmjs.org/expo-apple-authentication/-/expo-apple-authentication-6.4.1.tgz" - integrity sha512-tYpCx/cLHruOAPnU5K8UpAycWJWPgdPQra7qz6FGl53Agt8UJ4ev/qEkijbL959x46Ke9+6WSMOhLqt8JoypqA== +expo@*, expo@~51.0.24: + version "51.0.24" + resolved "https://registry.npmjs.org/expo/-/expo-51.0.24.tgz" + integrity sha512-HoOuNIWXzS6Gxifcb0N+qRt5K6iR9YitQaWIVNB8elyupvQdyI566IMgMBiO45NgpO5es0sfFNNBasxBHLkbUw== + dependencies: + "@expo/cli" "0.18.26" + expo-font "~12.0.9" + fbemitter "^3.0.0" + expo-asset "~10.0.10" + "@expo/config" "9.0.3" + "@babel/runtime" "^7.20.0" + expo-keep-awake "~13.0.2" + expo-file-system "~17.0.1" + babel-preset-expo "~11.0.12" + expo-modules-core "1.12.20" + "@expo/metro-config" "0.18.10" + "@expo/vector-icons" "^14.0.0" + "@expo/config-plugins" "8.0.8" + expo-modules-autolinking "1.11.1" + whatwg-url-without-unicode "8.0.0-3" + +expo-apple-authentication@~6.4.2: + version "6.4.2" + resolved "https://registry.npmjs.org/expo-apple-authentication/-/expo-apple-authentication-6.4.2.tgz" + integrity sha512-X4u1n3Ql1hOpztXHbKNq4I1l4+Ff82gC6RmEeW43Eht7VE6E8PrQBpYKw+JJv8osrCJt7R5O1PZwed6WLN5oig== expo-application@~5.9.0: version "5.9.1" @@ -9436,10 +9939,10 @@ expo-asset@~10.0.10: invariant "^2.2.4" expo-constants "~16.0.0" -expo-build-properties@^0.12.3: - version "0.12.3" - resolved "https://registry.npmjs.org/expo-build-properties/-/expo-build-properties-0.12.3.tgz" - integrity sha512-ihMKJyCHnKaiadI56UFYp2IdTxUhYa7e0ekHDfT+T3H2fk3jDYfh3n3wlUxFVeGyT7BE78tBTQ7QhMT6lluX2A== +expo-build-properties@~0.12.4: + version "0.12.4" + resolved "https://registry.npmjs.org/expo-build-properties/-/expo-build-properties-0.12.4.tgz" + integrity sha512-RzUQbL9c17jQevKEDvRynLZreurSSdSISSeK5LQkI0SeT/EzeuTH7hAqo3EFABv96E8qU811OOIAaJTBDK07Tg== dependencies: ajv "^8.11.0" semver "^7.6.0" @@ -9466,32 +9969,32 @@ expo-constants@*, expo-constants@~16.0.0, expo-constants@~16.0.2: "@expo/env" "~0.3.0" "@expo/config" "~9.0.0" -expo-dev-client@^4.0.19: - version "4.0.19" - resolved "https://registry.npmjs.org/expo-dev-client/-/expo-dev-client-4.0.19.tgz" - integrity sha512-u3CwIWpLqwVex4vvK9+2qtf17CYxaLXA7PJgtRB2dTsqIXJwyoazZZEMK6wjoL58Tp6GC7v9O9Z6lpayZ4BDKA== +expo-dev-client@~4.0.21: + version "4.0.21" + resolved "https://registry.npmjs.org/expo-dev-client/-/expo-dev-client-4.0.21.tgz" + integrity sha512-+zuVsKyp5tXTQUwDnTjtaOLf3TdmZ483Il9slg/LO15EsEFpl0zwI42DrQpzYmv617cgvywmp6iybGXjV3eZbQ== dependencies: - expo-dev-menu "5.0.15" + expo-dev-menu "5.0.17" expo-manifests "~0.14.0" - expo-dev-launcher "4.0.21" + expo-dev-launcher "4.0.23" expo-updates-interface "~0.16.2" expo-dev-menu-interface "1.8.3" -expo-dev-launcher@4.0.21: - version "4.0.21" - resolved "https://registry.npmjs.org/expo-dev-launcher/-/expo-dev-launcher-4.0.21.tgz" - integrity sha512-o2KHD0d0yNbF4NKdtGmxc6l4l/xfpTHaFSSvKXTC2ardh7moeLX02ich5qSsqSqCCQkZ2BBelYAfZUOH9cGuqA== +expo-dev-launcher@4.0.23: + version "4.0.23" + resolved "https://registry.npmjs.org/expo-dev-launcher/-/expo-dev-launcher-4.0.23.tgz" + integrity sha512-XG9VyFUoslBsBpJqtuOsen93u3hEw4rK7VSNqz8g+d8+AmHBv2rSuQheirPfxuSrLqGm49/ybWkHYqfs8CdlQw== dependencies: ajv "8.11.0" semver "^7.6.0" resolve-from "^5.0.0" - expo-dev-menu "5.0.15" + expo-dev-menu "5.0.17" expo-manifests "~0.14.0" -expo-dev-menu@5.0.15: - version "5.0.15" - resolved "https://registry.npmjs.org/expo-dev-menu/-/expo-dev-menu-5.0.15.tgz" - integrity sha512-a5aADQXOH/uw2NDy4fbgVl9wkAcZIfkrz8yzwQz0X6Yvf0a68zafqxSvvYkq+MmUTrFsuiST49s+mk4uRqHJMw== +expo-dev-menu@5.0.17: + version "5.0.17" + resolved "https://registry.npmjs.org/expo-dev-menu/-/expo-dev-menu-5.0.17.tgz" + integrity sha512-BnFSd6PKDaJenRKn2C4X50dWyqvvkVz9pE/6IKuUvGIsshkk9pCoZvsFOlJjM61/ojz1KXyY9O1FUPPI7B1A7w== dependencies: semver "^7.5.4" expo-dev-menu-interface "1.8.3" @@ -9551,20 +10054,27 @@ expo-font@~12.0.7: dependencies: fontfaceobserver "^2.1.0" -expo-image@~1.12.12: - version "1.12.12" - resolved "https://registry.npmjs.org/expo-image/-/expo-image-1.12.12.tgz" - integrity sha512-zZutUhKYqcqTH12o87pGCVLsuQeRK2vaNwxa8beznbDnmWevm3dmbOTCxaOhGgjyDxwcdwDa483Q4IKCXL6tBw== +expo-font@~12.0.9: + version "12.0.9" + resolved "https://registry.npmjs.org/expo-font/-/expo-font-12.0.9.tgz" + integrity sha512-seTCyf0tbgkAnp3ZI9ZfK9QVtURQUgFnuj+GuJ5TSnN0XsOtVe1s2RxTvmMgkfuvfkzcjJ69gyRpsZS1cC8hjw== + dependencies: + fontfaceobserver "^2.1.0" + +expo-image@~1.12.13: + version "1.12.13" + resolved "https://registry.npmjs.org/expo-image/-/expo-image-1.12.13.tgz" + integrity sha512-Dmuc5qmkIsl1nFj8C3Ux3wL2bN4QYW4dM9fkGA8kYiP5Fxf1lT36ldkHk2O2lPFRSFJDvLxT8Tz+7GTko5fzwQ== expo-image-loader@~4.7.0: version "4.7.0" resolved "https://registry.npmjs.org/expo-image-loader/-/expo-image-loader-4.7.0.tgz" integrity sha512-cx+MxxsAMGl9AiWnQUzrkJMJH4eNOGlu7XkLGnAXSJrRoIiciGaKqzeaD326IyCTV+Z1fXvIliSgNW+DscvD8g== -expo-image-picker@~15.0.6: - version "15.0.6" - resolved "https://registry.npmjs.org/expo-image-picker/-/expo-image-picker-15.0.6.tgz" - integrity sha512-WckDXKlvOwywOr5twCOyqTDwEhYHD2ty6k8V2qCWbHHKEVe6C0iGFQgHHIPFKY4E1yhlEADg1UMTt0mnhV2A9Q== +expo-image-picker@~15.0.7: + version "15.0.7" + resolved "https://registry.npmjs.org/expo-image-picker/-/expo-image-picker-15.0.7.tgz" + integrity sha512-u8qiPZNfDb+ap6PJ8pq2iTO7JKX+ikAUQ0K0c7gXGliKLxoXgDdDmXxz9/6QdICTshJBJlBvI0MwY5NWu7A/uw== dependencies: expo-image-loader "~4.7.0" @@ -9688,10 +10198,17 @@ expo-modules-core@1.12.18: dependencies: invariant "^2.2.4" -expo-notifications@~0.28.9: - version "0.28.9" - resolved "https://registry.npmjs.org/expo-notifications/-/expo-notifications-0.28.9.tgz" - integrity sha512-lilBS+0n+MC71jU6R9kYr91nev2God/OyxGRtab37XBmr7OWKL+jrahwdIRc2fJXq3hkQoiVWr4i9COGVFF8sA== +expo-modules-core@1.12.20: + version "1.12.20" + resolved "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.12.20.tgz" + integrity sha512-CCXjlgT8lDAufgt912P1W7TwD+KAylfIttc1Doh1a0hAfkdkUsDRmrgthnYrrxEo2ECVpbaB71Epp1bnZ1rRrA== + dependencies: + invariant "^2.2.4" + +expo-notifications@~0.28.15: + version "0.28.15" + resolved "https://registry.npmjs.org/expo-notifications/-/expo-notifications-0.28.15.tgz" + integrity sha512-T303dw2akcG4w8HBKI7+Y1v5kFxYy53DjlBSLBMo5f22vnLTHWaa8oOhmpwGRGU4uiX56Bw4q0wywCTSgbEamQ== dependencies: assert "^2.0.0" badgin "^1.1.5" @@ -9702,10 +10219,10 @@ expo-notifications@~0.28.9: expo-application "~5.9.0" "@expo/image-utils" "^0.5.0" -expo-router@~3.5.17: - version "3.5.17" - resolved "https://registry.npmjs.org/expo-router/-/expo-router-3.5.17.tgz" - integrity sha512-UGSx5vSZISgnhNYsbhbpFuYivS/tFQVoYqsWsFNdU1Cob+KdR2N1C68nDk9S9T6N66JdeCI7fDiEpvR2H1+Amw== +expo-router@~3.5.20: + version "3.5.20" + resolved "https://registry.npmjs.org/expo-router/-/expo-router-3.5.20.tgz" + integrity sha512-walzIxz6okN/Ppq6DjrEsCiS99PMAz5GykkCSGyhxmweVWtD6j1E5Eqp0n6KVL1kcxDTSFAwypf/gezkaxLx6A== dependencies: "@expo/server" "^0.4.0" schema-utils "^4.0.1" @@ -9749,23 +10266,23 @@ expo-structured-headers@~3.8.0: resolved "https://registry.npmjs.org/expo-structured-headers/-/expo-structured-headers-3.8.0.tgz" integrity sha512-R+gFGn0x5CWl4OVlk2j1bJTJIz4KO8mPoCHpRHmfqMjmrMvrOM0qQSY3V5NHXwp1yT/L2v8aUmFQsBRIdvi1XA== -expo-system-ui@~3.0.6: - version "3.0.6" - resolved "https://registry.npmjs.org/expo-system-ui/-/expo-system-ui-3.0.6.tgz" - integrity sha512-ewmGIoVHbcifRr2Kf4EJxc1ZoC3buVwlXUhEUzyX37LRLpMKK4CjIwe3G7N6nZ0DJACTFgY8WpRhbCUPICaOig== +expo-system-ui@~3.0.7: + version "3.0.7" + resolved "https://registry.npmjs.org/expo-system-ui/-/expo-system-ui-3.0.7.tgz" + integrity sha512-KAs72F5JKhdIfPR9ZNVlRubTPK9uUuevPy5oYEp12xNEzSQcjZKvypH5NpwJuNWkXzrp3n3vZ+3pXsudA7J3KA== dependencies: debug "^4.3.2" - "@react-native/normalize-colors" "0.74.84" + "@react-native/normalize-colors" "0.74.85" expo-tracking-transparency@~4.0.2: version "4.0.2" resolved "https://registry.npmjs.org/expo-tracking-transparency/-/expo-tracking-transparency-4.0.2.tgz" integrity sha512-ZQzdR9D6LHr60QEwwJq2OLl0bwzgqt+O2C/OqSchFR1IekL4syf53f9QmjHK8oRIkLzEGxKIirTrKcE0j9Ko6A== -expo-updates@~0.25.18: - version "0.25.18" - resolved "https://registry.npmjs.org/expo-updates/-/expo-updates-0.25.18.tgz" - integrity sha512-nlmzdtzy7VWsBZzI/P9fpt7fJcJJRl7rKhp3lGXfGLIty6KqQ651hAzvTNh9NrXeWnkiV1gtc7XA860r4mHdog== +expo-updates@~0.25.21: + version "0.25.21" + resolved "https://registry.npmjs.org/expo-updates/-/expo-updates-0.25.21.tgz" + integrity sha512-eNElrzLFHky2au0H8MqdAJdqh40412PHCdANdXtB/P/XIS1xVte74T9rUf053iPswnLLuQfCUpZYSfRKTcsDlg== dependencies: arg "4.1.0" chalk "^4.1.2" @@ -9776,9 +10293,9 @@ expo-updates@~0.25.18: resolve-from "^5.0.0" expo-manifests "~0.14.0" expo-eas-client "~0.12.0" - "@expo/fingerprint" "^0.10.0" + "@expo/fingerprint" "^0.10.2" "@expo/spawn-async" "^1.7.2" - "@expo/config-plugins" "~8.0.0-beta.0" + "@expo/config-plugins" "~8.0.8" expo-updates-interface "~0.16.2" expo-structured-headers "~3.8.0" "@expo/code-signing-certificates" "0.0.5" @@ -9954,7 +10471,7 @@ find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" -find-up@^4.1.0: +find-up@^4.0.0: version "4.1.0" resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== @@ -9962,7 +10479,7 @@ find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" -find-up@^4.0.0: +find-up@^4.1.0: version "4.1.0" resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== @@ -10085,7 +10602,7 @@ fs-extra@9.0.0: jsonfile "^6.0.1" universalify "^1.0.0" -fs-extra@^9.0.0, fs-extra@^9.1.0: +fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== @@ -10095,7 +10612,7 @@ fs-extra@^9.0.0, fs-extra@^9.1.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@^9.1.0: +fs-extra@^9.0.0: version "9.1.0" resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== @@ -10105,7 +10622,7 @@ fs-extra@^9.1.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@^9.0.0: +fs-extra@^9.0.0, fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== @@ -13086,12 +13603,12 @@ mkdirp@^1.0.4: resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -mkdirp@^1.0.4: +mkdirp@^1.0.3: version "1.0.4" resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -mkdirp@^1.0.3: +mkdirp@^1.0.4: version "1.0.4" resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== @@ -13477,21 +13994,21 @@ onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" -onetime@^5.1.0, onetime@^5.1.2: +onetime@^5.1.2: version "5.1.2" resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" -onetime@^5.1.2: +onetime@^5.1.0: version "5.1.2" resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" -onetime@^5.1.2: +onetime@^5.1.0, onetime@^5.1.2: version "5.1.2" resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== @@ -13512,7 +14029,7 @@ onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" -onetime@^5.1.0: +onetime@^5.1.2: version "5.1.2" resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== @@ -13649,7 +14166,7 @@ p-finally@^1.0.0: resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== -p-limit@^2.2.0: +p-limit@^2.0.0: version "2.3.0" resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== @@ -13677,7 +14194,7 @@ p-limit@^2.2.0: dependencies: p-try "^2.0.0" -p-limit@^2.0.0: +p-limit@^2.2.0: version "2.3.0" resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== @@ -13836,7 +14353,7 @@ path-key@^2.0.0, path-key@^2.0.1: resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== -path-key@^3.1.0: +path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== @@ -13856,12 +14373,12 @@ path-key@^3.0.0, path-key@^3.1.0: resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-key@^3.1.0: +path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-key@^3.0.0, path-key@^3.1.0: +path-key@^3.1.0: version "3.1.1" resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== @@ -13876,7 +14393,7 @@ path-key@^3.0.0, path-key@^3.1.0: resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-key@^3.0.0, path-key@^3.1.0: +path-key@^3.1.0: version "3.1.1" resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== @@ -14342,7 +14859,7 @@ react-native@*, "react-native@^0.0.0-0 || >=0.60 <1.0": ws "^6.2.2" yargs "^17.6.2" -react-native@*, react-native@0.74.2, "react-native@>= 0.30.0", react-native@>=0.46, react-native@>=0.58, react-native@>=0.59, react-native@>=0.6.0, react-native@>=0.62.x: +react-native@*, react-native@>=0.46, react-native@>=0.58, react-native@>=0.59, react-native@>=0.6.0, react-native@>=0.62.x: version "0.74.2" resolved "https://registry.npmjs.org/react-native/-/react-native-0.74.2.tgz" integrity sha512-EBMBjPPL4/GjHMP4NqsZabT3gI5WU9cSmduABGAGrd8uIcmTZ5F2Ng9k6gFmRm7n8e8CULxDNu98ZpQfBjl7Bw== @@ -14385,6 +14902,49 @@ react-native@*, react-native@0.74.2, "react-native@>= 0.30.0", react-native@>=0. "@react-native-community/cli-platform-ios" "13.6.8" "@react-native-community/cli-platform-android" "13.6.8" +react-native@*, react-native@0.74.3, "react-native@>= 0.30.0": + version "0.74.3" + resolved "https://registry.npmjs.org/react-native/-/react-native-0.74.3.tgz" + integrity sha512-UFutCC6WEw6HkxlcpQ2BemKqi0JkwrgDchYB5Svi8Sp4Xwt4HA6LGEjNQgZ+3KM44bjyFRpofQym0uh0jACGng== + dependencies: + ws "^6.2.2" + anser "^1.4.9" + chalk "^4.0.0" + yargs "^17.6.2" + mkdirp "^0.5.1" + promise "^8.3.0" + base64-js "^1.5.1" + invariant "^2.2.4" + scheduler "0.24.0-canary-efb381bbf-20230505" + ansi-regex "^5.0.0" + nullthrows "^1.1.1" + jsc-android "^250231.0.0" + memoize-one "^5.0.0" + whatwg-fetch "^3.0.0" + metro-runtime "^0.80.3" + pretty-format "^26.5.2" + react-refresh "^0.14.0" + abort-controller "^3.0.0" + metro-source-map "^0.80.3" + event-target-shim "^5.0.1" + stacktrace-parser "^0.1.10" + flow-enums-runtime "^0.0.6" + react-devtools-core "^5.0.0" + regenerator-runtime "^0.13.2" + "@react-native/codegen" "0.74.85" + jest-environment-node "^29.6.3" + react-shallow-renderer "^16.15.0" + "@react-native/js-polyfills" "0.74.85" + "@react-native-community/cli" "13.6.9" + "@react-native/gradle-plugin" "0.74.85" + "@react-native/assets-registry" "0.74.85" + "@react-native/normalize-colors" "0.74.85" + "@jest/create-cache-key-function" "^29.6.3" + "@react-native/virtualized-lists" "0.74.85" + "@react-native/community-cli-plugin" "0.74.85" + "@react-native-community/cli-platform-ios" "13.6.9" + "@react-native-community/cli-platform-android" "13.6.9" + react-native-animatable@1.3.3: version "1.3.3" resolved "https://registry.npmjs.org/react-native-animatable/-/react-native-animatable-1.3.3.tgz" @@ -14471,10 +15031,10 @@ react-native-reanimated-carousel@^3.5.1: resolved "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-4.8.2.tgz" integrity sha512-ffUOv8BJQ6RqO3nLml5gxJ6ab3EestPiyWekxdzO/1MQ7NF8fW1Mzh1C5QE9yq573Xefnc7FuzGXjtesZGv7cQ== -react-native-safe-area-context@*, react-native-safe-area-context@4.10.1: - version "4.10.1" - resolved "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-4.10.1.tgz" - integrity sha512-w8tCuowDorUkPoWPXmhqosovBr33YsukkwYCDERZFHAxIkx6qBadYxfeoaJ91nCQKjkNzGrK5qhoNOeSIcYSpA== +react-native-safe-area-context@*, react-native-safe-area-context@4.10.5: + version "4.10.5" + resolved "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-4.10.5.tgz" + integrity sha512-Wyb0Nqw2XJ6oZxW/cK8k5q7/UAhg/wbEG6UVf89rQqecDZTDA5ic//P9J6VvJRVZerzGmxWQpVuM7f+PRYUM4g== "react-native-screens@>= 3.0.0": version "3.29.0" @@ -14484,10 +15044,18 @@ react-native-safe-area-context@*, react-native-safe-area-context@4.10.1: react-freeze "^1.0.0" warn-once "^0.1.0" -react-native-screens@*, react-native-screens@3.31.1: +react-native-screens@3.31.1: version "3.31.1" resolved "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.31.1.tgz" integrity sha512-8fRW362pfZ9y4rS8KY5P3DFScrmwo/vu1RrRMMx0PNHbeC9TLq0Kw1ubD83591yz64gLNHFLTVkTJmWeWCXKtQ== + dependencies: + warn-once "^0.1.0" + react-freeze "^1.0.0" + +react-native-screens@*: + version "3.34.0" + resolved "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.34.0.tgz" + integrity sha512-8ri3Pd9QcpfXnVckOe/Lnto+BXmSPHV/Q0RB0XW0gDKsCv5wi5k7ez7g1SzgiYHl29MSdiqgjH30zUyOOowOaw== dependencies: react-freeze "^1.0.0" warn-once "^0.1.0" @@ -14653,13 +15221,13 @@ recoil@*, recoil@^0.7.7: dependencies: hamt_plus "1.0.2" -recyclerlistview@4.2.1: - version "4.2.1" - resolved "https://registry.npmjs.org/recyclerlistview/-/recyclerlistview-4.2.1.tgz" - integrity sha512-NtVYjofwgUCt1rEsTp6jHQg/47TWjnO92TU2kTVgJ9wsc/ely4HnizHHa+f/dI7qaw4+zcSogElrLjhMltN2/g== +recyclerlistview@4.2.0: + version "4.2.0" + resolved "https://registry.npmjs.org/recyclerlistview/-/recyclerlistview-4.2.0.tgz" + integrity sha512-uuBCi0c+ggqHKwrzPX4Z/mJOzsBbjZEAwGGmlwpD/sD7raXixdAbdJ6BTcAmuWG50Cg4ru9p12M94Njwhr/27A== dependencies: - lodash.debounce "4.0.8" prop-types "15.8.1" + lodash.debounce "4.0.8" ts-object-utils "0.0.5" redent@^3.0.0: @@ -15049,7 +15617,7 @@ selfsigned@^2.4.1: "@types/node-forge" "^1.3.0" node-forge "^1" -semver@^5.5.0: +semver@^5.6.0: version "5.7.2" resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== @@ -15059,7 +15627,7 @@ semver@^5.6.0: resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@^5.6.0: +semver@^5.5.0: version "5.7.2" resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== @@ -15093,42 +15661,42 @@ semver@7.5.3: dependencies: lru-cache "^6.0.0" -semver@^7.5.3: +semver@^7.5.2: version "7.5.4" resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -semver@^7.3.5, semver@^7.5.2, semver@^7.5.4: +semver@^7.5.4: version "7.5.4" resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -semver@^7.5.2: +semver@^7.3.5, semver@^7.5.2, semver@^7.5.4: version "7.5.4" resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -semver@^7.5.2: +semver@^7.5.3: version "7.5.4" resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -semver@^7.5.3: +semver@^7.3.5: version "7.5.4" resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -semver@^7.3.5: +semver@^7.5.3: version "7.5.4" resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== @@ -15142,14 +15710,14 @@ semver@^7.5.3: dependencies: lru-cache "^6.0.0" -semver@^7.5.4: +semver@^7.5.3: version "7.5.4" resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -semver@^7.5.3: +semver@^7.5.2: version "7.5.4" resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== @@ -15485,7 +16053,7 @@ source-map@0.5.6: resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz" integrity sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA== -source-map@^0.5.6: +source-map@^0.5.6, source-map@^0.5.7: version "0.5.7" resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== @@ -15495,7 +16063,7 @@ source-map@^0.5.6: resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== -source-map@^0.5.6, source-map@^0.5.7: +source-map@^0.5.6: version "0.5.7" resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== @@ -15510,12 +16078,12 @@ source-map@^0.6.1: resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@~0.6.1: +source-map@^0.6.0: version "0.6.1" resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@^0.6.0: +source-map@~0.6.1: version "0.6.1" resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== @@ -15789,14 +16357,14 @@ strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" -strip-ansi@^5.2.0: +strip-ansi@^5.0.0, strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== dependencies: ansi-regex "^4.1.0" -strip-ansi@^5.0.0, strip-ansi@^5.2.0: +strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== @@ -16019,7 +16587,7 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-color@^7.1.0: +supports-color@^7.0.0: version "7.2.0" resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== @@ -16124,7 +16692,7 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-color@^7.0.0: +supports-color@^7.1.0: version "7.2.0" resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== @@ -16543,16 +17111,16 @@ tsconfig-paths@^3.15.0: minimist "^1.2.6" strip-bom "^3.0.0" +tslib@2.4.0: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + tslib@^2.0.1, tslib@^2.1.0, tslib@^2.4.0, tslib@^2.6.2: version "2.6.2" resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== -tslib@2.6.3: - version "2.6.3" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz" - integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ== - turbo-stream@^2.0.0: version "2.0.1" resolved "https://registry.npmjs.org/turbo-stream/-/turbo-stream-2.0.1.tgz" @@ -17237,7 +17805,7 @@ ws@^6.2.2: dependencies: async-limiter "~1.0.0" -ws@^7.5.1: +ws@^7: version "7.5.9" resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz" integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== @@ -17247,7 +17815,7 @@ ws@^7.5.1: resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz" integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== -ws@^7: +ws@^7.5.1: version "7.5.9" resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz" integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==