ng-easycommerce-v18 0.2.21 → 0.2.22
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 +2 -0
- package/assets/ec-i18n/es.json +3 -2
- package/esm2022/lib/ec-components/account-ec/order-ec/order-ec.component.mjs +3 -3
- package/esm2022/lib/ec-components/auth-ec/register-form-ec/register-form-ec.component.mjs +43 -11
- package/esm2022/lib/ec-components/checkout-ec/checkout-ec.component.mjs +3 -3
- package/esm2022/lib/ec-components/collection-ec/collection-ec.component.mjs +3 -1
- package/esm2022/lib/ec-components/product-detail-ec/product-detail-ec.component.mjs +3 -2
- package/esm2022/lib/ec-components/variants-ec/variants-ec.component.mjs +40 -5
- package/fesm2022/ng-easycommerce-v18.mjs +93 -28
- package/fesm2022/ng-easycommerce-v18.mjs.map +1 -1
- package/lib/ec-components/auth-ec/register-form-ec/register-form-ec.component.d.ts +4 -0
- package/lib/ec-components/collection-ec/collection-ec.component.d.ts +2 -0
- package/lib/ec-components/variants-ec/variants-ec.component.d.ts +13 -1
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export declare class RegisterFormEcComponent {
|
|
|
7
7
|
private _router;
|
|
8
8
|
private _analyticsService;
|
|
9
9
|
private _formBuilder;
|
|
10
|
+
private channelConfigService;
|
|
10
11
|
/**
|
|
11
12
|
* Indica si debe redireccionar o se queda en la misma pantalla
|
|
12
13
|
*/
|
|
@@ -19,6 +20,9 @@ export declare class RegisterFormEcComponent {
|
|
|
19
20
|
* Contiene el formulario de registro.
|
|
20
21
|
*/
|
|
21
22
|
registerForm: FormGroup;
|
|
23
|
+
register_loading: boolean | undefined;
|
|
24
|
+
isAccountVerificationRequired: boolean;
|
|
25
|
+
isSendWelcomeEmail: boolean;
|
|
22
26
|
passwordMatchValidator(group: FormGroup): {
|
|
23
27
|
mismatch: boolean;
|
|
24
28
|
} | null;
|
|
@@ -26,6 +26,8 @@ export declare class CollectionEcComponent implements OnInit {
|
|
|
26
26
|
filters$: Observable<Filter[]>;
|
|
27
27
|
ready$: Observable<boolean>;
|
|
28
28
|
private window?;
|
|
29
|
+
isList: boolean;
|
|
30
|
+
setAsList: (value: boolean) => boolean;
|
|
29
31
|
ngOnInit(): void;
|
|
30
32
|
private total;
|
|
31
33
|
private platformId;
|
|
@@ -1,8 +1,20 @@
|
|
|
1
|
+
import { CoreConstantsService } from "../../constants";
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class VariantsEcComponent {
|
|
3
4
|
private _productDetailsService;
|
|
5
|
+
private parametersService;
|
|
6
|
+
consts: CoreConstantsService;
|
|
7
|
+
params: any;
|
|
4
8
|
options$: import("rxjs").Observable<any>;
|
|
9
|
+
setImages?: (color: any, optCode: any) => void;
|
|
10
|
+
product: any;
|
|
11
|
+
itemSelected: any;
|
|
12
|
+
hasParams: (params: any, code: string) => any;
|
|
5
13
|
setOption(optionCode: any, optionValue: any): void;
|
|
14
|
+
setValuesImages: (color: any, optCode: any) => boolean;
|
|
15
|
+
chosenOption: (option: any, value: any) => boolean;
|
|
16
|
+
getValueSelect: (options: any[]) => any;
|
|
17
|
+
revisarStock(index: number): any;
|
|
6
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<VariantsEcComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VariantsEcComponent, "app-variants-ec", never, {}, {}, never, never, true, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VariantsEcComponent, "app-variants-ec", never, { "setImages": { "alias": "setImages"; "required": false; }; "product": { "alias": "product"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
20
|
}
|