@firestitch/filter 12.0.5 → 12.0.6

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.
@@ -5040,9 +5040,6 @@
5040
5040
  };
5041
5041
  FilterComponent.prototype._listenInputChanges = function () {
5042
5042
  var _this = this;
5043
- if (!this._filterItems.keywordItem) {
5044
- return;
5045
- }
5046
5043
  this._zone.runOutsideAngular(function () {
5047
5044
  _this.searchText.valueChanges
5048
5045
  .pipe(operators.debounceTime(200), operators.distinctUntilChanged(), operators.filter(function (value) {
@@ -5102,6 +5099,7 @@
5102
5099
  if (_this.config.init) {
5103
5100
  _this.init();
5104
5101
  }
5102
+ _this._syncSearchInputWithKeyword();
5105
5103
  _this.ready.emit();
5106
5104
  });
5107
5105
  };