@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.
@@ -10206,6 +10206,10 @@ var Tab = /** @__PURE__ @class */ (function (_super) {
10206
10206
  * @returns {void}
10207
10207
  */
10208
10208
  Tab.prototype.refreshActiveTabBorder = function () {
10209
+ if (this.heightAdjustMode === 'None' && this.height !== 'auto' && this.cntEle && !this.isVertical()) {
10210
+ var hdrEle = this.getTabHeader();
10211
+ setStyleAttribute(this.cntEle, { 'height': (this.element.clientHeight - hdrEle.offsetHeight) + 'px' });
10212
+ }
10209
10213
  var activeEle = select('.' + CLS_TB_ITEM + '.' + CLS_TB_POPUP + '.' + CLS_ACTIVE$1, this.element);
10210
10214
  if (!isNullOrUndefined(activeEle) && this.reorderActiveTab) {
10211
10215
  this.select(this.getEleIndex(activeEle));