@syncfusion/ej2-navigations 20.2.48 → 20.2.49

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 : 20.2.48
3
+ * version : 20.2.49
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@20.2.46",
3
+ "_id": "@syncfusion/ej2-navigations@20.2.48",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-awRmOqQRwgtSUGppb0WFtM9SxkrQqfBQqgPVqGM2HOv7AtqlZulvRpn6c/wl7uu8zL2NCPCWy85YamsJh8ZHAw==",
5
+ "_integrity": "sha512-cFToff9xzKImVn3sFHP4qXp2AMrE+8RA7FoUqIxKXjeq8gKECdeNt11qkflQ6y6m/SffaVG7JJ3veWTB23aJJg==",
6
6
  "_location": "/@syncfusion/ej2-navigations",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -37,8 +37,8 @@
37
37
  "/@syncfusion/ej2-spreadsheet",
38
38
  "/@syncfusion/ej2-vue-navigations"
39
39
  ],
40
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-20.2.46.tgz",
41
- "_shasum": "5c70090f4bfea471436722b4ac52e280f3465150",
40
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-20.2.48.tgz",
41
+ "_shasum": "e401f900fbc8f8f319f75c4e102180d67cf8e5a6",
42
42
  "_spec": "@syncfusion/ej2-navigations@*",
43
43
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
44
44
  "author": {
@@ -54,7 +54,7 @@
54
54
  "@syncfusion/ej2-data": "~20.2.45",
55
55
  "@syncfusion/ej2-inputs": "~20.2.48",
56
56
  "@syncfusion/ej2-lists": "~20.2.46",
57
- "@syncfusion/ej2-popups": "~20.2.45"
57
+ "@syncfusion/ej2-popups": "~20.2.49"
58
58
  },
59
59
  "deprecated": false,
60
60
  "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",
@@ -159,6 +159,6 @@
159
159
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
160
160
  },
161
161
  "typings": "index.d.ts",
162
- "version": "20.2.48",
162
+ "version": "20.2.49",
163
163
  "sideEffects": false
164
164
  }
@@ -2054,7 +2054,9 @@ var MenuBase = /** @class */ (function (_super) {
2054
2054
  navIdx = this.getIndex(items[i], isUniqueId);
2055
2055
  idx = navIdx.pop();
2056
2056
  iitems = this.getItems(navIdx);
2057
- this.removeItem(iitems, navIdx, idx);
2057
+ if (!isNullOrUndefined(idx)) {
2058
+ this.removeItem(iitems, navIdx, idx);
2059
+ }
2058
2060
  }
2059
2061
  };
2060
2062
  /**