@wizishop/angular-components 0.0.123 → 0.0.124

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.
@@ -3114,6 +3114,16 @@
3114
3114
  this.onChange = function () { };
3115
3115
  this.onTouch = function () { };
3116
3116
  }
3117
+ Object.defineProperty(SelectComponent.prototype, "callToAction", {
3118
+ get: function () {
3119
+ return this._calllToAction;
3120
+ },
3121
+ set: function (callToAction) {
3122
+ this._calllToAction = callToAction;
3123
+ },
3124
+ enumerable: false,
3125
+ configurable: true
3126
+ });
3117
3127
  SelectComponent.prototype.ngOnInit = function () {
3118
3128
  this.indexItemSelected = this.items.findIndex(function (item) { return item.selected; });
3119
3129
  };