@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.
@@ -5250,7 +5250,12 @@ let Toolbar = class Toolbar extends Component {
5250
5250
  }
5251
5251
  activeEleRemove(curEle) {
5252
5252
  if (!isNullOrUndefined(this.activeEle)) {
5253
- this.activeEle.setAttribute('tabindex', this.getDataTabindex(this.activeEle));
5253
+ if (!curEle.parentElement.classList.contains(CLS_TEMPLATE)) {
5254
+ this.activeEle.setAttribute('tabindex', this.getDataTabindex(this.activeEle));
5255
+ }
5256
+ else {
5257
+ this.activeEle.removeAttribute('tabindex');
5258
+ }
5254
5259
  }
5255
5260
  this.activeEle = curEle;
5256
5261
  if (this.getDataTabindex(this.activeEle) === '-1') {
@@ -12918,6 +12923,9 @@ let TreeView = TreeView_1 = class TreeView extends Component {
12918
12923
  else {
12919
12924
  this.dropAsChildNode(dragLi, dropLi, dragObj, null, e, offsetY, true);
12920
12925
  }
12926
+ if (this.showCheckBox) {
12927
+ this.ensureIndeterminate();
12928
+ }
12921
12929
  }
12922
12930
  dropAsSiblingNode(dragLi, dropLi, e, dragObj) {
12923
12931
  let dropUl = closest(dropLi, '.' + PARENTITEM);
@@ -15029,7 +15037,6 @@ let Sidebar = class Sidebar extends Component {
15029
15037
  }
15030
15038
  else if (!this.isOpen) {
15031
15039
  addClass([this.element], [CLOSE, DISABLEANIMATION]);
15032
- removeClass([this.element], DISABLEANIMATION);
15033
15040
  }
15034
15041
  }
15035
15042
  checkType(val) {
@@ -15481,7 +15488,7 @@ let Sidebar = class Sidebar extends Component {
15481
15488
  }
15482
15489
  this.destroyBackDrop();
15483
15490
  if (this.element) {
15484
- removeClass([this.element], [OPEN, CLOSE, PUSH, SLIDE, OVER, LEFT, RIGHT, TRASITION]);
15491
+ removeClass([this.element], [OPEN, CLOSE, PUSH, SLIDE, OVER, LEFT, RIGHT, TRASITION, DISABLEANIMATION]);
15485
15492
  removeClass([this.element], SIDEBARABSOLUTE);
15486
15493
  this.element.style.width = '';
15487
15494
  this.element.style.zIndex = '';