@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.
- package/bundles/wizishop-angular-components.umd.js +11 -0
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/selects/select/select.component.js +8 -1
- package/fesm2015/wizishop-angular-components.js +7 -0
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/selects/select/select.component.d.ts +3 -1
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.127.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.126.tgz +0 -0
|
@@ -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;
|