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.
@@ -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,] }] },