Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0364a4b
pricing card layout tweaks
aeliox May 4, 2025
515ea88
subgrid layout work
aeliox May 4, 2025
f243557
wip
aeliox May 4, 2025
e33d701
new pricing card layout
aeliox May 4, 2025
a677398
changeset
aeliox May 4, 2025
0a8db5e
dedupe
aeliox May 4, 2025
a4c63a7
revert lockfile
aeliox May 4, 2025
7798e21
feedback tweaks
aeliox May 5, 2025
6d2d75e
feedback for switch
aeliox May 5, 2025
972599a
pricing card layout tweaks
aeliox May 4, 2025
9e70a10
subgrid layout work
aeliox May 4, 2025
4c6de4e
new pricing card layout
aeliox May 4, 2025
8d39f27
revert lockfile
aeliox May 4, 2025
ccf5ff2
feedback tweaks
aeliox May 5, 2025
493b516
chore(clerk-js): Remove suscriptions check from PlansContext provider
octoper May 5, 2025
ecfdb8c
chore(repo): Deduplicate
octoper May 5, 2025
d8913df
chore(clerk-js): Fix pricing table layout shift
octoper May 5, 2025
0bbd747
chore(clerk-js): Bundlewatch increase
octoper May 5, 2025
65ef192
fix(clerk-js): Don't show status row if user is not signed in on Pric…
octoper May 5, 2025
b1b773f
ci fixes
octoper May 5, 2025
ef20a7d
e2e fixes
octoper May 5, 2025
e3d6e26
remove next constraing for billing e2e tests
octoper May 5, 2025
642cd0f
fix(e2e): Fix checkout and pricing table helpers
octoper May 5, 2025
8424c30
refactor(clerk-js,types): Handle switch feedback (#5830)
alexcarpenter May 5, 2025
a0071a5
chore(clerk-js,types): Cleanup PricingTableDefault descriptors (#5832)
alexcarpenter May 5, 2025
8f508d2
chore(e2e): Fix e2e tests
octoper May 5, 2025
038225d
use span
alexcarpenter May 5, 2025
de54484
update selector
alexcarpenter May 5, 2025
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
7 changes: 7 additions & 0 deletions .changeset/old-cobras-change.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@clerk/localizations': patch
'@clerk/clerk-js': patch
'@clerk/types': patch
---

Adjusts the layout of the `PricingTable` plan cards
4 changes: 2 additions & 2 deletions integration/tests/pricing-table.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
await expect(u.po.page.getByRole('heading', { name: 'Pro' })).toBeVisible();
});

test('when signed out, clicking get started button navigates to sign in page', async ({ page, context }) => {
test('when signed out, clicking subscribe button navigates to sign in page', async ({ page, context }) => {
const u = createTestUtils({ app, page, context });
await u.po.page.goToRelative('/pricing-table');

Expand Down Expand Up @@ -101,7 +101,7 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
await u.po.pricingTable.clickManageSubscription();
await u.po.page.getByRole('button', { name: 'Cancel subscription' }).click();
await u.po.page.getByRole('alertdialog').getByRole('button', { name: 'Cancel subscription' }).click();
await expect(u.po.page.getByRole('button', { name: 'Re-subscribe' }).first()).toBeVisible();
await expect(u.po.page.getByRole('button', { name: /resubscribe|re-subscribe/i }).first()).toBeVisible();
});

test.describe('in UserProfile', () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/clerk-js/bundlewatch.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{ "path": "./dist/clerk.browser.js", "maxSize": "68KB" },
{ "path": "./dist/clerk.legacy.browser.js", "maxSize": "110KB" },
{ "path": "./dist/clerk.headless*.js", "maxSize": "52KB" },
{ "path": "./dist/ui-common*.js", "maxSize": "102.5KB" },
{ "path": "./dist/ui-common*.js", "maxSize": "104KB" },
{ "path": "./dist/vendors*.js", "maxSize": "39KB" },
{ "path": "./dist/coinbase*.js", "maxSize": "38KB" },
{ "path": "./dist/createorganization*.js", "maxSize": "5KB" },
Expand Down
Loading