ng-easycommerce 0.0.610 → 0.0.612
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 +4 -0
- package/bundles/ng-easycommerce.umd.js +29 -6
- package/bundles/ng-easycommerce.umd.js.map +1 -1
- package/bundles/ng-easycommerce.umd.min.js +1 -1
- package/bundles/ng-easycommerce.umd.min.js.map +1 -1
- package/esm2015/lib/ec-component/cart-ec/cart-ec.component.js +2 -2
- package/esm2015/lib/ec-component/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.js +10 -3
- package/esm2015/lib/ec-component/sidebar-ec/sidebar-ec.component.js +4 -2
- package/esm2015/lib/ec-component/widgets-ec/price-ec/price-ec.component.js +13 -3
- package/esm5/lib/ec-component/cart-ec/cart-ec.component.js +2 -2
- package/esm5/lib/ec-component/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.js +10 -3
- package/esm5/lib/ec-component/sidebar-ec/sidebar-ec.component.js +4 -2
- package/esm5/lib/ec-component/widgets-ec/price-ec/price-ec.component.js +17 -3
- package/fesm2015/ng-easycommerce.js +25 -6
- package/fesm2015/ng-easycommerce.js.map +1 -1
- package/fesm5/ng-easycommerce.js +29 -6
- package/fesm5/ng-easycommerce.js.map +1 -1
- package/lib/ec-component/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.d.ts +1 -0
- package/lib/ec-component/sidebar-ec/sidebar-ec.component.d.ts +1 -0
- package/lib/ec-component/widgets-ec/price-ec/price-ec.component.d.ts +2 -0
- package/ng-easycommerce.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -22,4 +22,5 @@ export declare class DetailCheckoutBlockEcComponent extends ComponentHelper impl
|
|
|
22
22
|
getIcon: (data_item: CheckoutData) => "fas fa-ticket-alt fa-2x" | "fas fa-tags fa-2x" | "fas fa-shipping-fast fa-2x" | "fas fa-boxes fa-2x" | "fas fa-file-invoice-dollar fa-2x" | "fas fa-shopping-basket fa-2x";
|
|
23
23
|
getIcon2: (data_type: any) => "fas fa-ticket-alt fa-2x" | "fas fa-tags fa-2x";
|
|
24
24
|
getTypeLabel(type: string): string;
|
|
25
|
+
shouldShowItem(type: string): boolean;
|
|
25
26
|
}
|
|
@@ -19,6 +19,7 @@ export declare class SidebarEcComponent {
|
|
|
19
19
|
hideDiscounts: boolean;
|
|
20
20
|
hideTaxes: boolean;
|
|
21
21
|
creditAccountShowPrices: boolean | null;
|
|
22
|
+
showPriceWithoutTaxes: boolean;
|
|
22
23
|
constructor(cartService: CartService, consts: Constants, authService: AuthService, router: Router, toastrService: ToastService, channelConfigService: ChannelConfigService);
|
|
23
24
|
ngOnInit(): void;
|
|
24
25
|
actualizarCantidad: (item: any, cantidad: any, stock: any, id?: any) => void;
|
|
@@ -24,6 +24,8 @@ export declare class PriceEcComponent extends ComponentHelper implements OnInit
|
|
|
24
24
|
customTaxTemplate: TemplateRef<any>;
|
|
25
25
|
customOnlyTaxLabelTemplate: TemplateRef<any>;
|
|
26
26
|
showPriceWithoutTaxes: boolean;
|
|
27
|
+
hideTaxes: boolean;
|
|
27
28
|
constructor(productsService: ProductsService, channelConfigService: ChannelConfigService);
|
|
28
29
|
ngOnInit(): void;
|
|
30
|
+
get shouldShowTaxes(): boolean;
|
|
29
31
|
}
|