@frontegg/types 7.69.0-alpha.0 → 7.69.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.
@@ -19,6 +19,22 @@ export interface ForgetPasswordLocalization {
19
19
  * Forget password form email input placeholder
20
20
  */
21
21
  emailInputPlaceholder: string;
22
+ /**
23
+ * Forget password form email or phone input label
24
+ */
25
+ emailOrPhoneInputLabel: string;
26
+ /**
27
+ * Forget password form email or phone input placeholder
28
+ */
29
+ emailOrPhonePlaceHolder: string;
30
+ /**
31
+ * Forget password form phone input label
32
+ */
33
+ phoneInputLabel: string;
34
+ /**
35
+ * Forget password form phone input placeholder
36
+ */
37
+ phonePlaceholder: string;
22
38
  /**
23
39
  * error message displayed if email is invalid
24
40
  */
@@ -27,9 +43,49 @@ export interface ForgetPasswordLocalization {
27
43
  * error message displayed if email is empty
28
44
  */
29
45
  emailIsRequired: string;
46
+ /**
47
+ * error message displayed if phone is invalid
48
+ */
49
+ phoneIsInvalid: string;
50
+ /**
51
+ * error message displayed if phone is empty
52
+ */
53
+ phoneIsRequired: string;
54
+ /**
55
+ * Text for submit button
56
+ */
30
57
  submitButtonText: string;
58
+ /**
59
+ * Text for back to login link
60
+ */
31
61
  backToLogin: string;
62
+ /**
63
+ * Title displayed on success screen
64
+ */
32
65
  resetEmailSentTitle: string;
66
+ /**
67
+ * Message displayed on success screen (use {{identifier}} for placeholder)
68
+ */
33
69
  resetEmailSentMessage: string;
70
+ /**
71
+ * Title for the password recovery method selection screen
72
+ * @default Password recovery
73
+ */
74
+ passwordRecoveryTitle?: string;
75
+ /**
76
+ * Subtitle for the password recovery method selection screen
77
+ * @default To continue, choose one of these methods
78
+ */
79
+ passwordRecoverySubtitle?: string;
80
+ /**
81
+ * Text for the email recovery option button
82
+ * @default Send an email with link
83
+ */
84
+ emailOptionTitle?: string;
85
+ /**
86
+ * Text for the SMS recovery option button
87
+ * @default Send a SMS code
88
+ */
89
+ smsOptionTitle?: string;
34
90
  };
35
91
  }
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v7.69.0-alpha.0
1
+ /** @license Frontegg v7.69.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 v7.69.0-alpha.0
1
+ /** @license Frontegg v7.69.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": "7.69.0-alpha.0",
3
+ "version": "7.69.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": "7.69.0-alpha.0",
9
+ "@frontegg/redux-store": "7.69.0-alpha.1",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },