Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/ConnectedTokenProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,17 @@ const connectThemeOverrides = (palette: Theme['palette']) => ({
},
},
},
MuiButton: {
styleOverrides: {
// MUI sizes icon slot children off the button size (medium 20px, large 22px),
// which beats the Icon's own size prop. Our chevrons are always 24px.
endIcon: {

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we are choosing to change this, then shouldn't we change it at the MXUI level? @platypus801

'& > *:nth-of-type(1)': {
fontSize: '24px',
},
},
},
},
MuiChip: {
styleOverrides: {
label: {
Expand Down
9 changes: 2 additions & 7 deletions src/components/InstitutionTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ import { __ } from 'src/utilities/Intl'
import { useTokens } from '@kyper/tokenprovider'

import { Button, Chip } from '@mui/material'
import { ChevronRight } from '@kyper/icon/ChevronRight'
import { InstitutionLogo } from '@mxenabled/mxui'
import { Icon, InstitutionLogo } from '@mxenabled/mxui'

import { formatUrl } from 'src/utilities/FormatUrl'
import {
Expand All @@ -34,11 +33,7 @@ export const InstitutionTile = (props) => {
aria-label={__('Add account with %1', institution.name)}
className={'institutionButton '}
data-test={`${institution.name.replace(/\s+/g, '-')}-row`}
endIcon={
!institution.is_disabled_by_client && (
<ChevronRight color={tokens.TextColor.Default} height={16} width={16} />
)
}
endIcon={!institution.is_disabled_by_client && <Icon name="chevron_right" size={24} />}
fullWidth={true}
onClick={selectInstitution}
startIcon={
Expand Down
5 changes: 2 additions & 3 deletions src/components/support/SupportMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import PropTypes from 'prop-types'

import { useTokens } from '@kyper/tokenprovider'
import { UtilityRow } from '@kyper/utilityrow'
import { ChevronRight } from '@kyper/icon/ChevronRight'
import { Text } from '@mxenabled/mxui'
import { Icon, Text } from '@mxenabled/mxui'

import { __ } from 'src/utilities/Intl'

Expand Down Expand Up @@ -32,7 +31,7 @@ export const SupportMenu = React.forwardRef((props, menuRef) => {
<UtilityRow
borderType="inset-left"
onClick={selectGeneralSupport}
rightChildren={<ChevronRight />}
rightChildren={<Icon name="chevron_right" size={24} />}
subTitle={__('Get help connecting your account')}
title={__('Request support')}
/>
Expand Down
5 changes: 2 additions & 3 deletions src/views/disclosure/DataRequested.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import { useSelector } from 'react-redux'
import PropTypes from 'prop-types'

import { useTokens } from '@kyper/tokenprovider'
import { Text } from '@mxenabled/mxui'
import { ChevronRight } from '@kyper/icon/ChevronRight'
import { Icon, Text } from '@mxenabled/mxui'
import { Link } from '@mui/material'

import { selectConnectConfig } from 'src/redux/reducers/configSlice'
Expand Down Expand Up @@ -97,7 +96,7 @@ export const DataRequested = (props) => {
style={styles.link}
>
{__('Other available data')}
<ChevronRight style={styles.chevron} />
<Icon name="chevron_right" size={16} sx={{ ml: 0.5 }} />

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Stacks for spacing

</Link>
</SlideDown>
</Fragment>
Expand Down
8 changes: 3 additions & 5 deletions src/views/disclosure/Interstitial.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ import { useSelector } from 'react-redux'
import PropTypes from 'prop-types'

import { useTokens } from '@kyper/tokenprovider'
import { Text } from '@mxenabled/mxui'
import { Icon, Text } from '@mxenabled/mxui'
import { Link as LinkIcon } from '@kyper/icon/Link'
import { Lock } from '@kyper/icon/Lock'
import { InfoOutline } from '@kyper/icon/InfoOutline'
import { ChevronRight } from '@kyper/icon/ChevronRight'
import { Link, Stack } from '@mui/material'

import { PageviewInfo } from 'src/const/Analytics'
Expand Down Expand Up @@ -176,7 +175,7 @@ export const DisclosureInterstitial = React.forwardRef((props, interstitialNavRe
variant="ParagraphSmall"
>
{__('Data requested')}
<ChevronRight style={styles.chevron} />
<Icon name="chevron_right" size={16} sx={{ marginLeft: 0.5 }} />

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Stacks for spacing

</Link>
<Link
data-test="privacy-policy-button"
Expand All @@ -198,7 +197,7 @@ export const DisclosureInterstitial = React.forwardRef((props, interstitialNavRe
>
{_p('connect/disclosure/policy/link', 'MX Privacy Policy')}

<ChevronRight style={styles.chevron} />
<Icon name="chevron_right" size={16} sx={{ marginLeft: 0.5 }} />

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Stacks for spacing

</Link>
</Stack>
</Fragment>
Expand Down Expand Up @@ -246,7 +245,6 @@ const getStyles = (tokens) => {
marginTop: tokens.Spacing.Medium,
width: 'fit-content',
},
chevron: { marginLeft: '13.02px' },
}
}

Expand Down
5 changes: 2 additions & 3 deletions src/views/disclosure/PoweredByMX.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'

import { useTokens } from '@kyper/tokenprovider'
import { ChevronRight } from '@kyper/icon/ChevronRight'
import { Icon } from '@mxenabled/mxui'
import PropTypes from 'prop-types'

import { Button } from '@mui/material'
Expand All @@ -21,7 +21,7 @@ const PoweredByMX = ({ onClick }) => {
variant="text"
>
<PoweredByMXText />
<ChevronRight style={styles.chevron} />
<Icon name="chevron_right" size={24} sx={{ marginLeft: '6px' }} />

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Stacks for spacing

</Button>
)
}
Expand All @@ -36,7 +36,6 @@ const getStyles = () => {
display: 'flex',
flexDirection: 'row',
},
chevron: { marginLeft: 4 },
}
}

Expand Down
7 changes: 3 additions & 4 deletions src/views/loginError/ImpededMemberError.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import { getInstitutionLoginUrl } from 'src/utilities/Institution'
import { goToUrlLink } from 'src/utilities/global'

import { useTokens } from '@kyper/tokenprovider'
import { Text } from '@mxenabled/mxui'
import { ChevronRight } from '@kyper/icon/ChevronRight'
import { Icon, Text } from '@mxenabled/mxui'
import { Link } from '@mui/material'

export const ImpededMemberError = ({
Expand Down Expand Up @@ -52,7 +51,7 @@ export const ImpededMemberError = ({
>
{__('Visit website')}
</Link>
<ChevronRight color={tokens.Color.Primary300} />
<Icon color="primary" name="chevron_right" size={24} />
</div>
</div>
</div>
Expand All @@ -66,7 +65,7 @@ export const ImpededMemberError = ({
</Text>
<div style={styles.actionArea}>
<Link onClick={onRefreshClick}>{__('Try again')}</Link>
<ChevronRight color={tokens.Color.Primary300} />
<Icon color="primary" name="chevron_right" size={24} />
</div>
</div>
</div>
Expand Down
5 changes: 2 additions & 3 deletions src/views/manualAccount/ManualAccountMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ import PropTypes from 'prop-types'
import { __ } from 'src/utilities/Intl'

import { useTokens } from '@kyper/tokenprovider'
import { Text } from '@mxenabled/mxui'
import { Icon, Text } from '@mxenabled/mxui'
import { UtilityRow } from '@kyper/utilityrow'
import { ChevronRight } from '@kyper/icon/ChevronRight'
import { Check } from '@kyper/icon/Check'
import { PiggyBankOutline } from '@kyper/icon/PiggyBankOutline'
import { Document } from '@kyper/icon/Document'
Expand Down Expand Up @@ -107,7 +106,7 @@ export const ManualAccountMenu = React.forwardRef((props, ref) => {
onClick={() =>
fadeOut(ref.current, 'up', 300).then(props.handleAccountTypeSelect(account_type))
}
rightChildren={<ChevronRight />}
rightChildren={<Icon name="chevron_right" size={24} />}
title={AccountTypeNames[account_type]()}
/>
))}
Expand Down
5 changes: 2 additions & 3 deletions src/views/microdeposits/AccountInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import PropTypes from 'prop-types'
import _isEmpty from 'lodash/isEmpty'

import { useTokens } from '@kyper/tokenprovider'
import { Text } from '@mxenabled/mxui'
import { ChevronRight } from '@kyper/icon/ChevronRight'
import { Icon, Text } from '@mxenabled/mxui'
import { TextField, SelectionBox } from 'src/privacy/input'
import { Button, RadioGroup, FormControl, FormLabel } from '@mui/material'

Expand Down Expand Up @@ -192,7 +191,7 @@ export const AccountInfo = (props) => {

<SlideDown delay={getNextDelay()}>
<ActionableUtilityRow
icon={<ChevronRight color={tokens.TextColor.ButtonLinkTertiary} size={16} />}
icon={<Icon color="action" name="chevron_right" size={24} />}
onClick={() => setShowFindDetails(true)}
text={__('Help finding your account number')}
/>
Expand Down
5 changes: 2 additions & 3 deletions src/views/microdeposits/RoutingNumber.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import { defer } from 'rxjs'
import _isEmpty from 'lodash/isEmpty'

import { useTokens } from '@kyper/tokenprovider'
import { Text } from '@mxenabled/mxui'
import { ChevronRight } from '@kyper/icon/ChevronRight'
import { Icon, Text } from '@mxenabled/mxui'
import { TextField } from 'src/privacy/input'
import { Button } from '@mui/material'

Expand Down Expand Up @@ -224,7 +223,7 @@ export const RoutingNumber = (props) => {

<SlideDown delay={getNextDelay()}>
<ActionableUtilityRow
icon={<ChevronRight color={tokens.TextColor.ButtonLinkTertiary} size={16} />}
icon={<Icon color="action" name="chevron_right" size={24} />}
onClick={() => setShowFindDetails(true)}
text={__('Help finding your routing number')}
/>
Expand Down
Loading