chrv-components 1.11.92 → 1.11.93

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
@@ -1080,7 +1080,6 @@ class ChrBaseInputComponent {
1080
1080
  this.inputSubject
1081
1081
  .pipe(debounceTime(this.debounceTime() ?? 200), distinctUntilChanged())
1082
1082
  .subscribe((res) => {
1083
- console.log('Input event emitted with value:', res);
1084
1083
  this.input.emit(res);
1085
1084
  });
1086
1085
  };