@alauda/ui 6.5.4-beta.20 → 6.5.4-beta.21
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.
package/fesm2020/alauda-ui.mjs
CHANGED
|
@@ -1813,7 +1813,9 @@ class AutoCompleteDirective extends BaseTooltip {
|
|
|
1813
1813
|
this.inputValue$$ = new BehaviorSubject('');
|
|
1814
1814
|
this.filterFn$$ = new BehaviorSubject(this.filterFn);
|
|
1815
1815
|
this.unsubscribe$ = new Subject();
|
|
1816
|
-
this.inputValue$ = this.inputValue
|
|
1816
|
+
this.inputValue$ = this.inputValue$$
|
|
1817
|
+
.asObservable()
|
|
1818
|
+
.pipe(distinctUntilChanged());
|
|
1817
1819
|
this.filterFn$ = this.filterFn$$.asObservable();
|
|
1818
1820
|
this.type = TooltipType.Plain;
|
|
1819
1821
|
this.trigger = TooltipTrigger.Manual;
|