@frontegg/types 6.186.0-alpha.0 → 6.186.0-alpha.2
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.
|
@@ -152,6 +152,10 @@ export interface UsersLocalization {
|
|
|
152
152
|
* Dialog title
|
|
153
153
|
*/
|
|
154
154
|
title: string;
|
|
155
|
+
/**
|
|
156
|
+
* Delete user description to "Before" username
|
|
157
|
+
*/
|
|
158
|
+
deleteUserMultiApp: string;
|
|
155
159
|
/**
|
|
156
160
|
* Delete user description to "Before" username
|
|
157
161
|
*/
|
|
@@ -169,6 +173,31 @@ export interface UsersLocalization {
|
|
|
169
173
|
*/
|
|
170
174
|
delete: string;
|
|
171
175
|
};
|
|
176
|
+
/**
|
|
177
|
+
* Revoke user sessions dialog strings
|
|
178
|
+
*/
|
|
179
|
+
users_RevokeSessions: {
|
|
180
|
+
/**
|
|
181
|
+
* Revoke user dialog title
|
|
182
|
+
*/
|
|
183
|
+
title: string;
|
|
184
|
+
/**
|
|
185
|
+
* Revoke user dialog body text
|
|
186
|
+
*/
|
|
187
|
+
body: string;
|
|
188
|
+
/**
|
|
189
|
+
* Revoke user dialog body text for multi app mode
|
|
190
|
+
*/
|
|
191
|
+
multiAppBody: string;
|
|
192
|
+
/**
|
|
193
|
+
* Revoke user dialog cancel button text
|
|
194
|
+
*/
|
|
195
|
+
cancel: string;
|
|
196
|
+
/**
|
|
197
|
+
* Revoke user dialog submit button text
|
|
198
|
+
*/
|
|
199
|
+
logout: string;
|
|
200
|
+
};
|
|
172
201
|
/**
|
|
173
202
|
* Invite User roles dialog strings
|
|
174
203
|
*/
|
|
@@ -430,6 +459,10 @@ export interface UsersLocalization {
|
|
|
430
459
|
* User applications input place holder text
|
|
431
460
|
*/
|
|
432
461
|
placeHolder: string;
|
|
462
|
+
/**
|
|
463
|
+
* Disabled default apps options tooltip text
|
|
464
|
+
*/
|
|
465
|
+
defaultAppTooltip: string;
|
|
433
466
|
/**
|
|
434
467
|
* User applications dialog cancel button text
|
|
435
468
|
*/
|
|
@@ -86,6 +86,11 @@ export interface UsersPageThemeOptions extends PageThemeOptions {
|
|
|
86
86
|
export interface SubscriptionsPageThemeOptions extends PageThemeOptions {
|
|
87
87
|
fieldsProperties?: SubscriptionsFieldsProperties;
|
|
88
88
|
}
|
|
89
|
+
export interface ApplicationThemeOptions extends PageThemeOptions {
|
|
90
|
+
cardLogoContainer?: ExtendedCSSProperties;
|
|
91
|
+
cardSkeleton?: ExtendedCSSProperties;
|
|
92
|
+
usersSection?: ExtendedCSSProperties;
|
|
93
|
+
}
|
|
89
94
|
export interface PagesThemeOptions extends PageThemeOptions {
|
|
90
95
|
profile?: ProfilePageThemeOptions;
|
|
91
96
|
privacy?: PrivacyPageThemeOptions;
|
|
@@ -99,6 +104,7 @@ export interface PagesThemeOptions extends PageThemeOptions {
|
|
|
99
104
|
apiTokens?: PageThemeOptions;
|
|
100
105
|
roles?: PageThemeOptions;
|
|
101
106
|
subscriptions?: SubscriptionsPageThemeOptions;
|
|
107
|
+
application?: ApplicationThemeOptions;
|
|
102
108
|
}
|
|
103
109
|
export interface TableScrollbar {
|
|
104
110
|
borderColor?: Color;
|
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.186.0-alpha.
|
|
3
|
+
"version": "6.186.0-alpha.2",
|
|
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.186.0-alpha.
|
|
9
|
+
"@frontegg/redux-store": "6.186.0-alpha.2",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|