@syncfusion/ej2-navigations 29.1.34 → 29.1.37

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.
@@ -5156,12 +5156,15 @@ let Toolbar = class Toolbar extends Component {
5156
5156
  ele.classList.remove(CLS_DISABLE$2);
5157
5157
  if (!isNullOrUndefined(ele.firstElementChild)) {
5158
5158
  ele.firstElementChild.setAttribute('aria-disabled', 'false');
5159
+ this.updateTabIndex('0');
5159
5160
  }
5160
5161
  }
5161
5162
  else {
5162
5163
  ele.classList.add(CLS_DISABLE$2);
5163
5164
  if (!isNullOrUndefined(ele.firstElementChild)) {
5164
5165
  ele.firstElementChild.setAttribute('aria-disabled', 'true');
5166
+ ele.firstElementChild.setAttribute('tabindex', '-1');
5167
+ this.updateTabIndex('0');
5165
5168
  }
5166
5169
  }
5167
5170
  };