Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(unstaking): Instant unstake forecasting #11

Open
wants to merge 19 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
5b9f9a9
fix(suite): clear snowflakeBinaryPath when disabling from external feat
karliatto Oct 17, 2024
a72b06a
fix: cursor in search-action when collaped
peter-sanderson Oct 24, 2024
b02a26b
feat(suite-native): other ethereum network account types have labels
vytick Oct 24, 2024
0bab0aa
ci(suite-native): enable to dispatch preview build by label 'build-mo…
matejkriz Oct 25, 2024
c973365
feat(suite-native): enable Solana via feature flag
vytick Oct 21, 2024
96159d2
refactor(suite-native): fresh address selector
PeKne Oct 24, 2024
8fc9876
fix(connect): usedElsewhere only for localSession
mroz22 Oct 25, 2024
3419d53
feat(protobuf): stop skipping LoadDevice
karliatto Oct 24, 2024
950a3d0
feat(protobuf): add message for LoadDevice
karliatto Oct 24, 2024
0d5b592
feat(connect): implement method LoadDevice
karliatto Oct 25, 2024
14aec5d
feat(connect-explorer): implement method LoadDevice
karliatto Oct 25, 2024
4951e2d
test(connect-popup): method fixture for LoadDevice
karliatto Oct 25, 2024
f8a4740
test(connect): add fixture for LoadDevice method
karliatto Oct 25, 2024
d710912
ci(scripts): add loadDevice to connet core ci tests
karliatto Oct 25, 2024
3eb7512
fix(connect-explorer): deeplink core mode from options
martykan Oct 25, 2024
d57732d
feat(suite-native): solana local graph history movements
vytick Oct 24, 2024
db9824d
feat(blockchain-link): implement ethereum rpc call
tomasklim Oct 9, 2024
8ab607c
feat(connect): implement ethereum rpc call
tomasklim Oct 9, 2024
3f593fe
feat(suite): add staking/unstaking instant amount forecasting
tomasklim Oct 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: cursor in search-action when collaped
peter-sanderson committed Oct 25, 2024
commit a72b06ae4b20a7a1f4992769371e1dea18996639
4 changes: 4 additions & 0 deletions packages/suite/src/components/wallet/SearchAction.tsx
Original file line number Diff line number Diff line change
@@ -36,9 +36,12 @@ const StyledInput = styled(Input)<{ $isExpanded: boolean }>`
overflow: hidden;
border-radius: ${borders.radii.full};

cursor: ${({ $isExpanded }) => (!$isExpanded ? 'pointer' : undefined)};

input {
height: ${INPUT_WIDTH};
border: none;
cursor: ${({ $isExpanded }) => (!$isExpanded ? 'pointer' : undefined)};
}
`;

@@ -112,6 +115,7 @@ export const SearchAction = ({
}
placeholder={isExpanded ? translationString(placeholder) : undefined}
onChange={e => onSearch(e.target.value)}
onClick={!isExpanded ? openAndSelect : undefined}
onBlur={onBlur}
onKeyDown={onKeyDown}
value={searchQuery}