@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.9.87",
3
+ "version": "1.9.89",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { ForgotPasswordFormProps } from "./type";
3
+ declare const ForgotPasswordForm: (props: ForgotPasswordFormProps) => JSX.Element;
4
+ export default ForgotPasswordForm;
@@ -0,0 +1,2 @@
1
+ export declare const MainContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const PrimaryButtonSm: import("styled-components").StyledComponent<"button", any, {}, never>;
@@ -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';