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.
- package/README.md +2 -0
- package/bundles/ng-easycommerce.umd.js +4 -0
- 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/widgets-ec/price-ec/price-ec.component.js +4 -1
- package/esm2015/lib/services/products/product-detail.service.js +2 -1
- package/esm5/lib/ec-component/widgets-ec/price-ec/price-ec.component.js +4 -1
- package/esm5/lib/services/products/product-detail.service.js +2 -1
- package/fesm2015/ng-easycommerce.js +4 -0
- package/fesm2015/ng-easycommerce.js.map +1 -1
- package/fesm5/ng-easycommerce.js +4 -0
- package/fesm5/ng-easycommerce.js.map +1 -1
- package/lib/ec-component/widgets-ec/price-ec/price-ec.component.d.ts +1 -0
- package/ng-easycommerce.metadata.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10613,6 +10613,7 @@
|
|
|
10613
10613
|
if (_this.isReady()) {
|
|
10614
10614
|
asociated.stock = _this.variants[0].stock;
|
|
10615
10615
|
asociated.price = _this.variants[0].price.toString();
|
|
10616
|
+
asociated.priceWithoutTaxes = _this.variants[0].priceWithoutTaxes.toString() || undefined;
|
|
10616
10617
|
asociated.saleprice = _this.variants[0].saleprice && _this.variants[0].saleprice.toString() || undefined;
|
|
10617
10618
|
asociated.discount = ((_a = _this.variants[0]) === null || _a === void 0 ? void 0 : _a.discount) || undefined;
|
|
10618
10619
|
asociated.properties = _this.variants[0].properties ? _this.beautifyProperties(_this.variants[0].properties) : undefined;
|
|
@@ -12378,6 +12379,9 @@
|
|
|
12378
12379
|
__decorate$1f([
|
|
12379
12380
|
core.Input()
|
|
12380
12381
|
], PriceEcComponent.prototype, "saleprice", void 0);
|
|
12382
|
+
__decorate$1f([
|
|
12383
|
+
core.Input()
|
|
12384
|
+
], PriceEcComponent.prototype, "priceWithoutTaxes", void 0);
|
|
12381
12385
|
__decorate$1f([
|
|
12382
12386
|
core.Input()
|
|
12383
12387
|
], PriceEcComponent.prototype, "priceSize", void 0);
|