Skip to content

Commit 51e90c2

Browse files
committed
fix(clerk-js): Remove animations and @formkit/auto-animate library
1 parent 8b466a9 commit 51e90c2

File tree

8 files changed

+60
-100
lines changed

8 files changed

+60
-100
lines changed

package-lock.json

-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/clerk-js/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
"@emotion/cache": "11.11.0",
5757
"@emotion/react": "11.11.1",
5858
"@floating-ui/react": "0.25.4",
59-
"@formkit/auto-animate": "^0.8.1",
6059
"@zxcvbn-ts/core": "3.0.4",
6160
"@zxcvbn-ts/language-common": "3.0.4",
6261
"browser-tabs-lock": "1.2.15",

packages/clerk-js/src/ui/common/Wizard.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import React from 'react';
22

3-
import { Animated } from '../elements';
4-
53
type WizardProps = React.PropsWithChildren<{
64
step: number;
75
}>;
@@ -28,5 +26,5 @@ export const useWizard = (params: UseWizardProps = {}) => {
2826
export const Wizard = (props: WizardProps) => {
2927
const { step, children } = props;
3028

31-
return <Animated>{React.Children.toArray(children)[step]}</Animated>;
29+
return React.Children.toArray(children)[step];
3230
};

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

+46-53
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { NotificationCountBadge, useProtect } from '../../common';
44
import { useEnvironment, useOrganizationProfileContext } from '../../contexts';
55
import { Button, Col, descriptors, Flex, localizationKeys } from '../../customizables';
66
import {
7-
Animated,
87
Card,
98
Header,
109
Tab,
@@ -63,43 +62,39 @@ export const OrganizationMembers = withCardStateProvider(() => {
6362
elementId={descriptors.profilePage.setId('organizationMembers')}
6463
gap={4}
6564
>
66-
<Action.Root animate={false}>
67-
<Animated asChild>
68-
<Header.Root
69-
contentSx={{
70-
[mqu.md]: {
71-
flexDirection: 'row',
72-
width: '100%',
73-
justifyContent: 'space-between',
74-
},
75-
}}
76-
>
77-
<Header.Title
78-
localizationKey={localizationKeys('organizationProfile.start.headerTitle__members')}
79-
textVariant='h2'
80-
/>
81-
{canManageMemberships && (
82-
<Action.Trigger value='invite'>
83-
<InviteMembersButton
84-
sx={{
85-
display: 'none',
86-
[mqu.md]: {
87-
display: 'inline-flex',
88-
},
89-
}}
90-
/>
91-
</Action.Trigger>
92-
)}
93-
</Header.Root>
94-
</Animated>
65+
<Action.Root>
66+
<Header.Root
67+
contentSx={{
68+
[mqu.md]: {
69+
flexDirection: 'row',
70+
width: '100%',
71+
justifyContent: 'space-between',
72+
},
73+
}}
74+
>
75+
<Header.Title
76+
localizationKey={localizationKeys('organizationProfile.start.headerTitle__members')}
77+
textVariant='h2'
78+
/>
79+
{canManageMemberships && (
80+
<Action.Trigger value='invite'>
81+
<InviteMembersButton
82+
sx={{
83+
display: 'none',
84+
[mqu.md]: {
85+
display: 'inline-flex',
86+
},
87+
}}
88+
/>
89+
</Action.Trigger>
90+
)}
91+
</Header.Root>
9592
{canReadMemberships && (
96-
<Animated>
97-
<Action.Open value='invite'>
98-
<Action.Card>
99-
<InviteMembersScreen />
100-
</Action.Card>
101-
</Action.Open>
102-
</Animated>
93+
<Action.Open value='invite'>
94+
<Action.Card>
95+
<InviteMembersScreen />
96+
</Action.Card>
97+
</Action.Open>
10398
)}
10499
<Tabs>
105100
<TabsList>
@@ -118,22 +113,20 @@ export const OrganizationMembers = withCardStateProvider(() => {
118113
)}
119114
</TabsList>
120115
{canManageMemberships && (
121-
<Animated asChild>
122-
<Flex
123-
justify='end'
124-
sx={{
125-
width: '100%',
126-
marginLeft: 'auto',
127-
[mqu.md]: {
128-
display: 'none',
129-
},
130-
}}
131-
>
132-
<Action.Trigger value='invite'>
133-
<InviteMembersButton />
134-
</Action.Trigger>
135-
</Flex>
136-
</Animated>
116+
<Flex
117+
justify='end'
118+
sx={{
119+
width: '100%',
120+
marginLeft: 'auto',
121+
[mqu.md]: {
122+
display: 'none',
123+
},
124+
}}
125+
>
126+
<Action.Trigger value='invite'>
127+
<InviteMembersButton />
128+
</Action.Trigger>
129+
</Flex>
137130
)}
138131
<TabPanels>
139132
{canReadMemberships && (

packages/clerk-js/src/ui/elements/Action/ActionRoot.tsx

+2-8
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ import { createContextAndHook } from '@clerk/shared/react';
22
import type { PropsWithChildren } from 'react';
33
import { useCallback, useState } from 'react';
44

5-
import { Animated } from '..';
6-
7-
type ActionRootProps = PropsWithChildren<{ animate?: boolean }>;
5+
type ActionRootProps = PropsWithChildren;
86

97
export const [ActionContext, useActionContext, _] = createContextAndHook<{
108
active: string | null;
@@ -13,7 +11,7 @@ export const [ActionContext, useActionContext, _] = createContextAndHook<{
1311
}>('ActionContext');
1412

1513
export const ActionRoot = (props: ActionRootProps) => {
16-
const { animate = true, children } = props;
14+
const { children } = props;
1715
const [active, setActive] = useState<string | null>(null);
1816

1917
const close = useCallback(() => {
@@ -26,9 +24,5 @@ export const ActionRoot = (props: ActionRootProps) => {
2624

2725
const body = <ActionContext.Provider value={{ value: { active, open, close } }}>{children}</ActionContext.Provider>;
2826

29-
if (animate) {
30-
return <Animated>{body}</Animated>;
31-
}
32-
3327
return body;
3428
};

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

-15
This file was deleted.

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

+11-13
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type { ElementDescriptor, ElementId } from '../customizables/elementDescr
77
import { Plus } from '../icons';
88
import type { PropsOfComponent, ThemableCssProp } from '../styledSystem';
99
import { mqu } from '../styledSystem';
10-
import { Animated, ArrowBlockButton, Menu, MenuItem, MenuList, MenuTrigger } from '.';
10+
import { ArrowBlockButton, Menu, MenuItem, MenuList, MenuTrigger } from '.';
1111

1212
type ProfileSectionProps = Omit<PropsOfComponent<typeof Flex>, 'title'> & {
1313
title: LocalizationKey;
@@ -99,18 +99,16 @@ const ProfileSectionItemList = (props: ProfileSectionItemListProps) => {
9999
const { children, id, ...rest } = props;
100100

101101
return (
102-
<Animated asChild>
103-
<Col
104-
elementDescriptor={descriptors.profileSectionItemList}
105-
elementId={descriptors.profileSectionItemList.setId(id)}
106-
sx={t => ({
107-
gap: t.space.$0x5,
108-
})}
109-
{...rest}
110-
>
111-
{children}
112-
</Col>
113-
</Animated>
102+
<Col
103+
elementDescriptor={descriptors.profileSectionItemList}
104+
elementId={descriptors.profileSectionItemList.setId(id)}
105+
sx={t => ({
106+
gap: t.space.$0x5,
107+
})}
108+
{...rest}
109+
>
110+
{children}
111+
</Col>
114112
);
115113
};
116114

packages/clerk-js/src/ui/elements/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,3 @@ export * from './withAvatarShimmer';
5656
export * from './Card';
5757
export * from './ProfileCard';
5858
export * from './Gauge';
59-
export * from './Animated';

0 commit comments

Comments
 (0)