@syncfusion/ej2-navigations 30.2.5 → 30.2.7

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 30.2.5
3
+ * version : 30.2.7
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-navigations",
3
- "version": "30.2.5",
3
+ "version": "30.2.7",
4
4
  "description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -8,10 +8,10 @@
8
8
  "module": "./index.js",
9
9
  "es2015": "./dist/es6/ej2-navigations.es5.js",
10
10
  "dependencies": {
11
- "@syncfusion/ej2-base": "~30.2.4",
11
+ "@syncfusion/ej2-base": "~30.2.6",
12
12
  "@syncfusion/ej2-buttons": "~30.2.4",
13
13
  "@syncfusion/ej2-data": "~30.2.4",
14
- "@syncfusion/ej2-inputs": "~30.2.4",
14
+ "@syncfusion/ej2-inputs": "~30.2.6",
15
15
  "@syncfusion/ej2-lists": "~30.2.4",
16
16
  "@syncfusion/ej2-popups": "~30.2.4"
17
17
  },
package/src/tab/tab.js CHANGED
@@ -2222,6 +2222,7 @@ var Tab = /** @class */ (function (_super) {
2222
2222
  */
2223
2223
  Tab.prototype.getItemIndex = function (tabItemId) {
2224
2224
  var tabIndex;
2225
+ this.tbItem = selectAll('.' + CLS_TB_ITEM, this.getTabHeader());
2225
2226
  for (var i = 0; i < this.tbItem.length; i++) {
2226
2227
  var value = this.tbItem[i].getAttribute('data-id');
2227
2228
  if (tabItemId === value) {