simpo-component-library 1.6.128 → 1.6.129
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/esm2022/lib/ecommerce/sections/authentication-required/authentication-required.component.mjs +90 -5
- package/esm2022/lib/ecommerce/sections/cart/cart.component.mjs +6 -3
- package/fesm2022/simpo-component-library.mjs +82 -6
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts +20 -0
- package/package.json +1 -1
- package/simpo-component-library-1.6.129.tgz +0 -0
- package/simpo-component-library-1.6.127.tgz +0 -0
- package/simpo-component-library-1.6.128.tgz +0 -0
package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts
CHANGED
@@ -1,5 +1,25 @@
|
|
1
|
+
import { RestService } from '../../../services/rest.service';
|
2
|
+
import { Router } from '@angular/router';
|
3
|
+
import { MessageService } from 'primeng/api';
|
4
|
+
import { StorageServiceService } from '../../../services/storage.service';
|
1
5
|
import * as i0 from "@angular/core";
|
2
6
|
export declare class AuthenticationRequiredComponent {
|
7
|
+
private readonly restService;
|
8
|
+
private readonly router;
|
9
|
+
private readonly messageService;
|
10
|
+
private readonly storageService;
|
11
|
+
email: string;
|
12
|
+
mobile: string;
|
13
|
+
otp: string;
|
14
|
+
password: string;
|
15
|
+
confPassword: string;
|
16
|
+
userName: string;
|
17
|
+
buttonLoading: boolean;
|
18
|
+
businessId: string | null;
|
19
|
+
constructor(restService: RestService, router: Router, messageService: MessageService, storageService: StorageServiceService);
|
20
|
+
login(): void;
|
21
|
+
createAccount(): void;
|
22
|
+
get isMobile(): boolean;
|
3
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationRequiredComponent, never>;
|
4
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<AuthenticationRequiredComponent, "simpo-authentication-required", never, {}, {}, never, never, true, never>;
|
5
25
|
}
|
package/package.json
CHANGED
Binary file
|
Binary file
|
Binary file
|