@colijnit/corecomponents_v12 259.1.22 → 259.1.23
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/colijnit-corecomponents_v12.umd.js +3 -1
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12-259.1.23.tgz +0 -0
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/base/base-input.component.js +3 -1
- package/esm2015/lib/components/list-of-values/list-of-values.component.js +2 -2
- package/fesm2015/colijnit-corecomponents_v12.js +3 -1
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/base/base-input.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2274,6 +2274,7 @@
|
|
|
2274
2274
|
this.keyDown = new i0.EventEmitter();
|
|
2275
2275
|
this.keyUp = new i0.EventEmitter();
|
|
2276
2276
|
this.modelChange = new i0.EventEmitter();
|
|
2277
|
+
this.selectedValueChange = new i0.EventEmitter();
|
|
2277
2278
|
this.userModelChange = new i0.EventEmitter();
|
|
2278
2279
|
this.hiddenChange = new i0.EventEmitter();
|
|
2279
2280
|
this.cancelClicked = new i0.EventEmitter();
|
|
@@ -3186,6 +3187,7 @@
|
|
|
3186
3187
|
keyDown: [{ type: i0.Output }],
|
|
3187
3188
|
keyUp: [{ type: i0.Output }],
|
|
3188
3189
|
modelChange: [{ type: i0.Output }],
|
|
3190
|
+
selectedValueChange: [{ type: i0.Output }],
|
|
3189
3191
|
userModelChange: [{ type: i0.Output }],
|
|
3190
3192
|
hiddenChange: [{ type: i0.Output }],
|
|
3191
3193
|
cancelClicked: [{ type: i0.Output }],
|
|
@@ -12175,7 +12177,7 @@
|
|
|
12175
12177
|
}
|
|
12176
12178
|
}
|
|
12177
12179
|
this.setModel(option);
|
|
12178
|
-
this.
|
|
12180
|
+
this.selectedValueChange.emit(option);
|
|
12179
12181
|
this.detectChanges();
|
|
12180
12182
|
};
|
|
12181
12183
|
ListOfValuesComponent.prototype.closePopup = function () {
|