@frontegg/types 7.58.0 → 7.60.0-alpha.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.
|
@@ -7,6 +7,31 @@ export interface ResetPasswordLocalization {
|
|
|
7
7
|
* Reset password page title
|
|
8
8
|
*/
|
|
9
9
|
title: string;
|
|
10
|
+
/**
|
|
11
|
+
* Title displayed when password expired
|
|
12
|
+
*/
|
|
13
|
+
passwordExpiredTitle: string;
|
|
14
|
+
/**
|
|
15
|
+
* Subtitle displayed when password expired
|
|
16
|
+
*/
|
|
17
|
+
passwordExpiredSubtitle: string;
|
|
18
|
+
/**
|
|
19
|
+
* Title displayed when password is about to expire
|
|
20
|
+
* EX: Your password will expire in {{days}} days
|
|
21
|
+
*/
|
|
22
|
+
passwordNotificationTitle: string;
|
|
23
|
+
/**
|
|
24
|
+
* Current password input label
|
|
25
|
+
*/
|
|
26
|
+
currentPasswordInputLabel: string;
|
|
27
|
+
/**
|
|
28
|
+
* Error to be displayed if current password is empty
|
|
29
|
+
*/
|
|
30
|
+
currentPasswordIsRequired: string;
|
|
31
|
+
/**
|
|
32
|
+
* Remind me later button text
|
|
33
|
+
*/
|
|
34
|
+
remindMeLater: string;
|
|
10
35
|
/**
|
|
11
36
|
* Text displayed in reset password form before password inputs
|
|
12
37
|
*/
|
|
@@ -19,6 +44,10 @@ export interface ResetPasswordLocalization {
|
|
|
19
44
|
* String displayed as placeholder when new password field is empty
|
|
20
45
|
*/
|
|
21
46
|
newPasswordInputPlaceholder: string;
|
|
47
|
+
/**
|
|
48
|
+
* String displayed as placeholder when current password field is empty
|
|
49
|
+
*/
|
|
50
|
+
currentPasswordInputPlaceholder: string;
|
|
22
51
|
/**
|
|
23
52
|
* Error displayed when new password is empty
|
|
24
53
|
*/
|
|
@@ -43,6 +72,10 @@ export interface ResetPasswordLocalization {
|
|
|
43
72
|
* Reset password submit button text
|
|
44
73
|
*/
|
|
45
74
|
resetPasswordButton: string;
|
|
75
|
+
/**
|
|
76
|
+
* Change password button text
|
|
77
|
+
*/
|
|
78
|
+
changePasswordButton: string;
|
|
46
79
|
/**
|
|
47
80
|
* Title to be displayed if reset password succeeded
|
|
48
81
|
*/
|
|
@@ -51,6 +84,10 @@ export interface ResetPasswordLocalization {
|
|
|
51
84
|
* Message to be displayed if reset password succeeded
|
|
52
85
|
*/
|
|
53
86
|
successMessage: string;
|
|
87
|
+
/**
|
|
88
|
+
* Message to be displayed if change password succeeded
|
|
89
|
+
*/
|
|
90
|
+
changePasswordSuccessMessage: string;
|
|
54
91
|
/**
|
|
55
92
|
* Title to be displayed if reset password failed
|
|
56
93
|
*/
|
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": "7.
|
|
3
|
+
"version": "7.60.0-alpha.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": "7.
|
|
9
|
+
"@frontegg/redux-store": "7.60.0-alpha.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|