@frontegg/types 5.64.0 → 5.64.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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExtendedCSSProperties } from '../../Common';
|
|
1
|
+
import { Color, ExtendedCSSProperties } from '../../Common';
|
|
2
2
|
import { BaseTheme, BaseThemeOptions, SocialLoginsThemeOptions } from '../index';
|
|
3
3
|
import { SideElement, ButtonThemeOptions, CustomComponent, InputThemeOptions, ILogosComponent, ITestimonialComponent } from '../ComponentsOptions';
|
|
4
4
|
/**
|
|
@@ -135,6 +135,10 @@ interface LoginBoxOptionalCommon {
|
|
|
135
135
|
* page = displayed at the bottom of the page
|
|
136
136
|
*/
|
|
137
137
|
poweredByPlacement?: 'box' | 'page' | 'leftBottomCorner';
|
|
138
|
+
/**
|
|
139
|
+
* Powered by frontegg color
|
|
140
|
+
*/
|
|
141
|
+
poweredByColor?: Color;
|
|
138
142
|
/**
|
|
139
143
|
* BoxElement
|
|
140
144
|
* It is a Card component placed inside the [WrapperElement]{@link pageStyle}
|
|
@@ -12,6 +12,7 @@ export interface GoToLoginMessageProps {
|
|
|
12
12
|
export interface SignUpDisclaimerOptions {
|
|
13
13
|
hasCheckbox: boolean;
|
|
14
14
|
disclaimerContainerStyle?: ExtendedCSSProperties;
|
|
15
|
+
placement?: 'page' | 'box';
|
|
15
16
|
textStyle?: ExtendedCSSProperties;
|
|
16
17
|
checkBoxStyle?: {
|
|
17
18
|
unchecked?: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AcceptInvitationPageTheme, AcceptInvitationPageThemeOptions } from './AcceptInvitationTheme';
|
|
2
2
|
import { ActivateAccountPageTheme, ActivateAccountPageThemeOptions } from './ActivateAccountPageTheme';
|
|
3
3
|
import { BaseThemeOptions, LoginBoxCommonTheme, LoginBoxCommonThemeOptions, SignupPageThemeOptions, SocialLoginsTheme } from '../index';
|
|
4
|
-
import { CSSProperties, ExtendedCSSProperties } from '../../Common';
|
|
4
|
+
import { Color, CSSProperties, ExtendedCSSProperties } from '../../Common';
|
|
5
5
|
import { AuthPageCustomComponents } from '../../CustomComponents';
|
|
6
6
|
import { ForgotPasswordPageTheme, ForgotPasswordPageThemeOptions } from './ForgotPasswordTheme';
|
|
7
7
|
import { ResetPasswordPageTheme, ResetPasswordPageThemeOptions } from './ResetPasswordTheme';
|
|
@@ -30,6 +30,7 @@ export interface AuthPageThemeOptions extends BaseThemeOptions, AuthPageCustomCo
|
|
|
30
30
|
export interface LoginBoxThemeOptions extends LoginBoxCommonThemeOptions {
|
|
31
31
|
themeName?: 'classic' | 'modern' | 'vivid' | 'dark' | 'modernV2' | 'darkV2' | 'classicV2' | 'vividV2';
|
|
32
32
|
poweredByPlacement?: 'box' | 'page' | 'leftBottomCorner';
|
|
33
|
+
poweredByColor?: Color;
|
|
33
34
|
acceptInvitation?: AcceptInvitationPageThemeOptions;
|
|
34
35
|
activateAccount?: ActivateAccountPageThemeOptions;
|
|
35
36
|
forgotPassword?: ForgotPasswordPageThemeOptions;
|