@wizishop/angular-components 0.0.76 → 0.0.79

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.
@@ -2918,6 +2918,7 @@
2918
2918
  this.onTouch = function () { };
2919
2919
  }
2920
2920
  SelectComponent.prototype.ngOnInit = function () {
2921
+ this.indexItemSelected = this.items.findIndex(function (item) { return item.selected; });
2921
2922
  };
2922
2923
  SelectComponent.prototype.onClose = function () {
2923
2924
  this.openCategories = false;
@@ -3797,7 +3798,7 @@
3797
3798
  object.hasTreeChildren = true;
3798
3799
  if (!object.hasOwnProperty(childrenProperty)) {
3799
3800
  // No more chrildren
3800
- object.hasTreeChrildren = false;
3801
+ object.hasTreeChildren = false;
3801
3802
  continue;
3802
3803
  }
3803
3804
  if (!Array.isArray(object[childrenProperty])) {
@@ -3849,10 +3850,10 @@
3849
3850
  object.treeLabel = object[property];
3850
3851
  continue;
3851
3852
  }
3852
- object.hasTreeChrildren = true;
3853
+ object.hasTreeChildren = true;
3853
3854
  if (!this.childrenProperties.includes(property)) {
3854
3855
  // No more chrildren
3855
- object.hasTreeChrildren = false;
3856
+ object.hasTreeChildren = false;
3856
3857
  continue;
3857
3858
  }
3858
3859
  if (!Array.isArray(object[property])) {