@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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 23.1.41
3
+ * version : 23.1.43
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.40",
3
+ "_id": "@syncfusion/ej2-navigations@23.1.41",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-aXE4qBuAuI2NVlEl6tmJ6RBiTqJ4cyc758Xgu6P9w6xfWK/aEYvH9KQhpsIAnbHBQbi8xV76QXafZCSg1IGYew==",
5
+ "_integrity": "sha512-9lEjY6BYj2V/JsOGrl7yRRzUBznym1GHACgMNn7EYvJ3sT/HlYirh/dfauOVfuQVVm6Q0dIoBTgIJARBOSdHwQ==",
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.40.tgz",
43
- "_shasum": "e9224d59ee9d3975628d3791aaf1b9a8bb9f8269",
42
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-23.1.41.tgz",
43
+ "_shasum": "5617e406368f550e6717ac634cf190ddfb4b0fb4",
44
44
  "_spec": "@syncfusion/ej2-navigations@*",
45
45
  "_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
46
46
  "author": {
@@ -52,11 +52,11 @@
52
52
  "bundleDependencies": false,
53
53
  "dependencies": {
54
54
  "@syncfusion/ej2-base": "~23.1.41",
55
- "@syncfusion/ej2-buttons": "~23.1.41",
56
- "@syncfusion/ej2-data": "~23.1.36",
57
- "@syncfusion/ej2-inputs": "~23.1.40",
58
- "@syncfusion/ej2-lists": "~23.1.36",
59
- "@syncfusion/ej2-popups": "~23.1.38"
55
+ "@syncfusion/ej2-buttons": "~23.1.43",
56
+ "@syncfusion/ej2-data": "~23.1.43",
57
+ "@syncfusion/ej2-inputs": "~23.1.43",
58
+ "@syncfusion/ej2-lists": "~23.1.43",
59
+ "@syncfusion/ej2-popups": "~23.1.43"
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.41",
164
+ "version": "23.1.43",
165
165
  "sideEffects": false
166
166
  }
@@ -175,7 +175,6 @@ var Sidebar = /** @class */ (function (_super) {
175
175
  }
176
176
  else if (!this.isOpen) {
177
177
  addClass([this.element], [CLOSE, DISABLEANIMATION]);
178
- removeClass([this.element], DISABLEANIMATION);
179
178
  }
180
179
  };
181
180
  Sidebar.prototype.checkType = function (val) {
@@ -630,7 +629,7 @@ var Sidebar = /** @class */ (function (_super) {
630
629
  }
631
630
  this.destroyBackDrop();
632
631
  if (this.element) {
633
- removeClass([this.element], [OPEN, CLOSE, PUSH, SLIDE, OVER, LEFT, RIGHT, TRASITION]);
632
+ removeClass([this.element], [OPEN, CLOSE, PUSH, SLIDE, OVER, LEFT, RIGHT, TRASITION, DISABLEANIMATION]);
634
633
  removeClass([this.element], SIDEBARABSOLUTE);
635
634
  this.element.style.width = '';
636
635
  this.element.style.zIndex = '';
@@ -2024,7 +2024,7 @@ var Toolbar = /** @class */ (function (_super) {
2024
2024
  this.updateTabIndex('-1');
2025
2025
  curEle.removeAttribute('tabindex');
2026
2026
  }
2027
- else {
2027
+ else if (curEle.parentElement.classList.contains(CLS_TEMPLATE) && !isNOU(curEle.getAttribute('data-tabindex'))) {
2028
2028
  this.activeEle.setAttribute('tabindex', this.getDataTabindex(this.activeEle));
2029
2029
  }
2030
2030
  }
@@ -3265,6 +3265,9 @@ var TreeView = /** @class */ (function (_super) {
3265
3265
  else {
3266
3266
  this.dropAsChildNode(dragLi, dropLi, dragObj, null, e, offsetY, true);
3267
3267
  }
3268
+ if (this.showCheckBox) {
3269
+ this.ensureIndeterminate();
3270
+ }
3268
3271
  };
3269
3272
  TreeView.prototype.dropAsSiblingNode = function (dragLi, dropLi, e, dragObj) {
3270
3273
  var dropUl = closest(dropLi, '.' + PARENTITEM);