@syncfusion/ej2-navigations 23.1.41 → 23.1.44

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.
@@ -5404,7 +5404,12 @@ var Toolbar = /** @__PURE__ @class */ (function (_super) {
5404
5404
  };
5405
5405
  Toolbar.prototype.activeEleRemove = function (curEle) {
5406
5406
  if (!isNullOrUndefined(this.activeEle)) {
5407
- this.activeEle.setAttribute('tabindex', this.getDataTabindex(this.activeEle));
5407
+ if (!curEle.parentElement.classList.contains(CLS_TEMPLATE)) {
5408
+ this.activeEle.setAttribute('tabindex', this.getDataTabindex(this.activeEle));
5409
+ }
5410
+ else {
5411
+ this.activeEle.removeAttribute('tabindex');
5412
+ }
5408
5413
  }
5409
5414
  this.activeEle = curEle;
5410
5415
  if (this.getDataTabindex(this.activeEle) === '-1') {
@@ -13260,6 +13265,9 @@ var TreeView = /** @__PURE__ @class */ (function (_super) {
13260
13265
  else {
13261
13266
  this.dropAsChildNode(dragLi, dropLi, dragObj, null, e, offsetY, true);
13262
13267
  }
13268
+ if (this.showCheckBox) {
13269
+ this.ensureIndeterminate();
13270
+ }
13263
13271
  };
13264
13272
  TreeView.prototype.dropAsSiblingNode = function (dragLi, dropLi, e, dragObj) {
13265
13273
  var dropUl = closest(dropLi, '.' + PARENTITEM);
@@ -15396,7 +15404,6 @@ var Sidebar = /** @__PURE__ @class */ (function (_super) {
15396
15404
  }
15397
15405
  else if (!this.isOpen) {
15398
15406
  addClass([this.element], [CLOSE, DISABLEANIMATION]);
15399
- removeClass([this.element], DISABLEANIMATION);
15400
15407
  }
15401
15408
  };
15402
15409
  Sidebar.prototype.checkType = function (val) {
@@ -15851,7 +15858,7 @@ var Sidebar = /** @__PURE__ @class */ (function (_super) {
15851
15858
  }
15852
15859
  this.destroyBackDrop();
15853
15860
  if (this.element) {
15854
- removeClass([this.element], [OPEN, CLOSE, PUSH, SLIDE, OVER, LEFT, RIGHT, TRASITION]);
15861
+ removeClass([this.element], [OPEN, CLOSE, PUSH, SLIDE, OVER, LEFT, RIGHT, TRASITION, DISABLEANIMATION]);
15855
15862
  removeClass([this.element], SIDEBARABSOLUTE);
15856
15863
  this.element.style.width = '';
15857
15864
  this.element.style.zIndex = '';