@frontegg/types 6.98.0 → 6.100.0-alpha.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.
package/ContextOptions.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { KeyValuePair, LogLevel, ResolvedTenantResult } from '@frontegg/rest-api';
|
|
1
|
+
import { KeyValuePair, LogLevel, ResolvedTenantResult, MetadataHeaders } 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
|
|
@@ -29,4 +29,5 @@ export interface ContextOptions {
|
|
|
29
29
|
auditsOptions?: {
|
|
30
30
|
virtualScroll?: boolean;
|
|
31
31
|
};
|
|
32
|
+
metadataHeaders?: MetadataHeaders;
|
|
32
33
|
}
|
|
@@ -278,12 +278,16 @@ export interface AccountSettingsLocalization {
|
|
|
278
278
|
*/
|
|
279
279
|
preview: string;
|
|
280
280
|
/**
|
|
281
|
-
* Custom login
|
|
281
|
+
* Custom login cancel button label
|
|
282
282
|
*/
|
|
283
|
-
|
|
283
|
+
cancel: string;
|
|
284
284
|
/**
|
|
285
285
|
* Custom login save button label
|
|
286
286
|
*/
|
|
287
287
|
save: string;
|
|
288
|
+
/**
|
|
289
|
+
* Validation error for logo input
|
|
290
|
+
*/
|
|
291
|
+
logoInputError: string;
|
|
288
292
|
};
|
|
289
293
|
}
|
|
@@ -39,8 +39,14 @@ export interface PageThemeOptions extends BaseThemeOptions {
|
|
|
39
39
|
cardListItemStyle?: ExtendedCSSProperties;
|
|
40
40
|
};
|
|
41
41
|
}
|
|
42
|
+
export interface CustomLoginStyles {
|
|
43
|
+
loginBoxPreview?: {
|
|
44
|
+
container?: ExtendedCSSProperties;
|
|
45
|
+
};
|
|
46
|
+
}
|
|
42
47
|
export interface AccountPageThemeOptions extends PageThemeOptions {
|
|
43
48
|
fieldsProperties?: AccountFieldsProperties;
|
|
49
|
+
customLogin?: CustomLoginStyles;
|
|
44
50
|
}
|
|
45
51
|
export interface SecurityPageThemeOptions extends PageThemeOptions {
|
|
46
52
|
tabsProperties?: SecurityTabsProperties;
|
|
@@ -186,9 +192,13 @@ export interface AdminPortalCommonOptions extends BaseThemeOptions {
|
|
|
186
192
|
*/
|
|
187
193
|
severityChipTheme?: SeverityChipTheme;
|
|
188
194
|
/**
|
|
189
|
-
* Option to customize admin portal
|
|
195
|
+
* Option to customize admin portal tree graph theme
|
|
190
196
|
*/
|
|
191
197
|
treeGraphTheme?: TreeGraphTheme;
|
|
198
|
+
/**
|
|
199
|
+
* Option to customize admin portal drop zone
|
|
200
|
+
*/
|
|
201
|
+
dropZone?: ExtendedCSSProperties;
|
|
192
202
|
}
|
|
193
203
|
export interface AdminPortalThemeOptions extends AdminPortalCommonOptions {
|
|
194
204
|
themeName?: BasicThemeName;
|
|
@@ -210,4 +220,5 @@ export interface AdminPortalTheme extends BaseTheme {
|
|
|
210
220
|
selectTheme: SelectTheme;
|
|
211
221
|
severityChipTheme: SeverityChipTheme;
|
|
212
222
|
treeGraphTheme: TreeGraphTheme;
|
|
223
|
+
dropZone: ExtendedCSSProperties;
|
|
213
224
|
}
|
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.
|
|
3
|
+
"version": "6.100.0-alpha.0",
|
|
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.
|
|
9
|
+
"@frontegg/redux-store": "6.100.0-alpha.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|