simpo-component-library 1.6.92 → 1.6.95
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/ecommerce/sections/authenticate-user/authenticate-user.component.mjs +133 -4
- package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +3 -3
- package/esm2022/lib/sections/contact-us/contact-us.component.mjs +3 -3
- package/esm2022/lib/services/rest.service.mjs +11 -1
- package/fesm2022/simpo-component-library.mjs +146 -7
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/authenticate-user/authenticate-user.component.d.ts +21 -1
- package/lib/services/rest.service.d.ts +3 -0
- package/package.json +1 -1
- package/simpo-component-library-1.6.95.tgz +0 -0
- package/simpo-component-library-1.6.91.tgz +0 -0
- package/simpo-component-library-1.6.92.tgz +0 -0
@@ -39,9 +39,16 @@ export declare class AuthenticateUserComponent extends BaseSection implements On
|
|
39
39
|
isLoading: boolean;
|
40
40
|
otpData: undefined[];
|
41
41
|
otpString: string;
|
42
|
-
|
42
|
+
SignupOtpString: string;
|
43
|
+
screen: 'LOGIN' | 'OTP' | 'PASSWORD' | 'CREATEPASSWORD' | 'SIGNUPOTP';
|
43
44
|
mobile: string | null;
|
45
|
+
email: string | null;
|
46
|
+
mobilenumber: string | null;
|
47
|
+
emailentered: string | null;
|
44
48
|
countryCode: string | null;
|
49
|
+
Password: string | null;
|
50
|
+
confirmPass: string | null;
|
51
|
+
newPassword: string | null;
|
45
52
|
buttonLoading: boolean;
|
46
53
|
constructor(matData: any, bottomsheetData: any, restService: RestService, router: Router, matDialog: MatDialog, storageService: StorageServiceService, dialogRef: MatDialogRef<AuthenticateUserComponent>, bottomsheetRef: MatBottomSheetRef<AuthenticateUserComponent>, _eventService: EventsService, messageService: MessageService);
|
47
54
|
styles: any;
|
@@ -51,7 +58,20 @@ export declare class AuthenticateUserComponent extends BaseSection implements On
|
|
51
58
|
goBack(): void;
|
52
59
|
private resetValue;
|
53
60
|
generateOTP(): void;
|
61
|
+
password: any;
|
62
|
+
PasswordHide: boolean;
|
63
|
+
newPasswordHide: boolean;
|
64
|
+
m_clicked: boolean;
|
65
|
+
e_clicked: boolean;
|
66
|
+
mobile_click(): void;
|
67
|
+
email_click(): void;
|
54
68
|
verifyOTP(): void;
|
69
|
+
verifySignupOTP(): void;
|
70
|
+
payload: any;
|
71
|
+
createPassword(): void;
|
72
|
+
passData: any;
|
73
|
+
signinPassword(): void;
|
74
|
+
validateNumber(event: KeyboardEvent): void;
|
55
75
|
editSection(): void;
|
56
76
|
resendOTP(): void;
|
57
77
|
get isMobileValid(): boolean;
|
@@ -53,6 +53,9 @@ export declare class RestService implements OnDestroy {
|
|
53
53
|
getRecentViewProduct(userId: string): Observable<any>;
|
54
54
|
getLocationByPinCode(pincode: string): Observable<PincodeLocation>;
|
55
55
|
getLocationByPinCodeInternational(pincode: string): Observable<Object>;
|
56
|
+
createPassword(payload: any): Observable<Object>;
|
57
|
+
verifySignupOTP(mobile: string, otp: string, deviceInfo: DeviceInfo): Observable<Object>;
|
58
|
+
signinPassword(passData: any): Observable<Object>;
|
56
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<RestService, never>;
|
57
60
|
static ɵprov: i0.ɵɵInjectableDeclaration<RestService>;
|
58
61
|
}
|
package/package.json
CHANGED
Binary file
|
Binary file
|
Binary file
|