@frontegg/types 5.64.3 → 5.66.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.
|
@@ -179,4 +179,50 @@ export interface PrivacyLocalization {
|
|
|
179
179
|
*/
|
|
180
180
|
close: string;
|
|
181
181
|
};
|
|
182
|
+
privacy_UserSessions: {
|
|
183
|
+
/**
|
|
184
|
+
* Login sessions table header text
|
|
185
|
+
*/
|
|
186
|
+
loginSessionsTitle: string;
|
|
187
|
+
/**
|
|
188
|
+
* Table column text to be display as 'Device' header
|
|
189
|
+
*/
|
|
190
|
+
deviceHeader: string;
|
|
191
|
+
/**
|
|
192
|
+
* Table column text to be display as 'Location' header
|
|
193
|
+
*/
|
|
194
|
+
locationHeader: string;
|
|
195
|
+
/**
|
|
196
|
+
* Table column text to be display as 'IP Address' header
|
|
197
|
+
*/
|
|
198
|
+
ipAddressHeader: string;
|
|
199
|
+
/**
|
|
200
|
+
* Table column text to be display as 'Time' header
|
|
201
|
+
*/
|
|
202
|
+
timeHeader: string;
|
|
203
|
+
/**
|
|
204
|
+
* Table current session chip
|
|
205
|
+
*/
|
|
206
|
+
currentSessionChip: string;
|
|
207
|
+
/**
|
|
208
|
+
* Table logout column action text
|
|
209
|
+
*/
|
|
210
|
+
logout: string;
|
|
211
|
+
/**
|
|
212
|
+
* Table logout all button text
|
|
213
|
+
*/
|
|
214
|
+
logoutAllButtonText: string;
|
|
215
|
+
/**
|
|
216
|
+
* Logout all dialog title
|
|
217
|
+
*/
|
|
218
|
+
logoutAllDialogTitle: string;
|
|
219
|
+
/**
|
|
220
|
+
* Logout all dialog text
|
|
221
|
+
*/
|
|
222
|
+
logoutAllDialogText: string;
|
|
223
|
+
/**
|
|
224
|
+
* Logout all accept button text
|
|
225
|
+
*/
|
|
226
|
+
logoutAllDialogAcceptButton: string;
|
|
227
|
+
};
|
|
182
228
|
}
|
|
@@ -89,6 +89,7 @@ export interface LayoutOptions {
|
|
|
89
89
|
testimonialsTitleStyle?: ExtendedCSSProperties;
|
|
90
90
|
testtomonialsSubtitleStyle?: ExtendedCSSProperties;
|
|
91
91
|
testimonialsTextStyle?: ExtendedCSSProperties;
|
|
92
|
+
testimonialsQuotesStyle?: ExtendedCSSProperties;
|
|
92
93
|
testimonialsIndicatorStyle?: ExtendedCSSProperties;
|
|
93
94
|
testimonialsActiveIndicatorStyle?: ExtendedCSSProperties;
|
|
94
95
|
testimonialsIndicatorContainerStyle?: ExtendedCSSProperties;
|