ng-easycommerce 0.0.617 → 0.0.618

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.
@@ -10627,6 +10627,7 @@ var ProductDetailService = /** @class */ (function () {
10627
10627
  if (_this.isReady()) {
10628
10628
  asociated.stock = _this.variants[0].stock;
10629
10629
  asociated.price = _this.variants[0].price.toString();
10630
+ asociated.priceWithoutTaxes = _this.variants[0].priceWithoutTaxes.toString() || undefined;
10630
10631
  asociated.saleprice = _this.variants[0].saleprice && _this.variants[0].saleprice.toString() || undefined;
10631
10632
  asociated.discount = ((_a = _this.variants[0]) === null || _a === void 0 ? void 0 : _a.discount) || undefined;
10632
10633
  asociated.properties = _this.variants[0].properties ? _this.beautifyProperties(_this.variants[0].properties) : undefined;
@@ -12392,6 +12393,9 @@ var PriceEcComponent = /** @class */ (function (_super) {
12392
12393
  __decorate$1f([
12393
12394
  Input()
12394
12395
  ], PriceEcComponent.prototype, "saleprice", void 0);
12396
+ __decorate$1f([
12397
+ Input()
12398
+ ], PriceEcComponent.prototype, "priceWithoutTaxes", void 0);
12395
12399
  __decorate$1f([
12396
12400
  Input()
12397
12401
  ], PriceEcComponent.prototype, "priceSize", void 0);