@frontegg/types 5.62.1 → 5.64.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -40,7 +40,7 @@ export interface LayoutOptions {
|
|
|
40
40
|
* side, floating right will display login box at the right element
|
|
41
41
|
* with default width equal to 50% of the window width
|
|
42
42
|
*/
|
|
43
|
-
type
|
|
43
|
+
type?: 'float-right' | 'center' | 'float-left';
|
|
44
44
|
/**
|
|
45
45
|
* splitSize is for the side element to setup how much % of the window side elements wi'll take
|
|
46
46
|
* default is 50 = 50%;
|
|
@@ -110,6 +110,18 @@ export interface LoginPageComponentsTheme {
|
|
|
110
110
|
* default is 'Haven’t received it?'
|
|
111
111
|
*/
|
|
112
112
|
resendOTCMessageStyle?: ExtendedCSSProperties;
|
|
113
|
+
touchIdTitle?: CustomComponent<TitleProps>;
|
|
114
|
+
touchIdMessage?: CustomComponent<MessageProps>;
|
|
115
|
+
androidTitle?: CustomComponent<TitleProps>;
|
|
116
|
+
androidMessage?: CustomComponent<MessageProps>;
|
|
117
|
+
usbKeyTitle?: CustomComponent<TitleProps>;
|
|
118
|
+
usbKeyMessage?: CustomComponent<MessageProps>;
|
|
119
|
+
smsPreviewTitle?: CustomComponent<TitleProps>;
|
|
120
|
+
smsPreviewMessage?: CustomComponent<MessageProps>;
|
|
121
|
+
smsChangePhoneTitle?: CustomComponent<TitleProps>;
|
|
122
|
+
smsChangePhoneMessage?: CustomComponent<MessageProps>;
|
|
123
|
+
smsVerifyCodeTitle?: CustomComponent<TitleProps>;
|
|
124
|
+
smsVerifyCodeMessage?: CustomComponent<MessageProps>;
|
|
113
125
|
/**
|
|
114
126
|
* MagicLink success login title default is 'Check your email'
|
|
115
127
|
* displayed after pre-login if MagicLink enabled
|