ng-easycommerce 0.0.532 → 0.0.533
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/bundles/ng-easycommerce.umd.js +4 -2
- 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/multiple-items-to-cart-ec/multiple-items-to-cart-ec.component.js +6 -3
- package/esm5/lib/ec-component/multiple-items-to-cart-ec/multiple-items-to-cart-ec.component.js +6 -3
- package/fesm2015/ng-easycommerce.js +4 -2
- package/fesm2015/ng-easycommerce.js.map +1 -1
- package/fesm5/ng-easycommerce.js +4 -2
- package/fesm5/ng-easycommerce.js.map +1 -1
- package/lib/ec-component/multiple-items-to-cart-ec/multiple-items-to-cart-ec.component.d.ts +3 -1
- package/ng-easycommerce.metadata.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14734,10 +14734,11 @@
|
|
|
14734
14734
|
};
|
|
14735
14735
|
var MultipleItemsToCartEcComponent = /** @class */ (function (_super) {
|
|
14736
14736
|
__extends$12(MultipleItemsToCartEcComponent, _super);
|
|
14737
|
-
function MultipleItemsToCartEcComponent(consts, productService) {
|
|
14737
|
+
function MultipleItemsToCartEcComponent(consts, productService, cartService) {
|
|
14738
14738
|
var _this = _super.call(this) || this;
|
|
14739
14739
|
_this.consts = consts;
|
|
14740
14740
|
_this.productService = productService;
|
|
14741
|
+
_this.cartService = cartService;
|
|
14741
14742
|
_this.totalCostItems = new core.EventEmitter();
|
|
14742
14743
|
_this.totalItems = new core.EventEmitter();
|
|
14743
14744
|
_this.total = 0;
|
|
@@ -14784,7 +14785,8 @@
|
|
|
14784
14785
|
};
|
|
14785
14786
|
MultipleItemsToCartEcComponent.ctorParameters = function () { return [
|
|
14786
14787
|
{ type: Constants },
|
|
14787
|
-
{ type: ProductDetailService }
|
|
14788
|
+
{ type: ProductDetailService },
|
|
14789
|
+
{ type: CartService }
|
|
14788
14790
|
]; };
|
|
14789
14791
|
__decorate$1E([
|
|
14790
14792
|
core.Input()
|