@fundamental-ngx/cdk 0.56.0-rc.2 → 0.56.0-rc.20

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.
@@ -2123,7 +2123,7 @@ class FocusableItemDirective {
2123
2123
  .observe(this.elementRef, false)
2124
2124
  .pipe(takeUntilDestroyed())
2125
2125
  .subscribe((isFocusable) => {
2126
- if (!isFocusable && isFocusable !== this.fdkFocusableItem) {
2126
+ if (isFocusable !== this.fdkFocusableItem) {
2127
2127
  this.fdkFocusableItem = isFocusable;
2128
2128
  }
2129
2129
  });
@@ -3626,7 +3626,7 @@ class OverflowListDirective {
3626
3626
  overflowCount++;
3627
3627
  }
3628
3628
  });
3629
- this.overflowChanged.emit(overflowCount);
3629
+ this._calculateAmountOfOverflowedItems();
3630
3630
  }, 0);
3631
3631
  });
3632
3632
  }