From 2bc7881bd99de0cc3bba302597a714e2adca0e51 Mon Sep 17 00:00:00 2001 From: Manuel Alessandro Collazo Date: Tue, 23 May 2023 16:09:11 +0100 Subject: [PATCH] 7.2.6 (#384) * fix: always show native assets regardless of denoms (#348) * St 353 display chain selection on inactive chain click in OtherChainButtons (#329) * WIP: chains display prefs open * feat: open preferences on click * cleanup * cleanup * feat: swap terra.kitchen/utils for @terra-money/terra-utils (#321) * feat: guard against empty networks, chaindID, or lcd (#327) * feat: kado integration and updated wallet buttons (#320) * feat: kado integration and updated wallet buttons * Fix passing/not passing * fix prettier * fix: always show native assets regardless of denoms * Update chain.ts * fix: hide low balance * fix: remove log * fix: code readability Changing code to follow logic for improved readability. * fix: exclude cw20 tokens --------- Co-authored-by: Mike <17463738+mwmerz@users.noreply.github.com> Co-authored-by: Alessandro Candeago <54709706+alecande11@users.noreply.github.com> Co-authored-by: Manuel Alessandro Collazo * fix: error checking (#345) * fix: error checking Error received may be empty object which is truthy in JavaScript. Check for falsy values OR empty objects when deciding if an error is truthy. * fix: Wrong error check * fix: broken history links (#380) * St 355 moon theme (#379) * changes blossom theme colors and changed some font styles mainly font-smoothing and font weight adjusted to reflect antialiased smoothing * Added navigation background and aside blurs ST-309 * changed blossom mp4 location * fixed aside blur on smaller heights * changed where the aside blurs are placed and added better management for mobile and small heights * fixed other changes I wanted in * changes colors * completed moon theme changes. Also implimented two toned cards the are on all themes along with some other small UI changes ST-355 * fixing mobile issues ST-355 * added theme stake amounts back in * changed background blob color to lighter, changed preview svg and removed staking minimums to themes * removed image I forgot to delete * St 355 pt4 (#382) * updated moon preview * changed preview colors * removed system default theme and makes it dark mode ST-433 (#383) * fix: password validation (#385) * fix: password validation * fix: onFocus password confirmation --------- Co-authored-by: plubber <51789398+ericHgorski@users.noreply.github.com> Co-authored-by: Mike <17463738+mwmerz@users.noreply.github.com> Co-authored-by: Alessandro Candeago <54709706+alecande11@users.noreply.github.com> Co-authored-by: Joshua Brigati --- src/app/App.tsx | 8 +++- .../components/ActionsBackground.module.scss | 9 +++++ src/app/components/ActionsBackground.tsx | 14 +++++++ .../components/AsideBackground.module.scss | 16 ++++++++ src/app/components/AsideBackground.tsx | 37 ++++++++++++++++++ src/app/components/NavBackgrounds.module.scss | 23 +++++++++++ src/app/components/NavBackgrounds.tsx | 32 +++++++++++++++ src/app/sections/Nav.module.scss | 3 ++ src/auth/modules/create/CreateWalletForm.tsx | 1 + .../modules/manage/ChangePasswordForm.tsx | 1 + src/auth/scripts/decrypt.ts | 14 ++++--- src/components/feedback/Fetching.tsx | 4 +- src/components/general/FinderLink.tsx | 2 +- .../layout/BackgroundBlobs.module.scss | 30 ++++++++++++++ src/components/layout/BackgroundBlobs.tsx | 20 ++++++++++ src/components/layout/Card.module.scss | 14 +++++++ src/components/layout/Card.tsx | 12 +++++- src/components/layout/Layout.module.scss | 6 +++ src/components/layout/Layout.tsx | 4 +- .../layout/PaginationButtons.module.scss | 15 +++++-- src/pages/gov/ProposalDepositors.tsx | 2 +- src/pages/gov/ProposalDeposits.tsx | 8 +++- src/pages/gov/ProposalParams.tsx | 2 +- src/pages/gov/ProposalVotes.module.scss | 5 +++ src/pages/gov/ProposalVotes.tsx | 2 +- .../gov/ProposalVotesByValidator.module.scss | 1 + src/pages/gov/ProposalVotesByValidator.tsx | 2 +- .../gov/components/VoteProgress.module.scss | 1 + src/pages/stake/Stake.tsx | 2 +- src/pages/stake/ValidatorActions.tsx | 4 +- src/pages/stake/ValidatorAddresses.tsx | 2 +- src/pages/stake/ValidatorCommission.tsx | 2 +- src/pages/wallet/AssetList.tsx | 26 ++---------- src/styles/_theme.scss | 35 +++++++++-------- src/styles/_utils.scss | 2 +- src/styles/themes/Moon/Rocket V5 schuin.mp4 | Bin 0 -> 1000779 bytes src/styles/themes/Moon/Top Large 2V7.mp4 | Bin 0 -> 725634 bytes src/styles/themes/Moon/favicon.svg | 4 +- src/styles/themes/Moon/preview.svg | 32 ++++++++++++--- src/styles/themes/themes.tsx | 8 ++-- src/txs/gov/DepositTx.tsx | 4 +- src/txs/gov/VoteTx.tsx | 2 +- src/utils/chain.ts | 6 +++ src/utils/error.ts | 14 ++++++- src/utils/localStorage/keys.ts | 2 +- 45 files changed, 349 insertions(+), 84 deletions(-) create mode 100644 src/app/components/ActionsBackground.module.scss create mode 100644 src/app/components/ActionsBackground.tsx create mode 100644 src/app/components/AsideBackground.module.scss create mode 100644 src/app/components/AsideBackground.tsx create mode 100644 src/app/components/NavBackgrounds.module.scss create mode 100644 src/app/components/NavBackgrounds.tsx create mode 100644 src/components/layout/BackgroundBlobs.module.scss create mode 100644 src/components/layout/BackgroundBlobs.tsx create mode 100644 src/styles/themes/Moon/Rocket V5 schuin.mp4 create mode 100644 src/styles/themes/Moon/Top Large 2V7.mp4 diff --git a/src/app/App.tsx b/src/app/App.tsx index f57739f19..255a99a4a 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -12,24 +12,27 @@ import UpdateExtension from "./sections/UpdateExtension" /* sidebar */ import Nav from "./sections/Nav" import Aside from "./sections/Aside" +import AsideBackground from "./components/AsideBackground" /* header */ import NetworkHeader from "./sections/NetworkHeader" import Refresh from "./sections/Refresh" import Preferences from "./sections/Preferences" import ConnectWallet from "./sections/ConnectWallet" +import ActionsBackground from "./components/ActionsBackground" +import NavBackgrounds from "./components/NavBackgrounds" /* extra */ import LatestTx from "./sections/LatestTx" import ValidatorButton from "./sections/ValidatorButton" import DevTools from "./sections/DevTools" +import BackgroundBlobs from "components/layout/BackgroundBlobs" /* init */ import InitBankBalance from "./InitBankBalance" import Wallet from "pages/wallet/Wallet" import NavButton from "./sections/NavButton" import NetworkStatus from "components/display/NetworkStatus" -import NavBackgrounds from "./sections/NavBackgrounds" const App = () => { const { element: routes } = useNav() @@ -44,6 +47,7 @@ const App = () => {