@dev-tcloud/tcloud-ui 5.1.10 → 5.1.11

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.
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
2
2
  import { Injectable, EventEmitter, Input, Output, Component, CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA, NgModule, forwardRef, ViewChild, Pipe, ViewEncapsulation, Directive, HostListener, Optional, Inject, signal, input, effect, computed, output, model, ChangeDetectionStrategy, ContentChildren, inject } from '@angular/core';
3
3
  import * as i1 from '@angular/common';
4
4
  import { CommonModule, DatePipe, DOCUMENT } from '@angular/common';
5
- import { Subject, Subscription, startWith, debounceTime, distinctUntilChanged, map, BehaviorSubject } from 'rxjs';
5
+ import { Subject, Subscription, debounceTime, distinctUntilChanged, map, BehaviorSubject } from 'rxjs';
6
6
  import { trigger, state, transition, style, animate } from '@angular/animations';
7
7
  import * as i2 from '@angular/forms';
8
8
  import { NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule, FormControl, NG_VALIDATORS, FormGroup, Validators } from '@angular/forms';
@@ -7254,7 +7254,7 @@ class TcRevSearchInputComponent {
7254
7254
  }
7255
7255
  });
7256
7256
  this.searchTextForm.valueChanges
7257
- .pipe(startWith(this.searchText()), debounceTime(500), distinctUntilChanged(), map((text) => text?.toLowerCase() || ''))
7257
+ .pipe(debounceTime(500), distinctUntilChanged(), map((text) => text?.toLowerCase() || ''))
7258
7258
  .subscribe((text) => {
7259
7259
  this.searchText.set(text);
7260
7260
  this.onSearch.emit(text);