@syncfusion/ej2-navigations 22.1.38 → 22.1.39
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/CHANGELOG.md +8 -0
- 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 +7 -7
- package/src/common/menu-base.js +1 -1
- package/src/treeview/treeview.d.ts +1 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 22.1.
|
|
3
|
+
* version : 22.1.39
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. 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@22.1.
|
|
3
|
+
"_id": "@syncfusion/ej2-navigations@22.1.38",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-zsH2lJ0HGE1wAgBEyDF4opp/TybK+eNg7uYrg/YlRM8jObVXT5KJS6fdprP5CYIEHV5YRA3E8cDJCYDWxnDoPw==",
|
|
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-22.1.
|
|
43
|
-
"_shasum": "
|
|
42
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-22.1.38.tgz",
|
|
43
|
+
"_shasum": "ae5865b53c34417c5590b2bc062713bb9d9889e4",
|
|
44
44
|
"_spec": "@syncfusion/ej2-navigations@*",
|
|
45
45
|
"_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
|
|
46
46
|
"author": {
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"bundleDependencies": false,
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@syncfusion/ej2-base": "~22.1.38",
|
|
55
|
-
"@syncfusion/ej2-buttons": "~22.1.
|
|
55
|
+
"@syncfusion/ej2-buttons": "~22.1.39",
|
|
56
56
|
"@syncfusion/ej2-data": "~22.1.38",
|
|
57
|
-
"@syncfusion/ej2-inputs": "~22.1.
|
|
57
|
+
"@syncfusion/ej2-inputs": "~22.1.39",
|
|
58
58
|
"@syncfusion/ej2-lists": "~22.1.34",
|
|
59
59
|
"@syncfusion/ej2-popups": "~22.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": "22.1.
|
|
164
|
+
"version": "22.1.39",
|
|
165
165
|
"sideEffects": false
|
|
166
166
|
}
|
package/src/common/menu-base.js
CHANGED
|
@@ -483,7 +483,7 @@ var MenuBase = /** @class */ (function (_super) {
|
|
|
483
483
|
var popups_1 = [];
|
|
484
484
|
var allPopup = selectAll('.' + POPUP);
|
|
485
485
|
allPopup.forEach(function (elem) {
|
|
486
|
-
if (_this.element.id === elem.id.split('-')[2]) {
|
|
486
|
+
if (_this.element.id === elem.id.split('-')[2] || elem.id.split('-')[2] + "-" + elem.id.split('-')[3]) {
|
|
487
487
|
popups_1.push(elem);
|
|
488
488
|
}
|
|
489
489
|
});
|
|
@@ -325,7 +325,7 @@ export interface NodeData {
|
|
|
325
325
|
* Interface for Failure event arguments
|
|
326
326
|
*/
|
|
327
327
|
export interface FailureEventArgs {
|
|
328
|
-
/**
|
|
328
|
+
/** Represents the Error object that contains information about the error that occurred. This property allows you to access details such as the error message, stack trace, error code, or any additional information associated with the error. */
|
|
329
329
|
error?: Error;
|
|
330
330
|
}
|
|
331
331
|
/**
|