ng-easycommerce 0.0.511 → 0.0.513
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/bundles/ng-easycommerce.umd.js +13 -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/checkout-ec/dataform-ec/dataform-ec.component.js +2 -2
- package/esm2015/lib/ec-component/filters-ec/filters-ec.component.js +13 -1
- package/esm5/lib/ec-component/checkout-ec/dataform-ec/dataform-ec.component.js +2 -2
- package/esm5/lib/ec-component/filters-ec/filters-ec.component.js +13 -1
- package/fesm2015/ng-easycommerce.js +13 -1
- package/fesm2015/ng-easycommerce.js.map +1 -1
- package/fesm5/ng-easycommerce.js +13 -1
- package/fesm5/ng-easycommerce.js.map +1 -1
- package/lib/ec-component/filters-ec/filters-ec.component.d.ts +1 -0
- package/ng-easycommerce.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -7650,7 +7650,7 @@
|
|
|
7650
7650
|
}
|
|
7651
7651
|
this.form_ready = true;
|
|
7652
7652
|
this.allready_data = true;
|
|
7653
|
-
this.nextStep()
|
|
7653
|
+
// this.nextStep()
|
|
7654
7654
|
}
|
|
7655
7655
|
else {
|
|
7656
7656
|
this.toast.show('operation-error');
|
|
@@ -8747,6 +8747,18 @@
|
|
|
8747
8747
|
this.expand = !this.consts.mobile();
|
|
8748
8748
|
this.ecOnInit();
|
|
8749
8749
|
};
|
|
8750
|
+
FiltersEcComponent.prototype.uniqueSelection = function (filter, filterChild) {
|
|
8751
|
+
filter.data.forEach(function (filterElement) {
|
|
8752
|
+
if (filterElement.selected) {
|
|
8753
|
+
filterElement.selected = false;
|
|
8754
|
+
}
|
|
8755
|
+
filterElement.children.forEach(function (filterChildren) {
|
|
8756
|
+
if (filterChildren != filterChild && filterChildren.selected) {
|
|
8757
|
+
filterChildren.selected = false;
|
|
8758
|
+
}
|
|
8759
|
+
});
|
|
8760
|
+
});
|
|
8761
|
+
};
|
|
8750
8762
|
FiltersEcComponent.ctorParameters = function () { return [
|
|
8751
8763
|
{ type: Constants },
|
|
8752
8764
|
{ type: Document, decorators: [{ type: core.Inject, args: [common.DOCUMENT,] }] },
|