@symphony-talent/component-library 4.144.0 → 4.145.0

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.
@@ -14,7 +14,7 @@ import { LicenseManager } from 'ag-grid-enterprise';
14
14
  import * as i3 from '@angular/forms';
15
15
  import { FormsModule, ReactiveFormsModule, FormControl } from '@angular/forms';
16
16
  import { Subject, timer } from 'rxjs';
17
- import { debounceTime, distinctUntilChanged, delay } from 'rxjs/operators';
17
+ import { debounceTime, delay } from 'rxjs/operators';
18
18
  import * as i1$4 from 'ngx-chips';
19
19
  import { TagInputModule } from 'ngx-chips';
20
20
  import * as i8 from 'ngx-bootstrap/popover';
@@ -1653,7 +1653,7 @@ class InputTextComponent {
1653
1653
  }
1654
1654
  ngOnInit() {
1655
1655
  this.textChangeSubscription = this.textChange$
1656
- .pipe(debounceTime(1000), distinctUntilChanged())
1656
+ .pipe(debounceTime(1000))
1657
1657
  .subscribe((tc) => {
1658
1658
  this.textChange.emit(tc);
1659
1659
  });