@syncfusion/ej2-navigations 23.1.41 → 23.1.43

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.
@@ -5258,7 +5258,7 @@ let Toolbar = class Toolbar extends Component {
5258
5258
  this.updateTabIndex('-1');
5259
5259
  curEle.removeAttribute('tabindex');
5260
5260
  }
5261
- else {
5261
+ else if (curEle.parentElement.classList.contains(CLS_TEMPLATE) && !isNullOrUndefined(curEle.getAttribute('data-tabindex'))) {
5262
5262
  this.activeEle.setAttribute('tabindex', this.getDataTabindex(this.activeEle));
5263
5263
  }
5264
5264
  }
@@ -12918,6 +12918,9 @@ let TreeView = TreeView_1 = class TreeView extends Component {
12918
12918
  else {
12919
12919
  this.dropAsChildNode(dragLi, dropLi, dragObj, null, e, offsetY, true);
12920
12920
  }
12921
+ if (this.showCheckBox) {
12922
+ this.ensureIndeterminate();
12923
+ }
12921
12924
  }
12922
12925
  dropAsSiblingNode(dragLi, dropLi, e, dragObj) {
12923
12926
  let dropUl = closest(dropLi, '.' + PARENTITEM);
@@ -15029,7 +15032,6 @@ let Sidebar = class Sidebar extends Component {
15029
15032
  }
15030
15033
  else if (!this.isOpen) {
15031
15034
  addClass([this.element], [CLOSE, DISABLEANIMATION]);
15032
- removeClass([this.element], DISABLEANIMATION);
15033
15035
  }
15034
15036
  }
15035
15037
  checkType(val) {
@@ -15481,7 +15483,7 @@ let Sidebar = class Sidebar extends Component {
15481
15483
  }
15482
15484
  this.destroyBackDrop();
15483
15485
  if (this.element) {
15484
- removeClass([this.element], [OPEN, CLOSE, PUSH, SLIDE, OVER, LEFT, RIGHT, TRASITION]);
15486
+ removeClass([this.element], [OPEN, CLOSE, PUSH, SLIDE, OVER, LEFT, RIGHT, TRASITION, DISABLEANIMATION]);
15485
15487
  removeClass([this.element], SIDEBARABSOLUTE);
15486
15488
  this.element.style.width = '';
15487
15489
  this.element.style.zIndex = '';