chrv-components 1.11.44 → 1.11.45
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.
|
Binary file
|
|
@@ -1346,7 +1346,6 @@ class ChrBaseInputComponent {
|
|
|
1346
1346
|
if (this.control() != null) {
|
|
1347
1347
|
this.control().valueAccessor = this;
|
|
1348
1348
|
}
|
|
1349
|
-
this.value.subscribe((v) => console.log(`[BaseInput] Value changed to: ${v}`));
|
|
1350
1349
|
effect(() => {
|
|
1351
1350
|
//this.displayValue.set(this.value());
|
|
1352
1351
|
});
|
|
@@ -1388,6 +1387,7 @@ class ChrBaseInputComponent {
|
|
|
1388
1387
|
*/
|
|
1389
1388
|
ngOnDestroy() {
|
|
1390
1389
|
this.valueSubject?.unsubscribe();
|
|
1390
|
+
this.displayValueSubject.unsubscribe();
|
|
1391
1391
|
}
|
|
1392
1392
|
writeValue(obj) {
|
|
1393
1393
|
this.value.set(obj);
|