@syncfusion/ej2-navigations 23.1.43 → 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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 23.1.43
3
+ * version : 23.1.44
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. 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,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-navigations@*",
3
- "_id": "@syncfusion/ej2-navigations@23.1.41",
3
+ "_id": "@syncfusion/ej2-navigations@23.1.43",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-9lEjY6BYj2V/JsOGrl7yRRzUBznym1GHACgMNn7EYvJ3sT/HlYirh/dfauOVfuQVVm6Q0dIoBTgIJARBOSdHwQ==",
5
+ "_integrity": "sha512-U4X+Q+37zlId1cE5eFpxvtTeXKn4hISyXaHP3Z3Tbfv8oGQ1iI9COZ1wMvYn1olpiK2Ed5DeIH0RuBgN02rciQ==",
6
6
  "_location": "/@syncfusion/ej2-navigations",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -39,8 +39,8 @@
39
39
  "/@syncfusion/ej2-spreadsheet",
40
40
  "/@syncfusion/ej2-vue-navigations"
41
41
  ],
42
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-23.1.41.tgz",
43
- "_shasum": "5617e406368f550e6717ac634cf190ddfb4b0fb4",
42
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-23.1.43.tgz",
43
+ "_shasum": "80b0a78e31b2645427ea3ace4aaaa5fd7465e46f",
44
44
  "_spec": "@syncfusion/ej2-navigations@*",
45
45
  "_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
46
46
  "author": {
@@ -53,10 +53,10 @@
53
53
  "dependencies": {
54
54
  "@syncfusion/ej2-base": "~23.1.41",
55
55
  "@syncfusion/ej2-buttons": "~23.1.43",
56
- "@syncfusion/ej2-data": "~23.1.43",
56
+ "@syncfusion/ej2-data": "~23.1.44",
57
57
  "@syncfusion/ej2-inputs": "~23.1.43",
58
58
  "@syncfusion/ej2-lists": "~23.1.43",
59
- "@syncfusion/ej2-popups": "~23.1.43"
59
+ "@syncfusion/ej2-popups": "~23.1.44"
60
60
  },
61
61
  "deprecated": false,
62
62
  "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",
@@ -161,6 +161,6 @@
161
161
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
162
162
  },
163
163
  "typings": "index.d.ts",
164
- "version": "23.1.43",
164
+ "version": "23.1.44",
165
165
  "sideEffects": false
166
166
  }
@@ -2016,7 +2016,12 @@ var Toolbar = /** @class */ (function (_super) {
2016
2016
  };
2017
2017
  Toolbar.prototype.activeEleRemove = function (curEle) {
2018
2018
  if (!isNOU(this.activeEle)) {
2019
- this.activeEle.setAttribute('tabindex', this.getDataTabindex(this.activeEle));
2019
+ if (!curEle.parentElement.classList.contains(CLS_TEMPLATE)) {
2020
+ this.activeEle.setAttribute('tabindex', this.getDataTabindex(this.activeEle));
2021
+ }
2022
+ else {
2023
+ this.activeEle.removeAttribute('tabindex');
2024
+ }
2020
2025
  }
2021
2026
  this.activeEle = curEle;
2022
2027
  if (this.getDataTabindex(this.activeEle) === '-1') {
@@ -2024,7 +2029,7 @@ var Toolbar = /** @class */ (function (_super) {
2024
2029
  this.updateTabIndex('-1');
2025
2030
  curEle.removeAttribute('tabindex');
2026
2031
  }
2027
- else if (curEle.parentElement.classList.contains(CLS_TEMPLATE) && !isNOU(curEle.getAttribute('data-tabindex'))) {
2032
+ else {
2028
2033
  this.activeEle.setAttribute('tabindex', this.getDataTabindex(this.activeEle));
2029
2034
  }
2030
2035
  }