@syncfusion/ej2-navigations 28.1.36 → 28.1.37

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.
@@ -9914,6 +9914,10 @@ let Tab = class Tab extends Component {
9914
9914
  * @returns {void}
9915
9915
  */
9916
9916
  refreshActiveTabBorder() {
9917
+ if (this.heightAdjustMode === 'None' && this.height !== 'auto' && this.cntEle && !this.isVertical()) {
9918
+ const hdrEle = this.getTabHeader();
9919
+ setStyleAttribute(this.cntEle, { 'height': (this.element.clientHeight - hdrEle.offsetHeight) + 'px' });
9920
+ }
9917
9921
  const activeEle = select('.' + CLS_TB_ITEM + '.' + CLS_TB_POPUP + '.' + CLS_ACTIVE$1, this.element);
9918
9922
  if (!isNullOrUndefined(activeEle) && this.reorderActiveTab) {
9919
9923
  this.select(this.getEleIndex(activeEle));