@secondstaxorg/sscomp 1.9.89 → 1.9.92
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.
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +20 -19
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +21 -21
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/ForgotPasswordForm/type.d.ts +5 -4
package/package.json
CHANGED
|
@@ -7,19 +7,19 @@ export interface ForgotPasswordFormProps extends React.HTMLAttributes<any> {
|
|
|
7
7
|
/**
|
|
8
8
|
* Function for redirect link on stage1
|
|
9
9
|
*/
|
|
10
|
-
|
|
10
|
+
redirectToLoginFxn: () => void;
|
|
11
11
|
/**
|
|
12
12
|
* Function for redirect link on stage1
|
|
13
13
|
*/
|
|
14
|
-
|
|
14
|
+
redirectToSetPasswordFxn: () => void;
|
|
15
15
|
/**
|
|
16
16
|
* Text to indicate which app the request came from
|
|
17
17
|
*/
|
|
18
18
|
appIdentifier?: string;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Endpoint to send the request for password reset to
|
|
21
21
|
*/
|
|
22
|
-
|
|
22
|
+
resetPWApiEndPoint: string;
|
|
23
23
|
/**
|
|
24
24
|
* Display text language
|
|
25
25
|
*/
|
|
@@ -38,5 +38,6 @@ export interface ForgotPasswordFormProps extends React.HTMLAttributes<any> {
|
|
|
38
38
|
resetLinkSentInfo?: string;
|
|
39
39
|
soundsGood?: string;
|
|
40
40
|
changeEmailLink?: string;
|
|
41
|
+
anErrorOccurred?: string;
|
|
41
42
|
};
|
|
42
43
|
}
|