@frontegg/types 6.6.1 → 6.8.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.
@@ -3,6 +3,18 @@ export interface SecurityLocalization {
3
3
  * Security Policy page strings
4
4
  */
5
5
  security: {
6
+ /**
7
+ * General settings tab title
8
+ */
9
+ generalSettingsTab: string;
10
+ /**
11
+ * Session management tab title
12
+ */
13
+ sessionManagementTab: string;
14
+ /**
15
+ * Login restrictions tab title
16
+ */
17
+ loginRestrictionTab: string;
6
18
  /**
7
19
  * Security policy settings page title
8
20
  */
@@ -273,4 +285,154 @@ export interface SecurityLocalization {
273
285
  */
274
286
  cancel: string;
275
287
  };
288
+ security_ipRestrictions: {
289
+ /**
290
+ * Section title
291
+ */
292
+ title: string;
293
+ /**
294
+ * Section sub-title
295
+ */
296
+ subTitle: string;
297
+ /**
298
+ * Allow button text
299
+ */
300
+ allowButton: string;
301
+ /**
302
+ * Deny button text
303
+ */
304
+ denyButton: string;
305
+ /**
306
+ * Add button text
307
+ */
308
+ addButton: string;
309
+ /**
310
+ * Delete button text
311
+ */
312
+ deleteButton: string;
313
+ /**
314
+ * Edit button text
315
+ */
316
+ editButton: string;
317
+ /**
318
+ * Delete actions text
319
+ */
320
+ deleteAction: string;
321
+ /**
322
+ * Edit actions text
323
+ */
324
+ editAction: string;
325
+ /**
326
+ * IP description table header
327
+ */
328
+ tableIpDescription: string;
329
+ /**
330
+ * IP address table header
331
+ */
332
+ tableIpAddress: string;
333
+ /**
334
+ * Own IP disclaimer text on allow choice
335
+ */
336
+ ownIpDisclaimerAllow: string;
337
+ /**
338
+ * Current ip chip text
339
+ */
340
+ currentIpChip: string;
341
+ /**
342
+ * My current ip tag text
343
+ */
344
+ myCurrentIp: string;
345
+ /**
346
+ * Add ip address placeholder
347
+ */
348
+ addIpAddressPlaceholder: string;
349
+ /**
350
+ * Add ip description placeholder
351
+ */
352
+ addIpDescriptionPlaceholder: string;
353
+ /**
354
+ * IP address required message
355
+ */
356
+ ipAddressRequiredMessage: string;
357
+ /**
358
+ * IP invalid message
359
+ */
360
+ ipAddressInvalidMessage: string;
361
+ /**
362
+ * IP address not unique message
363
+ */
364
+ ipAddressUniqueMessage: string;
365
+ /**
366
+ * Block IP address cant be user ip
367
+ */
368
+ ipAddressSameMessage: string;
369
+ /**
370
+ * IP description required message
371
+ */
372
+ ipDescriptionRequiredMessage: string;
373
+ /**
374
+ * Delete IP dialog delete button
375
+ */
376
+ deleteIpDialogDeleteButton: string;
377
+ /**
378
+ * Delete IP dialog cancel button
379
+ */
380
+ deleteIpDialogCancelButton: string;
381
+ /**
382
+ * Delete IP dialog title
383
+ */
384
+ deleteIpDialogTitle: string;
385
+ /**
386
+ * Delete IP dialog message
387
+ */
388
+ deleteIpDialogMessage: string;
389
+ /**
390
+ * Delete CIDR dialog message suffix
391
+ */
392
+ deleteCidrDialogMessageAfterMessage: string;
393
+ /**
394
+ * Change restriction dialog delete button
395
+ */
396
+ changeRestrictionStrategyDialogDeleteButton: string;
397
+ /**
398
+ * Change restriction dialog cancel button
399
+ */
400
+ changeRestrictionStrategyDialogCancelButton: string;
401
+ /**
402
+ * Change restriction to allow dialog title
403
+ */
404
+ changeRestrictionStrategyDialogTitleAllow: string;
405
+ /**
406
+ * Change restriction to deny dialog title
407
+ */
408
+ changeRestrictionStrategyDialogTitleDeny: string;
409
+ /**
410
+ * Change restriction to allow dialog message
411
+ */
412
+ changeRestrictionStrategyDialogMessageAllow: string;
413
+ /**
414
+ * Change restriction to allow dialog message
415
+ */
416
+ changeRestrictionStrategyDialogMessageDeny: string;
417
+ /**
418
+ * Add my ip button text
419
+ */
420
+ addMyIp: string;
421
+ /**
422
+ * Add my ip dialog confirm button
423
+ */
424
+ AddMyIpDialogConfirmButton: string;
425
+ /**
426
+ * Add my ip dialog cancel button
427
+ */
428
+ AddMyIpDialogCancelButton: string;
429
+ /**
430
+ * Add my ip to allow dialog title
431
+ */
432
+ AddMyIpDialogTitle: string;
433
+ /**
434
+ * Add my ip to allow dialog message
435
+ */
436
+ AddMyIpDialogMessage: string;
437
+ };
276
438
  }
@@ -77,6 +77,10 @@ export interface LoginLocalization {
77
77
  * Login with MFA title
78
78
  */
79
79
  mfaTitle: string;
80
+ /**
81
+ * Use authenticator title
82
+ */
83
+ mfaAuthenticatorTitle: string;
80
84
  /**
81
85
  * Login with MFA six digits input label If MFA is enabled
82
86
  */
@@ -108,6 +108,10 @@ export interface LayoutOptions {
108
108
  };
109
109
  }
110
110
  interface LoginBoxOptionalCommon {
111
+ /**
112
+ * Update document title when mounting authentication page
113
+ */
114
+ docTitle?: string;
111
115
  /**
112
116
  * Options to specify the login box page structure
113
117
  * Ex. split screen and display login in the left/right side
@@ -31,6 +31,14 @@ export interface LoginDisclaimerOptions {
31
31
  };
32
32
  }
33
33
  export interface LoginPageComponentsTheme {
34
+ /**
35
+ * Showing a login page header title
36
+ */
37
+ showLoginPageTitle?: boolean;
38
+ /**
39
+ * Showing a login page header subtitle
40
+ */
41
+ showLoginPageSubtitle?: boolean;
34
42
  /**
35
43
  * Login page container style
36
44
  */
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.6.1
1
+ /** @license Frontegg v6.8.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.6.1
1
+ /** @license Frontegg v6.8.0
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@frontegg/types",
3
- "version": "6.6.1",
3
+ "version": "6.8.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.6.1",
9
+ "@frontegg/redux-store": "6.8.0",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },