@frontegg/types 5.53.2 → 5.53.3
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.
|
@@ -88,7 +88,12 @@ export interface SignupLocalizationOptions {
|
|
|
88
88
|
*/
|
|
89
89
|
disclaimerText: string;
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Signup disclaimer checkbox label
|
|
92
|
+
* this text is optional
|
|
93
|
+
*/
|
|
94
|
+
disclaimerCheckboxLabel: string;
|
|
95
|
+
/**
|
|
96
|
+
* error message displayed if disclaimer is not acceppted
|
|
92
97
|
*/
|
|
93
98
|
disclaimerTextRequired: string;
|
|
94
99
|
/**
|
|
@@ -9,7 +9,7 @@ export interface GoToLoginMessageProps {
|
|
|
9
9
|
goToLoginMessage: string;
|
|
10
10
|
goToLoginButtonText: string;
|
|
11
11
|
}
|
|
12
|
-
interface SignUpDisclaimerOptions {
|
|
12
|
+
export interface SignUpDisclaimerOptions {
|
|
13
13
|
hasCheckbox: boolean;
|
|
14
14
|
textStyle?: ExtendedCSSProperties;
|
|
15
15
|
checkBoxStyle?: {
|