@syncfusion/ej2-navigations 20.2.46 → 20.2.48
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 +1 -4
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +1 -4
- 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 -4
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.48
|
|
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.46",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-awRmOqQRwgtSUGppb0WFtM9SxkrQqfBQqgPVqGM2HOv7AtqlZulvRpn6c/wl7uu8zL2NCPCWy85YamsJh8ZHAw==",
|
|
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.46.tgz",
|
|
41
|
+
"_shasum": "5c70090f4bfea471436722b4ac52e280f3465150",
|
|
42
42
|
"_spec": "@syncfusion/ej2-navigations@*",
|
|
43
43
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
44
44
|
"author": {
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
},
|
|
50
50
|
"bundleDependencies": false,
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@syncfusion/ej2-base": "~20.2.
|
|
52
|
+
"@syncfusion/ej2-base": "~20.2.48",
|
|
53
53
|
"@syncfusion/ej2-buttons": "~20.2.46",
|
|
54
54
|
"@syncfusion/ej2-data": "~20.2.45",
|
|
55
|
-
"@syncfusion/ej2-inputs": "~20.2.
|
|
55
|
+
"@syncfusion/ej2-inputs": "~20.2.48",
|
|
56
56
|
"@syncfusion/ej2-lists": "~20.2.46",
|
|
57
57
|
"@syncfusion/ej2-popups": "~20.2.45"
|
|
58
58
|
},
|
|
@@ -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.48",
|
|
163
163
|
"sideEffects": false
|
|
164
164
|
}
|
package/src/common/menu-base.js
CHANGED
|
@@ -1515,10 +1515,7 @@ var MenuBase = /** @class */ (function (_super) {
|
|
|
1515
1515
|
}
|
|
1516
1516
|
var navIdx = this.getIndex(idx, isUniqueId);
|
|
1517
1517
|
var newItem = this.getItem(navIdx);
|
|
1518
|
-
newItem
|
|
1519
|
-
newItem.text = item.text || newItem.text;
|
|
1520
|
-
newItem.url = item.url || newItem.url;
|
|
1521
|
-
newItem.separator = item.separator || newItem.separator;
|
|
1518
|
+
Object.assign(newItem, item);
|
|
1522
1519
|
};
|
|
1523
1520
|
MenuBase.prototype.getItem = function (navIdx) {
|
|
1524
1521
|
navIdx = navIdx.slice();
|