@syncfusion/ej2-navigations 26.2.5 → 26.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.
- package/dist/ej2-navigations.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +1 -1
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +1 -1
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +6 -6
- package/src/treeview/treeview.js +1 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 26.2.
|
|
3
|
+
* version : 26.2.7
|
|
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.
|
|
3
|
+
"_id": "@syncfusion/ej2-navigations@26.2.5",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-xRmFvjAiyM59M2Dm/77DRWzv965jum7gbj26MHtwx6BLGnJY+HsCyiDcbnEU16XLoSU152Bg5z5CRvZ+4upUPQ==",
|
|
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.
|
|
43
|
-
"_shasum": "
|
|
42
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-26.2.5.tgz",
|
|
43
|
+
"_shasum": "8b408cbd1174627852ceaa47dae2203f0047d559",
|
|
44
44
|
"_spec": "@syncfusion/ej2-navigations@*",
|
|
45
45
|
"_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included",
|
|
46
46
|
"author": {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"bundleDependencies": false,
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@syncfusion/ej2-base": "~26.2.5",
|
|
55
|
-
"@syncfusion/ej2-buttons": "~26.2.
|
|
55
|
+
"@syncfusion/ej2-buttons": "~26.2.7",
|
|
56
56
|
"@syncfusion/ej2-data": "~26.2.5",
|
|
57
57
|
"@syncfusion/ej2-inputs": "~26.2.5",
|
|
58
58
|
"@syncfusion/ej2-lists": "~26.2.5",
|
|
@@ -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.2.
|
|
164
|
+
"version": "26.2.7",
|
|
165
165
|
"sideEffects": false
|
|
166
166
|
}
|
package/src/treeview/treeview.js
CHANGED
|
@@ -979,7 +979,7 @@ var TreeView = /** @class */ (function (_super) {
|
|
|
979
979
|
if (element.classList.contains(LISTITEM)) {
|
|
980
980
|
ulElement = select('.' + PARENTITEM, element);
|
|
981
981
|
}
|
|
982
|
-
var checkedNodes = selectAll('.' + CHECK, ulElement);
|
|
982
|
+
var checkedNodes = selectAll('.' + CHECKBOXWRAP + ' .' + CHECK, ulElement);
|
|
983
983
|
var indeterminateNodes = selectAll('.' + INDETERMINATE, ulElement);
|
|
984
984
|
var nodes = selectAll('.' + LISTITEM, ulElement);
|
|
985
985
|
var checkBoxEle = element.getElementsByClassName(CHECKBOXWRAP)[0];
|