ng-easycommerce-v18 0.3.14-beta.10 → 0.3.14-beta.11
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/README.md +1 -1
- package/esm2022/lib/ec-components/auth-ec/login-form-ec/login-form-ec.component.mjs +3 -2
- package/esm2022/lib/ec-components/auth-ec/password-reset-ec/password-reset-ec.component.mjs +4 -3
- package/esm2022/lib/ec-components/widgets-ec/decidir-ec/decidir-ec.component.mjs +49 -27
- package/fesm2022/ng-easycommerce-v18.mjs +51 -27
- package/fesm2022/ng-easycommerce-v18.mjs.map +1 -1
- package/lib/ec-components/auth-ec/login-form-ec/login-form-ec.component.d.ts +1 -0
- package/lib/ec-components/auth-ec/password-reset-ec/password-reset-ec.component.d.ts +1 -0
- package/lib/ec-components/widgets-ec/decidir-ec/decidir-ec.component.d.ts +6 -0
- package/package.json +1 -1
|
@@ -15,6 +15,7 @@ export declare class PasswordResetEcComponent extends ComponentHelper implements
|
|
|
15
15
|
ready: boolean;
|
|
16
16
|
protected token: string | undefined;
|
|
17
17
|
formGroup: FormGroup;
|
|
18
|
+
private platformId;
|
|
18
19
|
constructor(authService: AuthService, toastr: ToastService, activedRoute: ActivatedRoute, router: Router, formBuilder: FormBuilder);
|
|
19
20
|
ngOnInit(): void;
|
|
20
21
|
sendNewPassword: (event: Event) => void;
|
|
@@ -40,6 +40,12 @@ export declare class DecidirEcComponent extends ComponentHelper implements OnIni
|
|
|
40
40
|
params: any;
|
|
41
41
|
showModal: boolean;
|
|
42
42
|
protected dataRedirect: () => string;
|
|
43
|
+
private platformId;
|
|
44
|
+
private isBrowser;
|
|
45
|
+
private windowRef;
|
|
46
|
+
private localStorageRef;
|
|
47
|
+
private sessionStorageRef;
|
|
48
|
+
private messageListener;
|
|
43
49
|
constructor(renderer: Renderer2, connection: ConnectionService, toastrService: ToastService, consts: CoreConstantsService, apiConsts: ApiConstantsService, cartService: CartService, activedRoute: ActivatedRoute, sanitizer: DomSanitizer, paramsService: ParametersService);
|
|
44
50
|
ngOnInit(): void;
|
|
45
51
|
ngOnDestroy(): void;
|