@syncfusion/ej2-navigations 20.2.36 → 20.2.38

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.
@@ -8918,7 +8918,8 @@ let Tab = class Tab extends Component {
8918
8918
  index = Array.prototype.indexOf.call(this.itemIndexArray, trg.id);
8919
8919
  }
8920
8920
  this.items.splice(index, 1);
8921
- this.itemIndexArray.splice(index, 1);
8921
+ const targetEleIndex = this.itemIndexArray.indexOf(trg.id);
8922
+ this.itemIndexArray.splice(targetEleIndex, 1);
8922
8923
  this.refreshActiveBorder();
8923
8924
  const cntTrg = select('#' + CLS_CONTENT$1 + this.tabId + '_' + this.extIndex(trg.id), select('.' + CLS_CONTENT$1, this.element));
8924
8925
  if (!isNullOrUndefined(cntTrg)) {
@@ -15892,7 +15893,7 @@ const CLS_TEMPLATE$2 = 'e-template';
15892
15893
  const CLS_SLIDE_ANIMATION = 'e-carousel-slide-animation';
15893
15894
  const CLS_FADE_ANIMATION = 'e-carousel-fade-animation';
15894
15895
  const CLS_CUSTOM_ANIMATION = 'e-carousel-custom-animation';
15895
- const CLS_ANIMATION_NONE = "e-carousel-animation-none";
15896
+ const CLS_ANIMATION_NONE = 'e-carousel-animation-none';
15896
15897
  const CLS_PREV_SLIDE = 'e-prev';
15897
15898
  const CLS_NEXT_SLIDE = 'e-next';
15898
15899
  const CLS_TRANSITION_START = 'e-transition-start';