@secondstaxorg/sscomp 1.9.87 → 1.9.89
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/bundle.css +1 -1
- package/dist/index.css +5 -5
- package/dist/index.es.css +5 -5
- package/dist/index.es.js +106 -36
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2143 -1982
- package/dist/index.js.map +1 -1
- package/dist/index.min.css +5 -5
- package/dist/index.min.js +153 -83
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/ForgotPasswordForm/ForgotPasswordForm.d.ts +4 -0
- package/types/components/ForgotPasswordForm/style.d.ts +2 -0
- package/types/components/ForgotPasswordForm/type.d.ts +42 -0
- package/types/components/LoadingSpinner/style.d.ts +1 -0
- package/types/components/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface emailFieldOverides {
|
|
3
|
+
requiredField?: string;
|
|
4
|
+
enterValidEmail?: string;
|
|
5
|
+
}
|
|
6
|
+
export interface ForgotPasswordFormProps extends React.HTMLAttributes<any> {
|
|
7
|
+
/**
|
|
8
|
+
* Function for redirect link on stage1
|
|
9
|
+
*/
|
|
10
|
+
redirectFxnStage1: () => void;
|
|
11
|
+
/**
|
|
12
|
+
* Function for redirect link on stage1
|
|
13
|
+
*/
|
|
14
|
+
redirectFxnStage2: () => void;
|
|
15
|
+
/**
|
|
16
|
+
* Text to indicate which app the request came from
|
|
17
|
+
*/
|
|
18
|
+
appIdentifier?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Url to send the request for password reset to
|
|
21
|
+
*/
|
|
22
|
+
apiUrl: string;
|
|
23
|
+
/**
|
|
24
|
+
* Display text language
|
|
25
|
+
*/
|
|
26
|
+
userLang?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Specify custom label for text displayed throughout component
|
|
29
|
+
*/
|
|
30
|
+
labelOverrides?: {
|
|
31
|
+
heading?: string;
|
|
32
|
+
emailFieldLabel?: string;
|
|
33
|
+
emailFieldRequiredlabelOverride?: string;
|
|
34
|
+
emailFieldValidEmailLabelOveride?: string;
|
|
35
|
+
resetPwBtnText?: string;
|
|
36
|
+
cancelBtnRedirectText?: string;
|
|
37
|
+
resetLinkSentHeader?: string;
|
|
38
|
+
resetLinkSentInfo?: string;
|
|
39
|
+
soundsGood?: string;
|
|
40
|
+
changeEmailLink?: string;
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const LoadingSpinnerContainer: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
@@ -84,3 +84,4 @@ export { default as DoughnutChart } from './DoughnutChart/DoughnutChart';
|
|
|
84
84
|
export { default as DetailField } from './DetailField/DetailField';
|
|
85
85
|
export { default as MultipleFileUpload } from './MultipleFileUpload/MultipleFileUpload';
|
|
86
86
|
export { default as AmountInput } from './AmountInput/AmountInput';
|
|
87
|
+
export { default as ForgotPasswordForm } from './ForgotPasswordForm/ForgotPasswordForm';
|