diff --git a/.github/workflows/build-submit-android.yml b/.github/workflows/build-submit-android.yml
index e6ce20b86d..c487c2ab8a 100644
--- a/.github/workflows/build-submit-android.yml
+++ b/.github/workflows/build-submit-android.yml
@@ -119,3 +119,15 @@ jobs:
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CLIENT_ALERT_WEBHOOK }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
+
+ - name: ⬇️ Restore Cache
+ id: get-base-commit
+ uses: actions/cache@v4
+ if: ${{ inputs.profile == 'testflight' }}
+ with:
+ path: most-recent-testflight-commit.txt
+ key: most-recent-testflight-commit
+
+ - name: ✏️ Write commit hash to cache
+ if: ${{ inputs.profile == 'testflight' }}
+ run: echo ${{ github.sha }} > most-recent-testflight-commit.txt
diff --git a/.github/workflows/build-submit-ios.yml b/.github/workflows/build-submit-ios.yml
index bfd0670956..c1693b814d 100644
--- a/.github/workflows/build-submit-ios.yml
+++ b/.github/workflows/build-submit-ios.yml
@@ -47,6 +47,10 @@ jobs:
- name: ⚙️ Install dependencies
run: yarn install
+ - uses: maxim-lobanov/setup-xcode@v1
+ with:
+ xcode-version: '15.3'
+
- name: ☕️ Setup Cocoapods
uses: maxim-lobanov/setup-cocoapods@v1
with:
@@ -76,3 +80,15 @@ jobs:
- name: 🚀 Deploy
run: eas submit -p ios --non-interactive --path build.ipa
+
+ - name: ⬇️ Restore Cache
+ id: get-base-commit
+ uses: actions/cache@v4
+ if: ${{ inputs.profile == 'testflight' }}
+ with:
+ path: most-recent-testflight-commit.txt
+ key: most-recent-testflight-commit
+
+ - name: ✏️ Write commit hash to cache
+ if: ${{ inputs.profile == 'testflight' }}
+ run: echo ${{ github.sha }} > most-recent-testflight-commit.txt
diff --git a/.github/workflows/bundle-deploy-eas-update.yml b/.github/workflows/bundle-deploy-eas-update.yml
index 3d49404677..a684f525fd 100644
--- a/.github/workflows/bundle-deploy-eas-update.yml
+++ b/.github/workflows/bundle-deploy-eas-update.yml
@@ -26,7 +26,7 @@ jobs:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}-deploy
cancel-in-progress: true
outputs:
- fingerprint-is-different: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different }}
+ changes-detected: ${{ steps.fingerprint.outputs.includes-changes }}
steps:
- name: Check for EXPO_TOKEN
@@ -49,69 +49,22 @@ jobs:
with:
fetch-depth: 0
- - name: ⬇️ Get last successful deployment commit from the cache
- id: get-base-commit
- uses: actions/cache@v4
- with:
- path: last-successful-commit-hash.txt
- key: last-successful-deployment-commit-${{ github.ref_name }}-${{ github.sha }}
- restore-keys: |
- last-successful-deployment-commit-${{ github.ref_name }}-
-
- - name: Add the last successful deployment commit to the output
- id: last-successful-commit
- run: echo base-commit=$(cat last-successful-commit-hash.txt) >> "$GITHUB_OUTPUT"
-
- name: ⬇️ Fetch commits from base branch
if: ${{ github.ref != 'refs/heads/main' }}
run: git fetch origin main:main --depth 100
- # This should get the current production release's commit's hash to see if the update is compatible
- - name: 🕵️ Get the base commit
- id: base-commit
- run: |
- if ${{ inputs.channel == 'production' }}; then
- echo base-commit=$(git show-ref -s ${{ inputs.runtimeVersion }}) >> "$GITHUB_OUTPUT"
- else
- echo base-commit=${{ steps.last-successful-commit.base-commit }} >> "$GITHUB_OUTPUT"
- fi
-
- - name: ✓ Make sure we found a base commit
- run: |
- if [ -z "${{ steps.base-commit.outputs.base-commit }}" && ${{ inputs.channel == 'production' }} ]; then
- echo "Could not find a base commit for this release. Exiting."
- exit 1
- fi
-
- name: 🔧 Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
- - name: ⚙️ Install Dependencies
- run: yarn install
-
- # Run the fingerprint
- - name: 📷 Check fingerprint
+ - name: 📷 Check fingerprint and install dependencies
id: fingerprint
- uses: expo/expo-github-action/fingerprint@main
+ uses: bluesky-social/github-actions/fingerprint-native@main
with:
- previous-git-commit: ${{ steps.base-commit.outputs.base-commit }}
-
- - name: 👀 Debug fingerprint
- id: fingerprint-debug
- run: |
- echo "previousGitCommit=${{ steps.fingerprint.outputs.previous-git-commit }} currentGitCommit=${{ steps.fingerprint.outputs.current-git-commit }}"
- echo "isPreviousFingerprintEmpty=${{ steps.fingerprint.outputs.previous-fingerprint == '' }}"
-
- fingerprintDiff='$(echo "${{ steps.fingerprint.outputs.fingerprint-diff }}")'
-
- if [[ $fingerprintDiff =~ "bareRncliAutolinking" || $fingerprintDiff =~ "expoAutolinkingAndroid" || $fingerprintDiff =~ "expoAutolinkingIos" ]]; then
- echo fingerprint-is-different="true" >> "$GITHUB_OUTPUT"
- else
- echo fingerprint-is-different="false" >> "$GITHUB_OUTPUT"
- fi
+ profile: ${{ inputs.channel || 'testflight' }}
+ previous-commit-tag: ${{ inputs.runtimeVersion }}
- name: Lint check
run: yarn lint
@@ -127,22 +80,22 @@ jobs:
- name: 🔨 Setup EAS
uses: expo/expo-github-action@v8
- if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}}
+ if: ${{ !steps.fingerprint.outputs.includes-changes }}
with:
expo-version: latest
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: ⛏️ Setup Expo
- if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}}
+ if: ${{ !steps.fingerprint.outputs.includes-changes }}
run: yarn global add eas-cli-local-build-plugin
- name: 🪛 Setup jq
- if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}}
+ if: ${{ !steps.fingerprint.outputs.includes-changes }}
uses: dcarbone/install-jq-action@v2
- name: ✏️ Write environment variables
- if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}}
+ if: ${{ !steps.fingerprint.outputs.includes-changes }}
run: |
export json='${{ secrets.GOOGLE_SERVICES_TOKEN }}'
echo "${{ secrets.ENV_TOKEN }}" > .env
@@ -151,19 +104,28 @@ jobs:
echo "$json" > google-services.json
- name: 🏗️ Create Bundle
- if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}}
+ if: ${{ !steps.fingerprint.outputs.includes-changes }}
run: EXPO_PUBLIC_ENV="${{ inputs.channel || 'testflight' }}" yarn export
- name: 📦 Package Bundle and 🚀 Deploy
- if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}}
+ if: ${{ !steps.fingerprint.outputs.includes-changes }}
run: yarn use-build-number bash scripts/bundleUpdate.sh
env:
DENIS_API_KEY: ${{ secrets.DENIS_API_KEY }}
RUNTIME_VERSION: ${{ inputs.runtimeVersion }}
CHANNEL_NAME: ${{ inputs.channel || 'testflight' }}
- - name: Save successful deployment commit hash
- run: echo ${{ steps.fingerprint.outputs.current-git-commit }} > last-successful-commit-hash.txt
+ - name: ⬇️ Restore Cache
+ id: get-base-commit
+ uses: actions/cache@v4
+ if: ${{ !steps.fingerprint.outputs.includes-changes }}
+ with:
+ path: most-recent-testflight-commit.txt
+ key: most-recent-testflight-commit
+
+ - name: ✏️ Write commit hash to cache
+ if: ${{ !steps.fingerprint.outputs.includes-changes }}
+ run: echo ${{ github.sha }} > most-recent-testflight-commit.txt
# GitHub actions are horrible so let's just copy paste this in
buildIfNecessaryIOS:
@@ -171,11 +133,11 @@ jobs:
runs-on: macos-14
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}-build-ios
- cancel-in-progress: false
+ cancel-in-progress: true
needs: [bundleDeploy]
# Gotta check if its NOT '[]' because any md5 hash in the outputs is detected as a possible secret and won't be
# available here
- if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.fingerprint-is-different == 'true' }}
+ if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected }}
steps:
- name: Check for EXPO_TOKEN
run: >
@@ -208,6 +170,10 @@ jobs:
- name: ⚙️ Install dependencies
run: yarn install
+ - uses: maxim-lobanov/setup-xcode@v1
+ with:
+ xcode-version: '15.3'
+
- name: ☕️ Setup Cocoapods
uses: maxim-lobanov/setup-cocoapods@v1
with:
@@ -238,6 +204,18 @@ jobs:
- name: 🚀 Deploy
run: eas submit -p ios --non-interactive --path build.ipa
+ - name: ⬇️ Restore Cache
+ id: get-base-commit
+ uses: actions/cache@v4
+ if: ${{ inputs.channel == 'testflight' }}
+ with:
+ path: most-recent-testflight-commit.txt
+ key: most-recent-testflight-commit
+
+ - name: ✏️ Write commit hash to cache
+ if: ${{ inputs.channel == 'testflight' }}
+ run: echo ${{ github.sha }} > most-recent-testflight-commit.txt
+
buildIfNecessaryAndroid:
name: Build and Submit Android
runs-on: ubuntu-latest
@@ -247,7 +225,7 @@ jobs:
needs: [ bundleDeploy ]
# Gotta check if its NOT '[]' because any md5 hash in the outputs is detected as a possible secret and won't be
# available here
- if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.fingerprint-is-different == 'true' }}
+ if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected }}
steps:
- name: Check for EXPO_TOKEN
@@ -325,3 +303,15 @@ jobs:
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CLIENT_ALERT_WEBHOOK }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
+
+ - name: ⬇️ Restore Cache
+ id: get-base-commit
+ uses: actions/cache@v4
+ if: ${{ inputs.channel != 'testflight' && inputs.channel != 'production' }}
+ with:
+ path: most-recent-testflight-commit.txt
+ key: most-recent-testflight-commit
+
+ - name: ✏️ Write commit hash to cache
+ if: ${{ inputs.channel != 'testflight' && inputs.channel != 'production' }}
+ run: echo ${{ github.sha }} > most-recent-testflight-commit.txt
diff --git a/.github/workflows/pull-request-commit.yml b/.github/workflows/pull-request-commit.yml
index 6c796fd7c4..53e3cc9983 100644
--- a/.github/workflows/pull-request-commit.yml
+++ b/.github/workflows/pull-request-commit.yml
@@ -1,7 +1,7 @@
# Credit for fingerprint action https://github.com/expo/expo
# https://github.com/expo/expo/blob/main/.github/workflows/pr-labeler.yml
---
-name: PR labeler
+name: PR Tests
on:
push:
@@ -21,7 +21,7 @@ permissions:
jobs:
webpack-analyzer:
runs-on: ubuntu-22.04
- if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
+ if: ${{ github.event.pull_request.head.repo.full_name == github.repository && github.event_name == 'pull_request'}}
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v4
@@ -94,10 +94,9 @@ jobs:
| ${{ steps.get-diff.outputs.base_file_string }} | ${{ steps.get-diff.outputs.pr_file_string }} | ${{ steps.get-diff.outputs.diff_file_string }} (${{ steps.get-diff.outputs.percent }}%) |
---
- test-suite-fingerprint:
+ fingerprint-native:
runs-on: ubuntu-22.04
- if: ${{ github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push' }}
- concurrency: fingerprint-${{ github.event_name != 'pull_request' && 'main' || github.run_id }}
+ if: ${{ github.event.pull_request.head.repo.full_name == github.repository && github.event_name == 'pull_request'}}
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v4
@@ -114,35 +113,23 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- - name: ⚙️ Install Dependencies
- run: yarn install
-
- - name: Get the base commit
- id: base-commit
- run: echo base-commit=$(git log -n 1 main --pretty=format:'%H') >> "$GITHUB_OUTPUT"
-
- - name: 📷 Check fingerprint
+ - name: 📷 Check fingerprint and install dependencies
id: fingerprint
- uses: expo/expo-github-action/fingerprint@main
+ uses: bluesky-social/github-actions/fingerprint-native@main
with:
- previous-git-commit: ${{ steps.base-commit.outputs.base-commit }}
-
- - name: 👀 Debug fingerprint
- run: |
- echo "previousGitCommit=${{ steps.fingerprint.outputs.previous-git-commit }} currentGitCommit=${{ steps.fingerprint.outputs.current-git-commit }}"
- echo "isPreviousFingerprintEmpty=${{ steps.fingerprint.outputs.previous-fingerprint == '' }}"
+ profile: pull-request
- name: 💬 Drop a comment
uses: marocchino/sticky-pull-request-comment@v2
- if: ${{ github.event_name == 'pull_request' && steps.fingerprint.outputs.fingerprint-diff != '[]' }}
+ if: ${{ steps.fingerprint.outputs.includes-changes }}
with:
header: fingerprint-diff
message: |
- The Pull Request introduced fingerprint changes against the base commit: ${{ steps.fingerprint.outputs.previous-git-commit }}
+ The Pull Request introduced fingerprint changes against the base commit:
Fingerprint diff
```json
- ${{ steps.fingerprint.outputs.fingerprint-diff }}
+ ${{ steps.fingerprint.outputs.diff }}
```
@@ -152,7 +139,7 @@ jobs:
- name: 💬 Delete comment
uses: marocchino/sticky-pull-request-comment@v2
- if: ${{ github.event_name == 'pull_request' && steps.fingerprint.outputs.fingerprint-diff == '[]' }}
+ if: ${{ !steps.fingerprint.outputs.includes-changes }}
with:
header: fingerprint-diff
delete: true
diff --git a/__tests__/lib/string.test.ts b/__tests__/lib/string.test.ts
index 75cbaeea56..cf21d8dd25 100644
--- a/__tests__/lib/string.test.ts
+++ b/__tests__/lib/string.test.ts
@@ -142,7 +142,8 @@ describe('makeRecordUri', () => {
})
})
-describe('ago', () => {
+// FIXME: Reenable after fixing non-deterministic test.
+describe.skip('ago', () => {
const oneYearDate = new Date(
new Date().setMonth(new Date().getMonth() - 11),
).setDate(new Date().getDate() - 28)
diff --git a/app.config.js b/app.config.js
index b79033d276..c39f2a69bf 100644
--- a/app.config.js
+++ b/app.config.js
@@ -175,7 +175,6 @@ module.exports = function (config) {
checkAutomatically: 'NEVER',
channel: UPDATES_CHANNEL,
},
- assetBundlePatterns: ['**/*'],
plugins: [
'expo-localization',
Boolean(process.env.SENTRY_AUTH_TOKEN) && 'sentry-expo',
@@ -183,7 +182,7 @@ module.exports = function (config) {
'expo-build-properties',
{
ios: {
- deploymentTarget: '13.4',
+ deploymentTarget: '14.0',
newArchEnabled: false,
},
android: {
@@ -212,6 +211,7 @@ module.exports = function (config) {
],
'./plugins/withAndroidManifestPlugin.js',
'./plugins/withAndroidManifestFCMIconPlugin.js',
+ './plugins/withAndroidManifestLaunchModePlugin.js',
'./plugins/withAndroidStylesWindowBackgroundPlugin.js',
'./plugins/withAndroidStylesAccentColorPlugin.js',
'./plugins/withAndroidSplashScreenStatusBarTranslucentPlugin.js',
diff --git a/assets/icons/closeQuote_filled_stroke2_corner0_rounded.svg b/assets/icons/closeQuote_filled_stroke2_corner0_rounded.svg
new file mode 100644
index 0000000000..41e75887c0
--- /dev/null
+++ b/assets/icons/closeQuote_filled_stroke2_corner0_rounded.svg
@@ -0,0 +1 @@
+
diff --git a/assets/icons/closeQuote_stroke2_corner0_rounded.svg b/assets/icons/closeQuote_stroke2_corner0_rounded.svg
new file mode 100644
index 0000000000..3c76c73920
--- /dev/null
+++ b/assets/icons/closeQuote_stroke2_corner0_rounded.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/assets/icons/closeQuote_stroke2_corner1_rounded.svg b/assets/icons/closeQuote_stroke2_corner1_rounded.svg
new file mode 100644
index 0000000000..b27eb94f23
--- /dev/null
+++ b/assets/icons/closeQuote_stroke2_corner1_rounded.svg
@@ -0,0 +1 @@
+
diff --git a/assets/icons/openQuote_filled_stroke2_corner0_rounded.svg b/assets/icons/openQuote_filled_stroke2_corner0_rounded.svg
new file mode 100644
index 0000000000..e8141a1128
--- /dev/null
+++ b/assets/icons/openQuote_filled_stroke2_corner0_rounded.svg
@@ -0,0 +1 @@
+
diff --git a/assets/icons/openQuote_stroke2_corner0_rounded.svg b/assets/icons/openQuote_stroke2_corner0_rounded.svg
new file mode 100644
index 0000000000..eee6344cee
--- /dev/null
+++ b/assets/icons/openQuote_stroke2_corner0_rounded.svg
@@ -0,0 +1 @@
+
diff --git a/assets/icons/personPlus_filled_stroke2_corner0_rounded.svg b/assets/icons/personPlus_filled_stroke2_corner0_rounded.svg
new file mode 100644
index 0000000000..d46976d84b
--- /dev/null
+++ b/assets/icons/personPlus_filled_stroke2_corner0_rounded.svg
@@ -0,0 +1 @@
+
diff --git a/assets/icons/personPlus_stroke2_corner0_rounded.svg b/assets/icons/personPlus_stroke2_corner0_rounded.svg
new file mode 100644
index 0000000000..118268bf97
--- /dev/null
+++ b/assets/icons/personPlus_stroke2_corner0_rounded.svg
@@ -0,0 +1 @@
+
diff --git a/assets/icons/repost_stroke2_corner0_rounded.svg b/assets/icons/repost_stroke2_corner0_rounded.svg
new file mode 100644
index 0000000000..a3cff9c62d
--- /dev/null
+++ b/assets/icons/repost_stroke2_corner0_rounded.svg
@@ -0,0 +1 @@
+
diff --git a/assets/icons/repost_stroke2_corner3_rounded.svg b/assets/icons/repost_stroke2_corner3_rounded.svg
new file mode 100644
index 0000000000..8aa7f727bd
--- /dev/null
+++ b/assets/icons/repost_stroke2_corner3_rounded.svg
@@ -0,0 +1 @@
+
diff --git a/babel.config.js b/babel.config.js
index a54deca7cd..c976d04b67 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -8,9 +8,6 @@ module.exports = function (api) {
{
lazyImports: true,
native: {
- // We should be able to remove this after upgrading Expo
- // to a version that includes https://github.com/expo/expo/pull/24672.
- unstable_transformProfile: 'hermes-stable',
// Disable ESM -> CJS compilation because Metro takes care of it.
// However, we need it in Jest tests since those run without Metro.
disableImportExportTransform: !isTestEnv,
diff --git a/docs/build.md b/docs/build.md
index 88733d3b09..dc710686e7 100644
--- a/docs/build.md
+++ b/docs/build.md
@@ -4,7 +4,10 @@
- Set up your environment [using the expo instructions](https://docs.expo.dev/guides/local-app-development/).
- make sure that the JAVA_HOME points to the zulu-17 directory in your `.zshrc` or `.bashrc` file: `export JAVA_HOME=/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home`. DO NOT use another JDK or you will encounter build errors.
-- If you're running macOS, make sure you are running the correct versions of Ruby and Cocoapods:
+- If you're running macOS, make sure you are running the correct versions of Ruby and Cocoapods:-
+ - If you are using Apple Silicon and this is the first time you are building for RN 0.74+, you may need to run:
+ - `arch -arm64 brew install llvm`
+ - `sudo gem install ffi`
- Check if you've installed Cocoapods through `homebrew`. If you have, remove it:
- `brew info cocoapods`
- If output says `Installed`:
diff --git a/jest/jestSetup.js b/jest/jestSetup.js
index e690e813a9..a6b7c24f69 100644
--- a/jest/jestSetup.js
+++ b/jest/jestSetup.js
@@ -1,10 +1,10 @@
/* global jest */
-import {configure} from '@testing-library/react-native'
import 'react-native-gesture-handler/jestSetup'
-
// IMPORTANT: this is what's used in the native runtime
import 'react-native-url-polyfill/auto'
+import {configure} from '@testing-library/react-native'
+
configure({asyncUtilTimeout: 20000})
jest.mock('@react-native-async-storage/async-storage', () =>
@@ -90,3 +90,8 @@ jest.mock('sentry-expo', () => ({
}))
jest.mock('crypto', () => ({}))
+
+jest.mock('expo-application', () => ({
+ nativeApplicationVersion: '1.0.0',
+ nativeBuildVersion: '1',
+}))
diff --git a/modules/expo-bluesky-gif-view/ios/ExpoBlueskyGifView.podspec b/modules/expo-bluesky-gif-view/ios/ExpoBlueskyGifView.podspec
index ddd0877b24..352812640b 100644
--- a/modules/expo-bluesky-gif-view/ios/ExpoBlueskyGifView.podspec
+++ b/modules/expo-bluesky-gif-view/ios/ExpoBlueskyGifView.podspec
@@ -10,8 +10,8 @@ Pod::Spec.new do |s|
s.static_framework = true
s.dependency 'ExpoModulesCore'
- s.dependency 'SDWebImage', '~> 5.17.0'
- s.dependency 'SDWebImageWebPCoder', '~> 0.13.0'
+ s.dependency 'SDWebImage', '~> 5.19.1'
+ s.dependency 'SDWebImageWebPCoder', '~> 0.14.6'
# Swift/Objective-C compatibility
s.pod_target_xcconfig = {
diff --git a/modules/expo-bluesky-translate/expo-module.config.json b/modules/expo-bluesky-translate/expo-module.config.json
new file mode 100644
index 0000000000..28c5dd878d
--- /dev/null
+++ b/modules/expo-bluesky-translate/expo-module.config.json
@@ -0,0 +1,6 @@
+{
+ "platforms": ["ios"],
+ "ios": {
+ "modules": ["ExpoBlueskyTranslateModule"]
+ }
+}
diff --git a/modules/expo-bluesky-translate/index.ts b/modules/expo-bluesky-translate/index.ts
new file mode 100644
index 0000000000..f3e1d3b113
--- /dev/null
+++ b/modules/expo-bluesky-translate/index.ts
@@ -0,0 +1,6 @@
+export {
+ isAvailable,
+ isLanguageSupported,
+ NativeTranslationModule,
+ NativeTranslationView,
+} from './src/ExpoBlueskyTranslateView'
diff --git a/modules/expo-bluesky-translate/ios/Common/UIHostingControllerCompat.swift b/modules/expo-bluesky-translate/ios/Common/UIHostingControllerCompat.swift
new file mode 100644
index 0000000000..c8ca3e0273
--- /dev/null
+++ b/modules/expo-bluesky-translate/ios/Common/UIHostingControllerCompat.swift
@@ -0,0 +1,20 @@
+import ExpoModulesCore
+import SwiftUI
+
+// Thanks to Andrew Levy for this code snippet
+// https://github.com/andrew-levy/swiftui-react-native/blob/d3fbb2abf07601ff0d4b83055e7717bb980910d6/ios/Common/ExpoView%2BUIHostingController.swift
+
+extension ExpoView {
+ func setupHostingController(_ hostingController: UIHostingController) {
+ hostingController.view.translatesAutoresizingMaskIntoConstraints = false
+ hostingController.view.backgroundColor = .clear
+
+ addSubview(hostingController.view)
+ NSLayoutConstraint.activate([
+ hostingController.view.topAnchor.constraint(equalTo: self.topAnchor),
+ hostingController.view.bottomAnchor.constraint(equalTo: self.bottomAnchor),
+ hostingController.view.leftAnchor.constraint(equalTo: self.leftAnchor),
+ hostingController.view.rightAnchor.constraint(equalTo: self.rightAnchor),
+ ])
+ }
+}
diff --git a/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslate.podspec b/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslate.podspec
new file mode 100644
index 0000000000..45f86a6056
--- /dev/null
+++ b/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslate.podspec
@@ -0,0 +1,21 @@
+Pod::Spec.new do |s|
+ s.name = 'ExpoBlueskyTranslate'
+ s.version = '1.0.0'
+ s.summary = 'Uses SwiftUI translation to translate text.'
+ s.description = 'Uses SwiftUI translation to translate text.'
+ s.author = ''
+ s.homepage = 'https://docs.expo.dev/modules/'
+ s.platforms = { :ios => '13.4' }
+ s.source = { git: '' }
+ s.static_framework = true
+
+ s.dependency 'ExpoModulesCore'
+
+ # Swift/Objective-C compatibility
+ s.pod_target_xcconfig = {
+ 'DEFINES_MODULE' => 'YES',
+ 'SWIFT_COMPILATION_MODE' => 'wholemodule'
+ }
+
+ s.source_files = "**/*.{h,m,mm,swift,hpp,cpp}"
+end
diff --git a/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateModule.swift b/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateModule.swift
new file mode 100644
index 0000000000..afa8137229
--- /dev/null
+++ b/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateModule.swift
@@ -0,0 +1,18 @@
+import ExpoModulesCore
+import Foundation
+import SwiftUI
+
+public class ExpoBlueskyTranslateModule: Module {
+ public func definition() -> ModuleDefinition {
+ Name("ExpoBlueskyTranslate")
+
+ AsyncFunction("presentAsync") { (text: String) in
+ DispatchQueue.main.async { [weak state = TranslateViewState.shared] in
+ state?.isPresented = true
+ state?.text = text
+ }
+ }
+
+ View(ExpoBlueskyTranslateView.self) {}
+ }
+}
diff --git a/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateView.swift b/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateView.swift
new file mode 100644
index 0000000000..ca6e3be69c
--- /dev/null
+++ b/modules/expo-bluesky-translate/ios/ExpoBlueskyTranslateView.swift
@@ -0,0 +1,22 @@
+import ExpoModulesCore
+import Foundation
+import SwiftUI
+
+class TranslateViewState: ObservableObject {
+ static var shared = TranslateViewState()
+
+ @Published var isPresented = false
+ @Published var text = ""
+}
+
+class ExpoBlueskyTranslateView: ExpoView {
+ required init(appContext: AppContext? = nil) {
+ if #available(iOS 14.0, *) {
+ let hostingController = UIHostingController(rootView: TranslateView())
+ super.init(appContext: appContext)
+ setupHostingController(hostingController)
+ } else {
+ super.init(appContext: appContext)
+ }
+ }
+}
diff --git a/modules/expo-bluesky-translate/ios/TranslateView.swift b/modules/expo-bluesky-translate/ios/TranslateView.swift
new file mode 100644
index 0000000000..e2886dc844
--- /dev/null
+++ b/modules/expo-bluesky-translate/ios/TranslateView.swift
@@ -0,0 +1,31 @@
+import SwiftUI
+// conditionally import the Translation module
+#if canImport(Translation)
+import Translation
+#endif
+
+struct TranslateView: View {
+ @ObservedObject var state = TranslateViewState.shared
+
+ var body: some View {
+ if #available(iOS 17.4, *) {
+ VStack {
+ UIViewRepresentableWrapper(view: UIView(frame: .zero))
+ }
+ .translationPresentation(
+ isPresented: $state.isPresented,
+ text: state.text
+ )
+ }
+ }
+}
+
+struct UIViewRepresentableWrapper: UIViewRepresentable {
+ let view: UIView
+
+ func makeUIView(context: Context) -> UIView {
+ return view
+ }
+
+ func updateUIView(_ uiView: UIView, context: Context) {}
+}
diff --git a/modules/expo-bluesky-translate/src/ExpoBlueskyTranslate.types.ts b/modules/expo-bluesky-translate/src/ExpoBlueskyTranslate.types.ts
new file mode 100644
index 0000000000..a01d4d479d
--- /dev/null
+++ b/modules/expo-bluesky-translate/src/ExpoBlueskyTranslate.types.ts
@@ -0,0 +1,3 @@
+export type ExpoBlueskyTranslateModule = {
+ presentAsync: (text: string) => Promise
+}
diff --git a/modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.ios.tsx b/modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.ios.tsx
new file mode 100644
index 0000000000..290fabd30d
--- /dev/null
+++ b/modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.ios.tsx
@@ -0,0 +1,51 @@
+import React from 'react'
+import {Platform} from 'react-native'
+import {requireNativeModule, requireNativeViewManager} from 'expo-modules-core'
+
+import {ExpoBlueskyTranslateModule} from './ExpoBlueskyTranslate.types'
+
+export const NativeTranslationModule =
+ requireNativeModule('ExpoBlueskyTranslate')
+
+const NativeView: React.ComponentType = requireNativeViewManager(
+ 'ExpoBlueskyTranslate',
+)
+
+export function NativeTranslationView() {
+ return
+}
+
+// can be something like "17.5.1", so just take the first two parts
+const version = String(Platform.Version).split('.').slice(0, 2).join('.')
+
+export const isAvailable = Number(version) >= 17.4
+
+// https://en.wikipedia.org/wiki/Translate_(Apple)#Languages
+const SUPPORTED_LANGUAGES = [
+ 'ar',
+ 'zh',
+ 'zh',
+ 'nl',
+ 'en',
+ 'en',
+ 'fr',
+ 'de',
+ 'id',
+ 'it',
+ 'ja',
+ 'ko',
+ 'pl',
+ 'pt',
+ 'ru',
+ 'es',
+ 'th',
+ 'tr',
+ 'uk',
+ 'vi',
+]
+
+export function isLanguageSupported(lang?: string) {
+ // If the language is not provided, we assume it is supported
+ if (!lang) return true
+ return SUPPORTED_LANGUAGES.includes(lang)
+}
diff --git a/modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.tsx b/modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.tsx
new file mode 100644
index 0000000000..16ff9d6004
--- /dev/null
+++ b/modules/expo-bluesky-translate/src/ExpoBlueskyTranslateView.tsx
@@ -0,0 +1,13 @@
+export const NativeTranslationModule = {
+ presentAsync: async (_: string) => {},
+}
+
+export function NativeTranslationView() {
+ return null
+}
+
+export const isAvailable = false
+
+export function isLanguageSupported(_lang?: string) {
+ return false
+}
diff --git a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx b/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx
index 93e69333fd..0f5d01c130 100644
--- a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx
+++ b/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx
@@ -1,5 +1,7 @@
import React from 'react'
+
import {ExpoScrollForwarderViewProps} from './ExpoScrollForwarder.types'
+
export function ExpoScrollForwarderView({
children,
}: React.PropsWithChildren) {
diff --git a/package.json b/package.json
index 26101a5fe9..098691b9d6 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "bsky.app",
- "version": "1.84.0",
+ "version": "1.85.0",
"private": true,
"engines": {
"node": ">=18"
@@ -49,7 +49,7 @@
"open-analyzer": "EXPO_PUBLIC_OPEN_ANALYZER=1 yarn build-web"
},
"dependencies": {
- "@atproto/api": "^0.12.13",
+ "@atproto/api": "^0.12.14",
"@bam.tech/react-native-image-resizer": "^3.0.4",
"@braintree/sanitize-url": "^6.0.2",
"@discord/bottom-sheet": "bluesky-social/react-native-bottom-sheet",
@@ -63,19 +63,19 @@
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
- "@fortawesome/react-native-fontawesome": "^0.3.0",
+ "@fortawesome/react-native-fontawesome": "^0.3.2",
"@lingui/react": "^4.5.0",
- "@mattermost/react-native-paste-input": "^0.6.4",
+ "@mattermost/react-native-paste-input": "^0.7.1",
"@miblanchard/react-native-slider": "^2.3.1",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-masked-view/masked-view": "0.3.0",
- "@react-native-menu/menu": "^0.8.0",
+ "@react-native-menu/menu": "^1.1.0",
"@react-native-picker/picker": "2.6.1",
- "@react-navigation/bottom-tabs": "^6.5.7",
- "@react-navigation/drawer": "^6.6.2",
- "@react-navigation/native": "^6.1.6",
- "@react-navigation/native-stack": "^6.9.12",
+ "@react-navigation/bottom-tabs": "^6.5.20",
+ "@react-navigation/drawer": "^6.6.15",
+ "@react-navigation/native": "^6.1.17",
+ "@react-navigation/native-stack": "^6.9.26",
"@segment/analytics-next": "^1.51.3",
"@segment/analytics-react": "^1.0.0-rc1",
"@segment/analytics-react-native": "^2.10.1",
@@ -107,35 +107,36 @@
"base64-js": "^1.5.1",
"bcp-47-match": "^2.0.3",
"date-fns": "^2.30.0",
+ "deprecated-react-native-prop-types": "^5.0.0",
"email-validator": "^2.0.4",
"emoji-mart": "^5.5.2",
"eventemitter3": "^5.0.1",
- "expo": "^50.0.17",
- "expo-application": "^5.8.3",
- "expo-build-properties": "^0.11.1",
- "expo-camera": "~14.0.4",
- "expo-clipboard": "^5.0.1",
- "expo-constants": "~15.4.5",
- "expo-dev-client": "~3.3.8",
- "expo-device": "~5.9.3",
- "expo-file-system": "^16.0.9",
- "expo-haptics": "^12.8.1",
- "expo-image": "~1.10.6",
- "expo-image-manipulator": "^11.8.0",
- "expo-image-picker": "~14.7.1",
- "expo-linear-gradient": "^12.7.2",
- "expo-linking": "^6.2.2",
- "expo-localization": "~14.8.3",
- "expo-media-library": "~15.9.1",
- "expo-navigation-bar": "~2.8.1",
- "expo-notifications": "~0.27.6",
- "expo-sharing": "^11.10.0",
- "expo-splash-screen": "~0.26.4",
- "expo-status-bar": "~1.11.1",
- "expo-system-ui": "~2.9.3",
- "expo-task-manager": "~11.7.2",
- "expo-updates": "~0.24.10",
- "expo-web-browser": "~12.8.2",
+ "expo": "^51.0.8",
+ "expo-application": "^5.9.1",
+ "expo-build-properties": "^0.12.1",
+ "expo-camera": "~15.0.9",
+ "expo-clipboard": "^6.0.3",
+ "expo-constants": "~16.0.1",
+ "expo-dev-client": "^4.0.14",
+ "expo-device": "~6.0.2",
+ "expo-file-system": "^17.0.1",
+ "expo-haptics": "^13.0.1",
+ "expo-image": "~1.12.9",
+ "expo-image-manipulator": "^12.0.5",
+ "expo-image-picker": "~15.0.5",
+ "expo-linear-gradient": "^13.0.2",
+ "expo-linking": "^6.3.1",
+ "expo-localization": "~15.0.3",
+ "expo-media-library": "~16.0.3",
+ "expo-navigation-bar": "~3.0.4",
+ "expo-notifications": "~0.28.3",
+ "expo-sharing": "^12.0.1",
+ "expo-splash-screen": "~0.27.4",
+ "expo-status-bar": "~1.12.1",
+ "expo-system-ui": "~3.0.4",
+ "expo-task-manager": "~11.8.1",
+ "expo-updates": "~0.25.14",
+ "expo-web-browser": "~13.0.3",
"fast-text-encoding": "^1.0.6",
"history": "^5.3.0",
"js-sha256": "^0.9.0",
@@ -164,31 +165,31 @@
"react-compiler-runtime": "file:./lib/react-compiler-runtime",
"react-dom": "^18.2.0",
"react-keyed-flatten-children": "^3.0.0",
- "react-native": "0.73.2",
+ "react-native": "0.74.1",
"react-native-app-clip": "bluesky-social/react-native-app-clip",
- "react-native-date-picker": "^4.4.0",
+ "react-native-date-picker": "^4.4.2",
"react-native-drawer-layout": "^4.0.0-alpha.3",
"react-native-fs": "^2.20.0",
- "react-native-gesture-handler": "~2.14.0",
+ "react-native-gesture-handler": "~2.16.2",
"react-native-get-random-values": "~1.11.0",
- "react-native-image-crop-picker": "^0.38.1",
+ "react-native-image-crop-picker": "0.40.3",
"react-native-ios-context-menu": "^1.15.3",
"react-native-keyboard-controller": "^1.12.1",
"react-native-pager-view": "6.2.3",
- "react-native-picker-select": "^8.1.0",
+ "react-native-picker-select": "^9.1.3",
"react-native-progress": "bluesky-social/react-native-progress",
- "react-native-reanimated": "^3.6.0",
+ "react-native-reanimated": "^3.11.0",
"react-native-root-siblings": "^4.1.1",
- "react-native-safe-area-context": "4.8.2",
- "react-native-screens": "~3.29.0",
- "react-native-svg": "14.1.0",
- "react-native-uitextview": "^1.1.6",
+ "react-native-safe-area-context": "4.10.1",
+ "react-native-screens": "~3.31.1",
+ "react-native-svg": "^15.3.0",
+ "react-native-uitextview": "^1.1.7",
"react-native-url-polyfill": "^1.3.0",
- "react-native-uuid": "^2.0.1",
+ "react-native-uuid": "^2.0.2",
"react-native-view-shot": "^3.8.0",
- "react-native-web": "~0.19.6",
+ "react-native-web": "~0.19.11",
"react-native-web-webview": "^1.0.2",
- "react-native-webview": "13.6.4",
+ "react-native-webview": "13.10.2",
"react-responsive": "^9.0.2",
"react-textarea-autosize": "^8.5.3",
"rn-fetch-blob": "^0.12.0",
@@ -211,7 +212,7 @@
"@lingui/macro": "^4.5.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@react-native-community/eslint-config": "^3.0.0",
- "@react-native/typescript-config": "^0.74.0",
+ "@react-native/typescript-config": "^0.74.1",
"@testing-library/jest-native": "^5.4.1",
"@testing-library/react-native": "^11.5.2",
"@tsconfig/react-native": "^2.0.3",
@@ -255,7 +256,7 @@
"jest-expo": "^50.0.1",
"jest-junit": "^15.0.0",
"lint-staged": "^13.2.3",
- "metro-react-native-babel-preset": "^0.73.7",
+ "metro-react-native-babel-preset": "^0.74.1",
"prettier": "^2.8.3",
"react-native-dotenv": "^3.3.1",
"react-refresh": "^0.14.0",
@@ -271,7 +272,8 @@
},
"resolutions": {
"@types/react": "^18",
- "**/zeed-dom": "0.10.9"
+ "**/zeed-dom": "0.10.9",
+ "@react-native/babel-preset": "0.74.1"
},
"jest": {
"preset": "jest-expo/ios",
diff --git a/patches/@mattermost+react-native-paste-input+0.6.4.patch b/patches/@mattermost+react-native-paste-input+0.6.4.patch
deleted file mode 100644
index 08413846ff..0000000000
--- a/patches/@mattermost+react-native-paste-input+0.6.4.patch
+++ /dev/null
@@ -1,3612 +0,0 @@
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml
-new file mode 100644
-index 0000000..0249d77
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml
-@@ -0,0 +1,9 @@
-+
-+
-+
-+
-+
-+
-\ No newline at end of file
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json
-new file mode 100644
-index 0000000..2aeca5f
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json
-@@ -0,0 +1,18 @@
-+{
-+ "version": 3,
-+ "artifactType": {
-+ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
-+ "kind": "Directory"
-+ },
-+ "applicationId": "com.mattermost.pasteinput",
-+ "variantName": "debug",
-+ "elements": [
-+ {
-+ "type": "SINGLE",
-+ "filters": [],
-+ "attributes": [],
-+ "outputFile": "AndroidManifest.xml"
-+ }
-+ ],
-+ "elementType": "File"
-+}
-\ No newline at end of file
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/aar_metadata/debug/aar-metadata.properties b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/aar_metadata/debug/aar-metadata.properties
-new file mode 100644
-index 0000000..8c9c699
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/aar_metadata/debug/aar-metadata.properties
-@@ -0,0 +1,4 @@
-+aarFormatVersion=1.0
-+aarMetadataVersion=1.0
-+minCompileSdk=1
-+minAndroidGradlePluginVersion=1.0.0
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/compile_r_class_jar/debug/R.jar b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/compile_r_class_jar/debug/R.jar
-new file mode 100644
-index 0000000..e69de29
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/compile_symbol_list/debug/R.txt b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/compile_symbol_list/debug/R.txt
-new file mode 100644
-index 0000000..7c9d30e
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/compile_symbol_list/debug/R.txt
-@@ -0,0 +1,1953 @@
-+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 btn_checkbox_to_checked_box_inner_merged_animation 0x0
-+int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0
-+int anim btn_checkbox_to_checked_icon_null_animation 0x0
-+int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0
-+int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0
-+int anim btn_checkbox_to_unchecked_icon_null_animation 0x0
-+int anim btn_radio_to_off_mtrl_dot_group_animation 0x0
-+int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0
-+int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0
-+int anim btn_radio_to_on_mtrl_dot_group_animation 0x0
-+int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0
-+int anim btn_radio_to_on_mtrl_ring_outer_path_animation 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 anim fragment_fast_out_extra_slow_in 0x0
-+int animator fragment_close_enter 0x0
-+int animator fragment_close_exit 0x0
-+int animator fragment_fade_enter 0x0
-+int animator fragment_fade_exit 0x0
-+int animator fragment_open_enter 0x0
-+int animator fragment_open_exit 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 actionModeCloseContentDescription 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 actionModeTheme 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 buttonCompat 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 checkMarkCompat 0x0
-+int attr checkMarkTint 0x0
-+int attr checkMarkTintMode 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 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 drawableBottomCompat 0x0
-+int attr drawableEndCompat 0x0
-+int attr drawableLeftCompat 0x0
-+int attr drawableRightCompat 0x0
-+int attr drawableSize 0x0
-+int attr drawableStartCompat 0x0
-+int attr drawableTint 0x0
-+int attr drawableTintMode 0x0
-+int attr drawableTopCompat 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 emojiCompatEnabled 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 fontProviderSystemFontFamily 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 lStar 0x0
-+int attr lastBaselineToBottomHeight 0x0
-+int attr layout 0x0
-+int attr lineHeight 0x0
-+int attr listChoiceBackgroundIndicator 0x0
-+int attr listChoiceIndicatorMultipleAnimated 0x0
-+int attr listChoiceIndicatorSingleAnimated 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 listPreferredItemPaddingEnd 0x0
-+int attr listPreferredItemPaddingLeft 0x0
-+int attr listPreferredItemPaddingRight 0x0
-+int attr listPreferredItemPaddingStart 0x0
-+int attr logo 0x0
-+int attr logoDescription 0x0
-+int attr maxButtonHeight 0x0
-+int attr measureWithLargestChild 0x0
-+int attr menu 0x0
-+int attr multiChoiceItemLayout 0x0
-+int attr navigationContentDescription 0x0
-+int attr navigationIcon 0x0
-+int attr navigationMode 0x0
-+int attr nestedScrollViewStyle 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 queryPatterns 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 shortcutMatchRequired 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 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 textLocale 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_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_decor_view_status_guard 0x0
-+int color abc_decor_view_status_guard_light 0x0
-+int color abc_hint_foreground_material_dark 0x0
-+int color abc_hint_foreground_material_light 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 androidx_core_ripple_material_light 0x0
-+int color androidx_core_secondary_text_default_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 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_height_large_material 0x0
-+int dimen abc_list_item_height_material 0x0
-+int dimen abc_list_item_height_small_material 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_star_big 0x0
-+int dimen abc_star_medium 0x0
-+int dimen abc_star_small 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 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_material_anim 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_material_anim 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_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_star_black_48dp 0x0
-+int drawable abc_star_half_black_48dp 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 0x0
-+int drawable abc_text_select_handle_middle_mtrl 0x0
-+int drawable abc_text_select_handle_right_mtrl 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 btn_checkbox_checked_mtrl 0x0
-+int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0
-+int drawable btn_checkbox_unchecked_mtrl 0x0
-+int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0
-+int drawable btn_radio_off_mtrl 0x0
-+int drawable btn_radio_off_to_on_mtrl_animation 0x0
-+int drawable btn_radio_on_mtrl 0x0
-+int drawable btn_radio_on_to_off_mtrl_animation 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 test_level_drawable 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_collection 0x0
-+int id accessibility_collection_item 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_links 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 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 checked 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 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 fragment_container_view_tag 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 item1 0x0
-+int id item2 0x0
-+int id item3 0x0
-+int id item4 0x0
-+int id labelled_by 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 off 0x0
-+int id on 0x0
-+int id parentPanel 0x0
-+int id pointer_events 0x0
-+int id progress_circular 0x0
-+int id progress_horizontal 0x0
-+int id radio 0x0
-+int id react_test_id 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 special_effects_controller_view_tag 0x0
-+int id split_action_bar 0x0
-+int id src_atop 0x0
-+int id src_in 0x0
-+int id src_over 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_on_apply_window_listener 0x0
-+int id tag_on_receive_content_listener 0x0
-+int id tag_on_receive_content_mime_types 0x0
-+int id tag_screen_reader_focusable 0x0
-+int id tag_state_description 0x0
-+int id tag_transition_group 0x0
-+int id tag_unhandled_key_event_manager 0x0
-+int id tag_unhandled_key_listeners 0x0
-+int id tag_window_insets_animation_callback 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 topPanel 0x0
-+int id unchecked 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 view_tree_lifecycle_owner 0x0
-+int id view_tree_saved_state_registry_owner 0x0
-+int id view_tree_view_model_store_owner 0x0
-+int id visible_removing_fragment_view_tag 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 interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0
-+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0
-+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0
-+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0
-+int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0
-+int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0
-+int interpolator fast_out_slow_in 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 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 menu example_menu 0x0
-+int menu example_menu2 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_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 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 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_DayNight 0x0
-+int style ThemeOverlay_AppCompat_DayNight_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_Empty 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 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 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 AppCompatEmojiHelper { }
-+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, 0x0, 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_drawableBottomCompat 6
-+int styleable AppCompatTextView_drawableEndCompat 7
-+int styleable AppCompatTextView_drawableLeftCompat 8
-+int styleable AppCompatTextView_drawableRightCompat 9
-+int styleable AppCompatTextView_drawableStartCompat 10
-+int styleable AppCompatTextView_drawableTint 11
-+int styleable AppCompatTextView_drawableTintMode 12
-+int styleable AppCompatTextView_drawableTopCompat 13
-+int styleable AppCompatTextView_emojiCompatEnabled 14
-+int styleable AppCompatTextView_firstBaselineToTopHeight 15
-+int styleable AppCompatTextView_fontFamily 16
-+int styleable AppCompatTextView_fontVariationSettings 17
-+int styleable AppCompatTextView_lastBaselineToBottomHeight 18
-+int styleable AppCompatTextView_lineHeight 19
-+int styleable AppCompatTextView_textAllCaps 20
-+int styleable AppCompatTextView_textLocale 21
-+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, 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, 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_actionModeCloseContentDescription 17
-+int styleable AppCompatTheme_actionModeCloseDrawable 18
-+int styleable AppCompatTheme_actionModeCopyDrawable 19
-+int styleable AppCompatTheme_actionModeCutDrawable 20
-+int styleable AppCompatTheme_actionModeFindDrawable 21
-+int styleable AppCompatTheme_actionModePasteDrawable 22
-+int styleable AppCompatTheme_actionModePopupWindowStyle 23
-+int styleable AppCompatTheme_actionModeSelectAllDrawable 24
-+int styleable AppCompatTheme_actionModeShareDrawable 25
-+int styleable AppCompatTheme_actionModeSplitBackground 26
-+int styleable AppCompatTheme_actionModeStyle 27
-+int styleable AppCompatTheme_actionModeTheme 28
-+int styleable AppCompatTheme_actionModeWebSearchDrawable 29
-+int styleable AppCompatTheme_actionOverflowButtonStyle 30
-+int styleable AppCompatTheme_actionOverflowMenuStyle 31
-+int styleable AppCompatTheme_activityChooserViewStyle 32
-+int styleable AppCompatTheme_alertDialogButtonGroupStyle 33
-+int styleable AppCompatTheme_alertDialogCenterButtons 34
-+int styleable AppCompatTheme_alertDialogStyle 35
-+int styleable AppCompatTheme_alertDialogTheme 36
-+int styleable AppCompatTheme_android_windowAnimationStyle 37
-+int styleable AppCompatTheme_android_windowIsFloating 38
-+int styleable AppCompatTheme_autoCompleteTextViewStyle 39
-+int styleable AppCompatTheme_borderlessButtonStyle 40
-+int styleable AppCompatTheme_buttonBarButtonStyle 41
-+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42
-+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43
-+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44
-+int styleable AppCompatTheme_buttonBarStyle 45
-+int styleable AppCompatTheme_buttonStyle 46
-+int styleable AppCompatTheme_buttonStyleSmall 47
-+int styleable AppCompatTheme_checkboxStyle 48
-+int styleable AppCompatTheme_checkedTextViewStyle 49
-+int styleable AppCompatTheme_colorAccent 50
-+int styleable AppCompatTheme_colorBackgroundFloating 51
-+int styleable AppCompatTheme_colorButtonNormal 52
-+int styleable AppCompatTheme_colorControlActivated 53
-+int styleable AppCompatTheme_colorControlHighlight 54
-+int styleable AppCompatTheme_colorControlNormal 55
-+int styleable AppCompatTheme_colorError 56
-+int styleable AppCompatTheme_colorPrimary 57
-+int styleable AppCompatTheme_colorPrimaryDark 58
-+int styleable AppCompatTheme_colorSwitchThumbNormal 59
-+int styleable AppCompatTheme_controlBackground 60
-+int styleable AppCompatTheme_dialogCornerRadius 61
-+int styleable AppCompatTheme_dialogPreferredPadding 62
-+int styleable AppCompatTheme_dialogTheme 63
-+int styleable AppCompatTheme_dividerHorizontal 64
-+int styleable AppCompatTheme_dividerVertical 65
-+int styleable AppCompatTheme_dropDownListViewStyle 66
-+int styleable AppCompatTheme_dropdownListPreferredItemHeight 67
-+int styleable AppCompatTheme_editTextBackground 68
-+int styleable AppCompatTheme_editTextColor 69
-+int styleable AppCompatTheme_editTextStyle 70
-+int styleable AppCompatTheme_homeAsUpIndicator 71
-+int styleable AppCompatTheme_imageButtonStyle 72
-+int styleable AppCompatTheme_listChoiceBackgroundIndicator 73
-+int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74
-+int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75
-+int styleable AppCompatTheme_listDividerAlertDialog 76
-+int styleable AppCompatTheme_listMenuViewStyle 77
-+int styleable AppCompatTheme_listPopupWindowStyle 78
-+int styleable AppCompatTheme_listPreferredItemHeight 79
-+int styleable AppCompatTheme_listPreferredItemHeightLarge 80
-+int styleable AppCompatTheme_listPreferredItemHeightSmall 81
-+int styleable AppCompatTheme_listPreferredItemPaddingEnd 82
-+int styleable AppCompatTheme_listPreferredItemPaddingLeft 83
-+int styleable AppCompatTheme_listPreferredItemPaddingRight 84
-+int styleable AppCompatTheme_listPreferredItemPaddingStart 85
-+int styleable AppCompatTheme_panelBackground 86
-+int styleable AppCompatTheme_panelMenuListTheme 87
-+int styleable AppCompatTheme_panelMenuListWidth 88
-+int styleable AppCompatTheme_popupMenuStyle 89
-+int styleable AppCompatTheme_popupWindowStyle 90
-+int styleable AppCompatTheme_radioButtonStyle 91
-+int styleable AppCompatTheme_ratingBarStyle 92
-+int styleable AppCompatTheme_ratingBarStyleIndicator 93
-+int styleable AppCompatTheme_ratingBarStyleSmall 94
-+int styleable AppCompatTheme_searchViewStyle 95
-+int styleable AppCompatTheme_seekBarStyle 96
-+int styleable AppCompatTheme_selectableItemBackground 97
-+int styleable AppCompatTheme_selectableItemBackgroundBorderless 98
-+int styleable AppCompatTheme_spinnerDropDownItemStyle 99
-+int styleable AppCompatTheme_spinnerStyle 100
-+int styleable AppCompatTheme_switchStyle 101
-+int styleable AppCompatTheme_textAppearanceLargePopupMenu 102
-+int styleable AppCompatTheme_textAppearanceListItem 103
-+int styleable AppCompatTheme_textAppearanceListItemSecondary 104
-+int styleable AppCompatTheme_textAppearanceListItemSmall 105
-+int styleable AppCompatTheme_textAppearancePopupMenuHeader 106
-+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107
-+int styleable AppCompatTheme_textAppearanceSearchResultTitle 108
-+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109
-+int styleable AppCompatTheme_textColorAlertDialogListItem 110
-+int styleable AppCompatTheme_textColorSearchUrl 111
-+int styleable AppCompatTheme_toolbarNavigationButtonStyle 112
-+int styleable AppCompatTheme_toolbarStyle 113
-+int styleable AppCompatTheme_tooltipForegroundColor 114
-+int styleable AppCompatTheme_tooltipFrameBackground 115
-+int styleable AppCompatTheme_viewInflaterClass 116
-+int styleable AppCompatTheme_windowActionBar 117
-+int styleable AppCompatTheme_windowActionBarOverlay 118
-+int styleable AppCompatTheme_windowActionModeOverlay 119
-+int styleable AppCompatTheme_windowFixedHeightMajor 120
-+int styleable AppCompatTheme_windowFixedHeightMinor 121
-+int styleable AppCompatTheme_windowFixedWidthMajor 122
-+int styleable AppCompatTheme_windowFixedWidthMinor 123
-+int styleable AppCompatTheme_windowMinWidthMajor 124
-+int styleable AppCompatTheme_windowMinWidthMinor 125
-+int styleable AppCompatTheme_windowNoTitle 126
-+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 Capability { 0x0, 0x0 }
-+int styleable Capability_queryPatterns 0
-+int styleable Capability_shortcutMatchRequired 1
-+int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 }
-+int styleable CheckedTextView_android_checkMark 0
-+int styleable CheckedTextView_checkMarkCompat 1
-+int styleable CheckedTextView_checkMarkTint 2
-+int styleable CheckedTextView_checkMarkTintMode 3
-+int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 }
-+int styleable ColorStateListItem_alpha 0
-+int styleable ColorStateListItem_android_alpha 1
-+int styleable ColorStateListItem_android_color 2
-+int styleable ColorStateListItem_android_lStar 3
-+int styleable ColorStateListItem_lStar 4
-+int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 }
-+int styleable CompoundButton_android_button 0
-+int styleable CompoundButton_buttonCompat 1
-+int styleable CompoundButton_buttonTint 2
-+int styleable CompoundButton_buttonTintMode 3
-+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, 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 FontFamily_fontProviderSystemFontFamily 6
-+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 Fragment { 0x10100d0, 0x1010003, 0x10100d1 }
-+int styleable Fragment_android_id 0
-+int styleable Fragment_android_name 1
-+int styleable Fragment_android_tag 2
-+int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 }
-+int styleable FragmentContainerView_android_name 0
-+int styleable FragmentContainerView_android_tag 1
-+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, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 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_textFontWeight 8
-+int styleable TextAppearance_android_textSize 9
-+int styleable TextAppearance_android_textStyle 10
-+int styleable TextAppearance_android_typeface 11
-+int styleable TextAppearance_fontFamily 12
-+int styleable TextAppearance_fontVariationSettings 13
-+int styleable TextAppearance_textAllCaps 14
-+int styleable TextAppearance_textLocale 15
-+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, 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_menu 14
-+int styleable Toolbar_navigationContentDescription 15
-+int styleable Toolbar_navigationIcon 16
-+int styleable Toolbar_popupTheme 17
-+int styleable Toolbar_subtitle 18
-+int styleable Toolbar_subtitleTextAppearance 19
-+int styleable Toolbar_subtitleTextColor 20
-+int styleable Toolbar_title 21
-+int styleable Toolbar_titleMargin 22
-+int styleable Toolbar_titleMarginBottom 23
-+int styleable Toolbar_titleMarginEnd 24
-+int styleable Toolbar_titleMarginStart 25
-+int styleable Toolbar_titleMarginTop 26
-+int styleable Toolbar_titleMargins 27
-+int styleable Toolbar_titleTextAppearance 28
-+int styleable Toolbar_titleTextColor 29
-+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 rn_dev_preferences 0x0
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
-new file mode 100644
-index 0000000..47e2add
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
-@@ -0,0 +1 @@
-+#Sun Apr 02 19:35:28 CDT 2023
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
-new file mode 100644
-index 0000000..b5f25a5
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
-@@ -0,0 +1,2 @@
-+
-+
-\ No newline at end of file
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/local_only_symbol_list/debug/R-def.txt b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/local_only_symbol_list/debug/R-def.txt
-new file mode 100644
-index 0000000..78ac5b8
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/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/@mattermost/react-native-paste-input/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
-new file mode 100644
-index 0000000..127829f
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
-@@ -0,0 +1,11 @@
-+1
-+2
-+4
-+5 /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+7 android:targetSdkVersion="33" />
-+7-->/Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+8
-+9
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml
-new file mode 100644
-index 0000000..0249d77
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml
-@@ -0,0 +1,9 @@
-+
-+
-+
-+
-+
-+
-\ No newline at end of file
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/navigation_json/debug/navigation.json b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/navigation_json/debug/navigation.json
-new file mode 100644
-index 0000000..0637a08
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/navigation_json/debug/navigation.json
-@@ -0,0 +1 @@
-+[]
-\ No newline at end of file
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/packaged_manifests/debug/output-metadata.json b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/packaged_manifests/debug/output-metadata.json
-new file mode 100644
-index 0000000..3640409
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/packaged_manifests/debug/output-metadata.json
-@@ -0,0 +1,18 @@
-+{
-+ "version": 3,
-+ "artifactType": {
-+ "type": "PACKAGED_MANIFESTS",
-+ "kind": "Directory"
-+ },
-+ "applicationId": "com.mattermost.pasteinput",
-+ "variantName": "debug",
-+ "elements": [
-+ {
-+ "type": "SINGLE",
-+ "filters": [],
-+ "attributes": [],
-+ "outputFile": "../../merged_manifest/debug/AndroidManifest.xml"
-+ }
-+ ],
-+ "elementType": "File"
-+}
-\ No newline at end of file
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
-new file mode 100644
-index 0000000..7009825
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
-@@ -0,0 +1,1446 @@
-+com.mattermost.pasteinput
-+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 btn_checkbox_to_checked_box_inner_merged_animation
-+anim btn_checkbox_to_checked_box_outer_merged_animation
-+anim btn_checkbox_to_checked_icon_null_animation
-+anim btn_checkbox_to_unchecked_box_inner_merged_animation
-+anim btn_checkbox_to_unchecked_check_path_merged_animation
-+anim btn_checkbox_to_unchecked_icon_null_animation
-+anim btn_radio_to_off_mtrl_dot_group_animation
-+anim btn_radio_to_off_mtrl_ring_outer_animation
-+anim btn_radio_to_off_mtrl_ring_outer_path_animation
-+anim btn_radio_to_on_mtrl_dot_group_animation
-+anim btn_radio_to_on_mtrl_ring_outer_animation
-+anim btn_radio_to_on_mtrl_ring_outer_path_animation
-+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
-+anim fragment_fast_out_extra_slow_in
-+animator fragment_close_enter
-+animator fragment_close_exit
-+animator fragment_fade_enter
-+animator fragment_fade_exit
-+animator fragment_open_enter
-+animator fragment_open_exit
-+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 actionModeCloseContentDescription
-+attr actionModeCloseDrawable
-+attr actionModeCopyDrawable
-+attr actionModeCutDrawable
-+attr actionModeFindDrawable
-+attr actionModePasteDrawable
-+attr actionModePopupWindowStyle
-+attr actionModeSelectAllDrawable
-+attr actionModeShareDrawable
-+attr actionModeSplitBackground
-+attr actionModeStyle
-+attr actionModeTheme
-+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 buttonCompat
-+attr buttonGravity
-+attr buttonIconDimen
-+attr buttonPanelSideLayout
-+attr buttonStyle
-+attr buttonStyleSmall
-+attr buttonTint
-+attr buttonTintMode
-+attr checkMarkCompat
-+attr checkMarkTint
-+attr checkMarkTintMode
-+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 customNavigationLayout
-+attr defaultQueryHint
-+attr dialogCornerRadius
-+attr dialogPreferredPadding
-+attr dialogTheme
-+attr displayOptions
-+attr divider
-+attr dividerHorizontal
-+attr dividerPadding
-+attr dividerVertical
-+attr drawableBottomCompat
-+attr drawableEndCompat
-+attr drawableLeftCompat
-+attr drawableRightCompat
-+attr drawableSize
-+attr drawableStartCompat
-+attr drawableTint
-+attr drawableTintMode
-+attr drawableTopCompat
-+attr drawerArrowStyle
-+attr dropDownListViewStyle
-+attr dropdownListPreferredItemHeight
-+attr editTextBackground
-+attr editTextColor
-+attr editTextStyle
-+attr elevation
-+attr emojiCompatEnabled
-+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 fontProviderSystemFontFamily
-+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 lStar
-+attr lastBaselineToBottomHeight
-+attr layout
-+attr lineHeight
-+attr listChoiceBackgroundIndicator
-+attr listChoiceIndicatorMultipleAnimated
-+attr listChoiceIndicatorSingleAnimated
-+attr listDividerAlertDialog
-+attr listItemLayout
-+attr listLayout
-+attr listMenuViewStyle
-+attr listPopupWindowStyle
-+attr listPreferredItemHeight
-+attr listPreferredItemHeightLarge
-+attr listPreferredItemHeightSmall
-+attr listPreferredItemPaddingEnd
-+attr listPreferredItemPaddingLeft
-+attr listPreferredItemPaddingRight
-+attr listPreferredItemPaddingStart
-+attr logo
-+attr logoDescription
-+attr maxButtonHeight
-+attr measureWithLargestChild
-+attr menu
-+attr multiChoiceItemLayout
-+attr navigationContentDescription
-+attr navigationIcon
-+attr navigationMode
-+attr nestedScrollViewStyle
-+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 queryPatterns
-+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 shortcutMatchRequired
-+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 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 textLocale
-+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_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_decor_view_status_guard
-+color abc_decor_view_status_guard_light
-+color abc_hint_foreground_material_dark
-+color abc_hint_foreground_material_light
-+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 androidx_core_ripple_material_light
-+color androidx_core_secondary_text_default_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 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_height_large_material
-+dimen abc_list_item_height_material
-+dimen abc_list_item_height_small_material
-+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_star_big
-+dimen abc_star_medium
-+dimen abc_star_small
-+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 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_material_anim
-+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_material_anim
-+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_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_star_black_48dp
-+drawable abc_star_half_black_48dp
-+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
-+drawable abc_text_select_handle_middle_mtrl
-+drawable abc_text_select_handle_right_mtrl
-+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 btn_checkbox_checked_mtrl
-+drawable btn_checkbox_checked_to_unchecked_mtrl_animation
-+drawable btn_checkbox_unchecked_mtrl
-+drawable btn_checkbox_unchecked_to_checked_mtrl_animation
-+drawable btn_radio_off_mtrl
-+drawable btn_radio_off_to_on_mtrl_animation
-+drawable btn_radio_on_mtrl
-+drawable btn_radio_on_to_off_mtrl_animation
-+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 test_level_drawable
-+drawable tooltip_frame_dark
-+drawable tooltip_frame_light
-+id accessibility_action_clickable_span
-+id accessibility_actions
-+id accessibility_collection
-+id accessibility_collection_item
-+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_links
-+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 buttonPanel
-+id catalyst_redbox_title
-+id center
-+id centerCrop
-+id centerInside
-+id checkbox
-+id checked
-+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 expand_activities_button
-+id expanded_menu
-+id fitBottomStart
-+id fitCenter
-+id fitEnd
-+id fitStart
-+id fitXY
-+id focusCrop
-+id forever
-+id fps_text
-+id fragment_container_view_tag
-+id group_divider
-+id home
-+id icon
-+id icon_group
-+id image
-+id info
-+id italic
-+id item1
-+id item2
-+id item3
-+id item4
-+id labelled_by
-+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 off
-+id on
-+id parentPanel
-+id pointer_events
-+id progress_circular
-+id progress_horizontal
-+id radio
-+id react_test_id
-+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 special_effects_controller_view_tag
-+id split_action_bar
-+id src_atop
-+id src_in
-+id src_over
-+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_on_apply_window_listener
-+id tag_on_receive_content_listener
-+id tag_on_receive_content_mime_types
-+id tag_screen_reader_focusable
-+id tag_state_description
-+id tag_transition_group
-+id tag_unhandled_key_event_manager
-+id tag_unhandled_key_listeners
-+id tag_window_insets_animation_callback
-+id text
-+id text2
-+id textSpacerNoButtons
-+id textSpacerNoTitle
-+id time
-+id title
-+id titleDividerNoCustom
-+id title_template
-+id topPanel
-+id unchecked
-+id uniform
-+id up
-+id view_tag_instance_handle
-+id view_tag_native_id
-+id view_tree_lifecycle_owner
-+id view_tree_saved_state_registry_owner
-+id view_tree_view_model_store_owner
-+id visible_removing_fragment_view_tag
-+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
-+interpolator btn_checkbox_checked_mtrl_animation_interpolator_0
-+interpolator btn_checkbox_checked_mtrl_animation_interpolator_1
-+interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0
-+interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1
-+interpolator btn_radio_to_off_mtrl_animation_interpolator_0
-+interpolator btn_radio_to_on_mtrl_animation_interpolator_0
-+interpolator fast_out_slow_in
-+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 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
-+menu example_menu
-+menu example_menu2
-+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_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 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
-+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_DayNight
-+style ThemeOverlay_AppCompat_DayNight_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_Empty
-+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
-+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 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 AppCompatEmojiHelper
-+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 drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat emojiCompatEnabled firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale
-+styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme 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 listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart 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 Capability queryPatterns shortcutMatchRequired
-+styleable CheckedTextView android_checkMark checkMarkCompat checkMarkTint checkMarkTintMode
-+styleable ColorStateListItem alpha android_alpha android_color android_lStar lStar
-+styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode
-+styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness
-+styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily
-+styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex
-+styleable Fragment android_id android_name android_tag
-+styleable FragmentContainerView android_name android_tag
-+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_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale
-+styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu 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 rn_dev_preferences
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/@mattermost/react-native-paste-input/android/build/outputs/logs/manifest-merger-debug-report.txt
-new file mode 100644
-index 0000000..f153aa0
---- /dev/null
-+++ b/node_modules/@mattermost/react-native-paste-input/android/build/outputs/logs/manifest-merger-debug-report.txt
-@@ -0,0 +1,25 @@
-+-- Merging decision tree log ---
-+manifest
-+ADDED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml:1:1-4:12
-+INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml:1:1-4:12
-+INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml:1:1-4:12
-+ package
-+ ADDED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml:2:11-46
-+ INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+ INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+ xmlns:android
-+ ADDED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml:1:11-69
-+uses-sdk
-+INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml reason: use-sdk injection requested
-+INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+ android:targetSdkVersion
-+ INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+ ADDED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+ INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+ android:minSdkVersion
-+ INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+ ADDED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-+ INJECTED from /Users/john/projects/professional/bluesky/social-app/node_modules/@mattermost/react-native-paste-input/android/src/main/AndroidManifest.xml
-diff --git a/node_modules/@mattermost/react-native-paste-input/android/gradle.properties b/node_modules/@mattermost/react-native-paste-input/android/gradle.properties
-index 19b61ff..04a9951 100644
---- a/node_modules/@mattermost/react-native-paste-input/android/gradle.properties
-+++ b/node_modules/@mattermost/react-native-paste-input/android/gradle.properties
-@@ -1,4 +1,4 @@
--PasteInput_kotlinVersion=1.3.50
-+PasteInput_kotlinVersion=1.5.20
- PasteInput_compileSdkVersion=30
- PasteInput_buildToolsVersion=30.0.2
- PasteInput_targetSdkVersion=30
-diff --git a/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m b/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m
-index e916023..0564d97 100644
---- a/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m
-+++ b/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m
-@@ -22,6 +22,11 @@ - (instancetype)initWithBridge:(RCTBridge *)bridge
- _backedTextInputView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
- _backedTextInputView.textInputDelegate = self;
-
-+ // Disable inline predictions to prevent jank in the composer
-+ if (@available(iOS 17.0, *)) {
-+ _backedTextInputView.inlinePredictionType = UITextInlinePredictionTypeNo;
-+ }
-+
- [self addSubview:_backedTextInputView];
- }
-
diff --git a/patches/@mattermost+react-native-paste-input+0.7.1.patch b/patches/@mattermost+react-native-paste-input+0.7.1.patch
new file mode 100644
index 0000000000..dbf55b0959
--- /dev/null
+++ b/patches/@mattermost+react-native-paste-input+0.7.1.patch
@@ -0,0 +1,16 @@
+diff --git a/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m b/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m
+index e916023..0564d97 100644
+--- a/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m
++++ b/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m
+@@ -22,6 +22,11 @@ - (instancetype)initWithBridge:(RCTBridge *)bridge
+ _backedTextInputView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
+ _backedTextInputView.textInputDelegate = self;
+
++ // Disable inline predictions to prevent jank in the composer
++ if (@available(iOS 17.0, *)) {
++ _backedTextInputView.inlinePredictionType = UITextInlinePredictionTypeNo;
++ }
++
+ [self addSubview:_backedTextInputView];
+ }
+
diff --git a/patches/@react-navigation+native+6.1.7.patch b/patches/@react-navigation+native+6.1.7.patch
deleted file mode 100644
index b604e2c1aa..0000000000
--- a/patches/@react-navigation+native+6.1.7.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-diff --git a/node_modules/@react-navigation/native/lib/commonjs/useLinking.js b/node_modules/@react-navigation/native/lib/commonjs/useLinking.js
-index ef4f368..2b0da35 100644
---- a/node_modules/@react-navigation/native/lib/commonjs/useLinking.js
-+++ b/node_modules/@react-navigation/native/lib/commonjs/useLinking.js
-@@ -273,8 +273,12 @@ function useLinking(ref, _ref) {
- });
- const currentIndex = history.index;
- try {
-- if (nextIndex !== -1 && nextIndex < currentIndex) {
-- // An existing entry for this path exists and it's less than current index, go back to that
-+ if (
-+ nextIndex !== -1 &&
-+ nextIndex < currentIndex &&
-+ // We should only go back if the entry exists and it's less than current index
-+ history.get(nextIndex - currentIndex)
-+ ) { // An existing entry for this path exists and it's less than current index, go back to that
- await history.go(nextIndex - currentIndex);
- } else {
- // We couldn't find an existing entry to go back to, so we'll go back by the delta
-diff --git a/node_modules/@react-navigation/native/lib/module/useLinking.js b/node_modules/@react-navigation/native/lib/module/useLinking.js
-index 62a3b43..11a5a28 100644
---- a/node_modules/@react-navigation/native/lib/module/useLinking.js
-+++ b/node_modules/@react-navigation/native/lib/module/useLinking.js
-@@ -264,8 +264,12 @@ export default function useLinking(ref, _ref) {
- });
- const currentIndex = history.index;
- try {
-- if (nextIndex !== -1 && nextIndex < currentIndex) {
-- // An existing entry for this path exists and it's less than current index, go back to that
-+ if (
-+ nextIndex !== -1 &&
-+ nextIndex < currentIndex &&
-+ // We should only go back if the entry exists and it's less than current index
-+ history.get(nextIndex - currentIndex)
-+ ) { // An existing entry for this path exists and it's less than current index, go back to that
- await history.go(nextIndex - currentIndex);
- } else {
- // We couldn't find an existing entry to go back to, so we'll go back by the delta
-diff --git a/node_modules/@react-navigation/native/src/useLinking.tsx b/node_modules/@react-navigation/native/src/useLinking.tsx
-index 3db40b7..9ba4ecd 100644
---- a/node_modules/@react-navigation/native/src/useLinking.tsx
-+++ b/node_modules/@react-navigation/native/src/useLinking.tsx
-@@ -381,7 +381,12 @@ export default function useLinking(
- const currentIndex = history.index;
-
- try {
-- if (nextIndex !== -1 && nextIndex < currentIndex) {
-+ if (
-+ nextIndex !== -1 &&
-+ nextIndex < currentIndex &&
-+ // We should only go back if the entry exists and it's less than current index
-+ history.get(nextIndex - currentIndex)
-+ ) {
- // An existing entry for this path exists and it's less than current index, go back to that
- await history.go(nextIndex - currentIndex);
- } else {
diff --git a/patches/@react-navigation+native+6.1.7.patch.md b/patches/@react-navigation+native+6.1.7.patch.md
deleted file mode 100644
index 60b0d4e140..0000000000
--- a/patches/@react-navigation+native+6.1.7.patch.md
+++ /dev/null
@@ -1,5 +0,0 @@
-# React Navigation history bug patch
-
-This patches react-navigation to fix the issues in https://github.com/bluesky-social/social-app/issues/710.
-
-This is based on the PR found at https://github.com/react-navigation/react-navigation/pull/11833
diff --git a/patches/expo-image-picker+14.7.1.patch b/patches/expo-image-picker+14.7.1.patch
deleted file mode 100644
index 046eb4f4f3..0000000000
--- a/patches/expo-image-picker+14.7.1.patch
+++ /dev/null
@@ -1,112 +0,0 @@
-diff --git a/node_modules/expo-image-picker/android/src/main/java/expo/modules/imagepicker/ImagePickerModule.kt b/node_modules/expo-image-picker/android/src/main/java/expo/modules/imagepicker/ImagePickerModule.kt
-index 3f50f8c..ee47fa1 100644
---- a/node_modules/expo-image-picker/android/src/main/java/expo/modules/imagepicker/ImagePickerModule.kt
-+++ b/node_modules/expo-image-picker/android/src/main/java/expo/modules/imagepicker/ImagePickerModule.kt
-@@ -33,7 +33,9 @@ import kotlin.coroutines.resumeWithException
- // TODO(@bbarthec): rename to ExpoImagePicker
- private const val moduleName = "ExponentImagePicker"
-
-+
- class ImagePickerModule : Module() {
-+ private var isPickerOpen = false
-
- override fun definition() = ModuleDefinition {
- Name(moduleName)
-@@ -129,6 +131,11 @@ class ImagePickerModule : Module() {
- options: ImagePickerOptions
- ): Any {
- return try {
-+ if(isPickerOpen) {
-+ return ImagePickerResponse(canceled = true)
-+ }
-+
-+ isPickerOpen = true
- var result = launchPicker(pickerLauncher)
- if (
- !options.allowsMultipleSelection &&
-@@ -143,6 +150,8 @@ class ImagePickerModule : Module() {
- mediaHandler.readExtras(result.data, options)
- } catch (cause: OperationCanceledException) {
- return ImagePickerResponse(canceled = true)
-+ } finally {
-+ isPickerOpen = false
- }
- }
-
-diff --git a/node_modules/expo-image-picker/android/src/main/java/expo/modules/imagepicker/contracts/ImageLibraryContract.kt b/node_modules/expo-image-picker/android/src/main/java/expo/modules/imagepicker/contracts/ImageLibraryContract.kt
-index ff15c91..9763012 100644
---- a/node_modules/expo-image-picker/android/src/main/java/expo/modules/imagepicker/contracts/ImageLibraryContract.kt
-+++ b/node_modules/expo-image-picker/android/src/main/java/expo/modules/imagepicker/contracts/ImageLibraryContract.kt
-@@ -5,12 +5,7 @@ import android.content.ContentResolver
- import android.content.Context
- import android.content.Intent
- import android.net.Uri
--import androidx.activity.result.PickVisualMediaRequest
--import androidx.activity.result.contract.ActivityResultContracts.PickVisualMedia
--import androidx.activity.result.contract.ActivityResultContracts.PickMultipleVisualMedia
- import expo.modules.imagepicker.ImagePickerOptions
--import expo.modules.imagepicker.MediaTypes
--import expo.modules.imagepicker.UNLIMITED_SELECTION
- import expo.modules.imagepicker.getAllDataUris
- import expo.modules.imagepicker.toMediaType
- import expo.modules.kotlin.activityresult.AppContextActivityResultContract
-@@ -26,51 +21,26 @@ import java.io.Serializable
- * @see [androidx.activity.result.contract.ActivityResultContracts.GetMultipleContents]
- */
- internal class ImageLibraryContract(
-- private val appContextProvider: AppContextProvider
-+ private val appContextProvider: AppContextProvider,
- ) : AppContextActivityResultContract {
- private val contentResolver: ContentResolver
- get() = appContextProvider.appContext.reactContext?.contentResolver
- ?: throw Exceptions.ReactContextLost()
-
- override fun createIntent(context: Context, input: ImageLibraryContractOptions): Intent {
-- val request = PickVisualMediaRequest.Builder()
-- .setMediaType(
-- when (input.options.mediaTypes) {
-- MediaTypes.VIDEOS -> {
-- PickVisualMedia.VideoOnly
-- }
--
-- MediaTypes.IMAGES -> {
-- PickVisualMedia.ImageOnly
-- }
--
-- else -> {
-- PickVisualMedia.ImageAndVideo
-- }
-- }
-- )
-- .build()
-+ val intent = Intent(Intent.ACTION_GET_CONTENT)
-+ .addCategory(Intent.CATEGORY_OPENABLE)
-+ .setType("image/*")
-
- if (input.options.allowsMultipleSelection) {
-- val selectionLimit = input.options.selectionLimit
--
-- if (selectionLimit == 1) {
-- // If multiple selection is allowed but the limit is 1, we should ignore
-- // the multiple selection flag and just treat it as a single selection.
-- return PickVisualMedia().createIntent(context, request)
-+ if(input.options.selectionLimit == 1) {
-+ return intent
- }
-
-- if (selectionLimit > 1) {
-- return PickMultipleVisualMedia(selectionLimit).createIntent(context, request)
-- }
--
-- // If the selection limit is 0, it is the same as unlimited selection.
-- if (selectionLimit == UNLIMITED_SELECTION) {
-- return PickMultipleVisualMedia().createIntent(context, request)
-- }
-+ intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true)
- }
-
-- return PickVisualMedia().createIntent(context, request)
-+ return intent
- }
-
- override fun parseResult(input: ImageLibraryContractOptions, resultCode: Int, intent: Intent?) =
diff --git a/patches/expo-image-picker+14.7.1.patch.md b/patches/expo-image-picker+14.7.1.patch.md
deleted file mode 100644
index 47c0daed5d..0000000000
--- a/patches/expo-image-picker+14.7.1.patch.md
+++ /dev/null
@@ -1,3 +0,0 @@
-added by https://github.com/bluesky-social/social-app/pull/2384#pullrequestreview-1800985521
-
-hackfixes the image picker on android so that the user can select from their typical image sources
\ No newline at end of file
diff --git a/patches/expo-notifications+0.27.6.patch b/patches/expo-notifications+0.28.3.patch
similarity index 89%
rename from patches/expo-notifications+0.27.6.patch
rename to patches/expo-notifications+0.28.3.patch
index ba196eca05..3a9985c7b0 100644
--- a/patches/expo-notifications+0.27.6.patch
+++ b/patches/expo-notifications+0.28.3.patch
@@ -1,8 +1,8 @@
diff --git a/node_modules/expo-notifications/android/build.gradle b/node_modules/expo-notifications/android/build.gradle
-index 97bf4f4..6e9d427 100644
+index d233e1f..cc2f856 100644
--- a/node_modules/expo-notifications/android/build.gradle
+++ b/node_modules/expo-notifications/android/build.gradle
-@@ -118,6 +118,7 @@ dependencies {
+@@ -32,6 +32,7 @@ dependencies {
api 'com.google.firebase:firebase-messaging:22.0.0'
api 'me.leolin:ShortcutBadger:1.1.22@aar'
@@ -46,7 +46,7 @@ index 0af7fe0..8f2c8d8 100644
try {
return payload.getString(TITLE_KEY);
diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationContent.java b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationContent.java
-index f1fed19..1619f59 100644
+index f1fed19..80afe9e 100644
--- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationContent.java
+++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/NotificationContent.java
@@ -20,6 +20,7 @@ import expo.modules.notifications.notifications.enums.NotificationPriority;
@@ -57,17 +57,19 @@ index f1fed19..1619f59 100644
private String mTitle;
private String mText;
private String mSubtitle;
-@@ -50,6 +51,9 @@ public class NotificationContent implements Parcelable, Serializable {
+@@ -50,6 +51,11 @@ public class NotificationContent implements Parcelable, Serializable {
}
};
+ @Nullable
-+ public String getChannelId() { return mChannelId; }
++ public String getChannelId() {
++ return mTitle;
++ }
+
@Nullable
public String getTitle() {
return mTitle;
-@@ -121,6 +125,7 @@ public class NotificationContent implements Parcelable, Serializable {
+@@ -121,6 +127,7 @@ public class NotificationContent implements Parcelable, Serializable {
}
protected NotificationContent(Parcel in) {
@@ -75,7 +77,7 @@ index f1fed19..1619f59 100644
mTitle = in.readString();
mText = in.readString();
mSubtitle = in.readString();
-@@ -146,6 +151,7 @@ public class NotificationContent implements Parcelable, Serializable {
+@@ -146,6 +153,7 @@ public class NotificationContent implements Parcelable, Serializable {
@Override
public void writeToParcel(Parcel dest, int flags) {
@@ -83,7 +85,7 @@ index f1fed19..1619f59 100644
dest.writeString(mTitle);
dest.writeString(mText);
dest.writeString(mSubtitle);
-@@ -166,6 +172,7 @@ public class NotificationContent implements Parcelable, Serializable {
+@@ -166,6 +174,7 @@ public class NotificationContent implements Parcelable, Serializable {
private static final long serialVersionUID = 397666843266836802L;
private void writeObject(java.io.ObjectOutputStream out) throws IOException {
@@ -91,7 +93,7 @@ index f1fed19..1619f59 100644
out.writeObject(mTitle);
out.writeObject(mText);
out.writeObject(mSubtitle);
-@@ -190,6 +197,7 @@ public class NotificationContent implements Parcelable, Serializable {
+@@ -190,6 +199,7 @@ public class NotificationContent implements Parcelable, Serializable {
}
private void readObject(java.io.ObjectInputStream in) throws IOException, ClassNotFoundException {
@@ -99,7 +101,7 @@ index f1fed19..1619f59 100644
mTitle = (String) in.readObject();
mText = (String) in.readObject();
mSubtitle = (String) in.readObject();
-@@ -240,6 +248,7 @@ public class NotificationContent implements Parcelable, Serializable {
+@@ -240,6 +250,7 @@ public class NotificationContent implements Parcelable, Serializable {
}
public static class Builder {
@@ -107,7 +109,7 @@ index f1fed19..1619f59 100644
private String mTitle;
private String mText;
private String mSubtitle;
-@@ -260,6 +269,11 @@ public class NotificationContent implements Parcelable, Serializable {
+@@ -260,6 +271,11 @@ public class NotificationContent implements Parcelable, Serializable {
useDefaultVibrationPattern();
}
@@ -119,7 +121,7 @@ index f1fed19..1619f59 100644
public Builder setTitle(String title) {
mTitle = title;
return this;
-@@ -336,6 +350,7 @@ public class NotificationContent implements Parcelable, Serializable {
+@@ -336,6 +352,7 @@ public class NotificationContent implements Parcelable, Serializable {
public NotificationContent build() {
NotificationContent content = new NotificationContent();
@@ -128,18 +130,10 @@ index f1fed19..1619f59 100644
content.mSubtitle = mSubtitle;
content.mText = mText;
diff --git a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ExpoNotificationBuilder.java b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ExpoNotificationBuilder.java
-index 6bd9928..aab71ea 100644
+index 6bd9928..ee93d70 100644
--- a/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ExpoNotificationBuilder.java
+++ b/node_modules/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ExpoNotificationBuilder.java
-@@ -7,7 +7,6 @@ import android.content.pm.PackageManager;
- import android.content.res.Resources;
- import android.graphics.Bitmap;
- import android.graphics.BitmapFactory;
--import android.os.Build;
- import android.os.Bundle;
- import android.os.Parcel;
- import android.provider.Settings;
-@@ -48,6 +47,10 @@ public class ExpoNotificationBuilder extends ChannelAwareNotificationBuilder {
+@@ -48,6 +48,10 @@ public class ExpoNotificationBuilder extends ChannelAwareNotificationBuilder {
NotificationContent content = getNotificationContent();
diff --git a/patches/expo-notifications-0.27.6.patch.md b/patches/expo-notifications-0.28.3.patch.md
similarity index 100%
rename from patches/expo-notifications-0.27.6.patch.md
rename to patches/expo-notifications-0.28.3.patch.md
diff --git a/patches/expo-updates+0.24.7.patch b/patches/expo-updates+0.25.11.patch
similarity index 60%
rename from patches/expo-updates+0.24.7.patch
rename to patches/expo-updates+0.25.11.patch
index 603ae32ef8..5f9eceef48 100644
--- a/patches/expo-updates+0.24.7.patch
+++ b/patches/expo-updates+0.25.11.patch
@@ -1,11 +1,11 @@
-diff --git a/node_modules/expo-updates/ios/EXUpdates/Update/NewUpdate.swift b/node_modules/expo-updates/ios/EXUpdates/Update/NewUpdate.swift
-index 189a5f5..8d5b8e6 100644
---- a/node_modules/expo-updates/ios/EXUpdates/Update/NewUpdate.swift
-+++ b/node_modules/expo-updates/ios/EXUpdates/Update/NewUpdate.swift
-@@ -68,13 +68,20 @@ public final class NewUpdate: Update {
- processedAssets.append(asset)
+diff --git a/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift b/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift
+index b85291e..07a5d3c 100644
+--- a/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift
++++ b/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift
+@@ -78,13 +78,20 @@ public final class ExpoUpdatesUpdate: Update {
+ status = UpdateStatus.StatusPending
}
-
+
+ // Instead of relying on various hacks to get the correct format for the specific
+ // platform on the backend, we can just add this little patch..
+ let dateFormatter = DateFormatter()
@@ -23,4 +23,4 @@ index 189a5f5..8d5b8e6 100644
+ commitTime: date,
runtimeVersion: runtimeVersion,
keep: true,
- status: UpdateStatus.StatusPending,
+ status: status,
diff --git a/patches/expo-updates+0.24.7.patch.md b/patches/expo-updates+0.25.11.patch.md
similarity index 96%
rename from patches/expo-updates+0.24.7.patch.md
rename to patches/expo-updates+0.25.11.patch.md
index 8a8848127e..6d5d7093df 100644
--- a/patches/expo-updates+0.24.7.patch.md
+++ b/patches/expo-updates+0.25.11.patch.md
@@ -4,4 +4,4 @@ This is a small patch to convert timestamp formats that are returned from the ba
backend to return the correct format for a specific format (the format required on Android is not the same as on iOS)
we can just add this conversion in.
-Don't remove unless we make changes on the backend to support both platforms.
\ No newline at end of file
+Don't remove unless we make changes on the backend to support both platforms.
diff --git a/patches/react-native+0.73.2.patch b/patches/react-native+0.74.1.patch
similarity index 100%
rename from patches/react-native+0.73.2.patch
rename to patches/react-native+0.74.1.patch
diff --git a/patches/react-native+0.73.2.patch.md b/patches/react-native+0.74.1.patch.md
similarity index 100%
rename from patches/react-native+0.73.2.patch.md
rename to patches/react-native+0.74.1.patch.md
diff --git a/patches/react-native-reanimated+3.11.0.patch b/patches/react-native-reanimated+3.11.0.patch
new file mode 100644
index 0000000000..9147cf08ef
--- /dev/null
+++ b/patches/react-native-reanimated+3.11.0.patch
@@ -0,0 +1,237 @@
+diff --git a/node_modules/react-native-reanimated/src/createAnimatedComponent/commonTypes.ts b/node_modules/react-native-reanimated/src/createAnimatedComponent/commonTypes.ts
+index 92ebe62..5f8207e 100644
+--- a/node_modules/react-native-reanimated/src/createAnimatedComponent/commonTypes.ts
++++ b/node_modules/react-native-reanimated/src/createAnimatedComponent/commonTypes.ts
+@@ -96,7 +96,8 @@ export interface AnimatedComponentRef extends Component {
+ export interface IAnimatedComponentInternal {
+ _styles: StyleProps[] | null;
+ _animatedProps?: Partial>;
+- _viewTag: number;
++ _componentViewTag: number;
++ _eventViewTag: number;
+ _isFirstRender: boolean;
+ jestAnimatedStyle: { value: StyleProps };
+ _component: AnimatedComponentRef | HTMLElement | null;
+diff --git a/node_modules/react-native-reanimated/src/createAnimatedComponent/createAnimatedComponent.tsx b/node_modules/react-native-reanimated/src/createAnimatedComponent/createAnimatedComponent.tsx
+index 88b3fdf..2488ebc 100644
+--- a/node_modules/react-native-reanimated/src/createAnimatedComponent/createAnimatedComponent.tsx
++++ b/node_modules/react-native-reanimated/src/createAnimatedComponent/createAnimatedComponent.tsx
+@@ -122,7 +122,8 @@ export function createAnimatedComponent(
+ {
+ _styles: StyleProps[] | null = null;
+ _animatedProps?: Partial>;
+- _viewTag = -1;
++ _componentViewTag = -1;
++ _eventViewTag = -1;
+ _isFirstRender = true;
+ jestAnimatedStyle: { value: StyleProps } = { value: {} };
+ _component: AnimatedComponentRef | HTMLElement | null = null;
+@@ -143,7 +144,8 @@ export function createAnimatedComponent(
+ }
+
+ componentDidMount() {
+- this._viewTag = this._getViewInfo().viewTag as number;
++ this._setComponentViewTag();
++ this._setEventViewTag();
+ this._attachNativeEvents();
+ this._jsPropsUpdater.addOnJSPropsChangeListener(this);
+ this._attachAnimatedStyles();
+@@ -185,7 +187,10 @@ export function createAnimatedComponent(
+ if (this.props.sharedTransitionTag) {
+ this._configureSharedTransition(true);
+ }
+- this._sharedElementTransition?.unregisterTransition(this._viewTag, true);
++ this._sharedElementTransition?.unregisterTransition(
++ this._componentViewTag,
++ true
++ );
+
+ const exiting = this.props.exiting;
+ if (
+@@ -209,7 +214,7 @@ export function createAnimatedComponent(
+ : getReduceMotionFromConfig();
+ if (!reduceMotionInExiting) {
+ updateLayoutAnimations(
+- this._viewTag,
++ this._componentViewTag,
+ LayoutAnimationType.EXITING,
+ maybeBuild(
+ exiting,
+@@ -221,12 +226,22 @@ export function createAnimatedComponent(
+ }
+ }
+
+- _getEventViewRef() {
+- // Make sure to get the scrollable node for components that implement
+- // `ScrollResponder.Mixin`.
+- return (this._component as AnimatedComponentRef)?.getScrollableNode
+- ? (this._component as AnimatedComponentRef).getScrollableNode?.()
+- : this._component;
++ _setComponentViewTag() {
++ this._componentViewTag = this._getViewInfo().viewTag as number;
++ }
++
++ _setEventViewTag() {
++ // Setting the tag for registering events - since the event emitting view can be nested inside the main component
++ const componentAnimatedRef = this._component as AnimatedComponentRef;
++ if (componentAnimatedRef.getScrollableNode) {
++ const scrollableNode = componentAnimatedRef.getScrollableNode();
++ this._eventViewTag = findNodeHandle(scrollableNode) ?? -1;
++ } else {
++ this._eventViewTag =
++ findNodeHandle(
++ options?.setNativeProps ? this : componentAnimatedRef
++ ) ?? -1;
++ }
+ }
+
+ _attachNativeEvents() {
+@@ -236,7 +251,7 @@ export function createAnimatedComponent(
+ has('workletEventHandler', prop) &&
+ prop.workletEventHandler instanceof WorkletEventHandler
+ ) {
+- prop.workletEventHandler.registerForEvents(this._viewTag, key);
++ prop.workletEventHandler.registerForEvents(this._eventViewTag, key);
+ }
+ }
+ }
+@@ -248,7 +263,7 @@ export function createAnimatedComponent(
+ has('workletEventHandler', prop) &&
+ prop.workletEventHandler instanceof WorkletEventHandler
+ ) {
+- prop.workletEventHandler.unregisterFromEvents(this._viewTag);
++ prop.workletEventHandler.unregisterFromEvents(this._eventViewTag);
+ }
+ }
+ }
+@@ -258,15 +273,17 @@ export function createAnimatedComponent(
+ for (const style of this._styles) {
+ style.viewsRef.remove(this);
+ }
+- } else if (this._viewTag !== -1 && this._styles !== null) {
++ } else if (this._componentViewTag !== -1 && this._styles !== null) {
+ for (const style of this._styles) {
+- style.viewDescriptors.remove(this._viewTag);
++ style.viewDescriptors.remove(this._componentViewTag);
+ }
+ if (this.props.animatedProps?.viewDescriptors) {
+- this.props.animatedProps.viewDescriptors.remove(this._viewTag);
++ this.props.animatedProps.viewDescriptors.remove(
++ this._componentViewTag
++ );
+ }
+ if (isFabric()) {
+- removeFromPropsRegistry(this._viewTag);
++ removeFromPropsRegistry(this._componentViewTag);
+ }
+ }
+ }
+@@ -283,15 +300,19 @@ export function createAnimatedComponent(
+ const newProp = this.props[key];
+ if (!newProp) {
+ // Prop got deleted
+- prevProp.workletEventHandler.unregisterFromEvents(this._viewTag);
++ prevProp.workletEventHandler.unregisterFromEvents(
++ this._eventViewTag
++ );
+ } else if (
+ has('workletEventHandler', newProp) &&
+ newProp.workletEventHandler instanceof WorkletEventHandler &&
+ newProp.workletEventHandler !== prevProp.workletEventHandler
+ ) {
+ // Prop got changed
+- prevProp.workletEventHandler.unregisterFromEvents(this._viewTag);
+- newProp.workletEventHandler.registerForEvents(this._viewTag);
++ prevProp.workletEventHandler.unregisterFromEvents(
++ this._eventViewTag
++ );
++ newProp.workletEventHandler.registerForEvents(this._eventViewTag);
+ }
+ }
+ }
+@@ -304,7 +325,7 @@ export function createAnimatedComponent(
+ !prevProps[key]
+ ) {
+ // Prop got added
+- newProp.workletEventHandler.registerForEvents(this._viewTag);
++ newProp.workletEventHandler.registerForEvents(this._eventViewTag);
+ }
+ }
+ }
+@@ -381,7 +402,7 @@ export function createAnimatedComponent(
+ adaptViewConfig(viewConfig);
+ }
+
+- this._viewTag = viewTag as number;
++ this._componentViewTag = viewTag as number;
+
+ // remove old styles
+ if (prevStyles) {
+@@ -487,7 +508,11 @@ export function createAnimatedComponent(
+ AnimatedComponent.displayName
+ )
+ : undefined;
+- updateLayoutAnimations(this._viewTag, LayoutAnimationType.LAYOUT, layout);
++ updateLayoutAnimations(
++ this._componentViewTag,
++ LayoutAnimationType.LAYOUT,
++ layout
++ );
+ }
+
+ _configureSharedTransition(isUnmounting = false) {
+@@ -497,7 +522,7 @@ export function createAnimatedComponent(
+ const { sharedTransitionTag } = this.props;
+ if (!sharedTransitionTag) {
+ this._sharedElementTransition?.unregisterTransition(
+- this._viewTag,
++ this._componentViewTag,
+ isUnmounting
+ );
+ this._sharedElementTransition = null;
+@@ -508,7 +533,7 @@ export function createAnimatedComponent(
+ this._sharedElementTransition ??
+ new SharedTransition();
+ sharedElementTransition.registerTransition(
+- this._viewTag,
++ this._componentViewTag,
+ sharedTransitionTag,
+ isUnmounting
+ );
+@@ -527,7 +552,7 @@ export function createAnimatedComponent(
+ ? (ref as HTMLElement)
+ : findNodeHandle(ref as Component);
+
+- this._viewTag = tag as number;
++ this._componentViewTag = tag as number;
+
+ const { layout, entering, exiting, sharedTransitionTag } = this.props;
+ if (
+diff --git a/node_modules/react-native-reanimated/lib/module/reanimated2/index.js b/node_modules/react-native-reanimated/lib/module/reanimated2/index.js
+index ac9be5d..86d4605 100644
+--- a/node_modules/react-native-reanimated/lib/module/reanimated2/index.js
++++ b/node_modules/react-native-reanimated/lib/module/reanimated2/index.js
+@@ -47,4 +47,5 @@ export { LayoutAnimationConfig } from './component/LayoutAnimationConfig';
+ export { PerformanceMonitor } from './component/PerformanceMonitor';
+ export { startMapper, stopMapper } from './mappers';
+ export { startScreenTransition, finishScreenTransition, ScreenTransition } from './screenTransition';
++export { isReducedMotion } from './PlatformChecker';
+ //# sourceMappingURL=index.js.map
+diff --git a/node_modules/react-native-reanimated/lib/typescript/reanimated2/index.d.ts b/node_modules/react-native-reanimated/lib/typescript/reanimated2/index.d.ts
+index f01dc57..161ef22 100644
+--- a/node_modules/react-native-reanimated/lib/typescript/reanimated2/index.d.ts
++++ b/node_modules/react-native-reanimated/lib/typescript/reanimated2/index.d.ts
+@@ -36,3 +36,4 @@ export type { FlatListPropsWithLayout } from './component/FlatList';
+ export { startMapper, stopMapper } from './mappers';
+ export { startScreenTransition, finishScreenTransition, ScreenTransition, } from './screenTransition';
+ export type { AnimatedScreenTransition, GoBackGesture, ScreenTransitionConfig, } from './screenTransition';
++export { isReducedMotion } from './PlatformChecker';
+diff --git a/node_modules/react-native-reanimated/src/reanimated2/index.ts b/node_modules/react-native-reanimated/src/reanimated2/index.ts
+index 5885fa1..a3c693f 100644
+--- a/node_modules/react-native-reanimated/src/reanimated2/index.ts
++++ b/node_modules/react-native-reanimated/src/reanimated2/index.ts
+@@ -284,3 +284,4 @@ export type {
+ GoBackGesture,
+ ScreenTransitionConfig,
+ } from './screenTransition';
++export { isReducedMotion } from './PlatformChecker';
diff --git a/patches/react-native-reanimated+3.6.0.patch b/patches/react-native-reanimated+3.6.0.patch
deleted file mode 100644
index 093d83e411..0000000000
--- a/patches/react-native-reanimated+3.6.0.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff --git a/node_modules/react-native-reanimated/lib/module/reanimated2/index.js b/node_modules/react-native-reanimated/lib/module/reanimated2/index.js
-index 91e49f4..c10d3fc 100644
---- a/node_modules/react-native-reanimated/lib/module/reanimated2/index.js
-+++ b/node_modules/react-native-reanimated/lib/module/reanimated2/index.js
-@@ -45,4 +45,5 @@ export { getUseOfValueInStyleWarning } from './pluginUtils';
- export { withReanimatedTimer, advanceAnimationByTime, advanceAnimationByFrame, setUpTests, getAnimatedStyle } from './jestUtils';
- export { LayoutAnimationConfig } from './component/LayoutAnimationConfig';
- export { startMapper, stopMapper } from './mappers';
-+export { isReducedMotion } from './PlatformChecker';
- //# sourceMappingURL=index.js.map
-\ No newline at end of file
-diff --git a/node_modules/react-native-reanimated/lib/typescript/reanimated2/index.d.ts b/node_modules/react-native-reanimated/lib/typescript/reanimated2/index.d.ts
-index 96bd913..ad63a09 100644
---- a/node_modules/react-native-reanimated/lib/typescript/reanimated2/index.d.ts
-+++ b/node_modules/react-native-reanimated/lib/typescript/reanimated2/index.d.ts
-@@ -33,3 +33,4 @@ export type { Adaptable, AdaptTransforms, AnimateProps, AnimatedProps, AnimatedT
- export type { AnimatedScrollViewProps } from './component/ScrollView';
- export type { FlatListPropsWithLayout } from './component/FlatList';
- export { startMapper, stopMapper } from './mappers';
-+export { isReducedMotion } from './PlatformChecker';
-diff --git a/node_modules/react-native-reanimated/src/reanimated2/index.ts b/node_modules/react-native-reanimated/src/reanimated2/index.ts
-index 096dc05..38fc01d 100644
---- a/node_modules/react-native-reanimated/src/reanimated2/index.ts
-+++ b/node_modules/react-native-reanimated/src/reanimated2/index.ts
-@@ -271,3 +271,4 @@ export type {
- export type { AnimatedScrollViewProps } from './component/ScrollView';
- export type { FlatListPropsWithLayout } from './component/FlatList';
- export { startMapper, stopMapper } from './mappers';
-+export { isReducedMotion } from './PlatformChecker';
-\ No newline at end of file
diff --git a/plugins/withAndroidManifestLaunchModePlugin.js b/plugins/withAndroidManifestLaunchModePlugin.js
new file mode 100644
index 0000000000..45ab9aeb76
--- /dev/null
+++ b/plugins/withAndroidManifestLaunchModePlugin.js
@@ -0,0 +1,17 @@
+const {withAndroidManifest} = require('expo/config-plugins')
+
+module.exports = function withAndroidManifestLaunchModePlugin(appConfig) {
+ return withAndroidManifest(appConfig, function (decoratedAppConfig) {
+ try {
+ const mainApplication =
+ decoratedAppConfig.modResults.manifest.application[0]
+ const mainActivity = mainApplication.activity.find(
+ elem => elem.$['android:name'] === '.MainActivity',
+ )
+ mainActivity.$['android:launchMode'] = 'singleTop'
+ } catch (e) {
+ console.error(`withAndroidManifestLaunchModePlugin failed`, e)
+ }
+ return decoratedAppConfig
+ })
+}
diff --git a/src/App.native.tsx b/src/App.native.tsx
index 7c60d1624b..b359ad911d 100644
--- a/src/App.native.tsx
+++ b/src/App.native.tsx
@@ -143,7 +143,7 @@ function App() {
* that is set up in the InnerApp component above.
*/
return (
-
+
diff --git a/src/Navigation.tsx b/src/Navigation.tsx
index 23cf5f59dd..18801bf645 100644
--- a/src/Navigation.tsx
+++ b/src/Navigation.tsx
@@ -353,11 +353,11 @@ function HomeTabNavigator() {
return (
HomeScreen} />
@@ -371,11 +371,11 @@ function SearchTabNavigator() {
return (
SearchScreen} />
@@ -389,11 +389,11 @@ function FeedsTabNavigator() {
return (
FeedsScreen} />
@@ -407,11 +407,11 @@ function NotificationsTabNavigator() {
return (
{
+export type Theme = Mutable & {name: ThemeName}
export type ReadonlyPalette = typeof lightPalette
export type Palette = Mutable
@@ -193,7 +193,7 @@ export const dimPalette: Palette = {
} as const
export const light = {
- name: 'light',
+ name: 'light' as ThemeName,
palette: lightPalette,
atoms: {
text: {
@@ -278,7 +278,7 @@ export const light = {
}
export const dark: Theme = {
- name: 'dark',
+ name: 'dark' as ThemeName,
palette: darkPalette,
atoms: {
text: {
@@ -367,7 +367,7 @@ export const dark: Theme = {
export const dim: Theme = {
...dark,
- name: 'dim',
+ name: 'dim' as ThemeName,
palette: dimPalette,
atoms: {
...dark.atoms,
diff --git a/src/alf/util/themeSelector.ts b/src/alf/util/themeSelector.ts
new file mode 100644
index 0000000000..f484bc5267
--- /dev/null
+++ b/src/alf/util/themeSelector.ts
@@ -0,0 +1,14 @@
+import {ThemeName} from '#/alf/themes'
+
+export function select(name: ThemeName, options: Record) {
+ switch (name) {
+ case 'light':
+ return options.light
+ case 'dark':
+ return options.dark || options.dim
+ case 'dim':
+ return options.dim || options.dark
+ default:
+ throw new Error(`select(theme, options) received unknown theme ${name}`)
+ }
+}
diff --git a/src/alf/util/useColorModeTheme.ts b/src/alf/util/useColorModeTheme.ts
index 4f8921bf9b..ce15587478 100644
--- a/src/alf/util/useColorModeTheme.ts
+++ b/src/alf/util/useColorModeTheme.ts
@@ -1,25 +1,27 @@
import React from 'react'
import {ColorSchemeName, useColorScheme} from 'react-native'
-
-import {useThemePrefs} from 'state/shell'
-import {isWeb} from 'platform/detection'
-import {ThemeName, light, dark, dim} from '#/alf/themes'
import * as SystemUI from 'expo-system-ui'
+import {isWeb} from 'platform/detection'
+import {useThemePrefs} from 'state/shell'
+import {dark, dim, light, ThemeName} from '#/alf/themes'
+
export function useColorModeTheme(): ThemeName {
+ const theme = useThemeName()
+
+ React.useLayoutEffect(() => {
+ updateDocument(theme)
+ SystemUI.setBackgroundColorAsync(getBackgroundColor(theme))
+ }, [theme])
+
+ return theme
+}
+
+export function useThemeName(): ThemeName {
const colorScheme = useColorScheme()
const {colorMode, darkTheme} = useThemePrefs()
- React.useLayoutEffect(() => {
- const theme = getThemeName(colorScheme, colorMode, darkTheme)
- updateDocument(theme)
- SystemUI.setBackgroundColorAsync(getBackgroundColor(theme))
- }, [colorMode, colorScheme, darkTheme])
-
- return React.useMemo(
- () => getThemeName(colorScheme, colorMode, darkTheme),
- [colorScheme, colorMode, darkTheme],
- )
+ return getThemeName(colorScheme, colorMode, darkTheme)
}
function getThemeName(
@@ -53,7 +55,7 @@ function updateDocument(theme: ThemeName) {
}
}
-function getBackgroundColor(theme: ThemeName): string {
+export function getBackgroundColor(theme: ThemeName): string {
switch (theme) {
case 'light':
return light.atoms.bg.backgroundColor
diff --git a/src/components/AccountList.tsx b/src/components/AccountList.tsx
index 7d696801ed..883c06c144 100644
--- a/src/components/AccountList.tsx
+++ b/src/components/AccountList.tsx
@@ -37,7 +37,7 @@ export function AccountList({
style={[
a.rounded_md,
a.overflow_hidden,
- a.border,
+ {borderWidth: 1},
t.atoms.border_contrast_low,
]}>
{accounts.map(account => (
@@ -48,7 +48,7 @@ export function AccountList({
isCurrentAccount={account.did === currentAccount?.did}
isPendingAccount={account.did === pendingDid}
/>
-
+
))}
) : null}
-
+
@@ -583,24 +621,25 @@ export const ComposePost = observer(function ComposePost({
)
})
+export function useComposerCancelRef() {
+ return useRef(null)
+}
+
const styles = StyleSheet.create({
- outer: {
- flexDirection: 'column',
- flex: 1,
- height: '100%',
- },
topbar: {
- flexDirection: 'row',
- alignItems: 'center',
- paddingTop: 6,
- paddingBottom: 4,
- paddingHorizontal: 20,
- height: 55,
- gap: 4,
+ borderBottomWidth: StyleSheet.hairlineWidth,
},
topbarDesktop: {
paddingTop: 10,
paddingBottom: 10,
+ height: 50,
+ },
+ topbarInner: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ paddingHorizontal: 16,
+ height: 54,
+ gap: 4,
},
postBtn: {
borderRadius: 20,
@@ -612,22 +651,22 @@ const styles = StyleSheet.create({
flexDirection: 'row',
backgroundColor: colors.red1,
borderRadius: 6,
- marginHorizontal: 15,
+ marginHorizontal: 16,
paddingHorizontal: 8,
paddingVertical: 6,
- marginVertical: 6,
+ marginBottom: 8,
},
reminderLine: {
flexDirection: 'row',
alignItems: 'center',
borderRadius: 6,
- marginHorizontal: 15,
+ marginHorizontal: 16,
paddingHorizontal: 8,
paddingVertical: 6,
- marginBottom: 6,
+ marginBottom: 8,
},
errorIcon: {
- borderWidth: 1,
+ borderWidth: hairlineWidth,
borderColor: colors.red4,
color: colors.red4,
borderRadius: 30,
@@ -639,12 +678,11 @@ const styles = StyleSheet.create({
},
scrollView: {
flex: 1,
- paddingHorizontal: 15,
+ paddingHorizontal: 16,
},
textInputLayout: {
flexDirection: 'row',
- borderTopWidth: 1,
- paddingTop: 16,
+ paddingTop: 4,
},
textInputLayoutMobile: {
flex: 1,
@@ -660,9 +698,9 @@ const styles = StyleSheet.create({
bottomBar: {
flexDirection: 'row',
paddingVertical: 4,
- paddingLeft: 15,
- paddingRight: 20,
+ paddingLeft: 8,
+ paddingRight: 16,
alignItems: 'center',
- borderTopWidth: 1,
+ borderTopWidth: hairlineWidth,
},
})
diff --git a/src/view/com/composer/ComposerReplyTo.tsx b/src/view/com/composer/ComposerReplyTo.tsx
index 7dc17fd4a7..6b38caff03 100644
--- a/src/view/com/composer/ComposerReplyTo.tsx
+++ b/src/view/com/composer/ComposerReplyTo.tsx
@@ -10,16 +10,16 @@ import {
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {usePalette} from 'lib/hooks/usePalette'
import {sanitizeDisplayName} from 'lib/strings/display-names'
import {sanitizeHandle} from 'lib/strings/handles'
import {ComposerOptsPostRef} from 'state/shell/composer'
import {QuoteEmbed} from 'view/com/util/post-embeds/QuoteEmbed'
import {Text} from 'view/com/util/text/Text'
import {PreviewableUserAvatar} from 'view/com/util/UserAvatar'
+import {useTheme} from '#/alf'
export function ComposerReplyTo({replyTo}: {replyTo: ComposerOptsPostRef}) {
- const pal = usePalette('default')
+ const t = useTheme()
const {_} = useLingui()
const {embed} = replyTo
@@ -75,7 +75,7 @@ export function ComposerReplyTo({replyTo}: {replyTo: ComposerOptsPostRef}) {
return (
-
+
{sanitizeDisplayName(
replyTo.author.displayName || sanitizeHandle(replyTo.author.handle),
)}
@@ -100,7 +100,7 @@ export function ComposerReplyTo({replyTo}: {replyTo: ComposerOptsPostRef}) {
{replyTo.text}
@@ -218,9 +218,10 @@ const styles = StyleSheet.create({
replyToLayout: {
flexDirection: 'row',
alignItems: 'flex-start',
- borderTopWidth: 1,
- paddingTop: 16,
+ borderBottomWidth: StyleSheet.hairlineWidth,
+ paddingTop: 4,
paddingBottom: 16,
+ marginBottom: 12,
},
replyToPost: {
flex: 1,
diff --git a/src/view/com/composer/KeyboardAccessory.tsx b/src/view/com/composer/KeyboardAccessory.tsx
new file mode 100644
index 0000000000..983a87dae9
--- /dev/null
+++ b/src/view/com/composer/KeyboardAccessory.tsx
@@ -0,0 +1,34 @@
+import React from 'react'
+import {View} from 'react-native'
+import {KeyboardStickyView} from 'react-native-keyboard-controller'
+import {useSafeAreaInsets} from 'react-native-safe-area-context'
+
+import {isWeb} from '#/platform/detection'
+import {atoms as a, useTheme} from '#/alf'
+
+export function KeyboardAccessory({children}: {children: React.ReactNode}) {
+ const t = useTheme()
+ const {bottom} = useSafeAreaInsets()
+
+ const style = [
+ a.flex_row,
+ a.py_xs,
+ a.pl_sm,
+ a.pr_xl,
+ a.align_center,
+ a.border_t,
+ t.atoms.border_contrast_medium,
+ t.atoms.bg,
+ ]
+
+ // todo: when iPad support is added, it should also not use the KeyboardStickyView
+ if (isWeb) {
+ return {children}
+ }
+
+ return (
+
+ {children}
+
+ )
+}
diff --git a/src/view/com/composer/Prompt.tsx b/src/view/com/composer/Prompt.tsx
index 16d1b6fb9e..54defb101c 100644
--- a/src/view/com/composer/Prompt.tsx
+++ b/src/view/com/composer/Prompt.tsx
@@ -1,13 +1,15 @@
import React from 'react'
import {StyleSheet, TouchableOpacity} from 'react-native'
-import {UserAvatar} from '../util/UserAvatar'
-import {Text} from '../util/text/Text'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {useProfileQuery} from '#/state/queries/profile'
+import {useSession} from '#/state/session'
import {usePalette} from 'lib/hooks/usePalette'
import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
-import {Trans, msg} from '@lingui/macro'
-import {useLingui} from '@lingui/react'
-import {useSession} from '#/state/session'
-import {useProfileQuery} from '#/state/queries/profile'
+import {Text} from '../util/text/Text'
+import {UserAvatar} from '../util/UserAvatar'
+import hairlineWidth = StyleSheet.hairlineWidth
export function ComposePrompt({onPressCompose}: {onPressCompose: () => void}) {
const {currentAccount} = useSession()
@@ -47,7 +49,7 @@ const styles = StyleSheet.create({
paddingBottom: 10,
flexDirection: 'row',
alignItems: 'center',
- borderTopWidth: 1,
+ borderTopWidth: hairlineWidth,
},
labelMobile: {
paddingLeft: 12,
diff --git a/src/view/com/composer/labels/LabelsBtn.tsx b/src/view/com/composer/labels/LabelsBtn.tsx
index b880dd3306..27e3813dc2 100644
--- a/src/view/com/composer/labels/LabelsBtn.tsx
+++ b/src/view/com/composer/labels/LabelsBtn.tsx
@@ -1,14 +1,15 @@
import React from 'react'
import {Keyboard, StyleSheet} from 'react-native'
-import {Button} from 'view/com/util/forms/Button'
-import {usePalette} from 'lib/hooks/usePalette'
-import {ShieldExclamation} from 'lib/icons'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {FontAwesomeIconStyle} from '@fortawesome/react-native-fontawesome'
-import {isNative} from 'platform/detection'
-import {useLingui} from '@lingui/react'
import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
import {useModalControls} from '#/state/modals'
+import {usePalette} from 'lib/hooks/usePalette'
+import {ShieldExclamation} from 'lib/icons'
+import {isNative} from 'platform/detection'
+import {Button} from 'view/com/util/forms/Button'
export function LabelsBtn({
labels,
@@ -54,6 +55,7 @@ const styles = StyleSheet.create({
button: {
flexDirection: 'row',
alignItems: 'center',
+ paddingVertical: 2,
paddingHorizontal: 6,
},
dimmed: {
diff --git a/src/view/com/composer/select-language/SelectLangBtn.tsx b/src/view/com/composer/select-language/SelectLangBtn.tsx
index 7856222259..7a086789ac 100644
--- a/src/view/com/composer/select-language/SelectLangBtn.tsx
+++ b/src/view/com/composer/select-language/SelectLangBtn.tsx
@@ -1,27 +1,28 @@
import React, {useCallback, useMemo} from 'react'
-import {StyleSheet, Keyboard} from 'react-native'
+import {Keyboard, StyleSheet} from 'react-native'
import {
FontAwesomeIcon,
FontAwesomeIconStyle,
} from '@fortawesome/react-native-fontawesome'
-import {Text} from 'view/com/util/text/Text'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {useModalControls} from '#/state/modals'
+import {
+ hasPostLanguage,
+ toPostLanguages,
+ useLanguagePrefs,
+ useLanguagePrefsApi,
+} from '#/state/preferences/languages'
+import {usePalette} from 'lib/hooks/usePalette'
+import {isNative} from 'platform/detection'
import {
DropdownButton,
DropdownItem,
DropdownItemButton,
} from 'view/com/util/forms/DropdownButton'
-import {usePalette} from 'lib/hooks/usePalette'
-import {isNative} from 'platform/detection'
+import {Text} from 'view/com/util/text/Text'
import {codeToLanguageName} from '../../../../locale/helpers'
-import {useModalControls} from '#/state/modals'
-import {
- useLanguagePrefs,
- useLanguagePrefsApi,
- toPostLanguages,
- hasPostLanguage,
-} from '#/state/preferences/languages'
-import {msg} from '@lingui/macro'
-import {useLingui} from '@lingui/react'
export function SelectLangBtn() {
const pal = usePalette('default')
diff --git a/src/view/com/composer/threadgate/ThreadgateBtn.tsx b/src/view/com/composer/threadgate/ThreadgateBtn.tsx
index c43f00676b..afc9f5bfad 100644
--- a/src/view/com/composer/threadgate/ThreadgateBtn.tsx
+++ b/src/view/com/composer/threadgate/ThreadgateBtn.tsx
@@ -7,7 +7,7 @@ import {isNative} from '#/platform/detection'
import {useModalControls} from '#/state/modals'
import {ThreadgateSetting} from '#/state/queries/threadgate'
import {useAnalytics} from 'lib/analytics/analytics'
-import {atoms as a} from '#/alf'
+import {atoms as a, useTheme} from '#/alf'
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
import {CircleBanSign_Stroke2_Corner0_Rounded as CircleBanSign} from '#/components/icons/CircleBanSign'
import {Earth_Stroke2_Corner0_Rounded as Earth} from '#/components/icons/Globe'
@@ -22,6 +22,7 @@ export function ThreadgateBtn({
}) {
const {track} = useAnalytics()
const {_} = useLingui()
+ const t = useTheme()
const {openModal} = useModalControls()
const onPress = () => {
@@ -45,11 +46,11 @@ export function ThreadgateBtn({
: _(msg`Some people can reply`)
return (
-
+
diff --git a/src/view/com/composer/useExternalLinkFetch.e2e.ts b/src/view/com/composer/useExternalLinkFetch.e2e.ts
index 65ecb866e7..257a3e8e52 100644
--- a/src/view/com/composer/useExternalLinkFetch.e2e.ts
+++ b/src/view/com/composer/useExternalLinkFetch.e2e.ts
@@ -8,7 +8,7 @@ import {ComposerOpts} from 'state/shell/composer'
export function useExternalLinkFetch({}: {
setQuote: (opts: ComposerOpts['quote']) => void
}) {
- const {getAgent} = useAgent()
+ const agent = useAgent()
const [extLink, setExtLink] = useState(
undefined,
)
@@ -22,7 +22,7 @@ export function useExternalLinkFetch({}: {
return cleanup
}
if (!extLink.meta) {
- getLinkMeta(getAgent(), extLink.uri).then(meta => {
+ getLinkMeta(agent, extLink.uri).then(meta => {
if (aborted) {
return
}
@@ -41,7 +41,7 @@ export function useExternalLinkFetch({}: {
})
}
return cleanup
- }, [extLink, getAgent])
+ }, [extLink, agent])
return {extLink, setExtLink}
}
diff --git a/src/view/com/composer/useExternalLinkFetch.ts b/src/view/com/composer/useExternalLinkFetch.ts
index d51dec42b1..2e0297a475 100644
--- a/src/view/com/composer/useExternalLinkFetch.ts
+++ b/src/view/com/composer/useExternalLinkFetch.ts
@@ -31,7 +31,7 @@ export function useExternalLinkFetch({
)
const getPost = useGetPost()
const fetchDid = useFetchDid()
- const {getAgent} = useAgent()
+ const agent = useAgent()
useEffect(() => {
let aborted = false
@@ -59,7 +59,7 @@ export function useExternalLinkFetch({
},
)
} else if (isBskyCustomFeedUrl(extLink.uri)) {
- getFeedAsEmbed(getAgent(), fetchDid, extLink.uri).then(
+ getFeedAsEmbed(agent, fetchDid, extLink.uri).then(
({embed, meta}) => {
if (aborted) {
return
@@ -77,7 +77,7 @@ export function useExternalLinkFetch({
},
)
} else if (isBskyListUrl(extLink.uri)) {
- getListAsEmbed(getAgent(), fetchDid, extLink.uri).then(
+ getListAsEmbed(agent, fetchDid, extLink.uri).then(
({embed, meta}) => {
if (aborted) {
return
@@ -95,7 +95,7 @@ export function useExternalLinkFetch({
},
)
} else {
- getLinkMeta(getAgent(), extLink.uri).then(meta => {
+ getLinkMeta(agent, extLink.uri).then(meta => {
if (aborted) {
return
}
@@ -137,7 +137,7 @@ export function useExternalLinkFetch({
})
}
return cleanup
- }, [extLink, setQuote, getPost, fetchDid, getAgent])
+ }, [extLink, setQuote, getPost, fetchDid, agent])
return {extLink, setExtLink}
}
diff --git a/src/view/com/feeds/FeedPage.tsx b/src/view/com/feeds/FeedPage.tsx
index f0a7c62381..f1d03a7ca3 100644
--- a/src/view/com/feeds/FeedPage.tsx
+++ b/src/view/com/feeds/FeedPage.tsx
@@ -3,7 +3,7 @@ import {View} from 'react-native'
import {AppBskyActorDefs} from '@atproto/api'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {useNavigation} from '@react-navigation/native'
+import {NavigationProp, useNavigation} from '@react-navigation/native'
import {useQueryClient} from '@tanstack/react-query'
import {getRootNavigation, getTabState, TabState} from '#/lib/routes/helpers'
@@ -19,6 +19,7 @@ import {useSetMinimalShellMode} from '#/state/shell'
import {useComposerControls} from '#/state/shell/composer'
import {useAnalytics} from 'lib/analytics/analytics'
import {ComposeIcon2} from 'lib/icons'
+import {AllNavigatorParams} from 'lib/routes/types'
import {s} from 'lib/styles'
import {useHeaderOffset} from '#/components/hooks/useHeaderOffset'
import {Feed} from '../posts/Feed'
@@ -48,7 +49,7 @@ export function FeedPage({
}) {
const {hasSession} = useSession()
const {_} = useLingui()
- const navigation = useNavigation()
+ const navigation = useNavigation>()
const queryClient = useQueryClient()
const {openComposer} = useComposerControls()
const [isScrolledDown, setIsScrolledDown] = React.useState(false)
@@ -75,7 +76,7 @@ export function FeedPage({
scrollToTop()
truncateAndInvalidate(queryClient, FEED_RQKEY(feed))
setHasNew(false)
- logEvent('feed:refresh', {
+ logEvent('feed:refresh:sampled', {
feedType: feed.split('|')[0],
feedUrl: feed,
reason: 'soft-reset',
@@ -101,7 +102,7 @@ export function FeedPage({
scrollToTop()
truncateAndInvalidate(queryClient, FEED_RQKEY(feed))
setHasNew(false)
- logEvent('feed:refresh', {
+ logEvent('feed:refresh:sampled', {
feedType: feed.split('|')[0],
feedUrl: feed,
reason: 'load-latest',
diff --git a/src/view/com/feeds/FeedSourceCard.tsx b/src/view/com/feeds/FeedSourceCard.tsx
index b89a3946ed..589f674b44 100644
--- a/src/view/com/feeds/FeedSourceCard.tsx
+++ b/src/view/com/feeds/FeedSourceCard.tsx
@@ -25,6 +25,7 @@ import * as Prompt from '#/components/Prompt'
import {RichText} from '#/components/RichText'
import {Text} from '../util/text/Text'
import {UserAvatar} from '../util/UserAvatar'
+import hairlineWidth = StyleSheet.hairlineWidth
export function FeedSourceCard({
feedUri,
@@ -34,6 +35,7 @@ export function FeedSourceCard({
showLikes = false,
pinOnSave = false,
showMinimalPlaceholder,
+ hideTopBorder,
}: {
feedUri: string
style?: StyleProp
@@ -42,6 +44,7 @@ export function FeedSourceCard({
showLikes?: boolean
pinOnSave?: boolean
showMinimalPlaceholder?: boolean
+ hideTopBorder?: boolean
}) {
const {data: preferences} = usePreferencesQuery()
const {data: feed} = useFeedSourceInfoQuery({uri: feedUri})
@@ -57,6 +60,7 @@ export function FeedSourceCard({
showLikes={showLikes}
pinOnSave={pinOnSave}
showMinimalPlaceholder={showMinimalPlaceholder}
+ hideTopBorder={hideTopBorder}
/>
)
}
@@ -71,6 +75,7 @@ export function FeedSourceCardLoaded({
showLikes = false,
pinOnSave = false,
showMinimalPlaceholder,
+ hideTopBorder,
}: {
feedUri: string
feed?: FeedSourceInfo
@@ -81,6 +86,7 @@ export function FeedSourceCardLoaded({
showLikes?: boolean
pinOnSave?: boolean
showMinimalPlaceholder?: boolean
+ hideTopBorder?: boolean
}) {
const t = useTheme()
const pal = usePalette('default')
@@ -149,7 +155,7 @@ export function FeedSourceCardLoaded({
style={[
pal.border,
{
- borderTopWidth: showMinimalPlaceholder ? 0 : 1,
+ borderTopWidth: showMinimalPlaceholder || hideTopBorder ? 0 : 1,
flexDirection: 'row',
alignItems: 'center',
flex: 1,
@@ -191,7 +197,12 @@ export function FeedSourceCardLoaded({
{
if (feed.type === 'feed') {
navigation.push('ProfileFeed', {
@@ -295,7 +306,6 @@ const styles = StyleSheet.create({
paddingVertical: 20,
flexDirection: 'column',
flex: 1,
- borderTopWidth: 1,
gap: 14,
},
headerContainer: {
diff --git a/src/view/com/feeds/ProfileFeedgens.tsx b/src/view/com/feeds/ProfileFeedgens.tsx
index a006b11c06..670cd3e11c 100644
--- a/src/view/com/feeds/ProfileFeedgens.tsx
+++ b/src/view/com/feeds/ProfileFeedgens.tsx
@@ -1,6 +1,7 @@
import React from 'react'
import {
findNodeHandle,
+ ListRenderItemInfo,
StyleProp,
StyleSheet,
View,
@@ -134,7 +135,7 @@ export const ProfileFeedgens = React.forwardRef<
// =
const renderItemInner = React.useCallback(
- ({item}: {item: any}) => {
+ ({item, index}: ListRenderItemInfo) => {
if (item === EMPTY) {
return (
)
}
diff --git a/src/view/com/lists/ListCard.tsx b/src/view/com/lists/ListCard.tsx
index 19842eb54d..3adf5c09da 100644
--- a/src/view/com/lists/ListCard.tsx
+++ b/src/view/com/lists/ListCard.tsx
@@ -1,18 +1,20 @@
import React from 'react'
import {StyleProp, StyleSheet, View, ViewStyle} from 'react-native'
-import {AtUri, AppBskyGraphDefs, RichText} from '@atproto/api'
-import {Link} from '../util/Link'
-import {Text} from '../util/text/Text'
-import {RichText as RichTextCom} from '#/components/RichText'
-import {UserAvatar} from '../util/UserAvatar'
-import {s} from 'lib/styles'
-import {usePalette} from 'lib/hooks/usePalette'
+import {AppBskyGraphDefs, AtUri, RichText} from '@atproto/api'
+import {Trans} from '@lingui/macro'
+
import {useSession} from '#/state/session'
+import {usePalette} from 'lib/hooks/usePalette'
+import {makeProfileLink} from 'lib/routes/links'
import {sanitizeDisplayName} from 'lib/strings/display-names'
import {sanitizeHandle} from 'lib/strings/handles'
-import {makeProfileLink} from 'lib/routes/links'
-import {Trans} from '@lingui/macro'
+import {s} from 'lib/styles'
import {atoms as a} from '#/alf'
+import {RichText as RichTextCom} from '#/components/RichText'
+import {Link} from '../util/Link'
+import {Text} from '../util/text/Text'
+import {UserAvatar} from '../util/UserAvatar'
+import hairlineWidth = StyleSheet.hairlineWidth
export const ListCard = ({
testID,
@@ -132,7 +134,7 @@ export const ListCard = ({
const styles = StyleSheet.create({
outer: {
- borderTopWidth: 1,
+ borderTopWidth: hairlineWidth,
paddingHorizontal: 6,
},
outerNoBorder: {
diff --git a/src/view/com/lists/MyLists.tsx b/src/view/com/lists/MyLists.tsx
index e9d2e4f0fe..5ea95971ca 100644
--- a/src/view/com/lists/MyLists.tsx
+++ b/src/view/com/lists/MyLists.tsx
@@ -9,17 +9,19 @@ import {
ViewStyle,
} from 'react-native'
import {AppBskyGraphDefs as GraphDefs} from '@atproto/api'
-import {ListCard} from './ListCard'
+import {Trans} from '@lingui/macro'
+
+import {cleanError} from '#/lib/strings/errors'
+import {logger} from '#/logger'
import {MyListsFilter, useMyListsQuery} from '#/state/queries/my-lists'
-import {ErrorMessage} from '../util/error/ErrorMessage'
-import {Text} from '../util/text/Text'
import {useAnalytics} from 'lib/analytics/analytics'
import {usePalette} from 'lib/hooks/usePalette'
-import {List} from '../util/List'
import {s} from 'lib/styles'
-import {logger} from '#/logger'
-import {Trans} from '@lingui/macro'
-import {cleanError} from '#/lib/strings/errors'
+import {ErrorMessage} from '../util/error/ErrorMessage'
+import {List} from '../util/List'
+import {Text} from '../util/text/Text'
+import {ListCard} from './ListCard'
+import hairlineWidth = StyleSheet.hairlineWidth
const LOADING = {_reactKey: '__loading__'}
const EMPTY = {_reactKey: '__empty__'}
@@ -84,7 +86,7 @@ export function MyLists({
+ style={[{padding: 18, borderTopWidth: hairlineWidth}, pal.border]}>
You have no lists.
diff --git a/src/view/com/lists/ProfileLists.tsx b/src/view/com/lists/ProfileLists.tsx
index 003d1c60e7..d1ef05f124 100644
--- a/src/view/com/lists/ProfileLists.tsx
+++ b/src/view/com/lists/ProfileLists.tsx
@@ -1,6 +1,7 @@
import React from 'react'
import {
findNodeHandle,
+ ListRenderItemInfo,
StyleProp,
StyleSheet,
View,
@@ -138,12 +139,10 @@ export const ProfileLists = React.forwardRef(
// =
const renderItemInner = React.useCallback(
- ({item}: {item: any}) => {
+ ({item, index}: ListRenderItemInfo) => {
if (item === EMPTY) {
return (
-
+
You have no lists.
@@ -173,6 +172,7 @@ export const ProfileLists = React.forwardRef(
list={item}
testID={`list-${item.name}`}
style={styles.item}
+ noBorder={index === 0}
/>
)
},
diff --git a/src/view/com/modals/ChangeEmail.tsx b/src/view/com/modals/ChangeEmail.tsx
index b940b2d6dc..a214627e2d 100644
--- a/src/view/com/modals/ChangeEmail.tsx
+++ b/src/view/com/modals/ChangeEmail.tsx
@@ -27,7 +27,7 @@ export const snapPoints = ['90%']
export function Component() {
const pal = usePalette('default')
const {currentAccount} = useSession()
- const {getAgent} = useAgent()
+ const agent = useAgent()
const {_} = useLingui()
const [stage, setStage] = useState(Stages.InputEmail)
const [email, setEmail] = useState(currentAccount?.email || '')
@@ -45,12 +45,12 @@ export function Component() {
setError('')
setIsProcessing(true)
try {
- const res = await getAgent().com.atproto.server.requestEmailUpdate()
+ const res = await agent.com.atproto.server.requestEmailUpdate()
if (res.data.tokenRequired) {
setStage(Stages.ConfirmCode)
} else {
- await getAgent().com.atproto.server.updateEmail({email: email.trim()})
- await getAgent().resumeSession(getAgent().session!)
+ await agent.com.atproto.server.updateEmail({email: email.trim()})
+ await agent.resumeSession(agent.session!)
Toast.show(_(msg`Email updated`))
setStage(Stages.Done)
}
@@ -75,11 +75,11 @@ export function Component() {
setError('')
setIsProcessing(true)
try {
- await getAgent().com.atproto.server.updateEmail({
+ await agent.com.atproto.server.updateEmail({
email: email.trim(),
token: confirmationCode.trim(),
})
- await getAgent().resumeSession(getAgent().session!)
+ await agent.resumeSession(agent.session!)
Toast.show(_(msg`Email updated`))
setStage(Stages.Done)
} catch (e) {
diff --git a/src/view/com/modals/ChangeHandle.tsx b/src/view/com/modals/ChangeHandle.tsx
index 52eb51031c..f2094ed75b 100644
--- a/src/view/com/modals/ChangeHandle.tsx
+++ b/src/view/com/modals/ChangeHandle.tsx
@@ -35,12 +35,12 @@ export type Props = {onChanged: () => void}
export function Component(props: Props) {
const {currentAccount} = useSession()
- const {getAgent} = useAgent()
+ const agent = useAgent()
const {
isLoading,
data: serviceInfo,
error: serviceInfoError,
- } = useServiceQuery(getAgent().service.toString())
+ } = useServiceQuery(agent.service.toString())
return isLoading || !currentAccount ? (
@@ -71,7 +71,7 @@ export function Inner({
const {closeModal} = useModalControls()
const {mutateAsync: updateHandle, isPending: isUpdateHandlePending} =
useUpdateHandleMutation()
- const {getAgent} = useAgent()
+ const agent = useAgent()
const [error, setError] = useState('')
@@ -111,7 +111,7 @@ export function Inner({
await updateHandle({
handle: newHandle,
})
- await getAgent().resumeSession(getAgent().session!)
+ await agent.resumeSession(agent.session!)
closeModal()
onChanged()
} catch (err: any) {
@@ -129,7 +129,7 @@ export function Inner({
closeModal,
updateHandle,
serviceInfo,
- getAgent,
+ agent,
])
// rendering
diff --git a/src/view/com/modals/ChangePassword.tsx b/src/view/com/modals/ChangePassword.tsx
index 3ce7306b9d..196715b49f 100644
--- a/src/view/com/modals/ChangePassword.tsx
+++ b/src/view/com/modals/ChangePassword.tsx
@@ -37,7 +37,7 @@ export const snapPoints = isAndroid ? ['90%'] : ['45%']
export function Component() {
const pal = usePalette('default')
const {currentAccount} = useSession()
- const {getAgent} = useAgent()
+ const agent = useAgent()
const {_} = useLingui()
const [stage, setStage] = useState(Stages.RequestCode)
const [isProcessing, setIsProcessing] = useState(false)
@@ -46,7 +46,6 @@ export function Component() {
const [error, setError] = useState('')
const {isMobile} = useWebMediaQueries()
const {closeModal} = useModalControls()
- const agent = getAgent()
const onRequestCode = async () => {
if (
diff --git a/src/view/com/modals/CreateOrEditList.tsx b/src/view/com/modals/CreateOrEditList.tsx
index 2dff636afc..3088c92a1d 100644
--- a/src/view/com/modals/CreateOrEditList.tsx
+++ b/src/view/com/modals/CreateOrEditList.tsx
@@ -10,16 +10,12 @@ import {
} from 'react-native'
import {Image as RNImage} from 'react-native-image-crop-picker'
import {LinearGradient} from 'expo-linear-gradient'
-import {
- AppBskyGraphDefs,
- AppBskyRichtextFacet,
- RichText as RichTextAPI,
-} from '@atproto/api'
+import {AppBskyGraphDefs, RichText as RichTextAPI} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {richTextToString} from '#/lib/strings/rich-text-helpers'
-import {shortenLinks} from '#/lib/strings/rich-text-manip'
+import {shortenLinks, stripInvalidMentions} from '#/lib/strings/rich-text-manip'
import {useModalControls} from '#/state/modals'
import {
useListCreateMutation,
@@ -62,7 +58,7 @@ export function Component({
const {_} = useLingui()
const listCreateMutation = useListCreateMutation()
const listMetadataMutation = useListMetadataMutation()
- const {getAgent} = useAgent()
+ const agent = useAgent()
const activePurpose = useMemo(() => {
if (list?.purpose) {
@@ -157,19 +153,9 @@ export function Component({
{cleanNewlines: true},
)
- await richText.detectFacets(getAgent())
+ await richText.detectFacets(agent)
richText = shortenLinks(richText)
-
- // filter out any mention facets that didn't map to a user
- richText.facets = richText.facets?.filter(facet => {
- const mention = facet.features.find(feature =>
- AppBskyRichtextFacet.isMention(feature),
- )
- if (mention && !mention.did) {
- return false
- }
- return true
- })
+ richText = stripInvalidMentions(richText)
if (list) {
await listMetadataMutation.mutateAsync({
@@ -229,7 +215,7 @@ export function Component({
listMetadataMutation,
listCreateMutation,
_,
- getAgent,
+ agent,
])
return (
diff --git a/src/view/com/modals/DeleteAccount.tsx b/src/view/com/modals/DeleteAccount.tsx
index cab5dc289c..06f1e111a0 100644
--- a/src/view/com/modals/DeleteAccount.tsx
+++ b/src/view/com/modals/DeleteAccount.tsx
@@ -31,7 +31,7 @@ export function Component({}: {}) {
const pal = usePalette('default')
const theme = useTheme()
const {currentAccount} = useSession()
- const {getAgent} = useAgent()
+ const agent = useAgent()
const {removeAccount} = useSessionApi()
const {_} = useLingui()
const {closeModal} = useModalControls()
@@ -45,7 +45,7 @@ export function Component({}: {}) {
setError('')
setIsProcessing(true)
try {
- await getAgent().com.atproto.server.requestAccountDelete()
+ await agent.com.atproto.server.requestAccountDelete()
setIsEmailSent(true)
} catch (e: any) {
setError(cleanError(e))
@@ -63,7 +63,7 @@ export function Component({}: {}) {
try {
// inform chat service of intent to delete account
- const {success} = await getAgent().api.chat.bsky.actor.deleteAccount(
+ const {success} = await agent.api.chat.bsky.actor.deleteAccount(
undefined,
{
headers: DM_SERVICE_HEADERS,
@@ -72,7 +72,7 @@ export function Component({}: {}) {
if (!success) {
throw new Error('Failed to inform chat service of account deletion')
}
- await getAgent().com.atproto.server.deleteAccount({
+ await agent.com.atproto.server.deleteAccount({
did: currentAccount.did,
password,
token,
diff --git a/src/view/com/modals/Modal.tsx b/src/view/com/modals/Modal.tsx
index d82975b5e8..eb9666405f 100644
--- a/src/view/com/modals/Modal.tsx
+++ b/src/view/com/modals/Modal.tsx
@@ -1,10 +1,11 @@
-import React, {useEffect, useRef} from 'react'
+import React, {Fragment, useEffect, useRef} from 'react'
import {StyleSheet} from 'react-native'
import {SafeAreaView} from 'react-native-safe-area-context'
import BottomSheet from '@discord/bottom-sheet/src'
import {useModalControls, useModals} from '#/state/modals'
import {usePalette} from 'lib/hooks/usePalette'
+import {FullWindowOverlay} from '#/components/FullWindowOverlay'
import {KeyboardPadding} from '#/components/KeyboardPadding'
import {createCustomBackdrop} from '../util/BottomSheetCustomBackdrop'
import * as AddAppPassword from './AddAppPasswords'
@@ -22,7 +23,6 @@ import * as ContentLanguagesSettingsModal from './lang-settings/ContentLanguages
import * as PostLanguagesSettingsModal from './lang-settings/PostLanguagesSettings'
import * as LinkWarningModal from './LinkWarning'
import * as ListAddUserModal from './ListAddRemoveUsers'
-import * as RepostModal from './Repost'
import * as SelfLabelModal from './SelfLabel'
import * as ThreadgateModal from './Threadgate'
import * as UserAddRemoveListsModal from './UserAddRemoveLists'
@@ -74,9 +74,6 @@ export function ModalsContainer() {
} else if (activeModal?.name === 'delete-account') {
snapPoints = DeleteAccountModal.snapPoints
element =
- } else if (activeModal?.name === 'repost') {
- snapPoints = RepostModal.snapPoints
- element =
} else if (activeModal?.name === 'self-label') {
snapPoints = SelfLabelModal.snapPoints
element =
@@ -131,24 +128,28 @@ export function ModalsContainer() {
)
}
+ const Container = activeModal ? FullWindowOverlay : Fragment
+
return (
-
- {element}
-
-
+
+
+ {element}
+
+
+
)
}
diff --git a/src/view/com/modals/Modal.web.tsx b/src/view/com/modals/Modal.web.tsx
index f95c748111..14ee99e576 100644
--- a/src/view/com/modals/Modal.web.tsx
+++ b/src/view/com/modals/Modal.web.tsx
@@ -22,7 +22,6 @@ import * as ContentLanguagesSettingsModal from './lang-settings/ContentLanguages
import * as PostLanguagesSettingsModal from './lang-settings/PostLanguagesSettings'
import * as LinkWarningModal from './LinkWarning'
import * as ListAddUserModal from './ListAddRemoveUsers'
-import * as RepostModal from './Repost'
import * as SelfLabelModal from './SelfLabel'
import * as ThreadgateModal from './Threadgate'
import * as UserAddRemoveLists from './UserAddRemoveLists'
@@ -83,8 +82,6 @@ function Modal({modal}: {modal: ModalIface}) {
element =
} else if (modal.name === 'delete-account') {
element =
- } else if (modal.name === 'repost') {
- element =
} else if (modal.name === 'self-label') {
element =
} else if (modal.name === 'threadgate') {
diff --git a/src/view/com/modals/Repost.tsx b/src/view/com/modals/Repost.tsx
deleted file mode 100644
index 5dedee832b..0000000000
--- a/src/view/com/modals/Repost.tsx
+++ /dev/null
@@ -1,129 +0,0 @@
-import React from 'react'
-import {StyleSheet, TouchableOpacity, View} from 'react-native'
-import {LinearGradient} from 'expo-linear-gradient'
-import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
-import {msg, Trans} from '@lingui/macro'
-import {useLingui} from '@lingui/react'
-
-import {useModalControls} from '#/state/modals'
-import {usePalette} from 'lib/hooks/usePalette'
-import {RepostIcon} from 'lib/icons'
-import {colors, gradients, s} from 'lib/styles'
-import {Text} from '../util/text/Text'
-
-export const snapPoints = [250]
-
-export function Component({
- onRepost,
- onQuote,
- isReposted,
-}: {
- onRepost: () => void
- onQuote: () => void
- isReposted: boolean
- // TODO: Add author into component
-}) {
- const pal = usePalette('default')
- const {_} = useLingui()
- const {closeModal} = useModalControls()
- const onPress = async () => {
- closeModal()
- }
-
- return (
-
-
-
-
-
- {!isReposted ? (
- Repost
- ) : (
- Undo repost
- )}
-
-
-
-
-
- Quote Post
-
-
-
-
-
-
- Cancel
-
-
-
-
- )
-}
-
-const styles = StyleSheet.create({
- container: {
- paddingHorizontal: 30,
- },
- title: {
- textAlign: 'center',
- fontWeight: 'bold',
- fontSize: 24,
- marginBottom: 12,
- },
- description: {
- textAlign: 'center',
- fontSize: 17,
- paddingHorizontal: 22,
- marginBottom: 10,
- },
- btn: {
- flexDirection: 'row',
- alignItems: 'center',
- justifyContent: 'center',
- width: '100%',
- borderRadius: 32,
- padding: 14,
- backgroundColor: colors.gray1,
- },
- actionBtn: {
- flexDirection: 'row',
- alignItems: 'center',
- },
- actionBtnLabel: {
- paddingHorizontal: 14,
- paddingVertical: 16,
- },
-})
diff --git a/src/view/com/modals/Threadgate.tsx b/src/view/com/modals/Threadgate.tsx
index 0e49fc2f35..a2e9f391c0 100644
--- a/src/view/com/modals/Threadgate.tsx
+++ b/src/view/com/modals/Threadgate.tsx
@@ -7,18 +7,19 @@ import {
View,
ViewStyle,
} from 'react-native'
-import {Text} from '../util/text/Text'
-import {s, colors} from 'lib/styles'
+import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import isEqual from 'lodash.isequal'
+
+import {useModalControls} from '#/state/modals'
+import {useMyListsQuery} from '#/state/queries/my-lists'
+import {ThreadgateSetting} from '#/state/queries/threadgate'
import {usePalette} from 'lib/hooks/usePalette'
+import {colors, s} from 'lib/styles'
import {isWeb} from 'platform/detection'
import {ScrollView} from 'view/com/modals/util'
-import {Trans, msg} from '@lingui/macro'
-import {useLingui} from '@lingui/react'
-import {useModalControls} from '#/state/modals'
-import {ThreadgateSetting} from '#/state/queries/threadgate'
-import {useMyListsQuery} from '#/state/queries/my-lists'
-import isEqual from 'lodash.isequal'
-import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
+import {Text} from '../util/text/Text'
export const snapPoints = ['60%']
@@ -155,7 +156,7 @@ function Selectable({
accessibilityLabel={label}
accessibilityHint=""
style={[styles.selectable, pal.border, pal.view, style]}>
-
+
{label}
{isSelected ? (
diff --git a/src/view/com/modals/VerifyEmail.tsx b/src/view/com/modals/VerifyEmail.tsx
index 3fdde330d8..7c1146a016 100644
--- a/src/view/com/modals/VerifyEmail.tsx
+++ b/src/view/com/modals/VerifyEmail.tsx
@@ -41,7 +41,7 @@ export function Component({
onSuccess?: () => void
}) {
const pal = usePalette('default')
- const {getAgent} = useAgent()
+ const agent = useAgent()
const {currentAccount} = useSession()
const {_} = useLingui()
const [stage, setStage] = useState(
@@ -64,7 +64,7 @@ export function Component({
setError('')
setIsProcessing(true)
try {
- await getAgent().com.atproto.server.requestEmailConfirmation()
+ await agent.com.atproto.server.requestEmailConfirmation()
setStage(Stages.ConfirmCode)
} catch (e) {
setError(cleanError(String(e)))
@@ -77,11 +77,11 @@ export function Component({
setError('')
setIsProcessing(true)
try {
- await getAgent().com.atproto.server.confirmEmail({
+ await agent.com.atproto.server.confirmEmail({
email: (currentAccount?.email || '').trim(),
token: confirmationCode.trim(),
})
- await getAgent().resumeSession(getAgent().session!)
+ await agent.resumeSession(agent.session!)
Toast.show(_(msg`Email verified`))
closeModal()
onSuccess?.()
diff --git a/src/view/com/notifications/Feed.tsx b/src/view/com/notifications/Feed.tsx
index 15c103bed0..c632ed5dc9 100644
--- a/src/view/com/notifications/Feed.tsx
+++ b/src/view/com/notifications/Feed.tsx
@@ -1,22 +1,30 @@
import React from 'react'
-import {ActivityIndicator, StyleSheet, View} from 'react-native'
+import {
+ ActivityIndicator,
+ ListRenderItemInfo,
+ StyleSheet,
+ View,
+} from 'react-native'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
+import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender'
import {usePalette} from '#/lib/hooks/usePalette'
+import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
import {cleanError} from '#/lib/strings/errors'
+import {s} from '#/lib/styles'
import {logger} from '#/logger'
import {useModerationOpts} from '#/state/preferences/moderation-opts'
import {useNotificationFeedQuery} from '#/state/queries/notifications/feed'
import {useUnreadNotificationsApi} from '#/state/queries/notifications/unread'
-import {s} from 'lib/styles'
-import {EmptyState} from '../util/EmptyState'
-import {ErrorMessage} from '../util/error/ErrorMessage'
-import {List, ListRef} from '../util/List'
-import {NotificationFeedLoadingPlaceholder} from '../util/LoadingPlaceholder'
-import {LoadMoreRetryBtn} from '../util/LoadMoreRetryBtn'
-import {CenteredView} from '../util/Views'
+import {EmptyState} from '#/view/com/util/EmptyState'
+import {ErrorMessage} from '#/view/com/util/error/ErrorMessage'
+import {List, ListRef} from '#/view/com/util/List'
+import {NotificationFeedLoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder'
+import {LoadMoreRetryBtn} from '#/view/com/util/LoadMoreRetryBtn'
+import {CenteredView} from '#/view/com/util/Views'
import {FeedItem} from './FeedItem'
+import hairlineWidth = StyleSheet.hairlineWidth
const EMPTY_FEED_ITEM = {_reactKey: '__empty__'}
const LOAD_MORE_ERROR_ITEM = {_reactKey: '__load_more_error__'}
@@ -33,8 +41,11 @@ export function Feed({
onScrolledDownChange: (isScrolledDown: boolean) => void
ListHeaderComponent?: () => JSX.Element
}) {
+ const initialNumToRender = useInitialNumToRender()
+
const [isPTRing, setIsPTRing] = React.useState(false)
const pal = usePalette('default')
+ const {isTabletOrMobile} = useWebMediaQueries()
const {_} = useLingui()
const moderationOpts = useModerationOpts()
@@ -97,12 +108,8 @@ export function Feed({
fetchNextPage()
}, [fetchNextPage])
- // TODO optimize renderItem or FeedItem, we're getting this notice from RN: -prf
- // VirtualizedList: You have a large list that is slow to update - make sure your
- // renderItem function renders components that follow React performance best practices
- // like PureComponent, shouldComponentUpdate, etc
const renderItem = React.useCallback(
- ({item}: {item: any}) => {
+ ({item, index}: ListRenderItemInfo) => {
if (item === EMPTY_FEED_ITEM) {
return (
+
)
}
- return
+ return (
+
+ )
},
- [onPressRetryLoadMore, moderationOpts, _, pal.border],
+ [moderationOpts, isTabletOrMobile, _, onPressRetryLoadMore, pal.border],
)
const FeedFooter = React.useCallback(
@@ -170,6 +183,8 @@ export function Feed({
contentContainerStyle={s.contentContainer}
// @ts-ignore our .web version only -prf
desktopFixedHeight
+ initialNumToRender={initialNumToRender}
+ windowSize={11}
/>
)
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx
index c20a8e9ee3..22ebf8271c 100644
--- a/src/view/com/notifications/FeedItem.tsx
+++ b/src/view/com/notifications/FeedItem.tsx
@@ -17,11 +17,6 @@ import {
ModerationOpts,
} from '@atproto/api'
import {AtUri} from '@atproto/api'
-import {
- FontAwesomeIcon,
- FontAwesomeIconStyle,
- Props,
-} from '@fortawesome/react-native-fontawesome'
import {msg, plural, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useQueryClient} from '@tanstack/react-query'
@@ -29,7 +24,6 @@ import {useQueryClient} from '@tanstack/react-query'
import {FeedNotification} from '#/state/queries/notifications/feed'
import {useAnimatedValue} from 'lib/hooks/useAnimatedValue'
import {usePalette} from 'lib/hooks/usePalette'
-import {HeartIconSolid} from 'lib/icons'
import {makeProfileLink} from 'lib/routes/links'
import {sanitizeDisplayName} from 'lib/strings/display-names'
import {sanitizeHandle} from 'lib/strings/handles'
@@ -37,6 +31,14 @@ import {niceDate} from 'lib/strings/time'
import {colors, s} from 'lib/styles'
import {isWeb} from 'platform/detection'
import {precacheProfile} from 'state/queries/profile'
+import {atoms as a, useTheme} from '#/alf'
+import {
+ ChevronBottom_Stroke2_Corner0_Rounded as ChevronDownIcon,
+ ChevronTop_Stroke2_Corner0_Rounded as ChevronUpIcon,
+} from '#/components/icons/Chevron'
+import {Heart2_Filled_Stroke2_Corner0_Rounded as HeartIconFilled} from '#/components/icons/Heart2'
+import {PersonPlus_Filled_Stroke2_Corner0_Rounded as PersonPlusIcon} from '#/components/icons/Person'
+import {Repost_Stroke2_Corner2_Rounded as RepostIcon} from '#/components/icons/Repost'
import {Link as NewLink} from '#/components/Link'
import {ProfileHoverCard} from '#/components/ProfileHoverCard'
import {FeedSourceCard} from '../feeds/FeedSourceCard'
@@ -48,6 +50,8 @@ import {Text} from '../util/text/Text'
import {TimeElapsed} from '../util/TimeElapsed'
import {PreviewableUserAvatar, UserAvatar} from '../util/UserAvatar'
+import hairlineWidth = StyleSheet.hairlineWidth
+
const MAX_AUTHORS = 5
const EXPANDED_AUTHOR_EL_HEIGHT = 35
@@ -61,13 +65,16 @@ interface Author {
let FeedItem = ({
item,
moderationOpts,
+ hideTopBorder,
}: {
item: FeedNotification
moderationOpts: ModerationOpts
+ hideTopBorder?: boolean
}): React.ReactNode => {
const queryClient = useQueryClient()
const pal = usePalette('default')
const {_} = useLingui()
+ const t = useTheme()
const [isAuthorsExpanded, setAuthorsExpanded] = useState(false)
const itemHref = useMemo(() => {
if (item.type === 'post-like' || item.type === 'repost') {
@@ -147,30 +154,25 @@ let FeedItem = ({
}
let action = ''
- let icon: Props['icon'] | 'HeartIconSolid'
- let iconStyle: Props['style'] = []
+ let icon = (
+
+ )
if (item.type === 'post-like') {
action = _(msg`liked your post`)
- icon = 'HeartIconSolid'
- iconStyle = [
- s.likeColor as FontAwesomeIconStyle,
- {position: 'relative', top: -4},
- ]
} else if (item.type === 'repost') {
action = _(msg`reposted your post`)
- icon = 'retweet'
- iconStyle = [s.green3 as FontAwesomeIconStyle]
+ icon =
} else if (item.type === 'follow') {
action = _(msg`followed you`)
- icon = 'user-plus'
- iconStyle = [s.blue3 as FontAwesomeIconStyle]
+ icon =
} else if (item.type === 'feedgen-like') {
action = _(msg`liked your custom feed`)
- icon = 'HeartIconSolid'
- iconStyle = [
- s.likeColor as FontAwesomeIconStyle,
- {position: 'relative', top: -4},
- ]
} else {
return null
}
@@ -188,26 +190,45 @@ let FeedItem = ({
backgroundColor: pal.colors.unreadNotifBg,
borderColor: pal.colors.unreadNotifBorder,
},
+ {borderTopWidth: hideTopBorder ? 0 : hairlineWidth},
]}
href={itemHref}
noFeedback
- accessible={
- (item.type === 'post-like' && authors.length === 1) ||
- item.type === 'repost'
+ accessible={!isAuthorsExpanded}
+ accessibilityActions={
+ authors.length > 1
+ ? [
+ {
+ name: 'toggleAuthorsExpanded',
+ label: isAuthorsExpanded
+ ? _(msg`Collapse list of users`)
+ : _(msg`Expand list of users`),
+ },
+ ]
+ : [
+ {
+ name: 'viewProfile',
+ label: _(
+ msg`View ${
+ authors[0].profile.displayName || authors[0].profile.handle
+ }'s profile`,
+ ),
+ },
+ ]
}
+ onAccessibilityAction={e => {
+ if (e.nativeEvent.actionName === 'activate') {
+ onBeforePress()
+ }
+ if (e.nativeEvent.actionName === 'toggleAuthorsExpanded') {
+ onToggleAuthorsExpanded()
+ }
+ }}
onBeforePress={onBeforePress}>
-
+
{/* TODO: Prevent conditional rendering and move toward composable
notifications for clearer accessibility labeling */}
- {icon === 'HeartIconSolid' ? (
-
- ) : (
-
- )}
+ {icon}
-
@@ -338,16 +358,14 @@ function CondensedAuthorsList({
profile={authors[0].profile}
moderation={authors[0].moderation.ui('avatar')}
type={authors[0].profile.associated?.labeler ? 'labeler' : 'user'}
+ accessible={false}
/>
)
}
return (
{authors.slice(0, MAX_AUTHORS).map(author => (
@@ -357,6 +375,7 @@ function CondensedAuthorsList({
profile={author.profile}
moderation={author.moderation.ui('avatar')}
type={author.profile.associated?.labeler ? 'labeler' : 'user'}
+ accessible={false}
/>
))}
@@ -365,9 +384,8 @@ function CondensedAuthorsList({
+{authors.length - MAX_AUTHORS}
) : undefined}
-
@@ -399,48 +417,45 @@ function ExpandedAuthorsList({
}, [heightInterp, visible])
return (
-
- {authors.map(author => (
-
-
-
-
-
-
-
-
- {sanitizeDisplayName(
- author.profile.displayName || author.profile.handle,
- )}
-
-
- {sanitizeHandle(author.profile.handle)}
+
+ {visible &&
+ authors.map(author => (
+
+
+
+
+
+
+
+
+ {sanitizeDisplayName(
+ author.profile.displayName || author.profile.handle,
+ )}
+
+
+ {sanitizeHandle(author.profile.handle)}
+
-
-
-
- ))}
+
+
+ ))}
)
}
@@ -458,7 +473,7 @@ function AdditionalPostText({post}: {post?: AppBskyFeedDefs.PostView}) {
return (
<>
{text?.length > 0 && {text}}
- {images && images?.length > 0 && (
+ {images && images.length > 0 && (
)}
>
@@ -480,7 +495,6 @@ const styles = StyleSheet.create({
outer: {
padding: 10,
paddingRight: 15,
- borderTopWidth: 1,
flexDirection: 'row',
},
layoutIcon: {
diff --git a/src/view/com/pager/Pager.tsx b/src/view/com/pager/Pager.tsx
index 26070fb880..ea88f73908 100644
--- a/src/view/com/pager/Pager.tsx
+++ b/src/view/com/pager/Pager.tsx
@@ -15,7 +15,7 @@ const AnimatedPagerView = Animated.createAnimatedComponent(PagerView)
export interface PagerRef {
setPage: (
index: number,
- reason: LogEvents['home:feedDisplayed']['reason'],
+ reason: LogEvents['home:feedDisplayed:sampled']['reason'],
) => void
}
@@ -32,7 +32,7 @@ interface Props {
onPageSelected?: (index: number) => void
onPageSelecting?: (
index: number,
- reason: LogEvents['home:feedDisplayed']['reason'],
+ reason: LogEvents['home:feedDisplayed:sampled']['reason'],
) => void
onPageScrollStateChanged?: (
scrollState: 'idle' | 'dragging' | 'settling',
@@ -61,7 +61,7 @@ export const Pager = forwardRef>(
React.useImperativeHandle(ref, () => ({
setPage: (
index: number,
- reason: LogEvents['home:feedDisplayed']['reason'],
+ reason: LogEvents['home:feedDisplayed:sampled']['reason'],
) => {
pagerView.current?.setPage(index)
onPageSelecting?.(index, reason)
diff --git a/src/view/com/pager/Pager.web.tsx b/src/view/com/pager/Pager.web.tsx
index abba12b2cc..1266a16202 100644
--- a/src/view/com/pager/Pager.web.tsx
+++ b/src/view/com/pager/Pager.web.tsx
@@ -18,7 +18,7 @@ interface Props {
onPageSelected?: (index: number) => void
onPageSelecting?: (
index: number,
- reason: LogEvents['home:feedDisplayed']['reason'],
+ reason: LogEvents['home:feedDisplayed:sampled']['reason'],
) => void
}
export const Pager = React.forwardRef(function PagerImpl(
@@ -38,14 +38,17 @@ export const Pager = React.forwardRef(function PagerImpl(
React.useImperativeHandle(ref, () => ({
setPage: (
index: number,
- reason: LogEvents['home:feedDisplayed']['reason'],
+ reason: LogEvents['home:feedDisplayed:sampled']['reason'],
) => {
onTabBarSelect(index, reason)
},
}))
const onTabBarSelect = React.useCallback(
- (index: number, reason: LogEvents['home:feedDisplayed']['reason']) => {
+ (
+ index: number,
+ reason: LogEvents['home:feedDisplayed:sampled']['reason'],
+ ) => {
const scrollY = window.scrollY
// We want to determine if the tabbar is already "sticking" at the top (in which
// case we should preserve and restore scroll), or if it is somewhere below in the
diff --git a/src/view/com/pager/PagerWithHeader.tsx b/src/view/com/pager/PagerWithHeader.tsx
index 2d604d104e..7b1d8b78f4 100644
--- a/src/view/com/pager/PagerWithHeader.tsx
+++ b/src/view/com/pager/PagerWithHeader.tsx
@@ -67,13 +67,13 @@ export const PagerWithHeader = React.forwardRef(
const height = evt.nativeEvent.layout.height
if (height > 0) {
// The rounding is necessary to prevent jumps on iOS
- setTabBarHeight(Math.round(height))
+ setTabBarHeight(Math.round(height * 2) / 2)
}
})
const onHeaderOnlyLayout = useNonReactiveCallback((height: number) => {
if (height > 0) {
// The rounding is necessary to prevent jumps on iOS
- setHeaderOnlyHeight(Math.round(height))
+ setHeaderOnlyHeight(Math.round(height * 2) / 2)
}
})
@@ -109,7 +109,7 @@ export const PagerWithHeader = React.forwardRef(
],
)
- const scrollRefs = useSharedValue[]>([])
+ const scrollRefs = useSharedValue | null>>([])
const registerRef = React.useCallback(
(scrollRef: AnimatedRef | null, atIndex: number) => {
scrollRefs.modify(refs => {
@@ -130,8 +130,9 @@ export const PagerWithHeader = React.forwardRef(
lastForcedScrollY.value = forcedScrollY
const refs = scrollRefs.value
for (let i = 0; i < refs.length; i++) {
- if (i !== currentPage && refs[i] != null) {
- scrollTo(refs[i], 0, forcedScrollY, false)
+ const scollRef = refs[i]
+ if (i !== currentPage && scollRef != null) {
+ scrollTo(scollRef, 0, forcedScrollY, false)
}
}
}
diff --git a/src/view/com/pager/TabBar.tsx b/src/view/com/pager/TabBar.tsx
index 5791e26a97..e81d7d44da 100644
--- a/src/view/com/pager/TabBar.tsx
+++ b/src/view/com/pager/TabBar.tsx
@@ -7,6 +7,7 @@ import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
import {PressableWithHover} from '../util/PressableWithHover'
import {Text} from '../util/text/Text'
import {DraggableScrollView} from './DraggableScrollView'
+import hairlineWidth = StyleSheet.hairlineWidth
export interface TabBarProps {
testID?: string
@@ -207,6 +208,6 @@ const mobileStyles = StyleSheet.create({
left: 0,
right: 0,
bottom: -1,
- borderBottomWidth: 1,
+ borderBottomWidth: hairlineWidth,
},
})
diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx
index 4f7d0d3c62..35028334c6 100644
--- a/src/view/com/post-thread/PostThread.tsx
+++ b/src/view/com/post-thread/PostThread.tsx
@@ -1,5 +1,5 @@
import React, {useEffect, useRef} from 'react'
-import {StyleSheet, useWindowDimensions, View} from 'react-native'
+import {useWindowDimensions, View} from 'react-native'
import {runOnJS} from 'react-native-reanimated'
import {AppBskyFeedDefs} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
@@ -22,15 +22,16 @@ import {
import {usePreferencesQuery} from '#/state/queries/preferences'
import {useSession} from '#/state/session'
import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender'
-import {usePalette} from 'lib/hooks/usePalette'
import {useSetTitle} from 'lib/hooks/useSetTitle'
import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
import {sanitizeDisplayName} from 'lib/strings/display-names'
import {cleanError} from 'lib/strings/errors'
+import {CenteredView} from 'view/com/util/Views'
+import {atoms as a, useTheme} from '#/alf'
import {ListFooter, ListMaybePlaceholder} from '#/components/Lists'
+import {Text} from '#/components/Typography'
import {ComposePrompt} from '../composer/Prompt'
import {List, ListMethods} from '../util/List'
-import {Text} from '../util/text/Text'
import {ViewHeader} from '../util/ViewHeader'
import {PostThreadItem} from './PostThreadItem'
import {PostThreadShowHiddenReplies} from './PostThreadShowHiddenReplies'
@@ -45,7 +46,6 @@ const MAINTAIN_VISIBLE_CONTENT_POSITION = {
minIndexForVisible: 0,
}
-const TOP_COMPONENT = {_reactKey: '__top_component__'}
const REPLY_PROMPT = {_reactKey: '__reply__'}
const LOAD_MORE = {_reactKey: '__load_more__'}
const SHOW_HIDDEN_REPLIES = {_reactKey: '__show_hidden_replies__'}
@@ -66,7 +66,6 @@ type YieldedItem =
type RowItem =
| YieldedItem
// TODO: TS doesn't actually enforce it's one of these, it only enforces matching shape.
- | typeof TOP_COMPONENT
| typeof REPLY_PROMPT
| typeof LOAD_MORE
@@ -91,7 +90,7 @@ export function PostThread({
}) {
const {hasSession} = useSession()
const {_} = useLingui()
- const pal = usePalette('default')
+ const t = useTheme()
const {isMobile, isTabletOrMobile} = useWebMediaQueries()
const initialNumToRender = useInitialNumToRender()
const {height: windowHeight} = useWindowDimensions()
@@ -224,32 +223,21 @@ export function PostThread({
const {parents, highlightedPost, replies} = skeleton
let arr: RowItem[] = []
if (highlightedPost.type === 'post') {
- const isRoot =
- !highlightedPost.parent && !highlightedPost.ctx.isParentLoading
- if (isRoot) {
- // No parents to load.
- arr.push(TOP_COMPONENT)
- } else {
- if (highlightedPost.ctx.isParentLoading || deferParents) {
- // We're loading parents of the highlighted post.
- // In this case, we don't render anything above the post.
- // If you add something here, you'll need to update both
- // maintainVisibleContentPosition and onContentSizeChange
- // to "hold onto" the correct row instead of the first one.
- } else {
- // Everything is loaded
- let startIndex = Math.max(0, parents.length - maxParents)
- if (startIndex === 0) {
- arr.push(TOP_COMPONENT)
- } else {
- // When progressively revealing parents, rendering a placeholder
- // here will cause scrolling jumps. Don't add it unless you test it.
- // QT'ing this thread is a great way to test all the scrolling hacks:
- // https://bsky.app/profile/www.mozzius.dev/post/3kjqhblh6qk2o
- }
- for (let i = startIndex; i < parents.length; i++) {
- arr.push(parents[i])
- }
+ // We want to wait for parents to load before rendering.
+ // If you add something here, you'll need to update both
+ // maintainVisibleContentPosition and onContentSizeChange
+ // to "hold onto" the correct row instead of the first one.
+
+ if (!highlightedPost.ctx.isParentLoading && !deferParents) {
+ // When progressively revealing parents, rendering a placeholder
+ // here will cause scrolling jumps. Don't add it unless you test it.
+ // QT'ing this thread is a great way to test all the scrolling hacks:
+ // https://bsky.app/profile/www.mozzius.dev/post/3kjqhblh6qk2o
+
+ // Everything is loaded
+ let startIndex = Math.max(0, parents.length - maxParents)
+ for (let i = startIndex; i < parents.length; i++) {
+ arr.push(parents[i])
}
}
arr.push(highlightedPost)
@@ -323,117 +311,100 @@ export function PostThread({
setMaxReplies(prev => prev + 50)
}, [isFetching, maxReplies, posts.length])
- const renderItem = React.useCallback(
- ({item, index}: {item: RowItem; index: number}) => {
- if (item === TOP_COMPONENT) {
- return isTabletOrMobile ? (
-
- ) : null
- } else if (item === REPLY_PROMPT && hasSession) {
- return (
-
- {!isMobile && }
-
- )
- } else if (item === SHOW_HIDDEN_REPLIES) {
- return (
-
- setHiddenRepliesState(HiddenRepliesState.ShowAndOverridePostHider)
+ const hasParents =
+ skeleton?.highlightedPost?.type === 'post' &&
+ (skeleton.highlightedPost.ctx.isParentLoading ||
+ Boolean(skeleton?.parents && skeleton.parents.length > 0))
+ const showHeader =
+ isNative || (isTabletOrMobile && (!hasParents || !isFetching))
+
+ const renderItem = ({item, index}: {item: RowItem; index: number}) => {
+ if (item === REPLY_PROMPT && hasSession) {
+ return (
+
+ {!isMobile && }
+
+ )
+ } else if (item === SHOW_HIDDEN_REPLIES || item === SHOW_MUTED_REPLIES) {
+ return (
+
+ setHiddenRepliesState(HiddenRepliesState.ShowAndOverridePostHider)
+ }
+ hideTopBorder={index === 0}
+ />
+ )
+ } else if (isThreadNotFound(item)) {
+ return (
+
+
+ Deleted post.
+
+
+ )
+ } else if (isThreadBlocked(item)) {
+ return (
+
+
+ Blocked post.
+
+
+ )
+ } else if (isThreadPost(item)) {
+ const prev = isThreadPost(posts[index - 1])
+ ? (posts[index - 1] as ThreadPost)
+ : undefined
+ const next = isThreadPost(posts[index + 1])
+ ? (posts[index + 1] as ThreadPost)
+ : undefined
+ const showChildReplyLine = (next?.ctx.depth || 0) > item.ctx.depth
+ const showParentReplyLine =
+ (item.ctx.depth < 0 && !!item.parent) || item.ctx.depth > 1
+ const hasUnrevealedParents =
+ index === 0 && skeleton?.parents && maxParents < skeleton.parents.length
+ return (
+ setDeferParents(false) : undefined}>
+ 0
}
+ onPostReply={refetch}
+ hideTopBorder={index === 0 && !item.ctx.isParentLoading}
/>
- )
- } else if (item === SHOW_MUTED_REPLIES) {
- return (
-
- setHiddenRepliesState(HiddenRepliesState.ShowAndOverridePostHider)
- }
- />
- )
- } else if (isThreadNotFound(item)) {
- return (
-
-
- Deleted post.
-
-
- )
- } else if (isThreadBlocked(item)) {
- return (
-
-
- Blocked post.
-
-
- )
- } else if (isThreadPost(item)) {
- const prev = isThreadPost(posts[index - 1])
- ? (posts[index - 1] as ThreadPost)
- : undefined
- const next = isThreadPost(posts[index + 1])
- ? (posts[index + 1] as ThreadPost)
- : undefined
- const showChildReplyLine = (next?.ctx.depth || 0) > item.ctx.depth
- const showParentReplyLine =
- (item.ctx.depth < 0 && !!item.parent) || item.ctx.depth > 1
- const hasUnrevealedParents =
- index === 0 &&
- skeleton?.parents &&
- maxParents < skeleton.parents.length
- return (
- setDeferParents(false) : undefined}>
- 0
- }
- onPostReply={refetch}
- />
-
- )
- }
- return null
- },
- [
- hasSession,
- isTabletOrMobile,
- _,
- isMobile,
- onPressReply,
- pal.border,
- pal.viewLight,
- pal.textLight,
- posts,
- skeleton?.parents,
- maxParents,
- deferParents,
- treeView,
- refetch,
- threadModerationCache,
- hiddenRepliesState,
- setHiddenRepliesState,
- ],
- )
+
+ )
+ }
+ return null
+ }
if (!thread || !preferences || error) {
return (
@@ -449,39 +420,51 @@ export function PostThread({
}
return (
-
-
- }
- initialNumToRender={initialNumToRender}
- windowSize={11}
- />
-
+
+ {showHeader && (
+
+ )}
+
+
+
+ }
+ initialNumToRender={initialNumToRender}
+ windowSize={11}
+ sideBorders={false}
+ />
+
+
)
}
@@ -562,9 +545,9 @@ function* flattenThreadReplies(
// handle blurred items
if (node.ctx.depth > 0) {
const modui = modCache.get(node)?.ui('contentList')
- if (modui?.blur) {
+ if (modui?.blur || modui?.filter) {
if (!showHiddenReplies || node.ctx.depth > 1) {
- if (modui.blurs[0].type === 'muted') {
+ if ((modui.blurs[0] || modui.filters[0]).type === 'muted') {
return HiddenReplyType.Muted
}
return HiddenReplyType.Hidden
@@ -630,11 +613,3 @@ function hasBranchingReplies(node?: ThreadNode) {
}
return true
}
-
-const styles = StyleSheet.create({
- itemContainer: {
- borderTopWidth: 1,
- paddingHorizontal: 18,
- paddingVertical: 18,
- },
-})
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx
index c44875b376..096305a230 100644
--- a/src/view/com/post-thread/PostThreadItem.tsx
+++ b/src/view/com/post-thread/PostThreadItem.tsx
@@ -30,11 +30,17 @@ import {useSession} from 'state/session'
import {PostThreadFollowBtn} from 'view/com/post-thread/PostThreadFollowBtn'
import {atoms as a} from '#/alf'
import {RichText} from '#/components/RichText'
+import {
+ isAvailable as isNativeTranslationAvailable,
+ isLanguageSupported,
+ NativeTranslationModule,
+} from '../../../../modules/expo-bluesky-translate'
import {ContentHider} from '../../../components/moderation/ContentHider'
import {LabelsOnMyPost} from '../../../components/moderation/LabelsOnMe'
import {PostAlerts} from '../../../components/moderation/PostAlerts'
import {PostHider} from '../../../components/moderation/PostHider'
import {getTranslatorLink, isPostInLanguage} from '../../../locale/helpers'
+import {AviFollowButton} from '../posts/AviFollowButton'
import {WhoCanReply} from '../threadgate/WhoCanReply'
import {ErrorMessage} from '../util/error/ErrorMessage'
import {Link, TextLink} from '../util/Link'
@@ -44,6 +50,7 @@ import {PostEmbeds} from '../util/post-embeds'
import {PostMeta} from '../util/PostMeta'
import {Text} from '../util/text/Text'
import {PreviewableUserAvatar} from '../util/UserAvatar'
+import hairlineWidth = StyleSheet.hairlineWidth
export function PostThreadItem({
post,
@@ -60,6 +67,7 @@ export function PostThreadItem({
hasPrecedingItem,
overrideBlur,
onPostReply,
+ hideTopBorder,
}: {
post: AppBskyFeedDefs.PostView
record: AppBskyFeedPost.Record
@@ -75,6 +83,7 @@ export function PostThreadItem({
hasPrecedingItem: boolean
overrideBlur: boolean
onPostReply: () => void
+ hideTopBorder?: boolean
}) {
const postShadowed = usePostShadow(post)
const richText = useMemo(
@@ -86,7 +95,7 @@ export function PostThreadItem({
[record],
)
if (postShadowed === POST_TOMBSTONE) {
- return
+ return
}
if (richText && moderation) {
return (
@@ -108,16 +117,25 @@ export function PostThreadItem({
hasPrecedingItem={hasPrecedingItem}
overrideBlur={overrideBlur}
onPostReply={onPostReply}
+ hideTopBorder={hideTopBorder}
/>
)
}
return null
}
-function PostThreadItemDeleted() {
+function PostThreadItemDeleted({hideTopBorder}: {hideTopBorder?: boolean}) {
const pal = usePalette('default')
return (
-
+
This post has been deleted.
@@ -142,6 +160,7 @@ let PostThreadItemLoaded = ({
hasPrecedingItem,
overrideBlur,
onPostReply,
+ hideTopBorder,
}: {
post: Shadow
record: AppBskyFeedPost.Record
@@ -158,6 +177,7 @@ let PostThreadItemLoaded = ({
hasPrecedingItem: boolean
overrideBlur: boolean
onPostReply: () => void
+ hideTopBorder?: boolean
}): React.ReactNode => {
const pal = usePalette('default')
const {_} = useLingui()
@@ -232,7 +252,7 @@ let PostThreadItemLoaded = ({
styles.replyLine,
{
flexGrow: 1,
- backgroundColor: pal.colors.border,
+ backgroundColor: pal.colors.replyLine,
},
]}
/>
@@ -242,7 +262,14 @@ let PostThreadItemLoaded = ({
@@ -291,6 +318,7 @@ let PostThreadItemLoaded = ({
childContainerStyle={styles.contentHiderChild}>
@@ -317,6 +345,7 @@ let PostThreadItemLoaded = ({
@@ -361,7 +390,7 @@ let PostThreadItemLoaded = ({
) : null}
) : null}
-
+
+ hasPrecedingItem={hasPrecedingItem}
+ hideTopBorder={hideTopBorder}>
+ profile={post.author}
+ interpretFilterAsBlur>
-
+
+
+
{showChildReplyLine && (
{richText?.text ? (
@@ -568,6 +603,7 @@ function PostOuterWrapper({
depth,
showParentReplyLine,
hasPrecedingItem,
+ hideTopBorder,
children,
}: React.PropsWithChildren<{
post: AppBskyFeedDefs.PostView
@@ -575,6 +611,7 @@ function PostOuterWrapper({
depth: number
showParentReplyLine: boolean
hasPrecedingItem: boolean
+ hideTopBorder?: boolean
}>) {
const {isMobile} = useWebMediaQueries()
const pal = usePalette('default')
@@ -587,7 +624,7 @@ function PostOuterWrapper({
{
flexDirection: 'row',
paddingHorizontal: isMobile ? 10 : 6,
- borderTopWidth: depth === 1 ? 1 : 0,
+ borderTopWidth: depth === 1 ? hairlineWidth : 0,
},
]}>
{Array.from(Array(depth - 1)).map((_, n: number) => (
@@ -611,6 +648,7 @@ function PostOuterWrapper({
styles.outer,
pal.border,
showParentReplyLine && hasPrecedingItem && styles.noTopBorder,
+ hideTopBorder && styles.noTopBorder,
styles.cursor,
]}>
{children}
@@ -620,26 +658,39 @@ function PostOuterWrapper({
function ExpandedPostDetails({
post,
+ record,
needsTranslation,
translatorUrl,
}: {
post: AppBskyFeedDefs.PostView
+ record?: AppBskyFeedPost.Record
needsTranslation: boolean
translatorUrl: string
}) {
const pal = usePalette('default')
const {_} = useLingui()
const openLink = useOpenLink()
- const onTranslatePress = React.useCallback(
- () => openLink(translatorUrl),
- [openLink, translatorUrl],
- )
+
+ const text = record?.text || ''
+
+ const onTranslatePress = React.useCallback(() => {
+ if (
+ isNativeTranslationAvailable &&
+ isLanguageSupported(record?.langs?.at(0))
+ ) {
+ NativeTranslationModule.presentAsync(text)
+ } else {
+ openLink(translatorUrl)
+ }
+ }, [openLink, text, translatorUrl, record])
+
return (
{niceDate(post.indexedAt)}
{needsTranslation && (
<>
·
+
void
+ hideTopBorder?: boolean
}) {
const {_} = useLingui()
const t = useTheme()
@@ -31,7 +33,7 @@ export function PostThreadShowHiddenReplies({
a.gap_sm,
a.py_lg,
a.px_xl,
- a.border_t,
+ !hideTopBorder && a.border_t,
t.atoms.border_contrast_low,
hovered || pressed ? t.atoms.bg_contrast_25 : t.atoms.bg,
]}>
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx
index 1a7185cd92..a7ccf0be2b 100644
--- a/src/view/com/post/Post.tsx
+++ b/src/view/com/post/Post.tsx
@@ -22,6 +22,7 @@ import {makeProfileLink} from 'lib/routes/links'
import {countLines} from 'lib/strings/helpers'
import {colors, s} from 'lib/styles'
import {precacheProfile} from 'state/queries/profile'
+import {AviFollowButton} from '#/view/com/posts/AviFollowButton'
import {atoms as a} from '#/alf'
import {ProfileHoverCard} from '#/components/ProfileHoverCard'
import {RichText} from '#/components/RichText'
@@ -35,6 +36,7 @@ import {PostMeta} from '../util/PostMeta'
import {Text} from '../util/text/Text'
import {PreviewableUserAvatar} from '../util/UserAvatar'
import {UserInfoText} from '../util/UserInfoText'
+import hairlineWidth = StyleSheet.hairlineWidth
export function Post({
post,
@@ -146,12 +148,14 @@ function PostInner({
{showReplyLine && }
-
+
+
+
()
+
+ const name = sanitizeDisplayName(
+ profile.displayName || profile.handle,
+ moderation.ui('displayName'),
+ )
+ const isFollowing =
+ profile.viewer?.following || profile.did === currentAccount?.did
+
+ function onPress() {
+ follow()
+ Toast.show(_(msg`Following ${name}`))
+ }
+
+ const items: DropdownItem[] = [
+ {
+ label: _(msg`View profile`),
+ onPress: () => {
+ navigation.navigate('Profile', {name: profile.did})
+ },
+ icon: {
+ ios: {
+ name: 'arrow.up.right.square',
+ },
+ android: '',
+ web: ['far', 'arrow-up-right-from-square'],
+ },
+ },
+ {
+ label: _(msg`Follow ${name}`),
+ onPress: onPress,
+ icon: {
+ ios: {
+ name: 'person.badge.plus',
+ },
+ android: '',
+ web: ['far', 'user-plus'],
+ },
+ },
+ ]
+
+ return hasSession && gate('show_avi_follow_button') ? (
+
+ {children}
+
+ {!isFollowing && (
+
+
+
+
+
+ )}
+
+ ) : (
+ children
+ )
+}
diff --git a/src/view/com/posts/AviFollowButton.web.tsx b/src/view/com/posts/AviFollowButton.web.tsx
new file mode 100644
index 0000000000..6ad3c9f1fd
--- /dev/null
+++ b/src/view/com/posts/AviFollowButton.web.tsx
@@ -0,0 +1 @@
+export {Fragment as AviFollowButton} from 'react'
diff --git a/src/view/com/posts/Feed.tsx b/src/view/com/posts/Feed.tsx
index e45abfedc0..681670cf7b 100644
--- a/src/view/com/posts/Feed.tsx
+++ b/src/view/com/posts/Feed.tsx
@@ -3,6 +3,7 @@ import {
ActivityIndicator,
AppState,
Dimensions,
+ ListRenderItemInfo,
StyleProp,
StyleSheet,
View,
@@ -31,6 +32,7 @@ import {
import {useSession} from '#/state/session'
import {useAnalytics} from 'lib/analytics/analytics'
import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender'
+import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
import {useTheme} from 'lib/ThemeContext'
import {List, ListRef} from '../util/List'
import {PostFeedLoadingPlaceholder} from '../util/LoadingPlaceholder'
@@ -100,6 +102,7 @@ let Feed = ({
const checkForNewRef = React.useRef<(() => void) | null>(null)
const lastFetchRef = React.useRef(Date.now())
const [feedType, feedUri] = feed.split('|')
+ const {isTabletOrMobile} = useWebMediaQueries()
const opts = React.useMemo(
() => ({enabled, ignoreFilterFor}),
@@ -226,7 +229,7 @@ let Feed = ({
const onRefresh = React.useCallback(async () => {
track('Feed:onRefresh')
- logEvent('feed:refresh', {
+ logEvent('feed:refresh:sampled', {
feedType: feedType,
feedUrl: feed,
reason: 'pull-to-refresh',
@@ -244,7 +247,7 @@ let Feed = ({
const onEndReached = React.useCallback(async () => {
if (isFetching || !hasNextPage || isError) return
- logEvent('feed:endReached', {
+ logEvent('feed:endReached:sampled', {
feedType: feedType,
feedUrl: feed,
itemCount: feedItems.length,
@@ -279,7 +282,7 @@ let Feed = ({
// =
const renderItem = React.useCallback(
- ({item}: {item: any}) => {
+ ({item, index}: ListRenderItemInfo) => {
if (item === EMPTY_FEED_ITEM) {
return renderEmptyState()
} else if (item === ERROR_ITEM) {
@@ -311,17 +314,23 @@ let Feed = ({
// -prf
return
}
- return
+ return (
+
+ )
},
[
+ isTabletOrMobile,
+ renderEmptyState,
feed,
- feedUri,
error,
onPressTryAgain,
- onPressRetryLoadMore,
- renderEmptyState,
- _,
savedFeedConfig,
+ _,
+ onPressRetryLoadMore,
+ feedUri,
],
)
diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx
index 1a5f954e32..72c8b8757a 100644
--- a/src/view/com/posts/FeedItem.tsx
+++ b/src/view/com/posts/FeedItem.tsx
@@ -41,6 +41,8 @@ import {PostEmbeds} from '../util/post-embeds'
import {PostMeta} from '../util/PostMeta'
import {Text} from '../util/text/Text'
import {PreviewableUserAvatar} from '../util/UserAvatar'
+import {AviFollowButton} from './AviFollowButton'
+import hairlineWidth = StyleSheet.hairlineWidth
interface FeedItemProps {
record: AppBskyFeedPost.Record
@@ -52,6 +54,7 @@ interface FeedItemProps {
isThreadLastChild?: boolean
isThreadParent?: boolean
feedContext: string | undefined
+ hideTopBorder?: boolean
}
export function FeedItem({
@@ -65,6 +68,7 @@ export function FeedItem({
isThreadChild,
isThreadLastChild,
isThreadParent,
+ hideTopBorder,
}: FeedItemProps & {post: AppBskyFeedDefs.PostView}): React.ReactNode {
const postShadowed = usePostShadow(post)
const richText = useMemo(
@@ -94,6 +98,7 @@ export function FeedItem({
isThreadChild={isThreadChild}
isThreadLastChild={isThreadLastChild}
isThreadParent={isThreadParent}
+ hideTopBorder={hideTopBorder}
/>
)
}
@@ -112,6 +117,7 @@ let FeedItemInner = ({
isThreadChild,
isThreadLastChild,
isThreadParent,
+ hideTopBorder,
}: FeedItemProps & {
richText: RichTextAPI
post: Shadow
@@ -185,8 +191,8 @@ let FeedItemInner = ({
isThreadLastChild || (!isThreadChild && !isThreadParent)
? 8
: undefined,
+ borderTopWidth: hideTopBorder || isThreadChild ? 0 : hairlineWidth,
},
- isThreadChild ? styles.outerSmallTop : undefined,
]
return (
@@ -284,13 +290,15 @@ let FeedItemInner = ({
-
+
+
+
{isThreadParent && (
-
+
{richText.text ? (
) : undefined}
{postEmbed ? (
-
+
{
+let FeedSlice = ({
+ slice,
+ hideTopBorder,
+}: {
+ slice: FeedPostSlice
+ hideTopBorder?: boolean
+}): React.ReactNode => {
if (slice.isThread && slice.items.length > 3) {
const last = slice.items.length - 1
return (
@@ -27,6 +33,7 @@ let FeedSlice = ({slice}: {slice: FeedPostSlice}): React.ReactNode => {
moderation={slice.items[0].moderation}
isThreadParent={isThreadParentAt(slice.items, 0)}
isThreadChild={isThreadChildAt(slice.items, 0)}
+ hideTopBorder={hideTopBorder}
/>
{
isThreadLastChild={
isThreadChildAt(slice.items, i) && slice.items.length === i + 1
}
+ hideTopBorder={hideTopBorder && i === 0}
/>
))}
>
diff --git a/src/view/com/profile/ProfileCard.tsx b/src/view/com/profile/ProfileCard.tsx
index 6c89789467..2b0790002d 100644
--- a/src/view/com/profile/ProfileCard.tsx
+++ b/src/view/com/profile/ProfileCard.tsx
@@ -25,6 +25,7 @@ import {Link} from '../util/Link'
import {Text} from '../util/text/Text'
import {PreviewableUserAvatar} from '../util/UserAvatar'
import {FollowButton} from './FollowButton'
+import hairlineWidth = StyleSheet.hairlineWidth
export function ProfileCard({
testID,
@@ -280,7 +281,7 @@ export function ProfileCardWithFollowBtn({
const styles = StyleSheet.create({
outer: {
- borderTopWidth: 1,
+ borderTopWidth: hairlineWidth,
paddingHorizontal: 6,
paddingVertical: 4,
},
diff --git a/src/view/com/profile/ProfileMenu.tsx b/src/view/com/profile/ProfileMenu.tsx
index e3357ec1e7..5d39e5f0f3 100644
--- a/src/view/com/profile/ProfileMenu.tsx
+++ b/src/view/com/profile/ProfileMenu.tsx
@@ -30,8 +30,10 @@ import {Flag_Stroke2_Corner0_Rounded as Flag} from '#/components/icons/Flag'
import {ListSparkle_Stroke2_Corner0_Rounded as List} from '#/components/icons/ListSparkle'
import {Mute_Stroke2_Corner0_Rounded as Mute} from '#/components/icons/Mute'
import {PeopleRemove2_Stroke2_Corner0_Rounded as UserMinus} from '#/components/icons/PeopleRemove2'
-import {PersonCheck_Stroke2_Corner0_Rounded as PersonCheck} from '#/components/icons/PersonCheck'
-import {PersonX_Stroke2_Corner0_Rounded as PersonX} from '#/components/icons/PersonX'
+import {
+ PersonCheck_Stroke2_Corner0_Rounded as PersonCheck,
+ PersonX_Stroke2_Corner0_Rounded as PersonX,
+} from '#/components/icons/Person'
import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus'
import {SpeakerVolumeFull_Stroke2_Corner0_Rounded as Unmute} from '#/components/icons/Speaker'
import * as Menu from '#/components/Menu'
diff --git a/src/view/com/profile/ProfileSubpageHeader.tsx b/src/view/com/profile/ProfileSubpageHeader.tsx
index eaf00f3e66..549fc5151a 100644
--- a/src/view/com/profile/ProfileSubpageHeader.tsx
+++ b/src/view/com/profile/ProfileSubpageHeader.tsx
@@ -1,24 +1,26 @@
import React from 'react'
import {Pressable, StyleSheet, View} from 'react-native'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
import {useNavigation} from '@react-navigation/native'
+
+import {emitSoftReset} from '#/state/events'
+import {ImagesLightbox, useLightboxControls} from '#/state/lightbox'
+import {useSetDrawerOpen} from '#/state/shell'
+import {BACK_HITSLOP} from 'lib/constants'
import {usePalette} from 'lib/hooks/usePalette'
import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
-import {Text} from '../util/text/Text'
-import {TextLink} from '../util/Link'
-import {UserAvatar, UserAvatarType} from '../util/UserAvatar'
-import {LoadingPlaceholder} from '../util/LoadingPlaceholder'
-import {CenteredView} from '../util/Views'
-import {sanitizeHandle} from 'lib/strings/handles'
import {makeProfileLink} from 'lib/routes/links'
import {NavigationProp} from 'lib/routes/types'
-import {BACK_HITSLOP} from 'lib/constants'
+import {sanitizeHandle} from 'lib/strings/handles'
import {isNative} from 'platform/detection'
-import {useLightboxControls, ImagesLightbox} from '#/state/lightbox'
-import {useLingui} from '@lingui/react'
-import {Trans, msg} from '@lingui/macro'
-import {useSetDrawerOpen} from '#/state/shell'
-import {emitSoftReset} from '#/state/events'
+import {TextLink} from '../util/Link'
+import {LoadingPlaceholder} from '../util/LoadingPlaceholder'
+import {Text} from '../util/text/Text'
+import {UserAvatar, UserAvatarType} from '../util/UserAvatar'
+import {CenteredView} from '../util/Views'
+import hairlineWidth = StyleSheet.hairlineWidth
export function ProfileSubpageHeader({
isLoading,
@@ -79,7 +81,7 @@ export function ProfileSubpageHeader({
{
flexDirection: 'row',
alignItems: 'center',
- borderBottomWidth: 1,
+ borderBottomWidth: hairlineWidth,
paddingTop: isNative ? 0 : 8,
paddingBottom: 8,
paddingHorizontal: isMobile ? 12 : 14,
diff --git a/src/view/com/testing/TestCtrls.e2e.tsx b/src/view/com/testing/TestCtrls.e2e.tsx
index 31122f8388..1291165b3d 100644
--- a/src/view/com/testing/TestCtrls.e2e.tsx
+++ b/src/view/com/testing/TestCtrls.e2e.tsx
@@ -2,7 +2,6 @@ import React from 'react'
import {LogBox, Pressable, View} from 'react-native'
import {useQueryClient} from '@tanstack/react-query'
-import {useDangerousSetGate} from '#/lib/statsig/statsig'
import {useModalControls} from '#/state/modals'
import {useSessionApi} from '#/state/session'
import {useLoggedOutViewControls} from '#/state/shell/logged-out'
@@ -25,7 +24,6 @@ export function TestCtrls() {
const {openModal} = useModalControls()
const onboardingDispatch = useOnboardingDispatch()
const {setShowLoggedOut} = useLoggedOutViewControls()
- const setGate = useDangerousSetGate()
const onPressSignInAlice = async () => {
await login(
{
@@ -117,8 +115,6 @@ export function TestCtrls() {
{
- // TODO remove when experiment is over
- setGate('reduced_onboarding_and_home_algo_v2', true)
onboardingDispatch({type: 'start'})
}}
accessibilityRole="button"
@@ -128,8 +124,6 @@ export function TestCtrls() {
{
- // TODO remove when experiment is over
- setGate('reduced_onboarding_and_home_algo_v2', false)
onboardingDispatch({type: 'start'})
}}
accessibilityRole="button"
diff --git a/src/view/com/util/BottomSheetCustomBackdrop.tsx b/src/view/com/util/BottomSheetCustomBackdrop.tsx
index 0d15c5e555..25e882e87a 100644
--- a/src/view/com/util/BottomSheetCustomBackdrop.tsx
+++ b/src/view/com/util/BottomSheetCustomBackdrop.tsx
@@ -1,7 +1,7 @@
import React, {useMemo} from 'react'
import {TouchableWithoutFeedback} from 'react-native'
import Animated, {
- Extrapolate,
+ Extrapolation,
interpolate,
useAnimatedStyle,
} from 'react-native-reanimated'
@@ -21,7 +21,7 @@ export function createCustomBackdrop(
animatedIndex.value, // current snap index
[-1, 0], // input range
[0, 0.5], // output range
- Extrapolate.CLAMP,
+ Extrapolation.CLAMP,
),
}))
diff --git a/src/view/com/util/Link.tsx b/src/view/com/util/Link.tsx
index 865be45520..ab6fd200fc 100644
--- a/src/view/com/util/Link.tsx
+++ b/src/view/com/util/Link.tsx
@@ -64,6 +64,8 @@ export const Link = memo(function Link({
anchorNoUnderline,
navigationAction,
onBeforePress,
+ accessibilityActions,
+ onAccessibilityAction,
...props
}: Props) {
const t = useTheme()
@@ -89,6 +91,11 @@ export const Link = memo(function Link({
[closeModal, navigation, navigationAction, href, openLink, onBeforePress],
)
+ const accessibilityActionsWithActivate = [
+ ...(accessibilityActions || []),
+ {name: 'activate', label: title},
+ ]
+
if (noFeedback) {
return (
@@ -97,6 +104,14 @@ export const Link = memo(function Link({
onPress={onPress}
accessible={accessible}
accessibilityRole="link"
+ accessibilityActions={accessibilityActionsWithActivate}
+ onAccessibilityAction={e => {
+ if (e.nativeEvent.actionName === 'activate') {
+ onPress()
+ } else {
+ onAccessibilityAction?.(e)
+ }
+ }}
{...props}
android_ripple={{
color: t.atoms.bg_contrast_25.backgroundColor,
diff --git a/src/view/com/util/List.tsx b/src/view/com/util/List.tsx
index c271481a90..22d0949129 100644
--- a/src/view/com/util/List.tsx
+++ b/src/view/com/util/List.tsx
@@ -26,6 +26,8 @@ export type ListProps = Omit<
onItemSeen?: (item: ItemT) => void
containWeb?: boolean
sideBorders?: boolean
+ // Web only prop to disable a perf optimization (which would otherwise be on).
+ disableContentVisibility?: boolean
}
export type ListRef = React.MutableRefObject
diff --git a/src/view/com/util/List.web.tsx b/src/view/com/util/List.web.tsx
index 9d8ddedaa3..d4bd1b0039 100644
--- a/src/view/com/util/List.web.tsx
+++ b/src/view/com/util/List.web.tsx
@@ -5,7 +5,7 @@ import {ReanimatedScrollEvent} from 'react-native-reanimated/lib/typescript/rean
import {batchedUpdates} from '#/lib/batchedUpdates'
import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback'
import {useScrollHandlers} from '#/lib/ScrollContext'
-import {isFirefox, isSafari} from 'lib/browser'
+import {isSafari} from 'lib/browser'
import {usePalette} from 'lib/hooks/usePalette'
import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
import {addStyle} from 'lib/styles'
@@ -25,6 +25,7 @@ export type ListProps = Omit<
desktopFixedHeight: any // TODO: Better types.
containWeb?: boolean
sideBorders?: boolean
+ disableContentVisibility?: boolean
}
export type ListRef = React.MutableRefObject // TODO: Better types.
@@ -56,6 +57,7 @@ function ListImpl(
extraData,
style,
sideBorders = true,
+ disableContentVisibility,
...props
}: ListProps,
ref: React.Ref,
@@ -339,6 +341,7 @@ function ListImpl(
renderItem={renderItem}
extraData={extraData}
onItemSeen={onItemSeen}
+ disableContentVisibility={disableContentVisibility}
/>
)
})}
@@ -387,6 +390,7 @@ let Row = function RowImpl({
renderItem,
extraData: _unused,
onItemSeen,
+ disableContentVisibility,
}: {
item: ItemT
index: number
@@ -396,6 +400,7 @@ let Row = function RowImpl({
| ((data: {index: number; item: any; separators: any}) => React.ReactNode)
extraData: any
onItemSeen: ((item: any) => void) | undefined
+ disableContentVisibility?: boolean
}): React.ReactNode {
const rowRef = React.useRef(null)
const intersectionTimeout = React.useRef(undefined)
@@ -444,8 +449,15 @@ let Row = function RowImpl({
return null
}
+ const shouldDisableContentVisibility = disableContentVisibility || isSafari
return (
-
+
{renderItem({item, index, separators: null as any})}
)
@@ -516,9 +528,9 @@ const styles = StyleSheet.create({
marginLeft: 'auto',
marginRight: 'auto',
},
- row: {
+ contentVisibilityAuto: {
// @ts-ignore web only
- contentVisibility: isSafari || isFirefox ? '' : 'auto', // Safari support for this is buggy.
+ contentVisibility: 'auto',
},
minHeightViewport: {
// @ts-ignore web only
diff --git a/src/view/com/util/LoadingPlaceholder.tsx b/src/view/com/util/LoadingPlaceholder.tsx
index 6dfe125985..adeefd4ddb 100644
--- a/src/view/com/util/LoadingPlaceholder.tsx
+++ b/src/view/com/util/LoadingPlaceholder.tsx
@@ -1,20 +1,23 @@
import React from 'react'
import {
- StyleSheet,
+ DimensionValue,
StyleProp,
+ StyleSheet,
View,
ViewStyle,
- DimensionValue,
} from 'react-native'
-import {
- HeartIcon,
- HeartIconSolid,
- CommentBottomArrow,
- RepostIcon,
-} from 'lib/icons'
+
+import {usePalette} from 'lib/hooks/usePalette'
import {s} from 'lib/styles'
import {useTheme} from 'lib/ThemeContext'
-import {usePalette} from 'lib/hooks/usePalette'
+import {atoms as a, useTheme as useTheme_NEW} from '#/alf'
+import {Bubble_Stroke2_Corner2_Rounded as Bubble} from '#/components/icons/Bubble'
+import {
+ Heart2_Filled_Stroke2_Corner0_Rounded as HeartIconFilled,
+ Heart2_Stroke2_Corner0_Rounded as HeartIconOutline,
+} from '#/components/icons/Heart2'
+import {Repost_Stroke2_Corner2_Rounded as Repost} from '#/components/icons/Repost'
+import hairlineWidth = StyleSheet.hairlineWidth
export function LoadingPlaceholder({
width,
@@ -46,7 +49,7 @@ export function PostLoadingPlaceholder({
}: {
style?: StyleProp
}) {
- const theme = useTheme()
+ const t = useTheme_NEW()
const pal = usePalette('default')
return (
@@ -67,35 +70,47 @@ export function PostLoadingPlaceholder({
-
-
-
+
+
-
-
-
+
@@ -126,14 +141,14 @@ export function NotificationLoadingPlaceholder({
const pal = usePalette('default')
return (
-
-
+
-
+
void
+ accessible?: boolean
}
const BLUR_AMOUNT = isWeb ? 5 : 100
@@ -386,6 +387,7 @@ let PreviewableUserAvatar = ({
profile,
disableHoverCard,
onBeforePress,
+ accessible = true,
...rest
}: PreviewableUserAvatarProps): React.ReactNode => {
const {_} = useLingui()
@@ -399,7 +401,12 @@ let PreviewableUserAvatar = ({
return (
@@ -245,7 +246,7 @@ const styles = StyleSheet.create({
marginRight: 'auto',
},
border: {
- borderBottomWidth: 1,
+ borderBottomWidth: hairlineWidth,
},
titleContainer: {
marginLeft: 'auto',
diff --git a/src/view/com/util/Views.jsx b/src/view/com/util/Views.jsx
index 2984a2d2d1..02a2b407ee 100644
--- a/src/view/com/util/Views.jsx
+++ b/src/view/com/util/Views.jsx
@@ -1,12 +1,7 @@
-import React from 'react'
import {View} from 'react-native'
import Animated from 'react-native-reanimated'
+// If you explode these into functions, don't forget to forwardRef!
export const FlatList_INTERNAL = Animated.FlatList
-export function CenteredView(props) {
- return
-}
-
-export function ScrollView(props) {
- return
-}
+export const CenteredView = View
+export const ScrollView = Animated.ScrollView
diff --git a/src/view/com/util/Views.web.tsx b/src/view/com/util/Views.web.tsx
index 04891806c4..ffea9fe2e6 100644
--- a/src/view/com/util/Views.web.tsx
+++ b/src/view/com/util/Views.web.tsx
@@ -14,6 +14,7 @@
import React from 'react'
import {
+ FlatList,
FlatListProps,
ScrollViewProps,
StyleSheet,
@@ -25,12 +26,13 @@ import Animated from 'react-native-reanimated'
import {usePalette} from 'lib/hooks/usePalette'
import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
import {addStyle} from 'lib/styles'
+import hairlineWidth = StyleSheet.hairlineWidth
interface AddedProps {
desktopFixedHeight?: boolean | number
}
-export function CenteredView({
+export const CenteredView = React.forwardRef(function CenteredView({
style,
sideBorders,
topBorder,
@@ -45,8 +47,8 @@ export function CenteredView({
}
if (sideBorders) {
style = addStyle(style, {
- borderLeftWidth: 1,
- borderRightWidth: 1,
+ borderLeftWidth: hairlineWidth,
+ borderRightWidth: hairlineWidth,
})
style = addStyle(style, pal.border)
}
@@ -57,7 +59,7 @@ export function CenteredView({
style = addStyle(style, pal.border)
}
return
-}
+})
export const FlatList_INTERNAL = React.forwardRef(function FlatListImpl(
{
@@ -67,7 +69,7 @@ export const FlatList_INTERNAL = React.forwardRef(function FlatListImpl(
desktopFixedHeight,
...props
}: React.PropsWithChildren & AddedProps>,
- ref: React.Ref>,
+ ref: React.Ref>,
) {
const pal = usePalette('default')
const {isMobile} = useWebMediaQueries()
@@ -158,8 +160,8 @@ export const ScrollView = React.forwardRef(function ScrollViewImpl(
const styles = StyleSheet.create({
contentContainer: {
- borderLeftWidth: 1,
- borderRightWidth: 1,
+ borderLeftWidth: hairlineWidth,
+ borderRightWidth: hairlineWidth,
// @ts-ignore web only
minHeight: '100vh',
},
diff --git a/src/view/com/util/fab/FABInner.tsx b/src/view/com/util/fab/FABInner.tsx
index a01756da06..c9443127b8 100644
--- a/src/view/com/util/fab/FABInner.tsx
+++ b/src/view/com/util/fab/FABInner.tsx
@@ -1,14 +1,15 @@
import React, {ComponentProps} from 'react'
import {StyleSheet, TouchableWithoutFeedback} from 'react-native'
-import Animated from 'react-native-reanimated'
+import Animated, {useAnimatedStyle, withTiming} from 'react-native-reanimated'
import {useSafeAreaInsets} from 'react-native-safe-area-context'
import {LinearGradient} from 'expo-linear-gradient'
+import {useMinimalShellMode} from '#/lib/hooks/useMinimalShellMode'
+import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
+import {clamp} from '#/lib/numbers'
+import {gradients} from '#/lib/styles'
import {isWeb} from '#/platform/detection'
-import {useMinimalShellMode} from 'lib/hooks/useMinimalShellMode'
-import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
-import {clamp} from 'lib/numbers'
-import {gradients} from 'lib/styles'
+import {useInteractionState} from '#/components/hooks/useInteractionState'
export interface FABProps
extends ComponentProps {
@@ -20,21 +21,28 @@ export function FABInner({testID, icon, ...props}: FABProps) {
const insets = useSafeAreaInsets()
const {isMobile, isTablet} = useWebMediaQueries()
const {fabMinimalShellTransform} = useMinimalShellMode()
+ const {
+ state: pressed,
+ onIn: onPressIn,
+ onOut: onPressOut,
+ } = useInteractionState()
- const size = React.useMemo(() => {
- return isTablet ? styles.sizeLarge : styles.sizeRegular
- }, [isTablet])
- const tabletSpacing = React.useMemo(() => {
- return isTablet
- ? {right: 50, bottom: 50}
- : {
- right: 24,
- bottom: clamp(insets.bottom, 15, 60) + 15,
- }
- }, [insets.bottom, isTablet])
+ const size = isTablet ? styles.sizeLarge : styles.sizeRegular
+
+ const tabletSpacing = isTablet
+ ? {right: 50, bottom: 50}
+ : {right: 24, bottom: clamp(insets.bottom, 15, 60) + 15}
+
+ const scale = useAnimatedStyle(() => ({
+ transform: [{scale: withTiming(pressed ? 0.95 : 1)}],
+ }))
return (
-
+
-
- {icon}
-
+
+
+ {icon}
+
+
)
diff --git a/src/view/com/util/forms/DropdownButton.tsx b/src/view/com/util/forms/DropdownButton.tsx
index 2285b0615a..bfbafcad9d 100644
--- a/src/view/com/util/forms/DropdownButton.tsx
+++ b/src/view/com/util/forms/DropdownButton.tsx
@@ -10,18 +10,22 @@ import {
View,
ViewStyle,
} from 'react-native'
-import {IconProp} from '@fortawesome/fontawesome-svg-core'
+import Animated, {FadeIn, FadeInDown, FadeInUp} from 'react-native-reanimated'
import RootSiblings from 'react-native-root-siblings'
+import {IconProp} from '@fortawesome/fontawesome-svg-core'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {HITSLOP_10} from 'lib/constants'
+import {usePalette} from 'lib/hooks/usePalette'
+import {colors} from 'lib/styles'
+import {useTheme} from 'lib/ThemeContext'
+import {isWeb} from 'platform/detection'
+import {native} from '#/alf'
+import {FullWindowOverlay} from '#/components/FullWindowOverlay'
import {Text} from '../text/Text'
import {Button, ButtonType} from './Button'
-import {colors} from 'lib/styles'
-import {usePalette} from 'lib/hooks/usePalette'
-import {useTheme} from 'lib/ThemeContext'
-import {HITSLOP_10} from 'lib/constants'
-import {useLingui} from '@lingui/react'
-import {msg} from '@lingui/macro'
-import {isWeb} from 'platform/detection'
const ESTIMATED_BTN_HEIGHT = 50
const ESTIMATED_SEP_HEIGHT = 16
@@ -124,6 +128,7 @@ export function DropdownButton({
pageY,
menuWidth,
items.filter(v => !!v) as DropdownItem[],
+ openUpwards,
)
},
)
@@ -178,6 +183,7 @@ function createDropdownMenu(
pageY: number,
width: number,
items: DropdownItem[],
+ opensUpwards = false,
): RootSiblings {
const onPressItem = (index: number) => {
sibling.destroy()
@@ -197,6 +203,7 @@ function createDropdownMenu(
width={width}
items={items}
onPressItem={onPressItem}
+ openUpwards={opensUpwards}
/>
),
)
@@ -211,6 +218,7 @@ type DropDownItemProps = {
width: number
items: DropdownItem[]
onPressItem: (index: number) => void
+ openUpwards: boolean
}
const DropdownItems = ({
@@ -221,6 +229,7 @@ const DropdownItems = ({
width,
items,
onPressItem,
+ openUpwards,
}: DropDownItemProps) => {
const pal = usePalette('default')
const theme = useTheme()
@@ -239,13 +248,14 @@ const DropdownItems = ({
// - (On mobile) be buttons by default, accept `label` and `nativeID`
// props, and always have an explicit label
return (
- <>
+
{/* This TouchableWithoutFeedback renders the background so if the user clicks outside, the dropdown closes */}
-
-
- >
+
+
)
}
@@ -323,14 +336,12 @@ const styles = StyleSheet.create({
position: 'absolute',
left: 0,
width: '100%',
- backgroundColor: '#000',
- opacity: 0.1,
+ backgroundColor: 'rgba(0, 0, 0, 0.1)',
},
menu: {
position: 'absolute',
backgroundColor: '#fff',
borderRadius: 14,
- opacity: 1,
paddingVertical: 6,
},
menuItem: {
diff --git a/src/view/com/util/forms/PostDropdownBtn.tsx b/src/view/com/util/forms/PostDropdownBtn.tsx
index 7a62ce7cbc..945cf5e596 100644
--- a/src/view/com/util/forms/PostDropdownBtn.tsx
+++ b/src/view/com/util/forms/PostDropdownBtn.tsx
@@ -1,5 +1,10 @@
import React, {memo} from 'react'
-import {Pressable, PressableProps, StyleProp, ViewStyle} from 'react-native'
+import {
+ Pressable,
+ type PressableProps,
+ type StyleProp,
+ type ViewStyle,
+} from 'react-native'
import * as Clipboard from 'expo-clipboard'
import {
AppBskyActorDefs,
@@ -7,13 +12,12 @@ import {
AtUri,
RichText as RichTextAPI,
} from '@atproto/api'
-import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
-import {msg} from '@lingui/macro'
+import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useNavigation} from '@react-navigation/native'
import {makeProfileLink} from '#/lib/routes/links'
-import {CommonNavigatorParams} from '#/lib/routes/types'
+import {CommonNavigatorParams, NavigationProp} from '#/lib/routes/types'
import {richTextToString} from '#/lib/strings/rich-text-helpers'
import {getTranslatorLink} from '#/locale/helpers'
import {logger} from '#/logger'
@@ -33,10 +37,12 @@ import {atoms as a, useBreakpoints, useTheme as useAlf} from '#/alf'
import {useDialogControl} from '#/components/Dialog'
import {useGlobalDialogsControlContext} from '#/components/dialogs/Context'
import {EmbedDialog} from '#/components/dialogs/Embed'
+import {SendViaChatDialog} from '#/components/dms/dialogs/ShareViaChatDialog'
import {ArrowOutOfBox_Stroke2_Corner0_Rounded as Share} from '#/components/icons/ArrowOutOfBox'
import {BubbleQuestion_Stroke2_Corner0_Rounded as Translate} from '#/components/icons/Bubble'
import {Clipboard_Stroke2_Corner2_Rounded as ClipboardIcon} from '#/components/icons/Clipboard'
import {CodeBrackets_Stroke2_Corner0_Rounded as CodeBrackets} from '#/components/icons/CodeBrackets'
+import {DotGrid_Stroke2_Corner0_Rounded as DotsHorizontal} from '#/components/icons/DotGrid'
import {
EmojiSad_Stroke2_Corner0_Rounded as EmojiSad,
EmojiSmile_Stroke2_Corner0_Rounded as EmojiSmile,
@@ -44,12 +50,18 @@ import {
import {EyeSlash_Stroke2_Corner0_Rounded as EyeSlash} from '#/components/icons/EyeSlash'
import {Filter_Stroke2_Corner0_Rounded as Filter} from '#/components/icons/Filter'
import {Mute_Stroke2_Corner0_Rounded as Mute} from '#/components/icons/Mute'
+import {PaperPlane_Stroke2_Corner0_Rounded as Send} from '#/components/icons/PaperPlane'
import {SpeakerVolumeFull_Stroke2_Corner0_Rounded as Unmute} from '#/components/icons/Speaker'
import {Trash_Stroke2_Corner0_Rounded as Trash} from '#/components/icons/Trash'
import {Warning_Stroke2_Corner0_Rounded as Warning} from '#/components/icons/Warning'
import * as Menu from '#/components/Menu'
import * as Prompt from '#/components/Prompt'
import {ReportDialog, useReportDialogControl} from '#/components/ReportDialog'
+import {
+ isAvailable as isNativeTranslationAvailable,
+ isLanguageSupported,
+ NativeTranslationModule,
+} from '../../../../../modules/expo-bluesky-translate'
import {EventStopper} from '../EventStopper'
import * as Toast from '../Toast'
@@ -63,6 +75,7 @@ let PostDropdownBtn = ({
richText,
style,
hitSlop,
+ size,
timestamp,
}: {
testID: string
@@ -74,6 +87,7 @@ let PostDropdownBtn = ({
richText: RichTextAPI
style?: StyleProp
hitSlop?: PressableProps['hitSlop']
+ size?: 'lg' | 'md' | 'sm'
timestamp: string
}): React.ReactNode => {
const {hasSession, currentAccount} = useSession()
@@ -90,13 +104,14 @@ let PostDropdownBtn = ({
const {hidePost} = useHiddenPostsApi()
const feedFeedback = useFeedFeedbackContext()
const openLink = useOpenLink()
- const navigation = useNavigation()
+ const navigation = useNavigation()
const {mutedWordsDialogControl} = useGlobalDialogsControlContext()
const reportDialogControl = useReportDialogControl()
const deletePromptControl = useDialogControl()
const hidePromptControl = useDialogControl()
const loggedOutWarningPromptControl = useDialogControl()
const embedPostControl = useDialogControl()
+ const sendViaChatControl = useDialogControl()
const rootUri = record.reply?.root?.uri || postUri
const isThreadMuted = mutedThreads.includes(rootUri)
@@ -172,9 +187,17 @@ let PostDropdownBtn = ({
Toast.show(_(msg`Copied to clipboard`))
}, [_, richText])
- const onOpenTranslate = React.useCallback(() => {
- openLink(translatorUrl)
- }, [openLink, translatorUrl])
+ const onPressTranslate = React.useCallback(() => {
+ if (
+ isNativeTranslationAvailable &&
+ isLanguageSupported(record?.langs?.at(0))
+ ) {
+ const text = richTextToString(richText, true)
+ NativeTranslationModule.presentAsync(text)
+ } else {
+ openLink(translatorUrl)
+ }
+ }, [openLink, record?.langs, richText, translatorUrl])
const onHidePost = React.useCallback(() => {
hidePost({uri: postUri})
@@ -209,6 +232,16 @@ let PostDropdownBtn = ({
Toast.show('Feedback sent!')
}, [feedFeedback, postUri, postFeedContext])
+ const onSelectChatToShareTo = React.useCallback(
+ (conversation: string) => {
+ navigation.navigate('MessagesConversation', {
+ conversation,
+ embed: postUri,
+ })
+ },
+ [navigation, postUri],
+ )
+
const canEmbed = isWeb && gtMobile && !hideInPWI
return (
@@ -225,14 +258,13 @@ let PostDropdownBtn = ({
style,
a.rounded_full,
(state.hovered || state.pressed) && [
- alf.atoms.bg_contrast_50,
+ alf.atoms.bg_contrast_25,
],
]}>
-
)
@@ -246,7 +278,7 @@ let PostDropdownBtn = ({
+ onPress={onPressTranslate}>
{_(msg`Translate`)}
@@ -261,6 +293,18 @@ let PostDropdownBtn = ({
>
)}
+ {hasSession && (
+
+
+ Send via direct message
+
+
+
+ )}
+
)}
+
+
)
}
diff --git a/src/view/com/util/images/Gallery.tsx b/src/view/com/util/images/Gallery.tsx
index f0b7ac15e7..8d23d258f5 100644
--- a/src/view/com/util/images/Gallery.tsx
+++ b/src/view/com/util/images/Gallery.tsx
@@ -79,7 +79,7 @@ const styles = StyleSheet.create({
},
alt: {
color: 'white',
- fontSize: 6,
+ fontSize: 7,
fontWeight: 'bold',
},
})
diff --git a/src/view/com/util/images/Image.web.tsx b/src/view/com/util/images/Image.web.tsx
index ecd9d730ab..a5200b3ea2 100644
--- a/src/view/com/util/images/Image.web.tsx
+++ b/src/view/com/util/images/Image.web.tsx
@@ -1,11 +1,3 @@
-import {
- Image,
- NativeSyntheticEvent,
- ImageLoadEventData,
- ImageSourcePropType,
-} from 'react-native'
-export default Image
+import {Image} from 'react-native'
+
export const HighPriorityImage = Image
-export type OnLoadEvent = NativeSyntheticEvent
-export type Source = ImageSourcePropType
-export type {ImageStyle} from 'react-native'
diff --git a/src/view/com/util/images/ImageHorzList.tsx b/src/view/com/util/images/ImageHorzList.tsx
index e37f8af1b7..12eef14f73 100644
--- a/src/view/com/util/images/ImageHorzList.tsx
+++ b/src/view/com/util/images/ImageHorzList.tsx
@@ -27,11 +27,14 @@ export function ImageHorzList({images, style}: Props) {
}
const styles = StyleSheet.create({
- flexRow: {flexDirection: 'row'},
+ flexRow: {
+ flexDirection: 'row',
+ gap: 5,
+ },
image: {
- width: 100,
- height: 100,
+ maxWidth: 100,
+ aspectRatio: 1,
+ flex: 1,
borderRadius: 4,
- marginRight: 5,
},
})
diff --git a/src/view/com/util/load-latest/LoadLatestBtn.tsx b/src/view/com/util/load-latest/LoadLatestBtn.tsx
index f02e4a2bd7..a6b40f9f52 100644
--- a/src/view/com/util/load-latest/LoadLatestBtn.tsx
+++ b/src/view/com/util/load-latest/LoadLatestBtn.tsx
@@ -1,17 +1,22 @@
import React from 'react'
import {StyleSheet, TouchableOpacity, View} from 'react-native'
-import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import Animated from 'react-native-reanimated'
+import {useSafeAreaInsets} from 'react-native-safe-area-context'
+import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {useMediaQuery} from 'react-responsive'
-import {usePalette} from 'lib/hooks/usePalette'
-import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
-import {colors} from 'lib/styles'
-import {HITSLOP_20} from 'lib/constants'
-import {useMinimalShellMode} from 'lib/hooks/useMinimalShellMode'
+
+import {HITSLOP_20} from '#/lib/constants'
+import {useMinimalShellMode} from '#/lib/hooks/useMinimalShellMode'
+import {usePalette} from '#/lib/hooks/usePalette'
+import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
+import {clamp} from '#/lib/numbers'
+import {colors} from '#/lib/styles'
+import {isWeb} from '#/platform/detection'
+import {useSession} from '#/state/session'
+import hairlineWidth = StyleSheet.hairlineWidth
+
const AnimatedTouchableOpacity =
Animated.createAnimatedComponent(TouchableOpacity)
-import {isWeb} from 'platform/detection'
-import {useSession} from 'state/session'
export function LoadLatestBtn({
onPress,
@@ -26,6 +31,7 @@ export function LoadLatestBtn({
const {hasSession} = useSession()
const {isDesktop, isTablet, isMobile, isTabletOrMobile} = useWebMediaQueries()
const {fabMinimalShellTransform} = useMinimalShellMode()
+ const insets = useSafeAreaInsets()
// move button inline if it starts overlapping the left nav
const isTallViewport = useMediaQuery({minHeight: 700})
@@ -34,6 +40,10 @@ export function LoadLatestBtn({
// it on both tablet and mobile since we are showing the bottom bar (see createNativeStackNavigatorWithAuth)
const showBottomBar = hasSession ? isMobile : isTabletOrMobile
+ const bottomPosition = isTablet
+ ? {bottom: 50}
+ : {bottom: clamp(insets.bottom, 15, 60) + 15}
+
return (
Intl.NumberFormat('en-US', {
notation: 'compact',
maximumFractionDigits: 1,
+ // `1,953` shouldn't be rounded up to 2k, it should be truncated.
+ // @ts-expect-error: `roundingMode` doesn't seem to be in the typings yet
+ // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#roundingmode
+ roundingMode: 'trunc',
}).format(num)
export function formatCountShortOnly(num: number): string {
diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx
index b6c07d5735..d42590e905 100644
--- a/src/view/com/util/post-ctrls/PostCtrls.tsx
+++ b/src/view/com/util/post-ctrls/PostCtrls.tsx
@@ -1,10 +1,10 @@
import React, {memo, useCallback} from 'react'
import {
- StyleProp,
- StyleSheet,
- TouchableOpacity,
+ Pressable,
+ type PressableStateCallbackType,
+ type StyleProp,
View,
- ViewStyle,
+ type ViewStyle,
} from 'react-native'
import {
AppBskyFeedDefs,
@@ -16,24 +16,27 @@ import {msg, plural} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {HITSLOP_10, HITSLOP_20} from '#/lib/constants'
-import {CommentBottomArrow, HeartIcon, HeartIconSolid} from '#/lib/icons'
+import {useHaptics} from '#/lib/haptics'
import {makeProfileLink} from '#/lib/routes/links'
import {shareUrl} from '#/lib/sharing'
import {toShareUrl} from '#/lib/strings/url-helpers'
import {s} from '#/lib/styles'
-import {useTheme} from '#/lib/ThemeContext'
import {Shadow} from '#/state/cache/types'
import {useFeedFeedbackContext} from '#/state/feed-feedback'
-import {useModalControls} from '#/state/modals'
import {
usePostLikeMutationQueue,
usePostRepostMutationQueue,
} from '#/state/queries/post'
import {useRequireAuth} from '#/state/session'
import {useComposerControls} from '#/state/shell/composer'
-import {useHaptics} from 'lib/haptics'
+import {atoms as a, useTheme} from '#/alf'
import {useDialogControl} from '#/components/Dialog'
import {ArrowOutOfBox_Stroke2_Corner0_Rounded as ArrowOutOfBox} from '#/components/icons/ArrowOutOfBox'
+import {Bubble_Stroke2_Corner2_Rounded as Bubble} from '#/components/icons/Bubble'
+import {
+ Heart2_Filled_Stroke2_Corner0_Rounded as HeartIconFilled,
+ Heart2_Stroke2_Corner0_Rounded as HeartIconOutline,
+} from '#/components/icons/Heart2'
import * as Prompt from '#/components/Prompt'
import {PostDropdownBtn} from '../forms/PostDropdownBtn'
import {Text} from '../text/Text'
@@ -58,10 +61,9 @@ let PostCtrls = ({
onPressReply: () => void
logContext: 'FeedItem' | 'PostThreadItem' | 'Post'
}): React.ReactNode => {
- const theme = useTheme()
+ const t = useTheme()
const {_} = useLingui()
const {openComposer} = useComposerControls()
- const {closeModal} = useModalControls()
const [queueLike, queueUnlike] = usePostLikeMutationQueue(post, logContext)
const [queueRepost, queueUnrepost] = usePostRepostMutationQueue(
post,
@@ -80,9 +82,9 @@ let PostCtrls = ({
const defaultCtrlColor = React.useMemo(
() => ({
- color: theme.palette.default.postCtrl,
+ color: t.palette.contrast_500,
}),
- [theme],
+ [t],
) as StyleProp
const onPressToggleLike = React.useCallback(async () => {
@@ -114,10 +116,8 @@ let PostCtrls = ({
])
const onRepost = useCallback(async () => {
- closeModal()
try {
if (!post.viewer?.repost) {
- playHaptic()
sendInteraction({
item: post.uri,
event: 'app.bsky.feed.defs#interactionRepost',
@@ -133,10 +133,8 @@ let PostCtrls = ({
}
}
}, [
- closeModal,
post.uri,
post.viewer?.repost,
- playHaptic,
queueRepost,
queueUnrepost,
sendInteraction,
@@ -144,7 +142,6 @@ let PostCtrls = ({
])
const onQuote = useCallback(() => {
- closeModal()
sendInteraction({
item: post.uri,
event: 'app.bsky.feed.defs#interactionQuote',
@@ -159,16 +156,13 @@ let PostCtrls = ({
indexedAt: post.indexedAt,
},
})
- playHaptic()
}, [
- closeModal,
openComposer,
post.uri,
post.cid,
post.author,
post.indexedAt,
record.text,
- playHaptic,
sendInteraction,
feedContext,
])
@@ -185,57 +179,70 @@ let PostCtrls = ({
})
}, [post.uri, post.author, sendInteraction, feedContext])
+ const btnStyle = React.useCallback(
+ ({pressed, hovered}: PressableStateCallbackType) => [
+ a.gap_xs,
+ a.rounded_full,
+ a.flex_row,
+ a.align_center,
+ a.justify_center,
+ {padding: 5},
+ (pressed || hovered) && t.atoms.bg_contrast_25,
+ ],
+ [t.atoms.bg_contrast_25],
+ )
+
return (
-
+
- {
if (!post.viewer?.replyDisabled) {
requireAuth(() => onPressReply())
}
}}
- accessibilityRole="button"
accessibilityLabel={plural(post.replyCount || 0, {
one: 'Reply (# reply)',
other: 'Reply (# replies)',
})}
accessibilityHint=""
hitSlop={big ? HITSLOP_20 : HITSLOP_10}>
-
{typeof post.replyCount !== 'undefined' && post.replyCount > 0 ? (
-
+
{post.replyCount}
) : undefined}
-
+
-
+
-
-
+ {
- requireAuth(() => onPressToggleLike())
- }}
- accessibilityRole="button"
+ style={btnStyle}
+ onPress={() => requireAuth(() => onPressToggleLike())}
accessibilityLabel={
post.viewer?.like
? plural(post.likeCount || 0, {
@@ -250,33 +257,36 @@ let PostCtrls = ({
accessibilityHint=""
hitSlop={big ? HITSLOP_20 : HITSLOP_10}>
{post.viewer?.like ? (
-
+
) : (
-
)}
{typeof post.likeCount !== 'undefined' && post.likeCount > 0 ? (
+ style={[
+ [
+ big ? a.text_md : {fontSize: 15},
+ a.user_select_none,
+ post.viewer?.like
+ ? [a.font_bold, s.likeColor]
+ : defaultCtrlColor,
+ ],
+ ]}>
{post.likeCount}
) : undefined}
-
+
{big && (
<>
-
-
+ {
if (shouldShowLoggedOutWarning) {
loggedOutWarningPromptControl.open()
@@ -284,15 +294,14 @@ let PostCtrls = ({
onShare()
}
}}
- accessibilityRole="button"
- accessibilityLabel={`${_(msg`Share`)}`}
+ accessibilityLabel={_(msg`Share`)}
accessibilityHint=""
hitSlop={big ? HITSLOP_20 : HITSLOP_10}>
-
+
>
)}
-
+
@@ -324,31 +333,3 @@ let PostCtrls = ({
}
PostCtrls = memo(PostCtrls)
export {PostCtrls}
-
-const styles = StyleSheet.create({
- ctrls: {
- flexDirection: 'row',
- justifyContent: 'space-between',
- alignItems: 'center',
- },
- ctrl: {
- flex: 1,
- alignItems: 'flex-start',
- },
- ctrlBig: {
- alignItems: 'center',
- },
- btn: {
- flexDirection: 'row',
- alignItems: 'center',
- },
- btnPad: {
- paddingTop: 5,
- paddingBottom: 5,
- paddingLeft: 5,
- paddingRight: 5,
- },
- mt1: {
- marginTop: 1,
- },
-})
diff --git a/src/view/com/util/post-ctrls/RepostButton.tsx b/src/view/com/util/post-ctrls/RepostButton.tsx
index f584178874..b1fe73d5b3 100644
--- a/src/view/com/util/post-ctrls/RepostButton.tsx
+++ b/src/view/com/util/post-ctrls/RepostButton.tsx
@@ -1,108 +1,144 @@
import React, {memo, useCallback} from 'react'
-import {StyleProp, StyleSheet, TouchableOpacity, ViewStyle} from 'react-native'
+import {View} from 'react-native'
import {msg, plural} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {useModalControls} from '#/state/modals'
+import {useHaptics} from '#/lib/haptics'
import {useRequireAuth} from '#/state/session'
-import {HITSLOP_10, HITSLOP_20} from 'lib/constants'
-import {RepostIcon} from 'lib/icons'
-import {colors, s} from 'lib/styles'
-import {useTheme} from 'lib/ThemeContext'
-import {Text} from '../text/Text'
+import {atoms as a, useTheme} from '#/alf'
+import {Button, ButtonText} from '#/components/Button'
+import * as Dialog from '#/components/Dialog'
+import {CloseQuote_Stroke2_Corner1_Rounded as Quote} from '#/components/icons/Quote'
+import {Repost_Stroke2_Corner2_Rounded as Repost} from '#/components/icons/Repost'
+import {Text} from '#/components/Typography'
interface Props {
isReposted: boolean
repostCount?: number
- big?: boolean
onRepost: () => void
onQuote: () => void
+ big?: boolean
}
let RepostButton = ({
isReposted,
repostCount,
- big,
onRepost,
onQuote,
+ big,
}: Props): React.ReactNode => {
- const theme = useTheme()
+ const t = useTheme()
const {_} = useLingui()
- const {openModal} = useModalControls()
const requireAuth = useRequireAuth()
+ const dialogControl = Dialog.useDialogControl()
+ const playHaptic = useHaptics()
- const defaultControlColor = React.useMemo(
+ const color = React.useMemo(
() => ({
- color: theme.palette.default.postCtrl,
+ color: isReposted ? t.palette.positive_600 : t.palette.contrast_500,
}),
- [theme],
+ [t, isReposted],
)
- const onPressToggleRepostWrapper = useCallback(() => {
- openModal({
- name: 'repost',
- onRepost: onRepost,
- onQuote: onQuote,
- isReposted,
- })
- }, [onRepost, onQuote, isReposted, openModal])
+ const close = useCallback(() => dialogControl.close(), [dialogControl])
return (
- {
- requireAuth(() => onPressToggleRepostWrapper())
- }}
- style={[styles.btn, !big && styles.btnPad]}
- accessibilityRole="button"
- accessibilityLabel={`${
- isReposted
- ? _(msg`Undo repost`)
- : _(msg({message: 'Repost', context: 'action'}))
- } (${plural(repostCount || 0, {one: '# repost', other: '# reposts'})})`}
- accessibilityHint=""
- hitSlop={big ? HITSLOP_20 : HITSLOP_10}>
-
+ {
+ requireAuth(() => dialogControl.open())
+ }}
+ style={[
+ a.flex_row,
+ a.align_center,
+ a.gap_xs,
+ a.bg_transparent,
+ {padding: 5},
+ ]}
+ hoverStyle={t.atoms.bg_contrast_25}
+ label={`${
isReposted
- ? (styles.reposted as StyleProp)
- : defaultControlColor
- }
- strokeWidth={2.4}
- size={big ? 24 : 20}
- />
- {typeof repostCount !== 'undefined' && repostCount > 0 ? (
-
- {repostCount}
-
- ) : undefined}
-
+ ? _(msg`Undo repost`)
+ : _(msg({message: 'Repost', context: 'action'}))
+ } (${plural(repostCount || 0, {one: '# repost', other: '# reposts'})})`}
+ shape="round"
+ variant="ghost"
+ color="secondary">
+
+ {typeof repostCount !== 'undefined' && repostCount > 0 ? (
+
+ {repostCount}
+
+ ) : undefined}
+
+
+
+
+
+
+ {
+ if (!isReposted) playHaptic()
+
+ dialogControl.close(() => {
+ onRepost()
+ })
+ }}
+ size="large"
+ variant="ghost"
+ color="primary">
+
+
+ {isReposted
+ ? _(msg`Remove repost`)
+ : _(msg({message: `Repost`, context: 'action'}))}
+
+
+ {
+ playHaptic()
+ dialogControl.close(() => {
+ onQuote()
+ })
+ }}
+ size="large"
+ variant="ghost"
+ color="primary">
+
+
+ {_(msg`Quote post`)}
+
+
+
+
+ {_(msg`Cancel`)}
+
+
+
+
+ >
)
}
RepostButton = memo(RepostButton)
export {RepostButton}
-
-const styles = StyleSheet.create({
- btn: {
- flexDirection: 'row',
- alignItems: 'center',
- },
- btnPad: {
- paddingTop: 5,
- paddingBottom: 5,
- paddingLeft: 5,
- paddingRight: 5,
- },
- reposted: {
- color: colors.green3,
- },
- repostCount: {
- color: 'currentColor',
- },
-})
diff --git a/src/view/com/util/post-ctrls/RepostButton.web.tsx b/src/view/com/util/post-ctrls/RepostButton.web.tsx
index bbe5869feb..0898981419 100644
--- a/src/view/com/util/post-ctrls/RepostButton.web.tsx
+++ b/src/view/com/util/post-ctrls/RepostButton.web.tsx
@@ -1,130 +1,134 @@
import React from 'react'
-import {StyleProp, StyleSheet, View, ViewStyle, Pressable} from 'react-native'
-import {RepostIcon} from 'lib/icons'
-import {colors} from 'lib/styles'
-import {useTheme} from 'lib/ThemeContext'
-import {Text} from '../text/Text'
-
-import {
- NativeDropdown,
- DropdownItem as NativeDropdownItem,
-} from '../forms/NativeDropdown'
-import {EventStopper} from '../EventStopper'
-import {useLingui} from '@lingui/react'
+import {Pressable, View} from 'react-native'
import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
import {useRequireAuth} from '#/state/session'
import {useSession} from '#/state/session'
+import {atoms as a, useTheme} from '#/alf'
+import {Button} from '#/components/Button'
+import {CloseQuote_Stroke2_Corner1_Rounded as Quote} from '#/components/icons/Quote'
+import {Repost_Stroke2_Corner2_Rounded as Repost} from '#/components/icons/Repost'
+import * as Menu from '#/components/Menu'
+import {Text} from '#/components/Typography'
+import {EventStopper} from '../EventStopper'
interface Props {
isReposted: boolean
repostCount?: number
- big?: boolean
onRepost: () => void
onQuote: () => void
- style?: StyleProp
+ big?: boolean
}
export const RepostButton = ({
isReposted,
repostCount,
- big,
onRepost,
onQuote,
+ big,
}: Props) => {
- const theme = useTheme()
+ const t = useTheme()
const {_} = useLingui()
const {hasSession} = useSession()
const requireAuth = useRequireAuth()
- const defaultControlColor = React.useMemo(
+ const color = React.useMemo(
() => ({
- color: theme.palette.default.postCtrl,
+ color: isReposted ? t.palette.positive_600 : t.palette.contrast_500,
}),
- [theme],
- )
-
- const dropdownItems: NativeDropdownItem[] = [
- {
- label: isReposted ? _(msg`Undo repost`) : _(msg`Repost`),
- testID: 'repostDropdownRepostBtn',
- icon: {
- ios: {name: 'repeat'},
- android: '',
- web: 'retweet',
- },
- onPress: onRepost,
- },
- {
- label: _(msg`Quote post`),
- testID: 'repostDropdownQuoteBtn',
- icon: {
- ios: {name: 'quote.bubble'},
- android: '',
- web: 'quote-left',
- },
- onPress: onQuote,
- },
- ]
-
- const inner = (
- ,
- ]}>
-
- {typeof repostCount !== 'undefined' && repostCount > 0 ? (
-
- {repostCount}
-
- ) : undefined}
-
+ [t, isReposted],
)
return hasSession ? (
-
-
- {inner}
-
+
+
+
+ {({props, state}) => {
+ return (
+
+
+
+ )
+ }}
+
+
+
+
+ {isReposted ? _(msg`Undo repost`) : _(msg`Repost`)}
+
+
+
+
+ {_(msg`Quote post`)}
+
+
+
+
) : (
- {
requireAuth(() => {})
}}
- accessibilityLabel={_(msg`Repost or quote post`)}
- accessibilityHint="">
- {inner}
-
+ label={_(msg`Repost or quote post`)}
+ style={{padding: 0}}
+ hoverStyle={t.atoms.bg_contrast_25}
+ shape="round"
+ variant="ghost"
+ color="secondary">
+
+
)
}
-const styles = StyleSheet.create({
- btn: {
- flexDirection: 'row',
- alignItems: 'center',
- gap: 4,
- },
- btnPad: {
- paddingTop: 5,
- paddingBottom: 5,
- paddingLeft: 5,
- paddingRight: 5,
- },
- reposted: {
- color: colors.green3,
- },
- repostCount: {
- color: 'currentColor',
- },
-})
+const RepostInner = ({
+ isReposted,
+ color,
+ repostCount,
+ big,
+}: {
+ isReposted: boolean
+ color: {color: string}
+ repostCount?: number
+ big?: boolean
+}) => (
+
+
+ {typeof repostCount !== 'undefined' && repostCount > 0 ? (
+
+ {repostCount}
+
+ ) : undefined}
+
+)
diff --git a/src/view/com/util/post-embeds/GifEmbed.tsx b/src/view/com/util/post-embeds/GifEmbed.tsx
index deb82655b5..1c0cf3d39d 100644
--- a/src/view/com/util/post-embeds/GifEmbed.tsx
+++ b/src/view/com/util/post-embeds/GifEmbed.tsx
@@ -5,7 +5,7 @@ import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {HITSLOP_10} from '#/lib/constants'
+import {HITSLOP_20} from '#/lib/constants'
import {parseAltFromGIFDescription} from '#/lib/gif-alt-text'
import {isWeb} from '#/platform/detection'
import {EmbedPlayerParams} from 'lib/strings/embed-player'
@@ -166,7 +166,7 @@ function AltText({text}: {text: string}) {
accessibilityRole="button"
accessibilityLabel={_(msg`Show alt text`)}
accessibilityHint=""
- hitSlop={HITSLOP_10}
+ hitSlop={HITSLOP_20}
onPress={control.open}
style={styles.altContainer}>
@@ -195,18 +195,18 @@ const styles = StyleSheet.create({
altContainer: {
backgroundColor: 'rgba(0, 0, 0, 0.75)',
borderRadius: 6,
- paddingHorizontal: 6,
- paddingVertical: 3,
+ paddingHorizontal: isWeb ? 8 : 6,
+ paddingVertical: isWeb ? 6 : 3,
position: 'absolute',
// Related to margin/gap hack. This keeps the alt label in the same position
// on all platforms
- left: isWeb ? 8 : 5,
+ right: isWeb ? 8 : 5,
bottom: isWeb ? 8 : 5,
zIndex: 2,
},
alt: {
color: 'white',
- fontSize: 10,
+ fontSize: isWeb ? 10 : 7,
fontWeight: 'bold',
},
})
diff --git a/src/view/com/util/post-embeds/QuoteEmbed.tsx b/src/view/com/util/post-embeds/QuoteEmbed.tsx
index 57f1d28ba6..cdbdafc9ba 100644
--- a/src/view/com/util/post-embeds/QuoteEmbed.tsx
+++ b/src/view/com/util/post-embeds/QuoteEmbed.tsx
@@ -2,6 +2,7 @@ import React from 'react'
import {
StyleProp,
StyleSheet,
+ TextStyle,
TouchableOpacity,
View,
ViewStyle,
@@ -31,7 +32,7 @@ import {InfoCircleIcon} from 'lib/icons'
import {makeProfileLink} from 'lib/routes/links'
import {precacheProfile} from 'state/queries/profile'
import {ComposerOptsQuote} from 'state/shell/composer'
-import {atoms as a} from '#/alf'
+import {atoms as a, flatten} from '#/alf'
import {RichText} from '#/components/RichText'
import {ContentHider} from '../../../../components/moderation/ContentHider'
import {PostAlerts} from '../../../../components/moderation/PostAlerts'
@@ -39,15 +40,18 @@ import {Link} from '../Link'
import {PostMeta} from '../PostMeta'
import {Text} from '../text/Text'
import {PostEmbeds} from '.'
+import hairlineWidth = StyleSheet.hairlineWidth
export function MaybeQuoteEmbed({
embed,
onOpen,
style,
+ textStyle,
}: {
embed: AppBskyEmbedRecord.View
onOpen?: () => void
style?: StyleProp
+ textStyle?: StyleProp
}) {
const pal = usePalette('default')
if (
@@ -61,6 +65,7 @@ export function MaybeQuoteEmbed({
postRecord={embed.record.value}
onOpen={onOpen}
style={style}
+ textStyle={textStyle}
/>
)
} else if (AppBskyEmbedRecord.isViewBlocked(embed.record)) {
@@ -90,11 +95,13 @@ function QuoteEmbedModerated({
postRecord,
onOpen,
style,
+ textStyle,
}: {
viewRecord: AppBskyEmbedRecord.ViewRecord
postRecord: AppBskyFeedPost.Record
onOpen?: () => void
style?: StyleProp
+ textStyle?: StyleProp
}) {
const moderationOpts = useModerationOpts()
const moderation = React.useMemo(() => {
@@ -119,6 +126,7 @@ function QuoteEmbedModerated({
moderation={moderation}
onOpen={onOpen}
style={style}
+ textStyle={textStyle}
/>
)
}
@@ -128,11 +136,13 @@ export function QuoteEmbed({
moderation,
onOpen,
style,
+ textStyle,
}: {
quote: ComposerOptsQuote
moderation?: ModerationDecision
onOpen?: () => void
style?: StyleProp
+ textStyle?: StyleProp
}) {
const queryClient = useQueryClient()
const pal = usePalette('default')
@@ -191,7 +201,7 @@ export function QuoteEmbed({
{richText ? (
@@ -247,12 +257,7 @@ const styles = StyleSheet.create({
marginTop: 8,
paddingVertical: 12,
paddingHorizontal: 12,
- borderWidth: 1,
- },
- quotePost: {
- flex: 1,
- paddingLeft: 13,
- paddingRight: 8,
+ borderWidth: hairlineWidth,
},
errorContainer: {
flexDirection: 'row',
@@ -262,7 +267,7 @@ const styles = StyleSheet.create({
marginTop: 8,
paddingVertical: 14,
paddingHorizontal: 14,
- borderWidth: 1,
+ borderWidth: hairlineWidth,
},
alert: {
marginBottom: 6,
diff --git a/src/view/com/util/post-embeds/index.tsx b/src/view/com/util/post-embeds/index.tsx
index 8aa9919ca8..962f3d8c51 100644
--- a/src/view/com/util/post-embeds/index.tsx
+++ b/src/view/com/util/post-embeds/index.tsx
@@ -4,6 +4,7 @@ import {
StyleProp,
StyleSheet,
Text,
+ TextStyle,
View,
ViewStyle,
} from 'react-native'
@@ -27,6 +28,7 @@ import {ImageLayoutGrid} from '../images/ImageLayoutGrid'
import {ExternalLinkEmbed} from './ExternalLinkEmbed'
import {ListEmbed} from './ListEmbed'
import {MaybeQuoteEmbed} from './QuoteEmbed'
+import hairlineWidth = StyleSheet.hairlineWidth
type Embed =
| AppBskyEmbedRecord.View
@@ -40,11 +42,13 @@ export function PostEmbeds({
moderation,
onOpen,
style,
+ quoteTextStyle,
}: {
embed?: Embed
moderation?: ModerationDecision
onOpen?: () => void
style?: StyleProp
+ quoteTextStyle?: StyleProp
}) {
const pal = usePalette('default')
const {openLightbox} = useLightboxControls()
@@ -59,7 +63,11 @@ export function PostEmbeds({
moderation={moderation}
onOpen={onOpen}
/>
-
+
)
}
@@ -86,7 +94,14 @@ export function PostEmbeds({
// quote post
// =
- return
+ return (
+
+ )
}
// image embed
@@ -183,11 +198,11 @@ const styles = StyleSheet.create({
},
alt: {
color: 'white',
- fontSize: 6,
+ fontSize: 7,
fontWeight: 'bold',
},
customFeedOuter: {
- borderWidth: 1,
+ borderWidth: hairlineWidth,
borderRadius: 8,
marginTop: 4,
paddingHorizontal: 12,
diff --git a/src/view/screens/Feeds.tsx b/src/view/screens/Feeds.tsx
index 826f997dda..837e58195e 100644
--- a/src/view/screens/Feeds.tsx
+++ b/src/view/screens/Feeds.tsx
@@ -52,6 +52,7 @@ import {IconCircle} from '#/components/IconCircle'
import {FilterTimeline_Stroke2_Corner0_Rounded as FilterTimeline} from '#/components/icons/FilterTimeline'
import {ListMagnifyingGlass_Stroke2_Corner0_Rounded} from '#/components/icons/ListMagnifyingGlass'
import {ListSparkle_Stroke2_Corner0_Rounded} from '#/components/icons/ListSparkle'
+import hairlineWidth = StyleSheet.hairlineWidth
type Props = NativeStackScreenProps
@@ -856,13 +857,13 @@ const styles = StyleSheet.create({
paddingHorizontal: 16,
paddingVertical: 14,
gap: 12,
- borderBottomWidth: 1,
+ borderBottomWidth: hairlineWidth,
},
savedFeedMobile: {
paddingVertical: 10,
},
offlineSlug: {
- borderWidth: 1,
+ borderWidth: hairlineWidth,
borderRadius: 4,
paddingHorizontal: 4,
paddingVertical: 2,
diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx
index 1744c6651c..34d3abf266 100644
--- a/src/view/screens/Home.tsx
+++ b/src/view/screens/Home.tsx
@@ -20,7 +20,6 @@ import {
} from '#/state/shell'
import {useSelectedFeed, useSetSelectedFeed} from '#/state/shell/selected-feed'
import {useOTAUpdates} from 'lib/hooks/useOTAUpdates'
-import {useRequestNotificationsPermission} from 'lib/notifications/notifications'
import {HomeTabNavigatorParams, NativeStackScreenProps} from 'lib/routes/types'
import {FeedPage} from 'view/com/feeds/FeedPage'
import {Pager, PagerRef, RenderTabBarFnProps} from 'view/com/pager/Pager'
@@ -59,8 +58,6 @@ function HomeScreenReady({
preferences: UsePreferencesQueryResponse
pinnedFeedInfos: SavedFeedSourceInfo[]
}) {
- const requestNotificationsPermission = useRequestNotificationsPermission()
-
const allFeeds = React.useMemo(
() => pinnedFeedInfos.map(f => f.feedDescriptor),
[pinnedFeedInfos],
@@ -74,10 +71,6 @@ function HomeScreenReady({
useSetTitle(pinnedFeedInfos[selectedIndex]?.displayName)
useOTAUpdates()
- React.useEffect(() => {
- requestNotificationsPermission('AfterOnboarding')
- }, [requestNotificationsPermission])
-
const pagerRef = React.useRef(null)
const lastPagerReportedIndexRef = React.useRef(selectedIndex)
React.useLayoutEffect(() => {
@@ -106,7 +99,7 @@ function HomeScreenReady({
useFocusEffect(
useNonReactiveCallback(() => {
if (selectedFeed) {
- logEvent('home:feedDisplayed', {
+ logEvent('home:feedDisplayed:sampled', {
index: selectedIndex,
feedType: selectedFeed.split('|')[0],
feedUrl: selectedFeed,
@@ -147,9 +140,12 @@ function HomeScreenReady({
)
const onPageSelecting = React.useCallback(
- (index: number, reason: LogEvents['home:feedDisplayed']['reason']) => {
+ (
+ index: number,
+ reason: LogEvents['home:feedDisplayed:sampled']['reason'],
+ ) => {
const feed = allFeeds[index]
- logEvent('home:feedDisplayed', {
+ logEvent('home:feedDisplayed:sampled', {
index,
feedType: feed.split('|')[0],
feedUrl: feed,
diff --git a/src/view/screens/LanguageSettings.tsx b/src/view/screens/LanguageSettings.tsx
index b86cd46e1c..390d2807b0 100644
--- a/src/view/screens/LanguageSettings.tsx
+++ b/src/view/screens/LanguageSettings.tsx
@@ -1,27 +1,28 @@
import React from 'react'
import {StyleSheet, View} from 'react-native'
-import {Text} from '../com/util/text/Text'
-import {s} from 'lib/styles'
-import {usePalette} from 'lib/hooks/usePalette'
-import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
-import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types'
-import {ViewHeader} from 'view/com/util/ViewHeader'
-import {CenteredView} from 'view/com/util/Views'
-import {Button} from 'view/com/util/forms/Button'
+import RNPickerSelect, {PickerSelectProps} from 'react-native-picker-select'
import {
FontAwesomeIcon,
FontAwesomeIconStyle,
} from '@fortawesome/react-native-fontawesome'
-import {useAnalytics} from 'lib/analytics/analytics'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
import {useFocusEffect} from '@react-navigation/native'
-import {APP_LANGUAGES, LANGUAGES} from 'lib/../locale/languages'
-import RNPickerSelect, {PickerSelectProps} from 'react-native-picker-select'
-import {useSetMinimalShellMode} from '#/state/shell'
+
+import {sanitizeAppLanguageSetting} from '#/locale/helpers'
import {useModalControls} from '#/state/modals'
import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences'
-import {Trans, msg} from '@lingui/macro'
-import {useLingui} from '@lingui/react'
-import {sanitizeAppLanguageSetting} from '#/locale/helpers'
+import {useSetMinimalShellMode} from '#/state/shell'
+import {APP_LANGUAGES, LANGUAGES} from 'lib/../locale/languages'
+import {useAnalytics} from 'lib/analytics/analytics'
+import {usePalette} from 'lib/hooks/usePalette'
+import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
+import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types'
+import {s} from 'lib/styles'
+import {Button} from 'view/com/util/forms/Button'
+import {ViewHeader} from 'view/com/util/ViewHeader'
+import {CenteredView} from 'view/com/util/Views'
+import {Text} from '../com/util/text/Text'
type Props = NativeStackScreenProps
@@ -132,9 +133,10 @@ export function LanguageSettingsScreen(_props: Props) {
paddingVertical: 8,
borderRadius: 24,
},
+
inputWeb: {
- // @ts-ignore web only
cursor: 'pointer',
+ // @ts-ignore web only
'-moz-appearance': 'none',
'-webkit-appearance': 'none',
appearance: 'none',
@@ -224,8 +226,8 @@ export function LanguageSettingsScreen(_props: Props) {
borderRadius: 24,
},
inputWeb: {
- // @ts-ignore web only
cursor: 'pointer',
+ // @ts-ignore web only
'-moz-appearance': 'none',
'-webkit-appearance': 'none',
appearance: 'none',
diff --git a/src/view/screens/Lists.tsx b/src/view/screens/Lists.tsx
index bdd5dd9b78..0dd2febcb6 100644
--- a/src/view/screens/Lists.tsx
+++ b/src/view/screens/Lists.tsx
@@ -1,20 +1,22 @@
import React from 'react'
-import {View} from 'react-native'
-import {useFocusEffect, useNavigation} from '@react-navigation/native'
-import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
+import {StyleSheet, View} from 'react-native'
import {AtUri} from '@atproto/api'
-import {NativeStackScreenProps, CommonNavigatorParams} from 'lib/routes/types'
-import {MyLists} from '#/view/com/lists/MyLists'
-import {Text} from 'view/com/util/text/Text'
-import {Button} from 'view/com/util/forms/Button'
-import {NavigationProp} from 'lib/routes/types'
+import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
+import {Trans} from '@lingui/macro'
+import {useFocusEffect, useNavigation} from '@react-navigation/native'
+
+import {useModalControls} from '#/state/modals'
+import {useSetMinimalShellMode} from '#/state/shell'
import {usePalette} from 'lib/hooks/usePalette'
import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
-import {SimpleViewHeader} from 'view/com/util/SimpleViewHeader'
+import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types'
+import {NavigationProp} from 'lib/routes/types'
import {s} from 'lib/styles'
-import {useSetMinimalShellMode} from '#/state/shell'
-import {useModalControls} from '#/state/modals'
-import {Trans} from '@lingui/macro'
+import {MyLists} from '#/view/com/lists/MyLists'
+import {Button} from 'view/com/util/forms/Button'
+import {SimpleViewHeader} from 'view/com/util/SimpleViewHeader'
+import {Text} from 'view/com/util/text/Text'
+import hairlineWidth = StyleSheet.hairlineWidth
type Props = NativeStackScreenProps
export function ListsScreen({}: Props) {
@@ -51,7 +53,10 @@ export function ListsScreen({}: Props) {
diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx
index 48c834a28f..7e2fc68b37 100644
--- a/src/view/screens/Notifications.tsx
+++ b/src/view/screens/Notifications.tsx
@@ -1,37 +1,38 @@
import React from 'react'
import {View} from 'react-native'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
import {useFocusEffect, useIsFocused} from '@react-navigation/native'
import {useQueryClient} from '@tanstack/react-query'
-import {
- NativeStackScreenProps,
- NotificationsTabNavigatorParams,
-} from 'lib/routes/types'
-import {ViewHeader} from '../com/util/ViewHeader'
-import {Feed} from '../com/notifications/Feed'
-import {TextLink} from 'view/com/util/Link'
-import {ListMethods} from 'view/com/util/List'
-import {LoadLatestBtn} from 'view/com/util/load-latest/LoadLatestBtn'
-import {MainScrollProvider} from '../com/util/MainScrollProvider'
-import {usePalette} from 'lib/hooks/usePalette'
-import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
-import {s, colors} from 'lib/styles'
-import {useAnalytics} from 'lib/analytics/analytics'
+
+import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback'
import {logger} from '#/logger'
-import {useSetMinimalShellMode} from '#/state/shell'
-import {Trans, msg} from '@lingui/macro'
-import {useLingui} from '@lingui/react'
+import {isNative} from '#/platform/detection'
+import {emitSoftReset, listenSoftReset} from '#/state/events'
+import {RQKEY as NOTIFS_RQKEY} from '#/state/queries/notifications/feed'
import {
useUnreadNotifications,
useUnreadNotificationsApi,
} from '#/state/queries/notifications/unread'
-import {RQKEY as NOTIFS_RQKEY} from '#/state/queries/notifications/feed'
-import {listenSoftReset, emitSoftReset} from '#/state/events'
import {truncateAndInvalidate} from '#/state/queries/util'
-import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback'
-import {isNative} from '#/platform/detection'
-import {FAB} from '../com/util/fab/FAB'
-import {ComposeIcon2} from 'lib/icons'
+import {useSetMinimalShellMode} from '#/state/shell'
import {useComposerControls} from '#/state/shell/composer'
+import {useAnalytics} from 'lib/analytics/analytics'
+import {usePalette} from 'lib/hooks/usePalette'
+import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
+import {ComposeIcon2} from 'lib/icons'
+import {
+ NativeStackScreenProps,
+ NotificationsTabNavigatorParams,
+} from 'lib/routes/types'
+import {colors, s} from 'lib/styles'
+import {TextLink} from 'view/com/util/Link'
+import {ListMethods} from 'view/com/util/List'
+import {LoadLatestBtn} from 'view/com/util/load-latest/LoadLatestBtn'
+import {Feed} from '../com/notifications/Feed'
+import {FAB} from '../com/util/fab/FAB'
+import {MainScrollProvider} from '../com/util/MainScrollProvider'
+import {ViewHeader} from '../com/util/ViewHeader'
type Props = NativeStackScreenProps<
NotificationsTabNavigatorParams,
@@ -145,7 +146,11 @@ export function NotificationsScreen({}: Props) {
return (
-
+
new RichTextAPI({text}))
const [resolvedRT, setResolvedRT] = React.useState(null)
@@ -485,7 +485,7 @@ function useRichText(text: string): [RichTextAPI, boolean] {
async function resolveRTFacets() {
// new each time
const resolvedRT = new RichTextAPI({text})
- await resolvedRT.detectFacets(getAgent())
+ await resolvedRT.detectFacets(agent)
if (!ignore) {
setResolvedRT(resolvedRT)
}
@@ -494,7 +494,7 @@ function useRichText(text: string): [RichTextAPI, boolean] {
return () => {
ignore = true
}
- }, [text, getAgent])
+ }, [text, agent])
const isResolving = resolvedRT === null
return [resolvedRT ?? rawRT, isResolving]
}
diff --git a/src/view/screens/ProfileList.tsx b/src/view/screens/ProfileList.tsx
index de3c01ea3d..0c2cecbfce 100644
--- a/src/view/screens/ProfileList.tsx
+++ b/src/view/screens/ProfileList.tsx
@@ -65,6 +65,7 @@ import {useDialogControl} from '#/components/Dialog'
import * as Prompt from '#/components/Prompt'
import {ReportDialog, useReportDialogControl} from '#/components/ReportDialog'
import {RichText} from '#/components/RichText'
+import hairlineWidth = StyleSheet.hairlineWidth
const SECTION_TITLES_CURATE = ['Posts', 'About']
const SECTION_TITLES_MOD = ['About']
@@ -802,7 +803,7 @@ const AboutSection = React.forwardRef(
diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx
index 9dd1c397f3..b6680176bf 100644
--- a/src/view/screens/Search/Search.tsx
+++ b/src/view/screens/Search/Search.tsx
@@ -739,8 +739,8 @@ let SearchInputBox = ({
style={[
{backgroundColor: pal.colors.backgroundLight},
styles.headerSearchContainer,
+ // @ts-expect-error web only
isWeb && {
- // @ts-ignore web only
cursor: 'default',
},
]}
diff --git a/src/view/screens/Settings/DisableEmail2FADialog.tsx b/src/view/screens/Settings/DisableEmail2FADialog.tsx
index b52dcc7a36..a27cff9a3e 100644
--- a/src/view/screens/Settings/DisableEmail2FADialog.tsx
+++ b/src/view/screens/Settings/DisableEmail2FADialog.tsx
@@ -30,7 +30,7 @@ export function DisableEmail2FADialog({
const t = useTheme()
const {gtMobile} = useBreakpoints()
const {currentAccount} = useSession()
- const {getAgent} = useAgent()
+ const agent = useAgent()
const [stage, setStage] = useState(Stages.Email)
const [confirmationCode, setConfirmationCode] = useState('')
@@ -41,7 +41,7 @@ export function DisableEmail2FADialog({
setError('')
setIsProcessing(true)
try {
- await getAgent().com.atproto.server.requestEmailUpdate()
+ await agent.com.atproto.server.requestEmailUpdate()
setStage(Stages.ConfirmCode)
} catch (e) {
setError(cleanError(String(e)))
@@ -55,12 +55,12 @@ export function DisableEmail2FADialog({
setIsProcessing(true)
try {
if (currentAccount?.email) {
- await getAgent().com.atproto.server.updateEmail({
+ await agent.com.atproto.server.updateEmail({
email: currentAccount!.email,
token: confirmationCode.trim(),
emailAuthFactor: false,
})
- await getAgent().resumeSession(getAgent().session!)
+ await agent.resumeSession(agent.session!)
Toast.show(_(msg`Email 2FA disabled`))
}
control.close()
diff --git a/src/view/screens/Settings/Email2FAToggle.tsx b/src/view/screens/Settings/Email2FAToggle.tsx
index efeb7e4d7c..b5e7adddb2 100644
--- a/src/view/screens/Settings/Email2FAToggle.tsx
+++ b/src/view/screens/Settings/Email2FAToggle.tsx
@@ -13,17 +13,17 @@ export function Email2FAToggle() {
const {currentAccount} = useSession()
const {openModal} = useModalControls()
const disableDialogCtrl = useDialogControl()
- const {getAgent} = useAgent()
+ const agent = useAgent()
const enableEmailAuthFactor = React.useCallback(async () => {
if (currentAccount?.email) {
- await getAgent().com.atproto.server.updateEmail({
+ await agent.com.atproto.server.updateEmail({
email: currentAccount.email,
emailAuthFactor: true,
})
- await getAgent().resumeSession(getAgent().session!)
+ await agent.resumeSession(agent.session!)
}
- }, [currentAccount, getAgent])
+ }, [currentAccount, agent])
const onToggle = React.useCallback(() => {
if (!currentAccount) {
diff --git a/src/view/screens/Settings/ExportCarDialog.tsx b/src/view/screens/Settings/ExportCarDialog.tsx
index af835cb620..72d943bcf0 100644
--- a/src/view/screens/Settings/ExportCarDialog.tsx
+++ b/src/view/screens/Settings/ExportCarDialog.tsx
@@ -21,11 +21,10 @@ export function ExportCarDialog({
}) {
const {_} = useLingui()
const t = useTheme()
- const {getAgent} = useAgent()
+ const agent = useAgent()
const [loading, setLoading] = React.useState(false)
const download = React.useCallback(async () => {
- const agent = getAgent()
if (!agent.session) {
return // shouldnt ever happen
}
@@ -49,7 +48,7 @@ export function ExportCarDialog({
setLoading(false)
control.close()
}
- }, [_, control, getAgent])
+ }, [_, control, agent])
return (
diff --git a/src/view/screens/Settings/index.tsx b/src/view/screens/Settings/index.tsx
index 078ebedabb..49702ae47c 100644
--- a/src/view/screens/Settings/index.tsx
+++ b/src/view/screens/Settings/index.tsx
@@ -66,6 +66,7 @@ import {BirthDateSettingsDialog} from '#/components/dialogs/BirthDateSettings'
import {navigate, resetToTab} from '#/Navigation'
import {Email2FAToggle} from './Email2FAToggle'
import {ExportCarDialog} from './ExportCarDialog'
+import hairlineWidth = StyleSheet.hairlineWidth
function SettingsAccountCard({
account,
@@ -317,7 +318,7 @@ export function SettingsScreen({}: Props) {
showBackButton={isMobile}
style={[
pal.border,
- {borderBottomWidth: 1},
+ {borderBottomWidth: hairlineWidth},
!isMobile && {borderLeftWidth: 1, borderRightWidth: 1},
]}>
diff --git a/src/view/shell/Composer.tsx b/src/view/shell/Composer.tsx
index 1937fcb6ea..c80d7845b3 100644
--- a/src/view/shell/Composer.tsx
+++ b/src/view/shell/Composer.tsx
@@ -1,77 +1,106 @@
-import React, {useEffect} from 'react'
+import React, {useLayoutEffect} from 'react'
+import {Modal, View} from 'react-native'
+import {GestureHandlerRootView} from 'react-native-gesture-handler'
+import {RootSiblingParent} from 'react-native-root-siblings'
+import {StatusBar} from 'expo-status-bar'
+import * as SystemUI from 'expo-system-ui'
import {observer} from 'mobx-react-lite'
-import {Animated, Easing, Platform, StyleSheet, View} from 'react-native'
-import {ComposePost} from '../com/composer/Composer'
-import {useComposerState} from 'state/shell/composer'
-import {useAnimatedValue} from 'lib/hooks/useAnimatedValue'
-import {usePalette} from 'lib/hooks/usePalette'
-export const Composer = observer(function ComposerImpl({
- winHeight,
-}: {
+import {isIOS} from '#/platform/detection'
+import {Provider as LegacyModalProvider} from '#/state/modals'
+import {useComposerState} from '#/state/shell/composer'
+import {ModalsContainer as LegacyModalsContainer} from '#/view/com/modals/Modal'
+import {atoms as a, useTheme} from '#/alf'
+import {getBackgroundColor, useThemeName} from '#/alf/util/useColorModeTheme'
+import {
+ Outlet as PortalOutlet,
+ Provider as PortalProvider,
+} from '#/components/Portal'
+import {ComposePost, useComposerCancelRef} from '../com/composer/Composer'
+
+export const Composer = observer(function ComposerImpl({}: {
winHeight: number
}) {
+ const t = useTheme()
const state = useComposerState()
- const pal = usePalette('default')
- const initInterp = useAnimatedValue(0)
+ const ref = useComposerCancelRef()
- useEffect(() => {
- if (state) {
- Animated.timing(initInterp, {
- toValue: 1,
- duration: 300,
- easing: Easing.out(Easing.exp),
- useNativeDriver: true,
- }).start()
- } else {
- initInterp.setValue(0)
- }
- }, [initInterp, state])
- const wrapperAnimStyle = {
- transform: [
- {
- translateY: initInterp.interpolate({
- inputRange: [0, 1],
- outputRange: [winHeight, 0],
- }),
- },
- ],
- }
-
- // rendering
- // =
-
- if (!state) {
- return
- }
+ const open = !!state
return (
-
-
-
+ accessibilityViewIsModal
+ visible={open}
+ presentationStyle="formSheet"
+ animationType="slide"
+ onRequestClose={() => ref.current?.onPressCancel()}>
+
+
+
+
+
+
)
})
-const styles = StyleSheet.create({
- wrapper: {
- position: 'absolute',
- top: 0,
- bottom: 0,
- width: '100%',
- ...Platform.select({
- ios: {
- paddingTop: 24,
- },
- }),
- },
-})
+function Providers({
+ children,
+ open,
+}: {
+ children: React.ReactNode
+ open: boolean
+}) {
+ // on iOS, it's a native formSheet. We use FullWindowOverlay to make
+ // the dialogs appear over it
+ if (isIOS) {
+ return (
+ <>
+ {children}
+
+ >
+ )
+ } else {
+ // on Android we just nest the dialogs within it
+ return (
+
+
+
+
+ {children}
+
+
+
+
+
+
+ )
+ }
+}
+
+// Generally, the backdrop of the app is the theme color, but when this is open
+// we want it to be black due to the modal being a form sheet.
+function IOSModalBackground({active}: {active: boolean}) {
+ const theme = useThemeName()
+
+ useLayoutEffect(() => {
+ SystemUI.setBackgroundColorAsync('black')
+
+ return () => {
+ SystemUI.setBackgroundColorAsync(getBackgroundColor(theme))
+ }
+ }, [theme])
+
+ // Set the status bar to light - however, only if the modal is active
+ // If we rely on this component being mounted to set this,
+ // there'll be a delay before it switches back to default.
+ return active ? : null
+}
diff --git a/src/view/shell/Composer.web.tsx b/src/view/shell/Composer.web.tsx
index 00233f66af..c9c604f114 100644
--- a/src/view/shell/Composer.web.tsx
+++ b/src/view/shell/Composer.web.tsx
@@ -1,15 +1,16 @@
import React from 'react'
import {StyleSheet, View} from 'react-native'
import Animated, {FadeIn, FadeInDown, FadeOut} from 'react-native-reanimated'
-import {ComposePost} from '../com/composer/Composer'
-import {useComposerState} from 'state/shell/composer'
+
+import {useWebBodyScrollLock} from '#/lib/hooks/useWebBodyScrollLock'
import {usePalette} from 'lib/hooks/usePalette'
import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
-import {useWebBodyScrollLock} from '#/lib/hooks/useWebBodyScrollLock'
+import {useComposerState} from 'state/shell/composer'
import {
EmojiPicker,
EmojiPickerState,
} from 'view/com/composer/text-input/web/EmojiPicker.web'
+import {ComposePost} from '../com/composer/Composer'
const BOTTOM_BAR_HEIGHT = 61
diff --git a/src/view/shell/bottom-bar/BottomBarStyles.tsx b/src/view/shell/bottom-bar/BottomBarStyles.tsx
index 367c204e8a..ba8743474f 100644
--- a/src/view/shell/bottom-bar/BottomBarStyles.tsx
+++ b/src/view/shell/bottom-bar/BottomBarStyles.tsx
@@ -1,6 +1,7 @@
import {StyleSheet} from 'react-native'
import {colors} from 'lib/styles'
+import hairlineWidth = StyleSheet.hairlineWidth
export const styles = StyleSheet.create({
bottomBar: {
@@ -9,7 +10,7 @@ export const styles = StyleSheet.create({
left: 0,
right: 0,
flexDirection: 'row',
- borderTopWidth: 1,
+ borderTopWidth: hairlineWidth,
paddingLeft: 5,
paddingRight: 10,
},
diff --git a/src/view/shell/desktop/RightNav.tsx b/src/view/shell/desktop/RightNav.tsx
index f0cd4f59ae..633f04932a 100644
--- a/src/view/shell/desktop/RightNav.tsx
+++ b/src/view/shell/desktop/RightNav.tsx
@@ -13,6 +13,7 @@ import {TextLink} from 'view/com/util/Link'
import {Text} from 'view/com/util/text/Text'
import {DesktopFeeds} from './Feeds'
import {DesktopSearch} from './Search'
+import hairlineWidth = StyleSheet.hairlineWidth
export function DesktopRightNav({routeName}: {routeName: string}) {
const pal = usePalette('default')
@@ -130,8 +131,8 @@ const styles = StyleSheet.create({
marginBottom: 10,
},
desktopFeedsContainer: {
- borderTopWidth: 1,
- borderBottomWidth: 1,
+ borderTopWidth: hairlineWidth,
+ borderBottomWidth: hairlineWidth,
marginTop: 18,
marginBottom: 18,
},
diff --git a/src/view/shell/index.tsx b/src/view/shell/index.tsx
index 7d080e57b1..317ac0bde4 100644
--- a/src/view/shell/index.tsx
+++ b/src/view/shell/index.tsx
@@ -33,6 +33,7 @@ import {ErrorBoundary} from 'view/com/util/ErrorBoundary'
import {MutedWordsDialog} from '#/components/dialogs/MutedWords'
import {SigninDialog} from '#/components/dialogs/Signin'
import {Outlet as PortalOutlet} from '#/components/Portal'
+import {NativeTranslationView} from '../../../modules/expo-bluesky-translate'
import {RoutesContainer, TabsNavigator} from '../../Navigation'
import {Composer} from './Composer'
import {DrawerContent} from './Drawer'
@@ -93,6 +94,7 @@ function ShellInner() {
+
diff --git a/yarn.lock b/yarn.lock
index 89cdc5a82a..6113a44cee 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -34,10 +34,10 @@
jsonpointer "^5.0.0"
leven "^3.1.0"
-"@atproto/api@^0.12.13":
- version "0.12.13"
- resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.13.tgz#269d6c57ea894e23f20b28bd3cbfed944bd28528"
- integrity sha512-pRSID6w8AUiZJoCxgctMPRTSGVFHq7wphAnxEbRLBP3OQ1g+BRZUcqFw+e+17Pd3wrc8VImjiD4HCWtCJvCx3w==
+"@atproto/api@^0.12.14":
+ version "0.12.14"
+ resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.14.tgz#81252fd166ec8fe950056531e690d563437720fa"
+ integrity sha512-ZPh/afoRjFEQDQgMZW2FQiG5CDUifY7SxBqI0zVJUwed8Zi6fqYzGYM8fcDvD8yJfflRCqRxUE72g5fKiA1zAQ==
dependencies:
"@atproto/common-web" "^0.3.0"
"@atproto/lexicon" "^0.4.0"
@@ -1278,6 +1278,21 @@
"@babel/helper-split-export-declaration" "^7.22.6"
semver "^6.3.1"
+"@babel/helper-create-class-features-plugin@^7.24.5":
+ version "7.24.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.5.tgz#7d19da92c7e0cd8d11c09af2ce1b8e7512a6e723"
+ integrity sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==
+ 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.24.5"
+ "@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.24.5"
+ semver "^6.3.1"
+
"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5":
version "7.22.9"
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz#9d8e61a8d9366fe66198f57c40565663de0825f6"
@@ -1308,6 +1323,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
+"@babel/helper-environment-visitor@^7.24.6":
+ version "7.24.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.6.tgz#ac7ad5517821641550f6698dd5468f8cef78620d"
+ integrity sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==
+
"@babel/helper-function-name@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be"
@@ -1345,6 +1365,13 @@
dependencies:
"@babel/types" "^7.22.5"
+"@babel/helper-member-expression-to-functions@^7.24.5":
+ version "7.24.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.5.tgz#5981e131d5c7003c7d1fa1ad49e86c9b097ec475"
+ integrity sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==
+ dependencies:
+ "@babel/types" "^7.24.5"
+
"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c"
@@ -1366,6 +1393,13 @@
dependencies:
"@babel/types" "^7.24.0"
+"@babel/helper-module-imports@^7.24.6":
+ version "7.24.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.6.tgz#65e54ffceed6a268dc4ce11f0433b82cfff57852"
+ integrity sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==
+ dependencies:
+ "@babel/types" "^7.24.6"
+
"@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9":
version "7.22.9"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz#92dfcb1fbbb2bc62529024f72d942a8c97142129"
@@ -1388,6 +1422,17 @@
"@babel/helper-split-export-declaration" "^7.22.6"
"@babel/helper-validator-identifier" "^7.22.20"
+"@babel/helper-module-transforms@^7.23.3":
+ version "7.24.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.6.tgz#22346ed9df44ce84dee850d7433c5b73fab1fe4e"
+ integrity sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.24.6"
+ "@babel/helper-module-imports" "^7.24.6"
+ "@babel/helper-simple-access" "^7.24.6"
+ "@babel/helper-split-export-declaration" "^7.24.6"
+ "@babel/helper-validator-identifier" "^7.24.6"
+
"@babel/helper-module-transforms@^7.24.5":
version "7.24.5"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz#ea6c5e33f7b262a0ae762fd5986355c45f54a545"
@@ -1411,6 +1456,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
+"@babel/helper-plugin-utils@^7.24.0", "@babel/helper-plugin-utils@^7.24.5":
+ version "7.24.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz#a924607dd254a65695e5bd209b98b902b3b2f11a"
+ integrity sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==
+
"@babel/helper-remap-async-to-generator@^7.18.9", "@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9":
version "7.22.9"
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz#53a25b7484e722d7efb9c350c75c032d4628de82"
@@ -1438,6 +1488,15 @@
"@babel/helper-member-expression-to-functions" "^7.22.5"
"@babel/helper-optimise-call-expression" "^7.22.5"
+"@babel/helper-replace-supers@^7.24.1":
+ version "7.24.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz#7085bd19d4a0b7ed8f405c1ed73ccb70f323abc1"
+ integrity sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==
+ 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"
+
"@babel/helper-simple-access@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de"
@@ -1452,6 +1511,13 @@
dependencies:
"@babel/types" "^7.24.5"
+"@babel/helper-simple-access@^7.24.6":
+ version "7.24.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.6.tgz#1d6e04d468bba4fc963b4906f6dac6286cfedff1"
+ integrity sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==
+ dependencies:
+ "@babel/types" "^7.24.6"
+
"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847"
@@ -1473,6 +1539,13 @@
dependencies:
"@babel/types" "^7.24.5"
+"@babel/helper-split-export-declaration@^7.24.6":
+ version "7.24.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.6.tgz#e830068f7ba8861c53b7421c284da30ae656d7a3"
+ integrity sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==
+ dependencies:
+ "@babel/types" "^7.24.6"
+
"@babel/helper-string-parser@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
@@ -1488,6 +1561,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e"
integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==
+"@babel/helper-string-parser@^7.24.6":
+ version "7.24.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.6.tgz#28583c28b15f2a3339cfafafeaad42f9a0e828df"
+ integrity sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==
+
"@babel/helper-validator-identifier@^7.22.20":
version "7.22.20"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
@@ -1503,6 +1581,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz#918b1a7fa23056603506370089bd990d8720db62"
integrity sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==
+"@babel/helper-validator-identifier@^7.24.6":
+ version "7.24.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.6.tgz#08bb6612b11bdec78f3feed3db196da682454a5e"
+ integrity sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==
+
"@babel/helper-validator-option@^7.22.15":
version "7.22.15"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040"
@@ -1650,6 +1733,14 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-export-default-from" "^7.22.5"
+"@babel/plugin-proposal-logical-assignment-operators@^7.18.0":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83"
+ integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+
"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.0":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1"
@@ -1721,7 +1812,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3":
+"@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
@@ -1763,7 +1854,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.3"
-"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.18.0", "@babel/plugin-syntax-flow@^7.22.5":
+"@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.18.0", "@babel/plugin-syntax-flow@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz#163b820b9e7696ce134df3ee716d9c0c98035859"
integrity sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==
@@ -1798,7 +1889,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.22.5", "@babel/plugin-syntax-jsx@^7.7.2":
+"@babel/plugin-syntax-jsx@^7.22.5", "@babel/plugin-syntax-jsx@^7.7.2":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918"
integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==
@@ -1812,6 +1903,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
+"@babel/plugin-syntax-jsx@^7.24.1":
+ version "7.24.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz#3f6ca04b8c841811dbc3c5c5f837934e0d626c10"
+ integrity sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.24.0"
+
"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
@@ -1833,7 +1931,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3":
+"@babel/plugin-syntax-object-rest-spread@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
@@ -1875,6 +1973,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
+"@babel/plugin-syntax-typescript@^7.24.1":
+ version "7.24.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz#b3bcc51f396d15f3591683f90239de143c076844"
+ integrity sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.24.0"
+
"@babel/plugin-syntax-unicode-sets-regex@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357"
@@ -1890,6 +1995,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
+"@babel/plugin-transform-arrow-functions@^7.0.0-0":
+ version "7.24.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz#2bf263617060c9cc45bcdbf492b8cc805082bf27"
+ integrity sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.24.0"
+
"@babel/plugin-transform-async-generator-functions@^7.22.10":
version "7.22.10"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.10.tgz#45946cd17f915b10e65c29b8ed18a0a50fc648c8"
@@ -1909,7 +2021,7 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/helper-remap-async-to-generator" "^7.22.5"
-"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.22.5":
+"@babel/plugin-transform-block-scoped-functions@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024"
integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==
@@ -2025,7 +2137,7 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-flow" "^7.22.5"
-"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.22.5":
+"@babel/plugin-transform-for-of@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f"
integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==
@@ -2064,7 +2176,7 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
-"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.22.5":
+"@babel/plugin-transform-member-expression-literals@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def"
integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==
@@ -2088,6 +2200,15 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/helper-simple-access" "^7.22.5"
+"@babel/plugin-transform-modules-commonjs@^7.24.1":
+ version "7.24.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz#e71ba1d0d69e049a22bf90b3867e263823d3f1b9"
+ integrity sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.23.3"
+ "@babel/helper-plugin-utils" "^7.24.0"
+ "@babel/helper-simple-access" "^7.22.5"
+
"@babel/plugin-transform-modules-systemjs@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496"
@@ -2121,6 +2242,14 @@
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
+"@babel/plugin-transform-nullish-coalescing-operator@^7.0.0-0":
+ version "7.24.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz#0cd494bb97cb07d428bd651632cb9d4140513988"
+ integrity sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.24.0"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+
"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381"
@@ -2137,13 +2266,6 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
-"@babel/plugin-transform-object-assign@^7.16.7":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.22.5.tgz#290c1b9555dcea48bb2c29ad94237777600d04f9"
- integrity sha512-iDhx9ARkXq4vhZ2CYOSnQXkmxkDgosLi3J8Z17mKz7LyzthtkdVchLD7WZ3aXeCuvJDOW3+1I5TpJmwIbF9MKQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.22.5"
-
"@babel/plugin-transform-object-rest-spread@^7.12.13":
version "7.23.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz#2b9c2d26bf62710460bdc0d1730d4f1048361b83"
@@ -2166,7 +2288,7 @@
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-transform-parameters" "^7.22.5"
-"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.22.5":
+"@babel/plugin-transform-object-super@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c"
integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==
@@ -2182,6 +2304,15 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+"@babel/plugin-transform-optional-chaining@^7.0.0-0":
+ version "7.24.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.5.tgz#a6334bebd7f9dd3df37447880d0bd64b778e600f"
+ integrity sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.24.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+
"@babel/plugin-transform-optional-chaining@^7.22.10", "@babel/plugin-transform-optional-chaining@^7.22.5":
version "7.22.10"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.10.tgz#076d28a7e074392e840d4ae587d83445bac0372a"
@@ -2233,7 +2364,7 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
-"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.22.5":
+"@babel/plugin-transform-property-literals@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766"
integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==
@@ -2354,6 +2485,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
+"@babel/plugin-transform-shorthand-properties@^7.0.0-0":
+ version "7.24.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz#ba9a09144cf55d35ec6b93a32253becad8ee5b55"
+ integrity sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.24.0"
+
"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b"
@@ -2369,7 +2507,14 @@
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.22.5":
+"@babel/plugin-transform-template-literals@^7.0.0-0":
+ version "7.24.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz#15e2166873a30d8617e3e2ccadb86643d327aab7"
+ integrity sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.24.0"
+
+"@babel/plugin-transform-template-literals@^7.22.5":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff"
integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==
@@ -2393,6 +2538,16 @@
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-typescript" "^7.22.5"
+"@babel/plugin-transform-typescript@^7.24.1":
+ version "7.24.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.5.tgz#bcba979e462120dc06a75bd34c473a04781931b8"
+ integrity sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-create-class-features-plugin" "^7.24.5"
+ "@babel/helper-plugin-utils" "^7.24.5"
+ "@babel/plugin-syntax-typescript" "^7.24.1"
+
"@babel/plugin-transform-unicode-escapes@^7.22.10":
version "7.22.10"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz#c723f380f40a2b2f57a62df24c9005834c8616d9"
@@ -2563,6 +2718,17 @@
"@babel/plugin-transform-modules-commonjs" "^7.22.5"
"@babel/plugin-transform-typescript" "^7.22.5"
+"@babel/preset-typescript@^7.23.0":
+ version "7.24.1"
+ resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.24.1.tgz#89bdf13a3149a17b3b2a2c9c62547f06db8845ec"
+ integrity sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==
+ 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"
+
"@babel/register@^7.13.16":
version "7.22.5"
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.22.5.tgz#e4d8d0f615ea3233a27b5c6ada6750ee59559939"
@@ -2704,6 +2870,15 @@
"@babel/helper-validator-identifier" "^7.22.20"
to-fast-properties "^2.0.0"
+"@babel/types@^7.24.6":
+ version "7.24.6"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.6.tgz#ba4e1f59870c10dc2fa95a274ac4feec23b21912"
+ integrity sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==
+ dependencies:
+ "@babel/helper-string-parser" "^7.24.6"
+ "@babel/helper-validator-identifier" "^7.24.6"
+ to-fast-properties "^2.0.0"
+
"@bam.tech/react-native-image-resizer@^3.0.4":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@bam.tech/react-native-image-resizer/-/react-native-image-resizer-3.0.5.tgz#6661ba020de156268f73bdc92fbb93ef86f88a13"
@@ -2938,7 +3113,7 @@
"@discord/bottom-sheet@bluesky-social/react-native-bottom-sheet":
version "4.6.1"
- resolved "https://codeload.github.com/bluesky-social/react-native-bottom-sheet/tar.gz/2b3f77e04a25c454e70d893a2692e8c03aced06b"
+ resolved "https://codeload.github.com/bluesky-social/react-native-bottom-sheet/tar.gz/28a87d1bb55e10fc355fa1455545a30734995908"
dependencies:
"@gorhom/portal" "1.0.14"
invariant "^2.2.4"
@@ -3117,40 +3292,41 @@
mv "~2"
safe-json-stringify "~1"
-"@expo/cli@0.17.10":
- version "0.17.10"
- resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.17.10.tgz#7dd5e2b4a01f5d29698c431729a19878fbd806f5"
- integrity sha512-Jw2wY+lsavP9GRqwwLqF/SvB7w2GZ4sWBMcBKTZ8F0lWjwmLGAUt4WYquf20agdmnY/oZUHvWNkrz/t3SflhnA==
+"@expo/cli@0.18.13":
+ version "0.18.13"
+ resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.18.13.tgz#b3a6aa1d4cfa78720ba86f73ded7c2c93f4805a9"
+ integrity sha512-ZO1fpDK8z6mLeQGuFP6e3cZyCHV55ohZY7/tEyhpft3bwysS680eyFg5SFe+tWNFesnziFrbtI8JaUyhyjqovA==
dependencies:
"@babel/runtime" "^7.20.0"
"@expo/code-signing-certificates" "0.0.5"
- "@expo/config" "~8.5.0"
- "@expo/config-plugins" "~7.9.0"
- "@expo/devcert" "^1.0.0"
- "@expo/env" "~0.2.2"
- "@expo/image-utils" "^0.4.0"
- "@expo/json-file" "^8.2.37"
- "@expo/metro-config" "~0.17.0"
+ "@expo/config" "~9.0.0"
+ "@expo/config-plugins" "~8.0.0"
+ "@expo/devcert" "^1.1.2"
+ "@expo/env" "~0.3.0"
+ "@expo/image-utils" "^0.5.0"
+ "@expo/json-file" "^8.3.0"
+ "@expo/metro-config" "~0.18.0"
"@expo/osascript" "^2.0.31"
- "@expo/package-manager" "^1.1.1"
+ "@expo/package-manager" "^1.5.0"
"@expo/plist" "^0.1.0"
- "@expo/prebuild-config" "6.8.1"
+ "@expo/prebuild-config" "7.0.4"
"@expo/rudder-sdk-node" "1.1.1"
- "@expo/spawn-async" "1.5.0"
+ "@expo/spawn-async" "^1.7.2"
"@expo/xcpretty" "^4.3.0"
- "@react-native/dev-middleware" "^0.73.6"
+ "@react-native/dev-middleware" "~0.74.75"
"@urql/core" "2.3.6"
"@urql/exchange-retry" "0.3.0"
accepts "^1.3.8"
arg "5.0.2"
better-opn "~3.0.2"
bplist-parser "^0.3.1"
- cacache "^15.3.0"
+ cacache "^18.0.2"
chalk "^4.0.0"
ci-info "^3.3.0"
connect "^3.7.0"
debug "^4.3.4"
env-editor "^0.4.1"
+ fast-glob "^3.3.2"
find-yarn-workspace-root "~2.0.0"
form-data "^3.0.1"
freeport-async "2.0.0"
@@ -3168,7 +3344,6 @@
lodash.debounce "^4.0.8"
md5hex "^1.0.0"
minimatch "^3.0.4"
- minipass "3.3.6"
node-fetch "^2.6.7"
node-forge "^1.3.1"
npm-package-arg "^7.0.0"
@@ -3184,7 +3359,7 @@
resolve "^1.22.2"
resolve-from "^5.0.0"
resolve.exports "^2.0.2"
- semver "^7.5.3"
+ semver "^7.6.0"
send "^0.18.0"
slugify "^1.3.4"
source-map-support "~0.5.21"
@@ -3230,7 +3405,7 @@
xcode "^3.0.1"
xml2js "0.6.0"
-"@expo/config-plugins@8.0.4":
+"@expo/config-plugins@8.0.4", "@expo/config-plugins@~8.0.0", "@expo/config-plugins@~8.0.0-beta.0":
version "8.0.4"
resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-8.0.4.tgz#1e781cd971fab27409ed2f8d621db6d29cce3036"
integrity sha512-Hi+xuyNWE2LT4LVbGttHJgl9brnsdWAhEB42gWKb5+8ae86Nr/KwUBQJsJppirBYTeLjj5ZlY0glYnAkDa2jqw==
@@ -3320,12 +3495,7 @@
resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-47.0.0.tgz#99eeabe0bba7a776e0f252b78beb0c574692c38d"
integrity sha512-r0pWfuhkv7KIcXMUiNACJmJKKwlTBGMw9VZHNdppS8/0Nve8HZMTkNRFQzTHW1uH3pBj8jEXpyw/2vSWDHex9g==
-"@expo/config-types@^49.0.0-alpha.1":
- version "49.0.0"
- resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-49.0.0.tgz#15ffef715285c06703f6fb7ec0cda853f645cc09"
- integrity sha512-8eyREVi+K2acnMBe/rTIu1dOfyR2+AMnTLHlut+YpMV9OZPdeKV0Bs9BxAewGqBA2slslbQ9N39IS2CuTKpXkA==
-
-"@expo/config-types@^50.0.0", "@expo/config-types@^50.0.0-alpha.1":
+"@expo/config-types@^50.0.0-alpha.1":
version "50.0.0"
resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-50.0.0.tgz#b534d3ec997ec60f8af24f6ad56244c8afc71a0b"
integrity sha512-0kkhIwXRT6EdFDwn+zTg9R2MZIAEYGn1MVkyRohAd+C9cXOb5RA8WLQi7vuxKF9m1SMtNAUrf0pO+ENK0+/KSw==
@@ -3335,20 +3505,20 @@
resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-51.0.0.tgz#f5df238cd1237d7e4d9cc8217cdef3383c2a00cf"
integrity sha512-acn03/u8mQvBhdTQtA7CNhevMltUhbSrpI01FYBJwpVntufkU++ncQujWKlgY/OwIajcfygk1AY4xcNZ5ImkRA==
-"@expo/config@8.5.6":
- version "8.5.6"
- resolved "https://registry.yarnpkg.com/@expo/config/-/config-8.5.6.tgz#e37ba437a1718ed4629e1dd130a7aace25312b89"
- integrity sha512-wF5awSg6MNn1cb1lIgjnhOn5ov2TEUTnkAVCsOl0QqDwcP+YIerteSFwjn9V52UZvg58L+LKxpCuGbw5IHavbg==
+"@expo/config@9.0.2", "@expo/config@~9.0.0":
+ version "9.0.2"
+ resolved "https://registry.yarnpkg.com/@expo/config/-/config-9.0.2.tgz#112b93436dbca8aa3da73a46329e5b58fdd435d2"
+ integrity sha512-BKQ4/qBf3OLT8hHp5kjObk2vxwoRQ1yYQBbG/OM9Jdz32yYtrU8opTbKRAxfZEWH5i3ZHdLrPdC1rO0I6WxtTw==
dependencies:
"@babel/code-frame" "~7.10.4"
- "@expo/config-plugins" "~7.9.0"
- "@expo/config-types" "^50.0.0"
- "@expo/json-file" "^8.2.37"
+ "@expo/config-plugins" "~8.0.0"
+ "@expo/config-types" "^51.0.0-unreleased"
+ "@expo/json-file" "^8.3.0"
getenv "^1.0.0"
glob "7.1.6"
require-from-string "^2.0.2"
resolve-from "^5.0.0"
- semver "7.5.3"
+ semver "^7.6.0"
slugify "^1.3.4"
sucrase "3.34.0"
@@ -3386,10 +3556,27 @@
slugify "^1.3.4"
sucrase "^3.20.0"
-"@expo/devcert@^1.0.0":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@expo/devcert/-/devcert-1.1.0.tgz#d148eb9180db6753c438192e73a123fb13b662ac"
- integrity sha512-ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA==
+"@expo/config@~9.0.0-beta.0":
+ version "9.0.1"
+ resolved "https://registry.yarnpkg.com/@expo/config/-/config-9.0.1.tgz#e7b79de5af29d5ab2a98a62c3cda31f03bd75827"
+ integrity sha512-0tjaXBstTbXmD4z+UMFBkh2SZFwilizSQhW6DlaTMnPG5ezuw93zSFEWAuEC3YzkpVtNQTmYzxAYjxwh6seOGg==
+ dependencies:
+ "@babel/code-frame" "~7.10.4"
+ "@expo/config-plugins" "~8.0.0-beta.0"
+ "@expo/config-types" "^51.0.0-unreleased"
+ "@expo/json-file" "^8.3.0"
+ getenv "^1.0.0"
+ glob "7.1.6"
+ require-from-string "^2.0.2"
+ resolve-from "^5.0.0"
+ semver "^7.6.0"
+ slugify "^1.3.4"
+ sucrase "3.34.0"
+
+"@expo/devcert@^1.1.2":
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/@expo/devcert/-/devcert-1.1.2.tgz#a4923b8ea5b34fde31d6e006a40d0f594096a0ed"
+ integrity sha512-FyWghLu7rUaZEZSTLt/XNRukm0c9GFfwP0iFaswoDWpV6alvVg+zRAfCLdIVQEz1SVcQ3zo1hMZFDrnKGvkCuQ==
dependencies:
application-config-path "^0.1.0"
command-exists "^1.2.4"
@@ -3397,7 +3584,7 @@
eol "^0.9.1"
get-port "^3.2.0"
glob "^7.1.2"
- lodash "^4.17.4"
+ lodash "^4.17.21"
mkdirp "^0.5.1"
password-prompt "^1.0.4"
rimraf "^2.6.2"
@@ -3405,26 +3592,15 @@
tmp "^0.0.33"
tslib "^2.4.0"
-"@expo/env@~0.2.0":
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/@expo/env/-/env-0.2.0.tgz#59964a52b92e0582cc8dd0e87bcd8967d019c809"
- integrity sha512-NgcU8oxWCL0xEoOmFc6bHmKq0/sYma7AUARgas8X9wbXz4tfH9SmKrRntDdez33Yw2tarBsQ14MjZD2iJLj7xA==
+"@expo/env@~0.3.0":
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/@expo/env/-/env-0.3.0.tgz#a66064e5656e0e48197525f47f3398034fdf579e"
+ integrity sha512-OtB9XVHWaXidLbHvrVDeeXa09yvTl3+IQN884sO6PhIi2/StXfgSH/9zC7IvzrDB8kW3EBJ1PPLuCUJ2hxAT7Q==
dependencies:
chalk "^4.0.0"
debug "^4.3.4"
- dotenv "~16.0.3"
- dotenv-expand "~10.0.0"
- getenv "^1.0.0"
-
-"@expo/env@~0.2.2":
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/@expo/env/-/env-0.2.2.tgz#49f589f32e9bae279a6509d7a02218c0f4e32a60"
- integrity sha512-m9nGuaSpzdvMzevQ1H60FWgf4PG5s4J0dfKUzdAGnDu7sMUerY/yUeDaA4+OBo3vBwGVQ+UHcQS9vPSMBNaPcg==
- dependencies:
- chalk "^4.0.0"
- debug "^4.3.4"
- dotenv "~16.0.3"
- dotenv-expand "~10.0.0"
+ dotenv "~16.4.5"
+ dotenv-expand "~11.0.6"
getenv "^1.0.0"
"@expo/fingerprint@^0.6.0":
@@ -3440,6 +3616,20 @@
p-limit "^3.1.0"
resolve-from "^5.0.0"
+"@expo/fingerprint@^0.8.0":
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/@expo/fingerprint/-/fingerprint-0.8.0.tgz#631a64c5db23e121228546502ae6a0eeab19aaf7"
+ integrity sha512-LBNweJnpG16p7SbvFGINF5Q44bDErIcm1li9SuvYQgrrSey3ErIPmZsiMsNBxlvVie6eTp4wmFO6IFmeaqEhbg==
+ dependencies:
+ "@expo/spawn-async" "^1.7.2"
+ chalk "^4.1.2"
+ debug "^4.3.4"
+ find-up "^5.0.0"
+ minimatch "^3.0.4"
+ p-limit "^3.1.0"
+ resolve-from "^5.0.0"
+ semver "^7.6.0"
+
"@expo/html-elements@^0.4.2":
version "0.4.3"
resolved "https://registry.yarnpkg.com/@expo/html-elements/-/html-elements-0.4.3.tgz#32b4ca05dd13582164ed1be34ae87e22adfd1d5b"
@@ -3479,6 +3669,22 @@
semver "7.3.2"
tempy "0.3.0"
+"@expo/image-utils@^0.5.0":
+ version "0.5.1"
+ resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.5.1.tgz#06fade141facebcd8431355923d30f3839309942"
+ integrity sha512-U/GsFfFox88lXULmFJ9Shfl2aQGcwoKPF7fawSCLixIKtMCpsI+1r0h+5i0nQnmt9tHuzXZDL8+Dg1z6OhkI9A==
+ dependencies:
+ "@expo/spawn-async" "^1.7.2"
+ chalk "^4.0.0"
+ fs-extra "9.0.0"
+ getenv "^1.0.0"
+ jimp-compact "0.16.1"
+ node-fetch "^2.6.0"
+ parse-png "^2.1.0"
+ resolve-from "^5.0.0"
+ semver "^7.6.0"
+ tempy "0.3.0"
+
"@expo/json-file@8.2.36":
version "8.2.36"
resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-8.2.36.tgz#62a505cb7f30a34d097386476794680a3f7385ff"
@@ -3497,6 +3703,15 @@
json5 "^2.2.2"
write-file-atomic "^2.3.0"
+"@expo/json-file@^8.3.0":
+ version "8.3.3"
+ resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-8.3.3.tgz#7926e3592f76030ce63d6b1308ac8f5d4d9341f4"
+ integrity sha512-eZ5dld9AD0PrVRiIWpRkm5aIoWBw3kAyd8VkuWEy92sEthBKDDDHAnK2a0dw0Eil6j7rK7lS/Qaq/Zzngv2h5A==
+ dependencies:
+ "@babel/code-frame" "~7.10.4"
+ json5 "^2.2.2"
+ write-file-atomic "^2.3.0"
+
"@expo/json-file@~8.3.0":
version "8.3.0"
resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-8.3.0.tgz#fc84af77b532a4e9bfb5beafd0e3b7f692b6bd7e"
@@ -3506,20 +3721,19 @@
json5 "^2.2.2"
write-file-atomic "^2.3.0"
-"@expo/metro-config@0.17.7":
- version "0.17.7"
- resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.17.7.tgz#c877a9558f3b97447cc9cf382971403834d84b46"
- integrity sha512-3vAdinAjMeRwdhGWWLX6PziZdAPvnyJ6KVYqnJErHHqH0cA6dgAENT3Vq6PEM1H2HgczKr2d5yG9AMgwy848ow==
+"@expo/metro-config@0.18.4":
+ version "0.18.4"
+ resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.18.4.tgz#bc298e21637a3007f3c31c238525d3bef17e823b"
+ integrity sha512-vh9WDf/SzE+NYCn6gqbzLKiXtENFlFZdAqyj9nI38RvQ4jw6TJIQ8+ExcdLDT3MOG36Ytg44XX9Zb3OWF6LVxw==
dependencies:
"@babel/core" "^7.20.0"
"@babel/generator" "^7.20.5"
"@babel/parser" "^7.20.0"
"@babel/types" "^7.20.0"
- "@expo/config" "~8.5.0"
- "@expo/env" "~0.2.2"
+ "@expo/config" "~9.0.0"
+ "@expo/env" "~0.3.0"
"@expo/json-file" "~8.3.0"
"@expo/spawn-async" "^1.7.2"
- babel-preset-fbjs "^3.4.0"
chalk "^4.1.0"
debug "^4.3.2"
find-yarn-workspace-root "~2.0.0"
@@ -3530,22 +3744,20 @@
lightningcss "~1.19.0"
postcss "~8.4.32"
resolve-from "^5.0.0"
- sucrase "3.34.0"
-"@expo/metro-config@~0.17.0":
- version "0.17.1"
- resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.17.1.tgz#8e1cd7b9f63ea84cc18696807cf23560d010e5d8"
- integrity sha512-ZOE0Jx0YTZyPpsGiiE09orGEFgZ5sMrOOFSgOe8zrns925g/uCuEbowyNq38IfQt//3xSl5mW3z0l4rxgi7hHQ==
+"@expo/metro-config@~0.18.0":
+ version "0.18.3"
+ resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.18.3.tgz#fa198b9bf806df44fd7684f1df9af2535c107aa8"
+ integrity sha512-E4iW+VT/xHPPv+t68dViOsW7egtGIr+sRElcym0iGpC4goLz9WBux/xGzWgxvgvvHEWa21uSZQPM0jWla0OZXg==
dependencies:
"@babel/core" "^7.20.0"
"@babel/generator" "^7.20.5"
"@babel/parser" "^7.20.0"
"@babel/types" "^7.20.0"
- "@expo/config" "~8.5.0"
- "@expo/env" "~0.2.0"
+ "@expo/config" "~9.0.0-beta.0"
+ "@expo/env" "~0.3.0"
"@expo/json-file" "~8.3.0"
"@expo/spawn-async" "^1.7.2"
- babel-preset-fbjs "^3.4.0"
chalk "^4.1.0"
debug "^4.3.2"
find-yarn-workspace-root "~2.0.0"
@@ -3554,9 +3766,8 @@
glob "^7.2.3"
jsc-safe-url "^0.2.4"
lightningcss "~1.19.0"
- postcss "~8.4.21"
+ postcss "~8.4.32"
resolve-from "^5.0.0"
- sucrase "^3.20.0"
"@expo/osascript@^2.0.31":
version "2.0.33"
@@ -3566,13 +3777,13 @@
"@expo/spawn-async" "^1.5.0"
exec-async "^2.2.0"
-"@expo/package-manager@^1.1.1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-1.1.2.tgz#e58c9bed4cbb829ebf2cbb80b8542600a6609bd1"
- integrity sha512-JI9XzrxB0QVXysyuJ996FPCJGDCYRkbUvgG4QmMTTMFA1T+mv8YzazC3T9C1pHQUAAveVCre1+Pqv0nZXN24Xg==
+"@expo/package-manager@^1.5.0":
+ version "1.5.2"
+ resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-1.5.2.tgz#6015963669977a188bbbac930aa0dc103162ee73"
+ integrity sha512-IuA9XtGBilce0q8cyxtWINqbzMB1Fia0Yrug/O53HNuRSwQguV/iqjV68bsa4z8mYerePhcFgtvISWLAlNEbUA==
dependencies:
- "@expo/json-file" "^8.2.37"
- "@expo/spawn-async" "^1.5.0"
+ "@expo/json-file" "^8.3.0"
+ "@expo/spawn-async" "^1.7.2"
ansi-regex "^5.0.0"
chalk "^4.0.0"
find-up "^5.0.0"
@@ -3580,6 +3791,7 @@
js-yaml "^3.13.1"
micromatch "^4.0.2"
npm-package-arg "^7.0.0"
+ ora "^3.4.0"
split "^1.0.1"
sudo-prompt "9.1.1"
@@ -3626,36 +3838,38 @@
semver "7.5.3"
xml2js "0.6.0"
-"@expo/prebuild-config@6.7.4":
- version "6.7.4"
- resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-6.7.4.tgz#b3e4c8545d7a101bf1fc263c5b7290abc4635e69"
- integrity sha512-x8EUdCa8DTMZ/dtEXjHAdlP+ljf6oSeSKNzhycXiHhpMSMG9jEhV28ocCwc6cKsjK5GziweEiHwvrj6+vsBlhA==
+"@expo/prebuild-config@7.0.3":
+ version "7.0.3"
+ resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-7.0.3.tgz#d7f66745de6f0b17b15ed2f1417f91c6ba0b591b"
+ integrity sha512-Kvxy/oQzkxwXLvAmwb+ygxuRn4xUUN2+mVJj3KDe4bRVCNyDPs7wlgdokF3twnWjzRZssUzseMkhp+yHPjAEhA==
dependencies:
- "@expo/config" "~8.5.0"
- "@expo/config-plugins" "~7.8.0"
- "@expo/config-types" "^50.0.0-alpha.1"
- "@expo/image-utils" "^0.4.0"
- "@expo/json-file" "^8.2.37"
+ "@expo/config" "~9.0.0-beta.0"
+ "@expo/config-plugins" "~8.0.0-beta.0"
+ "@expo/config-types" "^51.0.0-unreleased"
+ "@expo/image-utils" "^0.5.0"
+ "@expo/json-file" "^8.3.0"
+ "@react-native/normalize-colors" "~0.74.83"
debug "^4.3.1"
fs-extra "^9.0.0"
resolve-from "^5.0.0"
- semver "7.5.3"
+ semver "^7.6.0"
xml2js "0.6.0"
-"@expo/prebuild-config@6.8.1":
- version "6.8.1"
- resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-6.8.1.tgz#5d562b1d6b2e5e4727a3c61acf1a4ed6117b94d8"
- integrity sha512-ptK9e0dcj1eYlAWV+fG+QkuAWcLAT1AmtEbj++tn7ZjEj8+LkXRM73LCOEGaF0Er8i8ZWNnaVsgGW4vjgP5ZsA==
+"@expo/prebuild-config@7.0.4":
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-7.0.4.tgz#cf2d001792d69e652ad4cec9830c8bd4905f0e7a"
+ integrity sha512-E2n3QbwgV8Qa0CBw7BHrWBDWD7l8yw+N/yjvXpSPFFtoZLMSKyegdkJFACh2u+UIRKUSZm8zQwHeZR0rqAxV9g==
dependencies:
- "@expo/config" "~8.5.0"
- "@expo/config-plugins" "~7.9.0"
- "@expo/config-types" "^50.0.0-alpha.1"
- "@expo/image-utils" "^0.4.0"
- "@expo/json-file" "^8.2.37"
+ "@expo/config" "~9.0.0"
+ "@expo/config-plugins" "~8.0.0"
+ "@expo/config-types" "^51.0.0-unreleased"
+ "@expo/image-utils" "^0.5.0"
+ "@expo/json-file" "^8.3.0"
+ "@react-native/normalize-colors" "~0.74.83"
debug "^4.3.1"
fs-extra "^9.0.0"
resolve-from "^5.0.0"
- semver "7.5.3"
+ semver "^7.6.0"
xml2js "0.6.0"
"@expo/rudder-sdk-node@1.1.1":
@@ -3871,19 +4085,14 @@
dependencies:
"@fortawesome/fontawesome-common-types" "6.4.2"
-"@fortawesome/react-native-fontawesome@^0.3.0":
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/@fortawesome/react-native-fontawesome/-/react-native-fontawesome-0.3.0.tgz#b59c45cdae2451d15f826f937d6e1a6e9dca0c74"
- integrity sha512-wSfetdK4+b/pvPbM2v+bZ5hfNlwtk9l3QuJo59sbMrxJalfX7BuF2WsSIWMSxfWwSsbOtY4+TUs6uw/rE59NJA==
+"@fortawesome/react-native-fontawesome@^0.3.2":
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/@fortawesome/react-native-fontawesome/-/react-native-fontawesome-0.3.2.tgz#cb822733a334b35f44a2650532b6cb50772d904e"
+ integrity sha512-CiWfJWSZHRg12VXlaeFnaa5yJVPOrjsSFEvF6ntz3cnjg4oN3cvauL+JATacMCl0v9xzib32qC1WZAvvGkfB4w==
dependencies:
humps "^2.0.1"
prop-types "^15.7.2"
-"@gar/promisify@^1.0.1":
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
- integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
-
"@gorhom/portal@1.0.14":
version "1.0.14"
resolved "https://registry.yarnpkg.com/@gorhom/portal/-/portal-1.0.14.tgz#1953edb76aaba80fb24021dc774550194a18e111"
@@ -4679,12 +4888,12 @@
dependencies:
"@lukeed/csprng" "^1.1.0"
-"@mattermost/react-native-paste-input@^0.6.4":
- version "0.6.4"
- resolved "https://registry.yarnpkg.com/@mattermost/react-native-paste-input/-/react-native-paste-input-0.6.4.tgz#0b51dacc525849c3f8350d43bf7057d17724b9b5"
- integrity sha512-EJ/CTm97pe7u1GnrUFaVaP5j6i57GHPFpnUDdc+r7tLYa2T4LN0oR09KYbr1INcTMz//MqVMz4GYUVFMMN0Xmw==
+"@mattermost/react-native-paste-input@^0.7.1":
+ version "0.7.1"
+ resolved "https://registry.yarnpkg.com/@mattermost/react-native-paste-input/-/react-native-paste-input-0.7.1.tgz#f14585030b992cf7c9bbd0921225eefa501756ba"
+ integrity sha512-kY8LKtqRX2T/rtn/HNrzTitijuATvyzd6yl5WNWOsszmyzNcssKStjjCTBup04CyMxfwutUU1CWrYUb3hQO7oA==
dependencies:
- semver "7.5.4"
+ semver "7.6.0"
"@messageformat/parser@^5.0.0":
version "5.1.0"
@@ -4743,22 +4952,13 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@npmcli/fs@^1.0.0":
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257"
- integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==
+"@npmcli/fs@^3.1.0":
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.1.tgz#59cdaa5adca95d135fc00f2bb53f5771575ce726"
+ integrity sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==
dependencies:
- "@gar/promisify" "^1.0.1"
semver "^7.3.5"
-"@npmcli/move-file@^1.0.1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674"
- integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==
- dependencies:
- mkdirp "^1.0.4"
- rimraf "^3.0.2"
-
"@pkgjs/parseargs@^0.11.0":
version "0.11.0"
resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
@@ -5151,50 +5351,51 @@
dependencies:
merge-options "^3.0.4"
-"@react-native-community/cli-clean@12.3.0":
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-12.3.0.tgz#667b32daa58b4d11d5b5ab9eb0a2e216d500c90b"
- integrity sha512-iAgLCOWYRGh9ukr+eVQnhkV/OqN3V2EGd/in33Ggn/Mj4uO6+oUncXFwB+yjlyaUNz6FfjudhIz09yYGSF+9sg==
+"@react-native-community/cli-clean@13.6.6":
+ version "13.6.6"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-13.6.6.tgz#87c7ad8746c38dab0fe7b3c6ff89d44351d5d943"
+ integrity sha512-cBwJTwl0NyeA4nyMxbhkWZhxtILYkbU3TW3k8AXLg+iGphe0zikYMGB3T+haTvTc6alTyEFwPbimk9bGIqkjAQ==
dependencies:
- "@react-native-community/cli-tools" "12.3.0"
+ "@react-native-community/cli-tools" "13.6.6"
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.yarnpkg.com/@react-native-community/cli-config/-/cli-config-12.3.0.tgz#255b4e5391878937a25888f452f50a968d053e3e"
- integrity sha512-BrTn5ndFD9uOxO8kxBQ32EpbtOvAsQExGPI7SokdI4Zlve70FziLtTq91LTlTUgMq1InVZn/jJb3VIDk6BTInQ==
+"@react-native-community/cli-config@13.6.6":
+ version "13.6.6"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-13.6.6.tgz#69f590694b3a079c74f781baab3b762db74f5dbd"
+ integrity sha512-mbG425zCKr8JZhv/j11382arezwS/70juWMsn8j2lmrGTrP1cUdW0MF15CCIFtJsqyK3Qs+FTmqttRpq81QfSg==
dependencies:
- "@react-native-community/cli-tools" "12.3.0"
+ "@react-native-community/cli-tools" "13.6.6"
chalk "^4.1.2"
cosmiconfig "^5.1.0"
deepmerge "^4.3.0"
- glob "^7.1.3"
+ fast-glob "^3.3.2"
joi "^17.2.1"
-"@react-native-community/cli-debugger-ui@12.3.0":
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-12.3.0.tgz#75bbb2082a369b3559e0dffa8bfeebf2a9107e3e"
- integrity sha512-w3b0iwjQlk47GhZWHaeTG8kKH09NCMUJO729xSdMBXE8rlbm4kHpKbxQY9qKb6NlfWSJN4noGY+FkNZS2rRwnQ==
+"@react-native-community/cli-debugger-ui@13.6.6":
+ version "13.6.6"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-13.6.6.tgz#ac021ebd795b0fd66fb52a8987d1d41c5a4b8cb3"
+ integrity sha512-Vv9u6eS4vKSDAvdhA0OiQHoA7y39fiPIgJ6biT32tN4avHDtxlc6TWZGiqv7g98SBvDWvoVAmdPLcRf3kU+c8g==
dependencies:
serve-static "^1.13.1"
-"@react-native-community/cli-doctor@12.3.0":
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-12.3.0.tgz#420eb4e80d482f16d431c4df33fbc203862508af"
- integrity sha512-BPCwNNesoQMkKsxB08Ayy6URgGQ8Kndv6mMhIvJSNdST3J1+x3ehBHXzG9B9Vfi+DrTKRb8lmEl/b/7VkDlPkA==
+"@react-native-community/cli-doctor@13.6.6":
+ version "13.6.6"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-13.6.6.tgz#ac0febff05601d9b86af3e03460e1a6b0a1d33a5"
+ integrity sha512-TWZb5g6EmQe2Ua2TEWNmyaEayvlWH4GmdD9ZC+p8EpKFpB1NpDGMK6sXbpb42TDvwZg5s4TDRplK0PBEA/SVDg==
dependencies:
- "@react-native-community/cli-config" "12.3.0"
- "@react-native-community/cli-platform-android" "12.3.0"
- "@react-native-community/cli-platform-ios" "12.3.0"
- "@react-native-community/cli-tools" "12.3.0"
+ "@react-native-community/cli-config" "13.6.6"
+ "@react-native-community/cli-platform-android" "13.6.6"
+ "@react-native-community/cli-platform-apple" "13.6.6"
+ "@react-native-community/cli-platform-ios" "13.6.6"
+ "@react-native-community/cli-tools" "13.6.6"
chalk "^4.1.2"
command-exists "^1.2.8"
deepmerge "^4.3.0"
envinfo "^7.10.0"
execa "^5.0.0"
hermes-profile-transformer "^0.0.6"
- ip "^1.1.5"
node-stream-zip "^1.9.1"
ora "^5.4.1"
semver "^7.5.2"
@@ -5202,68 +5403,70 @@
wcwidth "^1.0.1"
yaml "^2.2.1"
-"@react-native-community/cli-hermes@12.3.0":
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-12.3.0.tgz#c302acbfb07e1f4e73e76e3150c32f0e4f54e9ed"
- integrity sha512-G6FxpeZBO4AimKZwtWR3dpXRqTvsmEqlIkkxgwthdzn3LbVjDVIXKpVYU9PkR5cnT+KuAUxO0WwthrJ6Nmrrlg==
+"@react-native-community/cli-hermes@13.6.6":
+ version "13.6.6"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-13.6.6.tgz#590f55f151fec23b55498228f92d100a0e71d474"
+ integrity sha512-La5Ie+NGaRl3klei6WxKoOxmCUSGGxpOk6vU5pEGf0/O7ky+Ay0io+zXYUZqlNMi/cGpO7ZUijakBYOB/uyuFg==
dependencies:
- "@react-native-community/cli-platform-android" "12.3.0"
- "@react-native-community/cli-tools" "12.3.0"
+ "@react-native-community/cli-platform-android" "13.6.6"
+ "@react-native-community/cli-tools" "13.6.6"
chalk "^4.1.2"
hermes-profile-transformer "^0.0.6"
- ip "^1.1.5"
-"@react-native-community/cli-platform-android@12.3.0":
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-12.3.0.tgz#eafa5fb12ebc25f716aea18cd55039c19fbedca6"
- integrity sha512-VU1NZw63+GLU2TnyQ919bEMThpHQ/oMFju9MCfrd3pyPJz4Sn+vc3NfnTDUVA5Z5yfLijFOkHIHr4vo/C9bjnw==
+"@react-native-community/cli-platform-android@13.6.6":
+ version "13.6.6"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-13.6.6.tgz#9e3863cb092709021f11848890bff0fc16fc1609"
+ integrity sha512-/tMwkBeNxh84syiSwNlYtmUz/Ppc+HfKtdopL/5RB+fd3SV1/5/NPNjMlyLNgFKnpxvKCInQ7dnl6jGHJjeHjg==
dependencies:
- "@react-native-community/cli-tools" "12.3.0"
+ "@react-native-community/cli-tools" "13.6.6"
chalk "^4.1.2"
execa "^5.0.0"
+ fast-glob "^3.3.2"
fast-xml-parser "^4.2.4"
- glob "^7.1.3"
logkitty "^0.7.1"
-"@react-native-community/cli-platform-ios@12.3.0":
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-12.3.0.tgz#42a9185bb51f35a7eb9c5818b2f0072846945ef5"
- integrity sha512-H95Sgt3wT7L8V75V0syFJDtv4YgqK5zbu69ko4yrXGv8dv2EBi6qZP0VMmkqXDamoPm9/U7tDTdbcf26ctnLfg==
+"@react-native-community/cli-platform-apple@13.6.6":
+ version "13.6.6"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-13.6.6.tgz#d445fd6ed02c5ae2f43f9c45501e04fee53a2790"
+ integrity sha512-bOmSSwoqNNT3AmCRZXEMYKz1Jf1l2F86Nhs7qBcXdY/sGiJ+Flng564LOqvdAlVLTbkgz47KjNKCS2pP4Jg0Mg==
dependencies:
- "@react-native-community/cli-tools" "12.3.0"
+ "@react-native-community/cli-tools" "13.6.6"
chalk "^4.1.2"
execa "^5.0.0"
+ fast-glob "^3.3.2"
fast-xml-parser "^4.0.12"
- glob "^7.1.3"
ora "^5.4.1"
-"@react-native-community/cli-plugin-metro@12.3.0":
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-12.3.0.tgz#b4ea8da691d294aee98ccfcd1162bcd958cae834"
- integrity sha512-tYNHIYnNmxrBcsqbE2dAnLMzlKI3Cp1p1xUgTrNaOMsGPDN1epzNfa34n6Nps3iwKElSL7Js91CzYNqgTalucA==
-
-"@react-native-community/cli-server-api@12.3.0":
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-12.3.0.tgz#0460472d44c121d1db8a98ad1df811200c074fb3"
- integrity sha512-Rode8NrdyByC+lBKHHn+/W8Zu0c+DajJvLmOWbe2WY/ECvnwcd9MHHbu92hlT2EQaJ9LbLhGrSbQE3cQy9EOCw==
+"@react-native-community/cli-platform-ios@13.6.6":
+ version "13.6.6"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-13.6.6.tgz#0cd700f36483ca37dda7ec044377f8a926b1df1f"
+ integrity sha512-vjDnRwhlSN5ryqKTas6/DPkxuouuyFBAqAROH4FR1cspTbn6v78JTZKDmtQy9JMMo7N5vZj1kASU5vbFep9IOQ==
dependencies:
- "@react-native-community/cli-debugger-ui" "12.3.0"
- "@react-native-community/cli-tools" "12.3.0"
+ "@react-native-community/cli-platform-apple" "13.6.6"
+
+"@react-native-community/cli-server-api@13.6.6":
+ version "13.6.6"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-13.6.6.tgz#467993006ef82361cdf7a9817999d5a09e85ca6a"
+ integrity sha512-ZtCXxoFlM7oDv3iZ3wsrT3SamhtUJuIkX2WePLPlN5bcbq7zimbPm2lHyicNJtpcGQ5ymsgpUWPCNZsWQhXBqQ==
+ dependencies:
+ "@react-native-community/cli-debugger-ui" "13.6.6"
+ "@react-native-community/cli-tools" "13.6.6"
compression "^1.7.1"
connect "^3.6.5"
errorhandler "^1.5.1"
nocache "^3.0.1"
pretty-format "^26.6.2"
serve-static "^1.13.1"
- ws "^7.5.1"
+ ws "^6.2.2"
-"@react-native-community/cli-tools@12.3.0":
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-12.3.0.tgz#d459a116e1a95034d3c9a6385069c9e2049fb2a6"
- integrity sha512-2GafnCr8D88VdClwnm9KZfkEb+lzVoFdr/7ybqhdeYM0Vnt/tr2N+fM1EQzwI1DpzXiBzTYemw8GjRq+Utcz2Q==
+"@react-native-community/cli-tools@13.6.6":
+ version "13.6.6"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-13.6.6.tgz#55c40cbabafbfc56cfb95a4d5fbf73ef60ec3cbc"
+ integrity sha512-ptOnn4AJczY5njvbdK91k4hcYazDnGtEPrqIwEI+k/CTBHNdb27Rsm2OZ7ye6f7otLBqF8gj/hK6QzJs8CEMgw==
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"
@@ -5273,27 +5476,26 @@
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.yarnpkg.com/@react-native-community/cli-types/-/cli-types-12.3.0.tgz#2d21a1f93aefbdb34a04311d68097aef0388704f"
- integrity sha512-MgOkmrXH4zsGxhte4YqKL7d+N8ZNEd3w1wo56MZlhu5WabwCJh87wYpU5T8vyfujFLYOFuFK5jjlcbs8F4/WDw==
+"@react-native-community/cli-types@13.6.6":
+ version "13.6.6"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-13.6.6.tgz#b45af119d61888fea1074a7c32ddb093e3f119a9"
+ integrity sha512-733iaYzlmvNK7XYbnWlMjdE+2k0hlTBJW071af/xb6Bs+hbJqBP9c03FZuYH2hFFwDDntwj05bkri/P7VgSxug==
dependencies:
joi "^17.2.1"
-"@react-native-community/cli@12.3.0":
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-12.3.0.tgz#c89aacc3973943bf24002255d7d0859b511d88a1"
- integrity sha512-XeQohi2E+S2+MMSz97QcEZ/bWpi8sfKiQg35XuYeJkc32Til2g0b97jRpn0/+fV0BInHoG1CQYWwHA7opMsrHg==
+"@react-native-community/cli@13.6.6":
+ version "13.6.6"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-13.6.6.tgz#b929c8668e88344c03a46a3e635cb382dba16773"
+ integrity sha512-IqclB7VQ84ye8Fcs89HOpOscY4284VZg2pojHNl8H0Lzd4DadXJWQoxC7zWm8v2f8eyeX2kdhxp2ETD5tceIgA==
dependencies:
- "@react-native-community/cli-clean" "12.3.0"
- "@react-native-community/cli-config" "12.3.0"
- "@react-native-community/cli-debugger-ui" "12.3.0"
- "@react-native-community/cli-doctor" "12.3.0"
- "@react-native-community/cli-hermes" "12.3.0"
- "@react-native-community/cli-plugin-metro" "12.3.0"
- "@react-native-community/cli-server-api" "12.3.0"
- "@react-native-community/cli-tools" "12.3.0"
- "@react-native-community/cli-types" "12.3.0"
+ "@react-native-community/cli-clean" "13.6.6"
+ "@react-native-community/cli-config" "13.6.6"
+ "@react-native-community/cli-debugger-ui" "13.6.6"
+ "@react-native-community/cli-doctor" "13.6.6"
+ "@react-native-community/cli-hermes" "13.6.6"
+ "@react-native-community/cli-server-api" "13.6.6"
+ "@react-native-community/cli-tools" "13.6.6"
+ "@react-native-community/cli-types" "13.6.6"
chalk "^4.1.2"
commander "^9.4.1"
deepmerge "^4.3.0"
@@ -5333,49 +5535,38 @@
resolved "https://registry.yarnpkg.com/@react-native-masked-view/masked-view/-/masked-view-0.3.0.tgz#bd29fae18d148a685331910a3c7b766ce87eafcc"
integrity sha512-qLyoObcjzrkpNcoJjXquUePXfL1dXjHtuv+yX0zZ0Q4kG5yvVqd620+tSh7WbRoHkjpXhFBfLwvGhcWB2I0Lpw==
-"@react-native-menu/menu@^0.8.0":
- version "0.8.0"
- resolved "https://registry.yarnpkg.com/@react-native-menu/menu/-/menu-0.8.0.tgz#dbf227c2081e5ffd3d2073ee68ecc84cf8639727"
- integrity sha512-kxiT6ySZsDbBvNWovrKVAfs4AQvAytKIf0f8KQLkVO6eNYMUmONBQPzi6onTTbVujXtZHambo7qr/PcedaR8Tg==
+"@react-native-menu/menu@^1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@react-native-menu/menu/-/menu-1.1.0.tgz#e89c0850f7e5aa4c671c44a9c10edafadb23c35a"
+ integrity sha512-vf9zp0M4nbAFnSKz5NJYKUPM5UzXWmLyGcjtuPaKWYxxloz9C0Pp6XdZRJnoOSlfRShE8NksX3bVY8W4wGnlCQ==
"@react-native-picker/picker@2.6.1":
version "2.6.1"
resolved "https://registry.yarnpkg.com/@react-native-picker/picker/-/picker-2.6.1.tgz#3b20ddd1385fab0487db103dc6519570f8892e6d"
integrity sha512-oJftvmLOj6Y6/bF4kPcK6L83yNBALGmqNYugf94BzP0FQGpHBwimVN2ygqkQ2Sn2ZU3pGUZMs0jV6+Gku2GyYg==
-"@react-native-picker/picker@^1.8.3":
- version "1.16.8"
- resolved "https://registry.yarnpkg.com/@react-native-picker/picker/-/picker-1.16.8.tgz#2126ca54d4a5a3e9ea5e3f39ad1e6643f8e4b3d4"
- integrity sha512-pacdQDX6V6EmjF+HoiIh6u++qx4mTK0WnhgUHRc01B+Qt5eoeUwseBqmqfTSXTx/aHDEd6PiIw7UGvKgFoqgFQ==
+"@react-native/assets-registry@0.74.83", "@react-native/assets-registry@~0.74.83":
+ version "0.74.83"
+ resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.74.83.tgz#c1815dc10f9e1075e0d03b4c8a9619145969522e"
+ integrity sha512-2vkLMVnp+YTZYTNSDIBZojSsjz8sl5PscP3j4GcV6idD8V978SZfwFlk8K0ti0BzRs11mzL0Pj17km597S/eTQ==
-"@react-native/assets-registry@0.73.1", "@react-native/assets-registry@~0.73.1":
- version "0.73.1"
- resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.73.1.tgz#e2a6b73b16c183a270f338dc69c36039b3946e85"
- integrity sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==
-
-"@react-native/babel-plugin-codegen@*":
- version "0.74.0"
- resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.74.0.tgz#01ba90840e23c6d1fbf739f75cce1d0f5be97bfa"
- integrity sha512-xAM/eVSb5LBkKue3bDZgt76bdsGGzKeF/iEzUNbDTwRQrB3Q5GoceGNM/zVlF+z1xGAkr3jhL+ZyITZGSoIlgw==
+"@react-native/babel-plugin-codegen@0.74.1":
+ version "0.74.1"
+ resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.74.1.tgz#b8dfd2aac48241a2bb1db4a4fb6921eaabb2d2f8"
+ integrity sha512-v8T79fEn49cuDVCyUNXsgXZ/ydN8s6ydAruasVCh0VyMzaPVJvuOQhaLW6JL+ysDTN/CnjraTv0oqYnaKoZgvQ==
dependencies:
- "@react-native/codegen" "*"
+ "@react-native/codegen" "0.74.1"
-"@react-native/babel-plugin-codegen@0.73.2":
- version "0.73.2"
- resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.73.2.tgz#447656cde437b71dc3ef0af3f8a5b215653d5d07"
- integrity sha512-PadyFZWVaWXIBP7Q5dgEL7eAd7tnsgsLjoHJB1hIRZZuVUg1Zqe3nULwC7RFAqOtr5Qx7KXChkFFcKQ3WnZzGw==
- dependencies:
- "@react-native/codegen" "0.73.2"
-
-"@react-native/babel-preset@0.73.19":
- version "0.73.19"
- resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.73.19.tgz#a6c0587651804f8f01d6f3b7729f1d4a2d469691"
- integrity sha512-ujon01uMOREZecIltQxPDmJ6xlVqAUFGI/JCSpeVYdxyXBoBH5dBb0ihj7h6LKH1q1jsnO9z4MxfddtypKkIbg==
+"@react-native/babel-preset@0.74.1", "@react-native/babel-preset@0.74.83", "@react-native/babel-preset@^0.73.18", "@react-native/babel-preset@~0.74.83":
+ version "0.74.1"
+ resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.74.1.tgz#96813549cac768b5ff59c9b74f51acf80909e707"
+ integrity sha512-c7xbLs0/fjDmORYs86xz3syTFiJhtRb6JzXpGes04ZNdY7NWdz7aqEfeleyBJbmCfDOr16WZJRy4JcPLvNKjZg==
dependencies:
"@babel/core" "^7.20.0"
"@babel/plugin-proposal-async-generator-functions" "^7.0.0"
"@babel/plugin-proposal-class-properties" "^7.18.0"
"@babel/plugin-proposal-export-default-from" "^7.0.0"
+ "@babel/plugin-proposal-logical-assignment-operators" "^7.18.0"
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.0"
"@babel/plugin-proposal-numeric-separator" "^7.0.0"
"@babel/plugin-proposal-object-rest-spread" "^7.20.0"
@@ -5411,217 +5602,175 @@
"@babel/plugin-transform-typescript" "^7.5.0"
"@babel/plugin-transform-unicode-regex" "^7.0.0"
"@babel/template" "^7.0.0"
- "@react-native/babel-plugin-codegen" "0.73.2"
+ "@react-native/babel-plugin-codegen" "0.74.1"
babel-plugin-transform-flow-enums "^0.0.2"
react-refresh "^0.14.0"
-"@react-native/babel-preset@^0.73.18":
- version "0.73.18"
- resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.73.18.tgz#0ff24ba35102d9ac071de8ab10706ccaee5e3e6f"
- integrity sha512-FzPasmazoX9WZnmwotk6SK9ydiExdqS4Xt5VaukPoY9u8u3AUUODzqjTsWSOxjFD9eRF3Knyg5H8JMDe6pj5wQ==
- dependencies:
- "@babel/core" "^7.20.0"
- "@babel/plugin-proposal-async-generator-functions" "^7.0.0"
- "@babel/plugin-proposal-class-properties" "^7.18.0"
- "@babel/plugin-proposal-export-default-from" "^7.0.0"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.0"
- "@babel/plugin-proposal-numeric-separator" "^7.0.0"
- "@babel/plugin-proposal-object-rest-spread" "^7.20.0"
- "@babel/plugin-proposal-optional-catch-binding" "^7.0.0"
- "@babel/plugin-proposal-optional-chaining" "^7.20.0"
- "@babel/plugin-syntax-dynamic-import" "^7.8.0"
- "@babel/plugin-syntax-export-default-from" "^7.0.0"
- "@babel/plugin-syntax-flow" "^7.18.0"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0"
- "@babel/plugin-syntax-optional-chaining" "^7.0.0"
- "@babel/plugin-transform-arrow-functions" "^7.0.0"
- "@babel/plugin-transform-async-to-generator" "^7.20.0"
- "@babel/plugin-transform-block-scoping" "^7.0.0"
- "@babel/plugin-transform-classes" "^7.0.0"
- "@babel/plugin-transform-computed-properties" "^7.0.0"
- "@babel/plugin-transform-destructuring" "^7.20.0"
- "@babel/plugin-transform-flow-strip-types" "^7.20.0"
- "@babel/plugin-transform-function-name" "^7.0.0"
- "@babel/plugin-transform-literals" "^7.0.0"
- "@babel/plugin-transform-modules-commonjs" "^7.0.0"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.0.0"
- "@babel/plugin-transform-parameters" "^7.0.0"
- "@babel/plugin-transform-private-methods" "^7.22.5"
- "@babel/plugin-transform-private-property-in-object" "^7.22.11"
- "@babel/plugin-transform-react-display-name" "^7.0.0"
- "@babel/plugin-transform-react-jsx" "^7.0.0"
- "@babel/plugin-transform-react-jsx-self" "^7.0.0"
- "@babel/plugin-transform-react-jsx-source" "^7.0.0"
- "@babel/plugin-transform-runtime" "^7.0.0"
- "@babel/plugin-transform-shorthand-properties" "^7.0.0"
- "@babel/plugin-transform-spread" "^7.0.0"
- "@babel/plugin-transform-sticky-regex" "^7.0.0"
- "@babel/plugin-transform-typescript" "^7.5.0"
- "@babel/plugin-transform-unicode-regex" "^7.0.0"
- "@babel/template" "^7.0.0"
- "@react-native/babel-plugin-codegen" "*"
- babel-plugin-transform-flow-enums "^0.0.2"
- react-refresh "^0.14.0"
-
-"@react-native/codegen@*", "@react-native/codegen@0.73.2":
- version "0.73.2"
- resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.73.2.tgz#58af4e4c3098f0e6338e88ec64412c014dd51519"
- integrity sha512-lfy8S7umhE3QLQG5ViC4wg5N1Z+E6RnaeIw8w1voroQsXXGPB72IBozh8dAHR3+ceTxIU0KX3A8OpJI8e1+HpQ==
+"@react-native/codegen@0.74.1":
+ version "0.74.1"
+ resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.74.1.tgz#d20d0a8cd612fd927604fd1bfc8d18f2a231c270"
+ integrity sha512-Wup76wd01GnHvnyW8DGTOQDbbw6W4xBkqfzdTyCSue6cGpCasqNQAf4okuDJKwcSbgpVkNcJdbGuGtz4RTA65Q==
dependencies:
"@babel/parser" "^7.20.0"
- flow-parser "^0.206.0"
glob "^7.1.1"
+ hermes-parser "0.19.1"
invariant "^2.2.4"
jscodeshift "^0.14.0"
mkdirp "^0.5.1"
nullthrows "^1.1.1"
-"@react-native/community-cli-plugin@0.73.12":
- version "0.73.12"
- resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.73.12.tgz#3a72a8cbae839a0382d1a194a7067d4ffa0da04c"
- integrity sha512-xWU06OkC1cX++Duh/cD/Wv+oZ0oSY3yqbtxAqQA2H3Q+MQltNNJM6MqIHt1VOZSabRf/LVlR1JL6U9TXJirkaw==
+"@react-native/codegen@0.74.83":
+ version "0.74.83"
+ resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.74.83.tgz#7c56a82fe7603f0867f0d80ff29db3757b71be55"
+ integrity sha512-GgvgHS3Aa2J8/mp1uC/zU8HuTh8ZT5jz7a4mVMWPw7+rGyv70Ba8uOVBq6UH2Q08o617IATYc+0HfyzAfm4n0w==
dependencies:
- "@react-native-community/cli-server-api" "12.3.0"
- "@react-native-community/cli-tools" "12.3.0"
- "@react-native/dev-middleware" "0.73.7"
- "@react-native/metro-babel-transformer" "0.73.13"
+ "@babel/parser" "^7.20.0"
+ glob "^7.1.1"
+ hermes-parser "0.19.1"
+ invariant "^2.2.4"
+ jscodeshift "^0.14.0"
+ mkdirp "^0.5.1"
+ nullthrows "^1.1.1"
+
+"@react-native/community-cli-plugin@0.74.83":
+ version "0.74.83"
+ resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.74.83.tgz#58808a58a5288895627548338731e72ebb5b507c"
+ integrity sha512-7GAFjFOg1mFSj8bnFNQS4u8u7+QtrEeflUIDVZGEfBZQ3wMNI5ycBzbBGycsZYiq00Xvoc6eKFC7kvIaqeJpUQ==
+ dependencies:
+ "@react-native-community/cli-server-api" "13.6.6"
+ "@react-native-community/cli-tools" "13.6.6"
+ "@react-native/dev-middleware" "0.74.83"
+ "@react-native/metro-babel-transformer" "0.74.83"
chalk "^4.0.0"
execa "^5.1.1"
metro "^0.80.3"
metro-config "^0.80.3"
metro-core "^0.80.3"
node-fetch "^2.2.0"
+ querystring "^0.2.1"
readline "^1.3.0"
-"@react-native/debugger-frontend@0.73.3", "@react-native/debugger-frontend@^0.73.3":
- version "0.73.3"
- resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.73.3.tgz#033757614d2ada994c68a1deae78c1dd2ad33c2b"
- integrity sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==
+"@react-native/debugger-frontend@0.74.83":
+ version "0.74.83"
+ resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.74.83.tgz#48050afa4e086438073b95f041c0cc84fe3f20de"
+ integrity sha512-RGQlVUegBRxAUF9c1ss1ssaHZh6CO+7awgtI9sDeU0PzDZY/40ImoPD5m0o0SI6nXoVzbPtcMGzU+VO590pRfA==
-"@react-native/dev-middleware@0.73.7":
- version "0.73.7"
- resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.73.7.tgz#61d2bf08973d9a537fa3f2a42deeb13530d721ae"
- integrity sha512-BZXpn+qKp/dNdr4+TkZxXDttfx8YobDh8MFHsMk9usouLm22pKgFIPkGBV0X8Do4LBkFNPGtrnsKkWk/yuUXKg==
+"@react-native/dev-middleware@0.74.83", "@react-native/dev-middleware@~0.74.75":
+ version "0.74.83"
+ resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.74.83.tgz#9d09cfdb763e8ef81c003b0f99ae4ed1a3539639"
+ integrity sha512-UH8iriqnf7N4Hpi20D7M2FdvSANwTVStwFCSD7VMU9agJX88Yk0D1T6Meh2RMhUu4kY2bv8sTkNRm7LmxvZqgA==
dependencies:
"@isaacs/ttlcache" "^1.4.1"
- "@react-native/debugger-frontend" "0.73.3"
+ "@react-native/debugger-frontend" "0.74.83"
+ "@rnx-kit/chromium-edge-launcher" "^1.0.0"
chrome-launcher "^0.15.2"
- chromium-edge-launcher "^1.0.0"
connect "^3.6.5"
debug "^2.2.0"
node-fetch "^2.2.0"
+ nullthrows "^1.1.1"
open "^7.0.3"
+ selfsigned "^2.4.1"
serve-static "^1.13.1"
temp-dir "^2.0.0"
+ ws "^6.2.2"
-"@react-native/dev-middleware@^0.73.6":
- version "0.73.6"
- resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.73.6.tgz#19ee210fddc3abb8eeb3da5f98711719ad032323"
- integrity sha512-9SD7gIso+hO1Jy1Y/Glbd+JWQwyH7Xjnwebtkxdm5TMB51LQPjaGtMcwEigbIZyAtvoaDGmhWmudwbKpDlS+gA==
- dependencies:
- "@isaacs/ttlcache" "^1.4.1"
- "@react-native/debugger-frontend" "^0.73.3"
- chrome-launcher "^0.15.2"
- chromium-edge-launcher "^1.0.0"
- connect "^3.6.5"
- debug "^2.2.0"
- node-fetch "^2.2.0"
- open "^7.0.3"
- serve-static "^1.13.1"
- temp-dir "^2.0.0"
+"@react-native/gradle-plugin@0.74.83":
+ version "0.74.83"
+ resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.74.83.tgz#4ac60a6d6295d5b920173cbf184ee32e53690810"
+ integrity sha512-Pw2BWVyOHoBuJVKxGVYF6/GSZRf6+v1Ygc+ULGz5t20N8qzRWPa2fRZWqoxsN7TkNLPsECYY8gooOl7okOcPAQ==
-"@react-native/gradle-plugin@0.73.4":
- version "0.73.4"
- resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.73.4.tgz#aa55784a8c2b471aa89934db38c090d331baf23b"
- integrity sha512-PMDnbsZa+tD55Ug+W8CfqXiGoGneSSyrBZCMb5JfiB3AFST3Uj5e6lw8SgI/B6SKZF7lG0BhZ6YHZsRZ5MlXmg==
+"@react-native/js-polyfills@0.74.83":
+ version "0.74.83"
+ resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.74.83.tgz#0e189ce3ab0efecd00223f3bfc53663ce08ba013"
+ integrity sha512-/t74n8r6wFhw4JEoOj3bN71N1NDLqaawB75uKAsSjeCwIR9AfCxlzZG0etsXtOexkY9KMeZIQ7YwRPqUdNXuqw==
-"@react-native/js-polyfills@0.73.1":
- version "0.73.1"
- resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.73.1.tgz#730b0a7aaab947ae6f8e5aa9d995e788977191ed"
- integrity sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==
-
-"@react-native/metro-babel-transformer@0.73.13":
- version "0.73.13"
- resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.73.13.tgz#81cb6dd8d5140c57f5595183fd6857feb8b7f5d7"
- integrity sha512-k9AQifogQfgUXPlqQSoMtX2KUhniw4XvJl+nZ4hphCH7qiMDAwuP8OmkJbz5E/N+Ro9OFuLE7ax4GlwxaTsAWg==
+"@react-native/metro-babel-transformer@0.74.83":
+ version "0.74.83"
+ resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.74.83.tgz#ba87c3cf041f4c0d2b991231af1a6b4a216e9b5d"
+ integrity sha512-hGdx5N8diu8y+GW/ED39vTZa9Jx1di2ZZ0aapbhH4egN1agIAusj5jXTccfNBwwWF93aJ5oVbRzfteZgjbutKg==
dependencies:
"@babel/core" "^7.20.0"
- "@react-native/babel-preset" "0.73.19"
- hermes-parser "0.15.0"
+ "@react-native/babel-preset" "0.74.83"
+ hermes-parser "0.19.1"
nullthrows "^1.1.1"
-"@react-native/normalize-color@^2.0.0", "@react-native/normalize-color@^2.1.0":
+"@react-native/normalize-color@^2.0.0":
version "2.1.0"
resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-2.1.0.tgz#939b87a9849e81687d3640c5efa2a486ac266f91"
integrity sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==
-"@react-native/normalize-colors@0.73.2", "@react-native/normalize-colors@^0.73.0":
+"@react-native/normalize-colors@0.74.83", "@react-native/normalize-colors@^0.74.1", "@react-native/normalize-colors@~0.74.83":
+ version "0.74.83"
+ resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.74.83.tgz#86ef925bacf219d74df115bcfb615f62d8142e85"
+ integrity sha512-jhCY95gRDE44qYawWVvhTjTplW1g+JtKTKM3f8xYT1dJtJ8QWv+gqEtKcfmOHfDkSDaMKG0AGBaDTSK8GXLH8Q==
+
+"@react-native/normalize-colors@^0.73.0":
version "0.73.2"
resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.73.2.tgz#cc8e48fbae2bbfff53e12f209369e8d2e4cf34ec"
integrity sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==
-"@react-native/typescript-config@^0.74.0":
- version "0.74.0"
- resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.74.0.tgz#cb2cb58e4e424593c4ff5859e50d24dd54b14a63"
- integrity sha512-Nt7AkbuLXIfoWmUrlTp06UTUj6LrMhwJhf/ReEHVpiaVJRjuqfjmwelvW/6dGSJjPFtYvziC+iaLLeyv2oBV7w==
+"@react-native/typescript-config@^0.74.1":
+ version "0.74.83"
+ resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.74.83.tgz#7a25567f565cf582419df7d2c038c8d2bd321b33"
+ integrity sha512-UTcZZYkSD+vv2O67bL/wu0GCGJP3BCbIxXd9ZewNkJmiWl5BbfoNl23+EjmDwM2V66gu24VB/RsSMn0TdmFs8Q==
-"@react-native/virtualized-lists@0.73.4":
- version "0.73.4"
- resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.73.4.tgz#640e594775806f63685435b5d9c3d05c378ccd8c"
- integrity sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==
+"@react-native/virtualized-lists@0.74.83":
+ version "0.74.83"
+ resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.74.83.tgz#5595d6aefd9679d1295c56a1d1653b1fb261bd62"
+ integrity sha512-rmaLeE34rj7py4FxTod7iMTC7BAsm+HrGA8WxYmEJeyTV7WSaxAkosKoYBz8038mOiwnG9VwA/7FrB6bEQvn1A==
dependencies:
invariant "^2.2.4"
nullthrows "^1.1.1"
-"@react-navigation/bottom-tabs@^6.5.7":
- version "6.5.8"
- resolved "https://registry.yarnpkg.com/@react-navigation/bottom-tabs/-/bottom-tabs-6.5.8.tgz#9536c6e45154abc183c363d07c94991e10b14856"
- integrity sha512-0aa/jXea+LyBgR5NoRNWGKw0aFhjHwCkusigMRXIrCA4kINauDcAO0w0iFbZeKfaTCVAix5kK5UxDJJ2aJpevg==
+"@react-navigation/bottom-tabs@^6.5.20":
+ version "6.5.20"
+ resolved "https://registry.yarnpkg.com/@react-navigation/bottom-tabs/-/bottom-tabs-6.5.20.tgz#5335e75b02c527ef0569bd97d4f9185d65616e49"
+ integrity sha512-ow6Z06iS4VqBO8d7FP+HsGjJLWt2xTWIvuWjpoCvsM/uQXzCRDIjBv9HaKcXbF0yTW7IMir0oDAbU5PFzEDdgA==
dependencies:
- "@react-navigation/elements" "^1.3.18"
+ "@react-navigation/elements" "^1.3.30"
color "^4.2.3"
warn-once "^0.1.0"
-"@react-navigation/core@^6.4.9":
- version "6.4.9"
- resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-6.4.9.tgz#aa09ce534f5393427cb993cf242abdbd848fb2c7"
- integrity sha512-G9GH7bP9x0qqupxZnkSftnkn4JoXancElTvFc8FVGfEvxnxP+gBo3wqcknyBi7M5Vad4qecsYjCOa9wqsftv9g==
+"@react-navigation/core@^6.4.16":
+ version "6.4.16"
+ resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-6.4.16.tgz#f9369a134805174536b9aa0f0f483b930511caf9"
+ integrity sha512-UDTJBsHxnzgFETR3ZxhctP+RWr4SkyeZpbhpkQoIGOuwSCkt1SE0qjU48/u6r6w6XlX8OqVudn1Ab0QFXTHxuQ==
dependencies:
"@react-navigation/routers" "^6.1.9"
escape-string-regexp "^4.0.0"
nanoid "^3.1.23"
query-string "^7.1.3"
react-is "^16.13.0"
- use-latest-callback "^0.1.5"
+ use-latest-callback "^0.1.9"
-"@react-navigation/drawer@^6.6.2":
- version "6.6.3"
- resolved "https://registry.yarnpkg.com/@react-navigation/drawer/-/drawer-6.6.3.tgz#ad48b3e0a2d2771e7fc8bc46a8b269ef2ae11e54"
- integrity sha512-oQzHqH6svtSIun6+rikQtku6ye2CyyxT4xf3RQLVsBvK7+g4tDdKKLcjgoJmuT1zBZC3SSu3wNeqp8cg4cr2PQ==
+"@react-navigation/drawer@^6.6.15":
+ version "6.6.15"
+ resolved "https://registry.yarnpkg.com/@react-navigation/drawer/-/drawer-6.6.15.tgz#fcedba68f735103dbc035911f5959ce926081d62"
+ integrity sha512-GLkFQNxjtmxB/qXSHmu1DfoB89jCzW64tmX68iPndth+9U+0IP27GcCCaMZxQfwj+nI8Kn2zlTlXAZDIIHE+DQ==
dependencies:
- "@react-navigation/elements" "^1.3.18"
+ "@react-navigation/elements" "^1.3.30"
color "^4.2.3"
warn-once "^0.1.0"
-"@react-navigation/elements@^1.3.18":
- version "1.3.18"
- resolved "https://registry.yarnpkg.com/@react-navigation/elements/-/elements-1.3.18.tgz#d8364b40276f3efb9c229c39da3b8b465f18f0a2"
- integrity sha512-/0hwnJkrr415yP0Hf4PjUKgGyfshrvNUKFXN85Mrt1gY49hy9IwxZgrrxlh0THXkPeq8q4VWw44eHDfAcQf20Q==
+"@react-navigation/elements@^1.3.30":
+ version "1.3.30"
+ resolved "https://registry.yarnpkg.com/@react-navigation/elements/-/elements-1.3.30.tgz#a81371f599af1070b12014f05d6c09b1a611fd9a"
+ integrity sha512-plhc8UvCZs0UkV+sI+3bisIyn78wz9O/BiWZXpounu72k/R/Sj5PuZYFJ1fi6psvriUveMCGh4LeZckAZu2qiQ==
-"@react-navigation/native-stack@^6.9.12":
- version "6.9.13"
- resolved "https://registry.yarnpkg.com/@react-navigation/native-stack/-/native-stack-6.9.13.tgz#f308c398ee18fcd45de8ec7c04fe0641735feb31"
- integrity sha512-ejlepMrvFneewL+XlXHHhn+6y3lwvavM4/R7XwBV0XJxCymujexK+7Vkg7UcvJ1lx4CRhOcyBSNfGmdNIHREyQ==
+"@react-navigation/native-stack@^6.9.26":
+ version "6.9.26"
+ resolved "https://registry.yarnpkg.com/@react-navigation/native-stack/-/native-stack-6.9.26.tgz#90facf7783c9927f094bc9f01c613af75b6c241e"
+ integrity sha512-++dueQ+FDj2XkZ902DVrK79ub1vp19nSdAZWxKRgd6+Bc0Niiesua6rMCqymYOVaYh+dagwkA9r00bpt/U5WLw==
dependencies:
- "@react-navigation/elements" "^1.3.18"
+ "@react-navigation/elements" "^1.3.30"
warn-once "^0.1.0"
-"@react-navigation/native@^6.1.6":
- version "6.1.7"
- resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-6.1.7.tgz#968ef85b76d35f63111890668836fe2f125bbf90"
- integrity sha512-W6E3+AtTombMucCRo6q7vPmluq8hSjS+IxfazJ/SokOe7ChJX7eLvvralIsJkjFj3iWV1KgOSnHxa6hdiFasBw==
+"@react-navigation/native@^6.1.17":
+ version "6.1.17"
+ resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-6.1.17.tgz#439f15a99809d26ea4682d2a3766081cf2ca31cf"
+ integrity sha512-mer3OvfwWOHoUSMJyLa4vnBH3zpFmCwuzrBPlw7feXklurr/ZDiLjLxUScOot6jLRMz/67GyilEYMmP99LL0RQ==
dependencies:
- "@react-navigation/core" "^6.4.9"
+ "@react-navigation/core" "^6.4.16"
escape-string-regexp "^4.0.0"
fast-deep-equal "^3.1.3"
nanoid "^3.1.23"
@@ -5664,6 +5813,18 @@
dependencies:
type-fest "^2.19.0"
+"@rnx-kit/chromium-edge-launcher@^1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@rnx-kit/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz#c0df8ea00a902c7a417cd9655aab06de398b939c"
+ integrity sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg==
+ dependencies:
+ "@types/node" "^18.0.0"
+ escape-string-regexp "^4.0.0"
+ is-wsl "^2.2.0"
+ lighthouse-logger "^1.0.0"
+ mkdirp "^1.0.4"
+ rimraf "^3.0.2"
+
"@rollup/plugin-babel@^5.2.0":
version "5.3.1"
resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz#04bc0608f4aa4b2e4b1aebf284344d0f68fda283"
@@ -8010,11 +8171,25 @@
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca"
integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==
+"@types/node-forge@^1.3.0":
+ version "1.3.11"
+ resolved "https://registry.yarnpkg.com/@types/node-forge/-/node-forge-1.3.11.tgz#0972ea538ddb0f4d9c2fa0ec5db5724773a604da"
+ integrity sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==
+ dependencies:
+ "@types/node" "*"
+
"@types/node@*":
version "20.5.1"
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.5.1.tgz#178d58ee7e4834152b0e8b4d30cbfab578b9bb30"
integrity sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==
+"@types/node@^18.0.0":
+ version "18.19.33"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.33.tgz#98cd286a1b8a5e11aa06623210240bcc28e95c48"
+ integrity sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==
+ dependencies:
+ undici-types "~5.26.4"
+
"@types/node@^18.16.2":
version "18.17.6"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.17.6.tgz#0296e9a30b22d2a8fcaa48d3c45afe51474ca55b"
@@ -9232,10 +9407,10 @@ babel-plugin-react-native-web@^0.18.12, babel-plugin-react-native-web@~0.18.10:
resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.18.12.tgz#3e9764484492ea612a16b40135b07c2d05b7969d"
integrity sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==
-babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0:
- version "7.0.0-beta.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf"
- integrity sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==
+babel-plugin-react-native-web@~0.19.10:
+ version "0.19.11"
+ resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.11.tgz#32316f51de0053bba6815f6522bf7b17c483bf17"
+ integrity sha512-0sHf8GgDhsRZxGwlwHHdfL3U8wImFaLw4haEa60U9M3EiO3bg6u3BJ+1vXhwgrevqSq76rMb5j1HJs+dNvMj5g==
babel-plugin-transform-flow-enums@^0.0.2:
version "0.0.2"
@@ -9287,53 +9462,20 @@ babel-preset-expo@^10.0.0:
babel-plugin-react-native-web "~0.18.10"
react-refresh "0.14.0"
-babel-preset-expo@~10.0.2:
- version "10.0.2"
- resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-10.0.2.tgz#5aae992b8c85dce6cf98334c9991d3052c567950"
- integrity sha512-hg06qdSTK7MjKmFXSiq6cFoIbI3n3uT8a3NI2EZoISWhu+tedCj4DQduwi+3adFuRuYvAwECI0IYn/5iGh5zWQ==
+babel-preset-expo@~11.0.6:
+ version "11.0.6"
+ resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-11.0.6.tgz#b1ea2bd9f13338a9f7ca8d7089b5d6d6c7c03f79"
+ integrity sha512-jRi9I5/jT+dnIiNJDjDg+I/pV+AlxrIW/DNbdqYoRWPZA/LHDqD6IJnJXLxbuTcQ+llp+0LWcU7f/kC/PgGpkw==
dependencies:
"@babel/plugin-proposal-decorators" "^7.12.9"
"@babel/plugin-transform-export-namespace-from" "^7.22.11"
"@babel/plugin-transform-object-rest-spread" "^7.12.13"
"@babel/plugin-transform-parameters" "^7.22.15"
- "@babel/preset-env" "^7.20.0"
"@babel/preset-react" "^7.22.15"
- "@react-native/babel-preset" "^0.73.18"
- babel-plugin-react-native-web "~0.18.10"
- react-refresh "0.14.0"
-
-babel-preset-fbjs@^3.4.0:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz#38a14e5a7a3b285a3f3a86552d650dca5cf6111c"
- integrity sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==
- 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/preset-typescript" "^7.23.0"
+ "@react-native/babel-preset" "~0.74.83"
+ babel-plugin-react-native-web "~0.19.10"
+ react-refresh "^0.14.2"
babel-preset-jest@^27.5.1:
version "27.5.1"
@@ -9469,11 +9611,6 @@ bluebird@^3.5.5:
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
-blueimp-md5@^2.10.0:
- version "2.19.0"
- resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.19.0.tgz#b53feea5498dcb53dc6ec4b823adb84b729c4af0"
- integrity sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==
-
bn.js@^4.0.0, bn.js@^4.11.8, bn.js@^4.11.9:
version "4.12.0"
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
@@ -9674,29 +9811,23 @@ bytes@3.1.2, bytes@^3.1.2:
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5"
integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==
-cacache@^15.3.0:
- version "15.3.0"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb"
- integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==
+cacache@^18.0.2:
+ version "18.0.3"
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-18.0.3.tgz#864e2c18414e1e141ae8763f31e46c2cb96d1b21"
+ integrity sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==
dependencies:
- "@npmcli/fs" "^1.0.0"
- "@npmcli/move-file" "^1.0.1"
- chownr "^2.0.0"
- fs-minipass "^2.0.0"
- glob "^7.1.4"
- infer-owner "^1.0.4"
- lru-cache "^6.0.0"
- minipass "^3.1.1"
- 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.2"
- mkdirp "^1.0.3"
+ minipass-pipeline "^1.2.4"
p-map "^4.0.0"
- promise-inflight "^1.0.1"
- rimraf "^3.0.2"
- ssri "^8.0.1"
- tar "^6.0.2"
- unique-filename "^1.1.1"
+ ssri "^10.0.0"
+ tar "^6.1.11"
+ unique-filename "^3.0.0"
call-bind@^1.0.0, call-bind@^1.0.2:
version "1.0.2"
@@ -9919,18 +10050,6 @@ chrome-trace-event@^1.0.2:
resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac"
integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==
-chromium-edge-launcher@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz#0443083074715a13c669530b35df7bfea33b1509"
- integrity sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==
- 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"
-
ci-info@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
@@ -10208,13 +10327,6 @@ commondir@^1.0.1:
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
-compare-urls@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/compare-urls/-/compare-urls-2.0.0.tgz#9b378c4abd43980a8700fffec9afb85de4df9075"
- integrity sha512-eCJcWn2OYFEIqbm70ta7LQowJOOZZqq1a2YbbFCFI1uwSvj+TWMwXVn7vPR1ceFNcAIt5RSTDbwdlX82gYLTkA==
- dependencies:
- normalize-url "^2.0.1"
-
component-type@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/component-type/-/component-type-1.2.1.tgz#8a47901700238e4fc32269771230226f24b415a9"
@@ -10752,7 +10864,7 @@ decimal.js@^10.2.1, decimal.js@^10.4.2:
resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23"
integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==
-decode-uri-component@^0.2.0, decode-uri-component@^0.2.2:
+decode-uri-component@^0.2.2:
version "0.2.2"
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
@@ -11115,10 +11227,12 @@ dotenv-expand@^5.1.0:
resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0"
integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==
-dotenv-expand@~10.0.0:
- version "10.0.0"
- resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-10.0.0.tgz#12605d00fb0af6d0a592e6558585784032e4ef37"
- integrity sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==
+dotenv-expand@~11.0.6:
+ version "11.0.6"
+ resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.6.tgz#f2c840fd924d7c77a94eff98f153331d876882d3"
+ integrity sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==
+ dependencies:
+ dotenv "^16.4.4"
dotenv@^10.0.0:
version "10.0.0"
@@ -11130,10 +11244,10 @@ dotenv@^16.0.3, dotenv@^16.3.1:
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.1.tgz#369034de7d7e5b120972693352a3bf112172cc3e"
integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==
-dotenv@~16.0.3:
- version "16.0.3"
- resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.3.tgz#115aec42bac5053db3c456db30cc243a5a836a07"
- integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==
+dotenv@^16.4.4, dotenv@~16.4.5:
+ version "16.4.5"
+ resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f"
+ integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==
dset@^3.1.1, dset@^3.1.2:
version "3.1.2"
@@ -11979,47 +12093,40 @@ expect@^29.7.0:
jest-message-util "^29.7.0"
jest-util "^29.7.0"
-expo-application@^5.8.3:
- version "5.8.3"
- resolved "https://registry.yarnpkg.com/expo-application/-/expo-application-5.8.3.tgz#43991bd81d05c987b07b2f430c036cda1572bc62"
- integrity sha512-IISxzpPX+Xe4ynnwX8yY52T6dm1g9sME1GCj4lvUlrdc5xeTPM6U35x7Wj82V7lLWBaVGe+/Tg9EeKqfylCEwA==
+expo-application@^5.9.1, expo-application@~5.9.0:
+ version "5.9.1"
+ resolved "https://registry.yarnpkg.com/expo-application/-/expo-application-5.9.1.tgz#a12e0cf2741b6f084cc49cd0121ad0a70c770459"
+ integrity sha512-uAfLBNZNahnDZLRU41ZFmNSKtetHUT9Ua557/q189ua0AWV7pQjoVAx49E4953feuvqc9swtU3ScZ/hN1XO/FQ==
-expo-application@~5.8.0:
- version "5.8.0"
- resolved "https://registry.yarnpkg.com/expo-application/-/expo-application-5.8.0.tgz#b82cb98a08f91d61f047f6578e883e0deb9661f2"
- integrity sha512-nNQ/ayC4P1ue0ZQSmUlG/K2ZHTPwHyYGsb0QtEmCFUCitsjPKIx4coNvAreZMuELvY7pD1zKr+pdtN/ULnljBA==
-
-expo-asset@~9.0.2:
- version "9.0.2"
- resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-9.0.2.tgz#e8a6b6da356d5fc97955599d2fa49af78c7f0bfd"
- integrity sha512-PzYKME1MgUOoUvwtdzhAyXkjXOXGiSYqGKG/MsXwWr0Ef5wlBaBm2DCO9V6KYbng5tBPFu6hTjoRNil1tBOSow==
+expo-asset@~10.0.6:
+ version "10.0.6"
+ resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-10.0.6.tgz#0894c4e824ce90e130852e6eecaba386e9f2e5aa"
+ integrity sha512-waP73/ccn/HZNNcGM4/s3X3icKjSSbEQ9mwc6tX34oYNg+XE5WdwOuZ9wgVVFrU7wZMitq22lQXd2/O0db8bxg==
dependencies:
- "@react-native/assets-registry" "~0.73.1"
- blueimp-md5 "^2.10.0"
- expo-constants "~15.4.0"
- expo-file-system "~16.0.0"
+ "@react-native/assets-registry" "~0.74.83"
+ expo-constants "~16.0.0"
invariant "^2.2.4"
md5-file "^3.2.3"
-expo-build-properties@^0.11.1:
- version "0.11.1"
- resolved "https://registry.yarnpkg.com/expo-build-properties/-/expo-build-properties-0.11.1.tgz#dc9ab9fb1ac989b97da500b3ec75139c961d8b26"
- integrity sha512-m4j4aEjFaDuBE6KWYMxDhWgLzzSmpE7uHKAwtvXyNmRK+6JKF0gjiXi0sXgI5ngNppDQpsyPFMvqG7uQpRuCuw==
+expo-build-properties@^0.12.1:
+ version "0.12.1"
+ resolved "https://registry.yarnpkg.com/expo-build-properties/-/expo-build-properties-0.12.1.tgz#8d11759b8f382e4654e2482ddcec4f9ad4530aad"
+ integrity sha512-gn8sngNmOHkbJ5Kt3mKcKg+Wl6+d0m70gg9OllRIVeDkvZqCObKfnSM4tAQWiJhm62sHnL8udfYnuArnKhQd/g==
dependencies:
ajv "^8.11.0"
- semver "^7.5.3"
+ semver "^7.6.0"
-expo-camera@~14.0.4:
- version "14.0.6"
- resolved "https://registry.yarnpkg.com/expo-camera/-/expo-camera-14.0.6.tgz#4d02ae2c7d734b2256111fa17a3b2c46fa712c78"
- integrity sha512-PBkbAR0g/rFO9A01CmOoPHknXBBfJ1rXFm75XQY6kmMNH9BHJ89yAtlOaYJy/fw5xVxJkyVG+6uVGgbBeu7dyw==
+expo-camera@~15.0.9:
+ version "15.0.9"
+ resolved "https://registry.yarnpkg.com/expo-camera/-/expo-camera-15.0.9.tgz#a6a175638bdd9914aca061c6090001452329fcea"
+ integrity sha512-xH+y8gA/3rNLostIw+z4kDGA+AYzsI9+QYb7G1uCFyxr3SxUGhapz+oMBFDU++vmyo9G7Ax0n52nghqIrNBJxQ==
dependencies:
invariant "^2.2.4"
-expo-clipboard@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/expo-clipboard/-/expo-clipboard-5.0.1.tgz#a62a021a9444740d180d60f915cca8242a323716"
- integrity sha512-JH853QJPr5W3h87If3aDTnMK+ESSIrwzU2TdfZrqZttVDY2pMIf/w37mVHHNYodXM4ATHXadtOkjKbAa0DWwUg==
+expo-clipboard@^6.0.3:
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/expo-clipboard/-/expo-clipboard-6.0.3.tgz#dfea74d4a004dce59ecefd063d6fb9f1c356a03f"
+ integrity sha512-RIKDsuHkYfaspifbFpVC8sBVFKR05L7Pj7mU2/XkbrW9m01OBNvdpGraXEMsTFCx97xMGsZpEw9pPquL4j4xVg==
expo-constants@^13.0.2:
version "13.2.4"
@@ -12029,61 +12136,47 @@ expo-constants@^13.0.2:
"@expo/config" "~7.0.0"
uuid "^3.3.2"
-expo-constants@~15.4.0:
- version "15.4.1"
- resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-15.4.1.tgz#f76f347cf687b6630e1e3b9a385a4e42771671a4"
- integrity sha512-aLAN7HOMRFQ5dVduDLPxSlAhsA5OubDxFeM1uo3CHQoaXZfxyJv6g64zjLsOBzVSEIRmNQZl7+1mc5rujZDU2w==
+expo-constants@~16.0.0, expo-constants@~16.0.1:
+ version "16.0.1"
+ resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-16.0.1.tgz#1285e29c85513c6e88e118289e2baab72596d3f7"
+ integrity sha512-s6aTHtglp926EsugWtxN7KnpSsE9FCEjb7CgEjQQ78Gpu4btj4wB+IXot2tlqNwqv+x7xFe5veoPGfJDGF/kVg==
dependencies:
- "@expo/config" "~8.5.0"
+ "@expo/config" "~9.0.0-beta.0"
-expo-constants@~15.4.3:
- version "15.4.3"
- resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-15.4.3.tgz#e6080323e3651e98c1433ba0d06d1352cfbd2203"
- integrity sha512-iOLIB0ckJFSzsH68FoYp9f8FB0CjKViuLnRID+OhiF3IGL1ja9IZdfvtZgkGJ27Az79yThX/9ktlw77+5ejGbA==
+expo-dev-client@^4.0.14:
+ version "4.0.14"
+ resolved "https://registry.yarnpkg.com/expo-dev-client/-/expo-dev-client-4.0.14.tgz#73d2f8b6f173d01f07af3e01cf8d5acdc6e05c01"
+ integrity sha512-s5/FZZdgvoxBGA35QgNet61Dc1jh+8u375uaYkH9pUvfKFXURd9PDDAWvtAnOo+QYg9WwgiHPo7dKeCdN6pOPA==
dependencies:
- "@expo/config" "~8.5.0"
+ expo-dev-launcher "4.0.15"
+ expo-dev-menu "5.0.14"
+ expo-dev-menu-interface "1.8.3"
+ expo-manifests "~0.14.0"
+ expo-updates-interface "~0.16.2"
-expo-constants@~15.4.5:
- version "15.4.5"
- resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-15.4.5.tgz#81756a4c4e1c020f840a419cd86a124a6d1fb35b"
- integrity sha512-1pVVjwk733hbbIjtQcvUFCme540v4gFemdNlaxM2UXKbfRCOh2hzgKN5joHMOysoXQe736TTUrRj7UaZI5Yyhg==
- dependencies:
- "@expo/config" "~8.5.0"
-
-expo-dev-client@~3.3.8:
- version "3.3.11"
- resolved "https://registry.yarnpkg.com/expo-dev-client/-/expo-dev-client-3.3.11.tgz#f2541ccbcfc2ba32bcea47293bc9beae4e10db60"
- integrity sha512-9nhhbfbskfmjp/tlRS5KvDpCoW0BREJBxpu2GyjKu7nDB33W8fJLL0wXgNhP+QEb93r37o3uezKmUm2kibOvTw==
- dependencies:
- expo-dev-launcher "3.6.9"
- expo-dev-menu "4.5.8"
- expo-dev-menu-interface "1.7.2"
- expo-manifests "~0.13.0"
- expo-updates-interface "~0.15.1"
-
-expo-dev-launcher@3.6.9:
- version "3.6.9"
- resolved "https://registry.yarnpkg.com/expo-dev-launcher/-/expo-dev-launcher-3.6.9.tgz#5e104e0533a46f3614c1691673da3351092e8d1d"
- integrity sha512-MBDMAqjCMVYt1Zv47u2dJTp4d8gCZMfM4GWAFhfQy3G6XzkUlFtewaQefAqy93FcYOv6BYdC9yZOLOb06tqTfA==
+expo-dev-launcher@4.0.15:
+ version "4.0.15"
+ resolved "https://registry.yarnpkg.com/expo-dev-launcher/-/expo-dev-launcher-4.0.15.tgz#cd36f10b7e534e5caa176a5718381ccfa73b0b8c"
+ integrity sha512-avl4NTwFwalZjojFAXvINPgxAlcAxfdwy9PSsAq5KAkl9Vv+Vr8O2gI3nfrPwtqAA0iOIES/EKN0YFCiQuuvvg==
dependencies:
ajv "8.11.0"
- expo-dev-menu "4.5.8"
- expo-manifests "~0.13.0"
+ expo-dev-menu "5.0.14"
+ expo-manifests "~0.14.0"
resolve-from "^5.0.0"
- semver "^7.5.3"
+ semver "^7.6.0"
-expo-dev-menu-interface@1.7.2:
- version "1.7.2"
- resolved "https://registry.yarnpkg.com/expo-dev-menu-interface/-/expo-dev-menu-interface-1.7.2.tgz#772fb97c6b0a44c27965cdfcfa078f316b0930ca"
- integrity sha512-V/geSB9rW0IPTR+d7E5CcvkV0uVUCE7SMHZqE/J0/dH06Wo8AahB16fimXeh5/hTL2Qztq8CQ41xpFUBoA9TEw==
+expo-dev-menu-interface@1.8.3:
+ version "1.8.3"
+ resolved "https://registry.yarnpkg.com/expo-dev-menu-interface/-/expo-dev-menu-interface-1.8.3.tgz#8c1262e29e0124fc5932a129c95b36de56656b20"
+ integrity sha512-QM0LRozeFT5Ek0N7XpV93M+HMdEKRLEOXn0aW5M3uoUlnqC1+PLtF3HMy3k3hMKTTE/kJ1y1Z7akH07T0lunCQ==
-expo-dev-menu@4.5.8:
- version "4.5.8"
- resolved "https://registry.yarnpkg.com/expo-dev-menu/-/expo-dev-menu-4.5.8.tgz#21940385124c7d2745066bbcb42185ebd35f66bc"
- integrity sha512-GXfI0CmYlqjOqyFjtplXO9PSoJQoy89+50lbUSNZykDsGyvzCPzl4txdQcdHHSglKYr7lWV7aeMVeehuSct60w==
+expo-dev-menu@5.0.14:
+ version "5.0.14"
+ resolved "https://registry.yarnpkg.com/expo-dev-menu/-/expo-dev-menu-5.0.14.tgz#7d54fc51b42217588cb9c5f2049bcf857d6e0b3d"
+ integrity sha512-zPXBMCyjptn4Aw7D2Z8FEqndED33g1ryChN0nyTA1zHzckDNwnGuLdTWTsNFrqmFqyqjRJgG5xFVJmnsDO8WyQ==
dependencies:
- expo-dev-menu-interface "1.7.2"
- semver "^7.5.3"
+ expo-dev-menu-interface "1.8.3"
+ semver "^7.5.4"
expo-device@~4.1.1:
version "4.1.1"
@@ -12092,148 +12185,142 @@ expo-device@~4.1.1:
dependencies:
ua-parser-js "^0.7.19"
-expo-device@~5.9.3:
- version "5.9.3"
- resolved "https://registry.yarnpkg.com/expo-device/-/expo-device-5.9.3.tgz#0ad61da681424aa682fa03001d0344394c01f8a1"
- integrity sha512-azH5rz8krDZUJb/arqkcA6oZGaX2T5s4aaXIMFsDDzvq8TW0CttZZy2HFp6itmFdiKGdRpFX3/Gj0n6ZmPoJ/w==
+expo-device@~6.0.2:
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/expo-device/-/expo-device-6.0.2.tgz#9bc3eccd16509c2819c225cc2ca8f7c3e3bdd11e"
+ integrity sha512-sCt91CuTmAuMXX4SlFOn4lIos2UIr8vb0jDstDDZXys6kErcj0uynC7bQAMreU5uRUTKMAl4MAMpKt9ufCXPBw==
dependencies:
ua-parser-js "^0.7.33"
-expo-eas-client@~0.11.0:
- version "0.11.0"
- resolved "https://registry.yarnpkg.com/expo-eas-client/-/expo-eas-client-0.11.0.tgz#0f25aa497849cade7ebef55c0631093a87e58b07"
- integrity sha512-99W0MUGe3U4/MY1E9UeJ4uKNI39mN8/sOGA0Le8XC47MTbwbLoVegHR3C5y2fXLwLn7EpfNxAn5nlxYjY3gD2A==
+expo-eas-client@~0.12.0:
+ version "0.12.0"
+ resolved "https://registry.yarnpkg.com/expo-eas-client/-/expo-eas-client-0.12.0.tgz#e8b6f7d33873e6f630f37f7bfc41646ae7b0b2a9"
+ integrity sha512-Jkww9Cwpv0z7DdLYiRX0r4fqBEcI9cKqTn7cHx63S09JaZ2rcwEE4zYHgrXwjahO+tU2VW8zqH+AJl6RhhW4zA==
-expo-file-system@^16.0.9, expo-file-system@~16.0.9:
- version "16.0.9"
- resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-16.0.9.tgz#cbd6c4b228b60a6b6c71fd1b91fe57299fb24da7"
- integrity sha512-3gRPvKVv7/Y7AdD9eHMIdfg5YbUn2zbwKofjsloTI5sEC57SLUFJtbLvUCz9Pk63DaSQ7WIE1JM0EASyvuPbuw==
+expo-file-system@^17.0.1, expo-file-system@~17.0.1:
+ version "17.0.1"
+ resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-17.0.1.tgz#b9f8af8c1c06ec71d96fd7a0d2567fa9e1c88f15"
+ integrity sha512-dYpnZJqTGj6HCYJyXAgpFkQWsiCH3HY1ek2cFZVHFoEc5tLz9gmdEgTF6nFHurvmvfmXqxi7a5CXyVm0aFYJBw==
-expo-file-system@~16.0.0:
- version "16.0.1"
- resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-16.0.1.tgz#326b7c2f6e53e1a0eaafc9769578aafb3f9c9f43"
- integrity sha512-/U6ufN2wRPgg4m2a9sqbL3dThqQsysT022qulEXWnUTmNaqnzYSk9ihjDWqoqjXLi9slQLsyok5t6CNzhM7HPw==
-
-expo-font@~11.10.3:
- version "11.10.3"
- resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-11.10.3.tgz#a3115ebda8e09bd7cb8052619a4bbe606f0c17f4"
- integrity sha512-q1Td2zUvmLbCA9GV4OG4nLPw5gJuNY1VrPycsnemN1m8XWTzzs8nyECQQqrcBhgulCgcKZZJJ6U0kC2iuSoQHQ==
+expo-font@~12.0.5:
+ version "12.0.5"
+ resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-12.0.5.tgz#3451c2bd3f98859b127a6484d3474a292889b93f"
+ integrity sha512-h/VkN4jlHYDJ6T6pPgOYTVoDEfBY0CTKQe4pxnPDGQiE6H+DFdDgk+qWVABGpRMH0+zXoHB+AEi3OoQjXIynFA==
dependencies:
fontfaceobserver "^2.1.0"
-expo-haptics@^12.8.1:
- version "12.8.1"
- resolved "https://registry.yarnpkg.com/expo-haptics/-/expo-haptics-12.8.1.tgz#42b996763be33d661bd33bbc3b3958c3f2734b9d"
- integrity sha512-ntLsHkfle8K8w9MW8pZEw92ZN3sguaGUSSIxv30fPKNeQFu7Cq/h47Qv3tONv2MO3wU48N9FbKnant6XlfptpA==
+expo-haptics@^13.0.1:
+ version "13.0.1"
+ resolved "https://registry.yarnpkg.com/expo-haptics/-/expo-haptics-13.0.1.tgz#35679c7fde4ae1c21ae3bc2d2cb34c266049dc2c"
+ integrity sha512-qG0EOLDE4bROVT3DtUSyV9g3iB3YFu9j3711X7SNNEnBDXc+2/p3wGDPTnJvPW0ao6HG3/McAOrBQA5hVSdWng==
-expo-image-loader@~4.6.0:
- version "4.6.0"
- resolved "https://registry.yarnpkg.com/expo-image-loader/-/expo-image-loader-4.6.0.tgz#ca7d4fdf53125bff2091d3a2c34a3155f10df147"
- integrity sha512-RHQTDak7/KyhWUxikn2yNzXL7i2cs16cMp6gEAgkHOjVhoCJQoOJ0Ljrt4cKQ3IowxgCuOrAgSUzGkqs7omj8Q==
+expo-image-loader@~4.7.0:
+ version "4.7.0"
+ resolved "https://registry.yarnpkg.com/expo-image-loader/-/expo-image-loader-4.7.0.tgz#d403106822de80bda12d644c82b7a3b7983c0f0b"
+ integrity sha512-cx+MxxsAMGl9AiWnQUzrkJMJH4eNOGlu7XkLGnAXSJrRoIiciGaKqzeaD326IyCTV+Z1fXvIliSgNW+DscvD8g==
-expo-image-manipulator@^11.8.0:
- version "11.8.0"
- resolved "https://registry.yarnpkg.com/expo-image-manipulator/-/expo-image-manipulator-11.8.0.tgz#e52351728619e534c949ae4b394af2c7c5d16702"
- integrity sha512-ZWVrHnYmwJq6h7auk+ropsxcNi+LyZcPFKQc8oy+JA0SaJosfShvkCm7RADWAunHmfPCmjHrhwPGEu/rs7WG/A==
+expo-image-manipulator@^12.0.5:
+ version "12.0.5"
+ resolved "https://registry.yarnpkg.com/expo-image-manipulator/-/expo-image-manipulator-12.0.5.tgz#e3dd2810d27025705f73523cd4ba47b0d091a662"
+ integrity sha512-zJ8yINjckYw/yfoSuICt4yJ9xr112+W9e5QVXwK3nCAHr7sv45RQ5sxte0qppf594TPl+UoV6Tjim7WpoKipRQ==
dependencies:
- expo-image-loader "~4.6.0"
+ expo-image-loader "~4.7.0"
-expo-image-picker@~14.7.1:
- version "14.7.1"
- resolved "https://registry.yarnpkg.com/expo-image-picker/-/expo-image-picker-14.7.1.tgz#c51faff3a3fbffc6ae93d7155370beb1a2d2baea"
- integrity sha512-ILQVOJgI3aEzrDmCFGDPtpAepYkn8mot8G7vfQ51BfFdQbzL6N3Wm1fS/ofdWlAZJl/qT2DwaIh5xYmf3SyGZA==
+expo-image-picker@~15.0.5:
+ version "15.0.5"
+ resolved "https://registry.yarnpkg.com/expo-image-picker/-/expo-image-picker-15.0.5.tgz#8a3d4c3ecdb5bcf58f09e024597dd69edf7baa9c"
+ integrity sha512-Qqp16udsadx/YpNcNaWzfbmO0tbMxyX9bS1aFiDVC+Zffh8LY8S4HJJcnWqSC2TeuAl+9SxUwTloJagvPeMBBw==
dependencies:
- expo-image-loader "~4.6.0"
+ expo-image-loader "~4.7.0"
-expo-image@~1.10.6:
- version "1.10.6"
- resolved "https://registry.yarnpkg.com/expo-image/-/expo-image-1.10.6.tgz#b0e54d31d97742505296c076a5f18d094ba9a8cc"
- integrity sha512-vcnAIym1eU8vQgV1re1E7rVQZStJimBa4aPDhjFfzMzbddAF7heJuagyewiUkTzbZUwYzPaZAie6VJPyWx9Ueg==
+expo-image@~1.12.9:
+ version "1.12.9"
+ resolved "https://registry.yarnpkg.com/expo-image/-/expo-image-1.12.9.tgz#b6354ab1dcff65df596399a538e6985c44aacc0b"
+ integrity sha512-WnC3Z3vsOTJLWE9FGB0a0GANmkpfBCqTf9bSLXXl50hEYiRcfwrAYZ/87oswAhggMGbJqOuLKZxt5rtuij1xcQ==
dependencies:
- "@react-native/assets-registry" "~0.73.1"
+ "@react-native/assets-registry" "~0.74.83"
-expo-json-utils@~0.12.0:
- version "0.12.0"
- resolved "https://registry.yarnpkg.com/expo-json-utils/-/expo-json-utils-0.12.0.tgz#15ad797e9518a6a47eae9b95599e6373e641f8f2"
- integrity sha512-xsUsPUZcXZWoT4RY3FhEPYGYvr2iThMNNU5drdmkC/vmkePvqy5kK4aIqlIKzQboXxj7k1dXoNSSLg5mKy8uKg==
+expo-json-utils@~0.13.0:
+ version "0.13.1"
+ resolved "https://registry.yarnpkg.com/expo-json-utils/-/expo-json-utils-0.13.1.tgz#e49b697198e11c573d346f08ab91c467095934a9"
+ integrity sha512-mlfaSArGVb+oJmUcR22jEONlgPp0wj4iNIHfQ2je9Q8WTOqMc0Ws9tUciz3JdJnhffdHqo/k8fpvf0IRmN5HPA==
-expo-keep-awake@~12.8.2:
- version "12.8.2"
- resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-12.8.2.tgz#6cfdf8ad02b5fa130f99d4a1eb98e459d5b4332e"
- integrity sha512-uiQdGbSX24Pt8nGbnmBtrKq6xL/Tm3+DuDRGBk/3ZE/HlizzNosGRIufIMJ/4B4FRw4dw8KU81h2RLuTjbay6g==
+expo-keep-awake@~13.0.2:
+ version "13.0.2"
+ resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-13.0.2.tgz#5ef31311a339671eec9921b934fdd90ab9652b0e"
+ integrity sha512-kKiwkVg/bY0AJ5q1Pxnm/GvpeB6hbNJhcFsoOWDh2NlpibhCLaHL826KHUM+WsnJRbVRxJ+K9vbPRHEMvFpVyw==
-expo-linear-gradient@^12.7.2:
- version "12.7.2"
- resolved "https://registry.yarnpkg.com/expo-linear-gradient/-/expo-linear-gradient-12.7.2.tgz#2ff9593eae8448ac5630be1a36ce6133c4a6f074"
- integrity sha512-Wwb2EF18ywgrlTodcXJ6Yt/UEcKitRMdXPNyP/IokmeKh4emoq9DxZJpZdkXm3HUTLlbRpi6/t32jrFVqXB9AQ==
+expo-linear-gradient@^13.0.2:
+ version "13.0.2"
+ resolved "https://registry.yarnpkg.com/expo-linear-gradient/-/expo-linear-gradient-13.0.2.tgz#21bd7bc7c71ef4f7c089521daa16db729d2aec5f"
+ integrity sha512-EDcILUjRKu4P1rtWcwciN6CSyGtH7Bq4ll3oTRV7h3h8oSzSilH1g6z7kTAMlacPBKvMnkkWOGzW6KtgMKEiTg==
-expo-linking@^6.2.2:
- version "6.2.2"
- resolved "https://registry.yarnpkg.com/expo-linking/-/expo-linking-6.2.2.tgz#b7e148068ae49fd9ad814428c16fdf7a236e8aca"
- integrity sha512-FEe6lP4f7xFT/vjoHRG+tt6EPVtkEGaWNK1smpaUevmNdyCJKqW0PDB8o8sfG6y7fly8ULe8qg3HhKh5J7aqUQ==
+expo-linking@^6.3.1:
+ version "6.3.1"
+ resolved "https://registry.yarnpkg.com/expo-linking/-/expo-linking-6.3.1.tgz#05aef8a42bd310391d0b00644be40d80ece038d9"
+ integrity sha512-xuZCntSBGWCD/95iZ+mTUGTwHdy8Sx+immCqbUBxdvZ2TN61P02kKg7SaLS8A4a/hLrSCwrg5tMMwu5wfKr35g==
dependencies:
- expo-constants "~15.4.3"
+ expo-constants "~16.0.0"
invariant "^2.2.4"
-expo-localization@~14.8.3:
- version "14.8.3"
- resolved "https://registry.yarnpkg.com/expo-localization/-/expo-localization-14.8.3.tgz#c1efa8a314b6bfe38425bbc6bcce9cf9b84a802d"
- integrity sha512-leg1e+7ocUgfNWa7Men/g16waXtdSpBMR9tCdv3CG4wztmFU8C+87VAnnVkvHi4CCUkTLzhP3y0FcE6KIWTwdw==
+expo-localization@~15.0.3:
+ version "15.0.3"
+ resolved "https://registry.yarnpkg.com/expo-localization/-/expo-localization-15.0.3.tgz#772c89b3ab9c925b7eca6911a11ca33980c2b674"
+ integrity sha512-IfcmlKuKRlowR9qIzL0e+nGHBeNoF7l2GQaOJstc7HZiPjNJ4J1R4D53ZNf483dt7JSkTRJBihdTadOtOEjRdg==
dependencies:
rtl-detect "^1.0.2"
-expo-manifests@~0.13.0:
- version "0.13.0"
- resolved "https://registry.yarnpkg.com/expo-manifests/-/expo-manifests-0.13.0.tgz#20f163f84a414c6c50b8079e5fd0685d7c5b8ce2"
- integrity sha512-N3adl3edSga3jdatLXjXiltdSwQkB1rOI5uyGEE5OwR/bpxc/5OUgHdRZjJgY6jJmVY4BCAiw0RXFoVRBbgE0Q==
+expo-manifests@~0.14.0:
+ version "0.14.2"
+ resolved "https://registry.yarnpkg.com/expo-manifests/-/expo-manifests-0.14.2.tgz#431a235f21ca667ea8f8642819fbc414a8473174"
+ integrity sha512-hFrwIGr76/zGVhZ+vcjDZpOePd7uYNB6yCaiJcm7/bcrt2ne7cHyKQ8l+3n26/v1OuXfBfjxNH+PHIpkClszoQ==
dependencies:
- "@expo/config" "~8.5.0"
- expo-json-utils "~0.12.0"
+ "@expo/config" "~9.0.0-beta.0"
+ expo-json-utils "~0.13.0"
-expo-media-library@~15.9.1:
- version "15.9.1"
- resolved "https://registry.yarnpkg.com/expo-media-library/-/expo-media-library-15.9.1.tgz#1eaf5a0c8f51669f6f86d385a8fa411226042216"
- integrity sha512-Y29uKFJ3qWwNejIrjoCppXp3OgIFs/RYHWXkF9xey6evpNrUlHoP1WHG2jYAMSrss6aIRVt3tO7EtYUCZxz50Q==
+expo-media-library@~16.0.3:
+ version "16.0.3"
+ resolved "https://registry.yarnpkg.com/expo-media-library/-/expo-media-library-16.0.3.tgz#789277a827b9c04e59eef84aa11f4edcf5f1cfce"
+ integrity sha512-E++h+ZyVOXhGOKddeg/wjoEFH+JAGazcAsMpjAOT+/F69nrIEl27Fymi9XVAzooazp38dKrDBNeOJuWoXUdUAw==
-expo-modules-autolinking@1.10.3:
- version "1.10.3"
- resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-1.10.3.tgz#19f349884a90f3f27ec9d64e8f2fa6be609558c5"
- integrity sha512-pn4n2Dl4iRh/zUeiChjRIe1C7EqOw1qhccr85viQV7W6l5vgRpY0osE51ij5LKg/kJmGRcJfs12+PwbdTplbKw==
+expo-modules-autolinking@1.11.1:
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-1.11.1.tgz#4a867f727d9dfde07de8dde14b333a3cbf82ce3c"
+ integrity sha512-2dy3lTz76adOl7QUvbreMCrXyzUiF8lygI7iFJLjgIQIVH+43KnFWE5zBumpPbkiaq0f0uaFpN9U0RGQbnKiMw==
dependencies:
- "@expo/config" "~8.5.0"
chalk "^4.1.0"
commander "^7.2.0"
fast-glob "^3.2.5"
find-up "^5.0.0"
fs-extra "^9.1.0"
-expo-modules-core@1.11.13:
- version "1.11.13"
- resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-1.11.13.tgz#a8e63ad844e966dce78dea40b50839af6c3bc518"
- integrity sha512-2H5qrGUvmLzmJNPDOnovH1Pfk5H/S/V0BifBmOQyDc9aUh9LaDwkqnChZGIXv8ZHDW8JRlUW0QqyWxTggkbw1A==
+expo-modules-core@1.12.11:
+ version "1.12.11"
+ resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-1.12.11.tgz#71d7efb2f6a2a4d3b96defad52fc799b9804f829"
+ integrity sha512-CF5G6hZo/6uIUz6tj4dNRlvE5L4lakYukXPqz5ZHQ+6fLk1NQVZbRdpHjMkxO/QSBQcKUzG/ngeytpoJus7poQ==
dependencies:
invariant "^2.2.4"
-expo-navigation-bar@~2.8.1:
- version "2.8.1"
- resolved "https://registry.yarnpkg.com/expo-navigation-bar/-/expo-navigation-bar-2.8.1.tgz#c4152f878d9fb6ca74c90b80e934af76c29b5377"
- integrity sha512-aT5G+7SUsXDVPsRwp8fF940ycka1ABb4g3QKvTZN3YP6kMWvsiYEmRqMIJVy0zUr/i6bxBG1ZergkXimWrFt3w==
+expo-navigation-bar@~3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/expo-navigation-bar/-/expo-navigation-bar-3.0.4.tgz#c122194f720f0fb03430fa8a34c15980fc0a169f"
+ integrity sha512-hlnYnoFX3L1hHZxcnTVwAQW3AM5xf3clWYjqB2UMSIfTxCaE2PU8aHtAztLBQANrQhEvnbiwNcrkzfnWU2WWCQ==
dependencies:
- "@react-native/normalize-color" "^2.0.0"
+ "@react-native/normalize-colors" "~0.74.83"
debug "^4.3.2"
-expo-notifications@~0.27.6:
- version "0.27.6"
- resolved "https://registry.yarnpkg.com/expo-notifications/-/expo-notifications-0.27.6.tgz#ef7c95504034ac8b5fa360e13f5b037c5bf7e80d"
- integrity sha512-F2iu/lzsrvfMyHA5BfnbZfE8fVLV8aQmNLk3NPztZ0g7911QEriZzH7BK/NKOZ5UHhJYI+hhYvcZCq2nFm1NLA==
+expo-notifications@~0.28.3:
+ version "0.28.3"
+ resolved "https://registry.yarnpkg.com/expo-notifications/-/expo-notifications-0.28.3.tgz#9076c2bd69c3de3338a2e2161c8bd5f18cb440cb"
+ integrity sha512-Xaj82eQUJzJXa8+giZr708ih86GGtkGS8N01epoiDkTKC8Z9783UJ8Pf8+PSFSfHsY3Sd8TJpQrD9n7QnGHwGQ==
dependencies:
- "@expo/image-utils" "^0.4.0"
+ "@expo/image-utils" "^0.5.0"
"@ide/backoff" "^1.0.0"
abort-controller "^3.0.0"
assert "^2.0.0"
badgin "^1.1.5"
- expo-application "~5.8.0"
- expo-constants "~15.4.0"
+ expo-application "~5.9.0"
+ expo-constants "~16.0.0"
fs-extra "^9.1.0"
expo-pwa@0.0.127:
@@ -12246,91 +12333,92 @@ expo-pwa@0.0.127:
commander "2.20.0"
update-check "1.5.3"
-expo-sharing@^11.10.0:
- version "11.10.0"
- resolved "https://registry.yarnpkg.com/expo-sharing/-/expo-sharing-11.10.0.tgz#0e85197ee4d2634b00fe201e571fbdc64cf83eef"
- integrity sha512-/64RyyKlZ25WfnMXa87HbPXhIIqWwNbIku/RaIYAq4SE0XTRC+KTH3v0XFkfDa+SCG/jKsAr1pJ3vQvsNo1sCQ==
+expo-sharing@^12.0.1:
+ version "12.0.1"
+ resolved "https://registry.yarnpkg.com/expo-sharing/-/expo-sharing-12.0.1.tgz#6c4d951beda47dac47112e679d60fc06c233b7aa"
+ integrity sha512-wBT+WeXwapj/9NWuLJO01vi9bdlchYu/Q/xD8slL/Ls4vVYku8CPqzkTtDFcjLrjtlJqyeHsdQXwKLvORmBIew==
-expo-splash-screen@~0.26.4:
- version "0.26.4"
- resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.26.4.tgz#bc1fb226c6eae03ee351a3ebe5521a37f868cbc7"
- integrity sha512-2DwofTQ0FFQCsvDysm/msENsbyNsJiAJwK3qK/oXeizECAPqD7bK19J4z9kuEbr7ORPX9MLnTQYKl6kmX3keUg==
+expo-splash-screen@~0.27.4:
+ version "0.27.4"
+ resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.27.4.tgz#d7a86a2a1a87824ed47388aa8836e91b61268c62"
+ integrity sha512-JwepK1FjbwiOK2nwIFanfzj9s7UXYnpTwLX8A9v7Ec3K4V28yu8HooSc9X60cftBw9UZrs8Gwj4PgTpQabBS9A==
dependencies:
- "@expo/prebuild-config" "6.7.4"
+ "@expo/prebuild-config" "7.0.3"
-expo-status-bar@~1.11.1:
- version "1.11.1"
- resolved "https://registry.yarnpkg.com/expo-status-bar/-/expo-status-bar-1.11.1.tgz#a11318741d361048c11db2b16c4364a79a74af30"
- integrity sha512-ddQEtCOgYHTLlFUe/yH67dDBIoct5VIULthyT3LRJbEwdpzAgueKsX2FYK02ldh440V87PWKCamh7R9evk1rrg==
+expo-status-bar@~1.12.1:
+ version "1.12.1"
+ resolved "https://registry.yarnpkg.com/expo-status-bar/-/expo-status-bar-1.12.1.tgz#52ce594aab5064a0511d14375364d718ab78aa66"
+ integrity sha512-/t3xdbS8KB0prj5KG5w7z+wZPFlPtkgs95BsmrP/E7Q0xHXTcDcQ6Cu2FkFuRM+PKTb17cJDnLkawyS5vDLxMA==
-expo-structured-headers@~3.7.0:
- version "3.7.0"
- resolved "https://registry.yarnpkg.com/expo-structured-headers/-/expo-structured-headers-3.7.0.tgz#69b752cf43515535eccd30513da428688634a7ec"
- integrity sha512-uGcU65gzP4trfmVtntAg3rU/pytTGpCUXN+hQmCwCCvQb9qK1aoCXvVlqlW5zP8SZ04tzF1WXKR+P8RSEn5rSw==
+expo-structured-headers@~3.8.0:
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/expo-structured-headers/-/expo-structured-headers-3.8.0.tgz#11797a4c3a7a6770b21126cecffcda148030e361"
+ integrity sha512-R+gFGn0x5CWl4OVlk2j1bJTJIz4KO8mPoCHpRHmfqMjmrMvrOM0qQSY3V5NHXwp1yT/L2v8aUmFQsBRIdvi1XA==
-expo-system-ui@~2.9.3:
- version "2.9.3"
- resolved "https://registry.yarnpkg.com/expo-system-ui/-/expo-system-ui-2.9.3.tgz#845c7615a6ede9d959dff1719df3d9392a43c080"
- integrity sha512-RNFNBLJ9lhnjOGrHhtfDc15Ry/lF+SA4kwulmHzYGqaTeYvsL9q0K0+m9qmxuDdrbKJkuurvzvjVylDNnKNFVg==
+expo-system-ui@~3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/expo-system-ui/-/expo-system-ui-3.0.4.tgz#5ace49d38eb03c09a8041b3b82c581a6b974741a"
+ integrity sha512-v1n6hBO30k9qw6RE8/au4yNoovs71ExGuXizJUlR5KSo4Ruogpb+0/2q3uRZMDIYWWCANvms8L0UOh6fQJ5TXg==
dependencies:
- "@react-native/normalize-color" "^2.0.0"
+ "@react-native/normalize-colors" "~0.74.83"
debug "^4.3.2"
-expo-task-manager@~11.7.2:
- version "11.7.2"
- resolved "https://registry.yarnpkg.com/expo-task-manager/-/expo-task-manager-11.7.2.tgz#db09ee5ed4adf1ea586c131a60196cb387a7eb4a"
- integrity sha512-cmn7xg8+mGP7gX6deYZhvrCkKMkoBRJ+E4o5aL17Z/4ihXMfo/PFcQsrpuSYRLXzgidEw0kpppxhmYm21Jswwg==
+expo-task-manager@~11.8.1:
+ version "11.8.1"
+ resolved "https://registry.yarnpkg.com/expo-task-manager/-/expo-task-manager-11.8.1.tgz#33089e78ee3fbd83327fb403bce12d69baf7d21b"
+ integrity sha512-oGOUI8Cz9us1xFvWFftbMEvFGOIFYLa2xVguSGL7G+6ys0f+ozlkgT42KgG5qSwtDoqQ6+LMh9TJLLJUg1sVZw==
dependencies:
- unimodules-app-loader "~4.5.0"
+ unimodules-app-loader "~4.6.0"
-expo-updates-interface@~0.15.1:
- version "0.15.1"
- resolved "https://registry.yarnpkg.com/expo-updates-interface/-/expo-updates-interface-0.15.1.tgz#b0242fa7ba05768ada2f0faf83b90aa8b8fa65d7"
- integrity sha512-B42oOB0pw4TaPoOGE/yzt9ggwNNxo3PEJRU0kIOurQ8hW5UEUC8cAbGQDYWGbTyNGp8gLBG+T2MCg+YYaCYJUw==
+expo-updates-interface@~0.16.2:
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/expo-updates-interface/-/expo-updates-interface-0.16.2.tgz#ad1ac2ca8ee5a8cc84052ea3c18a11da64da569b"
+ integrity sha512-929XBU70q5ELxkKADj1xL0UIm3HvhYhNAOZv5DSk7rrKvLo7QDdPyl+JVnwZm9LrkNbH4wuE2rLoKu1KMgZ+9A==
-expo-updates@~0.24.10:
- version "0.24.12"
- resolved "https://registry.yarnpkg.com/expo-updates/-/expo-updates-0.24.12.tgz#17a708f52f999d0a7dcbf3d4401b5a481ab12730"
- integrity sha512-35ZpAMSqHIyVGT5mEptaZJBxytu0mv4PIG28i3BQe+GG4ifQtY94aCOCrUwZe8Myzaf4dNVGEUXWTPo+JPCgcw==
+expo-updates@~0.25.14:
+ version "0.25.14"
+ resolved "https://registry.yarnpkg.com/expo-updates/-/expo-updates-0.25.14.tgz#d0838780d0fa91558df72ca0f8b25b02466da11c"
+ integrity sha512-taYa6Q/882MxPaMZEoU0Tr4Ivtq0B0XUmCgj7GcKv0pDDhB7vuQ4uxXhWYn5udX+nJM0KH+dtEVFNVyeucVArg==
dependencies:
"@expo/code-signing-certificates" "0.0.5"
- "@expo/config" "~8.5.0"
- "@expo/config-plugins" "~7.8.0"
+ "@expo/config" "~9.0.0"
+ "@expo/config-plugins" "~8.0.0"
+ "@expo/fingerprint" "^0.8.0"
+ "@expo/spawn-async" "^1.7.2"
arg "4.1.0"
chalk "^4.1.2"
- expo-eas-client "~0.11.0"
- expo-manifests "~0.13.0"
- expo-structured-headers "~3.7.0"
- expo-updates-interface "~0.15.1"
+ expo-eas-client "~0.12.0"
+ expo-manifests "~0.14.0"
+ expo-structured-headers "~3.8.0"
+ expo-updates-interface "~0.16.2"
+ fast-glob "^3.3.2"
fbemitter "^3.0.0"
+ ignore "^5.3.1"
resolve-from "^5.0.0"
-expo-web-browser@~12.8.2:
- version "12.8.2"
- resolved "https://registry.yarnpkg.com/expo-web-browser/-/expo-web-browser-12.8.2.tgz#f34fb85c80031e0dddd4f9b9efd03cb60333b089"
- integrity sha512-Mw8WoFMSADecNjtC4PZVsVj1/lYdxIAH1jOVV+F8v8SEWYxORWofoShfXg7oUxRLu0iUG8JETfO5y4m8+fOgdg==
- dependencies:
- compare-urls "^2.0.0"
- url "^0.11.0"
+expo-web-browser@~13.0.3:
+ version "13.0.3"
+ resolved "https://registry.yarnpkg.com/expo-web-browser/-/expo-web-browser-13.0.3.tgz#dceb05dbc187b498ca937b02adf385b0232a4e92"
+ integrity sha512-HXb7y82ApVJtqk8tManyudtTrCtx8xcUnVzmJECeHCB0SsWSQ+penVLZxJkcyATWoJOsFMnfVSVdrTcpKKGszQ==
-expo@^50.0.17:
- version "50.0.17"
- resolved "https://registry.yarnpkg.com/expo/-/expo-50.0.17.tgz#ab0998d7e7c18e8d12efd9091f9688978b0e89ed"
- integrity sha512-eD8Nh10BgVwecU7EVyogx7X314ajxVpJdFwkXhi341AD61S2WPX31NMHW82XGXas6dbDjdbgtaOMo5H/vylB7Q==
+expo@^51.0.8:
+ version "51.0.8"
+ resolved "https://registry.yarnpkg.com/expo/-/expo-51.0.8.tgz#a7981e86ee20eac4b847c7c8cc5799d9c6b1508d"
+ integrity sha512-bdTOiMb1f3PChtuqEZ9czUm2gMTmS0r1+H+Pkm2O3PsuLnOgxfIBzL6S37+J4cUocLBaENrmx9SOGKpzhBqXpg==
dependencies:
"@babel/runtime" "^7.20.0"
- "@expo/cli" "0.17.10"
- "@expo/config" "8.5.6"
- "@expo/config-plugins" "7.9.1"
- "@expo/metro-config" "0.17.7"
+ "@expo/cli" "0.18.13"
+ "@expo/config" "9.0.2"
+ "@expo/config-plugins" "8.0.4"
+ "@expo/metro-config" "0.18.4"
"@expo/vector-icons" "^14.0.0"
- babel-preset-expo "~10.0.2"
- expo-asset "~9.0.2"
- expo-file-system "~16.0.9"
- expo-font "~11.10.3"
- expo-keep-awake "~12.8.2"
- expo-modules-autolinking "1.10.3"
- expo-modules-core "1.11.13"
+ babel-preset-expo "~11.0.6"
+ expo-asset "~10.0.6"
+ expo-file-system "~17.0.1"
+ expo-font "~12.0.5"
+ expo-keep-awake "~13.0.2"
+ expo-modules-autolinking "1.11.1"
+ expo-modules-core "1.12.11"
fbemitter "^3.0.0"
whatwg-url-without-unicode "8.0.0-3"
@@ -12416,6 +12504,17 @@ fast-glob@^3.2.12, fast-glob@^3.2.5, fast-glob@^3.2.7, fast-glob@^3.2.9:
merge2 "^1.3.0"
micromatch "^4.0.4"
+fast-glob@^3.3.2:
+ version "3.3.2"
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129"
+ integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
+ 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"
+
fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
@@ -12723,11 +12822,6 @@ flow-parser@0.*:
resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.215.0.tgz#9b153fa27ab238bcc0bb1ff73b63bdb15d3f277d"
integrity sha512-8bjwzy8vi+fNDy8YoTBNtQUSZa53i7UWJJTunJojOtjab9cMNhOCwohionuMgDQUU0y21QTTtPOX6OQEOQT72A==
-flow-parser@^0.206.0:
- version "0.206.0"
- resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.206.0.tgz#f4f794f8026535278393308e01ea72f31000bfef"
- integrity sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==
-
follow-redirects@^1.0.0, follow-redirects@^1.14.9, follow-redirects@^1.15.0:
version "1.15.2"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13"
@@ -12865,6 +12959,13 @@ fs-minipass@^2.0.0:
dependencies:
minipass "^3.0.0"
+fs-minipass@^3.0.0:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54"
+ integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==
+ dependencies:
+ minipass "^7.0.3"
+
fs-monkey@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.4.tgz#ee8c1b53d3fe8bb7e5d2c5c5dfc0168afdd2f747"
@@ -13028,6 +13129,17 @@ glob@7.1.6:
once "^1.3.0"
path-is-absolute "^1.0.0"
+glob@^10.2.2:
+ version "10.4.1"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.1.tgz#0cfb01ab6a6b438177bfe6a58e2576f6efe909c2"
+ integrity sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==
+ dependencies:
+ foreground-child "^3.1.0"
+ jackspeak "^3.1.2"
+ minimatch "^9.0.4"
+ minipass "^7.1.2"
+ path-scurry "^1.11.1"
+
glob@^10.3.10:
version "10.3.12"
resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.12.tgz#3a65c363c2e9998d220338e88a5f6ac97302960b"
@@ -13260,28 +13372,21 @@ he@1.2.0, he@^1.2.0:
resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
-hermes-estree@0.15.0:
- version "0.15.0"
- resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.15.0.tgz#e32f6210ab18c7b705bdcb375f7700f2db15d6ba"
- integrity sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ==
-
hermes-estree@0.18.2:
version "0.18.2"
resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.18.2.tgz#fd450fa1659cf074ceaa2ddeeb21674f3b2342f3"
integrity sha512-KoLsoWXJ5o81nit1wSyEZnWUGy9cBna9iYMZBR7skKh7okYAYKqQ9/OczwpMHn/cH0hKDyblulGsJ7FknlfVxQ==
+hermes-estree@0.19.1:
+ version "0.19.1"
+ resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.19.1.tgz#d5924f5fac2bf0532547ae9f506d6db8f3c96392"
+ integrity sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==
+
hermes-estree@0.20.1:
version "0.20.1"
resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.20.1.tgz#0b9a544cf883a779a8e1444b915fa365bef7f72d"
integrity sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==
-hermes-parser@0.15.0:
- version "0.15.0"
- resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.15.0.tgz#f611a297c2a2dbbfbce8af8543242254f604c382"
- integrity sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q==
- dependencies:
- hermes-estree "0.15.0"
-
hermes-parser@0.18.2:
version "0.18.2"
resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.18.2.tgz#50f15e2fcd559a48c68cd7af259d4292298bd14d"
@@ -13289,6 +13394,13 @@ hermes-parser@0.18.2:
dependencies:
hermes-estree "0.18.2"
+hermes-parser@0.19.1:
+ version "0.19.1"
+ resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.19.1.tgz#1044348097165b7c93dc198a80b04ed5130d6b1a"
+ integrity sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==
+ dependencies:
+ hermes-estree "0.19.1"
+
hermes-parser@^0.20.1:
version "0.20.1"
resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.20.1.tgz#ad10597b99f718b91e283f81cbe636c50c3cff92"
@@ -13577,6 +13689,11 @@ ignore@^5.0.5, ignore@^5.1.9, ignore@^5.2.0:
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
+ignore@^5.3.1:
+ version "5.3.1"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef"
+ integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
+
image-size@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.0.2.tgz#d778b6d0ab75b2737c1556dd631652eb963bc486"
@@ -13628,11 +13745,6 @@ indent-string@^4.0.0:
resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
-infer-owner@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
- integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
-
inflight@^1.0.4:
version "1.0.6"
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
@@ -13732,11 +13844,6 @@ ip-regex@^2.1.0:
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
integrity sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==
-ip@^1.1.5:
- version "1.1.8"
- resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48"
- integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==
-
ipaddr.js@1.9.1, ipaddr.js@^1.9.0:
version "1.9.1"
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
@@ -13992,11 +14099,6 @@ is-path-inside@^3.0.2, is-path-inside@^3.0.3:
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
-is-plain-obj@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
- integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==
-
is-plain-obj@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
@@ -14237,6 +14339,15 @@ jackspeak@^2.3.6:
optionalDependencies:
"@pkgjs/parseargs" "^0.11.0"
+jackspeak@^3.1.2:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.1.2.tgz#eada67ea949c6b71de50f1b09c92a961897b90ab"
+ integrity sha512-kWmLKn2tRtfYMF/BakihVVRzBKOxz4gJMiL2Rj91WnAB5TPZumSH99R/Yf1qE1u4uRimvCSJfm6hnxohXeEXjQ==
+ dependencies:
+ "@isaacs/cliui" "^8.0.2"
+ optionalDependencies:
+ "@pkgjs/parseargs" "^0.11.0"
+
jake@^10.8.5:
version "10.8.7"
resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.7.tgz#63a32821177940c33f356e0ba44ff9d34e1c7d8f"
@@ -15830,6 +15941,11 @@ lodash.isequal@^4.5.0:
resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==
+lodash.isobject@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-3.0.2.tgz#3c8fb8d5b5bf4bf90ae06e14f2a530a4ed935e1d"
+ integrity sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==
+
lodash.memoize@^4.1.2:
version "4.1.2"
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
@@ -15885,7 +16001,7 @@ lodash.uniq@^4.5.0:
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==
-lodash@^4.17.10, lodash@^4.17.13, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.7.0:
+lodash@^4.17.10, lodash@^4.17.13, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.7.0:
version "4.17.21"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
@@ -15939,6 +16055,11 @@ lower-case@^2.0.2:
dependencies:
tslib "^2.0.3"
+lru-cache@^10.0.1:
+ version "10.2.2"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.2.tgz#48206bc114c1252940c41b25b41af5b545aca878"
+ integrity sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==
+
lru-cache@^10.2.0:
version "10.2.0"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.0.tgz#0bd445ca57363465900f4d1f9bd8db343a4d95c3"
@@ -16189,16 +16310,17 @@ metro-minify-terser@0.80.4:
dependencies:
terser "^5.15.0"
-metro-react-native-babel-preset@^0.73.7:
- version "0.73.10"
- resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.73.10.tgz#304b24bb391537d2c987732cc0a9774be227d3f6"
- integrity sha512-1/dnH4EHwFb2RKEKx34vVDpUS3urt2WEeR8FYim+ogqALg4sTpG7yeQPxWpbgKATezt4rNfqAANpIyH19MS4BQ==
+metro-react-native-babel-preset@^0.74.1:
+ version "0.74.1"
+ resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.74.1.tgz#81c1c30f13f543c5848049e46e1afbc81df87de6"
+ integrity sha512-DjsG9nqm5C7cjB2SlgbcNJOn9y5MBUd3bRlCfnoj8CxAeGTGkS+yXd183lHR3C1bhmQNjuUE0abzzpE1CFh6JQ==
dependencies:
"@babel/core" "^7.20.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-numeric-separator" "^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"
@@ -16227,7 +16349,6 @@ metro-react-native-babel-preset@^0.73.7:
"@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"
@@ -16443,7 +16564,7 @@ minimatch@^5.0.1:
dependencies:
brace-expansion "^2.0.1"
-minimatch@^9.0.1:
+minimatch@^9.0.1, minimatch@^9.0.4:
version "9.0.4"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.4.tgz#8e49c731d1749cbec05050ee5145147b32496a51"
integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==
@@ -16455,12 +16576,12 @@ minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6:
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
-minipass-collect@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
- integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
+minipass-collect@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863"
+ integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==
dependencies:
- minipass "^3.0.0"
+ minipass "^7.0.3"
minipass-flush@^1.0.5:
version "1.0.5"
@@ -16469,14 +16590,14 @@ minipass-flush@^1.0.5:
dependencies:
minipass "^3.0.0"
-minipass-pipeline@^1.2.2:
+minipass-pipeline@^1.2.4:
version "1.2.4"
resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
dependencies:
minipass "^3.0.0"
-minipass@3.3.6, minipass@^3.0.0, minipass@^3.1.1:
+minipass@^3.0.0:
version "3.3.6"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a"
integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==
@@ -16493,6 +16614,11 @@ minipass@^5.0.0:
resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c"
integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==
+minipass@^7.0.3, minipass@^7.1.2:
+ version "7.1.2"
+ resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707"
+ integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==
+
minizlib@^2.1.1:
version "2.1.2"
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
@@ -16760,15 +16886,6 @@ normalize-range@^0.1.2:
resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==
-normalize-url@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-2.0.1.tgz#835a9da1551fa26f70e92329069a23aa6574d7e6"
- integrity sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==
- dependencies:
- prepend-http "^2.0.0"
- query-string "^5.0.1"
- sort-keys "^2.0.0"
-
normalize-url@^6.0.1:
version "6.1.0"
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a"
@@ -17055,7 +17172,7 @@ optionator@^0.9.3:
prelude-ls "^1.2.1"
type-check "^0.4.0"
-ora@3.4.0:
+ora@3.4.0, ora@^3.4.0:
version "3.4.0"
resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318"
integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==
@@ -17357,6 +17474,14 @@ path-scurry@^1.10.2:
lru-cache "^10.2.0"
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
+path-scurry@^1.11.1:
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2"
+ integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==
+ dependencies:
+ lru-cache "^10.2.0"
+ minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
+
path-to-regexp@0.1.7:
version "0.1.7"
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
@@ -18161,15 +18286,6 @@ postcss@^8.3.5, postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.4:
picocolors "^1.0.0"
source-map-js "^1.0.2"
-postcss@~8.4.21:
- version "8.4.29"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.29.tgz#33bc121cf3b3688d4ddef50be869b2a54185a1dd"
- integrity sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==
- dependencies:
- nanoid "^3.3.6"
- picocolors "^1.0.0"
- source-map-js "^1.0.2"
-
postcss@~8.4.32:
version "8.4.38"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e"
@@ -18229,11 +18345,6 @@ prelude-ls@^1.2.1:
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
-prepend-http@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
- integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==
-
prettier-linter-helpers@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
@@ -18336,11 +18447,6 @@ progress@2.0.3, progress@^2.0.3:
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
-promise-inflight@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
- integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==
-
promise@^7.1.1:
version "7.3.1"
resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
@@ -18559,11 +18665,6 @@ pump@^3.0.0:
end-of-stream "^1.1.0"
once "^1.3.1"
-punycode@^1.4.1:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
- integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==
-
punycode@^2.1.0, punycode@^2.1.1:
version "2.3.0"
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f"
@@ -18591,22 +18692,13 @@ qs@6.11.0:
dependencies:
side-channel "^1.0.4"
-qs@^6.11.2, qs@^6.5.1:
+qs@^6.5.1:
version "6.11.2"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9"
integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==
dependencies:
side-channel "^1.0.4"
-query-string@^5.0.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb"
- integrity sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==
- dependencies:
- decode-uri-component "^0.2.0"
- object-assign "^4.1.0"
- strict-uri-encode "^1.0.0"
-
query-string@^7.1.3:
version "7.1.3"
resolved "https://registry.yarnpkg.com/query-string/-/query-string-7.1.3.tgz#a1cf90e994abb113a325804a972d98276fe02328"
@@ -18617,6 +18709,11 @@ query-string@^7.1.3:
split-on-first "^1.0.0"
strict-uri-encode "^2.0.0"
+querystring@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd"
+ integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==
+
querystringify@^2.1.1:
version "2.2.0"
resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6"
@@ -18747,10 +18844,10 @@ react-dev-utils@^12.0.1:
strip-ansi "^6.0.1"
text-table "^0.2.0"
-react-devtools-core@^4.27.7:
- version "4.28.5"
- resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.28.5.tgz#c8442b91f068cdf0c899c543907f7f27d79c2508"
- integrity sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==
+react-devtools-core@^5.0.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-5.2.0.tgz#072ecd2d84d3653817cc11e4b16f60a3c2b705f9"
+ integrity sha512-vZK+/gvxxsieAoAyYaiRIVFxlajb7KXhgBDV7OsoMzaAE+IqGpoxusBjIgq5ibqA2IloKu0p9n7tE68z1xs18A==
dependencies:
shell-quote "^1.6.1"
ws "^7"
@@ -18802,10 +18899,10 @@ react-native-app-clip@bluesky-social/react-native-app-clip:
"@expo/config-plugins" "~7.2.5"
"@expo/plist" "^0.0.20"
-react-native-date-picker@^4.4.0:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/react-native-date-picker/-/react-native-date-picker-4.4.0.tgz#fe5b6eb8d85a4a30b2991ada5169a30ce5023ead"
- integrity sha512-Axx3byihwwhKRLRVjPAr/UaEysapkRcKmjjM8/05UaVm4Q0xDn2RFUcRdy1QAahhRcjLjlVYhepxvU5bdgy7ZQ==
+react-native-date-picker@^4.4.2:
+ version "4.4.2"
+ resolved "https://registry.yarnpkg.com/react-native-date-picker/-/react-native-date-picker-4.4.2.tgz#f7bb9daa8559237e08bd30f907ee8487a6e2a6ec"
+ integrity sha512-wYKN8nYWhETVHJV/+Im30JOdzkFRwYRrDlEOyyYesOjt+1JTFJh9M7K5CqePLOIB4Nxlf2f2lRSI0VoUyFIovA==
react-native-dotenv@^3.3.1:
version "3.4.9"
@@ -18829,10 +18926,10 @@ react-native-fs@^2.20.0:
base-64 "^0.1.0"
utf8 "^3.0.0"
-react-native-gesture-handler@~2.14.0:
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.14.0.tgz#d6aec0d8b2e55c67557fd6107e828c0a1a248be8"
- integrity sha512-cOmdaqbpzjWrOLUpX3hdSjsMby5wq3PIEdMq7okJeg9DmCzanysHSrktw1cXWNc/B5MAgxAn9J7Km0/4UIqKAQ==
+react-native-gesture-handler@~2.16.2:
+ version "2.16.2"
+ resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.16.2.tgz#032bd2a07334292d7f6cff1dc9d1ec928f72e26d"
+ integrity sha512-vGFlrDKlmyI+BT+FemqVxmvO7nqxU33cgXVsn6IKAFishvlG3oV2Ds67D5nPkHMea8T+s1IcuMm0bF8ntZtAyg==
dependencies:
"@egjs/hammerjs" "^2.0.17"
hoist-non-react-statics "^3.3.0"
@@ -18854,10 +18951,10 @@ react-native-get-random-values@~1.11.0:
dependencies:
fast-base64-decode "^1.0.0"
-react-native-image-crop-picker@^0.38.1:
- version "0.38.1"
- resolved "https://registry.yarnpkg.com/react-native-image-crop-picker/-/react-native-image-crop-picker-0.38.1.tgz#5973b4a8b55835b987e6be2064de411e849ac005"
- integrity sha512-cF5UQnWplzHCeiCO+aiGS/0VomWaLmFf3nSsgTMPfY+8+99h8N/eHQvVdSF7RsGw50B8394wGeGyqHjjp8YRWw==
+react-native-image-crop-picker@0.40.3:
+ version "0.40.3"
+ resolved "https://registry.yarnpkg.com/react-native-image-crop-picker/-/react-native-image-crop-picker-0.40.3.tgz#a6b135cd1218a33ad126c1a148ec5a1bd01737ff"
+ integrity sha512-45PKcTnsnLS+E36YwoXutllQdRSOuOsMN0IRcAcwsFXOuAQIOtugXlAuGGL28JHKb/ATaSSPvqCSrdG65Jv3GA==
react-native-ios-context-menu@^1.15.3:
version "1.15.3"
@@ -18876,13 +18973,13 @@ react-native-pager-view@6.2.3:
resolved "https://registry.yarnpkg.com/react-native-pager-view/-/react-native-pager-view-6.2.3.tgz#698f6387fdf06cecc3d8d4792604419cb89cb775"
integrity sha512-dqVpXWFtPNfD3D2QQQr8BP+ullS5MhjRJuF8Z/qml4QTILcrWaW8F5iAxKkQR3Jl0ikcEryG/+SQlNcwlo0Ggg==
-react-native-picker-select@^8.1.0:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/react-native-picker-select/-/react-native-picker-select-8.1.0.tgz#667a5442f783f4bcfd3f65880c6926155fd2c39c"
- integrity sha512-iLsLv2OEWpXnQMDYJS6du5Cl1HTHy887n60Yp5OOiMny0TDB9w5CfxTUYWtpsvJJrUa/Yrv+1NMQiJy7IA4ETw==
+react-native-picker-select@^9.1.3:
+ version "9.1.3"
+ resolved "https://registry.yarnpkg.com/react-native-picker-select/-/react-native-picker-select-9.1.3.tgz#eaa052c483a7935def8fb28e5ffdf1537b37ded2"
+ integrity sha512-O2EmlY4Mg5fZWxECTQJBDhO61as6RDbPYYiNoryaa0gmIkWxhANLsZI+ElEVru1h0Fp9UlCFtBDI5MwhHR9AxA==
dependencies:
- "@react-native-picker/picker" "^1.8.3"
lodash.isequal "^4.5.0"
+ lodash.isobject "^3.0.2"
react-native-progress@bluesky-social/react-native-progress:
version "5.0.0"
@@ -18890,12 +18987,16 @@ react-native-progress@bluesky-social/react-native-progress:
dependencies:
prop-types "^15.7.2"
-react-native-reanimated@^3.6.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.6.0.tgz#d2ca5f4c234f592af3d63bc749806e36d6e0a755"
- integrity sha512-eDdhZTRYofrIqFB/Z5xLTWxcB7wDj4ifrNm+gZ2xHSZPjAQ747ukDdH9rglPyPmi+GcmDH7Wff411Xsw5fm45Q==
+react-native-reanimated@^3.11.0:
+ version "3.11.0"
+ resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.11.0.tgz#d4265d4e0232623f5958ed60e1686ca884fc3452"
+ integrity sha512-BNw/XDgUfs8UhfY1X6IniU8kWpnotWGyt8qmQviaHisTi5lvwnaOdXQKfN1KGONx6ekdFRHRP5EFwLi0UajwKA==
dependencies:
- "@babel/plugin-transform-object-assign" "^7.16.7"
+ "@babel/plugin-transform-arrow-functions" "^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/preset-typescript" "^7.16.7"
convert-source-map "^2.0.0"
invariant "^2.2.4"
@@ -18905,31 +19006,31 @@ react-native-root-siblings@^4.1.1:
resolved "https://registry.yarnpkg.com/react-native-root-siblings/-/react-native-root-siblings-4.1.1.tgz#b7742db7634a87f507eb99a5fd699c4f10c46ab0"
integrity sha512-sdmLElNs5PDWqmZmj4/aNH4anyxreaPm61c4ZkRiR8SO/GzLg6KjAbb0e17RmMdnBdD0AIQbS38h/l55YKN4ZA==
-react-native-safe-area-context@4.8.2:
- version "4.8.2"
- resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.8.2.tgz#e6b3d8acf3c6afcb4b5db03a97f9c37df7668f65"
- integrity sha512-ffUOv8BJQ6RqO3nLml5gxJ6ab3EestPiyWekxdzO/1MQ7NF8fW1Mzh1C5QE9yq573Xefnc7FuzGXjtesZGv7cQ==
+react-native-safe-area-context@4.10.1:
+ version "4.10.1"
+ resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.10.1.tgz#29fb27395ff7dfa2fa38788a27226330d73a81cc"
+ integrity sha512-w8tCuowDorUkPoWPXmhqosovBr33YsukkwYCDERZFHAxIkx6qBadYxfeoaJ91nCQKjkNzGrK5qhoNOeSIcYSpA==
-react-native-screens@~3.29.0:
- version "3.29.0"
- resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.29.0.tgz#1dee0326defbc1d4ef4e68287abb32a8e6b76b29"
- integrity sha512-yB1GoAMamFAcYf4ku94uBPn0/ani9QG7NdI98beJ5cet2YFESYYzuEIuU+kt+CNRcO8qqKeugxlfgAa3HyTqlg==
+react-native-screens@~3.31.1:
+ version "3.31.1"
+ resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.31.1.tgz#909a890f669e32b0fb1b1410278b71ad2f8238f6"
+ integrity sha512-8fRW362pfZ9y4rS8KY5P3DFScrmwo/vu1RrRMMx0PNHbeC9TLq0Kw1ubD83591yz64gLNHFLTVkTJmWeWCXKtQ==
dependencies:
react-freeze "^1.0.0"
warn-once "^0.1.0"
-react-native-svg@14.1.0:
- version "14.1.0"
- resolved "https://registry.yarnpkg.com/react-native-svg/-/react-native-svg-14.1.0.tgz#7903bddd3c71bf3a8a503918253c839e6edaa724"
- integrity sha512-HeseElmEk+AXGwFZl3h56s0LtYD9HyGdrpg8yd9QM26X+d7kjETrRQ9vCjtxuT5dCZEIQ5uggU1dQhzasnsCWA==
+react-native-svg@^15.3.0:
+ version "15.3.0"
+ resolved "https://registry.yarnpkg.com/react-native-svg/-/react-native-svg-15.3.0.tgz#e24b833fe330714c99f1dd894bb0da52ad859a4c"
+ integrity sha512-mBHu/fdlzUbpGX8SZFxgbKvK/sgqLfDLP8uh8G7Us+zJgdjO8OSEeqHQs+kPRdQmdLJQiqPJX2WXgCl7ToTWqw==
dependencies:
css-select "^5.1.0"
css-tree "^1.1.3"
-react-native-uitextview@^1.1.6:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/react-native-uitextview/-/react-native-uitextview-1.1.6.tgz#a70d039f415158445c90de8e8e546a7c3b251d6d"
- integrity sha512-OTGTw4Y2DDn4dHTwN7aKOndXP6NoS/AS35Rj/Rsss+KRsGHToiv2g3ZdzQ0ZhZabhwl1u+Oht+wSU/FU+SoJ+Q==
+react-native-uitextview@^1.1.7:
+ version "1.1.7"
+ resolved "https://registry.yarnpkg.com/react-native-uitextview/-/react-native-uitextview-1.1.7.tgz#ee60ca279b0f4d081451f0df707b0ceac4580de1"
+ integrity sha512-7NaeizflafRvdsuomR6F4UxGV3XY8ilgntX0npLkE3YyH0YJTikBAHunrRWEPtj1vjybYN2DuThMYRELcVqyuA==
react-native-url-polyfill@^1.3.0:
version "1.3.0"
@@ -18938,10 +19039,10 @@ react-native-url-polyfill@^1.3.0:
dependencies:
whatwg-url-without-unicode "8.0.0-3"
-react-native-uuid@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/react-native-uuid/-/react-native-uuid-2.0.1.tgz#ed4e2dfb1683eddb66967eb5dca140dfe1abddb9"
- integrity sha512-cptnoIbL53GTCrWlb/+jrDC6tvb7ypIyzbXNJcpR3Vab0mkeaaVd5qnB3f0whXYzS+SMoSQLcUUB0gEWqkPC0g==
+react-native-uuid@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/react-native-uuid/-/react-native-uuid-2.0.2.tgz#3da192e342ef35ee95a7def676ab41c1256dfd66"
+ integrity sha512-5ypj/hV58P+6VREdjkW0EudSibsH3WdqDERoHKnD9syFWjF+NfRWWrJb2sa3LIwI5zpzMvUiabs+DX40WHpEMw==
react-native-view-shot@^3.8.0:
version "3.8.0"
@@ -18957,13 +19058,13 @@ react-native-web-webview@^1.0.2:
dependencies:
qs "^6.5.1"
-react-native-web@~0.19.6:
- version "0.19.8"
- resolved "https://registry.yarnpkg.com/react-native-web/-/react-native-web-0.19.8.tgz#46127f8b310148fde11e4fef67fe625603599d47"
- integrity sha512-anqGGHowJdfkYqRxzoQj6DeetJf5hyBlahN6rwksw54gXxgjbsUOe4/PyxqvjwxYafgbVo0oow23BwpsRFdrpw==
+react-native-web@~0.19.11:
+ version "0.19.11"
+ resolved "https://registry.yarnpkg.com/react-native-web/-/react-native-web-0.19.11.tgz#1b96ac3cea9af4e1280fd5fa3b606b471f66edc3"
+ integrity sha512-51Qcjr0AtIgskwLqLsBByUMPs2nAWZ+6QF7x/siC72svNPcJ1/daXoPTNuHR2fX4oOrDATC4Vmc/SXOYPH19rw==
dependencies:
"@babel/runtime" "^7.18.6"
- "@react-native/normalize-color" "^2.1.0"
+ "@react-native/normalize-colors" "^0.74.1"
fbjs "^3.0.4"
inline-style-prefixer "^6.0.1"
memoize-one "^6.0.0"
@@ -18971,35 +19072,35 @@ react-native-web@~0.19.6:
postcss-value-parser "^4.2.0"
styleq "^0.1.3"
-react-native-webview@13.6.4:
- version "13.6.4"
- resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-13.6.4.tgz#6ef66db9dd78b2a2ae1b4fe79e1e3597aa29186e"
- integrity sha512-AdgmaMBHPcyERTvng9eSGgHX6AleyUlSusWAxngSOSdiYGgHW81T6C5A8j/ImJAF9oZg0bQDxp43Hu56tzENZQ==
+react-native-webview@13.10.2:
+ version "13.10.2"
+ resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-13.10.2.tgz#0f9b84ab38cca022d5b1c4e77c100f4d9591e7af"
+ integrity sha512-rjrTuPBtpHbI3owoyvSR+bRJqHfsdo5V3nVfU+G65CotkSLewEcGfA9cq7Qv3nzm5t0KEDIt0G/n7hQFjsXihQ==
dependencies:
escape-string-regexp "2.0.0"
invariant "2.2.4"
-react-native@0.73.2:
- version "0.73.2"
- resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.73.2.tgz#74ee163c8189660d41d1da6560411da7ce41a608"
- integrity sha512-7zj9tcUYpJUBdOdXY6cM8RcXYWkyql4kMyGZflW99E5EuFPoC7Ti+ZQSl7LP9ZPzGD0vMfslwyDW0I4tPWUCFw==
+react-native@0.74.1:
+ version "0.74.1"
+ resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.74.1.tgz#8f5f59636242eb1b90ff675d9fcc7f5b8b1c9913"
+ integrity sha512-0H2XpmghwOtfPpM2LKqHIN7gxy+7G/r1hwJHKLV6uoyXGC/gCojRtoo5NqyKrWpFC8cqyT6wTYCLuG7CxEKilg==
dependencies:
"@jest/create-cache-key-function" "^29.6.3"
- "@react-native-community/cli" "12.3.0"
- "@react-native-community/cli-platform-android" "12.3.0"
- "@react-native-community/cli-platform-ios" "12.3.0"
- "@react-native/assets-registry" "0.73.1"
- "@react-native/codegen" "0.73.2"
- "@react-native/community-cli-plugin" "0.73.12"
- "@react-native/gradle-plugin" "0.73.4"
- "@react-native/js-polyfills" "0.73.1"
- "@react-native/normalize-colors" "0.73.2"
- "@react-native/virtualized-lists" "0.73.4"
+ "@react-native-community/cli" "13.6.6"
+ "@react-native-community/cli-platform-android" "13.6.6"
+ "@react-native-community/cli-platform-ios" "13.6.6"
+ "@react-native/assets-registry" "0.74.83"
+ "@react-native/codegen" "0.74.83"
+ "@react-native/community-cli-plugin" "0.74.83"
+ "@react-native/gradle-plugin" "0.74.83"
+ "@react-native/js-polyfills" "0.74.83"
+ "@react-native/normalize-colors" "0.74.83"
+ "@react-native/virtualized-lists" "0.74.83"
abort-controller "^3.0.0"
anser "^1.4.9"
ansi-regex "^5.0.0"
base64-js "^1.5.1"
- deprecated-react-native-prop-types "^5.0.0"
+ chalk "^4.0.0"
event-target-shim "^5.0.1"
flow-enums-runtime "^0.0.6"
invariant "^2.2.4"
@@ -19012,7 +19113,7 @@ react-native@0.73.2:
nullthrows "^1.1.1"
pretty-format "^26.5.2"
promise "^8.3.0"
- react-devtools-core "^4.27.7"
+ react-devtools-core "^5.0.0"
react-refresh "^0.14.0"
react-shallow-renderer "^16.15.0"
regenerator-runtime "^0.13.2"
@@ -19032,6 +19133,11 @@ react-refresh@^0.11.0:
resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.11.0.tgz#77198b944733f0f1f1a90e791de4541f9f074046"
integrity sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==
+react-refresh@^0.14.2:
+ version "0.14.2"
+ resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.2.tgz#3833da01ce32da470f1f936b9d477da5c7028bf9"
+ integrity sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==
+
react-refresh@^0.4.0:
version "0.4.3"
resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.4.3.tgz#966f1750c191672e76e16c2efa569150cc73ab53"
@@ -19788,6 +19894,14 @@ selfsigned@^2.1.1:
dependencies:
node-forge "^1"
+selfsigned@^2.4.1:
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.4.1.tgz#560d90565442a3ed35b674034cec4e95dceb4ae0"
+ integrity sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==
+ dependencies:
+ "@types/node-forge" "^1.3.0"
+ node-forge "^1"
+
semver-compare@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
@@ -19805,10 +19919,10 @@ semver@7.5.3:
dependencies:
lru-cache "^6.0.0"
-semver@7.5.4, semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.2, semver@^7.5.3, semver@^7.5.4:
- version "7.5.4"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
- integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
+semver@7.6.0:
+ version "7.6.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d"
+ integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==
dependencies:
lru-cache "^6.0.0"
@@ -19822,6 +19936,18 @@ semver@^6.0.0, semver@^6.3.0, semver@^6.3.1:
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
+semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.2, semver@^7.5.3, semver@^7.5.4:
+ version "7.5.4"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
+ integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
+ dependencies:
+ lru-cache "^6.0.0"
+
+semver@^7.6.0:
+ version "7.6.2"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.2.tgz#1e3b34759f896e8f14d6134732ce798aeb0c6e13"
+ integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==
+
semver@~7.3.2:
version "7.3.8"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798"
@@ -20123,13 +20249,6 @@ sonic-boom@^3.1.0:
dependencies:
atomic-sleep "^1.0.0"
-sort-keys@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128"
- integrity sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==
- dependencies:
- is-plain-obj "^1.0.0"
-
source-list-map@^2.0.0, source-list-map@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
@@ -20252,12 +20371,12 @@ sprintf-js@~1.0.2:
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
-ssri@^8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af"
- integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==
+ssri@^10.0.0:
+ version "10.0.6"
+ resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.6.tgz#a8aade2de60ba2bce8688e3fa349bad05c7dc1e5"
+ integrity sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==
dependencies:
- minipass "^3.1.1"
+ minipass "^7.0.3"
stable@^0.1.8:
version "0.1.8"
@@ -20371,11 +20490,6 @@ streamx@^2.15.0:
fast-fifo "^1.1.0"
queue-tick "^1.0.1"
-strict-uri-encode@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
- integrity sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==
-
strict-uri-encode@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546"
@@ -20806,7 +20920,7 @@ tar-stream@^3.1.5:
fast-fifo "^1.2.0"
streamx "^2.15.0"
-tar@^6.0.2, tar@^6.0.5:
+tar@^6.0.5:
version "6.1.15"
resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.15.tgz#c9738b0b98845a3b344d334b8fa3041aaba53a69"
integrity sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==
@@ -20818,6 +20932,18 @@ tar@^6.0.2, tar@^6.0.5:
mkdirp "^1.0.3"
yallist "^4.0.0"
+tar@^6.1.11:
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a"
+ integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==
+ dependencies:
+ chownr "^2.0.0"
+ fs-minipass "^2.0.0"
+ minipass "^5.0.0"
+ minizlib "^2.1.1"
+ mkdirp "^1.0.3"
+ yallist "^4.0.0"
+
temp-dir@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"
@@ -21302,6 +21428,11 @@ unbox-primitive@^1.0.2:
has-symbols "^1.0.3"
which-boxed-primitive "^1.0.2"
+undici-types@~5.26.4:
+ version "5.26.5"
+ resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
+ integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
+
undici@^5.28.2:
version "5.28.2"
resolved "https://registry.yarnpkg.com/undici/-/undici-5.28.2.tgz#fea200eac65fc7ecaff80a023d1a0543423b4c91"
@@ -21342,22 +21473,22 @@ unicode-property-aliases-ecmascript@^2.0.0:
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
-unimodules-app-loader@~4.5.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/unimodules-app-loader/-/unimodules-app-loader-4.5.0.tgz#5ec66088d740bd17dc5c94b88c91f21249d9f0ba"
- integrity sha512-q/Xug4K6/20876Xac+tjOLOOAeHEu2zF66LNN/5c8EV4WPEe/+RYZEljN/woQt17KPIB2eyel9dc+d6qUMjUOg==
+unimodules-app-loader@~4.6.0:
+ version "4.6.0"
+ resolved "https://registry.yarnpkg.com/unimodules-app-loader/-/unimodules-app-loader-4.6.0.tgz#8836040b3acbf605fc4c2c6f6feb6dd9084ea0d4"
+ integrity sha512-FRNIlx7sLBDVPG117JnEBhnzZkTIgZTEwYW2rzrY9HdvLBTpRN+k0dxY50U/CAhFHW3zMD0OP5JAlnSQRhx5HA==
-unique-filename@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
- integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
+unique-filename@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea"
+ integrity sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==
dependencies:
- unique-slug "^2.0.0"
+ unique-slug "^4.0.0"
-unique-slug@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
- integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
+unique-slug@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3"
+ integrity sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==
dependencies:
imurmurhash "^0.1.4"
@@ -21468,14 +21599,6 @@ url-parse@^1.5.3:
querystringify "^2.1.1"
requires-port "^1.0.0"
-url@^0.11.0:
- version "0.11.3"
- resolved "https://registry.yarnpkg.com/url/-/url-0.11.3.tgz#6f495f4b935de40ce4a0a52faee8954244f3d3ad"
- integrity sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==
- dependencies:
- punycode "^1.4.1"
- qs "^6.11.2"
-
use-callback-ref@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.0.tgz#772199899b9c9a50526fedc4993fc7fa1f7e32d5"
@@ -21493,11 +21616,6 @@ use-isomorphic-layout-effect@^1.1.1:
resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz#497cefb13d863d687b08477d9e5a164ad8c1a6fb"
integrity sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==
-use-latest-callback@^0.1.5:
- version "0.1.6"
- resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.1.6.tgz#3fa6e7babbb5f9bfa24b5094b22939e1e92ebcf6"
- integrity sha512-VO/P91A/PmKH9bcN9a7O3duSuxe6M14ZoYXgA6a8dab8doWNdhiIHzEkX/jFeTTRBsX0Ubk6nG4q2NIjNsj+bg==
-
use-latest-callback@^0.1.9:
version "0.1.9"
resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.1.9.tgz#10191dc54257e65a8e52322127643a8940271e2a"
@@ -22506,12 +22624,12 @@ zod-validation-error@^3.0.3:
resolved "https://registry.yarnpkg.com/zod-validation-error/-/zod-validation-error-3.3.0.tgz#2cfe81b62d044e0453d1aa3ae7c32a2f36dde9af"
integrity sha512-Syib9oumw1NTqEv4LT0e6U83Td9aVRk9iTXPUQr1otyV1PuXQKOvOwhMNqZIq5hluzHP2pMgnOmHEo7kPdI2mw==
-zod@^3.14.2, zod@^3.20.2, zod@^3.21.4:
+zod@^3.14.2, zod@^3.20.2:
version "3.22.2"
resolved "https://registry.yarnpkg.com/zod/-/zod-3.22.2.tgz#3add8c682b7077c05ac6f979fea6998b573e157b"
integrity sha512-wvWkphh5WQsJbVk1tbx1l1Ly4yg+XecD+Mq280uBGt9wa5BKSWf4Mhp6GmrkPixhMxmabYY7RbzlwVP32pbGCg==
-zod@^3.22.4:
+zod@^3.21.4, zod@^3.22.4:
version "3.23.8"
resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d"
integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==