Skip to content

Commit 382ea0e

Browse files
authored
fix(clerk-js): Align some sections in User Profile with the designs (#2814)
* fix(clerk-js): Align some sections in User Profile with the designs * chore(repo): Add Changeset * fix(clerk-js): Align some sections in User Profile with the designs * fix(clerk-js): Fix spacing issues to mach the designs * chore(clerk-js): Revert accidental change * fix(clerk-js): Fix spacing for MFA section
1 parent 0cf4eb2 commit 382ea0e

12 files changed

+50
-17
lines changed

.changeset/nine-mangos-look.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

packages/clerk-js/src/ui/components/OrganizationProfile/DomainList.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,10 @@ export const DomainList = withProtect(
111111
{domainList.map(domain => {
112112
return (
113113
<Action.Root key={domain.id}>
114-
<ProfileSection.Item id='organizationDomains'>
114+
<ProfileSection.Item
115+
id='organizationDomains'
116+
hoverable
117+
>
115118
<Flex sx={t => ({ gap: t.space.$1 })}>
116119
<Text>{domain.name}</Text>
117120
<EnrollmentBadge organizationDomain={domain} />

packages/clerk-js/src/ui/components/UserProfile/ActiveDevicesSection.tsx

+3-5
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,10 @@ const DeviceItem = ({ session }: { session: SessionWithActivitiesResource }) =>
5353
id='activeDevices'
5454
elementDescriptor={descriptors.activeDeviceListItem}
5555
elementId={isCurrent ? descriptors.activeDeviceListItem.setId('current') : undefined}
56-
sx={t => ({
56+
hoverable
57+
sx={{
5758
alignItems: 'flex-start',
58-
padding: `${t.space.$1x5} ${t.space.$1x5} ${t.space.$1x5} ${t.space.$3}`,
59-
borderRadius: t.radii.$lg,
60-
':hover': { backgroundColor: t.colors.$neutralAlpha50 },
61-
})}
59+
}}
6260
>
6361
{status.isLoading && <FullHeightLoader />}
6462
{!status.isLoading && (

packages/clerk-js/src/ui/components/UserProfile/ConnectedAccountsSection.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ export const ConnectedAccountsSection = withCardStateProvider(() => {
6161

6262
return (
6363
<Action.Root key={account.id}>
64-
<ProfileSection.Item id='connectedAccounts'>
64+
<ProfileSection.Item
65+
id='connectedAccounts'
66+
hoverable
67+
>
6568
<Flex sx={t => ({ overflow: 'hidden', gap: t.space.$2 })}>
6669
<Image
6770
elementDescriptor={[descriptors.providerIcon]}

packages/clerk-js/src/ui/components/UserProfile/EmailsSection.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ export const EmailsSection = () => {
4848
<ProfileSection.ItemList id='emailAddresses'>
4949
{user?.emailAddresses.sort(primaryIdentificationFirst(user.primaryEmailAddressId)).map(email => (
5050
<Action.Root key={email.emailAddress}>
51-
<ProfileSection.Item id='emailAddresses'>
51+
<ProfileSection.Item
52+
id='emailAddresses'
53+
hoverable
54+
>
5255
<Flex
5356
as='span'
5457
sx={t => ({ overflow: 'hidden', gap: t.space.$1 })}

packages/clerk-js/src/ui/components/UserProfile/EnterpriseAccountsSection.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export const EnterpriseAccountsSection = () => {
2828
gap: t.space.$2,
2929
justifyContent: 'start',
3030
})}
31+
hoverable
3132
key={account.id}
3233
>
3334
<Image

packages/clerk-js/src/ui/components/UserProfile/MfaSection.tsx

+12-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ export const MfaSection = () => {
4545
<ProfileSection.ItemList id='mfa'>
4646
{showTOTP && (
4747
<Action.Root>
48-
<ProfileSection.Item id='mfa'>
48+
<ProfileSection.Item
49+
id='mfa'
50+
hoverable
51+
>
4952
<Flex sx={t => ({ gap: t.space.$2, alignItems: 'center' })}>
5053
<Icon
5154
icon={AuthApp}
@@ -73,7 +76,10 @@ export const MfaSection = () => {
7376
const isDefault = !showTOTP && phone.defaultSecondFactor;
7477
return (
7578
<Action.Root key={phone.id}>
76-
<ProfileSection.Item id='mfa'>
79+
<ProfileSection.Item
80+
id='mfa'
81+
hoverable
82+
>
7783
<Flex sx={t => ({ gap: t.space.$2, alignItems: 'center' })}>
7884
<Icon
7985
icon={Mobile}
@@ -102,7 +108,10 @@ export const MfaSection = () => {
102108

103109
{showBackupCode && (
104110
<Action.Root>
105-
<ProfileSection.Item id='mfa'>
111+
<ProfileSection.Item
112+
id='mfa'
113+
hoverable
114+
>
106115
<Flex sx={t => ({ gap: t.space.$2, alignItems: 'center' })}>
107116
<Icon
108117
icon={DotCircle}

packages/clerk-js/src/ui/components/UserProfile/PhoneSection.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ export const PhoneSection = () => {
4949
{user?.phoneNumbers.sort(primaryIdentificationFirst(user.primaryPhoneNumberId)).map(phone => (
5050
<Action.Root key={phone.id}>
5151
<Action.Closed value=''>
52-
<ProfileSection.Item id='phoneNumbers'>
52+
<ProfileSection.Item
53+
id='phoneNumbers'
54+
hoverable
55+
>
5356
<Box sx={{ whiteSpace: 'nowrap', overflow: 'hidden' }}>
5457
<Flex
5558
gap={2}

packages/clerk-js/src/ui/components/UserProfile/Web3Section.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ export const Web3Section = withCardStateProvider(() => {
4545
key={wallet.id}
4646
id='web3Wallets'
4747
align='start'
48+
hoverable
4849
>
4950
<Flex sx={t => ({ alignItems: 'center', gap: t.space.$2, width: '100%' })}>
5051
{strategyToDisplayData[strategy].iconUrl && (

packages/clerk-js/src/ui/elements/ArrowBlockButton.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ export const ArrowBlockButton = React.forwardRef<HTMLButtonElement, ArrowBlockBu
6262
justifyContent: 'center',
6363
borderColor: theme.colors.$neutralAlpha100,
6464
alignItems: 'center',
65+
padding: `${theme.space.$1x5} ${theme.space.$3} ${theme.space.$1x5} ${theme.space.$2x5}`,
6566
'--arrow-opacity': '0',
6667
'--arrow-transform': `translateX(-${theme.space.$2});`,
6768
'&:hover,&:focus ': {

packages/clerk-js/src/ui/elements/Section.tsx

+11-3
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,13 @@ const ProfileSectionItemList = (props: ProfileSectionItemListProps) => {
114114
);
115115
};
116116

117-
type ProfileSectionItemProps = Omit<PropsOfComponent<typeof Flex>, 'id'> & { id: ProfileSectionId };
117+
type ProfileSectionItemProps = Omit<PropsOfComponent<typeof Flex>, 'id'> & {
118+
id: ProfileSectionId;
119+
hoverable?: boolean;
120+
};
118121

119122
const ProfileSectionItem = (props: ProfileSectionItemProps) => {
120-
const { children, id, sx, ...rest } = props;
123+
const { children, id, sx, hoverable, ...rest } = props;
121124

122125
return (
123126
<Flex
@@ -128,8 +131,13 @@ const ProfileSectionItem = (props: ProfileSectionItemProps) => {
128131
justifyContent: 'space-between',
129132
width: '100%',
130133
alignItems: 'center',
131-
padding: `${t.space.$1x5} ${t.space.$none} ${t.space.$1x5} ${t.space.$4}`,
134+
padding: `${t.space.$2} ${t.space.$3} ${t.space.$1x5} ${t.space.$2x5}`,
132135
gap: t.space.$2,
136+
...(hoverable && {
137+
padding: `${t.space.$1} ${t.space.$1} ${t.space.$1} ${t.space.$2x5}`,
138+
borderRadius: t.radii.$lg,
139+
':hover': { backgroundColor: t.colors.$neutralAlpha50 },
140+
}),
133141
}),
134142
sx,
135143
]}

packages/clerk-js/src/ui/elements/ThreeDotsMenu.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ export const ThreeDotsMenu = (props: ThreeDotsMenuProps) => {
2424
<MenuTrigger>
2525
<Button
2626
sx={t => ({
27-
padding: t.space.$0x25,
27+
padding: t.space.$0x5,
28+
boxSizing: 'content-box',
2829
opacity: t.opacity.$inactive,
2930
':hover': {
3031
opacity: 1,
@@ -35,7 +36,7 @@ export const ThreeDotsMenu = (props: ThreeDotsMenuProps) => {
3536
>
3637
<Icon
3738
icon={ThreeDots}
38-
sx={t => ({ width: 'auto', height: t.sizes.$4 })}
39+
sx={t => ({ width: 'auto', height: t.sizes.$5 })}
3940
/>
4041
</Button>
4142
</MenuTrigger>

0 commit comments

Comments
 (0)