Files
trezor-suite/suite-native/module-send/package.json
Petr Knetl 1e06739434 fix(suite-native): remove nested BottomSheetModalProvider causing broken sheet offsets
Nested BottomSheetModalProvider instances inside Form components were
causing gesture-handler and animation conflicts (duplicate portal
hierarchies). This was the root cause of the broken bottom inset on the
Account List bottom sheet after opening the custom fee sheet.

Fix: re-provide FormContext inside CustomFeeBottomSheet's portal content
via <Form form={form}> so portaled children can access useFormContext(),
making the nested provider in all fee form screens unnecessary.
2026-03-04 08:26:44 +01:00

70 lines
2.7 KiB
JSON

{
"name": "@suite-native/module-send",
"version": "1.0.0",
"private": true,
"license": "See LICENSE.md in repo root",
"sideEffects": false,
"main": "src/index",
"scripts": {
"depcheck": "yarn g:depcheck",
"type-check": "yarn g:tsc --build",
"test:unit": "yarn g:jest"
},
"dependencies": {
"@mobily/ts-belt": "^3.13.1",
"@react-navigation/native": "7.1.26",
"@react-navigation/native-stack": "7.9.0",
"@reduxjs/toolkit": "2.11.2",
"@shopify/flash-list": "2.2.0",
"@suite-common/device": "workspace:*",
"@suite-common/formatters": "workspace:*",
"@suite-common/suite-sync": "workspace:*",
"@suite-common/token-definitions": "workspace:*",
"@suite-common/transaction-search": "workspace:*",
"@suite-common/validators": "workspace:*",
"@suite-common/wallet-config": "workspace:*",
"@suite-common/wallet-constants": "workspace:*",
"@suite-common/wallet-core": "workspace:*",
"@suite-common/wallet-types": "workspace:*",
"@suite-common/wallet-utils": "workspace:*",
"@suite-native/accounts": "workspace:*",
"@suite-native/alerts": "workspace:*",
"@suite-native/analytics": "workspace:*",
"@suite-native/atoms": "workspace:*",
"@suite-native/config": "workspace:*",
"@suite-native/confirm-on-trezor": "workspace:*",
"@suite-native/formatters": "workspace:*",
"@suite-native/forms": "workspace:*",
"@suite-native/helpers": "workspace:*",
"@suite-native/icons": "workspace:*",
"@suite-native/intl": "workspace:*",
"@suite-native/labeling": "workspace:*",
"@suite-native/link": "workspace:*",
"@suite-native/navigation": "workspace:*",
"@suite-native/qr-code": "workspace:*",
"@suite-native/send": "workspace:*",
"@suite-native/services": "workspace:*",
"@suite-native/tokens": "workspace:*",
"@suite-native/transaction-management": "workspace:*",
"@trezor/blockchain-link-types": "workspace:*",
"@trezor/connect": "workspace:*",
"@trezor/react-utils": "workspace:*",
"@trezor/styles": "workspace:*",
"@trezor/theme": "workspace:*",
"@trezor/transport": "workspace:*",
"@trezor/urls": "workspace:*",
"@trezor/utils": "workspace:*",
"jotai": "2.15.0",
"react": "19.1.0",
"react-hook-form": "^7.71.1",
"react-native": "0.81.5",
"react-native-reanimated": "~4.1.5",
"react-native-svg": "15.15.2",
"react-redux": "9.2.0",
"web3-utils": "^4.3.2"
},
"devDependencies": {
"@suite-native/test-utils": "workspace:*"
}
}