@wizishop/angular-components 0.0.126 → 0.0.127

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.
@@ -3135,6 +3135,17 @@
3135
3135
  this.onChange = function () { };
3136
3136
  this.onTouch = function () { };
3137
3137
  }
3138
+ Object.defineProperty(SelectComponent.prototype, "items", {
3139
+ get: function () {
3140
+ return this._items;
3141
+ },
3142
+ set: function (items) {
3143
+ this._items = items;
3144
+ this.indexItemSelected = -1;
3145
+ },
3146
+ enumerable: false,
3147
+ configurable: true
3148
+ });
3138
3149
  Object.defineProperty(SelectComponent.prototype, "callToAction", {
3139
3150
  get: function () {
3140
3151
  return this._calllToAction;