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 CHANGED
@@ -1,3 +1,5 @@
1
+ # version 0.0.533
2
+ - import en ecomponente para usar cartservice
1
3
  # version 0.0.532
2
4
  - se modifican endpoints cart para agregar y borrar items.
3
5
  # version 0.0.531
@@ -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()