ng-easycommerce 0.0.678 → 0.0.679
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 +1 -1
- 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/collection-ec/collection-ec.component.js +2 -2
- package/esm5/lib/ec-component/collection-ec/collection-ec.component.js +2 -2
- package/fesm2015/ng-easycommerce.js +1 -1
- package/fesm2015/ng-easycommerce.js.map +1 -1
- package/fesm5/ng-easycommerce.js +1 -1
- package/fesm5/ng-easycommerce.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# version 0.0.679
|
|
2
|
+
- fix(collection): ensure loading state is reset correctly
|
|
1
3
|
# version 0.0.678
|
|
2
4
|
- Checkout (legacy y single): las opciones de métodos de envío ahora muestran siempre decimales, sin respetar `currency.withoutDecimal`.
|
|
3
5
|
- `shipment-ec.component.html` y `shipment-ec-single.component.html`: se fuerza `ecCurrencySymbol:'alwaysShowDecimals'` para mantener consistencia con el resumen del checkout.
|
|
@@ -11661,6 +11661,7 @@
|
|
|
11661
11661
|
if (ready.readyAll) {
|
|
11662
11662
|
var cambio_1 = false;
|
|
11663
11663
|
_this.products = [];
|
|
11664
|
+
_this.loading = true;
|
|
11664
11665
|
if (!params['type'] || !params['value']) {
|
|
11665
11666
|
_this.productsService.getProductsForFilter({ latest: true, limit: 10 }, _this.optionsFilters, queryParams.search, _this.defaultFilters);
|
|
11666
11667
|
}
|
|
@@ -11716,7 +11717,6 @@
|
|
|
11716
11717
|
_this.filters_top = _this.getSpecificFilters(res, ['sort']);
|
|
11717
11718
|
});
|
|
11718
11719
|
_this.productsService.finished().subscribe(function (res) { return _this.finished = res; });
|
|
11719
|
-
_this.loading = false;
|
|
11720
11720
|
}
|
|
11721
11721
|
});
|
|
11722
11722
|
};
|