@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.
- package/CHANGELOG.md +8 -0
- 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 +3 -1
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +3 -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/common/menu-base.js +3 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 20.2.
|
|
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.
|
|
3
|
+
"_id": "@syncfusion/ej2-navigations@20.2.48",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
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.
|
|
41
|
-
"_shasum": "
|
|
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.
|
|
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.
|
|
162
|
+
"version": "20.2.49",
|
|
163
163
|
"sideEffects": false
|
|
164
164
|
}
|
package/src/common/menu-base.js
CHANGED
|
@@ -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
|
-
|
|
2057
|
+
if (!isNullOrUndefined(idx)) {
|
|
2058
|
+
this.removeItem(iitems, navIdx, idx);
|
|
2059
|
+
}
|
|
2058
2060
|
}
|
|
2059
2061
|
};
|
|
2060
2062
|
/**
|