Skip to content

Commit defa503

Browse files
committed
feat(ui): restyle ConfigureSSO confirmation step
Unifies the SSO Successfully configured title with the status badge, lays out configuration details in a two-column grid, swaps the configure-again and reset connection actions to dedicated outlined and destructive buttons, and adds a sticky inactive banner inside the step footer when the connection is disabled.
1 parent 729dfea commit defa503

4 files changed

Lines changed: 190 additions & 121 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/ui': patch
3+
---
4+
5+
Restyle the ConfigureSSO confirmation step with a unified header, two-column details layout, dedicated Configure again and Reset connection buttons, and an inactive-state banner.

packages/localizations/src/en-US.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,10 @@ export const enUS: LocalizationResource = {
225225
statusSection: {
226226
activeBadge: 'Active',
227227
inactiveBadge: 'Inactive',
228-
title: 'SSO Status',
228+
title: 'SSO Successfully configured',
229+
},
230+
inactiveBanner: {
231+
title: 'SSO is inactive and you need to enable it to authenticate',
229232
},
230233
},
231234
missingManageEnterpriseConnectionsPermission: {

packages/shared/src/types/localization.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1633,6 +1633,9 @@ export type __internal_LocalizationResource = {
16331633
confirmationFieldLabel: LocalizationValue<'name'>;
16341634
submitButton: LocalizationValue;
16351635
};
1636+
inactiveBanner: {
1637+
title: LocalizationValue;
1638+
};
16361639
};
16371640
};
16381641
apiKeys: {

0 commit comments

Comments
 (0)