@frontegg/types 4.37.0 → 4.39.2-dashboard

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.
Files changed (36) hide show
  1. package/Common.d.ts +3 -0
  2. package/ContextOptions.d.ts +5 -1
  3. package/FronteggAppInstance.d.ts +1 -0
  4. package/FronteggAppOptions.d.ts +4 -4
  5. package/FronteggMetadata.d.ts +2 -0
  6. package/Localizations/AdminPortalLocalizations/security.d.ts +4 -0
  7. package/Localizations/AdminPortalLocalizations/subscriptions.d.ts +23 -0
  8. package/Localizations/AdminPortalLocalizations/users.d.ts +6 -0
  9. package/Localizations/LocalizationOverrides.d.ts +1 -0
  10. package/Localizations/LocalizationType.d.ts +1 -0
  11. package/Localizations/LoginBoxLocalization/acceptInvitation.d.ts +4 -0
  12. package/Localizations/LoginBoxLocalization/activateAccount.d.ts +4 -0
  13. package/Localizations/LoginBoxLocalization/forgetPassword.d.ts +8 -0
  14. package/Localizations/LoginBoxLocalization/index.d.ts +8 -0
  15. package/Localizations/LoginBoxLocalization/login.d.ts +28 -0
  16. package/Localizations/LoginBoxLocalization/resetPassword.d.ts +8 -0
  17. package/Localizations/LoginBoxLocalization/signup.d.ts +8 -0
  18. package/Metadata/index.d.ts +1 -1
  19. package/ThemeOptions/ComponentsOptions.d.ts +63 -0
  20. package/ThemeOptions/LoginBoxTheme/AcceptInvitationTheme.d.ts +21 -0
  21. package/ThemeOptions/LoginBoxTheme/ActivateAccountPageTheme.d.ts +52 -0
  22. package/ThemeOptions/LoginBoxTheme/CustomLoginComponents.d.ts +12 -0
  23. package/ThemeOptions/LoginBoxTheme/ForgotPasswordTheme.d.ts +46 -0
  24. package/ThemeOptions/LoginBoxTheme/LoaderTheme.d.ts +7 -0
  25. package/ThemeOptions/LoginBoxTheme/LoginBoxCommon.d.ts +148 -0
  26. package/ThemeOptions/LoginBoxTheme/LoginPageTheme.d.ts +119 -0
  27. package/ThemeOptions/LoginBoxTheme/ResetPasswordTheme.d.ts +48 -0
  28. package/ThemeOptions/LoginBoxTheme/SignupPageTheme.d.ts +46 -0
  29. package/ThemeOptions/LoginBoxTheme/SocialLoginsTheme.d.ts +36 -0
  30. package/ThemeOptions/LoginBoxTheme/index.d.ts +51 -0
  31. package/ThemeOptions/LoginBoxThemeOptions.d.ts +3 -8
  32. package/ThemeOptions/helpers.d.ts +0 -0
  33. package/ThemeOptions/index.d.ts +6 -190
  34. package/index.js +6 -197
  35. package/node/index.js +6 -197
  36. package/package.json +2 -2
package/Common.d.ts CHANGED
@@ -1,3 +1,6 @@
1
1
  import * as CSS from 'csstype';
2
2
  export declare type CSSProperties = CSS.Properties;
3
3
  export declare type Color = CSSProperties['color'];
4
+ export declare type ExtendedCSSProperties = CSSProperties | {
5
+ [k in string]?: CSSProperties;
6
+ };
@@ -1,9 +1,13 @@
1
- import { KeyValuePair, LogLevel } from '@frontegg/rest-api/src/interfaces';
1
+ import { KeyValuePair, LogLevel } from '@frontegg/rest-api';
2
2
  export interface ContextOptions {
3
3
  /**
4
4
  * Backend API baseUrl, visit https://portal.frontegg.com/administration/domain to get your Frontegg baseUrl
5
5
  */
6
6
  baseUrl: string;
7
+ /**
8
+ * Frontegg clientId. Identifier from your Frontegg workspace account.
9
+ */
10
+ clientId?: string;
7
11
  /**
8
12
  * Whether or not to send Fetch request with Credentials to the Backend
9
13
  * default: 'include'
@@ -2,6 +2,7 @@ import { EnhancedStore } from '@frontegg/redux-store';
2
2
  import { FronteggAppOptions } from './index';
3
3
  export interface FronteggAppInstance {
4
4
  name: string;
5
+ iframeRendering: boolean;
5
6
  loading: boolean;
6
7
  customElementName: string;
7
8
  store: EnhancedStore;
@@ -9,10 +9,6 @@ export interface FronteggAppOptions extends FronteggStoreOptions {
9
9
  withCompanyName?: boolean;
10
10
  contextOptions: ContextOptions;
11
11
  themeOptions?: FronteggThemeOptions;
12
- /**
13
- * Authentication header logo image
14
- * @deprecated, use components.authPage.headerImage
15
- */
16
12
  headerImage?: string;
17
13
  /**
18
14
  * Authentication background logo image
@@ -60,6 +56,10 @@ export interface FronteggAppOptions extends FronteggStoreOptions {
60
56
  * Option to open admin portal as Preview mode without HTTP requests for demo mode purpose
61
57
  */
62
58
  previewMode?: boolean;
59
+ /**
60
+ * Option to display login box as Preview mode without HTTP requests for builder customization mode purpose
61
+ */
62
+ builderMode?: boolean;
63
63
  /**
64
64
  * Connect AdminPortal redirects with the wrapper application router
65
65
  */
@@ -1,4 +1,5 @@
1
1
  import { PaletteColorOptions, PaletteGreyOptions } from './ThemeOptions/Palette';
2
+ import { FronteggThemeOptions } from './ThemeOptions';
2
3
  declare type PageMetadata = {
3
4
  visibility: 'hidden' | 'always' | 'byPermissions';
4
5
  featureFlag?: string;
@@ -72,6 +73,7 @@ declare type ThemeMetadata = {
72
73
  };
73
74
  export declare type FronteggMetadata = {
74
75
  theme?: ThemeMetadata;
76
+ themeV2?: FronteggThemeOptions;
75
77
  navigation?: NavigationMetadata;
76
78
  };
77
79
  export declare type RolePermission = 'fe.connectivity.*' | 'fe.connectivity.delete.*' | 'fe.connectivity.delete.bellNotifications' | 'fe.connectivity.delete.emailConfig' | 'fe.connectivity.delete.slackAppRegistration' | 'fe.connectivity.delete.slackSubscriptionEvent' | 'fe.connectivity.delete.slackSubscriptions' | 'fe.connectivity.delete.smsConfig' | 'fe.connectivity.delete.webhook' | 'fe.connectivity.read.*' | 'fe.connectivity.read.emailConfig' | 'fe.connectivity.read.eventCategories' | 'fe.connectivity.read.events' | 'fe.connectivity.read.slackApp' | 'fe.connectivity.read.slackChannels' | 'fe.connectivity.read.slackSubscriptions' | 'fe.connectivity.read.slackUsers' | 'fe.connectivity.read.smsConfig' | 'fe.connectivity.read.userBellNotifications' | 'fe.connectivity.read.webhookLogs' | 'fe.connectivity.read.webhooks' | 'fe.connectivity.write.*' | 'fe.connectivity.write.emailConfig' | 'fe.connectivity.write.sendWebpushNotification' | 'fe.connectivity.write.slackAppRegistration' | 'fe.connectivity.write.slackSubscriptions' | 'fe.connectivity.write.smsConfig' | 'fe.connectivity.write.subscribeWebpush' | 'fe.connectivity.write.triggerEvent' | 'fe.connectivity.write.updateSlackSubscription' | 'fe.connectivity.write.updateUserBellNotification' | 'fe.connectivity.write.webhook' | 'fe.secure.*' | 'fe.secure.delete.*' | 'fe.secure.delete.role' | 'fe.secure.delete.samlConfiguration' | 'fe.secure.delete.securityPolicy' | 'fe.secure.delete.tenantApiTokens' | 'fe.secure.delete.userApiTokens' | 'fe.secure.delete.users' | 'fe.secure.delete.usersRoles' | 'fe.secure.read.*' | 'fe.secure.read.permissions' | 'fe.secure.read.roles' | 'fe.secure.read.samlConfiguration' | 'fe.secure.read.securityPolicy' | 'fe.secure.read.tenantApiTokens' | 'fe.secure.read.userApiTokens' | 'fe.secure.read.users' | 'fe.secure.write.*' | 'fe.secure.write.resendActivationEmail' | 'fe.secure.write.roles' | 'fe.secure.write.samlConfiguration' | 'fe.secure.write.securityPolicy' | 'fe.secure.write.tenantApiTokens' | 'fe.secure.write.updateRole' | 'fe.secure.write.updateUser' | 'fe.secure.write.userApiTokens' | 'fe.secure.write.users' | 'fe.secure.write.usersRoles' | 'fe.subscriptions.*' | 'fe.subscriptions.read.*' | 'fe.subscriptions.write.*' | 'fe.account-settings.delete.account';
@@ -125,6 +125,10 @@ export interface SecurityLocalization {
125
125
  * Max attempts before lockout user input placeholder
126
126
  */
127
127
  attemptsInputPlaceholder: string;
128
+ /**
129
+ * Max attempts before lockout user input error message
130
+ */
131
+ attemptsInputErrorMessage: string;
128
132
  /**
129
133
  * Cancel editing lockout policy button text
130
134
  */
@@ -39,7 +39,14 @@ export interface SubscriptionsLocalization {
39
39
  * error message displayed if email is empty
40
40
  */
41
41
  emailIsRequired: string;
42
+ /**
43
+ * Edit Address 1 input label
44
+ */
42
45
  address1InputLabel: string;
46
+ /**
47
+ * Edit Address 1 input placeholder
48
+ */
49
+ address1InputPlaceholder: string;
43
50
  /**
44
51
  * Error displayed if Address 1 input is empty
45
52
  */
@@ -48,6 +55,10 @@ export interface SubscriptionsLocalization {
48
55
  * Edit Address 2 input label
49
56
  */
50
57
  address2InputLabel: string;
58
+ /**
59
+ * Edit Address 2 input placeholder
60
+ */
61
+ address2InputPlaceholder: string;
51
62
  /**
52
63
  * Error displayed if Address 2 input is empty
53
64
  */
@@ -56,6 +67,10 @@ export interface SubscriptionsLocalization {
56
67
  * Edit City input label
57
68
  */
58
69
  cityInputLabel: string;
70
+ /**
71
+ * Edit City input placeholder
72
+ */
73
+ cityInputPlaceholder: string;
59
74
  /**
60
75
  * Error displayed if City input is empty
61
76
  */
@@ -64,6 +79,10 @@ export interface SubscriptionsLocalization {
64
79
  * Edit State input label
65
80
  */
66
81
  stateInputLabel: string;
82
+ /**
83
+ * Edit State input placeholder
84
+ */
85
+ stateInputPlaceholder: string;
67
86
  /**
68
87
  * Error displayed if State input is empty
69
88
  */
@@ -72,6 +91,10 @@ export interface SubscriptionsLocalization {
72
91
  * Edit Postcode input label
73
92
  */
74
93
  postCodeInputLabel: string;
94
+ /**
95
+ * Edit Postcode input label
96
+ */
97
+ postCodeInputPlaceholder: string;
75
98
  /**
76
99
  * Error displayed if post code is invalid
77
100
  */
@@ -31,6 +31,10 @@ export interface UsersLocalization {
31
31
  * Table user roles column header
32
32
  */
33
33
  rolesHeader: string;
34
+ /**
35
+ * Table user organization column header
36
+ */
37
+ organizationHeader: string;
34
38
  /**
35
39
  * Table user joined date column header
36
40
  */
@@ -257,6 +261,8 @@ export interface UsersLocalization {
257
261
  * Edit link button text
258
262
  */
259
263
  edit: string;
264
+ day: string;
265
+ days: string;
260
266
  };
261
267
  /**
262
268
  * Deactivate invitation link dialog strings
@@ -16,5 +16,6 @@ export interface LocalizationOverrides {
16
16
  validation?: ValidationLocalizationOverrides;
17
17
  loginBox?: LoginBoxLocalizationOverrides;
18
18
  adminPortal?: AdminPortalLocalizationOverrides;
19
+ custom?: Record<string, string>;
19
20
  }
20
21
  export {};
@@ -40,5 +40,6 @@ export interface Localization {
40
40
  validations: ValidationLocalization;
41
41
  loginBox: LoginBoxLocalization;
42
42
  adminPortal: AdminPortalLocalization;
43
+ custom: Record<string, string>;
43
44
  }
44
45
  export {};
@@ -3,6 +3,10 @@ export interface AcceptInvitationLocalization {
3
3
  * strings in accept invitation account page
4
4
  */
5
5
  acceptInvitation: {
6
+ /**
7
+ * Accept invitation page title
8
+ */
9
+ title: string;
6
10
  /**
7
11
  * Title to be displayed if accept invitation succeeded
8
12
  */
@@ -3,6 +3,10 @@ export interface ActivateAccountLocalization {
3
3
  * strings in activate account page
4
4
  */
5
5
  activateAccount: {
6
+ /**
7
+ * Activate account page title
8
+ */
9
+ title: string;
6
10
  /**
7
11
  * New password input label
8
12
  */
@@ -3,6 +3,14 @@ export interface ForgetPasswordLocalization {
3
3
  * strings in forget password page
4
4
  */
5
5
  forgetPassword: {
6
+ /**
7
+ * Forget password page title
8
+ */
9
+ title: string;
10
+ /**
11
+ * Text displayed in forget password form before email input
12
+ */
13
+ description: string;
6
14
  /**
7
15
  * Forget password form email input label
8
16
  */
@@ -6,4 +6,12 @@ import { SocialLoginsLocalization } from './socialLogins';
6
6
  import { AcceptInvitationLocalization } from './acceptInvitation';
7
7
  import { ActivateAccountLocalization } from './activateAccount';
8
8
  import { RecoveryMfaLocalization } from './recoveryMfa';
9
+ export * from './login';
10
+ export * from './signup';
11
+ export * from './forgetPassword';
12
+ export * from './resetPassword';
13
+ export * from './socialLogins';
14
+ export * from './acceptInvitation';
15
+ export * from './activateAccount';
16
+ export * from './recoveryMfa';
9
17
  export declare type LoginBoxLocalization = LoginLocalization & SignupLocalization & ForgetPasswordLocalization & ResetPasswordLocalization & SocialLoginsLocalization & AcceptInvitationLocalization & ActivateAccountLocalization & RecoveryMfaLocalization;
@@ -3,6 +3,10 @@ export interface LoginLocalization {
3
3
  * strings in login page
4
4
  */
5
5
  login: {
6
+ /**
7
+ * Login page title
8
+ */
9
+ title: string;
6
10
  /**
7
11
  * Go to signup message in Login page header
8
12
  */
@@ -56,10 +60,18 @@ export interface LoginLocalization {
56
60
  * Login page submit button if passwordless, sso or magicLink is enabled
57
61
  */
58
62
  continue: string;
63
+ /**
64
+ * String displayed as separator for sign in with social login
65
+ */
66
+ signInWithSocialLogin: string;
59
67
  /**
60
68
  * Button text to return to main login page
61
69
  */
62
70
  backToLogin: string;
71
+ /**
72
+ * Login with MFA title
73
+ */
74
+ mfaTitle: string;
63
75
  /**
64
76
  * Login with MFA six digits input label If MFA is enabled
65
77
  */
@@ -72,6 +84,14 @@ export interface LoginLocalization {
72
84
  * Error displayed if MFA code length less than 6 characters
73
85
  */
74
86
  mfaCodeLengthAtLeast6: string;
87
+ /**
88
+ * Error displayed if two factor code input is empty
89
+ */
90
+ twoFactorCodeIsRequired: string;
91
+ /**
92
+ * Error displayed if two code length less than 8 characters
93
+ */
94
+ twoFactorCodeLengthAtLeast8: string;
75
95
  /**
76
96
  * text of remember device CheckBox If MFA is enabled
77
97
  * EX: "Don't ask again on this device for {{count}} day"
@@ -85,6 +105,10 @@ export interface LoginLocalization {
85
105
  * Disable MFA message in MFA section if it's enabled
86
106
  */
87
107
  disableMultiFactorMessage: string;
108
+ /**
109
+ * Disable MFA page title after choose to recover mfa from login screen
110
+ */
111
+ recoverMfaTitle: string;
88
112
  /**
89
113
  * Disable MFA button click here text in MFA section if it's enabled
90
114
  */
@@ -97,6 +121,10 @@ export interface LoginLocalization {
97
121
  * Disable MFA button text in MFA section if it's enabled
98
122
  */
99
123
  disabledMultiFactorButton: string;
124
+ /**
125
+ * Error message shown when trying to login without public policy
126
+ */
127
+ missingPolicyErrorMessage: string;
100
128
  /**
101
129
  * Magic link title if login strategy is MagicLink
102
130
  */
@@ -3,6 +3,14 @@ export interface ResetPasswordLocalization {
3
3
  * strings in forget password page
4
4
  */
5
5
  resetPassword: {
6
+ /**
7
+ * Reset password page title
8
+ */
9
+ title: string;
10
+ /**
11
+ * Text displayed in reset password form before password inputs
12
+ */
13
+ description: string;
6
14
  /**
7
15
  * New password input label
8
16
  */
@@ -3,6 +3,10 @@ export interface SignupLocalization {
3
3
  * strings in signup page
4
4
  */
5
5
  signup: {
6
+ /**
7
+ * Sign up page title
8
+ */
9
+ title: string;
6
10
  /**
7
11
  * Signup name input label
8
12
  */
@@ -65,6 +69,10 @@ export interface SignupLocalization {
65
69
  * error message displayed if name length less than 3
66
70
  */
67
71
  companyNameMinLengthIs3: string;
72
+ /**
73
+ * String displayed as separator for sign up with social login
74
+ */
75
+ signUpWithSocialLogin: string;
68
76
  /**
69
77
  * Go to login message in signup page header
70
78
  */
@@ -5,7 +5,7 @@ export declare class Metadata {
5
5
  static _instances: Record<string, Metadata>;
6
6
  static getInstance(name?: string): Metadata;
7
7
  static set(metadata?: FronteggMetadata, name?: string): Metadata;
8
- get theme(): Required<FronteggMetadata>['theme'];
8
+ get theme(): Required<FronteggMetadata>['themeV2'];
9
9
  get navigation(): Required<FronteggMetadata>['navigation'];
10
10
  set(metadata?: FronteggMetadata): void;
11
11
  }
@@ -1,3 +1,66 @@
1
+ import { CSSProperties, ExtendedCSSProperties } from '../Common';
2
+ export declare type CustomComponent<T = {}> = null | string | ((props: T) => string | any);
3
+ export interface InputThemeOptions {
4
+ /**
5
+ * Input label style
6
+ */
7
+ label?: ExtendedCSSProperties;
8
+ /**
9
+ * Input base style for standard state
10
+ */
11
+ base?: ExtendedCSSProperties & {
12
+ placeholderColor?: string;
13
+ };
14
+ /**
15
+ * Input style for hover state
16
+ */
17
+ hover?: ExtendedCSSProperties;
18
+ /**
19
+ * Input style for active state
20
+ */
21
+ active?: ExtendedCSSProperties;
22
+ /**
23
+ * Input style for focus state
24
+ */
25
+ focus?: ExtendedCSSProperties;
26
+ /**
27
+ * Input style for disabled state
28
+ */
29
+ disabled?: ExtendedCSSProperties;
30
+ }
31
+ export interface ButtonThemeOptions {
32
+ /**
33
+ * Button base style for standard state
34
+ */
35
+ base?: ExtendedCSSProperties;
36
+ /**
37
+ * Button style for hover state
38
+ */
39
+ hover?: ExtendedCSSProperties;
40
+ /**
41
+ * Button style for active state
42
+ */
43
+ active?: ExtendedCSSProperties;
44
+ /**
45
+ * Button style for focus state
46
+ */
47
+ focus?: ExtendedCSSProperties;
48
+ /**
49
+ * Button style for disabled state
50
+ */
51
+ disabled?: ExtendedCSSProperties;
52
+ /**
53
+ * Icon style displayed inside the button element
54
+ */
55
+ icon?: ExtendedCSSProperties;
56
+ }
57
+ export interface LoginBoxBackgroundTheme {
58
+ backgroundColor?: CSSProperties['backgroundColor'];
59
+ backgroundImage?: CSSProperties['backgroundImage'];
60
+ backgroundSize?: CSSProperties['backgroundSize'];
61
+ backgroundRepeat?: CSSProperties['backgroundRepeat'];
62
+ backgroundPosition?: CSSProperties['backgroundPosition'];
63
+ }
1
64
  export interface ComponentsOptions {
2
65
  /**
3
66
  * Refer to Material UI theming guideline.
@@ -0,0 +1,21 @@
1
+ import { LoginBoxCommonTheme, LoginBoxCommonThemeOptions } from '../index';
2
+ import { ExtendedCSSProperties } from '../../Common';
3
+ interface AcceptInvitationComponentsTheme {
4
+ /**
5
+ * Accept invitation page container style
6
+ */
7
+ containerStyle?: ExtendedCSSProperties;
8
+ /**
9
+ * Accept invitation succeeded page container style
10
+ */
11
+ successContainerStyle?: ExtendedCSSProperties;
12
+ /**
13
+ * Accept invitation failed page container style
14
+ */
15
+ failedContainerStyle?: ExtendedCSSProperties;
16
+ }
17
+ export interface AcceptInvitationPageThemeOptions extends LoginBoxCommonThemeOptions, AcceptInvitationComponentsTheme {
18
+ }
19
+ export interface AcceptInvitationPageTheme extends LoginBoxCommonTheme, AcceptInvitationComponentsTheme {
20
+ }
21
+ export {};
@@ -0,0 +1,52 @@
1
+ import { CustomComponent, LoginBoxCommonTheme, LoginBoxCommonThemeOptions } from '../index';
2
+ import { ExtendedCSSProperties } from '../../Common';
3
+ import { ReactNode } from 'react';
4
+ interface TitleProps {
5
+ title: string;
6
+ }
7
+ interface MessageProps {
8
+ message: ReactNode;
9
+ }
10
+ interface ActivateAccountComponentsTheme {
11
+ /**
12
+ * Activate account page container style
13
+ */
14
+ containerStyle?: ExtendedCSSProperties;
15
+ /**
16
+ * Activate account form container style
17
+ */
18
+ formContainerStyle?: ExtendedCSSProperties;
19
+ /**
20
+ * Activate account succeeded page container style
21
+ */
22
+ successContainerStyle?: ExtendedCSSProperties;
23
+ /**
24
+ * Activate account failed page container style
25
+ */
26
+ failedContainerStyle?: ExtendedCSSProperties;
27
+ /**
28
+ * Activate account page title default is 'Activate Account'
29
+ * displayed in forgot password form screen
30
+ * passing 'null' will hide the title
31
+ */
32
+ title?: CustomComponent<TitleProps>;
33
+ /**
34
+ * Direct css style for Forgot password Page title
35
+ */
36
+ titleStyle?: ExtendedCSSProperties;
37
+ /**
38
+ * Activate account page message default is hidden
39
+ * displayed in forgot password form screen
40
+ * passing 'null' will hide the message
41
+ */
42
+ message?: CustomComponent<MessageProps>;
43
+ /**
44
+ * Direct css style for Forgot password Page message
45
+ */
46
+ messageStyle?: ExtendedCSSProperties;
47
+ }
48
+ export interface ActivateAccountPageThemeOptions extends LoginBoxCommonThemeOptions, ActivateAccountComponentsTheme {
49
+ }
50
+ export interface ActivateAccountPageTheme extends LoginBoxCommonTheme, ActivateAccountComponentsTheme {
51
+ }
52
+ export {};
@@ -0,0 +1,12 @@
1
+ export interface CustomLocalizationProps {
2
+ t: (key: string) => string;
3
+ }
4
+ export interface CustomContainerProps extends CustomLocalizationProps {
5
+ className: string;
6
+ }
7
+ export interface ComponentKeyRender {
8
+ 'pageHeader': CustomContainerProps;
9
+ 'pageFooter': CustomContainerProps;
10
+ 'boxHeader': CustomContainerProps;
11
+ 'boxFooter': CustomContainerProps;
12
+ }
@@ -0,0 +1,46 @@
1
+ import { CustomComponent, LoginBoxCommonTheme, LoginBoxCommonThemeOptions } from '../index';
2
+ import { ExtendedCSSProperties } from '../../Common';
3
+ import { ReactNode } from 'react';
4
+ interface TitleProps {
5
+ title: string;
6
+ }
7
+ interface MessageProps {
8
+ message: ReactNode;
9
+ }
10
+ interface ForgotPasswordComponentsTheme {
11
+ /**
12
+ * Forgot password page container style
13
+ */
14
+ containerStyle?: ExtendedCSSProperties;
15
+ /**
16
+ * Forgot password page form container style
17
+ */
18
+ formContainerStyle?: ExtendedCSSProperties;
19
+ successContainerStyle?: ExtendedCSSProperties;
20
+ /**
21
+ * Forgot password page title default is 'Forgot your password?'
22
+ * displayed in forgot password form screen
23
+ * passing 'null' will hide the title
24
+ */
25
+ title?: CustomComponent<TitleProps>;
26
+ /**
27
+ * Direct css style for Forgot password Page title
28
+ */
29
+ titleStyle?: ExtendedCSSProperties;
30
+ /**
31
+ * Forgot password page message default:
32
+ * 'Enter the email address associated with your account and we'll send you a link to reset your password'
33
+ * displayed in forgot password form screen
34
+ * passing 'null' will hide the message
35
+ */
36
+ message?: CustomComponent<MessageProps>;
37
+ /**
38
+ * Direct css style for Forgot password Page message
39
+ */
40
+ messageStyle?: ExtendedCSSProperties;
41
+ }
42
+ export interface ForgotPasswordPageThemeOptions extends LoginBoxCommonThemeOptions, ForgotPasswordComponentsTheme {
43
+ }
44
+ export interface ForgotPasswordPageTheme extends LoginBoxCommonTheme, ForgotPasswordComponentsTheme {
45
+ }
46
+ export {};
@@ -0,0 +1,7 @@
1
+ import { ExtendedCSSProperties } from '../../Common';
2
+ export interface LoaderThemeOptions {
3
+ containerStyle?: ExtendedCSSProperties;
4
+ }
5
+ export interface LoaderTheme {
6
+ containerStyle?: ExtendedCSSProperties;
7
+ }