-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feat/explorer-api-pagination
- Loading branch information
Showing
13 changed files
with
78 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 0 additions & 42 deletions
42
...ws/dashboard/wallet/tab-section/activity/components/row-sections/getActivityActionPill.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"author": "Bloom Labs Ltd <[email protected]>", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@bloomwalletio/ui": "0.20.6", | ||
"@bloomwalletio/ui": "0.20.8", | ||
"@ethereumjs/rlp": "4.0.1", | ||
"@ethereumjs/tx": "5.2.1", | ||
"@ethereumjs/util": "9.0.2", | ||
|
24 changes: 24 additions & 0 deletions
24
packages/shared/src/components/avatars/GovernanceAvatar.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<script lang="ts"> | ||
import { Avatar, IconName } from '@bloomwalletio/ui' | ||
import { GovernanceAction } from '@core/activity' | ||
import { darkMode } from '@core/app/stores' | ||
export let governanceAction: GovernanceAction | ||
export let size: 'xxs' | 'xs' | 'sm' | 'base' | 'md' | 'lg' = 'md' | ||
const ICONS_FOR_ACTION = { | ||
[GovernanceAction.StartVoting]: IconName.Package, | ||
[GovernanceAction.StopVoting]: IconName.Package, | ||
[GovernanceAction.ChangedVote]: IconName.PackageCheck, | ||
[GovernanceAction.Revote]: IconName.PackageCheck, | ||
[GovernanceAction.IncreaseVotingPower]: IconName.PackagePlus, | ||
[GovernanceAction.DecreaseVotingPower]: IconName.PackageMinus, | ||
} | ||
</script> | ||
|
||
<Avatar | ||
icon={ICONS_FOR_ACTION[governanceAction]} | ||
{size} | ||
textColor="primary" | ||
backgroundColor={$darkMode ? 'surface-2-dark' : 'surface-2'} | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 0 additions & 39 deletions
39
packages/shared/src/lib/core/activity/utils/getActivityActionColor.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -343,10 +343,10 @@ | |
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" | ||
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== | ||
|
||
"@bloomwalletio/[email protected].6": | ||
version "0.20.6" | ||
resolved "https://npm.pkg.github.com/download/@bloomwalletio/ui/0.20.6/566636d21ecf9553142868a95d7bf2c64e2a3007#566636d21ecf9553142868a95d7bf2c64e2a3007" | ||
integrity sha512-MqU+umZ5IaODS0/Zi4zJdzbeVta2wbBmBz9hbSK7JEKCqFiZ9ocgmZXw5IZmb5nbWLUQUzdVUT8/C6m4pY+pCg== | ||
"@bloomwalletio/[email protected].8": | ||
version "0.20.8" | ||
resolved "https://npm.pkg.github.com/download/@bloomwalletio/ui/0.20.8/c315895a962b23263da7fe5e91ddff0eb61fb9db#c315895a962b23263da7fe5e91ddff0eb61fb9db" | ||
integrity sha512-jwailq9C48f4R+ID3wnzzC+A7KKSMI6TUM/HAX7St/qwhruK583wof05ci6JAkEnJKkj4Y6pGE5i4eHB+s48aQ== | ||
dependencies: | ||
"@floating-ui/dom" "1.4.3" | ||
"@popperjs/core" "2.11.8" | ||
|