-
Notifications
You must be signed in to change notification settings - Fork 331
/
Copy pathappearance.ts
781 lines (701 loc) · 27.9 KB
/
appearance.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
import type * as CSS from 'csstype';
import type {
AlertId,
CardActionId,
FieldId,
MenuId,
OrganizationPreviewId,
ProfilePageId,
ProfileSectionId,
SelectId,
UserPreviewId,
} from './elementIds';
import type { EnterpriseProvider } from './enterpriseAccount';
import type { OAuthProvider } from './oauth';
import type { SamlIdpSlug } from './saml';
import type { BuiltInColors, TransparentColor } from './theme';
import type { Web3Provider } from './web3';
type CSSProperties = CSS.PropertiesFallback<number | string>;
type CSSPropertiesWithMultiValues = { [K in keyof CSSProperties]: CSSProperties[K] };
type CSSPseudos = { [K in CSS.Pseudos as `&${K}`]?: CSSObject };
interface CSSObject extends CSSPropertiesWithMultiValues, CSSPseudos {}
type UserDefinedStyle = string | CSSObject;
type Shade =
| '25'
| '50'
| '100'
| '150'
| '200'
| '300'
| '400'
| '500'
| '600'
| '700'
| '750'
| '800'
| '850'
| '900'
| '950';
export type ColorScale<T = string> = Record<Shade, T>;
export type AlphaColorScale<T = string> = {
[K in Shade]: T;
};
export type ColorScaleWithRequiredBase<T = string> = Partial<ColorScale<T>> & { '500': T };
export type CssColorOrScale = string | ColorScaleWithRequiredBase;
export type CssColorOrAlphaScale = string | AlphaColorScale;
type CssColor = string | TransparentColor | BuiltInColors;
type CssLengthUnit = string;
type FontWeightNamedValue = CSS.Properties['fontWeight'];
type FontWeightNumericValue = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
type FontWeightScale = {
normal?: FontWeightNamedValue | FontWeightNumericValue;
medium?: FontWeightNamedValue | FontWeightNumericValue;
bold?: FontWeightNamedValue | FontWeightNumericValue;
};
type WebSafeFont =
| 'Arial'
| 'Brush Script MT'
| 'Courier New'
| 'Garamond'
| 'Georgia'
| 'Helvetica'
| 'Tahoma'
| 'Times New Roman'
| 'Trebuchet MS'
| 'Verdana';
export type FontFamily = string | WebSafeFont;
type LoadingState = 'loading';
type ErrorState = 'error';
type OpenState = 'open';
type ActiveState = 'active';
export type ElementState = LoadingState | ErrorState | OpenState | ActiveState;
type ControlState = ErrorState;
/**
* A type that describes the states and the ids that we will combine
* in order to create all theming combinations
* If jsx exists, the element can also receive a typed function that returns a JSX.Element
*/
type ConfigOptions = { states: ElementState; ids: string; jsx: any };
type WithOptions<Ids = never, States = never, Jsx = never> = { ids: Ids; states: States; jsx: Jsx };
/**
* Create a type union of all state + id combinations
*/
export type StateSelectors<E extends string, S extends ElementState | undefined = never> = S extends never
? never
: `${E}__${S}`;
/**
* Create a type union consisting of the base element with all valid ids appended
*/
export type IdSelectors<E extends string, Id extends string | undefined = never> = Id extends never
? never
: `${E}__${Id}`;
/**
* Create a type union consisting of all base, base+state, base+id, base+id+state combinations
*/
type ElementPartsKeys<Name extends string, Opts extends ConfigOptions> =
| StateSelectors<Name, Opts['states']>
| IdSelectors<Name, Opts['ids']>
| StateSelectors<IdSelectors<Name, Opts['ids']>, Opts['states']>;
/**
* Create an object type mapping base elements and part combinations (base, base+state, base+id, base+id+state)
* to the value they can accept (usually a style rule, a string class or jsx)
*/
type Selectors<RootElemName extends string, Opts extends ConfigOptions> =
| Partial<Record<RootElemName, UserDefinedStyle | Opts['jsx']>>
| Partial<Record<ElementPartsKeys<RootElemName, Opts>, UserDefinedStyle>>;
/**
* Convert a kebab-cased key from ElementsConfig into a camelCased Elements key
*/
export type ElementObjectKey<K extends string> = K extends `${infer Parent}-${infer Rest}`
? `${Parent}${Capitalize<Rest>}`
: K;
/**
* A map that describes the possible combinations we need to generate
* for each unique base element
* Kebab-case is used to differentiate between the container and child elements
*/
export type ElementsConfig = {
button: WithOptions;
input: WithOptions;
checkbox: WithOptions;
radio: WithOptions;
table: WithOptions;
rootBox: WithOptions;
cardBox: WithOptions;
card: WithOptions;
actionCard: WithOptions;
popoverBox: WithOptions;
disclosureRoot: WithOptions;
disclosureTrigger: WithOptions;
disclosureContentRoot: WithOptions;
disclosureContentInner: WithOptions;
disclosureContent: WithOptions;
lineItemsRoot: WithOptions;
lineItemsDivider: WithOptions;
lineItemsGroup: WithOptions<'primary' | 'secondary' | 'tertiary'>;
lineItemsTitle: WithOptions<'primary' | 'secondary' | 'tertiary'>;
lineItemsTitleDescription: WithOptions;
lineItemsDescription: WithOptions<'primary' | 'secondary' | 'tertiary'>;
lineItemsDescriptionInner: WithOptions;
lineItemsDescriptionText: WithOptions;
lineItemsDescriptionSuffix: WithOptions;
lineItemsDescriptionPrefix: WithOptions;
logoBox: WithOptions;
logoImage: WithOptions;
header: WithOptions;
headerTitle: WithOptions;
headerSubtitle: WithOptions;
backRow: WithOptions;
backLink: WithOptions;
main: WithOptions;
footer: WithOptions;
footerItem: WithOptions;
footerAction: WithOptions<CardActionId>;
footerActionText: WithOptions;
footerActionLink: WithOptions;
footerPages: WithOptions;
footerPagesLink: WithOptions<'help' | 'terms' | 'privacy'>;
socialButtonsRoot: WithOptions;
socialButtons: WithOptions;
socialButtonsIconButton: WithOptions<OAuthProvider | Web3Provider, LoadingState>;
socialButtonsBlockButton: WithOptions<OAuthProvider | Web3Provider, LoadingState>;
socialButtonsBlockButtonText: WithOptions<OAuthProvider | Web3Provider>;
socialButtonsProviderIcon: WithOptions<OAuthProvider | Web3Provider, LoadingState>;
socialButtonsProviderInitialIcon: WithOptions<OAuthProvider | Web3Provider, LoadingState>;
enterpriseButtonsProviderIcon: WithOptions<EnterpriseProvider, LoadingState>;
providerIcon: WithOptions<OAuthProvider | Web3Provider | SamlIdpSlug, LoadingState>;
providerInitialIcon: WithOptions<OAuthProvider | Web3Provider | SamlIdpSlug, LoadingState>;
alternativeMethods: WithOptions;
alternativeMethodsBlockButton: WithOptions<OAuthProvider | Web3Provider, LoadingState>;
alternativeMethodsBlockButtonText: WithOptions<OAuthProvider | Web3Provider>;
alternativeMethodsBlockButtonArrow: WithOptions<OAuthProvider | Web3Provider>;
otpCodeField: WithOptions;
otpCodeFieldInputs: WithOptions;
otpCodeFieldInput: WithOptions;
otpCodeFieldErrorText: WithOptions;
dividerRow: WithOptions;
dividerText: WithOptions;
dividerLine: WithOptions;
drawerBackdrop: WithOptions;
drawerContent: WithOptions;
drawerHeader: WithOptions;
drawerTitle: WithOptions;
drawerBody: WithOptions;
drawerFooter: WithOptions;
drawerClose: WithOptions;
drawerConfirmationBackdrop: WithOptions;
drawerConfirmationRoot: WithOptions;
drawerConfirmationTitle: WithOptions;
drawerConfirmationDescription: WithOptions;
drawerConfirmationActions: WithOptions;
formHeader: WithOptions<never, ErrorState>;
formHeaderTitle: WithOptions<never, ErrorState>;
formHeaderSubtitle: WithOptions<never, ErrorState>;
formResendCodeLink: WithOptions;
verificationLinkStatusBox: WithOptions;
verificationLinkStatusIconBox: WithOptions;
verificationLinkStatusIcon: WithOptions;
verificationLinkStatusText: WithOptions;
form: WithOptions<never, ErrorState>;
formContainer: WithOptions<never, ErrorState>;
formFieldRow: WithOptions<FieldId>;
formField: WithOptions<FieldId, ControlState>;
formFieldLabelRow: WithOptions<FieldId, ControlState>;
formFieldLabel: WithOptions<FieldId, ControlState>;
formFieldRadioGroup: WithOptions;
formFieldRadioGroupItem: WithOptions;
formFieldRadioInput: WithOptions;
formFieldRadioLabel: WithOptions<FieldId, ControlState>;
formFieldRadioLabelTitle: WithOptions<FieldId, ControlState>;
formFieldRadioLabelDescription: WithOptions<FieldId, ControlState>;
formFieldCheckboxInput: WithOptions<FieldId, ControlState>;
formFieldCheckboxLabel: WithOptions<FieldId, ControlState>;
formFieldAction: WithOptions<FieldId, ControlState>;
formFieldInput: WithOptions<FieldId, ControlState>;
formFieldErrorText: WithOptions<FieldId, ControlState>;
formFieldWarningText: WithOptions<FieldId, ControlState>;
formFieldSuccessText: WithOptions<FieldId, ControlState>;
formFieldInfoText: WithOptions<FieldId, ControlState>;
formFieldHintText: WithOptions<FieldId, ControlState>;
formButtonPrimary: WithOptions<never, ControlState | LoadingState>;
formButtonReset: WithOptions<never, ControlState | LoadingState>;
formFieldInputGroup: WithOptions;
formFieldInputShowPasswordButton: WithOptions;
formFieldInputShowPasswordIcon: WithOptions;
formFieldInputCopyToClipboardButton: WithOptions;
formFieldInputCopyToClipboardIcon: WithOptions;
phoneInputBox: WithOptions<never, ControlState>;
formInputGroup: WithOptions<never, ControlState>;
segmentedControlRoot: WithOptions;
segmentedControlButton: WithOptions;
avatarBox: WithOptions;
avatarImage: WithOptions;
avatarImageActions: WithOptions;
avatarImageActionsUpload: WithOptions;
avatarImageActionsRemove: WithOptions;
// TODO: We can remove "Popover" from these:
userButtonBox: WithOptions<never, 'open'>;
userButtonOuterIdentifier: WithOptions<never, 'open'>;
userButtonTrigger: WithOptions<never, 'open'>;
userButtonAvatarBox: WithOptions<never, 'open'>;
userButtonAvatarImage: WithOptions<never, 'open'>;
userButtonPopoverRootBox: WithOptions;
userButtonPopoverCard: WithOptions;
userButtonPopoverMain: WithOptions;
userButtonPopoverActions: WithOptions<'singleSession' | 'multiSession'>;
userButtonPopoverActionButton: WithOptions<'manageAccount' | 'addAccount' | 'signOut' | 'signOutAll'>;
userButtonPopoverActionButtonIconBox: WithOptions<'manageAccount' | 'addAccount' | 'signOut' | 'signOutAll'>;
userButtonPopoverActionButtonIcon: WithOptions<'manageAccount' | 'addAccount' | 'signOut' | 'signOutAll'>;
userButtonPopoverCustomItemButton: WithOptions<string>;
userButtonPopoverCustomItemButtonIconBox: WithOptions<string>;
userButtonPopoverActionItemButtonIcon: WithOptions<string>;
userButtonPopoverFooter: WithOptions;
userButtonPopoverFooterPagesLink: WithOptions<'terms' | 'privacy'>;
organizationSwitcherTrigger: WithOptions<never, 'open'>;
organizationSwitcherTriggerIcon: WithOptions<never, 'open'>;
organizationSwitcherPopoverRootBox: WithOptions;
organizationSwitcherPopoverCard: WithOptions;
organizationSwitcherPopoverMain: WithOptions;
organizationSwitcherPopoverActions: WithOptions;
organizationSwitcherPopoverInvitationActions: WithOptions;
organizationSwitcherPopoverInvitationActionsBox: WithOptions;
organizationSwitcherPopoverActionButton: WithOptions<
'manageOrganization' | 'createOrganization' | 'switchOrganization'
>;
organizationSwitcherPreviewButton: WithOptions;
organizationSwitcherInvitationAcceptButton: WithOptions;
organizationSwitcherPopoverActionButtonIconBox: WithOptions<'manageOrganization' | 'createOrganization'>;
organizationSwitcherPopoverActionButtonIcon: WithOptions<'manageOrganization' | 'createOrganization'>;
organizationSwitcherPopoverFooter: WithOptions;
organizationProfileMembersSearchInputIcon: WithOptions;
organizationProfileMembersSearchInput: WithOptions;
organizationListPreviewItems: WithOptions;
organizationListPreviewItem: WithOptions;
organizationListPreviewButton: WithOptions;
organizationListPreviewItemActionButton: WithOptions;
organizationListCreateOrganizationActionButton: WithOptions;
// TODO: Test this idea. Instead of userButtonUserPreview, have a userPreview__userButton instead
// Same for other repeated selectors, eg avatar
userPreview: WithOptions<UserPreviewId>;
userPreviewAvatarContainer: WithOptions<UserPreviewId>;
userPreviewAvatarBox: WithOptions<UserPreviewId>;
userPreviewAvatarImage: WithOptions<UserPreviewId>;
userPreviewAvatarIcon: WithOptions<UserPreviewId>;
userPreviewTextContainer: WithOptions<UserPreviewId>;
userPreviewMainIdentifier: WithOptions<UserPreviewId>;
userPreviewSecondaryIdentifier: WithOptions<UserPreviewId>;
organizationPreview: WithOptions<OrganizationPreviewId>;
organizationPreviewAvatarContainer: WithOptions<OrganizationPreviewId>;
organizationPreviewAvatarBox: WithOptions<OrganizationPreviewId>;
organizationPreviewAvatarImage: WithOptions<OrganizationPreviewId>;
organizationPreviewTextContainer: WithOptions<OrganizationPreviewId>;
organizationPreviewMainIdentifier: WithOptions<OrganizationPreviewId>;
organizationPreviewSecondaryIdentifier: WithOptions<OrganizationPreviewId>;
organizationAvatarUploaderContainer: WithOptions;
membersPageInviteButton: WithOptions;
identityPreview: WithOptions;
identityPreviewText: WithOptions;
identityPreviewEditButton: WithOptions;
identityPreviewEditButtonIcon: WithOptions;
passkeyIcon: WithOptions<'firstFactor'>;
accountSwitcherActionButton: WithOptions<'addAccount' | 'signOutAll'>;
accountSwitcherActionButtonIconBox: WithOptions<'addAccount' | 'signOutAll'>;
accountSwitcherActionButtonIcon: WithOptions<'addAccount' | 'signOutAll'>;
pricingTable: WithOptions;
planCard: WithOptions<string>;
planCardDefault: WithOptions;
planCardCompact: WithOptions;
planCardHeader: WithOptions;
planCardAvatarBadgeContainer: WithOptions;
planCardAvatar: WithOptions;
planCardBadgeContainer: WithOptions;
planCardBadge: WithOptions;
planCardTitle: WithOptions;
planCardDescription: WithOptions;
planCardFeatures: WithOptions;
planCardFeaturesList: WithOptions<string>;
planCardFeaturesListItem: WithOptions<string>;
planCardAction: WithOptions;
planCardPeriodToggle: WithOptions;
planCardFeeContainer: WithOptions;
planCardFee: WithOptions;
planCardFeePeriod: WithOptions;
planCardFeePeriodNotice: WithOptions;
planCardFeePeriodNoticeInner: WithOptions;
planCardFeePeriodNoticeLabel: WithOptions;
alert: WithOptions<AlertId>;
alertIcon: WithOptions<AlertId>;
alertText: WithOptions<AlertId>;
alertTextContainer: WithOptions<AlertId>;
tagInputContainer: WithOptions;
tagPillIcon: WithOptions;
tagPillContainer: WithOptions;
tabPanel: WithOptions;
tabButton: WithOptions;
tabListContainer: WithOptions;
tableHead: WithOptions;
paginationButton: WithOptions;
paginationButtonIcon: WithOptions;
paginationRowText: WithOptions<'allRowsCount' | 'rowsCount' | 'displaying'>;
selectButton: WithOptions<SelectId>;
selectSearchInput: WithOptions<SelectId>;
selectButtonIcon: WithOptions<SelectId>;
selectOptionsContainer: WithOptions<SelectId>;
selectOption: WithOptions<SelectId>;
menuButton: WithOptions<MenuId>;
menuButtonEllipsis: WithOptions;
menuList: WithOptions<MenuId>;
menuItem: WithOptions<MenuId>;
modalBackdrop: WithOptions;
modalContent: WithOptions;
modalCloseButton: WithOptions;
profileSection: WithOptions<ProfileSectionId>;
profileSectionItemList: WithOptions<ProfileSectionId>;
profileSectionItem: WithOptions<ProfileSectionId>;
profileSectionHeader: WithOptions<ProfileSectionId>;
profileSectionTitle: WithOptions<ProfileSectionId>;
profileSectionTitleText: WithOptions<ProfileSectionId>;
profileSectionSubtitle: WithOptions<ProfileSectionId>;
profileSectionSubtitleText: WithOptions<ProfileSectionId>;
profileSectionContent: WithOptions<ProfileSectionId>;
profileSectionPrimaryButton: WithOptions<ProfileSectionId>;
profilePage: WithOptions<ProfilePageId>;
// TODO: review
formattedPhoneNumber: WithOptions;
formattedPhoneNumberFlag: WithOptions;
formattedPhoneNumberText: WithOptions;
formattedDate: WithOptions<'tableCell'>;
scrollBox: WithOptions;
navbar: WithOptions;
navbarButtons: WithOptions<never, ActiveState>;
navbarButton: WithOptions<string, ActiveState>;
navbarButtonIcon: WithOptions<string, ActiveState>;
navbarButtonText: WithOptions<string, ActiveState>;
navbarMobileMenuRow: WithOptions;
navbarMobileMenuButton: WithOptions;
navbarMobileMenuButtonIcon: WithOptions;
pageScrollBox: WithOptions;
page: WithOptions;
activeDevice: WithOptions<'current'>;
activeDeviceListItem: WithOptions<'current'>;
activeDeviceIcon: WithOptions<'mobile' | 'desktop'>;
impersonationFab: WithOptions;
impersonationFabIcon: WithOptions;
impersonationFabIconContainer: WithOptions;
impersonationFabTitle: WithOptions;
impersonationFabActionLink: WithOptions;
invitationsSentIconBox: WithOptions;
invitationsSentIcon: WithOptions;
qrCodeRow: WithOptions;
qrCodeContainer: WithOptions;
// default descriptors
badge: WithOptions<'primary' | 'actionRequired'>;
notificationBadge: WithOptions;
buttonArrowIcon: WithOptions;
spinner: WithOptions;
};
export type Elements = {
[k in keyof ElementsConfig]: Selectors<ElementObjectKey<k> & string, ElementsConfig[k]>;
}[keyof ElementsConfig];
export type Variables = {
/**
* The primary color used throughout the components. Set this to your brand color.
* @default '#2F3037'
*/
colorPrimary?: CssColorOrScale;
/**
* The color of text appearing on top of an element that with a background color of {@link Variables.colorPrimary},
* eg: solid primary buttons.
* @default 'white'
*/
colorTextOnPrimaryBackground?: CssColor;
/**
* The color used to indicate errors or destructive actions. Set this to your brand's danger color.
* @default '#EF4444'
*/
colorDanger?: CssColorOrScale;
/**
* The color used to indicate an action that completed successfully or a positive result.
* @default '#22C543'
*/
colorSuccess?: CssColorOrScale;
/**
* The color used for potentially destructive actions or when the user's attention is required.
* @default '#F36B16'
*/
colorWarning?: CssColorOrScale;
/**
* The color that will be used as the neutral color for all the components. To achieve sufficient contrast,
* light themes should be using dark shades ('black'), while dark themes should be using light shades ('white').
* This option applies to borders, backgrounds for hovered elements, hovered dropdown options etc.
* @default 'black'
*/
colorNeutral?: CssColorOrAlphaScale;
/**
* The default text color.
* @default '#212126'
*/
colorText?: CssColor;
/**
* The text color for elements of lower importance, eg: a subtitle text.
* This color is a lighter shade of {@link Variables.colorText}.
* @default '#747686'
*/
colorTextSecondary?: CssColor;
/**
* The background color for the card container.
* @default 'white'
*/
colorBackground?: CssColor;
/**
* The default text color inside input elements. To customise the input background color instead, use {@link Variables.colorInputBackground}.
* @default 'black'
*/
colorInputText?: CssColor;
/**
* The background color for all input elements.
* @default 'white'
*/
colorInputBackground?: CssColor;
/**
* The color of the avatar shimmer
* @default 'rgba(255, 255, 255, 0.36)'
*/
colorShimmer?: CssColor;
/**
* The default font that will be used in all components.
* This can be the name of a custom font loaded by your code or the name of a web-safe font ((@link WebSafeFont})
* If a specific fontFamily is not provided, the components will inherit the font of the parent element.
* @default 'inherit'
* @example
* { fontFamily: 'Montserrat' }
*/
fontFamily?: FontFamily;
/**
* The default font that will be used in all buttons. See {@link Variables.fontFamily} for details.
* If not provided, {@link Variables.fontFamily} will be used instead.
* @default 'inherit'
*/
fontFamilyButtons?: FontFamily;
/**
* The value will be used as the base `md` to calculate all the other scale values (`xs`, `sm`, `lg` and `xl`).
* By default, this value is relative to the root fontSize of the html element.
* @default '0.8125rem'
*/
fontSize?: CssLengthUnit;
/**
* The font weight the components will use. By default, the components will use the 400, 500, 600 and 700 weights
* for normal, medium, semibold and bold text respectively.
* You can override the default weights by passing a {@link FontWeightScale} object
* @default { normal: 400, medium: 500, semibold: 600, bold: 700 };
*/
fontWeight?: FontWeightScale;
/**
* The size that will be used as the `md` base borderRadius value. This is used as the base to calculate the `sm`, `lg`, `xl`,
* our components use. As a general rule, the bigger an element is, the larger its borderRadius is going to be.
* eg: the Card element uses 'xl'
* @default '0.375rem'
*/
borderRadius?: CssLengthUnit;
/**
* The base spacing unit that all margins, paddings and gaps between the elements are derived from.
* @default '1rem'
*/
spacingUnit?: CssLengthUnit;
};
export type BaseThemeTaggedType = { __type: 'prebuilt_appearance' };
export type BaseTheme = BaseThemeTaggedType;
export type Theme = {
/**
* A theme used as the base theme for the components.
* For further customisation, you can use the {@link Theme.layout}, {@link Theme.variables} and {@link Theme.elements} props.
* @example
* import { dark } from "@clerk/themes";
* appearance={{ baseTheme: dark }}
*/
baseTheme?: BaseTheme | BaseTheme[];
/**
* Configuration options that affect the layout of the components, allowing
* customizations that hard to implement with just CSS.
* Eg: placing the logo outside the card element
*/
layout?: Layout;
/**
* General theme overrides. This styles will be merged with our base theme.
* Can override global styles like colors, fonts etc.
* Eg: `colorPrimary: 'blue'`
*/
variables?: Variables;
/**
* Fine-grained theme overrides. Useful when you want to style
* specific elements or elements that under a specific state.
* Eg: `formButtonPrimary__loading: { backgroundColor: 'gray' }`
*/
elements?: Elements;
/**
* The appearance of the CAPTCHA widget.
* This will be used to style the CAPTCHA widget.
* Eg: `theme: 'dark'`
*/
captcha?: CaptchaAppearanceOptions;
};
export type Layout = {
/**
* Controls whether the logo will be rendered inside or outside the component card.
* To customise the logo further, you can use {@link Appearance.elements}
* @default inside
*/
logoPlacement?: 'inside' | 'outside' | 'none';
/**
* The URL of your custom logo the components will display.
* By default, the components will use the logo you've set in the Clerk Dashboard.
* This option is helpful when you need to display different logos for different themes,
* eg: white logo on dark themes, black logo on light themes
* To customise the logo further, you can use {@link Appearance.elements}
* @default undefined
*/
logoImageUrl?: string;
/**
* Controls where the browser will redirect to after the user clicks the application logo,
* usually found in the SignIn and SignUp components.
* If a URL is provided, it will be used as the `href` of the link.
* If a value is not passed in, the components will use the Home URL as set in the Clerk dashboard
* @default undefined
*/
logoLinkUrl?: string;
/**
* Controls the variant that will be used for the social buttons.
* By default, the components will use block buttons if you have less than
* 3 social providers enabled, otherwise icon buttons will be used.
* To customise the social buttons further, you can use {@link Appearance.elements}
* @default auto
*/
socialButtonsVariant?: 'auto' | 'iconButton' | 'blockButton';
/**
* Controls whether the social buttons will be rendered above or below the card form.
* To customise the social button container further, you can use {@link Appearance.elements}
* @default 'top'
*/
socialButtonsPlacement?: 'top' | 'bottom';
/**
* Controls whether the SignIn or SignUp forms will include optional fields.
* You can make a field required or optional through the {@link https://dashboard.clerk.com|Clerk dashboard}.
* @default true
*/
showOptionalFields?: boolean;
/**
* This options enables the "Terms" link which is, by default, displayed on the bottom-right corner of the
* prebuilt components. Clicking the link will open the passed URL in a new tab
*/
termsPageUrl?: string;
/**
* This options enables the "Help" link which is, by default, displayed on the bottom-right corner of the
* prebuilt components. Clicking the link will open the passed URL in a new tab
*/
helpPageUrl?: string;
/**
* This options enables the "Privacy" link which is, by default, displayed on the bottom-right corner of the
* prebuilt components. Clicking the link will open the passed URL in a new tab
*/
privacyPageUrl?: string;
/**
* This option enables the shimmer animation for the avatars of <UserButton/> and <OrganizationSwitcher/>
* @default true
*/
shimmer?: boolean;
/**
* This option enables/disables animations for the components. If you want to disable animations, you can set this to false.
* Also the prefers-reduced-motion media query is respected and animations are disabled if the user has set it to reduce motion regardless of this option.
* @default true
*/
animations?: boolean;
/**
* This option disables development mode warning.
* We don't recommend disabling this unless you want to see a preview of how the components will look in production.
* @default false
*/
unsafe_disableDevelopmentModeWarnings?: boolean;
};
export type CaptchaAppearanceOptions = {
/**
* The widget theme. Can take the following values: light, dark, auto.
* @default 'auto'
*/
theme?: 'auto' | 'light' | 'dark';
/**
* The widget size. Can take the following values: normal, flexible, compact.
* @default 'normal'
*/
size?: 'normal' | 'flexible' | 'compact';
/**
* Language to display, must be either: auto (default) to use the language that the visitor has chosen, or an ISO 639-1 two-letter language code (e.g. en) or language and country code (e.g. en-US).
* Refer to the list of supported languages for more information: https://developers.cloudflare.com/turnstile/reference/supported-languages
*/
language?: string;
};
export type SignInTheme = Theme;
export type SignUpTheme = Theme;
export type UserButtonTheme = Theme;
export type UserProfileTheme = Theme;
export type OrganizationSwitcherTheme = Theme;
export type OrganizationListTheme = Theme;
export type OrganizationProfileTheme = Theme;
export type CreateOrganizationTheme = Theme;
export type UserVerificationTheme = Theme;
export type WaitlistTheme = Theme;
export type PricingTableTheme = Theme;
export type CheckoutTheme = Theme;
export type Appearance<T = Theme> = T & {
/**
* Theme overrides that only apply to the `<SignIn/>` component
*/
signIn?: T;
/**
* Theme overrides that only apply to the `<SignUp/>` component
*/
signUp?: T;
/**
* Theme overrides that only apply to the `<UserButton/>` component
*/
userButton?: T;
/**
* Theme overrides that only apply to the `<UserProfile/>` component
*/
userProfile?: T;
/**
* Theme overrides that only apply to the `<UserVerification/>` component
*/
userVerification?: T;
/**
* Theme overrides that only apply to the `<OrganizationSwitcher/>` component
*/
organizationSwitcher?: T;
/**
* Theme overrides that only apply to the `<OrganizationList/>` component
*/
organizationList?: T;
/**
* Theme overrides that only apply to the `<OrganizationProfile/>` component
*/
organizationProfile?: T;
/**
* Theme overrides that only apply to the `<CreateOrganization />` component
*/
createOrganization?: T;
/**
* Theme overrides that only apply to the `<CreateOrganization />` component
*/
oneTap?: T;
/**
* Theme overrides that only apply to the `<Waitlist />` component
*/
waitlist?: T;
/**
* Theme overrides that only apply to the `<PricingTable />` component
*/
pricingTable?: T;
/**
* Theme overrides that only apply to the `<Checkout />` component
*/
checkout?: T;
};