@syncfusion/ej2-navigations 26.1.39 → 26.1.40

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 : 26.1.39
3
+ * version : 26.1.40
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@26.1.38",
3
+ "_id": "@syncfusion/ej2-navigations@26.1.39",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-FkGUMW4JtCpN0UumB+XnLHMmEgBMTWK006RpqhtMnc4BHrZtvwEYbGn0OJcyKcNG/OeoVA2m0x5DkQO8Nk/ofw==",
5
+ "_integrity": "sha512-nx8+3jGZTNQzQ7xIiwKyB2wum+nmP+eQF+ljJ/+vvhn54c2b3WkGTcANpvKFQ2NluOytjU894S7QBFx4fXeV4Q==",
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.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-26.1.38.tgz",
43
- "_shasum": "2932f699db17f0cbff75e916dbbea215013b3ebe",
42
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-26.1.39.tgz",
43
+ "_shasum": "60cc3aeedd220788eee7250f705c8c5fa2c0f34f",
44
44
  "_spec": "@syncfusion/ej2-navigations@*",
45
45
  "_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included",
46
46
  "author": {
@@ -52,9 +52,9 @@
52
52
  "bundleDependencies": false,
53
53
  "dependencies": {
54
54
  "@syncfusion/ej2-base": "~26.1.37",
55
- "@syncfusion/ej2-buttons": "~26.1.35",
56
- "@syncfusion/ej2-data": "~26.1.35",
57
- "@syncfusion/ej2-inputs": "~26.1.39",
55
+ "@syncfusion/ej2-buttons": "~26.1.40",
56
+ "@syncfusion/ej2-data": "~26.1.40",
57
+ "@syncfusion/ej2-inputs": "~26.1.40",
58
58
  "@syncfusion/ej2-lists": "~26.1.35",
59
59
  "@syncfusion/ej2-popups": "~26.1.38"
60
60
  },
@@ -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": "26.1.39",
164
+ "version": "26.1.40",
165
165
  "sideEffects": false
166
166
  }
@@ -703,7 +703,8 @@ var MenuBase = /** @class */ (function (_super) {
703
703
  else if (isOpen && isNullOrUndefined(ulIndex) && _this.navIdx.length) {
704
704
  _this.closeMenu(null, e);
705
705
  }
706
- else if (isOpen && !_this.isMenu && !ulIndex && _this.navIdx.length === 0 && !_this.isMenusClosed && !_this.isCmenuHover) {
706
+ else if (isOpen && !_this.isMenu && !ulIndex && _this.navIdx.length === 0 &&
707
+ !_this.isMenusClosed && !_this.isCmenuHover) {
707
708
  _this.isMenusClosed = true;
708
709
  _this.closeMenu(0, e);
709
710
  }
@@ -68,7 +68,7 @@ var DISABLE = 'e-disable';
68
68
  var DROPCOUNT = 'e-drop-count';
69
69
  var CHECK = 'e-check';
70
70
  var INDETERMINATE = 'e-stop';
71
- var CHECKBOXWRAP = 'e-checkbox-wrapper';
71
+ var CHECKBOXWRAP = 'e-treeview-checkbox';
72
72
  var CHECKBOXFRAME = 'e-frame';
73
73
  var CHECKBOXRIPPLE = 'e-ripple-container';
74
74
  var RIPPLE = 'e-ripple';
@@ -779,6 +779,7 @@ var TreeView = /** @class */ (function (_super) {
779
779
  TreeView.prototype.beforeNodeCreate = function (e) {
780
780
  if (this.showCheckBox) {
781
781
  var checkboxEle = createCheckBox(this.createElement, true, { cssClass: this.touchClass });
782
+ checkboxEle.classList.add(CHECKBOXWRAP);
782
783
  var icon = select('div.' + ICON, e.item);
783
784
  var id = e.item.getAttribute('data-uid');
784
785
  e.item.childNodes[0].insertBefore(checkboxEle, e.item.childNodes[0].childNodes[isNOU(icon) ? 0 : 1]);