@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.
@@ -9200,7 +9200,8 @@ var Tab = /** @__PURE__ @class */ (function (_super) {
9200
9200
  index = Array.prototype.indexOf.call(_this.itemIndexArray, trg.id);
9201
9201
  }
9202
9202
  _this.items.splice(index, 1);
9203
- _this.itemIndexArray.splice(index, 1);
9203
+ var targetEleIndex = _this.itemIndexArray.indexOf(trg.id);
9204
+ _this.itemIndexArray.splice(targetEleIndex, 1);
9204
9205
  _this.refreshActiveBorder();
9205
9206
  var cntTrg = select('#' + CLS_CONTENT$1 + _this.tabId + '_' + _this.extIndex(trg.id), select('.' + CLS_CONTENT$1, _this.element));
9206
9207
  if (!isNullOrUndefined(cntTrg)) {
@@ -16295,7 +16296,7 @@ var CLS_TEMPLATE$2 = 'e-template';
16295
16296
  var CLS_SLIDE_ANIMATION = 'e-carousel-slide-animation';
16296
16297
  var CLS_FADE_ANIMATION = 'e-carousel-fade-animation';
16297
16298
  var CLS_CUSTOM_ANIMATION = 'e-carousel-custom-animation';
16298
- var CLS_ANIMATION_NONE = "e-carousel-animation-none";
16299
+ var CLS_ANIMATION_NONE = 'e-carousel-animation-none';
16299
16300
  var CLS_PREV_SLIDE = 'e-prev';
16300
16301
  var CLS_NEXT_SLIDE = 'e-next';
16301
16302
  var CLS_TRANSITION_START = 'e-transition-start';