simpo-component-library 3.6.128 → 3.6.130
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 +43 -7
- package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +3 -3
- package/esm2022/lib/ecommerce/sections/small-product-listing/small-product-listing.component.mjs +3 -3
- package/fesm2022/simpo-component-library.mjs +46 -10
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts +8 -2
- package/package.json +1 -1
- package/simpo-component-library-3.6.130.tgz +0 -0
- package/simpo-component-library-3.6.128.tgz +0 -0
package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
1
2
|
import { RestService } from '../../../services/rest.service';
|
2
3
|
import { ActivatedRoute, Router } from '@angular/router';
|
3
4
|
import { MessageService } from 'primeng/api';
|
@@ -15,6 +16,7 @@ export declare class AuthenticationRequiredComponent extends BaseSection {
|
|
15
16
|
private readonly storageService;
|
16
17
|
private readonly matDialog;
|
17
18
|
private readonly activatedRoute;
|
19
|
+
private elementRef;
|
18
20
|
private readonly dialogRef;
|
19
21
|
private readonly bottomsheetRef;
|
20
22
|
data?: AuthenticationModel;
|
@@ -41,10 +43,11 @@ export declare class AuthenticationRequiredComponent extends BaseSection {
|
|
41
43
|
type: string;
|
42
44
|
active: boolean;
|
43
45
|
}[];
|
44
|
-
constructor(restService: RestService, router: Router, messageService: MessageService, storageService: StorageServiceService, matDialog: MatDialog, activatedRoute: ActivatedRoute, dialogRef: MatDialogRef<AuthenticationRequiredComponent>, bottomsheetRef: MatBottomSheetRef<AuthenticationRequiredComponent>);
|
46
|
+
constructor(restService: RestService, router: Router, messageService: MessageService, storageService: StorageServiceService, matDialog: MatDialog, activatedRoute: ActivatedRoute, elementRef: ElementRef, dialogRef: MatDialogRef<AuthenticationRequiredComponent>, bottomsheetRef: MatBottomSheetRef<AuthenticationRequiredComponent>);
|
45
47
|
signUpEnabled: any;
|
46
48
|
proceedToCheckout: boolean;
|
47
49
|
ngOnInit(): void;
|
50
|
+
ngAfterViewInit(): void;
|
48
51
|
loginType: "PASSWORD" | "OTP";
|
49
52
|
close(): void;
|
50
53
|
login(): void;
|
@@ -64,6 +67,9 @@ export declare class AuthenticationRequiredComponent extends BaseSection {
|
|
64
67
|
get isMobile(): boolean;
|
65
68
|
get stylesLayout(): LayOutModel;
|
66
69
|
get accentColor(): string;
|
67
|
-
|
70
|
+
private hexToRgba;
|
71
|
+
setup3DEffects(): void;
|
72
|
+
showPassword: boolean;
|
73
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationRequiredComponent, [null, null, null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
68
74
|
static ɵcmp: i0.ɵɵComponentDeclaration<AuthenticationRequiredComponent, "simpo-authentication-required", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; }, {}, never, never, true, never>;
|
69
75
|
}
|
package/package.json
CHANGED
Binary file
|
Binary file
|