@brggroup/share-lib 0.0.24 → 0.0.26
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.
|
@@ -1940,6 +1940,7 @@ class ExtendInputNumber {
|
|
|
1940
1940
|
// Ép chạy formatter lại
|
|
1941
1941
|
setTimeout(() => {
|
|
1942
1942
|
this.inputnumber.writeValue(parsed);
|
|
1943
|
+
this._ngModelChange.emit(parsed);
|
|
1943
1944
|
});
|
|
1944
1945
|
return parsed;
|
|
1945
1946
|
};
|
|
@@ -2172,6 +2173,7 @@ class ExtendSelectComponent {
|
|
|
2172
2173
|
ngOnInit() {
|
|
2173
2174
|
if (this.formData && this.controlName) {
|
|
2174
2175
|
this.formData.controls[this.controlName].valueChanges.subscribe((val) => {
|
|
2176
|
+
this._ngModelChange.emit(val);
|
|
2175
2177
|
this.itemChange.emit(this.lstItem.find((x) => x[this.valueField] == val));
|
|
2176
2178
|
});
|
|
2177
2179
|
}
|