@frontegg/types 6.45.0-alpha.4 → 6.45.0-alpha.6
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.
|
@@ -30,11 +30,6 @@ export interface RightPanelThemeOptions {
|
|
|
30
30
|
tableHeaderBackground: Color;
|
|
31
31
|
tableBodyBackground: Color;
|
|
32
32
|
}
|
|
33
|
-
export interface RestrictionButton {
|
|
34
|
-
color?: Color;
|
|
35
|
-
backgroundColor?: Color;
|
|
36
|
-
borderColor?: Color;
|
|
37
|
-
}
|
|
38
33
|
export interface PageThemeOptions extends BaseThemeOptions {
|
|
39
34
|
header?: ExtendedCSSProperties;
|
|
40
35
|
content?: ExtendedCSSProperties;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExtendedCSSProperties } from '../Common';
|
|
2
|
-
import { PageThemeOptions
|
|
2
|
+
import { PageThemeOptions } from './AdminPortalThemeOptions';
|
|
3
3
|
import { AccountPageFields, GeneralSettingsTabFields, LoginRestrictionsTabFields, MapAccountFieldToAppearance, MapPrivacyFieldToAppearance, MapProfileFieldToAppearance, MapSecurityFieldToAppearance, PrivacyPageFields, ProfilePageFields, SessionManagementTabFields, SignupRestrictionsTabFields, TabAppearance } from './fieldsAppearanceConsts';
|
|
4
4
|
interface ProfileProperties<K extends ProfilePageFields> {
|
|
5
5
|
appearance: MapProfileFieldToAppearance[K];
|
|
@@ -59,11 +59,14 @@ export declare type SessionManagementTabProperties = TabProperties & {
|
|
|
59
59
|
export declare type SignupTabProperties = TabProperties & {
|
|
60
60
|
fieldsProperties?: SignupTabFieldsProperties;
|
|
61
61
|
titleContainer?: ExtendedCSSProperties;
|
|
62
|
+
allowToggleButton?: ExtendedCSSProperties;
|
|
63
|
+
denyToggleButton?: ExtendedCSSProperties;
|
|
62
64
|
};
|
|
63
65
|
export declare type LoginRestrictionsTabProperties = TabProperties & {
|
|
64
66
|
fieldsProperties?: LoginRestrictionsTabFieldsProperties;
|
|
65
67
|
titleContainer?: ExtendedCSSProperties;
|
|
66
|
-
|
|
68
|
+
allowToggleButton?: ExtendedCSSProperties;
|
|
69
|
+
denyToggleButton?: ExtendedCSSProperties;
|
|
67
70
|
};
|
|
68
71
|
export declare type GeneralSettingsTabProperties = TabProperties & {
|
|
69
72
|
fieldsProperties?: GeneralSettingsFieldProperties;
|
package/index.js
CHANGED
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/types",
|
|
3
|
-
"version": "6.45.0-alpha.
|
|
3
|
+
"version": "6.45.0-alpha.6",
|
|
4
4
|
"main": "./node/index.js",
|
|
5
5
|
"author": "Frontegg LTD",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@babel/runtime": "^7.18.6",
|
|
9
|
-
"@frontegg/redux-store": "6.45.0-alpha.
|
|
9
|
+
"@frontegg/redux-store": "6.45.0-alpha.6",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|