@frontegg/types 6.46.0-alpha.0 → 6.46.0-alpha.1

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.
@@ -1,4 +1,4 @@
1
- import { TestimonialComponentLocalization, TitleDescriptionComponentLocalization, ValuesComponentLocalization } from "./SplitPageTypes";
1
+ import { TestimonialComponentLocalization, TitleDescriptionComponentLocalization, ValuesComponentLocalization } from './SplitPageTypes';
2
2
  export interface LoginLocalization {
3
3
  /**
4
4
  * strings in login page
@@ -77,6 +77,10 @@ export interface LoginLocalization {
77
77
  * Login with MFA title
78
78
  */
79
79
  mfaTitle: string;
80
+ /**
81
+ * Login with MFA subtitle
82
+ */
83
+ mfaSubtitle: string;
80
84
  /**
81
85
  * Use authenticator title
82
86
  */
@@ -124,6 +128,10 @@ export interface LoginLocalization {
124
128
  * Disable MFA page title after choose to recover mfa from login screen
125
129
  */
126
130
  recoverMfaTitle: string;
131
+ /**
132
+ * Disable MFA page message after choose to recover mfa from login screen
133
+ */
134
+ recoverMfaMessage: string;
127
135
  /**
128
136
  * Disable MFA button click here text in MFA section if it's enabled
129
137
  */
@@ -357,5 +365,93 @@ export interface LoginLocalization {
357
365
  registerNewQuickLoginSubtitle: string;
358
366
  phoneIsRequired: string;
359
367
  phoneIsInvalid: string;
368
+ /**
369
+ * Enroll MFA list title
370
+ */
371
+ forceEnrollMfaTitle: string;
372
+ /**
373
+ * Enroll MFA list subtitle
374
+ */
375
+ forceEnrollMfaSubtitle: string;
376
+ /**
377
+ * Enroll MFA list Authenticator App option message
378
+ */
379
+ forceEnrollMfaAuthenticatorApp: string;
380
+ /**
381
+ * Enroll MFA list SMS option message
382
+ */
383
+ forceEnrollMfaSMS: string;
384
+ /**
385
+ * Enroll MFA list Touch ID option message
386
+ */
387
+ forceEnrollMfaTouchID: string;
388
+ /**
389
+ * Enroll MFA list Security Key option message
390
+ */
391
+ forceEnrollMfaSecurityKey: string;
392
+ /**
393
+ * Enroll MFA list Android option message
394
+ */
395
+ forceEnrollMfaAndroid: string;
396
+ /**
397
+ * Pre enroll MFA with SMS title
398
+ */
399
+ preEnrollMfaSMSTitle: string;
400
+ /**
401
+ * Pre enroll MFA with SMS subtitle
402
+ */
403
+ preEnrollMfaSMSSubtitle: string;
404
+ /**
405
+ * MFA with SMS title
406
+ */
407
+ mfaSMSTitle: string;
408
+ /**
409
+ * MFA with SMS subtitle
410
+ */
411
+ mfaSMSSubtitle: string;
412
+ /**
413
+ * MFA with SMS resend code message
414
+ */
415
+ mfaSMSResendCode: string;
416
+ /**
417
+ * Enroll MFA with SMS back button message
418
+ */
419
+ enrollMfaSMSBackMessage: string;
420
+ /**
421
+ * MFA authenticate another way button message
422
+ */
423
+ moreWaysToAuthenticate: string;
424
+ /**
425
+ * MFA login list SMS option message
426
+ */
427
+ loginMfaSMS: string;
428
+ /**
429
+ * MFA login list Touch ID option message
430
+ */
431
+ loginMfaTouchID: string;
432
+ /**
433
+ * MFA login list Security Key option message
434
+ */
435
+ loginMfaSecurityKey: string;
436
+ /**
437
+ * MFA login list Android option message
438
+ */
439
+ loginMfaAndroid: string;
440
+ /**
441
+ * MFA login list Authenticator App option message
442
+ */
443
+ loginMfaAuthenticatorApp: string;
444
+ /**
445
+ * MFA login with Authenticator App title
446
+ */
447
+ loginMfaAuthenticatorAppTitle: string;
448
+ /**
449
+ * MFA login list with help message
450
+ */
451
+ loginMfaHelpMessage: string;
452
+ /**
453
+ * MFA login list recovery code message
454
+ */
455
+ useRecoveryCode: string;
360
456
  };
361
457
  }
@@ -3,6 +3,10 @@ export interface RecoveryMfaLocalization {
3
3
  * strings while displaying MFA recovery code
4
4
  */
5
5
  recoveryMfa: {
6
+ /**
7
+ * MFA recovery code section header
8
+ */
9
+ header: string;
6
10
  /**
7
11
  * MFA recovery code section title
8
12
  */
@@ -165,6 +165,32 @@ export interface LoginPageComponentsTheme {
165
165
  smsCardIcon?: CustomComponent<{}>;
166
166
  usbKeyCardIcon?: CustomComponent<{}>;
167
167
  loginCardIcon?: CustomComponent<{}>;
168
+ enrollMFAListTitle?: CustomComponent<TitleProps>;
169
+ enrollMFAListMessage?: CustomComponent<MessageProps>;
170
+ mfaListTitle?: CustomComponent<TitleProps>;
171
+ mfaListMessage?: CustomComponent<MessageProps>;
172
+ enrollMFAAuthenticatorAppTitle?: CustomComponent<TitleProps>;
173
+ enrollMFAAuthenticatorAppMessage?: CustomComponent<MessageProps>;
174
+ mfaAuthenticatorAppTitle?: CustomComponent<TitleProps>;
175
+ enrollMFASMSTitle?: CustomComponent<TitleProps>;
176
+ enrollMFASMSMessage?: CustomComponent<MessageProps>;
177
+ preEnrollMfaSMSTitle?: CustomComponent<TitleProps>;
178
+ preEnrollMfaSMSMessage?: CustomComponent<MessageProps>;
179
+ mfaSMSTitle?: CustomComponent<TitleProps>;
180
+ mfaSMSMessage?: CustomComponent<MessageProps>;
181
+ enrollMFAListTitleStyle?: ExtendedCSSProperties;
182
+ enrollMFAListMessageStyle?: ExtendedCSSProperties;
183
+ mfaListTitleStyle?: ExtendedCSSProperties;
184
+ mfaListMessageStyle?: ExtendedCSSProperties;
185
+ enrollMFAAuthenticatorAppTitleStyle?: ExtendedCSSProperties;
186
+ enrollMFAAuthenticatorAppMessageStyle?: ExtendedCSSProperties;
187
+ mfaAuthenticatorAppTitleStyle?: ExtendedCSSProperties;
188
+ enrollMFASMSTitleStyle?: ExtendedCSSProperties;
189
+ enrollMFASMSMessageStyle?: ExtendedCSSProperties;
190
+ preEnrollMfaSMSTitleStyle?: ExtendedCSSProperties;
191
+ preEnrollMfaSMSMessageStyle?: ExtendedCSSProperties;
192
+ mfaSMSTitleStyle?: ExtendedCSSProperties;
193
+ mfaSMSMessageStyle?: ExtendedCSSProperties;
168
194
  }
169
195
  export interface LoginPageThemeOptions extends LoginBoxCommonThemeOptions, LoginPageComponentsTheme {
170
196
  }
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.46.0-alpha.0
1
+ /** @license Frontegg v6.46.0-alpha.1
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.46.0-alpha.0
1
+ /** @license Frontegg v6.46.0-alpha.1
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.46.0-alpha.0",
3
+ "version": "6.46.0-alpha.1",
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.46.0-alpha.0",
9
+ "@frontegg/redux-store": "6.46.0-alpha.1",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },