-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
6 of N pull requests. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced `MainBackground` and `SummerBall` components for enhanced visual elements. - Added `TableHeadWithTooltip` component for improved table headers. - Updated `StrategyExposureTypePicker` for selecting exposure types. - Enhanced `Table` component to support optional row details. - Added new constants for user activity and rebalancing activity columns. - **Bug Fixes** - Improved state management in the `Dropdown` component. - **Style** - Enhanced layout and hover effects across various components. - Added new CSS properties for better visual presentation. - **Documentation** - Expanded exports in the main index file for easier component access. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: sebastianPiekarczyk <sebastian@oazoapps.com>
- Loading branch information
1 parent
91f55a2
commit 280bd65
Showing
37 changed files
with
727 additions
and
349 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,5 @@ | |
max-width: 1070px; | ||
margin: 0 auto; | ||
padding: 0 var(--space-m); | ||
} | ||
z-index: 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
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 |
---|---|---|
|
@@ -16,4 +16,5 @@ | |
max-width: 1200px; | ||
margin: 0 auto; | ||
padding: 0 var(--space-m); | ||
z-index: 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
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
27 changes: 27 additions & 0 deletions
27
apps/earn-protocol/components/organisms/RebalancingActivity/columns.ts
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,27 @@ | ||
export const rebalancingActivityColumns = [ | ||
{ | ||
title: 'Purpose', | ||
key: 'purpose', | ||
sortable: false, | ||
}, | ||
{ | ||
title: 'Action', | ||
key: 'action', | ||
sortable: false, | ||
}, | ||
{ | ||
title: 'Amount', | ||
key: 'amount', | ||
sortable: false, | ||
}, | ||
{ | ||
title: 'Timestamp', | ||
key: 'timestamp', | ||
sortable: false, | ||
}, | ||
{ | ||
title: 'Provider', | ||
key: 'provider', | ||
sortable: false, | ||
}, | ||
] |
Oops, something went wrong.