From 9503cb6baeabe305106d0f0a8e7e19c061902d0b Mon Sep 17 00:00:00 2001 From: lukaw3d Date: Tue, 16 Jul 2024 04:59:46 +0200 Subject: [PATCH 1/3] Always show Activity heading on account page --- .../pages/AccountPage/Features/TransactionHistory/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/pages/AccountPage/Features/TransactionHistory/index.tsx b/src/app/pages/AccountPage/Features/TransactionHistory/index.tsx index 7fa21a0d12..89fc3960ad 100644 --- a/src/app/pages/AccountPage/Features/TransactionHistory/index.tsx +++ b/src/app/pages/AccountPage/Features/TransactionHistory/index.tsx @@ -102,9 +102,9 @@ export function TransactionHistory() { {pendingTransactionComponents} )} - {t('account.summary.activity', 'Activity')} )} + {t('account.summary.activity', 'Activity')} {/* eslint-enable no-restricted-syntax */} {allTransactions.length ? ( @@ -117,7 +117,7 @@ export function TransactionHistory() { background="background-front" pad="large" > - {t('account.summary.noTransactionFound', 'No transactions found.')} + {t('account.summary.noTransactionFound', 'No transactions found.')} )} From 4203665ca64980a2fda2ea0a1b1f671387737fda Mon Sep 17 00:00:00 2001 From: lukaw3d Date: Tue, 16 Jul 2024 05:01:12 +0200 Subject: [PATCH 2/3] Remove headings from staking subpages --- .changelog/2009.trivial.md | 1 + .../pages/AccountPage/Features/StakeSubnavigation/index.tsx | 5 +---- .../Features/DelegationList/ActiveDelegationList.tsx | 4 ---- .../Features/DelegationList/DebondingDelegationList.tsx | 5 ----- src/app/pages/StakingPage/Features/ValidatorList/index.tsx | 2 -- src/locales/en/translation.json | 5 +---- 6 files changed, 3 insertions(+), 19 deletions(-) create mode 100644 .changelog/2009.trivial.md diff --git a/.changelog/2009.trivial.md b/.changelog/2009.trivial.md new file mode 100644 index 0000000000..230a660aae --- /dev/null +++ b/.changelog/2009.trivial.md @@ -0,0 +1 @@ +Remove headings from staking subpages diff --git a/src/app/pages/AccountPage/Features/StakeSubnavigation/index.tsx b/src/app/pages/AccountPage/Features/StakeSubnavigation/index.tsx index 071af0cf06..c442253de0 100644 --- a/src/app/pages/AccountPage/Features/StakeSubnavigation/index.tsx +++ b/src/app/pages/AccountPage/Features/StakeSubnavigation/index.tsx @@ -58,10 +58,7 @@ export function StakeSubnavigation() { gap="none" wrap > - + { - const { t } = useTranslation() const delegations = useSelector(selectActiveDelegations) return ( <> -
{t('delegations.activeDelegations', 'Active delegations')}
diff --git a/src/app/pages/StakingPage/Features/DelegationList/DebondingDelegationList.tsx b/src/app/pages/StakingPage/Features/DelegationList/DebondingDelegationList.tsx index a2110f3f23..bb222f61d3 100644 --- a/src/app/pages/StakingPage/Features/DelegationList/DebondingDelegationList.tsx +++ b/src/app/pages/StakingPage/Features/DelegationList/DebondingDelegationList.tsx @@ -1,22 +1,17 @@ -import { Header } from 'app/components/Header' import { selectDebondingDelegations } from 'app/state/staking/selectors' import { Box } from 'grommet/es6/components/Box' -import React from 'react' -import { useTranslation } from 'react-i18next' import { useSelector } from 'react-redux' import { DelegationList } from '.' import { StakeSubnavigation } from '../../../AccountPage/Features/StakeSubnavigation' export const DebondingDelegationList = () => { - const { t } = useTranslation() const delegations = useSelector(selectDebondingDelegations) return ( <> -
{t('delegations.debondingDelegations', 'Debonding delegations')}
diff --git a/src/app/pages/StakingPage/Features/ValidatorList/index.tsx b/src/app/pages/StakingPage/Features/ValidatorList/index.tsx index 47733cac3d..783866599a 100644 --- a/src/app/pages/StakingPage/Features/ValidatorList/index.tsx +++ b/src/app/pages/StakingPage/Features/ValidatorList/index.tsx @@ -4,7 +4,6 @@ * */ import { AmountFormatter } from 'app/components/AmountFormatter' -import { Header } from 'app/components/Header' import { ErrorFormatter } from 'app/components/ErrorFormatter' import { ShortAddress } from 'app/components/ShortAddress' import { ValidatorStatus } from 'app/pages/StakingPage/Features/ValidatorList/ValidatorStatus' @@ -119,7 +118,6 @@ export const ValidatorList = memo((props: Props) => { -
{t('common.validators', 'Validators')}
{updateValidatorsError && (

{t('account.validator.loadingError', "Couldn't load validators.")} diff --git a/src/locales/en/translation.json b/src/locales/en/translation.json index 717bcf46d7..88c624fdbd 100644 --- a/src/locales/en/translation.json +++ b/src/locales/en/translation.json @@ -36,8 +36,7 @@ "activeDelegations": "Staked", "debondingDelegations": "Debonding", "mobileActiveDelegations": "Staked", - "mobileDebondingDelegations": "Debonding", - "validators": "Validators" + "mobileDebondingDelegations": "Debonding" }, "summary": { "activity": "Activity", @@ -136,8 +135,6 @@ "thisIsYourPhrase": "This is your mnemonic" }, "delegations": { - "activeDelegations": "Active delegations", - "debondingDelegations": "Debonding delegations", "debondingTimeEnd": "End of debonding", "delegatedAmount": "Delegated amount", "loadingError": "Couldn't load delegations.", From b8ca902a5589d5192ceef9351a11eb5cdabc1f55 Mon Sep 17 00:00:00 2001 From: lukaw3d Date: Tue, 16 Jul 2024 05:27:30 +0200 Subject: [PATCH 3/3] Update jest snapshots --- .../__snapshots__/index.test.tsx.snap | 23 +- .../ActiveDelegationList.test.tsx.snap | 172 +++++------ .../DebondingDelegationList.test.tsx.snap | 162 +++++------ .../__snapshots__/index.test.tsx.snap | 268 +++++++----------- 4 files changed, 259 insertions(+), 366 deletions(-) diff --git a/src/app/pages/AccountPage/__tests__/__snapshots__/index.test.tsx.snap b/src/app/pages/AccountPage/__tests__/__snapshots__/index.test.tsx.snap index f9a2cee477..0aeb0203cd 100644 --- a/src/app/pages/AccountPage/__tests__/__snapshots__/index.test.tsx.snap +++ b/src/app/pages/AccountPage/__tests__/__snapshots__/index.test.tsx.snap @@ -272,7 +272,7 @@ exports[` should match snapshot 1`] = ` flex-direction: column; } -.c31 { +.c32 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -393,7 +393,7 @@ exports[` should match snapshot 1`] = ` line-height: 24px; } -.c32 { +.c31 { font-size: 26px; line-height: 32px; max-width: 624px; @@ -793,13 +793,13 @@ exports[` should match snapshot 1`] = ` } @media only screen and (max-width:768px) { - .c31 { + .c32 { border: solid 1px #EDEDED; } } @media only screen and (max-width:768px) { - .c31 { + .c32 { padding: 24px; } } @@ -829,7 +829,7 @@ exports[` should match snapshot 1`] = ` } @media only screen and (max-width:768px) { - .c32 { + .c31 { font-size: 18px; line-height: 24px; max-width: 432px; @@ -1168,14 +1168,19 @@ exports[` should match snapshot 1`] = `

-
-

+
+ No transactions found. -

+
diff --git a/src/app/pages/StakingPage/Features/DelegationList/__tests__/__snapshots__/ActiveDelegationList.test.tsx.snap b/src/app/pages/StakingPage/Features/DelegationList/__tests__/__snapshots__/ActiveDelegationList.test.tsx.snap index 7e1b83085e..f2fba64d4e 100644 --- a/src/app/pages/StakingPage/Features/DelegationList/__tests__/__snapshots__/ActiveDelegationList.test.tsx.snap +++ b/src/app/pages/StakingPage/Features/DelegationList/__tests__/__snapshots__/ActiveDelegationList.test.tsx.snap @@ -1,7 +1,7 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[` should match snapshot 1`] = ` -.c12 { +.c11 { display: inline-block; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; @@ -12,30 +12,30 @@ exports[` should match snapshot 1`] = ` stroke: currentColor; } -.c12 g { +.c11 g { fill: inherit; stroke: inherit; } -.c12 *:not([stroke])[fill='none'] { +.c11 *:not([stroke])[fill='none'] { stroke-width: 0; } -.c12 *[stroke*='#'], -.c12 *[STROKE*='#'] { +.c11 *[stroke*='#'], +.c11 *[STROKE*='#'] { stroke: inherit; fill: none; } -.c12 *[fill-rule], -.c12 *[FILL-RULE], -.c12 *[fill*='#'], -.c12 *[FILL*='#'] { +.c11 *[fill-rule], +.c11 *[FILL-RULE], +.c11 *[fill*='#'], +.c11 *[FILL*='#'] { fill: inherit; stroke: none; } -.c19 { +.c18 { display: inline-block; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; @@ -46,25 +46,25 @@ exports[` should match snapshot 1`] = ` stroke: #2ad5ab; } -.c19 g { +.c18 g { fill: inherit; stroke: inherit; } -.c19 *:not([stroke])[fill='none'] { +.c18 *:not([stroke])[fill='none'] { stroke-width: 0; } -.c19 *[stroke*='#'], -.c19 *[STROKE*='#'] { +.c18 *[stroke*='#'], +.c18 *[STROKE*='#'] { stroke: inherit; fill: none; } -.c19 *[fill-rule], -.c19 *[FILL-RULE], -.c19 *[fill*='#'], -.c19 *[FILL*='#'] { +.c18 *[fill-rule], +.c18 *[FILL-RULE], +.c18 *[fill*='#'], +.c18 *[FILL*='#'] { fill: inherit; stroke: none; } @@ -100,22 +100,13 @@ exports[` should match snapshot 1`] = ` padding: 24px; } -.c2 { - margin-top: 0px; - font-size: 34px; - line-height: 40px; - max-width: 816px; - font-weight: 600; - overflow-wrap: break-word; -} - -.c20 { +.c19 { font-size: 18px; line-height: 24px; color: #0500e2; } -.c5 { +.c4 { position: relative; box-sizing: border-box; display: -webkit-box; @@ -132,7 +123,7 @@ exports[` should match snapshot 1`] = ` background-color: unset; } -.c6 { +.c5 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -140,7 +131,7 @@ exports[` should match snapshot 1`] = ` text-align: left; } -.c7 { +.c6 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -157,7 +148,7 @@ exports[` should match snapshot 1`] = ` border-bottom-style: solid; } -.c8 { +.c7 { position: relative; display: -webkit-box; display: -webkit-flex; @@ -176,7 +167,7 @@ exports[` should match snapshot 1`] = ` padding-right: 16px; } -.c17 { +.c16 { position: relative; display: -webkit-box; display: -webkit-flex; @@ -193,7 +184,7 @@ exports[` should match snapshot 1`] = ` word-break: break-word; } -.c9 { +.c8 { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; @@ -210,7 +201,7 @@ exports[` should match snapshot 1`] = ` max-width: 34px; } -.c10 { +.c9 { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; @@ -225,7 +216,7 @@ exports[` should match snapshot 1`] = ` min-width: 15ex; } -.c13 { +.c12 { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; @@ -246,7 +237,7 @@ exports[` should match snapshot 1`] = ` justify-content: flex-end; } -.c14 { +.c13 { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; @@ -267,11 +258,11 @@ exports[` should match snapshot 1`] = ` justify-content: flex-end; } -.c18 { +.c17 { font-weight: 400; } -.c16 { +.c15 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -291,13 +282,13 @@ exports[` should match snapshot 1`] = ` min-height: 48px; } -.c16:not(:last-of-type) { +.c15:not(:last-of-type) { border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #AAAAAAaa; } -.c16:hover { +.c15:hover { color: unset; background-color: #88888833; -webkit-transition-duration: 0.15s; @@ -310,11 +301,11 @@ exports[` should match snapshot 1`] = ` outline-color: unset; } -.c16:hover { +.c15:hover { cursor: pointer; } -.c11 { +.c10 { display: -webkit-inline-box; display: -webkit-inline-flex; display: -ms-inline-flexbox; @@ -331,17 +322,17 @@ exports[` should match snapshot 1`] = ` user-select: none; } -.c11:focus { +.c10:focus { outline: none; color: unset; } -.c11:hover { +.c10:hover { color: unset; } -.c11 span.__rdt_custom_sort_icon__ i, -.c11 span.__rdt_custom_sort_icon__ svg { +.c10 span.__rdt_custom_sort_icon__ i, +.c10 span.__rdt_custom_sort_icon__ svg { opacity: 0; color: inherit; font-size: 18px !important; @@ -359,23 +350,23 @@ exports[` should match snapshot 1`] = ` transition-property: transform; } -.c11 span.__rdt_custom_sort_icon__.asc i, -.c11 span.__rdt_custom_sort_icon__.asc svg { +.c10 span.__rdt_custom_sort_icon__.asc i, +.c10 span.__rdt_custom_sort_icon__.asc svg { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } -.c11:hover { +.c10:hover { cursor: pointer; } -.c11:hover span, -.c11:hover span.__rdt_custom_sort_icon__ * { +.c10:hover span, +.c10:hover span.__rdt_custom_sort_icon__ * { opacity: 1; } -.c15 { +.c14 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -385,7 +376,7 @@ exports[` should match snapshot 1`] = ` flex-direction: column; } -.c3 { +.c2 { position: relative; width: 100%; border-radius: inherit; @@ -394,7 +385,7 @@ exports[` should match snapshot 1`] = ` min-height: 0; } -.c4 { +.c3 { position: relative; width: 100%; display: table; @@ -418,22 +409,8 @@ exports[` should match snapshot 1`] = ` } -@media only screen and (max-width:768px) { - .c2 { - margin-top: 0px; - } -} - -@media only screen and (max-width:768px) { - .c2 { - font-size: 26px; - line-height: 32px; - max-width: 624px; - } -} - @media screen and (max-width:599px) { - .c14 { + .c13 { display: none; } } @@ -449,40 +426,35 @@ exports[` should match snapshot 1`] = `
-

- delegations.activeDelegations -

should match snapshot 1`] = ` > should match snapshot 1`] = `
should match snapshot 1`] = ` > should match snapshot 1`] = `
should match snapshot 1`] = ` > should match snapshot 1`] = `
should match snapshot 1`] = `
should match snapshot 1`] = ` test-validator
should match snapshot 1`] = ` 0.0000001
should match snapshot 1`] = `
should match snapshot 1`] = ` -.c12 { +.c11 { display: inline-block; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; @@ -12,25 +12,25 @@ exports[` should match snapshot 1`] = ` stroke: currentColor; } -.c12 g { +.c11 g { fill: inherit; stroke: inherit; } -.c12 *:not([stroke])[fill='none'] { +.c11 *:not([stroke])[fill='none'] { stroke-width: 0; } -.c12 *[stroke*='#'], -.c12 *[STROKE*='#'] { +.c11 *[stroke*='#'], +.c11 *[STROKE*='#'] { stroke: inherit; fill: none; } -.c12 *[fill-rule], -.c12 *[FILL-RULE], -.c12 *[fill*='#'], -.c12 *[FILL*='#'] { +.c11 *[fill-rule], +.c11 *[FILL-RULE], +.c11 *[fill*='#'], +.c11 *[FILL*='#'] { fill: inherit; stroke: none; } @@ -66,22 +66,13 @@ exports[` should match snapshot 1`] = ` padding: 24px; } -.c2 { - margin-top: 0px; - font-size: 34px; - line-height: 40px; - max-width: 816px; - font-weight: 600; - overflow-wrap: break-word; -} - -.c20 { +.c19 { font-size: 18px; line-height: 24px; color: #0500e2; } -.c5 { +.c4 { position: relative; box-sizing: border-box; display: -webkit-box; @@ -98,7 +89,7 @@ exports[` should match snapshot 1`] = ` background-color: unset; } -.c6 { +.c5 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -106,7 +97,7 @@ exports[` should match snapshot 1`] = ` text-align: left; } -.c7 { +.c6 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -123,7 +114,7 @@ exports[` should match snapshot 1`] = ` border-bottom-style: solid; } -.c8 { +.c7 { position: relative; display: -webkit-box; display: -webkit-flex; @@ -142,7 +133,7 @@ exports[` should match snapshot 1`] = ` padding-right: 16px; } -.c18 { +.c17 { position: relative; display: -webkit-box; display: -webkit-flex; @@ -159,7 +150,7 @@ exports[` should match snapshot 1`] = ` word-break: break-word; } -.c9 { +.c8 { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; @@ -176,7 +167,7 @@ exports[` should match snapshot 1`] = ` max-width: 34px; } -.c10 { +.c9 { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; @@ -191,7 +182,7 @@ exports[` should match snapshot 1`] = ` min-width: 15ex; } -.c13 { +.c12 { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; @@ -212,7 +203,7 @@ exports[` should match snapshot 1`] = ` justify-content: flex-end; } -.c14 { +.c13 { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; @@ -227,11 +218,11 @@ exports[` should match snapshot 1`] = ` min-width: 100px; } -.c19 { +.c18 { font-weight: 400; } -.c17 { +.c16 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -251,13 +242,13 @@ exports[` should match snapshot 1`] = ` min-height: 48px; } -.c17:not(:last-of-type) { +.c16:not(:last-of-type) { border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #AAAAAAaa; } -.c17:hover { +.c16:hover { color: unset; background-color: #88888833; -webkit-transition-duration: 0.15s; @@ -270,11 +261,11 @@ exports[` should match snapshot 1`] = ` outline-color: unset; } -.c17:hover { +.c16:hover { cursor: pointer; } -.c11 { +.c10 { display: -webkit-inline-box; display: -webkit-inline-flex; display: -ms-inline-flexbox; @@ -291,17 +282,17 @@ exports[` should match snapshot 1`] = ` user-select: none; } -.c11:focus { +.c10:focus { outline: none; color: unset; } -.c11:hover { +.c10:hover { color: unset; } -.c11 span.__rdt_custom_sort_icon__ i, -.c11 span.__rdt_custom_sort_icon__ svg { +.c10 span.__rdt_custom_sort_icon__ i, +.c10 span.__rdt_custom_sort_icon__ svg { opacity: 0; color: inherit; font-size: 18px !important; @@ -319,23 +310,23 @@ exports[` should match snapshot 1`] = ` transition-property: transform; } -.c11 span.__rdt_custom_sort_icon__.asc i, -.c11 span.__rdt_custom_sort_icon__.asc svg { +.c10 span.__rdt_custom_sort_icon__.asc i, +.c10 span.__rdt_custom_sort_icon__.asc svg { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } -.c11:hover { +.c10:hover { cursor: pointer; } -.c11:hover span, -.c11:hover span.__rdt_custom_sort_icon__ * { +.c10:hover span, +.c10:hover span.__rdt_custom_sort_icon__ * { opacity: 1; } -.c15 { +.c14 { display: -webkit-inline-box; display: -webkit-inline-flex; display: -ms-inline-flexbox; @@ -353,16 +344,16 @@ exports[` should match snapshot 1`] = ` color: unset; } -.c15:focus { +.c14:focus { outline: none; } -.c15:hover:not(:focus) { +.c14:hover:not(:focus) { color: unset; } -.c15 span.__rdt_custom_sort_icon__ i, -.c15 span.__rdt_custom_sort_icon__ svg { +.c14 span.__rdt_custom_sort_icon__ i, +.c14 span.__rdt_custom_sort_icon__ svg { opacity: 1; color: inherit; font-size: 18px !important; @@ -380,18 +371,18 @@ exports[` should match snapshot 1`] = ` transition-property: transform; } -.c15 span.__rdt_custom_sort_icon__.asc i, -.c15 span.__rdt_custom_sort_icon__.asc svg { +.c14 span.__rdt_custom_sort_icon__.asc i, +.c14 span.__rdt_custom_sort_icon__.asc svg { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } -.c15:hover { +.c14:hover { cursor: pointer; } -.c16 { +.c15 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -401,7 +392,7 @@ exports[` should match snapshot 1`] = ` flex-direction: column; } -.c3 { +.c2 { position: relative; width: 100%; border-radius: inherit; @@ -410,7 +401,7 @@ exports[` should match snapshot 1`] = ` min-height: 0; } -.c4 { +.c3 { position: relative; width: 100%; display: table; @@ -434,20 +425,6 @@ exports[` should match snapshot 1`] = ` } -@media only screen and (max-width:768px) { - .c2 { - margin-top: 0px; - } -} - -@media only screen and (max-width:768px) { - .c2 { - font-size: 26px; - line-height: 32px; - max-width: 624px; - } -} - @media only screen and (max-width:768px) { } @@ -459,37 +436,32 @@ exports[` should match snapshot 1`] = `
-

- delegations.debondingDelegations -

should match snapshot 1`] = ` > should match snapshot 1`] = `
should match snapshot 1`] = ` > should match snapshot 1`] = `
should match snapshot 1`] = ` > should match snapshot 1`] = `
should match snapshot 1`] = ` test-validator
should match snapshot 1`] = ` 0.0000001
should match snapshot 1`] = `
empty should match snapshot 1`] = ` padding: 24px; } -.c2 { - margin-top: 0px; - font-size: 34px; - line-height: 40px; - max-width: 816px; - font-weight: 600; - overflow-wrap: break-word; -} - -.c5 { +.c4 { position: relative; box-sizing: border-box; display: -webkit-box; @@ -58,7 +49,7 @@ exports[` empty should match snapshot 1`] = ` background-color: unset; } -.c3 { +.c2 { position: relative; width: 100%; border-radius: inherit; @@ -67,13 +58,13 @@ exports[` empty should match snapshot 1`] = ` min-height: 0; } -.c4 { +.c3 { position: relative; width: 100%; display: table; } -.c6 { +.c5 { box-sizing: border-box; width: 100%; height: 100%; @@ -107,20 +98,6 @@ exports[` empty should match snapshot 1`] = ` } -@media only screen and (max-width:768px) { - .c2 { - margin-top: 0px; - } -} - -@media only screen and (max-width:768px) { - .c2 { - font-size: 26px; - line-height: 32px; - max-width: 624px; - } -} - @media only screen and (max-width:768px) { } @@ -132,23 +109,18 @@ exports[` empty should match snapshot 1`] = `
-

- common.validators -

empty should match snapshot 1`] = ` `; exports[` list should match snapshot 1`] = ` -.c12 { +.c11 { display: inline-block; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; @@ -175,30 +147,30 @@ exports[` list should match snapshot 1`] = ` stroke: currentColor; } -.c12 g { +.c11 g { fill: inherit; stroke: inherit; } -.c12 *:not([stroke])[fill='none'] { +.c11 *:not([stroke])[fill='none'] { stroke-width: 0; } -.c12 *[stroke*='#'], -.c12 *[STROKE*='#'] { +.c11 *[stroke*='#'], +.c11 *[STROKE*='#'] { stroke: inherit; fill: none; } -.c12 *[fill-rule], -.c12 *[FILL-RULE], -.c12 *[fill*='#'], -.c12 *[FILL*='#'] { +.c11 *[fill-rule], +.c11 *[FILL-RULE], +.c11 *[fill*='#'], +.c11 *[FILL*='#'] { fill: inherit; stroke: none; } -.c19 { +.c18 { display: inline-block; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; @@ -209,30 +181,30 @@ exports[` list should match snapshot 1`] = ` stroke: #2ad5ab; } -.c19 g { +.c18 g { fill: inherit; stroke: inherit; } -.c19 *:not([stroke])[fill='none'] { +.c18 *:not([stroke])[fill='none'] { stroke-width: 0; } -.c19 *[stroke*='#'], -.c19 *[STROKE*='#'] { +.c18 *[stroke*='#'], +.c18 *[STROKE*='#'] { stroke: inherit; fill: none; } -.c19 *[fill-rule], -.c19 *[FILL-RULE], -.c19 *[fill*='#'], -.c19 *[FILL*='#'] { +.c18 *[fill-rule], +.c18 *[FILL-RULE], +.c18 *[fill*='#'], +.c18 *[FILL*='#'] { fill: inherit; stroke: none; } -.c21 { +.c20 { display: inline-block; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; @@ -243,25 +215,25 @@ exports[` list should match snapshot 1`] = ` stroke: #d24c00; } -.c21 g { +.c20 g { fill: inherit; stroke: inherit; } -.c21 *:not([stroke])[fill='none'] { +.c20 *:not([stroke])[fill='none'] { stroke-width: 0; } -.c21 *[stroke*='#'], -.c21 *[STROKE*='#'] { +.c20 *[stroke*='#'], +.c20 *[STROKE*='#'] { stroke: inherit; fill: none; } -.c21 *[fill-rule], -.c21 *[FILL-RULE], -.c21 *[fill*='#'], -.c21 *[FILL*='#'] { +.c20 *[fill-rule], +.c20 *[FILL-RULE], +.c20 *[fill*='#'], +.c20 *[FILL*='#'] { fill: inherit; stroke: none; } @@ -297,22 +269,13 @@ exports[` list should match snapshot 1`] = ` padding: 24px; } -.c20 { +.c19 { font-size: 18px; line-height: 24px; color: #0500e2; } -.c2 { - margin-top: 0px; - font-size: 34px; - line-height: 40px; - max-width: 816px; - font-weight: 600; - overflow-wrap: break-word; -} - -.c5 { +.c4 { position: relative; box-sizing: border-box; display: -webkit-box; @@ -329,7 +292,7 @@ exports[` list should match snapshot 1`] = ` background-color: unset; } -.c6 { +.c5 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -337,7 +300,7 @@ exports[` list should match snapshot 1`] = ` text-align: left; } -.c7 { +.c6 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -354,7 +317,7 @@ exports[` list should match snapshot 1`] = ` border-bottom-style: solid; } -.c8 { +.c7 { position: relative; display: -webkit-box; display: -webkit-flex; @@ -373,7 +336,7 @@ exports[` list should match snapshot 1`] = ` padding-right: 16px; } -.c17 { +.c16 { position: relative; display: -webkit-box; display: -webkit-flex; @@ -390,7 +353,7 @@ exports[` list should match snapshot 1`] = ` word-break: break-word; } -.c9 { +.c8 { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; @@ -407,7 +370,7 @@ exports[` list should match snapshot 1`] = ` max-width: 34px; } -.c10 { +.c9 { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; @@ -422,7 +385,7 @@ exports[` list should match snapshot 1`] = ` min-width: 15ex; } -.c13 { +.c12 { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; @@ -443,7 +406,7 @@ exports[` list should match snapshot 1`] = ` justify-content: flex-end; } -.c14 { +.c13 { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; @@ -464,11 +427,11 @@ exports[` list should match snapshot 1`] = ` justify-content: flex-end; } -.c18 { +.c17 { font-weight: 400; } -.c16 { +.c15 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -488,13 +451,13 @@ exports[` list should match snapshot 1`] = ` min-height: 48px; } -.c16:not(:last-of-type) { +.c15:not(:last-of-type) { border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #AAAAAAaa; } -.c16:hover { +.c15:hover { color: unset; background-color: #88888833; -webkit-transition-duration: 0.15s; @@ -507,11 +470,11 @@ exports[` list should match snapshot 1`] = ` outline-color: unset; } -.c16:hover { +.c15:hover { cursor: pointer; } -.c11 { +.c10 { display: -webkit-inline-box; display: -webkit-inline-flex; display: -ms-inline-flexbox; @@ -528,17 +491,17 @@ exports[` list should match snapshot 1`] = ` user-select: none; } -.c11:focus { +.c10:focus { outline: none; color: unset; } -.c11:hover { +.c10:hover { color: unset; } -.c11 span.__rdt_custom_sort_icon__ i, -.c11 span.__rdt_custom_sort_icon__ svg { +.c10 span.__rdt_custom_sort_icon__ i, +.c10 span.__rdt_custom_sort_icon__ svg { opacity: 0; color: inherit; font-size: 18px !important; @@ -556,23 +519,23 @@ exports[` list should match snapshot 1`] = ` transition-property: transform; } -.c11 span.__rdt_custom_sort_icon__.asc i, -.c11 span.__rdt_custom_sort_icon__.asc svg { +.c10 span.__rdt_custom_sort_icon__.asc i, +.c10 span.__rdt_custom_sort_icon__.asc svg { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } -.c11:hover { +.c10:hover { cursor: pointer; } -.c11:hover span, -.c11:hover span.__rdt_custom_sort_icon__ * { +.c10:hover span, +.c10:hover span.__rdt_custom_sort_icon__ * { opacity: 1; } -.c15 { +.c14 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -582,7 +545,7 @@ exports[` list should match snapshot 1`] = ` flex-direction: column; } -.c3 { +.c2 { position: relative; width: 100%; border-radius: inherit; @@ -591,7 +554,7 @@ exports[` list should match snapshot 1`] = ` min-height: 0; } -.c4 { +.c3 { position: relative; width: 100%; display: table; @@ -611,28 +574,14 @@ exports[` list should match snapshot 1`] = ` } -@media only screen and (max-width:768px) { - .c2 { - margin-top: 0px; - } -} - -@media only screen and (max-width:768px) { - .c2 { - font-size: 26px; - line-height: 32px; - max-width: 624px; - } -} - @media screen and (max-width:599px) { - .c13 { + .c12 { display: none; } } @media screen and (max-width:599px) { - .c14 { + .c13 { display: none; } } @@ -648,40 +597,35 @@ exports[` list should match snapshot 1`] = `
-

- common.validators -

list should match snapshot 1`] = ` > list should match snapshot 1`] = `
list should match snapshot 1`] = ` > list should match snapshot 1`] = `
list should match snapshot 1`] = ` > list should match snapshot 1`] = `
list should match snapshot 1`] = `
list should match snapshot 1`] = ` test-validator1
list should match snapshot 1`] = ` 0
list should match snapshot 1`] = `
list should match snapshot 1`] = `
list should match snapshot 1`] = `
list should match snapshot 1`] = ` test-validator3
list should match snapshot 1`] = ` 0
list should match snapshot 1`] = `
list should match snapshot 1`] = `
list should match snapshot 1`] = `
list should match snapshot 1`] = ` test-validator2
list should match snapshot 1`] = ` 0
list should match snapshot 1`] = `