@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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 22.1.38
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.36",
3
+ "_id": "@syncfusion/ej2-navigations@22.1.38",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-iwyGdFKhNWT87685f3EXNa1Sd6Y7FwwsPQVYZXSiw4R7B4cF4HjOVKls5HIL55eNwk4b/jHvMv0lRJAjGGsU/Q==",
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.36.tgz",
43
- "_shasum": "fcc4a08271c57a350afa32a3db3c70996e600732",
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.38",
55
+ "@syncfusion/ej2-buttons": "~22.1.39",
56
56
  "@syncfusion/ej2-data": "~22.1.38",
57
- "@syncfusion/ej2-inputs": "~22.1.38",
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.38",
164
+ "version": "22.1.39",
165
165
  "sideEffects": false
166
166
  }
@@ -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
- /** Defines the error information. */
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
  /**