chrv-components 1.11.91 → 1.11.92

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,6 +1080,7 @@ 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);
1083
1084
  this.input.emit(res);
1084
1085
  });
1085
1086
  };
@@ -1123,6 +1124,8 @@ class ChrBaseInputComponent {
1123
1124
  this.iconCallback()?.(this.getValue());
1124
1125
  };
1125
1126
  this.onHtmlInput = (event) => {
1127
+ event.preventDefault();
1128
+ event.stopPropagation();
1126
1129
  this.inputSubject.next(event.target.value);
1127
1130
  };
1128
1131
  this.visualState = () => {