@ethlete/core 1.4.2 → 1.4.3

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.
@@ -1831,7 +1831,7 @@ class ObserveScrollStateDirective {
1831
1831
  ngOnInit() {
1832
1832
  this._contentObserverService
1833
1833
  .observe(this._elementRef.nativeElement)
1834
- .pipe(tap(() => this._checkChildren()), takeUntil(this._destroy$))
1834
+ .pipe(debounceTime(25), tap(() => this._checkChildren()), takeUntil(this._destroy$))
1835
1835
  .subscribe();
1836
1836
  this._resizeObserverService
1837
1837
  .observe(this._elementRef.nativeElement)