From 62f1fc2b8d17c60e61678763825d0776a228daf4 Mon Sep 17 00:00:00 2001 From: Yashvardhan Jagnani Date: Sat, 11 May 2024 14:30:53 +0530 Subject: [PATCH 1/2] !release: v0.5.6 --- CHANGELOG.md | 17 +++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d6797cf..470969db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog for Covalent GoldRush Kit +## 0.5.6 + +**Features** + +- Added `LatestTransactions` for a chain + +**Fixes** + +- Responsiveness of multiple components +- Added visual uniformity + - Created for `CardDetail` for all heading-value based data pairs + - Created `TableList` for all the tables + - Refactored for pagination in `TableList` to improve visual similarity +- Fixed build for Storybook +- Fixed columns in all the tables +- Improved TypeScript support + ## 0.5.5 **Features** diff --git a/package-lock.json b/package-lock.json index 4c7dd307..fec7a86a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@covalenthq/goldrush-kit", - "version": "0.5.5", + "version": "0.5.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@covalenthq/goldrush-kit", - "version": "0.5.5", + "version": "0.5.6", "license": "Apache-2.0", "dependencies": { "@covalenthq/client-sdk": "^1.0.2", diff --git a/package.json b/package.json index 6c150628..cca7e15d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@covalenthq/goldrush-kit", - "version": "0.5.5", + "version": "0.5.6", "description": "Beautifully designed React components for web3 dApp frontend. Easily fetch data from 200+ blockchains. Open-source. Customizable.", "exports": { ".": { From 75d28b7729c5780089cfb32f18ddab54567c00b4 Mon Sep 17 00:00:00 2001 From: Yashvardhan Jagnani Date: Sat, 11 May 2024 14:36:53 +0530 Subject: [PATCH 2/2] nit --- src/components/Molecules/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Molecules/index.ts b/src/components/Molecules/index.ts index 1ae2f8b1..3fad5b6b 100644 --- a/src/components/Molecules/index.ts +++ b/src/components/Molecules/index.ts @@ -11,6 +11,7 @@ export { DecodedTransaction } from "./DecodedTransaction/DecodedTransaction"; export { GasCard } from "./GasCard/GasCard"; export { LatestBlocks } from "./LatestBlocks/LatestBlocks"; export { LatestPrice } from "./LatestPrice/LatestPrice"; +export { LatestTransactions } from "./LatestTransactions/LatestTransactions"; export { NFTFloorPrice } from "./NFTs/NFTFloorPrice/NFTFloorPrice"; export { NFTSalesCount } from "./NFTs/NFTSalesCount/NFTSalesCount"; export { NFTVolume } from "./NFTs/NFTVolume/NFTVolume";